@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/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(breakpoint: Ref<BreakpointNames>, data?: Partial<IField<ActionBreakpointOptions>>): Action;
163
- static yesAction(breakpoint: Ref<BreakpointNames>, data?: Partial<IField<ActionBreakpointOptions>>): Action;
164
- static noAction(breakpoint: Ref<BreakpointNames>, data?: Partial<IField<ActionBreakpointOptions>>): Action;
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>): {