@feedmepos/mf-hrm-portal 2.0.10-dev → 2.0.10-dev.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.
- package/dist/AuditLogList-DaFC8LUT.js +915 -0
- package/dist/{EmployeeList-B3qXFaOz.js → EmployeeList-fzS5kLyE.js} +164 -169
- package/dist/FormSection.vue_vue_type_script_setup_true_lang-BVb8c4YU.js +71 -0
- package/dist/HorizontalSplitter-o860F4xM.js +12 -0
- package/dist/Main-CvuyDkkJ.js +560 -0
- package/dist/{Main-JUX88mXA.js → Main-g0xYhlQL.js} +11 -10
- package/dist/{Main-urBwZXUq.js → Main-pViKokej.js} +8 -7
- package/dist/PermissionSetList-C71zXeNi.js +338 -0
- package/dist/PortalPermissionEditor.vue_vue_type_script_setup_true_lang-Dx9qaSOy.js +3479 -0
- package/dist/{RoleList-Dl7042_3.js → RoleList-CAGV8HIy.js} +26 -24
- package/dist/TeamMemberList-BOSxsyhc.js +989 -0
- package/dist/{TimesheetList-B3cmnZN5.js → TimesheetList-bEatYw_W.js} +11 -10
- package/dist/{app-DHFWqcG2.js → app-CXo7sYZ7.js} +2376 -1092
- package/dist/app.js +2 -2
- package/dist/{dayjs.min-faWeeWGk.js → dayjs.min-DDneYlAk.js} +1 -1
- package/dist/{employee-sOy9OKvU.js → employee-CfNSjKLV.js} +21 -20
- package/dist/{index-DNsMh7eu.js → index-BAlO0GI7.js} +1 -1
- package/dist/index-CiQs6mxE.js +975 -0
- package/dist/{index-EeD0w_Es.js → iteration-BxC7Vx_7.js} +3444 -4352
- package/dist/{lodash-CfsS7nDC.js → lodash-Cgp0qhfw.js} +1 -1
- package/dist/src/api/audit-log/index.d.ts +1 -0
- package/dist/src/api/grant-user/index.d.ts +8 -0
- package/dist/src/api/index.d.ts +3 -1
- package/dist/src/composables/useBasePermission.d.ts +37 -0
- package/dist/src/helpers/permission-set.d.ts +34 -5
- package/dist/src/helpers/permission-set.test.d.ts +1 -0
- package/dist/src/helpers/permission-sync.d.ts +12 -0
- package/dist/src/router/shared.d.ts +2 -1
- package/dist/src/stores/grant-user.d.ts +86 -0
- package/dist/src/types/grant-user.d.ts +27 -0
- package/dist/src/views/audit-log/components/AuditLogModuleTabs.vue.d.ts +17 -0
- package/dist/src/views/audit-log/constants.d.ts +30 -0
- package/dist/src/views/audit-log/locales/index.d.ts +244 -0
- package/dist/src/views/grant/GrantUserList.vue.d.ts +17 -0
- package/dist/src/views/grant/Main.vue.d.ts +2 -0
- package/dist/src/views/grant/components/GrantUserForm.vue.d.ts +17 -0
- package/dist/src/views/grant/locales/index.d.ts +232 -0
- package/dist/src/views/team/components/BasePermission.vue.d.ts +3 -3
- package/dist/style.css +1 -1
- package/dist/{team-CTYZ-AfE.js → team-DYjRRZA-.js} +1 -1
- package/dist/{timesheet-CP-usx78.js → timesheet-DtpxRbZd.js} +10 -9
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/dist/{useAppStore-DpKptyzk.js → useAppStore-4gHWq2VT.js} +1 -1
- package/dist/{useLoading-D0NWMSr4.js → useLoading-Ef4IqHD8.js} +1 -1
- package/dist/{useReportPermissions-CtnMIyaq.js → useReportPermissions-C4HbISVo.js} +12 -11
- package/dist/useRestaurantMap-e9fQJiLC.js +39 -0
- package/package.json +3 -3
- package/dist/AuditLogList-BqKDq3NZ.js +0 -492
- package/dist/PermissionSetList-BfCuoHa3.js +0 -327
- package/dist/PortalPermissionEditor.vue_vue_type_script_setup_true_lang-BYZbAUtK.js +0 -3334
- package/dist/TeamMemberList-BrZDh51J.js +0 -979
- package/dist/useRestaurantMap-D5BNPLKh.js +0 -107
|
@@ -2,8 +2,20 @@ import * as enUS from './en-US.json';
|
|
|
2
2
|
export type AppMessagesSchema = typeof enUS;
|
|
3
3
|
export declare const i18nMessages: {
|
|
4
4
|
'en-US': {
|
|
5
|
+
date: {
|
|
6
|
+
predefinedRanges: {
|
|
7
|
+
today: string;
|
|
8
|
+
yesterday: string;
|
|
9
|
+
thisWeek: string;
|
|
10
|
+
lastWeek: string;
|
|
11
|
+
last7Days: string;
|
|
12
|
+
thisMonth: string;
|
|
13
|
+
lastMonth: string;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
5
16
|
auditLog: {
|
|
6
17
|
title: string;
|
|
18
|
+
export: string;
|
|
7
19
|
dateRange: {
|
|
8
20
|
placeholder: string;
|
|
9
21
|
};
|
|
@@ -26,15 +38,28 @@ export declare const i18nMessages: {
|
|
|
26
38
|
update: string;
|
|
27
39
|
delete: string;
|
|
28
40
|
};
|
|
41
|
+
modules: {
|
|
42
|
+
all: string;
|
|
43
|
+
inventory: string;
|
|
44
|
+
report: string;
|
|
45
|
+
hrm: string;
|
|
46
|
+
payment: string;
|
|
47
|
+
menu: string;
|
|
48
|
+
crm: string;
|
|
49
|
+
more: string;
|
|
50
|
+
};
|
|
29
51
|
columns: {
|
|
30
52
|
timestamp: string;
|
|
31
53
|
user: string;
|
|
54
|
+
role: string;
|
|
32
55
|
subject: string;
|
|
33
56
|
action: string;
|
|
34
57
|
operation: string;
|
|
35
58
|
outcome: string;
|
|
36
59
|
};
|
|
37
60
|
outcome: {
|
|
61
|
+
success: string;
|
|
62
|
+
failed: string;
|
|
38
63
|
allowed: string;
|
|
39
64
|
denied: string;
|
|
40
65
|
skipped: string;
|
|
@@ -48,21 +73,57 @@ export declare const i18nMessages: {
|
|
|
48
73
|
prevPage: string;
|
|
49
74
|
nextPage: string;
|
|
50
75
|
};
|
|
76
|
+
frontMatter: {
|
|
77
|
+
date: string;
|
|
78
|
+
business: string;
|
|
79
|
+
generatedBy: string;
|
|
80
|
+
};
|
|
81
|
+
exportSettings: {
|
|
82
|
+
title: string;
|
|
83
|
+
};
|
|
84
|
+
exportFields: {
|
|
85
|
+
timestamp: string;
|
|
86
|
+
userName: string;
|
|
87
|
+
userPhone: string;
|
|
88
|
+
subject: string;
|
|
89
|
+
action: string;
|
|
90
|
+
operation: string;
|
|
91
|
+
outcome: string;
|
|
92
|
+
businessId: string;
|
|
93
|
+
restaurantId: string;
|
|
94
|
+
country: string;
|
|
95
|
+
resolvedFrom: string;
|
|
96
|
+
requestMethod: string;
|
|
97
|
+
requestPath: string;
|
|
98
|
+
};
|
|
51
99
|
detail: {
|
|
52
100
|
header: string;
|
|
101
|
+
date: string;
|
|
53
102
|
timestamp: string;
|
|
54
103
|
user: string;
|
|
55
104
|
email: string;
|
|
56
105
|
action: string;
|
|
57
106
|
operation: string;
|
|
107
|
+
role: string;
|
|
58
108
|
subject: string;
|
|
59
109
|
field: string;
|
|
60
110
|
outcome: string;
|
|
61
111
|
business: string;
|
|
62
112
|
restaurant: string;
|
|
113
|
+
changeDetails: string;
|
|
114
|
+
eventType: string;
|
|
63
115
|
metadata: string;
|
|
64
116
|
reason: string;
|
|
65
117
|
resolvedFrom: string;
|
|
118
|
+
resolvedFromValue: {
|
|
119
|
+
admin: string;
|
|
120
|
+
staff: string;
|
|
121
|
+
permissionSet: string;
|
|
122
|
+
systemPermissionSet: string;
|
|
123
|
+
custom: string;
|
|
124
|
+
noMatch: string;
|
|
125
|
+
unknown: string;
|
|
126
|
+
};
|
|
66
127
|
permissionSet: string;
|
|
67
128
|
permissionTrace: string;
|
|
68
129
|
decisivePermission: string;
|
|
@@ -74,8 +135,20 @@ export declare const i18nMessages: {
|
|
|
74
135
|
};
|
|
75
136
|
};
|
|
76
137
|
'zh-CN': {
|
|
138
|
+
date: {
|
|
139
|
+
predefinedRanges: {
|
|
140
|
+
today: string;
|
|
141
|
+
yesterday: string;
|
|
142
|
+
thisWeek: string;
|
|
143
|
+
lastWeek: string;
|
|
144
|
+
last7Days: string;
|
|
145
|
+
thisMonth: string;
|
|
146
|
+
lastMonth: string;
|
|
147
|
+
};
|
|
148
|
+
};
|
|
77
149
|
auditLog: {
|
|
78
150
|
title: string;
|
|
151
|
+
export: string;
|
|
79
152
|
dateRange: {
|
|
80
153
|
placeholder: string;
|
|
81
154
|
};
|
|
@@ -98,15 +171,28 @@ export declare const i18nMessages: {
|
|
|
98
171
|
update: string;
|
|
99
172
|
delete: string;
|
|
100
173
|
};
|
|
174
|
+
modules: {
|
|
175
|
+
all: string;
|
|
176
|
+
inventory: string;
|
|
177
|
+
report: string;
|
|
178
|
+
hrm: string;
|
|
179
|
+
payment: string;
|
|
180
|
+
menu: string;
|
|
181
|
+
crm: string;
|
|
182
|
+
more: string;
|
|
183
|
+
};
|
|
101
184
|
columns: {
|
|
102
185
|
timestamp: string;
|
|
103
186
|
user: string;
|
|
187
|
+
role: string;
|
|
104
188
|
subject: string;
|
|
105
189
|
action: string;
|
|
106
190
|
operation: string;
|
|
107
191
|
outcome: string;
|
|
108
192
|
};
|
|
109
193
|
outcome: {
|
|
194
|
+
success: string;
|
|
195
|
+
failed: string;
|
|
110
196
|
allowed: string;
|
|
111
197
|
denied: string;
|
|
112
198
|
skipped: string;
|
|
@@ -120,21 +206,57 @@ export declare const i18nMessages: {
|
|
|
120
206
|
prevPage: string;
|
|
121
207
|
nextPage: string;
|
|
122
208
|
};
|
|
209
|
+
frontMatter: {
|
|
210
|
+
date: string;
|
|
211
|
+
business: string;
|
|
212
|
+
generatedBy: string;
|
|
213
|
+
};
|
|
214
|
+
exportSettings: {
|
|
215
|
+
title: string;
|
|
216
|
+
};
|
|
217
|
+
exportFields: {
|
|
218
|
+
timestamp: string;
|
|
219
|
+
userName: string;
|
|
220
|
+
userPhone: string;
|
|
221
|
+
subject: string;
|
|
222
|
+
action: string;
|
|
223
|
+
operation: string;
|
|
224
|
+
outcome: string;
|
|
225
|
+
businessId: string;
|
|
226
|
+
restaurantId: string;
|
|
227
|
+
country: string;
|
|
228
|
+
resolvedFrom: string;
|
|
229
|
+
requestMethod: string;
|
|
230
|
+
requestPath: string;
|
|
231
|
+
};
|
|
123
232
|
detail: {
|
|
124
233
|
header: string;
|
|
234
|
+
date: string;
|
|
125
235
|
timestamp: string;
|
|
126
236
|
user: string;
|
|
127
237
|
email: string;
|
|
128
238
|
action: string;
|
|
129
239
|
operation: string;
|
|
240
|
+
role: string;
|
|
130
241
|
subject: string;
|
|
131
242
|
field: string;
|
|
132
243
|
outcome: string;
|
|
133
244
|
business: string;
|
|
134
245
|
restaurant: string;
|
|
246
|
+
changeDetails: string;
|
|
247
|
+
eventType: string;
|
|
135
248
|
metadata: string;
|
|
136
249
|
reason: string;
|
|
137
250
|
resolvedFrom: string;
|
|
251
|
+
resolvedFromValue: {
|
|
252
|
+
admin: string;
|
|
253
|
+
staff: string;
|
|
254
|
+
permissionSet: string;
|
|
255
|
+
systemPermissionSet: string;
|
|
256
|
+
custom: string;
|
|
257
|
+
noMatch: string;
|
|
258
|
+
unknown: string;
|
|
259
|
+
};
|
|
138
260
|
permissionSet: string;
|
|
139
261
|
permissionTrace: string;
|
|
140
262
|
decisivePermission: string;
|
|
@@ -147,8 +269,20 @@ export declare const i18nMessages: {
|
|
|
147
269
|
};
|
|
148
270
|
};
|
|
149
271
|
'th-TH': {
|
|
272
|
+
date: {
|
|
273
|
+
predefinedRanges: {
|
|
274
|
+
today: string;
|
|
275
|
+
yesterday: string;
|
|
276
|
+
thisWeek: string;
|
|
277
|
+
lastWeek: string;
|
|
278
|
+
last7Days: string;
|
|
279
|
+
thisMonth: string;
|
|
280
|
+
lastMonth: string;
|
|
281
|
+
};
|
|
282
|
+
};
|
|
150
283
|
auditLog: {
|
|
151
284
|
title: string;
|
|
285
|
+
export: string;
|
|
152
286
|
dateRange: {
|
|
153
287
|
placeholder: string;
|
|
154
288
|
};
|
|
@@ -171,15 +305,28 @@ export declare const i18nMessages: {
|
|
|
171
305
|
update: string;
|
|
172
306
|
delete: string;
|
|
173
307
|
};
|
|
308
|
+
modules: {
|
|
309
|
+
all: string;
|
|
310
|
+
inventory: string;
|
|
311
|
+
report: string;
|
|
312
|
+
hrm: string;
|
|
313
|
+
payment: string;
|
|
314
|
+
menu: string;
|
|
315
|
+
crm: string;
|
|
316
|
+
more: string;
|
|
317
|
+
};
|
|
174
318
|
columns: {
|
|
175
319
|
timestamp: string;
|
|
176
320
|
user: string;
|
|
321
|
+
role: string;
|
|
177
322
|
subject: string;
|
|
178
323
|
action: string;
|
|
179
324
|
operation: string;
|
|
180
325
|
outcome: string;
|
|
181
326
|
};
|
|
182
327
|
outcome: {
|
|
328
|
+
success: string;
|
|
329
|
+
failed: string;
|
|
183
330
|
allowed: string;
|
|
184
331
|
denied: string;
|
|
185
332
|
skipped: string;
|
|
@@ -193,21 +340,57 @@ export declare const i18nMessages: {
|
|
|
193
340
|
prevPage: string;
|
|
194
341
|
nextPage: string;
|
|
195
342
|
};
|
|
343
|
+
frontMatter: {
|
|
344
|
+
date: string;
|
|
345
|
+
business: string;
|
|
346
|
+
generatedBy: string;
|
|
347
|
+
};
|
|
348
|
+
exportSettings: {
|
|
349
|
+
title: string;
|
|
350
|
+
};
|
|
351
|
+
exportFields: {
|
|
352
|
+
timestamp: string;
|
|
353
|
+
userName: string;
|
|
354
|
+
userPhone: string;
|
|
355
|
+
subject: string;
|
|
356
|
+
action: string;
|
|
357
|
+
operation: string;
|
|
358
|
+
outcome: string;
|
|
359
|
+
businessId: string;
|
|
360
|
+
restaurantId: string;
|
|
361
|
+
country: string;
|
|
362
|
+
resolvedFrom: string;
|
|
363
|
+
requestMethod: string;
|
|
364
|
+
requestPath: string;
|
|
365
|
+
};
|
|
196
366
|
detail: {
|
|
197
367
|
header: string;
|
|
368
|
+
date: string;
|
|
198
369
|
timestamp: string;
|
|
199
370
|
user: string;
|
|
200
371
|
email: string;
|
|
201
372
|
action: string;
|
|
202
373
|
operation: string;
|
|
374
|
+
role: string;
|
|
203
375
|
subject: string;
|
|
204
376
|
field: string;
|
|
205
377
|
outcome: string;
|
|
206
378
|
business: string;
|
|
207
379
|
restaurant: string;
|
|
380
|
+
changeDetails: string;
|
|
381
|
+
eventType: string;
|
|
208
382
|
metadata: string;
|
|
209
383
|
reason: string;
|
|
210
384
|
resolvedFrom: string;
|
|
385
|
+
resolvedFromValue: {
|
|
386
|
+
admin: string;
|
|
387
|
+
staff: string;
|
|
388
|
+
permissionSet: string;
|
|
389
|
+
systemPermissionSet: string;
|
|
390
|
+
custom: string;
|
|
391
|
+
noMatch: string;
|
|
392
|
+
unknown: string;
|
|
393
|
+
};
|
|
211
394
|
permissionSet: string;
|
|
212
395
|
permissionTrace: string;
|
|
213
396
|
decisivePermission: string;
|
|
@@ -220,8 +403,20 @@ export declare const i18nMessages: {
|
|
|
220
403
|
};
|
|
221
404
|
};
|
|
222
405
|
'zh-Hant': {
|
|
406
|
+
date: {
|
|
407
|
+
predefinedRanges: {
|
|
408
|
+
today: string;
|
|
409
|
+
yesterday: string;
|
|
410
|
+
thisWeek: string;
|
|
411
|
+
lastWeek: string;
|
|
412
|
+
last7Days: string;
|
|
413
|
+
thisMonth: string;
|
|
414
|
+
lastMonth: string;
|
|
415
|
+
};
|
|
416
|
+
};
|
|
223
417
|
auditLog: {
|
|
224
418
|
title: string;
|
|
419
|
+
export: string;
|
|
225
420
|
dateRange: {
|
|
226
421
|
placeholder: string;
|
|
227
422
|
};
|
|
@@ -244,15 +439,28 @@ export declare const i18nMessages: {
|
|
|
244
439
|
update: string;
|
|
245
440
|
delete: string;
|
|
246
441
|
};
|
|
442
|
+
modules: {
|
|
443
|
+
all: string;
|
|
444
|
+
inventory: string;
|
|
445
|
+
report: string;
|
|
446
|
+
hrm: string;
|
|
447
|
+
payment: string;
|
|
448
|
+
menu: string;
|
|
449
|
+
crm: string;
|
|
450
|
+
more: string;
|
|
451
|
+
};
|
|
247
452
|
columns: {
|
|
248
453
|
timestamp: string;
|
|
249
454
|
user: string;
|
|
455
|
+
role: string;
|
|
250
456
|
subject: string;
|
|
251
457
|
action: string;
|
|
252
458
|
operation: string;
|
|
253
459
|
outcome: string;
|
|
254
460
|
};
|
|
255
461
|
outcome: {
|
|
462
|
+
success: string;
|
|
463
|
+
failed: string;
|
|
256
464
|
allowed: string;
|
|
257
465
|
denied: string;
|
|
258
466
|
skipped: string;
|
|
@@ -266,21 +474,57 @@ export declare const i18nMessages: {
|
|
|
266
474
|
prevPage: string;
|
|
267
475
|
nextPage: string;
|
|
268
476
|
};
|
|
477
|
+
frontMatter: {
|
|
478
|
+
date: string;
|
|
479
|
+
business: string;
|
|
480
|
+
generatedBy: string;
|
|
481
|
+
};
|
|
482
|
+
exportSettings: {
|
|
483
|
+
title: string;
|
|
484
|
+
};
|
|
485
|
+
exportFields: {
|
|
486
|
+
timestamp: string;
|
|
487
|
+
userName: string;
|
|
488
|
+
userPhone: string;
|
|
489
|
+
subject: string;
|
|
490
|
+
action: string;
|
|
491
|
+
operation: string;
|
|
492
|
+
outcome: string;
|
|
493
|
+
businessId: string;
|
|
494
|
+
restaurantId: string;
|
|
495
|
+
country: string;
|
|
496
|
+
resolvedFrom: string;
|
|
497
|
+
requestMethod: string;
|
|
498
|
+
requestPath: string;
|
|
499
|
+
};
|
|
269
500
|
detail: {
|
|
270
501
|
header: string;
|
|
502
|
+
date: string;
|
|
271
503
|
timestamp: string;
|
|
272
504
|
user: string;
|
|
273
505
|
email: string;
|
|
274
506
|
action: string;
|
|
275
507
|
operation: string;
|
|
508
|
+
role: string;
|
|
276
509
|
subject: string;
|
|
277
510
|
field: string;
|
|
278
511
|
outcome: string;
|
|
279
512
|
business: string;
|
|
280
513
|
restaurant: string;
|
|
514
|
+
changeDetails: string;
|
|
515
|
+
eventType: string;
|
|
281
516
|
metadata: string;
|
|
282
517
|
reason: string;
|
|
283
518
|
resolvedFrom: string;
|
|
519
|
+
resolvedFromValue: {
|
|
520
|
+
admin: string;
|
|
521
|
+
staff: string;
|
|
522
|
+
permissionSet: string;
|
|
523
|
+
systemPermissionSet: string;
|
|
524
|
+
custom: string;
|
|
525
|
+
noMatch: string;
|
|
526
|
+
unknown: string;
|
|
527
|
+
};
|
|
284
528
|
permissionSet: string;
|
|
285
529
|
permissionTrace: string;
|
|
286
530
|
decisivePermission: string;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
declare function create(): void;
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{}, {
|
|
3
|
+
create: typeof create;
|
|
4
|
+
filteredGrantUsers: import("vue").ComputedRef<{
|
|
5
|
+
_id: string;
|
|
6
|
+
passcode: string;
|
|
7
|
+
name: string;
|
|
8
|
+
restaurantId: string;
|
|
9
|
+
roleId: string;
|
|
10
|
+
status: "active" | "used" | "revoked";
|
|
11
|
+
grantById: string;
|
|
12
|
+
grantByName: string;
|
|
13
|
+
createdAt: string;
|
|
14
|
+
updatedAt: string;
|
|
15
|
+
}[]>;
|
|
16
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
17
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
declare var __VLS_1: {
|
|
2
|
+
trigger: () => void;
|
|
3
|
+
};
|
|
4
|
+
type __VLS_Slots = {} & {
|
|
5
|
+
default?: (props: typeof __VLS_1) => any;
|
|
6
|
+
};
|
|
7
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
8
|
+
show: import("vue").Ref<boolean, boolean>;
|
|
9
|
+
trigger: () => void;
|
|
10
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
11
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
12
|
+
export default _default;
|
|
13
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
14
|
+
new (): {
|
|
15
|
+
$slots: S;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,232 @@
|
|
|
1
|
+
import * as enUS from './en-US.json';
|
|
2
|
+
export type AppMessagesSchema = typeof enUS;
|
|
3
|
+
export declare const i18nMessages: {
|
|
4
|
+
'en-US': {
|
|
5
|
+
grantUser: {
|
|
6
|
+
title: string;
|
|
7
|
+
actions: {
|
|
8
|
+
create: string;
|
|
9
|
+
revoke: string;
|
|
10
|
+
};
|
|
11
|
+
form: {
|
|
12
|
+
title: string;
|
|
13
|
+
section: string;
|
|
14
|
+
name: string;
|
|
15
|
+
nameRequired: string;
|
|
16
|
+
restaurant: string;
|
|
17
|
+
selectRestaurant: string;
|
|
18
|
+
restaurantRequired: string;
|
|
19
|
+
role: string;
|
|
20
|
+
selectRole: string;
|
|
21
|
+
roleRequired: string;
|
|
22
|
+
};
|
|
23
|
+
columns: {
|
|
24
|
+
passcode: string;
|
|
25
|
+
name: string;
|
|
26
|
+
restaurant: string;
|
|
27
|
+
role: string;
|
|
28
|
+
status: string;
|
|
29
|
+
grantedBy: string;
|
|
30
|
+
createdAt: string;
|
|
31
|
+
};
|
|
32
|
+
status: {
|
|
33
|
+
active: string;
|
|
34
|
+
used: string;
|
|
35
|
+
revoked: string;
|
|
36
|
+
};
|
|
37
|
+
create: {
|
|
38
|
+
successMessage: string;
|
|
39
|
+
};
|
|
40
|
+
revoke: {
|
|
41
|
+
title: string;
|
|
42
|
+
message: string;
|
|
43
|
+
successMessage: string;
|
|
44
|
+
};
|
|
45
|
+
search: {
|
|
46
|
+
placeholder: string;
|
|
47
|
+
};
|
|
48
|
+
filter: {
|
|
49
|
+
selected_status_prefix: string;
|
|
50
|
+
status_placeholder: string;
|
|
51
|
+
};
|
|
52
|
+
noData: {
|
|
53
|
+
title: string;
|
|
54
|
+
subtitle: string;
|
|
55
|
+
};
|
|
56
|
+
passcode: {
|
|
57
|
+
copied: string;
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
'zh-CN': {
|
|
62
|
+
grantUser: {
|
|
63
|
+
title: string;
|
|
64
|
+
actions: {
|
|
65
|
+
create: string;
|
|
66
|
+
revoke: string;
|
|
67
|
+
};
|
|
68
|
+
form: {
|
|
69
|
+
title: string;
|
|
70
|
+
section: string;
|
|
71
|
+
name: string;
|
|
72
|
+
nameRequired: string;
|
|
73
|
+
restaurant: string;
|
|
74
|
+
selectRestaurant: string;
|
|
75
|
+
restaurantRequired: string;
|
|
76
|
+
role: string;
|
|
77
|
+
selectRole: string;
|
|
78
|
+
roleRequired: string;
|
|
79
|
+
};
|
|
80
|
+
columns: {
|
|
81
|
+
passcode: string;
|
|
82
|
+
name: string;
|
|
83
|
+
restaurant: string;
|
|
84
|
+
role: string;
|
|
85
|
+
status: string;
|
|
86
|
+
grantedBy: string;
|
|
87
|
+
createdAt: string;
|
|
88
|
+
};
|
|
89
|
+
status: {
|
|
90
|
+
active: string;
|
|
91
|
+
used: string;
|
|
92
|
+
revoked: string;
|
|
93
|
+
};
|
|
94
|
+
create: {
|
|
95
|
+
successMessage: string;
|
|
96
|
+
};
|
|
97
|
+
revoke: {
|
|
98
|
+
title: string;
|
|
99
|
+
message: string;
|
|
100
|
+
successMessage: string;
|
|
101
|
+
};
|
|
102
|
+
search: {
|
|
103
|
+
placeholder: string;
|
|
104
|
+
};
|
|
105
|
+
filter: {
|
|
106
|
+
selected_status_prefix: string;
|
|
107
|
+
status_placeholder: string;
|
|
108
|
+
};
|
|
109
|
+
noData: {
|
|
110
|
+
title: string;
|
|
111
|
+
subtitle: string;
|
|
112
|
+
};
|
|
113
|
+
passcode: {
|
|
114
|
+
copied: string;
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
};
|
|
118
|
+
'th-TH': {
|
|
119
|
+
grantUser: {
|
|
120
|
+
title: string;
|
|
121
|
+
actions: {
|
|
122
|
+
create: string;
|
|
123
|
+
revoke: string;
|
|
124
|
+
};
|
|
125
|
+
form: {
|
|
126
|
+
title: string;
|
|
127
|
+
section: string;
|
|
128
|
+
name: string;
|
|
129
|
+
nameRequired: string;
|
|
130
|
+
restaurant: string;
|
|
131
|
+
selectRestaurant: string;
|
|
132
|
+
restaurantRequired: string;
|
|
133
|
+
role: string;
|
|
134
|
+
selectRole: string;
|
|
135
|
+
roleRequired: string;
|
|
136
|
+
};
|
|
137
|
+
columns: {
|
|
138
|
+
passcode: string;
|
|
139
|
+
name: string;
|
|
140
|
+
restaurant: string;
|
|
141
|
+
role: string;
|
|
142
|
+
status: string;
|
|
143
|
+
grantedBy: string;
|
|
144
|
+
createdAt: string;
|
|
145
|
+
};
|
|
146
|
+
status: {
|
|
147
|
+
active: string;
|
|
148
|
+
used: string;
|
|
149
|
+
revoked: string;
|
|
150
|
+
};
|
|
151
|
+
create: {
|
|
152
|
+
successMessage: string;
|
|
153
|
+
};
|
|
154
|
+
revoke: {
|
|
155
|
+
title: string;
|
|
156
|
+
message: string;
|
|
157
|
+
successMessage: string;
|
|
158
|
+
};
|
|
159
|
+
search: {
|
|
160
|
+
placeholder: string;
|
|
161
|
+
};
|
|
162
|
+
filter: {
|
|
163
|
+
selected_status_prefix: string;
|
|
164
|
+
status_placeholder: string;
|
|
165
|
+
};
|
|
166
|
+
noData: {
|
|
167
|
+
title: string;
|
|
168
|
+
subtitle: string;
|
|
169
|
+
};
|
|
170
|
+
passcode: {
|
|
171
|
+
copied: string;
|
|
172
|
+
};
|
|
173
|
+
};
|
|
174
|
+
};
|
|
175
|
+
'zh-Hant': {
|
|
176
|
+
grantUser: {
|
|
177
|
+
title: string;
|
|
178
|
+
actions: {
|
|
179
|
+
create: string;
|
|
180
|
+
revoke: string;
|
|
181
|
+
};
|
|
182
|
+
form: {
|
|
183
|
+
title: string;
|
|
184
|
+
section: string;
|
|
185
|
+
name: string;
|
|
186
|
+
nameRequired: string;
|
|
187
|
+
restaurant: string;
|
|
188
|
+
selectRestaurant: string;
|
|
189
|
+
restaurantRequired: string;
|
|
190
|
+
role: string;
|
|
191
|
+
selectRole: string;
|
|
192
|
+
roleRequired: string;
|
|
193
|
+
};
|
|
194
|
+
columns: {
|
|
195
|
+
passcode: string;
|
|
196
|
+
name: string;
|
|
197
|
+
restaurant: string;
|
|
198
|
+
role: string;
|
|
199
|
+
status: string;
|
|
200
|
+
grantedBy: string;
|
|
201
|
+
createdAt: string;
|
|
202
|
+
};
|
|
203
|
+
status: {
|
|
204
|
+
active: string;
|
|
205
|
+
used: string;
|
|
206
|
+
revoked: string;
|
|
207
|
+
};
|
|
208
|
+
create: {
|
|
209
|
+
successMessage: string;
|
|
210
|
+
};
|
|
211
|
+
revoke: {
|
|
212
|
+
title: string;
|
|
213
|
+
message: string;
|
|
214
|
+
successMessage: string;
|
|
215
|
+
};
|
|
216
|
+
search: {
|
|
217
|
+
placeholder: string;
|
|
218
|
+
};
|
|
219
|
+
filter: {
|
|
220
|
+
selected_status_prefix: string;
|
|
221
|
+
status_placeholder: string;
|
|
222
|
+
};
|
|
223
|
+
noData: {
|
|
224
|
+
title: string;
|
|
225
|
+
subtitle: string;
|
|
226
|
+
};
|
|
227
|
+
passcode: {
|
|
228
|
+
copied: string;
|
|
229
|
+
};
|
|
230
|
+
};
|
|
231
|
+
};
|
|
232
|
+
};
|