@feedmepos/mf-common 1.19.0-beta.1 → 1.20.0-beta.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/dist/App.vue.d.ts.map +1 -1
- package/dist/{CustomAttributesForm-61572f55.js → CustomAttributesForm-61478bd2.js} +1 -1
- package/dist/Entry.vue.d.ts.map +1 -1
- package/dist/{ItemSelector-77ae4235.js → ItemSelector-2e6237c0.js} +145 -144
- package/dist/{RestaurantSelector-d70ad300.js → RestaurantSelector-ad4fc5a4.js} +5 -5
- package/dist/api/index.d.ts +1 -1
- package/dist/api/index.d.ts.map +1 -1
- package/dist/api/menu.d.ts.map +1 -1
- package/dist/{app-16a15b75.js → app-c81d895a.js} +32685 -32473
- package/dist/app.d.ts +168 -2
- package/dist/app.d.ts.map +1 -1
- package/dist/app.js +1 -1
- package/dist/components/AllBusinessDialog.vue.d.ts.map +1 -1
- package/dist/components/ChangePassword/ConfirmPassword.vue.d.ts.map +1 -1
- package/dist/components/ChangePassword/NewPassword.vue.d.ts.map +1 -1
- package/dist/components/ChangePassword/PasswordField.vue.d.ts.map +1 -1
- package/dist/components/DebugUserDialog.vue.d.ts.map +1 -1
- package/dist/components/ItemSelector.vue.d.ts.map +1 -1
- package/dist/components/ManageAccountDialog.vue.d.ts.map +1 -1
- package/dist/components/MyBusinessDialog.vue.d.ts.map +1 -1
- package/dist/components/NoPermission.vue.d.ts.map +1 -1
- package/dist/components/PermissionWrapper.vue.d.ts.map +1 -1
- package/dist/components/Portal/Ads.vue.d.ts.map +1 -1
- package/dist/components/Portal/BusinessDialogMobile.vue.d.ts.map +1 -1
- package/dist/components/Portal/PortalDesktop.vue.d.ts.map +1 -1
- package/dist/components/Portal/PortalMobile.vue.d.ts.map +1 -1
- package/dist/components/Portal/PortalSidebar.vue.d.ts.map +1 -1
- package/dist/components/Portal/PortalTablet.vue.d.ts.map +1 -1
- package/dist/components/Portal/index.d.ts +2 -2
- package/dist/components/Portal/index.d.ts.map +1 -1
- package/dist/components/Portal/index.vue.d.ts.map +1 -1
- package/dist/components/RestaurantSelector.vue.d.ts.map +1 -1
- package/dist/components/SelectCountryDialog.vue.d.ts.map +1 -1
- package/dist/components/UserInfo/index.vue.d.ts.map +1 -1
- package/dist/components/attribute/CustomAttributesForm.vue.d.ts.map +1 -1
- package/dist/components/attribute/MongoQueryBuilder.vue.d.ts.map +1 -1
- package/dist/composables/useDebugUser.d.ts.map +1 -1
- package/dist/composables/useLocale.d.ts +1 -1
- package/dist/composables/useLocale.d.ts.map +1 -1
- package/dist/composables/usePaginatedBusinesses.d.ts.map +1 -1
- package/dist/locales/th-TH.json +33 -0
- package/dist/locales/types.d.ts +35 -2
- package/dist/main.d.ts.map +1 -1
- package/dist/permission/permission.d.ts +1 -1
- package/dist/permission/permission.d.ts.map +1 -1
- package/dist/plugin/loading.d.ts.map +1 -1
- package/dist/router/query.d.ts.map +1 -1
- package/dist/store.d.ts +3 -3
- package/dist/store.d.ts.map +1 -1
- package/dist/stores/menu.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/package.json +2 -2
package/dist/app.d.ts
CHANGED
@@ -1,7 +1,5 @@
|
|
1
1
|
import { FeedMeAuth } from "@feedmepos/auth";
|
2
2
|
import type { FmNamespace } from "@/store";
|
3
|
-
import { useCoreStore } from "./store";
|
4
|
-
import enUS from "./locales/en-US.json";
|
5
3
|
import type { FeedMeI18nOptions } from "@feedmepos/i18n";
|
6
4
|
export declare function initialize(clientId: string, namespace?: FmNamespace): void;
|
7
5
|
export declare const onAuthStateChanged: typeof FeedMeAuth.onAuthStateChanged;
|
@@ -352,10 +350,178 @@ export declare const portalShellI18nMessages: {
|
|
352
350
|
};
|
353
351
|
};
|
354
352
|
};
|
353
|
+
"th-TH": {
|
354
|
+
portalCommon: {
|
355
|
+
dismiss: {
|
356
|
+
title: string;
|
357
|
+
message: string;
|
358
|
+
primaryActions: string;
|
359
|
+
};
|
360
|
+
};
|
361
|
+
portalshell: {
|
362
|
+
menu: {
|
363
|
+
account: string;
|
364
|
+
business: string;
|
365
|
+
myBusiness: string;
|
366
|
+
manageAccount: string;
|
367
|
+
country: {
|
368
|
+
label: string;
|
369
|
+
my: string;
|
370
|
+
sg: string;
|
371
|
+
id: string;
|
372
|
+
th: string;
|
373
|
+
vn: string;
|
374
|
+
ph: string;
|
375
|
+
hk: string;
|
376
|
+
mo: string;
|
377
|
+
};
|
378
|
+
language: string;
|
379
|
+
logOut: string;
|
380
|
+
debug: string;
|
381
|
+
stopDebug: string;
|
382
|
+
};
|
383
|
+
apps: {
|
384
|
+
section: {
|
385
|
+
switchTo: string;
|
386
|
+
devSpace: string;
|
387
|
+
};
|
388
|
+
actions: {
|
389
|
+
settings: string;
|
390
|
+
switchToV2: string;
|
391
|
+
};
|
392
|
+
pos: {
|
393
|
+
label: string;
|
394
|
+
sublabel: string;
|
395
|
+
};
|
396
|
+
connect: {
|
397
|
+
label: string;
|
398
|
+
sublabel: string;
|
399
|
+
};
|
400
|
+
report: {
|
401
|
+
label: string;
|
402
|
+
sublabel: string;
|
403
|
+
};
|
404
|
+
inventory: {
|
405
|
+
label: string;
|
406
|
+
sublabel: string;
|
407
|
+
};
|
408
|
+
brand: {
|
409
|
+
label: string;
|
410
|
+
sublabel: string;
|
411
|
+
};
|
412
|
+
payment: {
|
413
|
+
label: string;
|
414
|
+
sublabel: string;
|
415
|
+
};
|
416
|
+
settings: {
|
417
|
+
label: string;
|
418
|
+
};
|
419
|
+
adminSpace: {
|
420
|
+
label: string;
|
421
|
+
sublabel: string;
|
422
|
+
};
|
423
|
+
};
|
424
|
+
messages: {
|
425
|
+
businessCopySuccess: string;
|
426
|
+
restaurantCopySuccess: string;
|
427
|
+
loadError: string;
|
428
|
+
};
|
429
|
+
selectBusiness: {
|
430
|
+
title: string;
|
431
|
+
searchPlaceholder: string;
|
432
|
+
createBusiness: string;
|
433
|
+
noBusiness: string;
|
434
|
+
noBusinessFound: string;
|
435
|
+
};
|
436
|
+
myBusiness: {
|
437
|
+
title: string;
|
438
|
+
};
|
439
|
+
debugUser: {
|
440
|
+
title: string;
|
441
|
+
subtitle: string;
|
442
|
+
debug: string;
|
443
|
+
phoneEmpty: string;
|
444
|
+
debugFailed: string;
|
445
|
+
stopDebugTitle: string;
|
446
|
+
stopDebugMessage: string;
|
447
|
+
stopDebugFailed: string;
|
448
|
+
};
|
449
|
+
logOut: {
|
450
|
+
title: string;
|
451
|
+
subtitle: string;
|
452
|
+
logOut: string;
|
453
|
+
};
|
454
|
+
manageAccount: {
|
455
|
+
title: string;
|
456
|
+
basicInfo: string;
|
457
|
+
name: string;
|
458
|
+
email: string;
|
459
|
+
phone: string;
|
460
|
+
password: string;
|
461
|
+
passwordSubtitle: string;
|
462
|
+
changePassword: string;
|
463
|
+
profileUpdated: string;
|
464
|
+
failedToUpdateProfile: string;
|
465
|
+
nameRequired: string;
|
466
|
+
emailRequired: string;
|
467
|
+
emailInvalid: string;
|
468
|
+
};
|
469
|
+
changePassword: {
|
470
|
+
step1: {
|
471
|
+
title: string;
|
472
|
+
subtitle: string;
|
473
|
+
currentPassword: string;
|
474
|
+
forgotPassword: string;
|
475
|
+
passwordConfirmed: string;
|
476
|
+
passwordConfirmFailed: string;
|
477
|
+
};
|
478
|
+
step2: {
|
479
|
+
title: string;
|
480
|
+
newPassword: string;
|
481
|
+
confirmNewPassword: string;
|
482
|
+
changePassword: string;
|
483
|
+
passwordChanged: string;
|
484
|
+
failedToChangePassword: string;
|
485
|
+
newPasswordRequired: string;
|
486
|
+
passwordMustBeAtLeast8Characters: string;
|
487
|
+
useAtLeast8Characters: string;
|
488
|
+
passwordsDoNotMatch: string;
|
489
|
+
};
|
490
|
+
};
|
491
|
+
customAttributes: {
|
492
|
+
form: {
|
493
|
+
key: string;
|
494
|
+
value: string;
|
495
|
+
valuePlaceholder: string;
|
496
|
+
attributeValueMustBeNumber: string;
|
497
|
+
noCustomAttributes: string;
|
498
|
+
};
|
499
|
+
queryBuilder: {
|
500
|
+
any: string;
|
501
|
+
noAttributeSettings: string;
|
502
|
+
};
|
503
|
+
};
|
504
|
+
components: {
|
505
|
+
restaurantSelector: {
|
506
|
+
allRestaurants: string;
|
507
|
+
restaurantCount: string;
|
508
|
+
selectRestaurant: string;
|
509
|
+
unknownRestaurant: string;
|
510
|
+
restaurantTaggingFilter: string;
|
511
|
+
resetFilter: string;
|
512
|
+
};
|
513
|
+
itemSelector: {
|
514
|
+
productsSelected: string;
|
515
|
+
};
|
516
|
+
};
|
517
|
+
};
|
518
|
+
};
|
355
519
|
};
|
356
520
|
export type PortalShellI18nSchema = typeof enUS;
|
357
521
|
export { useI18n } from "@feedmepos/i18n";
|
358
522
|
export type { CommonMessagesSchema, FeedMeI18nOptions, I18n, DefineLocaleMessage } from "@feedmepos/i18n";
|
523
|
+
import enUS from "./locales/en-US.json";
|
524
|
+
import { useCoreStore } from "./store";
|
359
525
|
export declare function createFeedMeI18n(options: FeedMeI18nOptions): import("vue-i18n").I18n<{}, {}, {}, string, boolean>;
|
360
526
|
export { setEnabledLocales } from "./composables/useLocale";
|
361
527
|
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":"
|
1
|
+
{"version":3,"file":"app.d.ts","sourceRoot":"","sources":["../../src/app.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAA;AAE5C,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA;AAE1C,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAA;AAExD,wBAAgB,UAAU,CAAC,QAAQ,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,WAAW,QAenE;AAED,eAAO,MAAM,kBAAkB,sCAAgC,CAAA;AAC/D,OAAO,EAAE,kBAAkB,EAAE,MAAM,OAAO,CAAA;AAC1C,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,WAAW,CAAA;AAE/C,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,CAAA;AACnC,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAA;AAEhD,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAA;AAGjC,OAAO,EACL,sBAAsB,EACtB,UAAU,EACV,KAAK,kBAAkB,EACvB,KAAK,qBAAqB,EAC3B,MAAM,yBAAyB,CAAA;AAEhC,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,oCAAoC,CAAA;AAEjF,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAA;AAMxD,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAInC,CAAA;AAED,MAAM,MAAM,qBAAqB,GAAG,OAAO,IAAI,CAAA;AAE/C,OAAO,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAA;AACzC,YAAY,EACV,oBAAoB,EACpB,iBAAiB,EACjB,IAAI,EACJ,mBAAmB,EACpB,MAAM,iBAAiB,CAAA;AAKxB,OAAO,IAAI,MAAM,sBAAsB,CAAA;AAGvC,OAAO,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAEtC,wBAAgB,gBAAgB,CAAC,OAAO,EAAE,iBAAiB,wDAW1D;AAED,OAAO,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAA;AAC3D,OAAO,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAA;AAEnD,wBAAgB,YAAY,WAQ3B;AAGD,OAAO,EAAE,+BAA+B,EAAE,MAAM,gBAAgB,CAAA;AAGhE,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iFAEhC,CAAA;AAED,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAE9B,CAAA;AAED,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAAsE,CAAA;AAG/F,cAAc,+BAA+B,CAAA"}
|
package/dist/app.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import "vue";
|
2
|
-
import { k as l, C as n, x as r, y as u, F as S, _ as m, m as M, I as d, P as p, r as P, R as h, g as c, z as E, h as g, j as C, i as F, v as _, B as A, q as I, o as O, p as R, A as b, s as w, D as y, u as B, n as L, t as T, w as v } from "./app-
|
2
|
+
import { k as l, C as n, x as r, y as u, F as S, _ as m, m as M, I as d, P as p, r as P, R as h, g as c, z as E, h as g, j as C, i as F, v as _, B as A, q as I, o as O, p as R, A as b, s as w, D as y, u as B, n as L, t as T, w as v } from "./app-c81d895a.js";
|
3
3
|
import "pinia";
|
4
4
|
import "vue-router";
|
5
5
|
import "@feedmepos/ui-library";
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"AllBusinessDialog.vue.d.ts","sourceRoot":"","sources":["../../../src/components/AllBusinessDialog.vue.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"AllBusinessDialog.vue.d.ts","sourceRoot":"","sources":["../../../src/components/AllBusinessDialog.vue.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,KAAK,WAAW,EAAgB,MAAM,SAAS,CAAA;AAIxD,UAAU,KAAK;IACb,KAAK,EAAE,MAAM,IAAI,CAAA;IACjB,cAAc,EAAE,CAAC,QAAQ,EAAE,WAAW,EAAE,YAAY,EAAE,OAAO,KAAK,IAAI,CAAA;CACvE;;AA2VD,wBAMG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ConfirmPassword.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ChangePassword/ConfirmPassword.vue.ts"],"names":[],"mappings":";
|
1
|
+
{"version":3,"file":"ConfirmPassword.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ChangePassword/ConfirmPassword.vue.ts"],"names":[],"mappings":";AAgIA,wBAKG"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"NewPassword.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ChangePassword/NewPassword.vue.ts"],"names":[],"mappings":";
|
1
|
+
{"version":3,"file":"NewPassword.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ChangePassword/NewPassword.vue.ts"],"names":[],"mappings":";AA+HA,wBAKG"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"PasswordField.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ChangePassword/PasswordField.vue.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"PasswordField.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ChangePassword/PasswordField.vue.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,gBAAgB,EAAmB,MAAM,uBAAuB,CAAA;AAI9E,UAAU,KAAM,SAAQ,gBAAgB;CAAG;;AAoF3C,wBAMG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"DebugUserDialog.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DebugUserDialog.vue.ts"],"names":[],"mappings":";
|
1
|
+
{"version":3,"file":"DebugUserDialog.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DebugUserDialog.vue.ts"],"names":[],"mappings":";AAiFA,wBAKG"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ItemSelector.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ItemSelector.vue.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"ItemSelector.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ItemSelector.vue.ts"],"names":[],"mappings":"AAcA,OAAO,EAAE,KAAK,eAAe,EAAE,MAAM,eAAe,CAAA;AAcpD,KAAK,eAAe,GAAG;IACrB,GAAG,EAAE,MAAM,CAAA;IACX,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;CAC/B,CAAA;AAwBD,UAAU,KAAK;IACb,eAAe,CAAC,EAAE,OAAO,CAAA;IACzB,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,gBAAgB,CAAC,EAAE,KAAK,CAAC,eAAe,CAAC,CAAA;IACzC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,eAAe,CAAC,CAAC,CAAA;CAC7C;;;;;;;;;;;;AA0xBD,wBAOG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAE1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QACxE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KACb,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACT,CAAC;AACN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ManageAccountDialog.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ManageAccountDialog.vue.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"ManageAccountDialog.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ManageAccountDialog.vue.ts"],"names":[],"mappings":"AAgBA,UAAU,KAAK;IACb,UAAU,EAAE,OAAO,CAAA;CACpB;;AA2YD,wBAMG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"MyBusinessDialog.vue.d.ts","sourceRoot":"","sources":["../../../src/components/MyBusinessDialog.vue.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"MyBusinessDialog.vue.d.ts","sourceRoot":"","sources":["../../../src/components/MyBusinessDialog.vue.ts"],"names":[],"mappings":"AAWA,UAAU,KAAK;IACb,UAAU,EAAE,OAAO,CAAA;CACpB;;AA8TD,wBAMG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"NoPermission.vue.d.ts","sourceRoot":"","sources":["../../../src/components/NoPermission.vue.ts"],"names":[],"mappings":";
|
1
|
+
{"version":3,"file":"NoPermission.vue.d.ts","sourceRoot":"","sources":["../../../src/components/NoPermission.vue.ts"],"names":[],"mappings":";AAiIA,wBAKG"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"PermissionWrapper.vue.d.ts","sourceRoot":"","sources":["../../../src/components/PermissionWrapper.vue.ts"],"names":[],"mappings":";;;
|
1
|
+
{"version":3,"file":"PermissionWrapper.vue.d.ts","sourceRoot":"","sources":["../../../src/components/PermissionWrapper.vue.ts"],"names":[],"mappings":";;;AAqFA,wBAAwG;AACxG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"Ads.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Portal/Ads.vue.ts"],"names":[],"mappings":";
|
1
|
+
{"version":3,"file":"Ads.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Portal/Ads.vue.ts"],"names":[],"mappings":";cAsHY,SAAS,GAAG,QAAQ,GAAG,QAAQ;;cAA/B,SAAS,GAAG,QAAQ,GAAG,QAAQ;;AAN3C,wBAQG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"BusinessDialogMobile.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Portal/BusinessDialogMobile.vue.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"BusinessDialogMobile.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Portal/BusinessDialogMobile.vue.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,KAAK,WAAW,EAAgB,MAAM,SAAS,CAAA;AAIxD,UAAU,KAAK;IACb,UAAU,EAAE,OAAO,CAAA;IACnB,cAAc,EAAE,CAAC,QAAQ,EAAE,WAAW,EAAE,MAAM,EAAE,OAAO,KAAK,IAAI,CAAA;CACjE;;AAgiBD,wBAMG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"PortalDesktop.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Portal/PortalDesktop.vue.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"PortalDesktop.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Portal/PortalDesktop.vue.ts"],"names":[],"mappings":"AASA,OAAO,EAAqB,KAAK,WAAW,EAAE,MAAM,SAAS,CAAA;AAK7D,OAAO,EAAE,KAAK,SAAS,EAAgB,MAAM,SAAS,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAuqBtD,wBAOG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"PortalMobile.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Portal/PortalMobile.vue.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"PortalMobile.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Portal/PortalMobile.vue.ts"],"names":[],"mappings":"AAiBA,OAAO,KAAK,EAAgB,WAAW,EAAE,MAAM,2BAA2B,CAAA;AAI1E,OAAO,EAAgB,KAAK,WAAW,EAAE,MAAM,SAAS,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAq4CxD,wBAOG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"PortalSidebar.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Portal/PortalSidebar.vue.ts"],"names":[],"mappings":";
|
1
|
+
{"version":3,"file":"PortalSidebar.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Portal/PortalSidebar.vue.ts"],"names":[],"mappings":";AAoEA,wBAKG"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"PortalTablet.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Portal/PortalTablet.vue.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"PortalTablet.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Portal/PortalTablet.vue.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,EAAgB,WAAW,EAAE,MAAM,2BAA2B,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAqzB1E,wBAOG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import { type FmpBusiness, type PortalApp } from "@/store";
|
2
|
-
import type { FdoCountry } from "@feedmepos/core/entity";
|
3
1
|
import type { FeedMeUser } from "@feedmepos/auth";
|
2
|
+
import type { FdoCountry } from "@feedmepos/core/entity";
|
3
|
+
import { type FmpBusiness, type PortalApp } from "@/store";
|
4
4
|
export interface PortalProps {
|
5
5
|
dropdownOpened: boolean;
|
6
6
|
apps: PortalApp[];
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Portal/index.ts"],"names":[],"mappings":"AAAA,OAAO,
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Portal/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAA;AACjD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAA;AAExD,OAAO,EAAE,KAAK,WAAW,EAAE,KAAK,SAAS,EAAE,MAAM,SAAS,CAAA;AAE1D,MAAM,WAAW,WAAW;IAC1B,cAAc,EAAE,OAAO,CAAA;IACvB,IAAI,EAAE,SAAS,EAAE,CAAA;IACjB,UAAU,EAAE,SAAS,GAAG,SAAS,CAAA;IACjC,UAAU,EAAE,WAAW,EAAE,CAAA;IACzB,eAAe,EAAE,WAAW,GAAG,SAAS,CAAA;IACxC,SAAS,EAAE,UAAU,EAAE,CAAA;IACvB,cAAc,EAAE,MAAM,GAAG,SAAS,CAAA;IAClC,IAAI,EAAE,UAAU,GAAG,IAAI,CAAA;IAEvB,QAAQ,EAAE,OAAO,CAAA;CAClB;AAED,MAAM,WAAW,YAAY;IAC3B,CAAC,KAAK,EAAE,OAAO,GAAG,IAAI,CAAA;IAEtB,CAAC,KAAK,EAAE,QAAQ,GAAG,IAAI,CAAA;IAEvB,CAAC,KAAK,EAAE,iBAAiB,EAAE,QAAQ,EAAE,WAAW,EAAE,YAAY,EAAE,OAAO,GAAG,IAAI,CAAA;IAE9E,CAAC,KAAK,EAAE,kBAAkB,GAAG,IAAI,CAAA;IAEjC,CAAC,KAAK,EAAE,gBAAgB,EAAE,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,OAAO,GAAG,IAAI,CAAA;IAE3E,CAAC,KAAK,EAAE,YAAY,EAAE,GAAG,EAAE,SAAS,GAAG,IAAI,CAAA;IAE3C,CAAC,KAAK,EAAE,uBAAuB,EAAE,KAAK,EAAE,OAAO,GAAG,IAAI,CAAA;IAEtD,CAAC,KAAK,EAAE,eAAe,GAAG,IAAI,CAAA;IAE9B,CAAC,KAAK,EAAE,gBAAgB,GAAG,IAAI,CAAA;CAChC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Portal/index.vue.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"index.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Portal/index.vue.ts"],"names":[],"mappings":"AAcA,OAAO,KAAK,EAAgB,WAAW,EAAE,MAAM,2BAA2B,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAmM1E,wBAAwG;AACxG,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"RestaurantSelector.vue.d.ts","sourceRoot":"","sources":["../../../src/components/RestaurantSelector.vue.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1
|
+
{"version":3,"file":"RestaurantSelector.vue.d.ts","sourceRoot":"","sources":["../../../src/components/RestaurantSelector.vue.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA+iBA,wBAAwG;AAUxG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"SelectCountryDialog.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SelectCountryDialog.vue.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"SelectCountryDialog.vue.d.ts","sourceRoot":"","sources":["../../../src/components/SelectCountryDialog.vue.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAA;AAQxD,UAAU,KAAK;IACb,cAAc,EAAE,MAAM,GAAG,SAAS,CAAA;IAClC,SAAS,EAAE,UAAU,EAAE,CAAA;CACxB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAyPD,wBAOG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/UserInfo/index.vue.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"index.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/UserInfo/index.vue.ts"],"names":[],"mappings":"AAIA,OAAO,EAAgC,KAAK,QAAQ,EAAoB,MAAM,KAAK,CAAA;AAEnF,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAA;AAejD,OAAO,EAAE,KAAK,WAAW,EAAgB,MAAM,SAAS,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAqlBxD,wBA4BG"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"CustomAttributesForm.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/attribute/CustomAttributesForm.vue.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"CustomAttributesForm.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/attribute/CustomAttributesForm.vue.ts"],"names":[],"mappings":"AAIA,OAAO,EACL,KAAK,wBAAwB,EAG9B,MAAM,wBAAwB,CAAA;AAO/B,MAAM,MAAM,gBAAgB,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;AAIlD,UAAU,KAAK;IACb,MAAM,EAAE,wBAAwB,CAAA;IAChC,UAAU,EAAE,gBAAgB,CAAA;IAC5B,YAAY,CAAC,EAAE;QACb,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;KACxB,CAAA;CACF;;;;;;AA6LD,wBAOG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"MongoQueryBuilder.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/attribute/MongoQueryBuilder.vue.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"MongoQueryBuilder.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/attribute/MongoQueryBuilder.vue.ts"],"names":[],"mappings":"AAKA,OAAO,EAA2B,KAAK,wBAAwB,EAAE,MAAM,wBAAwB,CAAA;AAQ/F,MAAM,MAAM,qBAAqB,GAAG,GAAG,CAAA;AAIvC,UAAU,KAAK;IACb,MAAM,EAAE,wBAAwB,CAAA;IAChC,UAAU,EAAE,qBAAqB,CAAA;CAClC;;;;;;AAkQD,wBAOG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"useDebugUser.d.ts","sourceRoot":"","sources":["../../../src/composables/useDebugUser.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"useDebugUser.d.ts","sourceRoot":"","sources":["../../../src/composables/useDebugUser.ts"],"names":[],"mappings":"AAUA,wBAAgB,YAAY;;;;EA+F3B"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"useLocale.d.ts","sourceRoot":"","sources":["../../../src/composables/useLocale.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"useLocale.d.ts","sourceRoot":"","sources":["../../../src/composables/useLocale.ts"],"names":[],"mappings":"AAKA,MAAM,MAAM,MAAM,GACd,OAAO,GACP,OAAO,GACP,OAAO,GACP,OAAO,GACP,OAAO,GACP,OAAO,GACP,OAAO,GACP,OAAO,GACP,OAAO,CAAA;AAEX,eAAO,MAAM,kBAAkB,EAAE;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,CAAA;CAAE,EAU9D,CAAA;AAED,eAAO,MAAM,cAAc,uCAAoC,CAAA;AAE/D,iBAAS,iBAAiB,CAAC,OAAO,EAAE,MAAM,EAAE,QAE3C;AAED,OAAO,EAAE,iBAAiB,EAAE,CAAA;AAE5B,wBAAgB,SAAS;;;;;;;;;;;;;;;+BAgCW,MAAM;;EAczC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"usePaginatedBusinesses.d.ts","sourceRoot":"","sources":["../../../src/composables/usePaginatedBusinesses.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"usePaginatedBusinesses.d.ts","sourceRoot":"","sources":["../../../src/composables/usePaginatedBusinesses.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA;AAE1C,wBAAgB,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBA6CL,KAAK;EAiBrC"}
|
@@ -0,0 +1,33 @@
|
|
1
|
+
{
|
2
|
+
"common": {
|
3
|
+
"yes": "ใช่",
|
4
|
+
"no": "ไม่",
|
5
|
+
"ok": "ตกลง",
|
6
|
+
"accept": "ยอมรับ",
|
7
|
+
"download": "ดาวน์โหลด",
|
8
|
+
"export": "ส่งออก",
|
9
|
+
"import": "นำเข้า",
|
10
|
+
"save": "บันทึก",
|
11
|
+
"update": "อัปเดต",
|
12
|
+
"cancel": "ยกเลิก",
|
13
|
+
"confirm": "ยืนยัน",
|
14
|
+
"delete": "ลบ",
|
15
|
+
"edit": "แก้ไข",
|
16
|
+
"create": "สร้าง",
|
17
|
+
"search": "ค้นหา",
|
18
|
+
"filter": "กรอง",
|
19
|
+
"sort": "เรียงลำดับ",
|
20
|
+
"refresh": "รีเฟรช",
|
21
|
+
"close": "ปิด",
|
22
|
+
"back": "กลับ",
|
23
|
+
"continue": "ดำเนินการต่อ",
|
24
|
+
"next": "ต่อไป",
|
25
|
+
"previous": "ก่อนหน้า",
|
26
|
+
"add": "เพิ่ม",
|
27
|
+
"remove": "ลบออก",
|
28
|
+
"select": "เลือก",
|
29
|
+
"selectAll": "เลือกทั้งหมด",
|
30
|
+
"unselectAll": "ยกเลิกการเลือกทั้งหมด",
|
31
|
+
"selected": "{ count } เลือกแล้ว"
|
32
|
+
}
|
33
|
+
}
|
package/dist/locales/types.d.ts
CHANGED
@@ -2,7 +2,7 @@ import { default as enUS } from './en-US.json';
|
|
2
2
|
|
3
3
|
export type CommonMessagesSchema = typeof enUS;
|
4
4
|
export declare const locales: {
|
5
|
-
readonly
|
5
|
+
readonly "en-US": {
|
6
6
|
common: {
|
7
7
|
yes: string;
|
8
8
|
no: string;
|
@@ -35,7 +35,40 @@ export declare const locales: {
|
|
35
35
|
selected: string;
|
36
36
|
};
|
37
37
|
};
|
38
|
-
readonly
|
38
|
+
readonly "zh-CN": {
|
39
|
+
common: {
|
40
|
+
yes: string;
|
41
|
+
no: string;
|
42
|
+
ok: string;
|
43
|
+
accept: string;
|
44
|
+
download: string;
|
45
|
+
export: string;
|
46
|
+
import: string;
|
47
|
+
save: string;
|
48
|
+
update: string;
|
49
|
+
cancel: string;
|
50
|
+
confirm: string;
|
51
|
+
delete: string;
|
52
|
+
edit: string;
|
53
|
+
create: string;
|
54
|
+
search: string;
|
55
|
+
filter: string;
|
56
|
+
sort: string;
|
57
|
+
refresh: string;
|
58
|
+
close: string;
|
59
|
+
back: string;
|
60
|
+
continue: string;
|
61
|
+
next: string;
|
62
|
+
previous: string;
|
63
|
+
add: string;
|
64
|
+
remove: string;
|
65
|
+
select: string;
|
66
|
+
selectAll: string;
|
67
|
+
unselectAll: string;
|
68
|
+
selected: string;
|
69
|
+
};
|
70
|
+
};
|
71
|
+
readonly "th-TH": {
|
39
72
|
common: {
|
40
73
|
yes: string;
|
41
74
|
no: string;
|
package/dist/main.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../src/main.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../src/main.ts"],"names":[],"mappings":"AAMA,OAAO,mBAAmB,CAAA"}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { type RawRule, Ability } from "@casl/ability";
|
2
|
+
import { type Component } from "vue";
|
2
3
|
import { type RouteLocationNormalizedLoaded, type Router } from "vue-router";
|
3
4
|
import type { FmpUser } from "@/store";
|
4
|
-
import { type Component } from "vue";
|
5
5
|
export declare namespace Permission {
|
6
6
|
enum Level {
|
7
7
|
feedMe = 0,
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"permission.d.ts","sourceRoot":"","sources":["../../../src/permission/permission.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAA;AACrD,OAAO,
|
1
|
+
{"version":3,"file":"permission.d.ts","sourceRoot":"","sources":["../../../src/permission/permission.ts"],"names":[],"mappings":"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"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"loading.d.ts","sourceRoot":"","sources":["../../../src/plugin/loading.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;
|
1
|
+
{"version":3,"file":"loading.d.ts","sourceRoot":"","sources":["../../../src/plugin/loading.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;AAI9B,UAAU,UAAU;IAClB,CACE,QAAQ,SAAS,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,EACxC,IAAI,SAAS,UAAU,CAAC,QAAQ,CAAC,EACjC,MAAM,SAAS,UAAU,CAAC,QAAQ,CAAC,EAEnC,QAAQ,EAAE,QAAQ,EAClB,MAAM,EAAE;QACN,SAAS,CAAC,EAAE,CAAC,MAAM,EAAE,OAAO,CAAC,MAAM,CAAC,KAAK,IAAI,CAAA;QAC7C,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,IAAI,CAAA;QAClC,UAAU,CAAC,EAAE,MAAM,IAAI,CAAA;QACvB,UAAU,CAAC,EAAE,GAAG,CAAC,OAAO,CAAC,CAAA;QACzB,KAAK,CAAC,EAAE;YACN,OAAO,CAAC,EAAE,MAAM,CAAA;YAChB,KAAK,CAAC,EAAE,MAAM,CAAA;SACf,CAAA;KACF,GACA,CAAC,GAAG,IAAI,EAAE,IAAI,KAAK,OAAO,CAAC,MAAM,CAAC,CAAA;CACtC;8BAIkB;IACjB,UAAU,EAAE,UAAU,CAAA;CACvB;AAFD,wBAmCC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"query.d.ts","sourceRoot":"","sources":["../../../src/router/query.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,MAAM,EAAE,MAAM,YAAY,CAAA;
|
1
|
+
{"version":3,"file":"query.d.ts","sourceRoot":"","sources":["../../../src/router/query.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,MAAM,EAAE,MAAM,YAAY,CAAA;AAMxC,wBAAgB,+BAA+B,CAAC,MAAM,EAAE,MAAM,QA0B7D"}
|
package/dist/store.d.ts
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
import { F_COUNTRY, FdoAgent, FdoBusiness, FdoPermissionRule, FdoRestaurant, type FdoCustomAttribute } from "@feedmepos/core/entity";
|
2
|
-
import { type PublicSettingApi } from "./api";
|
3
1
|
import { type FeedMeUser } from "@feedmepos/auth";
|
4
|
-
import type
|
2
|
+
import { F_COUNTRY, FdoAgent, FdoBusiness, FdoPermissionRule, FdoRestaurant, type FdoCustomAttribute } from "@feedmepos/core/entity";
|
5
3
|
import { useI18n } from "@feedmepos/i18n";
|
4
|
+
import type { Breakpoints } from "@feedmepos/ui-library/dist/composables/useBreakpoints";
|
5
|
+
import { type PublicSettingApi } from "./api";
|
6
6
|
export interface FmpBusiness extends FdoBusiness {
|
7
7
|
id: string;
|
8
8
|
}
|