@feedmepos/mf-common 0.25.1 → 0.26.1
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/README.md +8 -0
- package/dist/{CustomAttributesForm-dde99c83.js → CustomAttributesForm-66fa36a5.js} +1 -1
- package/dist/{ItemSelector-cafebff4.js → ItemSelector-297d1874.js} +1 -1
- package/dist/{RestaurantSelector-c90b09ab.js → RestaurantSelector-f2eed21d.js} +1 -1
- package/dist/{app-1a83be54.js → app-591cf500.js} +2372 -2381
- package/dist/app.d.ts +98 -4
- package/dist/app.d.ts.map +1 -1
- package/dist/app.js +17 -17
- package/dist/locales/{types.d.ts → common/types.d.ts} +2 -2
- package/dist/locales/common/types.d.ts.map +1 -0
- package/dist/locales/types.ts +11 -0
- package/dist/store.d.ts +15 -15
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/package.json +3 -3
package/dist/app.d.ts
CHANGED
@@ -2,7 +2,7 @@ import { type App } from "vue";
|
|
2
2
|
import type { Router } from "vue-router";
|
3
3
|
import { FeedMeAuth } from "@feedmepos/auth";
|
4
4
|
import type { FeedMeI18nOptions } from "@feedmepos/i18n";
|
5
|
-
import
|
5
|
+
import portalShellEnUS from "./locales/portalshell/en-US.json";
|
6
6
|
import { useCoreStore } from "./store";
|
7
7
|
import type { FmNamespace } from "@/store";
|
8
8
|
export declare function initialize(clientId: string, namespace?: FmNamespace): void;
|
@@ -15,8 +15,39 @@ export { FmpUser } from "./store";
|
|
15
15
|
export { installRouteValidation, Permission, type ValidationManifest, type RouteValidationResult } from "./permission/permission";
|
16
16
|
export { default as PermissionWrapper } from "./components/PermissionWrapper.vue";
|
17
17
|
export { withPermission } from "./permission/permission";
|
18
|
-
export declare const
|
18
|
+
export declare const i18nMessages: {
|
19
19
|
"en-US": {
|
20
|
+
common: {
|
21
|
+
yes: string;
|
22
|
+
no: string;
|
23
|
+
ok: string;
|
24
|
+
accept: string;
|
25
|
+
download: string;
|
26
|
+
export: string;
|
27
|
+
import: string;
|
28
|
+
save: string;
|
29
|
+
update: string;
|
30
|
+
cancel: string;
|
31
|
+
confirm: string;
|
32
|
+
delete: string;
|
33
|
+
edit: string;
|
34
|
+
create: string;
|
35
|
+
search: string;
|
36
|
+
filter: string;
|
37
|
+
sort: string;
|
38
|
+
refresh: string;
|
39
|
+
close: string;
|
40
|
+
back: string;
|
41
|
+
continue: string;
|
42
|
+
next: string;
|
43
|
+
previous: string;
|
44
|
+
add: string;
|
45
|
+
remove: string;
|
46
|
+
select: string;
|
47
|
+
selectAll: string;
|
48
|
+
unselectAll: string;
|
49
|
+
selected: string;
|
50
|
+
};
|
20
51
|
portalCommon: {
|
21
52
|
dismiss: {
|
22
53
|
title: string;
|
@@ -188,6 +219,37 @@ export declare const portalShellI18nMessages: {
|
|
188
219
|
};
|
189
220
|
};
|
190
221
|
"zh-CN": {
|
222
|
+
common: {
|
223
|
+
yes: string;
|
224
|
+
no: string;
|
225
|
+
ok: string;
|
226
|
+
accept: string;
|
227
|
+
download: string;
|
228
|
+
export: string;
|
229
|
+
import: string;
|
230
|
+
save: string;
|
231
|
+
update: string;
|
232
|
+
cancel: string;
|
233
|
+
confirm: string;
|
234
|
+
delete: string;
|
235
|
+
edit: string;
|
236
|
+
create: string;
|
237
|
+
search: string;
|
238
|
+
filter: string;
|
239
|
+
sort: string;
|
240
|
+
refresh: string;
|
241
|
+
close: string;
|
242
|
+
back: string;
|
243
|
+
continue: string;
|
244
|
+
next: string;
|
245
|
+
previous: string;
|
246
|
+
add: string;
|
247
|
+
remove: string;
|
248
|
+
select: string;
|
249
|
+
selectAll: string;
|
250
|
+
unselectAll: string;
|
251
|
+
selected: string;
|
252
|
+
};
|
191
253
|
portalCommon: {
|
192
254
|
dismiss: {
|
193
255
|
title: string;
|
@@ -357,6 +419,37 @@ export declare const portalShellI18nMessages: {
|
|
357
419
|
};
|
358
420
|
};
|
359
421
|
"th-TH": {
|
422
|
+
common: {
|
423
|
+
yes: string;
|
424
|
+
no: string;
|
425
|
+
ok: string;
|
426
|
+
accept: string;
|
427
|
+
download: string;
|
428
|
+
export: string;
|
429
|
+
import: string;
|
430
|
+
save: string;
|
431
|
+
update: string;
|
432
|
+
cancel: string;
|
433
|
+
confirm: string;
|
434
|
+
delete: string;
|
435
|
+
edit: string;
|
436
|
+
create: string;
|
437
|
+
search: string;
|
438
|
+
filter: string;
|
439
|
+
sort: string;
|
440
|
+
refresh: string;
|
441
|
+
close: string;
|
442
|
+
back: string;
|
443
|
+
continue: string;
|
444
|
+
next: string;
|
445
|
+
previous: string;
|
446
|
+
add: string;
|
447
|
+
remove: string;
|
448
|
+
select: string;
|
449
|
+
selectAll: string;
|
450
|
+
unselectAll: string;
|
451
|
+
selected: string;
|
452
|
+
};
|
360
453
|
portalCommon: {
|
361
454
|
dismiss: {
|
362
455
|
title: string;
|
@@ -523,9 +616,10 @@ export declare const portalShellI18nMessages: {
|
|
523
616
|
};
|
524
617
|
};
|
525
618
|
};
|
526
|
-
export type
|
619
|
+
export { type CommonMessagesSchema } from "./locales/common/types";
|
620
|
+
export type PortalShellI18nSchema = typeof portalShellEnUS;
|
527
621
|
export { useI18n } from "@feedmepos/i18n";
|
528
|
-
export type {
|
622
|
+
export type { FeedMeI18nOptions, I18n, DefineLocaleMessage } from "@feedmepos/i18n";
|
529
623
|
export declare function createFeedMeI18n(options: FeedMeI18nOptions): import("vue-i18n").I18n<{}, {}, {}, string, boolean>;
|
530
624
|
export { setEnabledLocales } from "./composables/useLocale";
|
531
625
|
export { useLocale } from "./composables/useLocale";
|
package/dist/app.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"app.d.ts","sourceRoot":"","sources":["../../src/app.ts"],"names":[],"mappings":"AAAA,OAAO,EAAwB,KAAK,GAAG,EAAe,MAAM,KAAK,CAAA;AACjE,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,YAAY,CAAA;AAExC,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAA;AAC5C,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAA;
|
1
|
+
{"version":3,"file":"app.d.ts","sourceRoot":"","sources":["../../src/app.ts"],"names":[],"mappings":"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"}
|
package/dist/app.js
CHANGED
@@ -1,33 +1,33 @@
|
|
1
1
|
import "vue";
|
2
|
-
import { a as s } from "./app-
|
3
|
-
import { C as u, y as m, z as M, F as S, _ as
|
2
|
+
import { a as s } from "./app-591cf500.js";
|
3
|
+
import { C as u, y as m, z as M, F as S, _ as c, p as d, I as p, P, r as E, R as g, g as h, A as C, j as F, m as _, h as A, k as I, i as R, x as O, D as b, q as w, o as x, B as y, s as B, E as D, u as L, n as T, t as f, v, w as z } from "./app-591cf500.js";
|
4
4
|
import "@feedmepos/ui-library";
|
5
5
|
import "pinia";
|
6
6
|
import "vue-router";
|
7
|
-
const
|
7
|
+
const n = s.Dinero;
|
8
8
|
export {
|
9
9
|
u as CustomAttributesForm,
|
10
|
-
|
10
|
+
n as Dinero,
|
11
11
|
m as FM_POST_MESSAGE_REQUEST,
|
12
12
|
M as FM_POST_MESSAGE_RESPONSE,
|
13
13
|
S as FeedMeAuth,
|
14
|
-
|
15
|
-
|
16
|
-
|
14
|
+
c as FmNavBar,
|
15
|
+
d as FmpUser,
|
16
|
+
p as ItemSelector,
|
17
17
|
P as Permission,
|
18
|
-
|
19
|
-
|
20
|
-
|
18
|
+
E as PermissionWrapper,
|
19
|
+
g as RestaurantSelector,
|
20
|
+
h as baseClientInstance,
|
21
21
|
C as callMethodOnWindow,
|
22
22
|
F as createFeedMeI18n,
|
23
23
|
_ as detectLocale,
|
24
|
-
A as
|
25
|
-
I as
|
26
|
-
R as
|
27
|
-
O as
|
28
|
-
b as
|
29
|
-
w as
|
30
|
-
x as
|
24
|
+
A as i18nMessages,
|
25
|
+
I as initVueClientMonitoring,
|
26
|
+
R as initialize,
|
27
|
+
O as installBusinessQueryStatePlugin,
|
28
|
+
b as installPostMessageMethodCall,
|
29
|
+
w as installRouteValidation,
|
30
|
+
x as onAuthStateChanged,
|
31
31
|
y as registerPostMessageMethod,
|
32
32
|
B as setEnabledLocales,
|
33
33
|
D as uninstallPostMessageMethodCall,
|
@@ -1,5 +1,4 @@
|
|
1
|
-
import
|
2
|
-
|
1
|
+
import enUS from "./en-US.json";
|
3
2
|
export type CommonMessagesSchema = typeof enUS;
|
4
3
|
export declare const locales: {
|
5
4
|
readonly "en-US": {
|
@@ -102,3 +101,4 @@ export declare const locales: {
|
|
102
101
|
};
|
103
102
|
};
|
104
103
|
};
|
104
|
+
//# sourceMappingURL=types.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/locales/common/types.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,cAAc,CAAA;AAI/B,MAAM,MAAM,oBAAoB,GAAG,OAAO,IAAI,CAAA;AAE9C,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIV,CAAA"}
|
package/dist/store.d.ts
CHANGED
@@ -85,7 +85,7 @@ export declare const useCoreStore: () => {
|
|
85
85
|
inverted?: boolean | null | undefined;
|
86
86
|
label: string;
|
87
87
|
subject: string;
|
88
|
-
actions: ("delete" | "
|
88
|
+
actions: ("delete" | "manage" | "create" | "read" | "update")[];
|
89
89
|
}[];
|
90
90
|
getCustomToken: () => Promise<string>;
|
91
91
|
setAdminPermisssions: (permissions: FdoPermissionRule[]) => void;
|
@@ -112,7 +112,7 @@ export declare const useCoreStore: () => {
|
|
112
112
|
inverted?: boolean | null | undefined;
|
113
113
|
label: string;
|
114
114
|
subject: string;
|
115
|
-
actions: ("delete" | "
|
115
|
+
actions: ("delete" | "manage" | "create" | "read" | "update")[];
|
116
116
|
}[];
|
117
117
|
getCustomToken: () => Promise<string>;
|
118
118
|
setAdminPermisssions: (permissions: FdoPermissionRule[]) => void;
|
@@ -1482,7 +1482,7 @@ export declare const useCoreStore: () => {
|
|
1482
1482
|
inverted?: boolean | null | undefined;
|
1483
1483
|
label: string;
|
1484
1484
|
subject: string;
|
1485
|
-
actions: ("delete" | "
|
1485
|
+
actions: ("delete" | "manage" | "create" | "read" | "update")[];
|
1486
1486
|
}[];
|
1487
1487
|
getCustomToken: () => Promise<string>;
|
1488
1488
|
setAdminPermisssions: (permissions: FdoPermissionRule[]) => void;
|
@@ -2523,7 +2523,7 @@ export declare const useCoreStore: () => {
|
|
2523
2523
|
inverted?: boolean | null | undefined;
|
2524
2524
|
label: string;
|
2525
2525
|
subject: string;
|
2526
|
-
actions: ("delete" | "
|
2526
|
+
actions: ("delete" | "manage" | "create" | "read" | "update")[];
|
2527
2527
|
}[];
|
2528
2528
|
getCustomToken: () => Promise<string>;
|
2529
2529
|
setAdminPermisssions: (permissions: FdoPermissionRule[]) => void;
|
@@ -2550,7 +2550,7 @@ export declare const useCoreStore: () => {
|
|
2550
2550
|
inverted?: boolean | null | undefined;
|
2551
2551
|
label: string;
|
2552
2552
|
subject: string;
|
2553
|
-
actions: ("delete" | "
|
2553
|
+
actions: ("delete" | "manage" | "create" | "read" | "update")[];
|
2554
2554
|
}[];
|
2555
2555
|
getCustomToken: () => Promise<string>;
|
2556
2556
|
setAdminPermisssions: (permissions: FdoPermissionRule[]) => void;
|
@@ -4331,7 +4331,7 @@ export declare const useCoreStore: () => {
|
|
4331
4331
|
inverted?: boolean | null | undefined;
|
4332
4332
|
label: string;
|
4333
4333
|
subject: string;
|
4334
|
-
actions: ("delete" | "
|
4334
|
+
actions: ("delete" | "manage" | "create" | "read" | "update")[];
|
4335
4335
|
}[];
|
4336
4336
|
getCustomToken: () => Promise<string>;
|
4337
4337
|
setAdminPermisssions: (permissions: FdoPermissionRule[]) => void;
|
@@ -5370,7 +5370,7 @@ export declare const useCoreStore: () => {
|
|
5370
5370
|
inverted?: boolean | null | undefined;
|
5371
5371
|
label: string;
|
5372
5372
|
subject: string;
|
5373
|
-
actions: ("delete" | "
|
5373
|
+
actions: ("delete" | "manage" | "create" | "read" | "update")[];
|
5374
5374
|
}[];
|
5375
5375
|
getCustomToken: () => Promise<string>;
|
5376
5376
|
setAdminPermisssions: (permissions: FdoPermissionRule[]) => void;
|
@@ -6413,7 +6413,7 @@ export declare const useCoreStore: () => {
|
|
6413
6413
|
inverted?: boolean | null | undefined;
|
6414
6414
|
label: string;
|
6415
6415
|
subject: string;
|
6416
|
-
actions: ("delete" | "
|
6416
|
+
actions: ("delete" | "manage" | "create" | "read" | "update")[];
|
6417
6417
|
}[];
|
6418
6418
|
getCustomToken: () => Promise<string>;
|
6419
6419
|
setAdminPermisssions: (permissions: FdoPermissionRule[]) => void;
|
@@ -6440,7 +6440,7 @@ export declare const useCoreStore: () => {
|
|
6440
6440
|
inverted?: boolean | null | undefined;
|
6441
6441
|
label: string;
|
6442
6442
|
subject: string;
|
6443
|
-
actions: ("delete" | "
|
6443
|
+
actions: ("delete" | "manage" | "create" | "read" | "update")[];
|
6444
6444
|
}[];
|
6445
6445
|
getCustomToken: () => Promise<string>;
|
6446
6446
|
setAdminPermisssions: (permissions: FdoPermissionRule[]) => void;
|
@@ -8226,7 +8226,7 @@ export declare const useCoreStore: () => {
|
|
8226
8226
|
inverted?: boolean | null | undefined;
|
8227
8227
|
label: string;
|
8228
8228
|
subject: string;
|
8229
|
-
actions: ("delete" | "
|
8229
|
+
actions: ("delete" | "manage" | "create" | "read" | "update")[];
|
8230
8230
|
}[];
|
8231
8231
|
getCustomToken: () => Promise<string>;
|
8232
8232
|
setAdminPermisssions: (permissions: FdoPermissionRule[]) => void;
|
@@ -8253,7 +8253,7 @@ export declare const useCoreStore: () => {
|
|
8253
8253
|
inverted?: boolean | null | undefined;
|
8254
8254
|
label: string;
|
8255
8255
|
subject: string;
|
8256
|
-
actions: ("delete" | "
|
8256
|
+
actions: ("delete" | "manage" | "create" | "read" | "update")[];
|
8257
8257
|
}[];
|
8258
8258
|
getCustomToken: () => Promise<string>;
|
8259
8259
|
setAdminPermisssions: (permissions: FdoPermissionRule[]) => void;
|
@@ -10036,7 +10036,7 @@ export declare const useCoreStore: () => {
|
|
10036
10036
|
inverted?: boolean | null | undefined;
|
10037
10037
|
label: string;
|
10038
10038
|
subject: string;
|
10039
|
-
actions: ("delete" | "
|
10039
|
+
actions: ("delete" | "manage" | "create" | "read" | "update")[];
|
10040
10040
|
}[];
|
10041
10041
|
getCustomToken: () => Promise<string>;
|
10042
10042
|
setAdminPermisssions: (permissions: FdoPermissionRule[]) => void;
|
@@ -10063,7 +10063,7 @@ export declare const useCoreStore: () => {
|
|
10063
10063
|
inverted?: boolean | null | undefined;
|
10064
10064
|
label: string;
|
10065
10065
|
subject: string;
|
10066
|
-
actions: ("delete" | "
|
10066
|
+
actions: ("delete" | "manage" | "create" | "read" | "update")[];
|
10067
10067
|
}[];
|
10068
10068
|
getCustomToken: () => Promise<string>;
|
10069
10069
|
setAdminPermisssions: (permissions: FdoPermissionRule[]) => void;
|
@@ -11846,7 +11846,7 @@ export declare const useCoreStore: () => {
|
|
11846
11846
|
inverted?: boolean | null | undefined;
|
11847
11847
|
label: string;
|
11848
11848
|
subject: string;
|
11849
|
-
actions: ("delete" | "
|
11849
|
+
actions: ("delete" | "manage" | "create" | "read" | "update")[];
|
11850
11850
|
}[];
|
11851
11851
|
getCustomToken: () => Promise<string>;
|
11852
11852
|
setAdminPermisssions: (permissions: FdoPermissionRule[]) => void;
|
@@ -11873,7 +11873,7 @@ export declare const useCoreStore: () => {
|
|
11873
11873
|
inverted?: boolean | null | undefined;
|
11874
11874
|
label: string;
|
11875
11875
|
subject: string;
|
11876
|
-
actions: ("delete" | "
|
11876
|
+
actions: ("delete" | "manage" | "create" | "read" | "update")[];
|
11877
11877
|
}[];
|
11878
11878
|
getCustomToken: () => Promise<string>;
|
11879
11879
|
setAdminPermisssions: (permissions: FdoPermissionRule[]) => void;
|