@feedmepos/mf-hrm-portal 2.0.17 → 2.0.18-dev.2
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-D4E8pss5.js +1037 -0
- package/dist/CollapsibleWrapper.vue_vue_type_script_setup_true_lang-BLJlmPVa.js +58 -0
- package/dist/EmployeeList-BfJO89pN.js +827 -0
- package/dist/FormItem.vue_vue_type_script_setup_true_lang-D3MOFOUI.js +45 -0
- package/dist/FormSection.vue_vue_type_script_setup_true_lang-DknXTYiK.js +49 -0
- package/dist/{Main-CCTDT_TG.js → Main-BbOMNP31.js} +758 -761
- package/dist/Main-XmxzThcC.js +86 -0
- package/dist/{Main-C7Q3OELU.js → Main-dqgR1UXY.js} +181 -175
- package/dist/PermissionSetList-DO0PRS6Z.js +347 -0
- package/dist/PortalPermissionEditor.vue_vue_type_script_setup_true_lang-DL4_xvBZ.js +3443 -0
- package/dist/RoleList-DB3NfUYF.js +545 -0
- package/dist/TeamMemberList-4hEx6L5r.js +1090 -0
- package/dist/{TimesheetList-DhKfguOb.js → TimesheetList-D29EFj1Q.js} +132 -126
- package/dist/{app--3WguZOC.js → app-SadE2J6-.js} +759 -711
- package/dist/app.js +1 -1
- package/dist/{dayjs.min-RrLy0N6G.js → dayjs.min-DKCxxK08.js} +1 -1
- package/dist/employee-3KJs872J.js +204 -0
- package/dist/{iteration-BQA73VxD.js → iteration-QZxp7XeE.js} +9258 -9213
- package/dist/{lodash-B1ouSWpG.js → lodash-DrksHyHu.js} +1 -1
- package/dist/{rule-BL-miuus.js → rule-CSsgDC6F.js} +263 -265
- package/dist/src/api/audit-log/index.d.ts +9 -0
- package/dist/src/api/restaurant/index.d.ts +5 -0
- package/dist/src/components/CheckboxInput.vue.d.ts +1 -1
- package/dist/src/components/CollapsibleWrapper.vue.d.ts +2 -0
- package/dist/src/components/Skeleton.vue.d.ts +7 -0
- package/dist/src/composables/useBasePermission.d.ts +1 -0
- package/dist/src/composables/useRestaurantMap.d.ts +2 -329
- package/dist/src/stores/restaurant.d.ts +181 -0
- package/dist/src/stores/role.d.ts +7 -7
- package/dist/src/stores/team.d.ts +6 -6
- package/dist/src/types/restaurant.d.ts +11 -0
- package/dist/src/types/team.d.ts +1 -1
- package/dist/src/views/hr/locales/index.d.ts +16 -0
- package/dist/src/views/team/components/BasePermission.vue.d.ts +3 -7
- package/dist/src/views/team/components/PosRolePermission.vue.d.ts +2 -2
- package/dist/src/views/team/locales/index.d.ts +32 -0
- package/dist/src/views/team/member/AddMemberForm.vue.d.ts +5 -3
- package/dist/style.css +1 -1
- package/dist/{timesheet-BbtAYZ1B.js → timesheet-sBe_HCZh.js} +2 -2
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/dist/useAppStore-BDADkWuX.js +171 -0
- package/dist/useDebounce-CWb5QR9G.js +28 -0
- package/dist/useDiscardConfirm-DPhEV6v0.js +157 -0
- package/dist/{useLoading-D7PklYeR.js → useLoading-PTqnaz_W.js} +1 -1
- package/dist/{useReportPermissions-CNcISy8f.js → useReportPermissions-C3Uzu7vB.js} +3 -3
- package/package.json +1 -1
- package/dist/AuditLogList-DwCmJovS.js +0 -980
- package/dist/EmployeeList-8166DlII.js +0 -736
- package/dist/FormSection.vue_vue_type_script_setup_true_lang-BVb8c4YU.js +0 -71
- package/dist/HorizontalSplitter-o860F4xM.js +0 -12
- package/dist/Main-C4LaqZaa.js +0 -85
- package/dist/PermissionSetList-trnHwNFR.js +0 -341
- package/dist/PortalPermissionEditor.vue_vue_type_script_setup_true_lang-Bc5nE9NF.js +0 -3480
- package/dist/RoleList-DJtbEUSC.js +0 -530
- package/dist/TeamMemberList-C6qx-yJi.js +0 -1108
- package/dist/employee-DSAStcBv.js +0 -204
- package/dist/useAppStore-BHWapSDk.js +0 -171
- package/dist/useDebounce-B8ZPVS5C.js +0 -15
- package/dist/useDiscardConfirm-BHni0LNu.js +0 -28
- package/dist/useSearch-B6WK1LBB.js +0 -15
|
@@ -6,7 +6,7 @@ declare const useTeamStore: import("pinia").StoreDefinition<"team", Pick<{
|
|
|
6
6
|
phoneNumber: string;
|
|
7
7
|
email: string;
|
|
8
8
|
restaurants: string[];
|
|
9
|
-
managableRestaurantIds: string[];
|
|
9
|
+
managableRestaurantIds: string[] | null;
|
|
10
10
|
permissions: {
|
|
11
11
|
reason?: string | null | undefined | undefined;
|
|
12
12
|
conditions?: any;
|
|
@@ -52,7 +52,7 @@ declare const useTeamStore: import("pinia").StoreDefinition<"team", Pick<{
|
|
|
52
52
|
phoneNumber: string;
|
|
53
53
|
email: string;
|
|
54
54
|
restaurants: string[];
|
|
55
|
-
managableRestaurantIds: string[];
|
|
55
|
+
managableRestaurantIds: string[] | null;
|
|
56
56
|
permissions: {
|
|
57
57
|
reason?: string | null | undefined | undefined;
|
|
58
58
|
conditions?: any;
|
|
@@ -107,7 +107,7 @@ declare const useTeamStore: import("pinia").StoreDefinition<"team", Pick<{
|
|
|
107
107
|
phoneNumber: string;
|
|
108
108
|
email: string;
|
|
109
109
|
restaurants: string[];
|
|
110
|
-
managableRestaurantIds: string[];
|
|
110
|
+
managableRestaurantIds: string[] | null;
|
|
111
111
|
permissions: {
|
|
112
112
|
reason?: string | null | undefined | undefined;
|
|
113
113
|
conditions?: any;
|
|
@@ -153,7 +153,7 @@ declare const useTeamStore: import("pinia").StoreDefinition<"team", Pick<{
|
|
|
153
153
|
phoneNumber: string;
|
|
154
154
|
email: string;
|
|
155
155
|
restaurants: string[];
|
|
156
|
-
managableRestaurantIds: string[];
|
|
156
|
+
managableRestaurantIds: string[] | null;
|
|
157
157
|
permissions: {
|
|
158
158
|
reason?: string | null | undefined | undefined;
|
|
159
159
|
conditions?: any;
|
|
@@ -208,7 +208,7 @@ declare const useTeamStore: import("pinia").StoreDefinition<"team", Pick<{
|
|
|
208
208
|
phoneNumber: string;
|
|
209
209
|
email: string;
|
|
210
210
|
restaurants: string[];
|
|
211
|
-
managableRestaurantIds: string[];
|
|
211
|
+
managableRestaurantIds: string[] | null;
|
|
212
212
|
permissions: {
|
|
213
213
|
reason?: string | null | undefined | undefined;
|
|
214
214
|
conditions?: any;
|
|
@@ -254,7 +254,7 @@ declare const useTeamStore: import("pinia").StoreDefinition<"team", Pick<{
|
|
|
254
254
|
phoneNumber: string;
|
|
255
255
|
email: string;
|
|
256
256
|
restaurants: string[];
|
|
257
|
-
managableRestaurantIds: string[];
|
|
257
|
+
managableRestaurantIds: string[] | null;
|
|
258
258
|
permissions: {
|
|
259
259
|
reason?: string | null | undefined | undefined;
|
|
260
260
|
conditions?: any;
|
|
@@ -1,4 +1,15 @@
|
|
|
1
1
|
import type { FdoAddress, FdoProfile, FdoRestaurant } from '@feedmepos/core/entity';
|
|
2
|
+
export interface HrmRestaurantProfileSummary {
|
|
3
|
+
name: string;
|
|
4
|
+
code?: string;
|
|
5
|
+
legalName: string;
|
|
6
|
+
}
|
|
7
|
+
export interface HrmRestaurant {
|
|
8
|
+
_id: string;
|
|
9
|
+
businessId: string;
|
|
10
|
+
profile: HrmRestaurantProfileSummary;
|
|
11
|
+
managable: boolean;
|
|
12
|
+
}
|
|
2
13
|
export interface Address extends FdoAddress {
|
|
3
14
|
formatted: string;
|
|
4
15
|
isValidPostcode: boolean;
|
package/dist/src/types/team.d.ts
CHANGED
|
@@ -57,7 +57,7 @@ export interface FTeamMember {
|
|
|
57
57
|
phoneNumber: string;
|
|
58
58
|
email: string;
|
|
59
59
|
restaurants: string[];
|
|
60
|
-
managableRestaurantIds: string[];
|
|
60
|
+
managableRestaurantIds: string[] | null;
|
|
61
61
|
permissions: FdoPermissionRule[];
|
|
62
62
|
permissionLabels: string[];
|
|
63
63
|
doc: IFdtoPortalUser;
|
|
@@ -11,12 +11,15 @@ export declare const i18nMessages: {
|
|
|
11
11
|
code: string;
|
|
12
12
|
name: string;
|
|
13
13
|
restaurants: string;
|
|
14
|
+
assignedRole: string;
|
|
14
15
|
since: string;
|
|
15
16
|
};
|
|
16
17
|
form: {
|
|
17
18
|
add: string;
|
|
18
19
|
update: string;
|
|
19
20
|
employeeSetting: string;
|
|
21
|
+
assignmentSection: string;
|
|
22
|
+
addAnother: string;
|
|
20
23
|
masterUserConfig: string;
|
|
21
24
|
code: string;
|
|
22
25
|
masterUser: string;
|
|
@@ -26,6 +29,7 @@ export declare const i18nMessages: {
|
|
|
26
29
|
passcodeRequired: string;
|
|
27
30
|
passcodeGenerate: string;
|
|
28
31
|
atLeastOneRestaurant: string;
|
|
32
|
+
roleRequired: string;
|
|
29
33
|
all: string;
|
|
30
34
|
role: string;
|
|
31
35
|
name: string;
|
|
@@ -210,12 +214,15 @@ export declare const i18nMessages: {
|
|
|
210
214
|
code: string;
|
|
211
215
|
name: string;
|
|
212
216
|
restaurants: string;
|
|
217
|
+
assignedRole: string;
|
|
213
218
|
since: string;
|
|
214
219
|
};
|
|
215
220
|
form: {
|
|
216
221
|
add: string;
|
|
217
222
|
update: string;
|
|
218
223
|
employeeSetting: string;
|
|
224
|
+
assignmentSection: string;
|
|
225
|
+
addAnother: string;
|
|
219
226
|
masterUserConfig: string;
|
|
220
227
|
code: string;
|
|
221
228
|
masterUser: string;
|
|
@@ -225,6 +232,7 @@ export declare const i18nMessages: {
|
|
|
225
232
|
passcodeRequired: string;
|
|
226
233
|
passcodeGenerate: string;
|
|
227
234
|
atLeastOneRestaurant: string;
|
|
235
|
+
roleRequired: string;
|
|
228
236
|
all: string;
|
|
229
237
|
role: string;
|
|
230
238
|
name: string;
|
|
@@ -409,12 +417,15 @@ export declare const i18nMessages: {
|
|
|
409
417
|
code: string;
|
|
410
418
|
name: string;
|
|
411
419
|
restaurants: string;
|
|
420
|
+
assignedRole: string;
|
|
412
421
|
since: string;
|
|
413
422
|
};
|
|
414
423
|
form: {
|
|
415
424
|
add: string;
|
|
416
425
|
update: string;
|
|
417
426
|
employeeSetting: string;
|
|
427
|
+
assignmentSection: string;
|
|
428
|
+
addAnother: string;
|
|
418
429
|
masterUserConfig: string;
|
|
419
430
|
code: string;
|
|
420
431
|
masterUser: string;
|
|
@@ -424,6 +435,7 @@ export declare const i18nMessages: {
|
|
|
424
435
|
passcodeRequired: string;
|
|
425
436
|
passcodeGenerate: string;
|
|
426
437
|
atLeastOneRestaurant: string;
|
|
438
|
+
roleRequired: string;
|
|
427
439
|
all: string;
|
|
428
440
|
role: string;
|
|
429
441
|
name: string;
|
|
@@ -607,12 +619,15 @@ export declare const i18nMessages: {
|
|
|
607
619
|
code: string;
|
|
608
620
|
name: string;
|
|
609
621
|
restaurants: string;
|
|
622
|
+
assignedRole: string;
|
|
610
623
|
since: string;
|
|
611
624
|
};
|
|
612
625
|
form: {
|
|
613
626
|
add: string;
|
|
614
627
|
update: string;
|
|
615
628
|
employeeSetting: string;
|
|
629
|
+
assignmentSection: string;
|
|
630
|
+
addAnother: string;
|
|
616
631
|
masterUserConfig: string;
|
|
617
632
|
code: string;
|
|
618
633
|
masterUser: string;
|
|
@@ -622,6 +637,7 @@ export declare const i18nMessages: {
|
|
|
622
637
|
passcodeRequired: string;
|
|
623
638
|
passcodeGenerate: string;
|
|
624
639
|
atLeastOneRestaurant: string;
|
|
640
|
+
roleRequired: string;
|
|
625
641
|
all: string;
|
|
626
642
|
role: string;
|
|
627
643
|
name: string;
|
|
@@ -1,18 +1,14 @@
|
|
|
1
1
|
import { type PropType } from 'vue';
|
|
2
|
-
import type { IFdtoPortalPermissionsWithVisibilityCondition } from '@feedmepos/hrm-permission';
|
|
3
2
|
import type { FdoPermissionRule } from '@feedmepos/core/entity';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
}, __VLS_37: `checkbox-${string}-append`, __VLS_38: {
|
|
3
|
+
import type { IFdtoPortalPermissionsWithVisibilityCondition } from '@feedmepos/hrm-permission';
|
|
4
|
+
declare var __VLS_21: `checkbox-${string}-append`, __VLS_22: {
|
|
7
5
|
option: {
|
|
8
6
|
label: string;
|
|
9
7
|
value: string;
|
|
10
8
|
};
|
|
11
9
|
};
|
|
12
10
|
type __VLS_Slots = {} & {
|
|
13
|
-
[K in NonNullable<typeof
|
|
14
|
-
} & {
|
|
15
|
-
[K in NonNullable<typeof __VLS_37>]?: (props: typeof __VLS_38) => any;
|
|
11
|
+
[K in NonNullable<typeof __VLS_21>]?: (props: typeof __VLS_22) => any;
|
|
16
12
|
};
|
|
17
13
|
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
18
14
|
modelValue: {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { type PropType } from 'vue';
|
|
2
2
|
import { type CheckboxOption } from '@/components/CheckboxInput.vue';
|
|
3
3
|
import type { Role } from '@/types/role';
|
|
4
|
-
declare var
|
|
4
|
+
declare var __VLS_13: `checkbox-${any}-append`, __VLS_14: {
|
|
5
5
|
option: CheckboxOption;
|
|
6
6
|
};
|
|
7
7
|
type __VLS_Slots = {} & {
|
|
8
|
-
[K in NonNullable<typeof
|
|
8
|
+
[K in NonNullable<typeof __VLS_13>]?: (props: typeof __VLS_14) => any;
|
|
9
9
|
};
|
|
10
10
|
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
11
11
|
modelValue: {
|
|
@@ -46,6 +46,8 @@ export declare const i18nMessages: {
|
|
|
46
46
|
filter: {
|
|
47
47
|
permission_placeholder: string;
|
|
48
48
|
selected_permission_prefix: string;
|
|
49
|
+
assigned_role_placeholder: string;
|
|
50
|
+
selected_assigned_role_prefix: string;
|
|
49
51
|
};
|
|
50
52
|
emptyState: {
|
|
51
53
|
title: string;
|
|
@@ -67,6 +69,7 @@ export declare const i18nMessages: {
|
|
|
67
69
|
emailAddress: string;
|
|
68
70
|
};
|
|
69
71
|
permissions: {
|
|
72
|
+
title: string;
|
|
70
73
|
manageable: string;
|
|
71
74
|
search: string;
|
|
72
75
|
general: string;
|
|
@@ -77,12 +80,17 @@ export declare const i18nMessages: {
|
|
|
77
80
|
includedNewRole: string;
|
|
78
81
|
roles: string;
|
|
79
82
|
inherited: string;
|
|
83
|
+
allowedCount: string;
|
|
84
|
+
columnName: string;
|
|
85
|
+
columnManage: string;
|
|
80
86
|
};
|
|
81
87
|
masterUser: {
|
|
82
88
|
title: string;
|
|
83
89
|
passcode: string;
|
|
84
90
|
passcodeRequired: string;
|
|
85
91
|
sublabel: string;
|
|
92
|
+
assignmentSection: string;
|
|
93
|
+
addAnother: string;
|
|
86
94
|
code: string;
|
|
87
95
|
name: string;
|
|
88
96
|
role: string;
|
|
@@ -261,6 +269,8 @@ export declare const i18nMessages: {
|
|
|
261
269
|
filter: {
|
|
262
270
|
permission_placeholder: string;
|
|
263
271
|
selected_permission_prefix: string;
|
|
272
|
+
assigned_role_placeholder: string;
|
|
273
|
+
selected_assigned_role_prefix: string;
|
|
264
274
|
};
|
|
265
275
|
emptyState: {
|
|
266
276
|
title: string;
|
|
@@ -282,6 +292,7 @@ export declare const i18nMessages: {
|
|
|
282
292
|
emailAddress: string;
|
|
283
293
|
};
|
|
284
294
|
permissions: {
|
|
295
|
+
title: string;
|
|
285
296
|
manageable: string;
|
|
286
297
|
search: string;
|
|
287
298
|
general: string;
|
|
@@ -292,12 +303,17 @@ export declare const i18nMessages: {
|
|
|
292
303
|
includedNewRole: string;
|
|
293
304
|
roles: string;
|
|
294
305
|
inherited: string;
|
|
306
|
+
allowedCount: string;
|
|
307
|
+
columnName: string;
|
|
308
|
+
columnManage: string;
|
|
295
309
|
};
|
|
296
310
|
masterUser: {
|
|
297
311
|
title: string;
|
|
298
312
|
passcode: string;
|
|
299
313
|
passcodeRequired: string;
|
|
300
314
|
sublabel: string;
|
|
315
|
+
assignmentSection: string;
|
|
316
|
+
addAnother: string;
|
|
301
317
|
code: string;
|
|
302
318
|
name: string;
|
|
303
319
|
role: string;
|
|
@@ -476,6 +492,8 @@ export declare const i18nMessages: {
|
|
|
476
492
|
filter: {
|
|
477
493
|
permission_placeholder: string;
|
|
478
494
|
selected_permission_prefix: string;
|
|
495
|
+
assigned_role_placeholder: string;
|
|
496
|
+
selected_assigned_role_prefix: string;
|
|
479
497
|
};
|
|
480
498
|
emptyState: {
|
|
481
499
|
title: string;
|
|
@@ -497,6 +515,7 @@ export declare const i18nMessages: {
|
|
|
497
515
|
emailAddress: string;
|
|
498
516
|
};
|
|
499
517
|
permissions: {
|
|
518
|
+
title: string;
|
|
500
519
|
manageable: string;
|
|
501
520
|
search: string;
|
|
502
521
|
general: string;
|
|
@@ -507,12 +526,17 @@ export declare const i18nMessages: {
|
|
|
507
526
|
includedNewRole: string;
|
|
508
527
|
roles: string;
|
|
509
528
|
inherited: string;
|
|
529
|
+
allowedCount: string;
|
|
530
|
+
columnName: string;
|
|
531
|
+
columnManage: string;
|
|
510
532
|
};
|
|
511
533
|
masterUser: {
|
|
512
534
|
title: string;
|
|
513
535
|
passcode: string;
|
|
514
536
|
passcodeRequired: string;
|
|
515
537
|
sublabel: string;
|
|
538
|
+
assignmentSection: string;
|
|
539
|
+
addAnother: string;
|
|
516
540
|
code: string;
|
|
517
541
|
name: string;
|
|
518
542
|
role: string;
|
|
@@ -691,6 +715,8 @@ export declare const i18nMessages: {
|
|
|
691
715
|
filter: {
|
|
692
716
|
permission_placeholder: string;
|
|
693
717
|
selected_permission_prefix: string;
|
|
718
|
+
assigned_role_placeholder: string;
|
|
719
|
+
selected_assigned_role_prefix: string;
|
|
694
720
|
};
|
|
695
721
|
emptyState: {
|
|
696
722
|
title: string;
|
|
@@ -712,6 +738,7 @@ export declare const i18nMessages: {
|
|
|
712
738
|
emailAddress: string;
|
|
713
739
|
};
|
|
714
740
|
permissions: {
|
|
741
|
+
title: string;
|
|
715
742
|
manageable: string;
|
|
716
743
|
search: string;
|
|
717
744
|
general: string;
|
|
@@ -722,12 +749,17 @@ export declare const i18nMessages: {
|
|
|
722
749
|
includedNewRole: string;
|
|
723
750
|
roles: string;
|
|
724
751
|
inherited: string;
|
|
752
|
+
allowedCount: string;
|
|
753
|
+
columnName: string;
|
|
754
|
+
columnManage: string;
|
|
725
755
|
};
|
|
726
756
|
masterUser: {
|
|
727
757
|
title: string;
|
|
728
758
|
passcode: string;
|
|
729
759
|
passcodeRequired: string;
|
|
730
760
|
sublabel: string;
|
|
761
|
+
assignmentSection: string;
|
|
762
|
+
addAnother: string;
|
|
731
763
|
code: string;
|
|
732
764
|
name: string;
|
|
733
765
|
role: string;
|
|
@@ -11,6 +11,7 @@ export interface TeamDialogData {
|
|
|
11
11
|
permissionSetIds: string[];
|
|
12
12
|
posUser?: IFdtoPermissionPosUser;
|
|
13
13
|
}
|
|
14
|
+
declare function isModified(): boolean;
|
|
14
15
|
declare function readFormData(): IFdtoCreatePortalUserReq;
|
|
15
16
|
declare function validate(): Promise<IFdtoCreatePortalUserReq | null>;
|
|
16
17
|
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -21,13 +22,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
21
22
|
type: StringConstructor;
|
|
22
23
|
default: string;
|
|
23
24
|
};
|
|
24
|
-
|
|
25
|
+
loading: {
|
|
25
26
|
type: BooleanConstructor;
|
|
26
27
|
default: boolean;
|
|
27
28
|
};
|
|
28
29
|
}>, {
|
|
29
30
|
readFormData: typeof readFormData;
|
|
30
31
|
validate: typeof validate;
|
|
32
|
+
isModified: typeof isModified;
|
|
31
33
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
32
34
|
initialValue: {
|
|
33
35
|
type: PropType<TeamDialogData>;
|
|
@@ -36,12 +38,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
36
38
|
type: StringConstructor;
|
|
37
39
|
default: string;
|
|
38
40
|
};
|
|
39
|
-
|
|
41
|
+
loading: {
|
|
40
42
|
type: BooleanConstructor;
|
|
41
43
|
default: boolean;
|
|
42
44
|
};
|
|
43
45
|
}>> & Readonly<{}>, {
|
|
46
|
+
loading: boolean;
|
|
44
47
|
roleErrorMessage: string;
|
|
45
|
-
isLoadingMasterUser: boolean;
|
|
46
48
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
47
49
|
export default _default;
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.employee-list-table[data-v-
|
|
1
|
+
.employee-list-table[data-v-e931839a] [class~=gap-24]>div:first-child{display:none}.user-info-icon[data-v-c2c7ed35]{flex-shrink:0;cursor:pointer;font-size:.75rem;font-weight:600;line-height:1rem;letter-spacing:.02em;text-decoration-line:none;color:var(--fm-color-neutral-white);display:flex;align-items:center;justify-content:center;background:linear-gradient(201deg,#fc9b40 10.3%,#ff6052 98.36%)}.user-info-icon--md[data-v-c2c7ed35]{height:2.25rem;width:2.25rem;border-radius:8px}.user-info-icon--lg[data-v-c2c7ed35]{height:48px;width:48px;border-radius:16px}.profile-menu[data-v-c2c7ed35]{width:280px;padding-top:12px;padding-bottom:12px}.profile-menu--profile[data-v-c2c7ed35]>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(8px * var(--tw-space-x-reverse));margin-left:calc(8px * calc(1 - var(--tw-space-x-reverse)))}.profile-menu--profile[data-v-c2c7ed35]{padding:16px 16px 12px;border-radius:8px;display:flex;align-items:center;border-width:1px;border-color:var(--fm-color-neutral-gray-200)}.profile-menu--profile .profile-displayName[data-v-c2c7ed35]{font-size:1rem;font-weight:400;line-height:1.25rem;letter-spacing:.005em;text-decoration-line:none;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.profile-menu--profile .profile-email[data-v-c2c7ed35],.profile-menu--profile .profile-phone[data-v-c2c7ed35]{font-size:.875rem;font-weight:400;line-height:1.125rem;letter-spacing:.0125em;text-decoration-line:none;color:var(--fm-color-neutral-gray-300);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.audit-log-list-table[data-v-5566060e] [class~=gap-24]>div:first-child{display:none}.audit-log-action-label[data-v-5566060e]{display:block;width:100%;max-width:100%;max-height:6.25rem;overflow-y:auto;white-space:pre-line;word-break:break-word;line-height:1.25rem;scrollbar-width:none;-ms-overflow-style:none}.audit-log-action-label[data-v-5566060e]::-webkit-scrollbar{display:none}.audit-log-operation-label-detail[data-v-5566060e]{max-height:6.875rem;overflow-y:auto;white-space:pre-line;word-break:break-word;line-height:1.375rem;scrollbar-width:none;-ms-overflow-style:none}.audit-log-operation-label-detail[data-v-5566060e]::-webkit-scrollbar{display:none}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { d as i } from "./dayjs.min-
|
|
1
|
+
import { d as i } from "./dayjs.min-DKCxxK08.js";
|
|
2
2
|
import { defineStore as p, storeToRefs as T } from "pinia";
|
|
3
3
|
import { ref as l } from "vue";
|
|
4
|
-
import { b as c, g as y, s as S } from "./iteration-
|
|
4
|
+
import { b as c, g as y, s as S } from "./iteration-QZxp7XeE.js";
|
|
5
5
|
import { i as f, f as g } from "./utils-BZkjJbju.js";
|
|
6
6
|
const u = {
|
|
7
7
|
async readTimesheets(t, e) {
|