prlg-ui 1.8.111 → 1.8.113
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/dist/index.d.ts +7 -1
- package/dist/prlg-ui.cjs.js +1 -1
- package/dist/prlg-ui.css +1 -1
- package/dist/prlg-ui.es.js +680 -659
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -860,7 +860,13 @@ declare function __VLS_template_6(): {
|
|
|
860
860
|
option?(_: {
|
|
861
861
|
option: DropdownOption;
|
|
862
862
|
selected: boolean;
|
|
863
|
-
multiple:
|
|
863
|
+
multiple: true;
|
|
864
|
+
handleSelect: () => void;
|
|
865
|
+
}): any;
|
|
866
|
+
option?(_: {
|
|
867
|
+
option: DropdownOption;
|
|
868
|
+
selected: boolean;
|
|
869
|
+
multiple: false;
|
|
864
870
|
handleSelect: () => void;
|
|
865
871
|
}): any;
|
|
866
872
|
};
|