gd-bs 6.6.74 → 6.6.76
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/build/bs.js +1 -1
- package/build/components/form/control.js +2 -2
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.js.LICENSE.txt +296 -296
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.js.LICENSE.txt +266 -266
- package/dist/gd-bs.min.js +1 -1
- package/package.json +1 -1
- package/src/components/form/control.ts +2 -2
- package/src/styles/_custom.scss +5 -0
package/package.json
CHANGED
|
@@ -597,11 +597,11 @@ export class FormControl implements IFormControl {
|
|
|
597
597
|
// See if the items were defined
|
|
598
598
|
if ((this._props as IFormControlPropsCheckbox).items) {
|
|
599
599
|
// Return the value(s)
|
|
600
|
-
return this._cb.getValue();
|
|
600
|
+
return this._cb.getValue().selectedItems;
|
|
601
601
|
}
|
|
602
602
|
|
|
603
603
|
// Return the value
|
|
604
|
-
return this._cb.getValue() ? true : false;
|
|
604
|
+
return this._cb.getValue().selectedItems ? true : false;
|
|
605
605
|
}
|
|
606
606
|
|
|
607
607
|
// See if this is a dropdown
|
package/src/styles/_custom.scss
CHANGED
|
@@ -526,6 +526,11 @@
|
|
|
526
526
|
--bs-list-group-active-border-color: var(--sp-theme-primary, #0078d4);
|
|
527
527
|
}
|
|
528
528
|
|
|
529
|
+
/* Use a pointer for tabs */
|
|
530
|
+
.list-group[role="tablist"]>.list-group-item {
|
|
531
|
+
cursor: pointer;
|
|
532
|
+
}
|
|
533
|
+
|
|
529
534
|
.modal {
|
|
530
535
|
--bs-modal-color: var(--bs-body-color);
|
|
531
536
|
}
|