@dynamicforms/vuetify-inputs 0.4.1 → 0.4.2

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
@@ -51,6 +51,23 @@ blur: () => any;
51
51
  onBlur?: (() => any) | undefined;
52
52
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
53
53
 
54
+ declare const __VLS_component_2: DefineComponent<Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
55
+ "update:modelValue": (value: any) => any;
56
+ "click:clear": () => any;
57
+ "update:modelValueDisplay": (value: SelectChoice[]) => any;
58
+ }, string, PublicProps, Readonly<Props_8> & Readonly<{
59
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
60
+ "onClick:clear"?: (() => any) | undefined;
61
+ "onUpdate:modelValueDisplay"?: ((value: SelectChoice[]) => any) | undefined;
62
+ }>, {
63
+ enabled: boolean;
64
+ allowNull: boolean;
65
+ multiple: boolean;
66
+ choices: SelectChoice[];
67
+ allowTags: boolean;
68
+ fetchChoices: SelectFetchChoices;
69
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
70
+
54
71
  declare type __VLS_Props = {
55
72
  data?: DefaultInputSlot & {
56
73
  label?: string;
@@ -102,14 +119,35 @@ declare function __VLS_template(): {
102
119
  rootEl: any;
103
120
  };
104
121
 
122
+ declare function __VLS_template_2(): {
123
+ attrs: Partial<{}>;
124
+ slots: Readonly<{
125
+ 'append-inner'?: (props: any) => any;
126
+ 'prepend-inner'?: (props: any) => any;
127
+ }> & {
128
+ 'append-inner'?: (props: any) => any;
129
+ 'prepend-inner'?: (props: any) => any;
130
+ };
131
+ refs: {};
132
+ rootEl: any;
133
+ };
134
+
105
135
  declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
106
136
 
137
+ declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
138
+
107
139
  declare type __VLS_WithTemplateSlots<T, S> = T & {
108
140
  new (): {
109
141
  $slots: S;
110
142
  };
111
143
  };
112
144
 
145
+ declare type __VLS_WithTemplateSlots_2<T, S> = T & {
146
+ new (): {
147
+ $slots: S;
148
+ };
149
+ };
150
+
113
151
  export declare class Action {
114
152
  readonly name: string;
115
153
  displayStyle: ResponsiveLabelRenderOptions;
@@ -302,22 +340,7 @@ modelValue: string;
302
340
  }> | null;
303
341
  }, any>;
304
342
 
305
- export declare const DfSelect: DefineComponent<Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
306
- "update:modelValue": (value: any) => any;
307
- "click:clear": () => any;
308
- "update:modelValueDisplay": (value: SelectChoice[]) => any;
309
- }, string, PublicProps, Readonly<Props_8> & Readonly<{
310
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
311
- "onClick:clear"?: (() => any) | undefined;
312
- "onUpdate:modelValueDisplay"?: ((value: SelectChoice[]) => any) | undefined;
313
- }>, {
314
- enabled: boolean;
315
- allowNull: boolean;
316
- multiple: boolean;
317
- choices: SelectChoice[];
318
- allowTags: boolean;
319
- fetchChoices: SelectFetchChoices;
320
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
343
+ export declare const DfSelect: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
321
344
 
322
345
  export declare const DfTextArea: DefineComponent<Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
323
346
  "update:modelValue": (value: any) => any;