gd-bs 6.6.6 → 6.6.7
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/components/checkboxGroup/index.js +30 -6
- package/build/components/dropdown/index.js +6 -0
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.d.ts +4 -1
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.min.js +1 -1
- package/package.json +1 -1
- package/src/components/checkboxGroup/index.ts +32 -6
- package/src/components/checkboxGroup/types.d.ts +4 -1
- package/src/components/dropdown/index.ts +7 -0
package/dist/gd-bs.d.ts
CHANGED
|
@@ -861,7 +861,10 @@ declare module 'gd-bs/components/checkboxGroup/types' {
|
|
|
861
861
|
/** Hides the checkbox group. */
|
|
862
862
|
hide: () => void;
|
|
863
863
|
|
|
864
|
-
/** Sets the
|
|
864
|
+
/** Sets the checkbox items. */
|
|
865
|
+
setItems: (value: Array<ICheckboxGroupItem>) => void;
|
|
866
|
+
|
|
867
|
+
/** Sets the checkbox value. */
|
|
865
868
|
setValue: (value: string | Array<string>) => void;
|
|
866
869
|
|
|
867
870
|
/** Shows the checkbox group. */
|