@dynamicforms/vuetify-inputs 0.6.5 → 0.6.6
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.css +1 -1
- package/dist/dynamicforms-vuetify-inputs.js +742 -713
- package/dist/dynamicforms-vuetify-inputs.js.map +1 -1
- package/dist/dynamicforms-vuetify-inputs.umd.cjs +13 -13
- package/dist/dynamicforms-vuetify-inputs.umd.cjs.map +1 -1
- package/dist/index.d.ts +24 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -232,6 +232,11 @@ export declare type BreakpointNames = (typeof responsiveBreakpoints)[number];
|
|
|
232
232
|
|
|
233
233
|
export declare type BreakpointsJSON<T extends Record<string, any>> = T & Partial<Record<BreakpointNames, T>>;
|
|
234
234
|
|
|
235
|
+
export declare const ckEditorLanguage: {
|
|
236
|
+
language: string;
|
|
237
|
+
translations: undefined;
|
|
238
|
+
};
|
|
239
|
+
|
|
235
240
|
declare type ClassTypes = string | string[] | Record<string, boolean>;
|
|
236
241
|
|
|
237
242
|
export declare const DateTimeLocaleConfig: {
|
|
@@ -607,12 +612,31 @@ export declare interface SelectChoice {
|
|
|
607
612
|
|
|
608
613
|
export declare type SelectFetchChoices<T1 = any, T2 = any> = (queryValue?: T1, idValue?: T2) => Promise<SelectChoice[]>;
|
|
609
614
|
|
|
615
|
+
export declare function setCkEditorLanguage(language: string, translations: any): void;
|
|
616
|
+
|
|
610
617
|
declare type ShowAsGroup = 'no' | 'grouped' | 'grouped-no-borders';
|
|
611
618
|
|
|
612
619
|
export declare const translatableStrings: {
|
|
613
620
|
Yes: string;
|
|
614
621
|
No: string;
|
|
615
622
|
Close: string;
|
|
623
|
+
Paragraph: string;
|
|
624
|
+
Heading1: string;
|
|
625
|
+
Heading2: string;
|
|
626
|
+
Heading3: string;
|
|
627
|
+
Heading4: string;
|
|
628
|
+
Heading5: string;
|
|
629
|
+
Heading6: string;
|
|
630
|
+
Downloadable: string;
|
|
631
|
+
ArticleCategory: string;
|
|
632
|
+
Title: string;
|
|
633
|
+
Subtitle: string;
|
|
634
|
+
InfoBox: string;
|
|
635
|
+
SideQuote: string;
|
|
636
|
+
Marker: string;
|
|
637
|
+
Spoiler: string;
|
|
638
|
+
CodeDark: string;
|
|
639
|
+
CodeBright: string;
|
|
616
640
|
};
|
|
617
641
|
|
|
618
642
|
export declare function translateStrings(translationCallback: (s: string) => string): void;
|
package/package.json
CHANGED