gd-bs 6.6.46 → 6.6.48

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gd-bs",
3
- "version": "6.6.46",
3
+ "version": "6.6.48",
4
4
  "description": "Bootstrap JavaScript, TypeScript and Web Components library.",
5
5
  "main": "build/index.js",
6
6
  "typings": "src/index.d.ts",
@@ -743,6 +743,12 @@ class _Dropdown extends Base<IDropdownProps> implements IDropdown {
743
743
  }
744
744
  }
745
745
 
746
+ // See if no value is selected and the label exists
747
+ if (value == null && this.props.label) {
748
+ // Set the label
749
+ this.setLabel(this.props.label);
750
+ }
751
+
746
752
  // See if a change event exists
747
753
  if (this._initFl && this.props.onChange) {
748
754
  // Execute the change event
@@ -452,10 +452,6 @@
452
452
  --bs-navbar-brand-color: var(--sp-primary-button-text, #ffffff);
453
453
  --bs-navbar-brand-hover-color: var(--sp-theme-darker, #004578);
454
454
  }
455
- a.navbar {
456
- --bs-navbar-hover-color: var(--sp-theme-darker, #004578);
457
- --bs-navbar-brand-hover-color: var(--sp-theme-darker, #004578);
458
- }
459
455
  span.navbar-brand:hover, span.navbar-brand:focus {
460
456
  color: var(--bs-navbar-brand-color);
461
457
  }