prlg-ui 1.8.56 → 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 CHANGED
@@ -517,7 +517,7 @@ declare type __VLS_PublicProps_11 = {
517
517
  } & __VLS_Props_12;
518
518
 
519
519
  declare type __VLS_PublicProps_12 = {
520
- modelValue: boolean;
520
+ modelValue?: boolean;
521
521
  } & __VLS_Props_13;
522
522
 
523
523
  declare type __VLS_PublicProps_13 = {
@@ -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>;
@@ -1760,7 +1762,10 @@ declare type StepProps = {
1760
1762
 
1761
1763
  export declare const Switch: DefineComponent<__VLS_PublicProps_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1762
1764
  "update:modelValue": (value: boolean) => any;
1765
+ } & {
1766
+ change: () => any;
1763
1767
  }, string, PublicProps, Readonly<__VLS_PublicProps_12> & Readonly<{
1768
+ onChange?: (() => any) | undefined;
1764
1769
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1765
1770
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1766
1771