@dynamicforms/vuetify-inputs 0.5.5 → 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/dynamicforms-vuetify-inputs.js +747 -737
- package/dist/dynamicforms-vuetify-inputs.js.map +1 -1
- package/dist/dynamicforms-vuetify-inputs.umd.cjs +6 -6
- package/dist/dynamicforms-vuetify-inputs.umd.cjs.map +1 -1
- package/dist/index.d.ts +7 -1
- package/dist/style.css +1 -1
- package/package.json +5 -3
package/dist/index.d.ts
CHANGED
|
@@ -220,12 +220,15 @@ export declare interface BaseProps<T = any> {
|
|
|
220
220
|
visibility?: default_2.DisplayMode;
|
|
221
221
|
cssClass?: string;
|
|
222
222
|
clearable?: boolean;
|
|
223
|
+
passthroughAttrs?: Record<string, any>;
|
|
223
224
|
}
|
|
224
225
|
|
|
225
226
|
export declare type BreakpointNames = typeof responsiveBreakpoints[number];
|
|
226
227
|
|
|
227
228
|
export declare type BreakpointsJSON<T extends Record<string, any>> = T & Partial<Record<BreakpointNames, T>>;
|
|
228
229
|
|
|
230
|
+
declare type ClassTypes = string | string[] | Record<string, boolean>;
|
|
231
|
+
|
|
229
232
|
export declare const DateTimeLocaleConfig: {
|
|
230
233
|
dateTimeLocale: Ref<{
|
|
231
234
|
code: string;
|
|
@@ -564,11 +567,14 @@ export declare class Label {
|
|
|
564
567
|
constructor(text: string, icon?: string | undefined, iconComponent?: string);
|
|
565
568
|
}
|
|
566
569
|
|
|
567
|
-
export declare const MessagesWidget: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
570
|
+
export declare const MessagesWidget: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
571
|
+
classes: ClassTypes | ClassTypes[];
|
|
572
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
568
573
|
|
|
569
574
|
declare interface Props {
|
|
570
575
|
errors: ValidationError[];
|
|
571
576
|
message: string;
|
|
577
|
+
classes?: ClassTypes | ClassTypes[];
|
|
572
578
|
}
|
|
573
579
|
|
|
574
580
|
export declare class ResponsiveActionRenderOptions extends ResponsiveRenderOptions<ActionRenderOptions> {
|