GBC 1.00.61 new features

A summary of new features and changes in functionality introduced with Genero Browser Client (GBC) 1.00.61.

Important:

This page covers only those new features introduced with the Genero Browser Client version specified in the page title. Check prior new features pages if you migrate from an earlier version.

For a detailed list of GBC 1.00.61 changes, please refer to the list of fixes on our issue tracker.

Combobox widget

In construct mode, for comboboxes defined without a NOT NULL attribute, the GBC automatically adds 'is NULL' and 'is not NULL' options.

Material Design Icons

The MDI icons library has been upgraded to the latest version, which includes more icons. See the icon list available in this version: @mdi/font/6.6.96.

For an example of using MDI icons in GBC, see Change icons.

Note:

Before building the GBC, upgrade your dependencies by running npm install in your GBC project.

Theme variables for webkit scrollbar

Theme variables are available for the webkit scrollbar:

theme-webkit-scrollbars-global-enable Enables webkit rendering for scrollbars. The default value is false.
theme-webkit-scrollbars-size Size of the theme webkit scrollbars. The default value is 8px.
theme-webkit-scrollbars-color Color of the theme webkit scrollbars. The default value is theme-primary-background-color.

Mixin for webkit scrollbar

A new mixin is available to apply the webkit scrollbar:

webkit-scrollbar(size,thumbColor,trackColor) 

This mixin can be used in the <div> section of any .scss file in your customization. It will be scoped to the <div> only. For example, to set the thumb to 25px red and the background to green for the .nice-scrollbar style:

.nice-scrollbar{
  @include webkit-scrollbar(25px, red, green); 
}

Other new features

  • Clipboard API has been implemented.
  • Security fixes have been made to i18next.