@hostlink/nuxt-light 1.18.2 → 1.18.3

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