@dynamicforms/vuetify-inputs 0.5.0 → 0.5.1
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 +507 -499
- package/dist/dynamicforms-vuetify-inputs.js.map +1 -1
- package/dist/dynamicforms-vuetify-inputs.umd.cjs +14 -14
- package/dist/dynamicforms-vuetify-inputs.umd.cjs.map +1 -1
- package/dist/index.d.ts +11 -3
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -159,9 +159,9 @@ export declare class Action extends Action_2<ActionBreakpointOptions> {
|
|
|
159
159
|
get icon(): string | undefined;
|
|
160
160
|
get showIcon(): boolean | undefined;
|
|
161
161
|
get renderAs(): ActionDisplayStyle | undefined;
|
|
162
|
-
static closeAction(
|
|
163
|
-
static yesAction(
|
|
164
|
-
static noAction(
|
|
162
|
+
static closeAction(data?: Partial<IField<ActionBreakpointOptions>>): Action;
|
|
163
|
+
static yesAction(data?: Partial<IField<ActionBreakpointOptions>>): Action;
|
|
164
|
+
static noAction(data?: Partial<IField<ActionBreakpointOptions>>): Action;
|
|
165
165
|
}
|
|
166
166
|
|
|
167
167
|
export declare type ActionBreakpointOptions = BreakpointsJSON<ActionRenderOptions>;
|
|
@@ -472,6 +472,14 @@ export declare type SelectFetchChoices<T1 = any, T2 = any> = (queryValue?: T1, i
|
|
|
472
472
|
|
|
473
473
|
declare type ShowAsGroup = 'no' | 'grouped' | 'grouped-no-borders';
|
|
474
474
|
|
|
475
|
+
export declare const translatableStrings: {
|
|
476
|
+
Yes: string;
|
|
477
|
+
No: string;
|
|
478
|
+
Close: string;
|
|
479
|
+
};
|
|
480
|
+
|
|
481
|
+
export declare function translateStrings(translationCallback: (s: string) => string): void;
|
|
482
|
+
|
|
475
483
|
export declare function useBreakpoint(): ComputedRef<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
476
484
|
|
|
477
485
|
export declare function useInputBase<T = any>(props: BaseProps<T>, emit: BaseEmits<T>): {
|