prlg-ui 1.8.84 → 1.8.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/dist/index.d.ts +6 -0
- package/dist/prlg-ui.cjs.js +1 -1
- package/dist/prlg-ui.css +1 -1
- package/dist/prlg-ui.es.js +927 -912
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -276,6 +276,7 @@ onChange?: ((value: string | number | DropdownOption | (string | number | Dropdo
|
|
|
276
276
|
"onRemove-tag"?: ((value: string | number | DropdownOption) => any) | undefined;
|
|
277
277
|
}>, {
|
|
278
278
|
disabled: boolean;
|
|
279
|
+
error: boolean;
|
|
279
280
|
placeholder: string;
|
|
280
281
|
multiple: boolean;
|
|
281
282
|
options: DropdownOption[];
|
|
@@ -284,6 +285,7 @@ searchable: boolean;
|
|
|
284
285
|
labelKey: string;
|
|
285
286
|
maxTags: number;
|
|
286
287
|
clearable: boolean;
|
|
288
|
+
required: boolean;
|
|
287
289
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
288
290
|
dropdownTrigger: HTMLDivElement;
|
|
289
291
|
dropdownOverlay: HTMLDivElement;
|
|
@@ -1371,6 +1373,10 @@ declare interface DropdownProps {
|
|
|
1371
1373
|
labelKey?: string;
|
|
1372
1374
|
maxTags?: number;
|
|
1373
1375
|
clearable?: boolean;
|
|
1376
|
+
error?: boolean;
|
|
1377
|
+
errorText?: string;
|
|
1378
|
+
label?: string;
|
|
1379
|
+
required?: boolean;
|
|
1374
1380
|
}
|
|
1375
1381
|
|
|
1376
1382
|
declare const File_2: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|