gd-bs 6.6.84 → 6.6.85
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/listBox/index.js +4 -1
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.d.ts +1 -1
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.min.js +1 -1
- package/package.json +1 -1
- package/src/components/listBox/index.ts +4 -1
- package/src/components/listBox/types.d.ts +1 -1
package/dist/gd-bs.d.ts
CHANGED
|
@@ -1758,7 +1758,7 @@ declare module 'gd-bs/components/listBox/types' {
|
|
|
1758
1758
|
el: HTMLElement;
|
|
1759
1759
|
|
|
1760
1760
|
/** The selected listbox items. */
|
|
1761
|
-
getValue: () => Array<IDropdownItem>;
|
|
1761
|
+
getValue: () => IDropdownItem | Array<IDropdownItem>;
|
|
1762
1762
|
|
|
1763
1763
|
/** Sets the options */
|
|
1764
1764
|
setOptions: (items: Array<IDropdownItem>) => void;
|