@hostlink/nuxt-light 1.22.3 → 1.23.0

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.
@@ -1,4 +1,5 @@
1
- import type { QDialogOptions, QNotifyCreateOptions, QNotifyUpdateOptions } from 'quasar';
1
+ import type { QVueGlobals, QDialogOptions, QNotifyCreateOptions, QNotifyUpdateOptions } from 'quasar';
2
+ import type { I18n } from 'vue-i18n';
2
3
  import type { App } from "vue";
3
4
  declare module 'vue' {
4
5
  interface ComponentCustomProperties {
@@ -19,567 +20,8 @@ declare const light: {
19
20
  styles: any;
20
21
  version: string;
21
22
  errors: Array<Error>;
22
- $q: {
23
- addressbarColor: {
24
- set: (hexColor: string) => void;
25
- };
26
- fullscreen: {
27
- isCapable: boolean;
28
- isActive: boolean;
29
- activeEl: Element | null;
30
- request: (target?: Element) => Promise<void>;
31
- exit: () => Promise<void>;
32
- toggle: (target?: Element) => Promise<void>;
33
- };
34
- appVisible: boolean;
35
- bottomSheet: (opts: {
36
- class?: import("quasar").VueClassProp;
37
- style?: import("quasar").VueStyleProp;
38
- title?: string;
39
- message?: string;
40
- actions?: {
41
- [key: string]: any;
42
- classes?: import("quasar").VueClassProp;
43
- style?: import("quasar").VueStyleProp;
44
- icon?: string;
45
- img?: string;
46
- avatar?: string;
47
- label?: string | number;
48
- }[] | undefined;
49
- grid?: boolean;
50
- dark?: boolean | null;
51
- seamless?: boolean;
52
- persistent?: boolean;
53
- }) => import("quasar").DialogChainObject;
54
- cookies: {
55
- get: import("quasar").CookiesGetMethodType;
56
- getAll: () => any;
57
- set: (name: string, value: string, options?: {
58
- expires?: number | string | Date;
59
- path?: string;
60
- domain?: string;
61
- sameSite?: "Lax" | "Strict" | "None";
62
- httpOnly?: boolean;
63
- secure?: boolean;
64
- other?: string;
65
- }) => void;
66
- has: (name: string) => boolean;
67
- remove: (name: string, options?: {
68
- path?: string;
69
- domain?: string;
70
- }) => void;
71
- parseSSR: (ssrContext: any) => import("quasar").Cookies;
72
- };
73
- dark: {
74
- isActive: boolean;
75
- mode: boolean | "auto";
76
- set: (status: boolean | "auto") => void;
77
- toggle: () => void;
78
- };
79
- dialog: (opts: QDialogOptions) => import("quasar").DialogChainObject;
80
- loading: {
81
- isActive: boolean;
82
- show: (opts?: import("quasar").QLoadingShowOptions) => (props?: import("quasar").QLoadingUpdateOptions) => void;
83
- hide: (group?: string) => void;
84
- setDefaults: (opts: {
85
- delay?: number;
86
- message?: string;
87
- group?: string;
88
- spinnerSize?: number;
89
- spinnerColor?: import("quasar").NamedColor;
90
- messageColor?: import("quasar").NamedColor;
91
- backgroundColor?: import("quasar").NamedColor;
92
- spinner?: import("vue").Component;
93
- customClass?: string;
94
- }) => void;
95
- };
96
- loadingBar: {
97
- isActive: boolean;
98
- start: (speed?: number) => void;
99
- stop: () => void;
100
- increment: (amount?: number) => void;
101
- setDefaults: (props: import("quasar").QLoadingBarOptions) => void;
102
- };
103
- notify: (opts: QNotifyCreateOptions | string) => (props?: QNotifyUpdateOptions) => void;
104
- platform: {
105
- userAgent: string;
106
- is: {
107
- name: string;
108
- platform: string;
109
- version?: string | undefined;
110
- versionNumber?: number | undefined;
111
- mobile: boolean;
112
- desktop: boolean;
113
- cordova: boolean;
114
- capacitor: boolean;
115
- nativeMobile: boolean;
116
- nativeMobileWrapper?: ("cordova" | "capacitor") | undefined;
117
- electron: boolean;
118
- bex: boolean;
119
- linux: boolean;
120
- mac: boolean;
121
- win: boolean;
122
- cros: boolean;
123
- chrome: boolean;
124
- firefox: boolean;
125
- opera: boolean;
126
- safari: boolean;
127
- vivaldi: boolean;
128
- edge: boolean;
129
- edgeChromium: boolean;
130
- ie: boolean;
131
- webkit: boolean;
132
- android: boolean;
133
- ios: boolean;
134
- ipad: boolean;
135
- iphone: boolean;
136
- ipod: boolean;
137
- kindle: boolean;
138
- winphone: boolean;
139
- blackberry: boolean;
140
- playbook: boolean;
141
- silk: boolean;
142
- };
143
- has: {
144
- touch: boolean;
145
- webStorage: boolean;
146
- };
147
- within: {
148
- iframe: boolean;
149
- };
150
- parseSSR: (ssrContext: any) => import("quasar").Platform;
151
- };
152
- screen: {
153
- width: number;
154
- height: number;
155
- name: "xs" | "sm" | "md" | "lg" | "xl";
156
- sizes: {
157
- sm: number;
158
- md: number;
159
- lg: number;
160
- xl: number;
161
- };
162
- lt: {
163
- sm: boolean;
164
- md: boolean;
165
- lg: boolean;
166
- xl: boolean;
167
- };
168
- gt: {
169
- xs: boolean;
170
- sm: boolean;
171
- md: boolean;
172
- lg: boolean;
173
- };
174
- xs: boolean;
175
- sm: boolean;
176
- md: boolean;
177
- lg: boolean;
178
- xl: boolean;
179
- setSizes: (breakpoints: {
180
- sm?: number;
181
- md?: number;
182
- lg?: number;
183
- xl?: number;
184
- }) => void;
185
- setDebounce: (amount: number) => void;
186
- };
187
- localStorage: {
188
- hasItem: (key: string) => boolean;
189
- getLength: () => number;
190
- getItem: import("quasar").WebStorageGetItemMethodType;
191
- getIndex: import("quasar").WebStorageGetIndexMethodType;
192
- getKey: import("quasar").WebStorageGetKeyMethodType;
193
- getAll: () => any;
194
- getAllKeys: import("quasar").WebStorageGetAllKeysMethodType;
195
- setItem: (key: string, value: number | boolean | Date | RegExp | ((...params: readonly any[]) => any) | any | readonly any[] | string | null) => void;
196
- removeItem: (key: string) => void;
197
- clear: () => void;
198
- isEmpty: () => boolean;
199
- has: (key: string) => boolean;
200
- set: (key: string, value: number | boolean | Date | RegExp | ((...params: readonly any[]) => any) | any | readonly any[] | string | null) => void;
201
- remove: (key: string) => void;
202
- };
203
- sessionStorage: {
204
- hasItem: (key: string) => boolean;
205
- getLength: () => number;
206
- getItem: import("quasar").WebStorageGetItemMethodType;
207
- getIndex: import("quasar").WebStorageGetIndexMethodType;
208
- getKey: import("quasar").WebStorageGetKeyMethodType;
209
- getAll: () => any;
210
- getAllKeys: import("quasar").WebStorageGetAllKeysMethodType;
211
- setItem: (key: string, value: number | boolean | Date | RegExp | ((...params: readonly any[]) => any) | any | readonly any[] | string | null) => void;
212
- removeItem: (key: string) => void;
213
- clear: () => void;
214
- isEmpty: () => boolean;
215
- has: (key: string) => boolean;
216
- set: (key: string, value: number | boolean | Date | RegExp | ((...params: readonly any[]) => any) | any | readonly any[] | string | null) => void;
217
- remove: (key: string) => void;
218
- };
219
- iconMapFn: import("quasar").GlobalQuasarIconMapFn;
220
- version: string;
221
- lang: {
222
- set: (lang: import("quasar").QuasarLanguage) => void;
223
- getLocale: () => string | undefined;
224
- rtl: boolean;
225
- isoName: string;
226
- nativeName: string;
227
- label: {
228
- select: string;
229
- clear: string;
230
- set: string;
231
- search: string;
232
- remove: string;
233
- ok: string;
234
- cancel: string;
235
- close: string;
236
- reset: string;
237
- update: string;
238
- create: string;
239
- filter: string;
240
- refresh: string;
241
- };
242
- date: {
243
- days: [string, string, string, string, string, string, string];
244
- daysShort: [string, string, string, string, string, string, string];
245
- months: [string, string, string, string, string, string, string, string, string, string, string, string];
246
- monthsShort: [string, string, string, string, string, string, string, string, string, string, string, string];
247
- firstDayOfWeek: number;
248
- format24h: boolean;
249
- headerTitle?: ((date: Date, model: {
250
- year: number;
251
- month: number;
252
- day: number;
253
- }) => string) | undefined;
254
- };
255
- table: {
256
- loading: string;
257
- noData: string;
258
- noResults: string;
259
- recordsPerPage: string;
260
- allRows: string;
261
- columns: string;
262
- selectedRecords: (rows: number) => string;
263
- pagination: (start: number, end: number, total: number) => string;
264
- };
265
- editor: {
266
- left: string;
267
- right: string;
268
- center: string;
269
- bold: string;
270
- align: string;
271
- url: string;
272
- italic: string;
273
- strikethrough: string;
274
- underline: string;
275
- unorderedList: string;
276
- orderedList: string;
277
- subscript: string;
278
- superscript: string;
279
- hyperlink: string;
280
- toggleFullscreen: string;
281
- quote: string;
282
- justify: string;
283
- print: string;
284
- outdent: string;
285
- indent: string;
286
- removeFormat: string;
287
- formatting: string;
288
- fontSize: string;
289
- hr: string;
290
- undo: string;
291
- redo: string;
292
- heading1: string;
293
- heading2: string;
294
- heading3: string;
295
- heading4: string;
296
- heading5: string;
297
- heading6: string;
298
- paragraph: string;
299
- code: string;
300
- size1: string;
301
- size2: string;
302
- size3: string;
303
- size4: string;
304
- size5: string;
305
- size6: string;
306
- size7: string;
307
- defaultFont: string;
308
- viewSource: string;
309
- };
310
- tree: {
311
- noResults: string;
312
- noNodes: string;
313
- };
314
- };
315
- iconSet: {
316
- set: (iconSet: import("quasar").QuasarIconSet) => void;
317
- name: string;
318
- type: {
319
- positive: string;
320
- negative: string;
321
- info: string;
322
- warning: string;
323
- };
324
- arrow: {
325
- left: string;
326
- right: string;
327
- up: string;
328
- down: string;
329
- dropdown: string;
330
- };
331
- chevron: {
332
- left: string;
333
- right: string;
334
- };
335
- colorPicker: {
336
- spectrum: string;
337
- tune: string;
338
- palette: string;
339
- };
340
- pullToRefresh: {
341
- icon: string;
342
- };
343
- carousel: {
344
- left: string;
345
- right: string;
346
- up: string;
347
- down: string;
348
- navigationIcon: string;
349
- };
350
- chip: {
351
- remove: string;
352
- selected: string;
353
- };
354
- datetime: {
355
- arrowLeft: string;
356
- arrowRight: string;
357
- now: string;
358
- today: string;
359
- };
360
- editor: {
361
- size: string;
362
- left: string;
363
- right: string;
364
- center: string;
365
- bold: string;
366
- align: string;
367
- italic: string;
368
- strikethrough: string;
369
- underline: string;
370
- unorderedList: string;
371
- orderedList: string;
372
- subscript: string;
373
- superscript: string;
374
- hyperlink: string;
375
- toggleFullscreen: string;
376
- quote: string;
377
- justify: string;
378
- print: string;
379
- outdent: string;
380
- indent: string;
381
- removeFormat: string;
382
- formatting: string;
383
- fontSize: string;
384
- hr: string;
385
- undo: string;
386
- redo: string;
387
- heading1: string;
388
- heading2: string;
389
- heading3: string;
390
- heading4: string;
391
- heading5: string;
392
- heading6: string;
393
- code: string;
394
- size1: string;
395
- size2: string;
396
- size3: string;
397
- size4: string;
398
- size5: string;
399
- size6: string;
400
- size7: string;
401
- viewSource: string;
402
- heading: string;
403
- font: string;
404
- };
405
- expansionItem: {
406
- icon: string;
407
- denseIcon: string;
408
- };
409
- fab: {
410
- icon: string;
411
- activeIcon: string;
412
- };
413
- field: {
414
- clear: string;
415
- error: string;
416
- };
417
- pagination: {
418
- first: string;
419
- prev: string;
420
- next: string;
421
- last: string;
422
- };
423
- rating: {
424
- icon: string;
425
- };
426
- stepper: {
427
- error: string;
428
- done: string;
429
- active: string;
430
- };
431
- tabs: {
432
- left: string;
433
- right: string;
434
- up: string;
435
- down: string;
436
- };
437
- table: {
438
- warning: string;
439
- arrowUp: string;
440
- firstPage: string;
441
- prevPage: string;
442
- nextPage: string;
443
- lastPage: string;
444
- };
445
- tree: {
446
- icon: string;
447
- };
448
- uploader: {
449
- clear: string;
450
- done: string;
451
- add: string;
452
- upload: string;
453
- removeQueue: string;
454
- removeUploaded: string;
455
- };
456
- };
457
- } | null;
458
- $i18n: {
459
- readonly mode: import("vue-i18n").I18nMode;
460
- readonly global: {
461
- id: number;
462
- locale: string;
463
- fallbackLocale: import("@intlify/core-base").FallbackLocales<string>;
464
- inheritLocale: boolean;
465
- readonly availableLocales: string[];
466
- readonly messages: {};
467
- readonly datetimeFormats: {};
468
- readonly numberFormats: {};
469
- readonly modifiers: import("vue-i18n").LinkedModifiers<import("vue-i18n").VueMessageType>;
470
- readonly pluralRules: import("@intlify/core-base").PluralizationRules;
471
- readonly isGlobal: boolean;
472
- missingWarn: boolean | RegExp;
473
- fallbackWarn: boolean | RegExp;
474
- fallbackRoot: boolean;
475
- fallbackFormat: boolean;
476
- warnHtmlMessage: boolean;
477
- escapeParameter: boolean;
478
- t: import("vue-i18n").ComposerTranslation<{}, string, import("@intlify/core-base").RemoveIndexSignature<{
479
- [x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
480
- }>, never, never, never>;
481
- rt: import("vue-i18n").ComposerResolveLocaleMessageTranslation<string>;
482
- d: import("vue-i18n").ComposerDateTimeFormatting<{}, string, import("@intlify/core-base").RemoveIndexSignature<{
483
- [x: string]: import("@intlify/core-base").DateTimeFormatOptions;
484
- }>, never, never, never>;
485
- n: import("vue-i18n").ComposerNumberFormatting<{}, string, import("@intlify/core-base").RemoveIndexSignature<{
486
- [x: string]: import("@intlify/core-base").NumberFormatOptions;
487
- }>, never, never, never>;
488
- te: <Str extends string, Key extends never = never>(key: Str | Key, locale?: string | undefined) => boolean;
489
- tm: <Key extends string, ResourceKeys extends never = never, Locale extends never = never, Target = import("@intlify/core-base").RemoveIndexSignature<{
490
- [x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
491
- }>, Return = ResourceKeys extends import("@intlify/core-base").ResourcePath<Target> ? import("@intlify/core-base").ResourceValue<Target, ResourceKeys> : Record<string, any>>(key: Key | ResourceKeys) => Return;
492
- getLocaleMessage: <MessageSchema extends import("@intlify/core-base").LocaleMessage<import("vue-i18n").VueMessageType> = never, LocaleSchema extends string = string, Locale extends never = never, Return = import("vue-i18n").IsNever<MessageSchema> extends true ? import("@intlify/core-base").RemoveIndexSignature<{
493
- [x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
494
- }> : MessageSchema>(locale: LocaleSchema | Locale) => Return;
495
- setLocaleMessage: <MessageSchema extends import("@intlify/core-base").LocaleMessage<import("vue-i18n").VueMessageType> = never, LocaleSchema extends string = string, Locale extends never = never, MessageType = import("vue-i18n").IsNever<MessageSchema> extends true ? import("@intlify/core-base").RemoveIndexSignature<{
496
- [x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
497
- }> : MessageSchema, Message extends MessageType = MessageType>(locale: LocaleSchema | Locale, message: Message) => void;
498
- mergeLocaleMessage: <MessageSchema extends import("@intlify/core-base").LocaleMessage<import("vue-i18n").VueMessageType> = never, LocaleSchema extends string = string, Locale extends never = never, Message = import("vue-i18n").IsNever<MessageSchema> extends true ? Record<string, any> : MessageSchema>(locale: LocaleSchema | Locale, message: Message) => void;
499
- getDateTimeFormat: <DateTimeSchema extends Record<string, any> = never, LocaleSchema extends string = string, Locale extends never = never, Return = import("vue-i18n").IsNever<DateTimeSchema> extends true ? import("@intlify/core-base").RemoveIndexSignature<{
500
- [x: string]: import("@intlify/core-base").DateTimeFormatOptions;
501
- }> : DateTimeSchema>(locale: LocaleSchema | Locale) => Return;
502
- setDateTimeFormat: <DateTimeSchema extends Record<string, any> = never, LocaleSchema extends string = string, Locale extends never = never, FormatsType = import("vue-i18n").IsNever<DateTimeSchema> extends true ? import("@intlify/core-base").RemoveIndexSignature<{
503
- [x: string]: import("@intlify/core-base").DateTimeFormatOptions;
504
- }> : DateTimeSchema, Formats extends FormatsType = FormatsType>(locale: LocaleSchema | Locale, format: Formats) => void;
505
- mergeDateTimeFormat: <DateTimeSchema extends Record<string, any> = never, LocaleSchema extends string = string, Locale extends never = never, Formats = import("vue-i18n").IsNever<DateTimeSchema> extends true ? Record<string, any> : DateTimeSchema>(locale: LocaleSchema | Locale, format: Formats) => void;
506
- getNumberFormat: <NumberSchema extends Record<string, any> = never, LocaleSchema extends string = string, Locale extends never = never, Return = import("vue-i18n").IsNever<NumberSchema> extends true ? import("@intlify/core-base").RemoveIndexSignature<{
507
- [x: string]: import("@intlify/core-base").NumberFormatOptions;
508
- }> : NumberSchema>(locale: LocaleSchema | Locale) => Return;
509
- setNumberFormat: <NumberSchema extends Record<string, any> = never, LocaleSchema extends string = string, Locale extends never = never, FormatsType = import("vue-i18n").IsNever<NumberSchema> extends true ? import("@intlify/core-base").RemoveIndexSignature<{
510
- [x: string]: import("@intlify/core-base").NumberFormatOptions;
511
- }> : NumberSchema, Formats extends FormatsType = FormatsType>(locale: LocaleSchema | Locale, format: Formats) => void;
512
- mergeNumberFormat: <NumberSchema extends Record<string, any> = never, LocaleSchema extends string = string, Locale extends never = never, Formats = import("vue-i18n").IsNever<NumberSchema> extends true ? Record<string, any> : NumberSchema>(locale: LocaleSchema | Locale, format: Formats) => void;
513
- getPostTranslationHandler: () => import("vue-i18n").PostTranslationHandler<import("vue-i18n").VueMessageType> | null;
514
- setPostTranslationHandler: (handler: import("vue-i18n").PostTranslationHandler<import("vue-i18n").VueMessageType> | null) => void;
515
- getMissingHandler: () => import("vue-i18n").MissingHandler | null;
516
- setMissingHandler: (handler: import("vue-i18n").MissingHandler | null) => void;
517
- } | {
518
- id: number;
519
- locale: string;
520
- fallbackLocale: import("@intlify/core-base").FallbackLocales<string>;
521
- readonly availableLocales: string[];
522
- readonly messages: {};
523
- readonly datetimeFormats: {};
524
- readonly numberFormats: {};
525
- readonly modifiers: import("vue-i18n").LinkedModifiers<import("vue-i18n").VueMessageType>;
526
- formatter: {
527
- interpolate: (message: string, values: any, path: string) => Array<any> | null;
528
- };
529
- missing: import("vue-i18n").MissingHandler | null;
530
- postTranslation: import("vue-i18n").PostTranslationHandler<import("vue-i18n").VueMessageType> | null;
531
- silentTranslationWarn: boolean | RegExp;
532
- silentFallbackWarn: boolean | RegExp;
533
- formatFallbackMessages: boolean;
534
- sync: boolean;
535
- warnHtmlInMessage: import("vue-i18n").WarnHtmlInMessageLevel;
536
- escapeParameterHtml: boolean;
537
- preserveDirectiveContent: boolean;
538
- pluralizationRules: import("@intlify/core-base").PluralizationRules;
539
- t: import("vue-i18n").VueI18nTranslation<{}, string, import("@intlify/core-base").RemoveIndexSignature<{
540
- [x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
541
- }>, never, never, never>;
542
- rt: import("vue-i18n").VueI18nResolveLocaleMessageTranslation<string>;
543
- tc: import("vue-i18n").VueI18nTranslationChoice<{}, string, import("@intlify/core-base").RemoveIndexSignature<{
544
- [x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
545
- }>, never, never, never>;
546
- te: <Str extends string, Key extends never = never>(key: Str | Key, locale?: string | undefined) => boolean;
547
- tm: <Key extends string, ResourceKeys extends never = never, Locale extends never = never, Target = import("@intlify/core-base").RemoveIndexSignature<{
548
- [x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
549
- }>, Return = ResourceKeys extends import("@intlify/core-base").ResourcePath<Target> ? import("@intlify/core-base").ResourceValue<Target, ResourceKeys> : Record<string, any>>(key: Key | ResourceKeys) => Return;
550
- getLocaleMessage: <MessageSchema extends import("@intlify/core-base").LocaleMessage<import("vue-i18n").VueMessageType> = never, LocaleSchema extends string = string, Locale extends never = never, Return = import("vue-i18n").IsNever<MessageSchema> extends true ? import("@intlify/core-base").RemoveIndexSignature<{
551
- [x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
552
- }> : MessageSchema>(locale: LocaleSchema | Locale) => Return;
553
- setLocaleMessage: <MessageSchema extends import("@intlify/core-base").LocaleMessage<import("vue-i18n").VueMessageType> = never, LocaleSchema extends string = string, Locale extends never = never, MessageType = import("vue-i18n").IsNever<MessageSchema> extends true ? import("@intlify/core-base").RemoveIndexSignature<{
554
- [x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
555
- }> : MessageSchema, Message extends MessageType = MessageType>(locale: LocaleSchema | Locale, message: Message) => void;
556
- mergeLocaleMessage: <MessageSchema extends import("@intlify/core-base").LocaleMessage<import("vue-i18n").VueMessageType> = never, LocaleSchema extends string = string, Locale extends never = never, Message = import("vue-i18n").IsNever<MessageSchema> extends true ? Record<string, any> : MessageSchema>(locale: LocaleSchema | Locale, message: Message) => void;
557
- d: import("vue-i18n").VueI18nDateTimeFormatting<{}, string, import("@intlify/core-base").RemoveIndexSignature<{
558
- [x: string]: import("@intlify/core-base").DateTimeFormatOptions;
559
- }>, never, never, never>;
560
- getDateTimeFormat: <DateTimeSchema extends Record<string, any> = never, LocaleSchema extends string = string, Locale extends never = never, Return = import("vue-i18n").IsNever<DateTimeSchema> extends true ? import("@intlify/core-base").RemoveIndexSignature<{
561
- [x: string]: import("@intlify/core-base").DateTimeFormatOptions;
562
- }> : DateTimeSchema>(locale: LocaleSchema | Locale) => Return;
563
- setDateTimeFormat: <DateTimeSchema extends Record<string, any> = never, LocaleSchema extends string = string, Locale extends never = never, FormatsType = import("vue-i18n").IsNever<DateTimeSchema> extends true ? import("@intlify/core-base").RemoveIndexSignature<{
564
- [x: string]: import("@intlify/core-base").DateTimeFormatOptions;
565
- }> : DateTimeSchema, Formats extends FormatsType = FormatsType>(locale: LocaleSchema | Locale, format: Formats) => void;
566
- mergeDateTimeFormat: <DateTimeSchema extends Record<string, any> = never, LocaleSchema extends string = string, Locale extends never = never, Formats = import("vue-i18n").IsNever<DateTimeSchema> extends true ? Record<string, any> : DateTimeSchema>(locale: LocaleSchema | Locale, format: Formats) => void;
567
- n: import("vue-i18n").VueI18nNumberFormatting<{}, string, import("@intlify/core-base").RemoveIndexSignature<{
568
- [x: string]: import("@intlify/core-base").NumberFormatOptions;
569
- }>, never, never, never>;
570
- getNumberFormat: <NumberSchema extends Record<string, any> = never, LocaleSchema extends string = string, Locale extends never = never, Return = import("vue-i18n").IsNever<NumberSchema> extends true ? import("@intlify/core-base").RemoveIndexSignature<{
571
- [x: string]: import("@intlify/core-base").NumberFormatOptions;
572
- }> : NumberSchema>(locale: LocaleSchema | Locale) => Return;
573
- setNumberFormat: <NumberSchema extends Record<string, any> = never, LocaleSchema extends string = string, Locale extends never = never, FormatsType = import("vue-i18n").IsNever<NumberSchema> extends true ? import("@intlify/core-base").RemoveIndexSignature<{
574
- [x: string]: import("@intlify/core-base").NumberFormatOptions;
575
- }> : NumberSchema, Formats extends FormatsType = FormatsType>(locale: LocaleSchema | Locale, format: Formats) => void;
576
- mergeNumberFormat: <NumberSchema extends Record<string, any> = never, LocaleSchema extends string = string, Locale extends never = never, Formats = import("vue-i18n").IsNever<NumberSchema> extends true ? Record<string, any> : NumberSchema>(locale: LocaleSchema | Locale, format: Formats) => void;
577
- getChoiceIndex: (choice: import("vue-i18n").Choice, choicesLength: number) => number;
578
- };
579
- readonly allowComposition: boolean;
580
- install: (app: App, ...options: unknown[]) => void;
581
- dispose: () => void;
582
- } | null;
23
+ $q: QVueGlobals | null;
24
+ $i18n: I18n | null;
583
25
  company: string;
584
26
  companyLogo: string;
585
27
  color: string;
@@ -623,567 +65,8 @@ export declare const useLight: () => {
623
65
  styles: any;
624
66
  version: string;
625
67
  errors: Array<Error>;
626
- $q: {
627
- addressbarColor: {
628
- set: (hexColor: string) => void;
629
- };
630
- fullscreen: {
631
- isCapable: boolean;
632
- isActive: boolean;
633
- activeEl: Element | null;
634
- request: (target?: Element) => Promise<void>;
635
- exit: () => Promise<void>;
636
- toggle: (target?: Element) => Promise<void>;
637
- };
638
- appVisible: boolean;
639
- bottomSheet: (opts: {
640
- class?: import("quasar").VueClassProp;
641
- style?: import("quasar").VueStyleProp;
642
- title?: string;
643
- message?: string;
644
- actions?: {
645
- [key: string]: any;
646
- classes?: import("quasar").VueClassProp;
647
- style?: import("quasar").VueStyleProp;
648
- icon?: string;
649
- img?: string;
650
- avatar?: string;
651
- label?: string | number;
652
- }[] | undefined;
653
- grid?: boolean;
654
- dark?: boolean | null;
655
- seamless?: boolean;
656
- persistent?: boolean;
657
- }) => import("quasar").DialogChainObject;
658
- cookies: {
659
- get: import("quasar").CookiesGetMethodType;
660
- getAll: () => any;
661
- set: (name: string, value: string, options?: {
662
- expires?: number | string | Date;
663
- path?: string;
664
- domain?: string;
665
- sameSite?: "Lax" | "Strict" | "None";
666
- httpOnly?: boolean;
667
- secure?: boolean;
668
- other?: string;
669
- }) => void;
670
- has: (name: string) => boolean;
671
- remove: (name: string, options?: {
672
- path?: string;
673
- domain?: string;
674
- }) => void;
675
- parseSSR: (ssrContext: any) => import("quasar").Cookies;
676
- };
677
- dark: {
678
- isActive: boolean;
679
- mode: boolean | "auto";
680
- set: (status: boolean | "auto") => void;
681
- toggle: () => void;
682
- };
683
- dialog: (opts: QDialogOptions) => import("quasar").DialogChainObject;
684
- loading: {
685
- isActive: boolean;
686
- show: (opts?: import("quasar").QLoadingShowOptions) => (props?: import("quasar").QLoadingUpdateOptions) => void;
687
- hide: (group?: string) => void;
688
- setDefaults: (opts: {
689
- delay?: number;
690
- message?: string;
691
- group?: string;
692
- spinnerSize?: number;
693
- spinnerColor?: import("quasar").NamedColor;
694
- messageColor?: import("quasar").NamedColor;
695
- backgroundColor?: import("quasar").NamedColor;
696
- spinner?: import("vue").Component;
697
- customClass?: string;
698
- }) => void;
699
- };
700
- loadingBar: {
701
- isActive: boolean;
702
- start: (speed?: number) => void;
703
- stop: () => void;
704
- increment: (amount?: number) => void;
705
- setDefaults: (props: import("quasar").QLoadingBarOptions) => void;
706
- };
707
- notify: (opts: QNotifyCreateOptions | string) => (props?: QNotifyUpdateOptions) => void;
708
- platform: {
709
- userAgent: string;
710
- is: {
711
- name: string;
712
- platform: string;
713
- version?: string | undefined;
714
- versionNumber?: number | undefined;
715
- mobile: boolean;
716
- desktop: boolean;
717
- cordova: boolean;
718
- capacitor: boolean;
719
- nativeMobile: boolean;
720
- nativeMobileWrapper?: ("cordova" | "capacitor") | undefined;
721
- electron: boolean;
722
- bex: boolean;
723
- linux: boolean;
724
- mac: boolean;
725
- win: boolean;
726
- cros: boolean;
727
- chrome: boolean;
728
- firefox: boolean;
729
- opera: boolean;
730
- safari: boolean;
731
- vivaldi: boolean;
732
- edge: boolean;
733
- edgeChromium: boolean;
734
- ie: boolean;
735
- webkit: boolean;
736
- android: boolean;
737
- ios: boolean;
738
- ipad: boolean;
739
- iphone: boolean;
740
- ipod: boolean;
741
- kindle: boolean;
742
- winphone: boolean;
743
- blackberry: boolean;
744
- playbook: boolean;
745
- silk: boolean;
746
- };
747
- has: {
748
- touch: boolean;
749
- webStorage: boolean;
750
- };
751
- within: {
752
- iframe: boolean;
753
- };
754
- parseSSR: (ssrContext: any) => import("quasar").Platform;
755
- };
756
- screen: {
757
- width: number;
758
- height: number;
759
- name: "xs" | "sm" | "md" | "lg" | "xl";
760
- sizes: {
761
- sm: number;
762
- md: number;
763
- lg: number;
764
- xl: number;
765
- };
766
- lt: {
767
- sm: boolean;
768
- md: boolean;
769
- lg: boolean;
770
- xl: boolean;
771
- };
772
- gt: {
773
- xs: boolean;
774
- sm: boolean;
775
- md: boolean;
776
- lg: boolean;
777
- };
778
- xs: boolean;
779
- sm: boolean;
780
- md: boolean;
781
- lg: boolean;
782
- xl: boolean;
783
- setSizes: (breakpoints: {
784
- sm?: number;
785
- md?: number;
786
- lg?: number;
787
- xl?: number;
788
- }) => void;
789
- setDebounce: (amount: number) => void;
790
- };
791
- localStorage: {
792
- hasItem: (key: string) => boolean;
793
- getLength: () => number;
794
- getItem: import("quasar").WebStorageGetItemMethodType;
795
- getIndex: import("quasar").WebStorageGetIndexMethodType;
796
- getKey: import("quasar").WebStorageGetKeyMethodType;
797
- getAll: () => any;
798
- getAllKeys: import("quasar").WebStorageGetAllKeysMethodType;
799
- setItem: (key: string, value: number | boolean | Date | RegExp | ((...params: readonly any[]) => any) | any | readonly any[] | string | null) => void;
800
- removeItem: (key: string) => void;
801
- clear: () => void;
802
- isEmpty: () => boolean;
803
- has: (key: string) => boolean;
804
- set: (key: string, value: number | boolean | Date | RegExp | ((...params: readonly any[]) => any) | any | readonly any[] | string | null) => void;
805
- remove: (key: string) => void;
806
- };
807
- sessionStorage: {
808
- hasItem: (key: string) => boolean;
809
- getLength: () => number;
810
- getItem: import("quasar").WebStorageGetItemMethodType;
811
- getIndex: import("quasar").WebStorageGetIndexMethodType;
812
- getKey: import("quasar").WebStorageGetKeyMethodType;
813
- getAll: () => any;
814
- getAllKeys: import("quasar").WebStorageGetAllKeysMethodType;
815
- setItem: (key: string, value: number | boolean | Date | RegExp | ((...params: readonly any[]) => any) | any | readonly any[] | string | null) => void;
816
- removeItem: (key: string) => void;
817
- clear: () => void;
818
- isEmpty: () => boolean;
819
- has: (key: string) => boolean;
820
- set: (key: string, value: number | boolean | Date | RegExp | ((...params: readonly any[]) => any) | any | readonly any[] | string | null) => void;
821
- remove: (key: string) => void;
822
- };
823
- iconMapFn: import("quasar").GlobalQuasarIconMapFn;
824
- version: string;
825
- lang: {
826
- set: (lang: import("quasar").QuasarLanguage) => void;
827
- getLocale: () => string | undefined;
828
- rtl: boolean;
829
- isoName: string;
830
- nativeName: string;
831
- label: {
832
- select: string;
833
- clear: string;
834
- set: string;
835
- search: string;
836
- remove: string;
837
- ok: string;
838
- cancel: string;
839
- close: string;
840
- reset: string;
841
- update: string;
842
- create: string;
843
- filter: string;
844
- refresh: string;
845
- };
846
- date: {
847
- days: [string, string, string, string, string, string, string];
848
- daysShort: [string, string, string, string, string, string, string];
849
- months: [string, string, string, string, string, string, string, string, string, string, string, string];
850
- monthsShort: [string, string, string, string, string, string, string, string, string, string, string, string];
851
- firstDayOfWeek: number;
852
- format24h: boolean;
853
- headerTitle?: ((date: Date, model: {
854
- year: number;
855
- month: number;
856
- day: number;
857
- }) => string) | undefined;
858
- };
859
- table: {
860
- loading: string;
861
- noData: string;
862
- noResults: string;
863
- recordsPerPage: string;
864
- allRows: string;
865
- columns: string;
866
- selectedRecords: (rows: number) => string;
867
- pagination: (start: number, end: number, total: number) => string;
868
- };
869
- editor: {
870
- left: string;
871
- right: string;
872
- center: string;
873
- bold: string;
874
- align: string;
875
- url: string;
876
- italic: string;
877
- strikethrough: string;
878
- underline: string;
879
- unorderedList: string;
880
- orderedList: string;
881
- subscript: string;
882
- superscript: string;
883
- hyperlink: string;
884
- toggleFullscreen: string;
885
- quote: string;
886
- justify: string;
887
- print: string;
888
- outdent: string;
889
- indent: string;
890
- removeFormat: string;
891
- formatting: string;
892
- fontSize: string;
893
- hr: string;
894
- undo: string;
895
- redo: string;
896
- heading1: string;
897
- heading2: string;
898
- heading3: string;
899
- heading4: string;
900
- heading5: string;
901
- heading6: string;
902
- paragraph: string;
903
- code: string;
904
- size1: string;
905
- size2: string;
906
- size3: string;
907
- size4: string;
908
- size5: string;
909
- size6: string;
910
- size7: string;
911
- defaultFont: string;
912
- viewSource: string;
913
- };
914
- tree: {
915
- noResults: string;
916
- noNodes: string;
917
- };
918
- };
919
- iconSet: {
920
- set: (iconSet: import("quasar").QuasarIconSet) => void;
921
- name: string;
922
- type: {
923
- positive: string;
924
- negative: string;
925
- info: string;
926
- warning: string;
927
- };
928
- arrow: {
929
- left: string;
930
- right: string;
931
- up: string;
932
- down: string;
933
- dropdown: string;
934
- };
935
- chevron: {
936
- left: string;
937
- right: string;
938
- };
939
- colorPicker: {
940
- spectrum: string;
941
- tune: string;
942
- palette: string;
943
- };
944
- pullToRefresh: {
945
- icon: string;
946
- };
947
- carousel: {
948
- left: string;
949
- right: string;
950
- up: string;
951
- down: string;
952
- navigationIcon: string;
953
- };
954
- chip: {
955
- remove: string;
956
- selected: string;
957
- };
958
- datetime: {
959
- arrowLeft: string;
960
- arrowRight: string;
961
- now: string;
962
- today: string;
963
- };
964
- editor: {
965
- size: string;
966
- left: string;
967
- right: string;
968
- center: string;
969
- bold: string;
970
- align: string;
971
- italic: string;
972
- strikethrough: string;
973
- underline: string;
974
- unorderedList: string;
975
- orderedList: string;
976
- subscript: string;
977
- superscript: string;
978
- hyperlink: string;
979
- toggleFullscreen: string;
980
- quote: string;
981
- justify: string;
982
- print: string;
983
- outdent: string;
984
- indent: string;
985
- removeFormat: string;
986
- formatting: string;
987
- fontSize: string;
988
- hr: string;
989
- undo: string;
990
- redo: string;
991
- heading1: string;
992
- heading2: string;
993
- heading3: string;
994
- heading4: string;
995
- heading5: string;
996
- heading6: string;
997
- code: string;
998
- size1: string;
999
- size2: string;
1000
- size3: string;
1001
- size4: string;
1002
- size5: string;
1003
- size6: string;
1004
- size7: string;
1005
- viewSource: string;
1006
- heading: string;
1007
- font: string;
1008
- };
1009
- expansionItem: {
1010
- icon: string;
1011
- denseIcon: string;
1012
- };
1013
- fab: {
1014
- icon: string;
1015
- activeIcon: string;
1016
- };
1017
- field: {
1018
- clear: string;
1019
- error: string;
1020
- };
1021
- pagination: {
1022
- first: string;
1023
- prev: string;
1024
- next: string;
1025
- last: string;
1026
- };
1027
- rating: {
1028
- icon: string;
1029
- };
1030
- stepper: {
1031
- error: string;
1032
- done: string;
1033
- active: string;
1034
- };
1035
- tabs: {
1036
- left: string;
1037
- right: string;
1038
- up: string;
1039
- down: string;
1040
- };
1041
- table: {
1042
- warning: string;
1043
- arrowUp: string;
1044
- firstPage: string;
1045
- prevPage: string;
1046
- nextPage: string;
1047
- lastPage: string;
1048
- };
1049
- tree: {
1050
- icon: string;
1051
- };
1052
- uploader: {
1053
- clear: string;
1054
- done: string;
1055
- add: string;
1056
- upload: string;
1057
- removeQueue: string;
1058
- removeUploaded: string;
1059
- };
1060
- };
1061
- } | null;
1062
- $i18n: {
1063
- readonly mode: import("vue-i18n").I18nMode;
1064
- readonly global: {
1065
- id: number;
1066
- locale: string;
1067
- fallbackLocale: import("@intlify/core-base").FallbackLocales<string>;
1068
- inheritLocale: boolean;
1069
- readonly availableLocales: string[];
1070
- readonly messages: {};
1071
- readonly datetimeFormats: {};
1072
- readonly numberFormats: {};
1073
- readonly modifiers: import("vue-i18n").LinkedModifiers<import("vue-i18n").VueMessageType>;
1074
- readonly pluralRules: import("@intlify/core-base").PluralizationRules;
1075
- readonly isGlobal: boolean;
1076
- missingWarn: boolean | RegExp;
1077
- fallbackWarn: boolean | RegExp;
1078
- fallbackRoot: boolean;
1079
- fallbackFormat: boolean;
1080
- warnHtmlMessage: boolean;
1081
- escapeParameter: boolean;
1082
- t: import("vue-i18n").ComposerTranslation<{}, string, import("@intlify/core-base").RemoveIndexSignature<{
1083
- [x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
1084
- }>, never, never, never>;
1085
- rt: import("vue-i18n").ComposerResolveLocaleMessageTranslation<string>;
1086
- d: import("vue-i18n").ComposerDateTimeFormatting<{}, string, import("@intlify/core-base").RemoveIndexSignature<{
1087
- [x: string]: import("@intlify/core-base").DateTimeFormatOptions;
1088
- }>, never, never, never>;
1089
- n: import("vue-i18n").ComposerNumberFormatting<{}, string, import("@intlify/core-base").RemoveIndexSignature<{
1090
- [x: string]: import("@intlify/core-base").NumberFormatOptions;
1091
- }>, never, never, never>;
1092
- te: <Str extends string, Key extends never = never>(key: Str | Key, locale?: string | undefined) => boolean;
1093
- tm: <Key extends string, ResourceKeys extends never = never, Locale extends never = never, Target = import("@intlify/core-base").RemoveIndexSignature<{
1094
- [x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
1095
- }>, Return = ResourceKeys extends import("@intlify/core-base").ResourcePath<Target> ? import("@intlify/core-base").ResourceValue<Target, ResourceKeys> : Record<string, any>>(key: Key | ResourceKeys) => Return;
1096
- getLocaleMessage: <MessageSchema extends import("@intlify/core-base").LocaleMessage<import("vue-i18n").VueMessageType> = never, LocaleSchema extends string = string, Locale extends never = never, Return = import("vue-i18n").IsNever<MessageSchema> extends true ? import("@intlify/core-base").RemoveIndexSignature<{
1097
- [x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
1098
- }> : MessageSchema>(locale: LocaleSchema | Locale) => Return;
1099
- setLocaleMessage: <MessageSchema extends import("@intlify/core-base").LocaleMessage<import("vue-i18n").VueMessageType> = never, LocaleSchema extends string = string, Locale extends never = never, MessageType = import("vue-i18n").IsNever<MessageSchema> extends true ? import("@intlify/core-base").RemoveIndexSignature<{
1100
- [x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
1101
- }> : MessageSchema, Message extends MessageType = MessageType>(locale: LocaleSchema | Locale, message: Message) => void;
1102
- mergeLocaleMessage: <MessageSchema extends import("@intlify/core-base").LocaleMessage<import("vue-i18n").VueMessageType> = never, LocaleSchema extends string = string, Locale extends never = never, Message = import("vue-i18n").IsNever<MessageSchema> extends true ? Record<string, any> : MessageSchema>(locale: LocaleSchema | Locale, message: Message) => void;
1103
- getDateTimeFormat: <DateTimeSchema extends Record<string, any> = never, LocaleSchema extends string = string, Locale extends never = never, Return = import("vue-i18n").IsNever<DateTimeSchema> extends true ? import("@intlify/core-base").RemoveIndexSignature<{
1104
- [x: string]: import("@intlify/core-base").DateTimeFormatOptions;
1105
- }> : DateTimeSchema>(locale: LocaleSchema | Locale) => Return;
1106
- setDateTimeFormat: <DateTimeSchema extends Record<string, any> = never, LocaleSchema extends string = string, Locale extends never = never, FormatsType = import("vue-i18n").IsNever<DateTimeSchema> extends true ? import("@intlify/core-base").RemoveIndexSignature<{
1107
- [x: string]: import("@intlify/core-base").DateTimeFormatOptions;
1108
- }> : DateTimeSchema, Formats extends FormatsType = FormatsType>(locale: LocaleSchema | Locale, format: Formats) => void;
1109
- mergeDateTimeFormat: <DateTimeSchema extends Record<string, any> = never, LocaleSchema extends string = string, Locale extends never = never, Formats = import("vue-i18n").IsNever<DateTimeSchema> extends true ? Record<string, any> : DateTimeSchema>(locale: LocaleSchema | Locale, format: Formats) => void;
1110
- getNumberFormat: <NumberSchema extends Record<string, any> = never, LocaleSchema extends string = string, Locale extends never = never, Return = import("vue-i18n").IsNever<NumberSchema> extends true ? import("@intlify/core-base").RemoveIndexSignature<{
1111
- [x: string]: import("@intlify/core-base").NumberFormatOptions;
1112
- }> : NumberSchema>(locale: LocaleSchema | Locale) => Return;
1113
- setNumberFormat: <NumberSchema extends Record<string, any> = never, LocaleSchema extends string = string, Locale extends never = never, FormatsType = import("vue-i18n").IsNever<NumberSchema> extends true ? import("@intlify/core-base").RemoveIndexSignature<{
1114
- [x: string]: import("@intlify/core-base").NumberFormatOptions;
1115
- }> : NumberSchema, Formats extends FormatsType = FormatsType>(locale: LocaleSchema | Locale, format: Formats) => void;
1116
- mergeNumberFormat: <NumberSchema extends Record<string, any> = never, LocaleSchema extends string = string, Locale extends never = never, Formats = import("vue-i18n").IsNever<NumberSchema> extends true ? Record<string, any> : NumberSchema>(locale: LocaleSchema | Locale, format: Formats) => void;
1117
- getPostTranslationHandler: () => import("vue-i18n").PostTranslationHandler<import("vue-i18n").VueMessageType> | null;
1118
- setPostTranslationHandler: (handler: import("vue-i18n").PostTranslationHandler<import("vue-i18n").VueMessageType> | null) => void;
1119
- getMissingHandler: () => import("vue-i18n").MissingHandler | null;
1120
- setMissingHandler: (handler: import("vue-i18n").MissingHandler | null) => void;
1121
- } | {
1122
- id: number;
1123
- locale: string;
1124
- fallbackLocale: import("@intlify/core-base").FallbackLocales<string>;
1125
- readonly availableLocales: string[];
1126
- readonly messages: {};
1127
- readonly datetimeFormats: {};
1128
- readonly numberFormats: {};
1129
- readonly modifiers: import("vue-i18n").LinkedModifiers<import("vue-i18n").VueMessageType>;
1130
- formatter: {
1131
- interpolate: (message: string, values: any, path: string) => Array<any> | null;
1132
- };
1133
- missing: import("vue-i18n").MissingHandler | null;
1134
- postTranslation: import("vue-i18n").PostTranslationHandler<import("vue-i18n").VueMessageType> | null;
1135
- silentTranslationWarn: boolean | RegExp;
1136
- silentFallbackWarn: boolean | RegExp;
1137
- formatFallbackMessages: boolean;
1138
- sync: boolean;
1139
- warnHtmlInMessage: import("vue-i18n").WarnHtmlInMessageLevel;
1140
- escapeParameterHtml: boolean;
1141
- preserveDirectiveContent: boolean;
1142
- pluralizationRules: import("@intlify/core-base").PluralizationRules;
1143
- t: import("vue-i18n").VueI18nTranslation<{}, string, import("@intlify/core-base").RemoveIndexSignature<{
1144
- [x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
1145
- }>, never, never, never>;
1146
- rt: import("vue-i18n").VueI18nResolveLocaleMessageTranslation<string>;
1147
- tc: import("vue-i18n").VueI18nTranslationChoice<{}, string, import("@intlify/core-base").RemoveIndexSignature<{
1148
- [x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
1149
- }>, never, never, never>;
1150
- te: <Str extends string, Key extends never = never>(key: Str | Key, locale?: string | undefined) => boolean;
1151
- tm: <Key extends string, ResourceKeys extends never = never, Locale extends never = never, Target = import("@intlify/core-base").RemoveIndexSignature<{
1152
- [x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
1153
- }>, Return = ResourceKeys extends import("@intlify/core-base").ResourcePath<Target> ? import("@intlify/core-base").ResourceValue<Target, ResourceKeys> : Record<string, any>>(key: Key | ResourceKeys) => Return;
1154
- getLocaleMessage: <MessageSchema extends import("@intlify/core-base").LocaleMessage<import("vue-i18n").VueMessageType> = never, LocaleSchema extends string = string, Locale extends never = never, Return = import("vue-i18n").IsNever<MessageSchema> extends true ? import("@intlify/core-base").RemoveIndexSignature<{
1155
- [x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
1156
- }> : MessageSchema>(locale: LocaleSchema | Locale) => Return;
1157
- setLocaleMessage: <MessageSchema extends import("@intlify/core-base").LocaleMessage<import("vue-i18n").VueMessageType> = never, LocaleSchema extends string = string, Locale extends never = never, MessageType = import("vue-i18n").IsNever<MessageSchema> extends true ? import("@intlify/core-base").RemoveIndexSignature<{
1158
- [x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
1159
- }> : MessageSchema, Message extends MessageType = MessageType>(locale: LocaleSchema | Locale, message: Message) => void;
1160
- mergeLocaleMessage: <MessageSchema extends import("@intlify/core-base").LocaleMessage<import("vue-i18n").VueMessageType> = never, LocaleSchema extends string = string, Locale extends never = never, Message = import("vue-i18n").IsNever<MessageSchema> extends true ? Record<string, any> : MessageSchema>(locale: LocaleSchema | Locale, message: Message) => void;
1161
- d: import("vue-i18n").VueI18nDateTimeFormatting<{}, string, import("@intlify/core-base").RemoveIndexSignature<{
1162
- [x: string]: import("@intlify/core-base").DateTimeFormatOptions;
1163
- }>, never, never, never>;
1164
- getDateTimeFormat: <DateTimeSchema extends Record<string, any> = never, LocaleSchema extends string = string, Locale extends never = never, Return = import("vue-i18n").IsNever<DateTimeSchema> extends true ? import("@intlify/core-base").RemoveIndexSignature<{
1165
- [x: string]: import("@intlify/core-base").DateTimeFormatOptions;
1166
- }> : DateTimeSchema>(locale: LocaleSchema | Locale) => Return;
1167
- setDateTimeFormat: <DateTimeSchema extends Record<string, any> = never, LocaleSchema extends string = string, Locale extends never = never, FormatsType = import("vue-i18n").IsNever<DateTimeSchema> extends true ? import("@intlify/core-base").RemoveIndexSignature<{
1168
- [x: string]: import("@intlify/core-base").DateTimeFormatOptions;
1169
- }> : DateTimeSchema, Formats extends FormatsType = FormatsType>(locale: LocaleSchema | Locale, format: Formats) => void;
1170
- mergeDateTimeFormat: <DateTimeSchema extends Record<string, any> = never, LocaleSchema extends string = string, Locale extends never = never, Formats = import("vue-i18n").IsNever<DateTimeSchema> extends true ? Record<string, any> : DateTimeSchema>(locale: LocaleSchema | Locale, format: Formats) => void;
1171
- n: import("vue-i18n").VueI18nNumberFormatting<{}, string, import("@intlify/core-base").RemoveIndexSignature<{
1172
- [x: string]: import("@intlify/core-base").NumberFormatOptions;
1173
- }>, never, never, never>;
1174
- getNumberFormat: <NumberSchema extends Record<string, any> = never, LocaleSchema extends string = string, Locale extends never = never, Return = import("vue-i18n").IsNever<NumberSchema> extends true ? import("@intlify/core-base").RemoveIndexSignature<{
1175
- [x: string]: import("@intlify/core-base").NumberFormatOptions;
1176
- }> : NumberSchema>(locale: LocaleSchema | Locale) => Return;
1177
- setNumberFormat: <NumberSchema extends Record<string, any> = never, LocaleSchema extends string = string, Locale extends never = never, FormatsType = import("vue-i18n").IsNever<NumberSchema> extends true ? import("@intlify/core-base").RemoveIndexSignature<{
1178
- [x: string]: import("@intlify/core-base").NumberFormatOptions;
1179
- }> : NumberSchema, Formats extends FormatsType = FormatsType>(locale: LocaleSchema | Locale, format: Formats) => void;
1180
- mergeNumberFormat: <NumberSchema extends Record<string, any> = never, LocaleSchema extends string = string, Locale extends never = never, Formats = import("vue-i18n").IsNever<NumberSchema> extends true ? Record<string, any> : NumberSchema>(locale: LocaleSchema | Locale, format: Formats) => void;
1181
- getChoiceIndex: (choice: import("vue-i18n").Choice, choicesLength: number) => number;
1182
- };
1183
- readonly allowComposition: boolean;
1184
- install: (app: App, ...options: unknown[]) => void;
1185
- dispose: () => void;
1186
- } | null;
68
+ $q: QVueGlobals | null;
69
+ $i18n: I18n | null;
1187
70
  company: string;
1188
71
  companyLogo: string;
1189
72
  color: string;