@dynamicforms/vuetify-inputs 0.1.15 → 0.1.17

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
@@ -300,8 +300,6 @@ export declare interface DynamicFormsInputsOptions {
300
300
  registerVuetifyComponents: boolean;
301
301
  }
302
302
 
303
- export declare const ErrorsWidget: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
304
-
305
303
  export declare interface FileComms {
306
304
  /**
307
305
  * upload is called when a file is added to the input and needs to be uploaded to the backend for storage
@@ -332,8 +330,11 @@ export declare type FileProgressCallback = (loaded: number, total: number) => vo
332
330
 
333
331
  export declare const InputBase: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
334
332
 
333
+ export declare const MessagesWidget: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
334
+
335
335
  declare interface Props {
336
336
  errors: ValidationError[];
337
+ message: string;
337
338
  }
338
339
 
339
340
  declare interface Props_2 extends BaseProps {
@@ -405,6 +406,8 @@ export declare function useInputBase<T = any>(props: BaseProps<T>, emit: BaseEmi
405
406
  vuetifyBindings: ComputedRef< {
406
407
  name: string | undefined;
407
408
  class: string;
409
+ density: "default";
410
+ variant: "underlined";
408
411
  label: string;
409
412
  messages: string | undefined;
410
413
  readonly: boolean;