@dynamicforms/vuetify-inputs 0.5.6 → 0.5.8

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
@@ -55,7 +55,7 @@ import { VSelect } from 'vuetify/components/VSelect';
55
55
  import { VSwitch } from 'vuetify/components/VSwitch';
56
56
  import { VTextarea } from 'vuetify/components/VTextarea';
57
57
  import { VTextField } from 'vuetify/components/VTextField';
58
- import { VTimePicker } from 'vuetify/labs/VTimePicker';
58
+ import { VTimePicker } from 'vuetify/components/VTimePicker';
59
59
  import { WritableComputedRef } from 'vue';
60
60
 
61
61
  declare const __VLS_component: DefineComponent<DfSelectProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
@@ -134,13 +134,14 @@ declare function __VLS_template_2(): {
134
134
  }): any;
135
135
  prepend?(_: {
136
136
  id: ComputedRef<string>;
137
- messagesId: ComputedRef<string>;
137
+ messagesId: ComputedRef<string | undefined>;
138
138
  isDirty: ComputedRef<boolean>;
139
139
  isDisabled: ComputedRef<boolean>;
140
140
  isReadonly: ComputedRef<boolean>;
141
141
  isPristine: Ref<boolean>;
142
142
  isValid: ComputedRef<boolean | null>;
143
143
  isValidating: Ref<boolean>;
144
+ hasDetails: Ref<boolean>;
144
145
  reset: () => void;
145
146
  resetValidation: () => void;
146
147
  validate: () => void;
@@ -227,6 +228,8 @@ export declare type BreakpointNames = typeof responsiveBreakpoints[number];
227
228
 
228
229
  export declare type BreakpointsJSON<T extends Record<string, any>> = T & Partial<Record<BreakpointNames, T>>;
229
230
 
231
+ declare type ClassTypes = string | string[] | Record<string, boolean>;
232
+
230
233
  export declare const DateTimeLocaleConfig: {
231
234
  dateTimeLocale: Ref<{
232
235
  code: string;
@@ -565,11 +568,14 @@ export declare class Label {
565
568
  constructor(text: string, icon?: string | undefined, iconComponent?: string);
566
569
  }
567
570
 
568
- export declare const MessagesWidget: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
571
+ export declare const MessagesWidget: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {
572
+ classes: ClassTypes | ClassTypes[];
573
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
569
574
 
570
575
  declare interface Props {
571
576
  errors: ValidationError[];
572
577
  message: string;
578
+ classes?: ClassTypes | ClassTypes[];
573
579
  }
574
580
 
575
581
  export declare class ResponsiveActionRenderOptions extends ResponsiveRenderOptions<ActionRenderOptions> {