prlg-ui 1.8.57 → 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 CHANGED
@@ -1082,8 +1082,11 @@ 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;
1087
+ error: boolean;
1086
1088
  placeholder: string;
1089
+ errorText: string;
1087
1090
  multiple: boolean;
1088
1091
  options: AutocompleteOption[];
1089
1092
  loading: boolean;
@@ -1091,6 +1094,7 @@ valueKey: string;
1091
1094
  labelKey: string;
1092
1095
  maxTags: number;
1093
1096
  clearable: boolean;
1097
+ required: boolean;
1094
1098
  minQueryLength: number;
1095
1099
  }, {}, {}, {}, string, ComponentProvideOptions, false, {
1096
1100
  autocompleteTrigger: HTMLDivElement;
@@ -1117,6 +1121,10 @@ declare interface AutocompleteProps {
1117
1121
  maxTags?: number;
1118
1122
  clearable?: boolean;
1119
1123
  minQueryLength?: number;
1124
+ label?: string;
1125
+ required?: boolean;
1126
+ error?: boolean;
1127
+ errorText?: string;
1120
1128
  }
1121
1129
 
1122
1130
  export declare const Badge: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;