prlg-ui 1.8.32 → 1.8.33
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/WarningFillIcon-D2RZL6s6.cjs +1 -0
- package/dist/{WarningFillIcon-cJBG6d6O.js → WarningFillIcon-THHKSchs.js} +51 -55
- package/dist/blocks.d.ts +0 -8
- package/dist/icons/index.cjs.js +1 -1
- package/dist/icons/index.es.js +159 -155
- package/dist/icons.d.ts +0 -8
- package/dist/index.d.ts +44 -18
- package/dist/prlg-ui.cjs.js +1 -1
- package/dist/prlg-ui.css +1 -1
- package/dist/prlg-ui.es.js +2529 -2562
- package/dist/types.d.ts +0 -8
- package/dist/utils.d.ts +0 -8
- package/package.json +1 -1
- package/dist/WarningFillIcon-acu5ou45.cjs +0 -1
package/dist/icons.d.ts
CHANGED
|
@@ -206,11 +206,3 @@ export declare const WarningIcon: DefineComponent< {}, {}, {}, {}, {}, Compon
|
|
|
206
206
|
export declare const WordIcon: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
207
207
|
|
|
208
208
|
export { }
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
declare module 'vue' {
|
|
213
|
-
export interface GlobalComponents {
|
|
214
|
-
Dropdown: DefineComponent<DropdownProps>
|
|
215
|
-
}
|
|
216
|
-
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1170,20 +1170,54 @@ declare type DrawerProps = {
|
|
|
1170
1170
|
zIndexLayer?: ZIndexLayer;
|
|
1171
1171
|
};
|
|
1172
1172
|
|
|
1173
|
-
export declare const Dropdown: DefineComponent<DropdownProps
|
|
1173
|
+
export declare const Dropdown: DefineComponent<DropdownProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1174
|
+
clear: () => any;
|
|
1175
|
+
search: (query: string) => any;
|
|
1176
|
+
change: (value: string | number | DropdownOption | (string | number | DropdownOption)[] | undefined) => any;
|
|
1177
|
+
"update:modelValue": (value: string | number | DropdownOption | (string | number | DropdownOption)[] | undefined) => any;
|
|
1178
|
+
"remove-tag": (value: string | number | DropdownOption) => any;
|
|
1179
|
+
}, string, PublicProps, Readonly<DropdownProps> & Readonly<{
|
|
1180
|
+
onClear?: (() => any) | undefined;
|
|
1181
|
+
onSearch?: ((query: string) => any) | undefined;
|
|
1182
|
+
onChange?: ((value: string | number | DropdownOption | (string | number | DropdownOption)[] | undefined) => any) | undefined;
|
|
1183
|
+
"onUpdate:modelValue"?: ((value: string | number | DropdownOption | (string | number | DropdownOption)[] | undefined) => any) | undefined;
|
|
1184
|
+
"onRemove-tag"?: ((value: string | number | DropdownOption) => any) | undefined;
|
|
1185
|
+
}>, {
|
|
1186
|
+
disabled: boolean;
|
|
1187
|
+
placeholder: string;
|
|
1188
|
+
multiple: boolean;
|
|
1189
|
+
options: DropdownOption[];
|
|
1190
|
+
loading: boolean;
|
|
1191
|
+
searchable: boolean;
|
|
1192
|
+
valueKey: string;
|
|
1193
|
+
labelKey: string;
|
|
1194
|
+
maxTags: number;
|
|
1195
|
+
clearable: boolean;
|
|
1196
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
1197
|
+
dropdownTrigger: HTMLDivElement;
|
|
1198
|
+
dropdownOverlay: HTMLDivElement;
|
|
1199
|
+
searchInput: HTMLInputElement;
|
|
1200
|
+
}, HTMLDivElement>;
|
|
1174
1201
|
|
|
1175
|
-
declare interface
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1202
|
+
declare interface DropdownOption {
|
|
1203
|
+
value: string | number;
|
|
1204
|
+
label: string | number;
|
|
1205
|
+
disabled?: boolean;
|
|
1206
|
+
[key: string]: any;
|
|
1207
|
+
}
|
|
1179
1208
|
|
|
1180
|
-
|
|
1181
|
-
|
|
1209
|
+
declare interface DropdownProps {
|
|
1210
|
+
modelValue?: string | number | DropdownOption | Array<string | number | DropdownOption>;
|
|
1211
|
+
options?: DropdownOption[];
|
|
1182
1212
|
multiple?: boolean;
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
returnObject?: boolean;
|
|
1213
|
+
placeholder?: string;
|
|
1214
|
+
disabled?: boolean;
|
|
1186
1215
|
loading?: boolean;
|
|
1216
|
+
searchable?: boolean;
|
|
1217
|
+
valueKey?: string;
|
|
1218
|
+
labelKey?: string;
|
|
1219
|
+
maxTags?: number;
|
|
1220
|
+
clearable?: boolean;
|
|
1187
1221
|
}
|
|
1188
1222
|
|
|
1189
1223
|
declare const File_2: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
@@ -1846,11 +1880,3 @@ declare const Z_INDEX: {
|
|
|
1846
1880
|
declare type ZIndexLayer = keyof typeof Z_INDEX;
|
|
1847
1881
|
|
|
1848
1882
|
export { }
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
declare module 'vue' {
|
|
1853
|
-
export interface GlobalComponents {
|
|
1854
|
-
Dropdown: DefineComponent<DropdownProps>
|
|
1855
|
-
}
|
|
1856
|
-
}
|