@gusto/embedded-react-sdk 0.46.0 → 0.46.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/CHANGELOG.md +50 -0
- package/dist/components/Common/DataView/DataCards/DataCards.d.ts +2 -1
- package/dist/components/Common/DataView/DataCards/DataCards.js +14 -13
- package/dist/components/Common/DataView/DataCards/DataCards.js.map +1 -1
- package/dist/components/Common/DataView/DataTable/DataTable.d.ts +2 -1
- package/dist/components/Common/DataView/DataTable/DataTable.js +51 -50
- package/dist/components/Common/DataView/DataTable/DataTable.js.map +1 -1
- package/dist/components/Common/DataView/DataView.d.ts +1 -0
- package/dist/components/Common/DataView/DataView.js.map +1 -1
- package/dist/components/Common/DataView/useDataView.d.ts +8 -1
- package/dist/components/Common/DataView/useDataView.js +20 -17
- package/dist/components/Common/DataView/useDataView.js.map +1 -1
- package/dist/components/Employee/Compensation/management/AddAnotherJob/AddAnotherJob.d.ts +9 -0
- package/dist/components/Employee/Compensation/management/AddAnotherJob/AddAnotherJob.js +76 -0
- package/dist/components/Employee/Compensation/management/AddAnotherJob/AddAnotherJob.js.map +1 -0
- package/dist/components/Employee/Compensation/management/AddAnotherJob/AddAnotherJob.module.scss.js +8 -0
- package/dist/components/Employee/Compensation/management/AddAnotherJob/AddAnotherJob.module.scss.js.map +1 -0
- package/dist/components/Employee/Compensation/management/EditCompensation/EditCompensation.js +57 -202
- package/dist/components/Employee/Compensation/management/EditCompensation/EditCompensation.js.map +1 -1
- package/dist/components/Employee/Compensation/management/EditPendingCompensation/EditPendingCompensation.d.ts +25 -0
- package/dist/components/Employee/Compensation/management/EditPendingCompensation/EditPendingCompensation.js +81 -0
- package/dist/components/Employee/Compensation/management/EditPendingCompensation/EditPendingCompensation.js.map +1 -0
- package/dist/components/Employee/Compensation/management/EditPendingCompensation/EditPendingCompensation.module.scss.js +8 -0
- package/dist/components/Employee/Compensation/management/EditPendingCompensation/EditPendingCompensation.module.scss.js.map +1 -0
- package/dist/components/Employee/Compensation/management/ManagementCompensationFormBody.d.ts +18 -0
- package/dist/components/Employee/Compensation/management/ManagementCompensationFormBody.js +171 -0
- package/dist/components/Employee/Compensation/management/ManagementCompensationFormBody.js.map +1 -0
- package/dist/components/Employee/Compensation/management/index.d.ts +3 -0
- package/dist/components/Employee/Compensation/onboarding/EditCompensation/EditCompensation.d.ts +6 -1
- package/dist/components/Employee/Compensation/onboarding/EditCompensation/EditCompensation.js +67 -209
- package/dist/components/Employee/Compensation/onboarding/EditCompensation/EditCompensation.js.map +1 -1
- package/dist/components/Employee/Compensation/shared/AddCompensationFormBody.d.ts +18 -0
- package/dist/components/Employee/Compensation/shared/AddCompensationFormBody.js +169 -0
- package/dist/components/Employee/Compensation/shared/AddCompensationFormBody.js.map +1 -0
- package/dist/components/Employee/Compensation/shared/useCompensationForm/compensationSchema.d.ts +16 -0
- package/dist/components/Employee/Compensation/shared/useCompensationForm/compensationSchema.js +36 -30
- package/dist/components/Employee/Compensation/shared/useCompensationForm/compensationSchema.js.map +1 -1
- package/dist/components/Employee/Compensation/shared/useCompensationForm/fields.d.ts +1 -1
- package/dist/components/Employee/Compensation/shared/useCompensationForm/fields.js.map +1 -1
- package/dist/components/Employee/Compensation/shared/useCompensationForm/useCompensationForm.js +213 -191
- package/dist/components/Employee/Compensation/shared/useCompensationForm/useCompensationForm.js.map +1 -1
- package/dist/components/Employee/Dashboard/Dashboard.js +65 -53
- package/dist/components/Employee/Dashboard/Dashboard.js.map +1 -1
- package/dist/components/Employee/Dashboard/DashboardComponents.d.ts +3 -3
- package/dist/components/Employee/Dashboard/DashboardComponents.js +138 -101
- package/dist/components/Employee/Dashboard/DashboardComponents.js.map +1 -1
- package/dist/components/Employee/Dashboard/JobAndPayView.js +340 -320
- package/dist/components/Employee/Dashboard/JobAndPayView.js.map +1 -1
- package/dist/components/Employee/Dashboard/JobAndPayView.module.scss.js +5 -3
- package/dist/components/Employee/Dashboard/JobAndPayView.module.scss.js.map +1 -1
- package/dist/components/Employee/Dashboard/dashboardStateMachine.js +147 -148
- package/dist/components/Employee/Dashboard/dashboardStateMachine.js.map +1 -1
- package/dist/components/Employee/Dashboard/getPendingCompensationChanges.d.ts +6 -0
- package/dist/components/Employee/Dashboard/getPendingCompensationChanges.js +13 -12
- package/dist/components/Employee/Dashboard/getPendingCompensationChanges.js.map +1 -1
- package/dist/components/Employee/Dashboard/hooks/useEmployeeCompensation.d.ts +2 -2
- package/dist/components/Employee/Dashboard/hooks/useEmployeeCompensation.js +34 -35
- package/dist/components/Employee/Dashboard/hooks/useEmployeeCompensation.js.map +1 -1
- package/dist/components/Employee/EmployeeList/management/ManagementEmployeeList.js +37 -40
- package/dist/components/Employee/EmployeeList/management/ManagementEmployeeList.js.map +1 -1
- package/dist/components/Employee/EmployeeList/management/ManagementEmployeeListView.d.ts +1 -2
- package/dist/components/Employee/EmployeeList/management/ManagementEmployeeListView.js +64 -71
- package/dist/components/Employee/EmployeeList/management/ManagementEmployeeListView.js.map +1 -1
- package/dist/components/Employee/EmployeeListFlow/EmployeeListFlow.d.ts +2 -0
- package/dist/components/Employee/EmployeeListFlow/EmployeeListFlow.js +25 -0
- package/dist/components/Employee/EmployeeListFlow/EmployeeListFlow.js.map +1 -0
- package/dist/components/Employee/EmployeeListFlow/EmployeeListFlowComponents.d.ts +13 -0
- package/dist/components/Employee/EmployeeListFlow/EmployeeListFlowComponents.js +37 -0
- package/dist/components/Employee/EmployeeListFlow/EmployeeListFlowComponents.js.map +1 -0
- package/dist/components/Employee/EmployeeListFlow/employeeListStateMachine.d.ts +6 -0
- package/dist/components/Employee/EmployeeListFlow/employeeListStateMachine.js +69 -0
- package/dist/components/Employee/EmployeeListFlow/employeeListStateMachine.js.map +1 -0
- package/dist/components/Employee/EmployeeListFlow/index.d.ts +3 -0
- package/dist/components/Employee/HomeAddress/management/HomeAddress.js +15 -12
- package/dist/components/Employee/HomeAddress/management/HomeAddress.js.map +1 -1
- package/dist/components/Employee/HomeAddress/management/HomeAddressView.d.ts +2 -1
- package/dist/components/Employee/HomeAddress/management/HomeAddressView.js +86 -83
- package/dist/components/Employee/HomeAddress/management/HomeAddressView.js.map +1 -1
- package/dist/components/Employee/WorkAddress/management/WorkAddress.js +14 -11
- package/dist/components/Employee/WorkAddress/management/WorkAddress.js.map +1 -1
- package/dist/components/Employee/WorkAddress/management/WorkAddressView.d.ts +2 -1
- package/dist/components/Employee/WorkAddress/management/WorkAddressView.js +92 -89
- package/dist/components/Employee/WorkAddress/management/WorkAddressView.js.map +1 -1
- package/dist/components/Employee/exports/employeeManagement.d.ts +2 -0
- package/dist/components/Employee/exports/employeeManagement.js +18 -16
- package/dist/components/Employee/exports/employeeManagement.js.map +1 -1
- package/dist/components/Employee/index.d.ts +2 -0
- package/dist/components/Employee/index.js +32 -30
- package/dist/components/Employee/index.js.map +1 -1
- package/dist/components/Flow/FlowHeader.js +34 -31
- package/dist/components/Flow/FlowHeader.js.map +1 -1
- package/dist/components/Flow/useFlow.d.ts +12 -0
- package/dist/components/Flow/useFlow.js.map +1 -1
- package/dist/components/TimeOff/PolicyList/PolicyList.js +92 -69
- package/dist/components/TimeOff/PolicyList/PolicyList.js.map +1 -1
- package/dist/components/TimeOff/PolicyList/PolicyListPresentation.js +23 -23
- package/dist/components/TimeOff/PolicyList/PolicyListPresentation.js.map +1 -1
- package/dist/components/TimeOff/TimeOffFlow/TimeOffFlowComponents.d.ts +1 -1
- package/dist/components/TimeOff/TimeOffFlow/TimeOffFlowComponents.js.map +1 -1
- package/dist/components/TimeOff/TimeOffFlow/timeOffStateMachine.js +73 -56
- package/dist/components/TimeOff/TimeOffFlow/timeOffStateMachine.js.map +1 -1
- package/dist/components/TimeOff/TimeOffManagement/PolicyConfigurationForm/PolicyConfigurationForm.js +58 -58
- package/dist/components/TimeOff/TimeOffManagement/PolicyConfigurationForm/PolicyConfigurationForm.js.map +1 -1
- package/dist/components/TimeOff/TimeOffManagement/PolicyConfigurationForm/PolicyConfigurationFormPresentation.d.ts +1 -1
- package/dist/components/TimeOff/TimeOffManagement/PolicyConfigurationForm/PolicyConfigurationFormPresentation.js +91 -87
- package/dist/components/TimeOff/TimeOffManagement/PolicyConfigurationForm/PolicyConfigurationFormPresentation.js.map +1 -1
- package/dist/components/TimeOff/TimeOffManagement/PolicyConfigurationForm/PolicyConfigurationFormTypes.d.ts +2 -0
- package/dist/components/TimeOff/TimeOffManagement/SelectEmployees/SelectEmployeesHoliday.js +91 -124
- package/dist/components/TimeOff/TimeOffManagement/SelectEmployees/SelectEmployeesHoliday.js.map +1 -1
- package/dist/components/TimeOff/TimeOffManagement/SelectEmployees/SelectEmployeesPresentation.d.ts +1 -1
- package/dist/components/TimeOff/TimeOffManagement/SelectEmployees/SelectEmployeesPresentation.js +72 -87
- package/dist/components/TimeOff/TimeOffManagement/SelectEmployees/SelectEmployeesPresentation.js.map +1 -1
- package/dist/components/TimeOff/TimeOffManagement/SelectEmployees/SelectEmployeesPresentationTypes.d.ts +1 -6
- package/dist/components/TimeOff/TimeOffManagement/SelectEmployees/SelectEmployeesTimeOff.js +160 -220
- package/dist/components/TimeOff/TimeOffManagement/SelectEmployees/SelectEmployeesTimeOff.js.map +1 -1
- package/dist/components/TimeOff/TimeOffManagement/SelectEmployees/useSelectEmployeesData.d.ts +7 -3
- package/dist/components/TimeOff/TimeOffManagement/SelectEmployees/useSelectEmployeesData.js +77 -54
- package/dist/components/TimeOff/TimeOffManagement/SelectEmployees/useSelectEmployeesData.js.map +1 -1
- package/dist/components/TimeOff/TimeOffManagement/SelectEmployees/useSelectEmployeesData.test.d.ts +1 -0
- package/dist/components/TimeOff/TimeOffPolicyDetail/EditEmployeeBalanceModal.js +12 -11
- package/dist/components/TimeOff/TimeOffPolicyDetail/EditEmployeeBalanceModal.js.map +1 -1
- package/dist/components/TimeOff/TimeOffPolicyDetail/TimeOffPolicyDetail.js +177 -147
- package/dist/components/TimeOff/TimeOffPolicyDetail/TimeOffPolicyDetail.js.map +1 -1
- package/dist/components/TimeOff/shared/EmployeeTable/EmployeeTable.d.ts +1 -1
- package/dist/components/TimeOff/shared/EmployeeTable/EmployeeTable.js +38 -36
- package/dist/components/TimeOff/shared/EmployeeTable/EmployeeTable.js.map +1 -1
- package/dist/components/TimeOff/shared/EmployeeTable/EmployeeTableTypes.d.ts +2 -0
- package/dist/i18n/en/Company.TimeOff.SelectEmployees.json.js +10 -10
- package/dist/i18n/en/Company.TimeOff.TimeOffPolicies.json.js +17 -15
- package/dist/i18n/en/Company.TimeOff.TimeOffPolicies.json.js.map +1 -1
- package/dist/i18n/en/Company.TimeOff.TimeOffPolicyDetails.json.js +9 -9
- package/dist/i18n/en/Employee.Compensation.json.js +64 -56
- package/dist/i18n/en/Employee.Compensation.json.js.map +1 -1
- package/dist/i18n/en/Employee.Dashboard.json.js +26 -24
- package/dist/i18n/en/Employee.Dashboard.json.js.map +1 -1
- package/dist/i18n/en/Employee.HomeAddress.Management.json.js +12 -10
- package/dist/i18n/en/Employee.HomeAddress.Management.json.js.map +1 -1
- package/dist/i18n/en/Employee.ManagementEmployeeList.json.js +32 -30
- package/dist/i18n/en/Employee.ManagementEmployeeList.json.js.map +1 -1
- package/dist/i18n/en/Employee.WorkAddress.Management.json.js +16 -14
- package/dist/i18n/en/Employee.WorkAddress.Management.json.js.map +1 -1
- package/dist/i18n/en/common.json.d.ts +14 -0
- package/dist/partner-hook-utils/form/fields/DatePickerHookField.js +33 -32
- package/dist/partner-hook-utils/form/fields/DatePickerHookField.js.map +1 -1
- package/dist/partner-hook-utils/types.d.ts +4 -0
- package/dist/shared/constants.d.ts +2 -0
- package/dist/shared/constants.js +13 -12
- package/dist/shared/constants.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/types/i18next.d.ts +26 -12
- package/docs/reference/endpoint-inventory.json +24 -8
- package/package.json +1 -1
package/dist/types/i18next.d.ts
CHANGED
|
@@ -579,18 +579,10 @@ export interface CompanyTimeOffSelectEmployees{
|
|
|
579
579
|
"startingBalanceColumn":string;
|
|
580
580
|
"backCta":string;
|
|
581
581
|
"continueCta":string;
|
|
582
|
+
"emptyState":string;
|
|
582
583
|
"errors":{
|
|
583
|
-
"removeEmployeesFailed":string;
|
|
584
584
|
"completePolicyFailed":string;
|
|
585
585
|
};
|
|
586
|
-
"removeConfirmDialog":{
|
|
587
|
-
"title_one":string;
|
|
588
|
-
"title_other":string;
|
|
589
|
-
"description_one":string;
|
|
590
|
-
"description_other":string;
|
|
591
|
-
"confirmCta":string;
|
|
592
|
-
"cancelCta":string;
|
|
593
|
-
};
|
|
594
586
|
"addConfirmDialog":{
|
|
595
587
|
"title_one":string;
|
|
596
588
|
"title_other":string;
|
|
@@ -656,6 +648,10 @@ export interface CompanyTimeOffTimeOffPolicies{
|
|
|
656
648
|
"holidayDeleted":string;
|
|
657
649
|
"invalidPolicyType":string;
|
|
658
650
|
};
|
|
651
|
+
"errors":{
|
|
652
|
+
"pendingRequestsBlockDeletion":string;
|
|
653
|
+
"deleteFailed":string;
|
|
654
|
+
};
|
|
659
655
|
};
|
|
660
656
|
export interface CompanyTimeOffTimeOffPolicyDetails{
|
|
661
657
|
"breadcrumb":string;
|
|
@@ -753,6 +749,10 @@ export interface CompanyTimeOffTimeOffPolicyDetails{
|
|
|
753
749
|
"hoursUnit":string;
|
|
754
750
|
"cancelCta":string;
|
|
755
751
|
"updateCta":string;
|
|
752
|
+
"errors":{
|
|
753
|
+
"balanceExceedsMax":string;
|
|
754
|
+
"updateFailed":string;
|
|
755
|
+
};
|
|
756
756
|
};
|
|
757
757
|
"removeEmployeeModal":{
|
|
758
758
|
"title":string;
|
|
@@ -1339,6 +1339,7 @@ export interface EmployeeBankAccount{
|
|
|
1339
1339
|
};
|
|
1340
1340
|
export interface EmployeeCompensation{
|
|
1341
1341
|
"addAnotherJobCta":string;
|
|
1342
|
+
"addAnotherJobTitle":string;
|
|
1342
1343
|
"adjustForMinimumWage":string;
|
|
1343
1344
|
"adjustForMinimumWageDescription":string;
|
|
1344
1345
|
"minimumWageLabel":string;
|
|
@@ -1377,6 +1378,9 @@ export interface EmployeeCompensation{
|
|
|
1377
1378
|
"Week":string;
|
|
1378
1379
|
"Year":string;
|
|
1379
1380
|
};
|
|
1381
|
+
"effectiveDate":string;
|
|
1382
|
+
"effectiveDateDescription":string;
|
|
1383
|
+
"hireDate":string;
|
|
1380
1384
|
"saveNewJobCta":string;
|
|
1381
1385
|
"submitCta":string;
|
|
1382
1386
|
"title":string;
|
|
@@ -1395,11 +1399,14 @@ export interface EmployeeCompensation{
|
|
|
1395
1399
|
"Year":string;
|
|
1396
1400
|
"Paycheck":string;
|
|
1397
1401
|
};
|
|
1402
|
+
"hireDateLabel":string;
|
|
1398
1403
|
"twoPercentShareholderLabel":string;
|
|
1399
1404
|
"saveCta":string;
|
|
1400
|
-
"scheduledClassificationChangeNotification":string;
|
|
1401
1405
|
};
|
|
1402
1406
|
"validations":{
|
|
1407
|
+
"effectiveDate":string;
|
|
1408
|
+
"effectiveDateBeforeHire":string;
|
|
1409
|
+
"hireDate":string;
|
|
1403
1410
|
"classificationChangeNotification":string;
|
|
1404
1411
|
"exemptThreshold":string;
|
|
1405
1412
|
"paymentUnit":string;
|
|
@@ -1409,8 +1416,7 @@ export interface EmployeeCompensation{
|
|
|
1409
1416
|
"title":string;
|
|
1410
1417
|
"minimumWage":string;
|
|
1411
1418
|
"stateWcClassCode":string;
|
|
1412
|
-
"
|
|
1413
|
-
"effectiveDateBeforeHire":string;
|
|
1419
|
+
"effectiveDateBeforeMin":string;
|
|
1414
1420
|
"jobTitleSentence":string;
|
|
1415
1421
|
};
|
|
1416
1422
|
"stateWcCoveredLabel":string;
|
|
@@ -1425,6 +1431,7 @@ export interface EmployeeCompensation{
|
|
|
1425
1431
|
};
|
|
1426
1432
|
export interface EmployeeDashboard{
|
|
1427
1433
|
"title":string;
|
|
1434
|
+
"employeeRoleLabel":string;
|
|
1428
1435
|
"tabsLabel":string;
|
|
1429
1436
|
"tabs":{
|
|
1430
1437
|
"basicDetails":string;
|
|
@@ -1475,7 +1482,9 @@ export interface EmployeeDashboard{
|
|
|
1475
1482
|
"jobTitle":string;
|
|
1476
1483
|
"payType":string;
|
|
1477
1484
|
"effectiveDate":string;
|
|
1485
|
+
"status":string;
|
|
1478
1486
|
};
|
|
1487
|
+
"pendingStatus":string;
|
|
1479
1488
|
"deleteJobDialog":{
|
|
1480
1489
|
"title":string;
|
|
1481
1490
|
"description":string;
|
|
@@ -1610,11 +1619,13 @@ export interface EmployeeDashboard{
|
|
|
1610
1619
|
"deductionAdded":string;
|
|
1611
1620
|
"deductionUpdated":string;
|
|
1612
1621
|
"deductionDeleted":string;
|
|
1622
|
+
"jobAdded":string;
|
|
1613
1623
|
};
|
|
1614
1624
|
"compensationFlow":{
|
|
1615
1625
|
"addJobTitle":string;
|
|
1616
1626
|
"editTitle":string;
|
|
1617
1627
|
"addAnotherJobTitle":string;
|
|
1628
|
+
"saveCta":string;
|
|
1618
1629
|
};
|
|
1619
1630
|
};
|
|
1620
1631
|
export interface EmployeeDeductions{
|
|
@@ -1927,6 +1938,7 @@ export interface EmployeeHomeAddressManagement{
|
|
|
1927
1938
|
"startDateHelper":string;
|
|
1928
1939
|
"submitCta":string;
|
|
1929
1940
|
"cancelCta":string;
|
|
1941
|
+
"backCta":string;
|
|
1930
1942
|
"deleteModalTitle":string;
|
|
1931
1943
|
"deleteModalDescription":string;
|
|
1932
1944
|
"deleteModalConfirmCta":string;
|
|
@@ -2022,6 +2034,7 @@ export interface EmployeeLanding{
|
|
|
2022
2034
|
export interface EmployeeManagementEmployeeList{
|
|
2023
2035
|
"title":string;
|
|
2024
2036
|
"addEmployeeCta":string;
|
|
2037
|
+
"backToListCta":string;
|
|
2025
2038
|
"tabsLabel":string;
|
|
2026
2039
|
"tabs":{
|
|
2027
2040
|
"active":string;
|
|
@@ -2416,6 +2429,7 @@ export interface EmployeeWorkAddressManagement{
|
|
|
2416
2429
|
};
|
|
2417
2430
|
"submitCta":string;
|
|
2418
2431
|
"cancelCta":string;
|
|
2432
|
+
"backCta":string;
|
|
2419
2433
|
"deleteModalTitle":string;
|
|
2420
2434
|
"deleteModalDescription":string;
|
|
2421
2435
|
"deleteModalConfirmCta":string;
|
|
@@ -837,6 +837,10 @@
|
|
|
837
837
|
"method": "GET",
|
|
838
838
|
"path": "/v1/employees/:employeeId/home_addresses"
|
|
839
839
|
},
|
|
840
|
+
{
|
|
841
|
+
"method": "GET",
|
|
842
|
+
"path": "/v1/employees/:employeeId/jobs"
|
|
843
|
+
},
|
|
840
844
|
{
|
|
841
845
|
"method": "GET",
|
|
842
846
|
"path": "/v1/employees/:employeeId/pay_stubs"
|
|
@@ -1517,10 +1521,6 @@
|
|
|
1517
1521
|
{
|
|
1518
1522
|
"method": "PUT",
|
|
1519
1523
|
"path": "/v1/time_off_policies/:timeOffPolicyUuid/add_employees"
|
|
1520
|
-
},
|
|
1521
|
-
{
|
|
1522
|
-
"method": "PUT",
|
|
1523
|
-
"path": "/v1/time_off_policies/:timeOffPolicyUuid/remove_employees"
|
|
1524
1524
|
}
|
|
1525
1525
|
],
|
|
1526
1526
|
"variables": [
|
|
@@ -1560,10 +1560,6 @@
|
|
|
1560
1560
|
{
|
|
1561
1561
|
"method": "PUT",
|
|
1562
1562
|
"path": "/v1/companies/:companyUuid/holiday_pay_policy/add"
|
|
1563
|
-
},
|
|
1564
|
-
{
|
|
1565
|
-
"method": "PUT",
|
|
1566
|
-
"path": "/v1/companies/:companyUuid/holiday_pay_policy/remove"
|
|
1567
1563
|
}
|
|
1568
1564
|
],
|
|
1569
1565
|
"variables": [
|
|
@@ -1990,6 +1986,10 @@
|
|
|
1990
1986
|
"method": "GET",
|
|
1991
1987
|
"path": "/v1/employees/:employeeId/home_addresses"
|
|
1992
1988
|
},
|
|
1989
|
+
{
|
|
1990
|
+
"method": "GET",
|
|
1991
|
+
"path": "/v1/employees/:employeeId/jobs"
|
|
1992
|
+
},
|
|
1993
1993
|
{
|
|
1994
1994
|
"method": "GET",
|
|
1995
1995
|
"path": "/v1/employees/:employeeId/pay_stubs"
|
|
@@ -2613,6 +2613,14 @@
|
|
|
2613
2613
|
"EmployeeOnboarding.PaymentMethod"
|
|
2614
2614
|
]
|
|
2615
2615
|
},
|
|
2616
|
+
"Employee.EmployeeListFlow": {
|
|
2617
|
+
"blocks": [
|
|
2618
|
+
"Employee.DashboardFlow",
|
|
2619
|
+
"Employee.OnboardingFlow",
|
|
2620
|
+
"Employee.TerminationFlow",
|
|
2621
|
+
"EmployeeManagement.EmployeeList"
|
|
2622
|
+
]
|
|
2623
|
+
},
|
|
2616
2624
|
"Employee.OnboardingFlow": {
|
|
2617
2625
|
"blocks": [
|
|
2618
2626
|
"Employee.Compensation",
|
|
@@ -2659,6 +2667,14 @@
|
|
|
2659
2667
|
"EmployeeOnboarding.PaymentMethod"
|
|
2660
2668
|
]
|
|
2661
2669
|
},
|
|
2670
|
+
"EmployeeManagement.EmployeeListFlow": {
|
|
2671
|
+
"blocks": [
|
|
2672
|
+
"EmployeeManagement.DashboardFlow",
|
|
2673
|
+
"EmployeeManagement.EmployeeList",
|
|
2674
|
+
"EmployeeManagement.TerminationFlow",
|
|
2675
|
+
"EmployeeOnboarding.OnboardingFlow"
|
|
2676
|
+
]
|
|
2677
|
+
},
|
|
2662
2678
|
"EmployeeManagement.TerminationFlow": {
|
|
2663
2679
|
"blocks": [
|
|
2664
2680
|
"EmployeeManagement.TerminateEmployee",
|