prlg-ui 1.8.102 → 1.8.103
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 +567 -557
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -855,6 +855,12 @@ declare function __VLS_template_6(): {
|
|
|
855
855
|
value: string;
|
|
856
856
|
selectedOption: DropdownOption;
|
|
857
857
|
}): any;
|
|
858
|
+
option?(_: {
|
|
859
|
+
option: DropdownOption;
|
|
860
|
+
selected: boolean;
|
|
861
|
+
multiple: boolean;
|
|
862
|
+
handleSelect: () => void;
|
|
863
|
+
}): any;
|
|
858
864
|
};
|
|
859
865
|
refs: {
|
|
860
866
|
dropdownTrigger: HTMLDivElement;
|
|
@@ -1266,7 +1272,7 @@ declare interface ConfirmOptions {
|
|
|
1266
1272
|
target?: HTMLElement;
|
|
1267
1273
|
header?: string;
|
|
1268
1274
|
message?: string;
|
|
1269
|
-
icon?: string;
|
|
1275
|
+
icon?: Component | string;
|
|
1270
1276
|
position?: Position;
|
|
1271
1277
|
modal?: boolean;
|
|
1272
1278
|
closable?: boolean;
|