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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gd-bs",
3
- "version": "6.6.74",
3
+ "version": "6.6.76",
4
4
  "description": "Bootstrap JavaScript, TypeScript and Web Components library.",
5
5
  "main": "build/index.js",
6
6
  "typings": "src/index.d.ts",
@@ -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
@@ -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
  }