prlg-ui 1.8.58 → 1.8.59
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 +871 -852
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1084,7 +1084,9 @@ onChange?: ((value: string | number | AutocompleteOption | (string | number | Au
|
|
|
1084
1084
|
}>, {
|
|
1085
1085
|
label: string;
|
|
1086
1086
|
disabled: boolean;
|
|
1087
|
+
error: boolean;
|
|
1087
1088
|
placeholder: string;
|
|
1089
|
+
errorText: string;
|
|
1088
1090
|
multiple: boolean;
|
|
1089
1091
|
options: AutocompleteOption[];
|
|
1090
1092
|
loading: boolean;
|
|
@@ -1092,6 +1094,7 @@ valueKey: string;
|
|
|
1092
1094
|
labelKey: string;
|
|
1093
1095
|
maxTags: number;
|
|
1094
1096
|
clearable: boolean;
|
|
1097
|
+
required: boolean;
|
|
1095
1098
|
minQueryLength: number;
|
|
1096
1099
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
1097
1100
|
autocompleteTrigger: HTMLDivElement;
|
|
@@ -1119,6 +1122,9 @@ declare interface AutocompleteProps {
|
|
|
1119
1122
|
clearable?: boolean;
|
|
1120
1123
|
minQueryLength?: number;
|
|
1121
1124
|
label?: string;
|
|
1125
|
+
required?: boolean;
|
|
1126
|
+
error?: boolean;
|
|
1127
|
+
errorText?: string;
|
|
1122
1128
|
}
|
|
1123
1129
|
|
|
1124
1130
|
export declare const Badge: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|