sevago-sso-fe 1.0.93 → 1.0.101
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/common/constant/apps.data.d.ts +52 -0
- package/dist/index.cjs.js +65 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +65 -0
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
|
@@ -257,6 +257,58 @@ export declare const APP_OBJ: {
|
|
|
257
257
|
group: AppGroup;
|
|
258
258
|
color: string;
|
|
259
259
|
};
|
|
260
|
+
TIMEKEEPING: {
|
|
261
|
+
path: {
|
|
262
|
+
local: string;
|
|
263
|
+
develop: string;
|
|
264
|
+
staging: string;
|
|
265
|
+
production: string;
|
|
266
|
+
production_vps: string;
|
|
267
|
+
};
|
|
268
|
+
icon: string;
|
|
269
|
+
content: string;
|
|
270
|
+
group: AppGroup;
|
|
271
|
+
color: string;
|
|
272
|
+
};
|
|
273
|
+
SALARY_CALCULATION: {
|
|
274
|
+
path: {
|
|
275
|
+
local: string;
|
|
276
|
+
develop: string;
|
|
277
|
+
staging: string;
|
|
278
|
+
production: string;
|
|
279
|
+
production_vps: string;
|
|
280
|
+
};
|
|
281
|
+
icon: string;
|
|
282
|
+
content: string;
|
|
283
|
+
group: AppGroup;
|
|
284
|
+
color: string;
|
|
285
|
+
};
|
|
286
|
+
ORDER_MEAL: {
|
|
287
|
+
path: {
|
|
288
|
+
local: string;
|
|
289
|
+
develop: string;
|
|
290
|
+
staging: string;
|
|
291
|
+
production: string;
|
|
292
|
+
production_vps: string;
|
|
293
|
+
};
|
|
294
|
+
icon: string;
|
|
295
|
+
content: string;
|
|
296
|
+
group: AppGroup;
|
|
297
|
+
color: string;
|
|
298
|
+
};
|
|
299
|
+
LEAVE_POLICY: {
|
|
300
|
+
path: {
|
|
301
|
+
local: string;
|
|
302
|
+
develop: string;
|
|
303
|
+
staging: string;
|
|
304
|
+
production: string;
|
|
305
|
+
production_vps: string;
|
|
306
|
+
};
|
|
307
|
+
icon: string;
|
|
308
|
+
content: string;
|
|
309
|
+
group: AppGroup;
|
|
310
|
+
color: string;
|
|
311
|
+
};
|
|
260
312
|
};
|
|
261
313
|
export declare const SIZE_EXTRA_LARGE = 36;
|
|
262
314
|
export type SizeProps = 'extra_small' | 'small' | 'medium' | 'large' | 'extra_large' | 'avatar_group';
|
package/dist/index.cjs.js
CHANGED
|
@@ -386,6 +386,71 @@ const APP_OBJ = {
|
|
|
386
386
|
"Khác"
|
|
387
387
|
/* OTHER */
|
|
388
388
|
]
|
|
389
|
+
},
|
|
390
|
+
// HRM
|
|
391
|
+
TIMEKEEPING: {
|
|
392
|
+
path: {
|
|
393
|
+
local: "http://localhost:3000/dashboard/simple-dashboard",
|
|
394
|
+
develop: "https://dev.hrm-client.sevago.local/dashboard/simple-dashboard",
|
|
395
|
+
staging: "",
|
|
396
|
+
production: "",
|
|
397
|
+
production_vps: ""
|
|
398
|
+
},
|
|
399
|
+
icon: sevagoIcon,
|
|
400
|
+
content: "Chấm công",
|
|
401
|
+
group: "HRM",
|
|
402
|
+
color: APP_GROUP_COLOR[
|
|
403
|
+
"HRM"
|
|
404
|
+
/* HRM */
|
|
405
|
+
]
|
|
406
|
+
},
|
|
407
|
+
SALARY_CALCULATION: {
|
|
408
|
+
path: {
|
|
409
|
+
local: "http://localhost:3000/dashboard/payroll-period",
|
|
410
|
+
develop: "https://dev.hrm-client.sevago.local/dashboard/payroll-period",
|
|
411
|
+
staging: "",
|
|
412
|
+
production: "",
|
|
413
|
+
production_vps: ""
|
|
414
|
+
},
|
|
415
|
+
icon: sevagoIcon,
|
|
416
|
+
content: "Tính lương",
|
|
417
|
+
group: "HRM",
|
|
418
|
+
color: APP_GROUP_COLOR[
|
|
419
|
+
"HRM"
|
|
420
|
+
/* HRM */
|
|
421
|
+
]
|
|
422
|
+
},
|
|
423
|
+
ORDER_MEAL: {
|
|
424
|
+
path: {
|
|
425
|
+
local: "http://localhost:3000/dashboard/meal-dashboard",
|
|
426
|
+
develop: "https://dev.hrm-client.sevago.local/dashboard/meal-dashboard",
|
|
427
|
+
staging: "",
|
|
428
|
+
production: "",
|
|
429
|
+
production_vps: ""
|
|
430
|
+
},
|
|
431
|
+
icon: sevagoIcon,
|
|
432
|
+
content: "Đặt cơm",
|
|
433
|
+
group: "HRM",
|
|
434
|
+
color: APP_GROUP_COLOR[
|
|
435
|
+
"HRM"
|
|
436
|
+
/* HRM */
|
|
437
|
+
]
|
|
438
|
+
},
|
|
439
|
+
LEAVE_POLICY: {
|
|
440
|
+
path: {
|
|
441
|
+
local: "http://localhost:3000/dashboard/maternity-leave",
|
|
442
|
+
develop: "https://dev.hrm-client.sevago.local/dashboard/maternity-leave",
|
|
443
|
+
staging: "",
|
|
444
|
+
production: "",
|
|
445
|
+
production_vps: ""
|
|
446
|
+
},
|
|
447
|
+
icon: sevagoIcon,
|
|
448
|
+
content: "Chế độ nghỉ phép",
|
|
449
|
+
group: "HRM",
|
|
450
|
+
color: APP_GROUP_COLOR[
|
|
451
|
+
"HRM"
|
|
452
|
+
/* HRM */
|
|
453
|
+
]
|
|
389
454
|
}
|
|
390
455
|
};
|
|
391
456
|
const SIZE_LARGE = 32;
|