@feedmepos/mf-hrm-portal 2.0.17-dev.5 → 2.0.17
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-DwCmJovS.js +980 -0
- package/dist/EmployeeList-8166DlII.js +736 -0
- package/dist/FormSection.vue_vue_type_script_setup_true_lang-BVb8c4YU.js +71 -0
- package/dist/HorizontalSplitter-o860F4xM.js +12 -0
- package/dist/{Main-w0XUUaBp.js → Main-C4LaqZaa.js} +14 -16
- package/dist/{Main-pTgqNncY.js → Main-C7Q3OELU.js} +128 -128
- package/dist/{Main-CQ3KwxDY.js → Main-CCTDT_TG.js} +1371 -1368
- package/dist/PermissionSetList-trnHwNFR.js +341 -0
- package/dist/PortalPermissionEditor.vue_vue_type_script_setup_true_lang-Bc5nE9NF.js +3480 -0
- package/dist/RoleList-DJtbEUSC.js +530 -0
- package/dist/TeamMemberList-C6qx-yJi.js +1108 -0
- package/dist/{TimesheetList-Bwp9_xHe.js → TimesheetList-DhKfguOb.js} +6 -6
- package/dist/{app-COJbSNM4.js → app--3WguZOC.js} +711 -759
- package/dist/app.js +1 -1
- package/dist/{dayjs.min-CcBi6N-K.js → dayjs.min-RrLy0N6G.js} +1 -1
- package/dist/{employee-xiV0LfnL.js → employee-DSAStcBv.js} +3 -3
- package/dist/{iteration-JOKbtlLf.js → iteration-BQA73VxD.js} +2 -2
- package/dist/{lodash-D5xlVzib.js → lodash-B1ouSWpG.js} +1 -1
- package/dist/{rule-3sXHiW0y.js → rule-BL-miuus.js} +181 -179
- package/dist/src/api/audit-log/index.d.ts +0 -9
- package/dist/src/components/CheckboxInput.vue.d.ts +1 -1
- package/dist/src/components/CollapsibleWrapper.vue.d.ts +0 -2
- package/dist/src/composables/useBasePermission.d.ts +0 -1
- package/dist/src/stores/team.d.ts +6 -6
- package/dist/src/types/team.d.ts +1 -1
- package/dist/src/views/hr/locales/index.d.ts +0 -16
- package/dist/src/views/team/components/BasePermission.vue.d.ts +7 -3
- package/dist/src/views/team/components/PosRolePermission.vue.d.ts +2 -2
- package/dist/src/views/team/locales/index.d.ts +0 -32
- package/dist/src/views/team/member/AddMemberForm.vue.d.ts +3 -5
- package/dist/style.css +1 -1
- package/dist/{timesheet-DkD3AysG.js → timesheet-BbtAYZ1B.js} +2 -2
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/dist/{useAppStore-CvmsaYSG.js → useAppStore-BHWapSDk.js} +1 -1
- package/dist/useDebounce-B8ZPVS5C.js +15 -0
- package/dist/useDiscardConfirm-BHni0LNu.js +28 -0
- package/dist/{useLoading-4TNmhm5N.js → useLoading-D7PklYeR.js} +1 -1
- package/dist/{useReportPermissions-CWMFFb8E.js → useReportPermissions-CNcISy8f.js} +3 -3
- package/dist/useSearch-B6WK1LBB.js +15 -0
- package/package.json +1 -1
- package/dist/AuditLogList-Dl3Nmf00.js +0 -1011
- package/dist/CollapsibleWrapper.vue_vue_type_script_setup_true_lang-BLJlmPVa.js +0 -58
- package/dist/EmployeeList-DBd_rVW2.js +0 -831
- package/dist/FormItem.vue_vue_type_script_setup_true_lang-CoorkndT.js +0 -34
- package/dist/FormSection.vue_vue_type_script_setup_true_lang-DknXTYiK.js +0 -49
- package/dist/PermissionSetList-B8qNOWH6.js +0 -347
- package/dist/PortalPermissionEditor.vue_vue_type_script_setup_true_lang-C9VUjAu_.js +0 -3443
- package/dist/RoleList-DMFJsUZv.js +0 -545
- package/dist/Skeleton.vue_vue_type_script_setup_true_lang-B4PxNMwq.js +0 -16
- package/dist/TeamMemberList-BLRTfKLz.js +0 -1031
- package/dist/src/components/Skeleton.vue.d.ts +0 -7
- package/dist/team-CyNektSD.js +0 -33
- package/dist/useDiscardConfirm-DPhEV6v0.js +0 -157
- package/dist/useSearch-BAPEUu1R.js +0 -15
|
@@ -1,14 +1,5 @@
|
|
|
1
1
|
import type { AuditLogEntry } from '@/types/audit-log';
|
|
2
2
|
declare const AuditLogAPI: {
|
|
3
|
-
count(params?: {
|
|
4
|
-
from?: string;
|
|
5
|
-
to?: string;
|
|
6
|
-
userIds?: string[];
|
|
7
|
-
subjects?: string[];
|
|
8
|
-
subjectPrefixes?: string[];
|
|
9
|
-
actions?: string[];
|
|
10
|
-
outcomes?: string[];
|
|
11
|
-
}): Promise<number>;
|
|
12
3
|
read(params?: {
|
|
13
4
|
limit?: number;
|
|
14
5
|
offset?: number;
|
|
@@ -143,9 +143,9 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
143
143
|
}>, {
|
|
144
144
|
max: number;
|
|
145
145
|
min: number;
|
|
146
|
-
disable: boolean;
|
|
147
146
|
showAllToggle: string | boolean;
|
|
148
147
|
includeDisabledOptionsWhenSelectAll: boolean;
|
|
148
|
+
disable: boolean;
|
|
149
149
|
showIntermediate: boolean;
|
|
150
150
|
gutter: number;
|
|
151
151
|
falsyShowSlot: boolean;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
interface Props {
|
|
2
2
|
title?: string;
|
|
3
|
-
subtitle?: string;
|
|
4
3
|
initiallyCollapsed?: boolean;
|
|
5
4
|
}
|
|
6
5
|
declare var __VLS_1: {}, __VLS_7: {};
|
|
@@ -11,7 +10,6 @@ type __VLS_Slots = {} & {
|
|
|
11
10
|
};
|
|
12
11
|
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
13
12
|
title: string;
|
|
14
|
-
subtitle: string;
|
|
15
13
|
initiallyCollapsed: boolean;
|
|
16
14
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
17
15
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
@@ -21,7 +21,6 @@ export declare function useBasePermission(modelValue: Readonly<Ref<FdoPermission
|
|
|
21
21
|
categoryGroups: ComputedRef<CategoryGroup[]>;
|
|
22
22
|
toggleCategory: (category: string, subjects: unknown[]) => void;
|
|
23
23
|
isAllManageChecked: (group: CategoryGroup) => boolean;
|
|
24
|
-
isAllManageIndeterminate: (group: CategoryGroup) => boolean;
|
|
25
24
|
toggleAllManage: (group: CategoryGroup) => void;
|
|
26
25
|
isManageChecked: (group: CategoryGroup, subject: string) => boolean;
|
|
27
26
|
isManageIndeterminate: (group: CategoryGroup, subject: string) => boolean;
|
|
@@ -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[];
|
|
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[];
|
|
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[];
|
|
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[];
|
|
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[];
|
|
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[];
|
|
258
258
|
permissions: {
|
|
259
259
|
reason?: string | null | undefined | undefined;
|
|
260
260
|
conditions?: any;
|
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[];
|
|
61
61
|
permissions: FdoPermissionRule[];
|
|
62
62
|
permissionLabels: string[];
|
|
63
63
|
doc: IFdtoPortalUser;
|
|
@@ -11,15 +11,12 @@ export declare const i18nMessages: {
|
|
|
11
11
|
code: string;
|
|
12
12
|
name: string;
|
|
13
13
|
restaurants: string;
|
|
14
|
-
assignedRole: string;
|
|
15
14
|
since: string;
|
|
16
15
|
};
|
|
17
16
|
form: {
|
|
18
17
|
add: string;
|
|
19
18
|
update: string;
|
|
20
19
|
employeeSetting: string;
|
|
21
|
-
assignmentSection: string;
|
|
22
|
-
addAnother: string;
|
|
23
20
|
masterUserConfig: string;
|
|
24
21
|
code: string;
|
|
25
22
|
masterUser: string;
|
|
@@ -29,7 +26,6 @@ export declare const i18nMessages: {
|
|
|
29
26
|
passcodeRequired: string;
|
|
30
27
|
passcodeGenerate: string;
|
|
31
28
|
atLeastOneRestaurant: string;
|
|
32
|
-
roleRequired: string;
|
|
33
29
|
all: string;
|
|
34
30
|
role: string;
|
|
35
31
|
name: string;
|
|
@@ -214,15 +210,12 @@ export declare const i18nMessages: {
|
|
|
214
210
|
code: string;
|
|
215
211
|
name: string;
|
|
216
212
|
restaurants: string;
|
|
217
|
-
assignedRole: string;
|
|
218
213
|
since: string;
|
|
219
214
|
};
|
|
220
215
|
form: {
|
|
221
216
|
add: string;
|
|
222
217
|
update: string;
|
|
223
218
|
employeeSetting: string;
|
|
224
|
-
assignmentSection: string;
|
|
225
|
-
addAnother: string;
|
|
226
219
|
masterUserConfig: string;
|
|
227
220
|
code: string;
|
|
228
221
|
masterUser: string;
|
|
@@ -232,7 +225,6 @@ export declare const i18nMessages: {
|
|
|
232
225
|
passcodeRequired: string;
|
|
233
226
|
passcodeGenerate: string;
|
|
234
227
|
atLeastOneRestaurant: string;
|
|
235
|
-
roleRequired: string;
|
|
236
228
|
all: string;
|
|
237
229
|
role: string;
|
|
238
230
|
name: string;
|
|
@@ -417,15 +409,12 @@ export declare const i18nMessages: {
|
|
|
417
409
|
code: string;
|
|
418
410
|
name: string;
|
|
419
411
|
restaurants: string;
|
|
420
|
-
assignedRole: string;
|
|
421
412
|
since: string;
|
|
422
413
|
};
|
|
423
414
|
form: {
|
|
424
415
|
add: string;
|
|
425
416
|
update: string;
|
|
426
417
|
employeeSetting: string;
|
|
427
|
-
assignmentSection: string;
|
|
428
|
-
addAnother: string;
|
|
429
418
|
masterUserConfig: string;
|
|
430
419
|
code: string;
|
|
431
420
|
masterUser: string;
|
|
@@ -435,7 +424,6 @@ export declare const i18nMessages: {
|
|
|
435
424
|
passcodeRequired: string;
|
|
436
425
|
passcodeGenerate: string;
|
|
437
426
|
atLeastOneRestaurant: string;
|
|
438
|
-
roleRequired: string;
|
|
439
427
|
all: string;
|
|
440
428
|
role: string;
|
|
441
429
|
name: string;
|
|
@@ -619,15 +607,12 @@ export declare const i18nMessages: {
|
|
|
619
607
|
code: string;
|
|
620
608
|
name: string;
|
|
621
609
|
restaurants: string;
|
|
622
|
-
assignedRole: string;
|
|
623
610
|
since: string;
|
|
624
611
|
};
|
|
625
612
|
form: {
|
|
626
613
|
add: string;
|
|
627
614
|
update: string;
|
|
628
615
|
employeeSetting: string;
|
|
629
|
-
assignmentSection: string;
|
|
630
|
-
addAnother: string;
|
|
631
616
|
masterUserConfig: string;
|
|
632
617
|
code: string;
|
|
633
618
|
masterUser: string;
|
|
@@ -637,7 +622,6 @@ export declare const i18nMessages: {
|
|
|
637
622
|
passcodeRequired: string;
|
|
638
623
|
passcodeGenerate: string;
|
|
639
624
|
atLeastOneRestaurant: string;
|
|
640
|
-
roleRequired: string;
|
|
641
625
|
all: string;
|
|
642
626
|
role: string;
|
|
643
627
|
name: string;
|
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
import { type PropType } from 'vue';
|
|
2
|
-
import type { FdoPermissionRule } from '@feedmepos/core/entity';
|
|
3
2
|
import type { IFdtoPortalPermissionsWithVisibilityCondition } from '@feedmepos/hrm-permission';
|
|
4
|
-
|
|
3
|
+
import type { FdoPermissionRule } from '@feedmepos/core/entity';
|
|
4
|
+
declare var __VLS_9: `checkbox-${string}-append`, __VLS_10: {
|
|
5
|
+
option: import("@/components/CheckboxInput.vue").CheckboxOption;
|
|
6
|
+
}, __VLS_37: `checkbox-${string}-append`, __VLS_38: {
|
|
5
7
|
option: {
|
|
6
8
|
label: string;
|
|
7
9
|
value: string;
|
|
8
10
|
};
|
|
9
11
|
};
|
|
10
12
|
type __VLS_Slots = {} & {
|
|
11
|
-
[K in NonNullable<typeof
|
|
13
|
+
[K in NonNullable<typeof __VLS_9>]?: (props: typeof __VLS_10) => any;
|
|
14
|
+
} & {
|
|
15
|
+
[K in NonNullable<typeof __VLS_37>]?: (props: typeof __VLS_38) => any;
|
|
12
16
|
};
|
|
13
17
|
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
14
18
|
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_10: `checkbox-${any}-append`, __VLS_11: {
|
|
5
5
|
option: CheckboxOption;
|
|
6
6
|
};
|
|
7
7
|
type __VLS_Slots = {} & {
|
|
8
|
-
[K in NonNullable<typeof
|
|
8
|
+
[K in NonNullable<typeof __VLS_10>]?: (props: typeof __VLS_11) => any;
|
|
9
9
|
};
|
|
10
10
|
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
11
11
|
modelValue: {
|
|
@@ -46,8 +46,6 @@ 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;
|
|
51
49
|
};
|
|
52
50
|
emptyState: {
|
|
53
51
|
title: string;
|
|
@@ -69,7 +67,6 @@ export declare const i18nMessages: {
|
|
|
69
67
|
emailAddress: string;
|
|
70
68
|
};
|
|
71
69
|
permissions: {
|
|
72
|
-
title: string;
|
|
73
70
|
manageable: string;
|
|
74
71
|
search: string;
|
|
75
72
|
general: string;
|
|
@@ -80,17 +77,12 @@ export declare const i18nMessages: {
|
|
|
80
77
|
includedNewRole: string;
|
|
81
78
|
roles: string;
|
|
82
79
|
inherited: string;
|
|
83
|
-
allowedCount: string;
|
|
84
|
-
columnName: string;
|
|
85
|
-
columnManage: string;
|
|
86
80
|
};
|
|
87
81
|
masterUser: {
|
|
88
82
|
title: string;
|
|
89
83
|
passcode: string;
|
|
90
84
|
passcodeRequired: string;
|
|
91
85
|
sublabel: string;
|
|
92
|
-
assignmentSection: string;
|
|
93
|
-
addAnother: string;
|
|
94
86
|
code: string;
|
|
95
87
|
name: string;
|
|
96
88
|
role: string;
|
|
@@ -269,8 +261,6 @@ export declare const i18nMessages: {
|
|
|
269
261
|
filter: {
|
|
270
262
|
permission_placeholder: string;
|
|
271
263
|
selected_permission_prefix: string;
|
|
272
|
-
assigned_role_placeholder: string;
|
|
273
|
-
selected_assigned_role_prefix: string;
|
|
274
264
|
};
|
|
275
265
|
emptyState: {
|
|
276
266
|
title: string;
|
|
@@ -292,7 +282,6 @@ export declare const i18nMessages: {
|
|
|
292
282
|
emailAddress: string;
|
|
293
283
|
};
|
|
294
284
|
permissions: {
|
|
295
|
-
title: string;
|
|
296
285
|
manageable: string;
|
|
297
286
|
search: string;
|
|
298
287
|
general: string;
|
|
@@ -303,17 +292,12 @@ export declare const i18nMessages: {
|
|
|
303
292
|
includedNewRole: string;
|
|
304
293
|
roles: string;
|
|
305
294
|
inherited: string;
|
|
306
|
-
allowedCount: string;
|
|
307
|
-
columnName: string;
|
|
308
|
-
columnManage: string;
|
|
309
295
|
};
|
|
310
296
|
masterUser: {
|
|
311
297
|
title: string;
|
|
312
298
|
passcode: string;
|
|
313
299
|
passcodeRequired: string;
|
|
314
300
|
sublabel: string;
|
|
315
|
-
assignmentSection: string;
|
|
316
|
-
addAnother: string;
|
|
317
301
|
code: string;
|
|
318
302
|
name: string;
|
|
319
303
|
role: string;
|
|
@@ -492,8 +476,6 @@ export declare const i18nMessages: {
|
|
|
492
476
|
filter: {
|
|
493
477
|
permission_placeholder: string;
|
|
494
478
|
selected_permission_prefix: string;
|
|
495
|
-
assigned_role_placeholder: string;
|
|
496
|
-
selected_assigned_role_prefix: string;
|
|
497
479
|
};
|
|
498
480
|
emptyState: {
|
|
499
481
|
title: string;
|
|
@@ -515,7 +497,6 @@ export declare const i18nMessages: {
|
|
|
515
497
|
emailAddress: string;
|
|
516
498
|
};
|
|
517
499
|
permissions: {
|
|
518
|
-
title: string;
|
|
519
500
|
manageable: string;
|
|
520
501
|
search: string;
|
|
521
502
|
general: string;
|
|
@@ -526,17 +507,12 @@ export declare const i18nMessages: {
|
|
|
526
507
|
includedNewRole: string;
|
|
527
508
|
roles: string;
|
|
528
509
|
inherited: string;
|
|
529
|
-
allowedCount: string;
|
|
530
|
-
columnName: string;
|
|
531
|
-
columnManage: string;
|
|
532
510
|
};
|
|
533
511
|
masterUser: {
|
|
534
512
|
title: string;
|
|
535
513
|
passcode: string;
|
|
536
514
|
passcodeRequired: string;
|
|
537
515
|
sublabel: string;
|
|
538
|
-
assignmentSection: string;
|
|
539
|
-
addAnother: string;
|
|
540
516
|
code: string;
|
|
541
517
|
name: string;
|
|
542
518
|
role: string;
|
|
@@ -715,8 +691,6 @@ export declare const i18nMessages: {
|
|
|
715
691
|
filter: {
|
|
716
692
|
permission_placeholder: string;
|
|
717
693
|
selected_permission_prefix: string;
|
|
718
|
-
assigned_role_placeholder: string;
|
|
719
|
-
selected_assigned_role_prefix: string;
|
|
720
694
|
};
|
|
721
695
|
emptyState: {
|
|
722
696
|
title: string;
|
|
@@ -738,7 +712,6 @@ export declare const i18nMessages: {
|
|
|
738
712
|
emailAddress: string;
|
|
739
713
|
};
|
|
740
714
|
permissions: {
|
|
741
|
-
title: string;
|
|
742
715
|
manageable: string;
|
|
743
716
|
search: string;
|
|
744
717
|
general: string;
|
|
@@ -749,17 +722,12 @@ export declare const i18nMessages: {
|
|
|
749
722
|
includedNewRole: string;
|
|
750
723
|
roles: string;
|
|
751
724
|
inherited: string;
|
|
752
|
-
allowedCount: string;
|
|
753
|
-
columnName: string;
|
|
754
|
-
columnManage: string;
|
|
755
725
|
};
|
|
756
726
|
masterUser: {
|
|
757
727
|
title: string;
|
|
758
728
|
passcode: string;
|
|
759
729
|
passcodeRequired: string;
|
|
760
730
|
sublabel: string;
|
|
761
|
-
assignmentSection: string;
|
|
762
|
-
addAnother: string;
|
|
763
731
|
code: string;
|
|
764
732
|
name: string;
|
|
765
733
|
role: string;
|
|
@@ -11,7 +11,6 @@ export interface TeamDialogData {
|
|
|
11
11
|
permissionSetIds: string[];
|
|
12
12
|
posUser?: IFdtoPermissionPosUser;
|
|
13
13
|
}
|
|
14
|
-
declare function isModified(): boolean;
|
|
15
14
|
declare function readFormData(): IFdtoCreatePortalUserReq;
|
|
16
15
|
declare function validate(): Promise<IFdtoCreatePortalUserReq | null>;
|
|
17
16
|
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -22,14 +21,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
22
21
|
type: StringConstructor;
|
|
23
22
|
default: string;
|
|
24
23
|
};
|
|
25
|
-
|
|
24
|
+
isLoadingMasterUser: {
|
|
26
25
|
type: BooleanConstructor;
|
|
27
26
|
default: boolean;
|
|
28
27
|
};
|
|
29
28
|
}>, {
|
|
30
29
|
readFormData: typeof readFormData;
|
|
31
30
|
validate: typeof validate;
|
|
32
|
-
isModified: typeof isModified;
|
|
33
31
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
34
32
|
initialValue: {
|
|
35
33
|
type: PropType<TeamDialogData>;
|
|
@@ -38,12 +36,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
38
36
|
type: StringConstructor;
|
|
39
37
|
default: string;
|
|
40
38
|
};
|
|
41
|
-
|
|
39
|
+
isLoadingMasterUser: {
|
|
42
40
|
type: BooleanConstructor;
|
|
43
41
|
default: boolean;
|
|
44
42
|
};
|
|
45
43
|
}>> & Readonly<{}>, {
|
|
46
|
-
loading: boolean;
|
|
47
44
|
roleErrorMessage: string;
|
|
45
|
+
isLoadingMasterUser: boolean;
|
|
48
46
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
49
47
|
export default _default;
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.employee-list-table[data-v-
|
|
1
|
+
.employee-list-table[data-v-48cb3903] [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}.team-member-list-table[data-v-d77998ca] [class~=gap-24]>div:first-child{display:none}.audit-log-action-label{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::-webkit-scrollbar{display:none}.audit-log-operation-label-detail{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::-webkit-scrollbar{display:none}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { d as i } from "./dayjs.min-
|
|
1
|
+
import { d as i } from "./dayjs.min-RrLy0N6G.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-BQA73VxD.js";
|
|
5
5
|
import { i as f, f as g } from "./utils-BZkjJbju.js";
|
|
6
6
|
const u = {
|
|
7
7
|
async readTimesheets(t, e) {
|