@mythpe/quasar-ui-qui 0.5.65 → 0.5.67
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/css/components/m-input.scss +49 -35
- package/dist/index.common.cjs +1 -1
- package/dist/index.d.ts +4 -6
- package/dist/index.js +1 -1
- package/dist/index.umd.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -665,7 +665,7 @@ export declare const convertToArabicNumbers: (input: string | number) => string;
|
|
|
665
665
|
*/
|
|
666
666
|
export declare const copyText: (text: string | number | null | undefined) => Promise<string>;
|
|
667
667
|
|
|
668
|
-
export declare const createMyth: (options
|
|
668
|
+
export declare const createMyth: (options: CreateMythOptions) => CreateMythInstance;
|
|
669
669
|
|
|
670
670
|
export declare interface CreateMythInstance extends GlobalMythInstance {
|
|
671
671
|
install: (app: App, options?: {
|
|
@@ -679,13 +679,12 @@ export declare interface CreateMythOptions {
|
|
|
679
679
|
componentsProps?: Record<string, Record<string, any>>;
|
|
680
680
|
apiUrl?: string;
|
|
681
681
|
apiServices?: ApiServicesSchema;
|
|
682
|
-
bootApiFiles?: () => Record<string, () => Promise<any>>;
|
|
683
682
|
apiHeaders?: Record<ApiHeaderKey, ApiHeaderValue>;
|
|
684
|
-
locale
|
|
685
|
-
availableLocales
|
|
683
|
+
locale: string;
|
|
684
|
+
availableLocales: string[];
|
|
686
685
|
mapQuasarLanguages?: Record<string, string>;
|
|
687
686
|
quasarLanguageFiles?: () => Record<string, any>;
|
|
688
|
-
i18nOptions
|
|
687
|
+
i18nOptions: I18nOptions;
|
|
689
688
|
veeValidateConfig?: Partial<VeeValidateConfig>;
|
|
690
689
|
}
|
|
691
690
|
|
|
@@ -3320,7 +3319,6 @@ export declare const useComponent: <P extends Generic>(name: MaybeRefOrGetter<Co
|
|
|
3320
3319
|
md: any;
|
|
3321
3320
|
lg: any;
|
|
3322
3321
|
xl: any;
|
|
3323
|
-
class: (string | null | undefined)[];
|
|
3324
3322
|
}>;
|
|
3325
3323
|
inputRules: ComputedRef<Record<string, any>>;
|
|
3326
3324
|
accepts: ComputedRef<string[]>;
|