prlg-ui 1.8.57 → 1.8.58
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 +2 -0
- package/dist/prlg-ui.cjs.js +1 -1
- package/dist/prlg-ui.css +1 -1
- package/dist/prlg-ui.es.js +631 -624
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1082,6 +1082,7 @@ onChange?: ((value: string | number | AutocompleteOption | (string | number | Au
|
|
|
1082
1082
|
"onUpdate:modelValue"?: ((value: string | number | AutocompleteOption | (string | number | AutocompleteOption)[] | undefined) => any) | undefined;
|
|
1083
1083
|
"onRemove-tag"?: ((value: string | number | AutocompleteOption) => any) | undefined;
|
|
1084
1084
|
}>, {
|
|
1085
|
+
label: string;
|
|
1085
1086
|
disabled: boolean;
|
|
1086
1087
|
placeholder: string;
|
|
1087
1088
|
multiple: boolean;
|
|
@@ -1117,6 +1118,7 @@ declare interface AutocompleteProps {
|
|
|
1117
1118
|
maxTags?: number;
|
|
1118
1119
|
clearable?: boolean;
|
|
1119
1120
|
minQueryLength?: number;
|
|
1121
|
+
label?: string;
|
|
1120
1122
|
}
|
|
1121
1123
|
|
|
1122
1124
|
export declare const Badge: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|