@dynamicforms/vuetify-inputs 0.5.6 → 0.5.7

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
@@ -227,6 +227,8 @@ export declare type BreakpointNames = typeof responsiveBreakpoints[number];
227
227
 
228
228
  export declare type BreakpointsJSON<T extends Record<string, any>> = T & Partial<Record<BreakpointNames, T>>;
229
229
 
230
+ declare type ClassTypes = string | string[] | Record<string, boolean>;
231
+
230
232
  export declare const DateTimeLocaleConfig: {
231
233
  dateTimeLocale: Ref<{
232
234
  code: string;
@@ -565,11 +567,14 @@ export declare class Label {
565
567
  constructor(text: string, icon?: string | undefined, iconComponent?: string);
566
568
  }
567
569
 
568
- export declare const MessagesWidget: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
570
+ export declare const MessagesWidget: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {
571
+ classes: ClassTypes | ClassTypes[];
572
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
569
573
 
570
574
  declare interface Props {
571
575
  errors: ValidationError[];
572
576
  message: string;
577
+ classes?: ClassTypes | ClassTypes[];
573
578
  }
574
579
 
575
580
  export declare class ResponsiveActionRenderOptions extends ResponsiveRenderOptions<ActionRenderOptions> {