@gusto/embedded-react-sdk 0.20.0 → 0.22.0
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 +62 -0
- package/README.md +32 -17
- package/dist/UNSTABLE_Hooks.d.ts +1 -0
- package/dist/UNSTABLE_Hooks.js +9 -0
- package/dist/UNSTABLE_Hooks.js.map +1 -0
- package/dist/assets/icons/coins-hand.svg.js +10 -0
- package/dist/assets/icons/coins-hand.svg.js.map +1 -0
- package/dist/assets/icons/icon-file-outline.svg.js +10 -0
- package/dist/assets/icons/icon-file-outline.svg.js.map +1 -0
- package/dist/assets/icons/icon-receipt-outline.svg.js +10 -0
- package/dist/assets/icons/icon-receipt-outline.svg.js.map +1 -0
- package/dist/components/Base/Base.d.ts +19 -4
- package/dist/components/Base/Base.js +67 -61
- package/dist/components/Base/Base.js.map +1 -1
- package/dist/components/Base/index.d.ts +1 -1
- package/dist/components/Base/useBase.d.ts +1 -1
- package/dist/components/Base/useBase.js.map +1 -1
- package/dist/components/Base/useBaseSubmit.d.ts +10 -0
- package/dist/components/Base/useBaseSubmit.js +33 -0
- package/dist/components/Base/useBaseSubmit.js.map +1 -0
- package/dist/components/Common/Fields/CheckboxField/CheckboxField.js.map +1 -1
- package/dist/components/Common/Fields/CheckboxGroupField/CheckboxGroupField.js.map +1 -1
- package/dist/components/Common/Fields/ComboBoxField/ComboBoxField.js.map +1 -1
- package/dist/components/Common/Fields/DatePickerField/DatePickerField.js.map +1 -1
- package/dist/components/Common/Fields/NumberInputField/NumberInputField.js.map +1 -1
- package/dist/components/Common/Fields/RadioGroupField/RadioGroupField.js.map +1 -1
- package/dist/components/Common/Fields/SelectField/SelectField.js.map +1 -1
- package/dist/components/Common/Fields/SwitchField/SwitchField.js.map +1 -1
- package/dist/components/Common/Fields/TextAreaField/TextAreaField.d.ts +5 -0
- package/dist/components/Common/Fields/TextAreaField/TextAreaField.js +34 -0
- package/dist/components/Common/Fields/TextAreaField/TextAreaField.js.map +1 -0
- package/dist/components/Common/Fields/TextAreaField/index.d.ts +3 -0
- package/dist/components/Common/Fields/TextInputField/TextInputField.js.map +1 -1
- package/dist/components/Common/Fieldset/Fieldset.js.map +1 -1
- package/dist/components/Common/FlowBreadcrumbs/FlowBreadcrumbs.js +10 -10
- package/dist/components/Common/FlowBreadcrumbs/FlowBreadcrumbs.js.map +1 -1
- package/dist/components/Common/FlowBreadcrumbs/breadcrumbTransitionHelpers.d.ts +1 -0
- package/dist/components/Common/FlowBreadcrumbs/breadcrumbTransitionHelpers.js +14 -0
- package/dist/components/Common/FlowBreadcrumbs/breadcrumbTransitionHelpers.js.map +1 -0
- package/dist/components/Common/FlowBreadcrumbs/index.d.ts +1 -0
- package/dist/components/Common/SignatureForm/SignatureForm.js +4 -2
- package/dist/components/Common/SignatureForm/SignatureForm.js.map +1 -1
- package/dist/components/Common/SignatureForm/SignatureFormActions.js +8 -6
- package/dist/components/Common/SignatureForm/SignatureFormActions.js.map +1 -1
- package/dist/components/Common/SignatureForm/SignatureFormFields.js +14 -11
- package/dist/components/Common/SignatureForm/SignatureFormFields.js.map +1 -1
- package/dist/components/Common/UI/Alert/Alert.js +23 -22
- package/dist/components/Common/UI/Alert/Alert.js.map +1 -1
- package/dist/components/Common/UI/Alert/AlertTypes.d.ts +4 -0
- package/dist/components/Common/UI/Alert/AlertTypes.js.map +1 -1
- package/dist/components/Common/UI/Badge/BadgeTypes.js.map +1 -1
- package/dist/components/Common/UI/Banner/BannerTypes.js.map +1 -1
- package/dist/components/Common/UI/Breadcrumbs/Breadcrumbs.js +1 -1
- package/dist/components/Common/UI/Button/ButtonTypes.js.map +1 -1
- package/dist/components/Common/UI/Checkbox/CheckboxTypes.js.map +1 -1
- package/dist/components/Common/UI/CheckboxGroup/CheckboxGroupTypes.js.map +1 -1
- package/dist/components/Common/UI/ComboBox/ComboBox.module.scss.js +1 -1
- package/dist/components/Common/UI/DatePicker/DatePicker.d.ts +1 -1
- package/dist/components/Common/UI/DatePicker/DatePicker.js +38 -37
- package/dist/components/Common/UI/DatePicker/DatePicker.js.map +1 -1
- package/dist/components/Common/UI/DatePicker/DatePicker.module.scss.js +7 -7
- package/dist/components/Common/UI/DatePicker/DatePickerTypes.d.ts +4 -0
- package/dist/components/Common/UI/Input/InputTypes.js.map +1 -1
- package/dist/components/Common/UI/LoadingSpinner/LoadingSpinnerTypes.js.map +1 -1
- package/dist/components/Common/UI/Modal/Modal.module.scss.js +17 -17
- package/dist/components/Common/UI/ProgressBar/ProgressBar.js +4 -4
- package/dist/components/Common/UI/Radio/RadioTypes.js.map +1 -1
- package/dist/components/Common/UI/RadioGroup/RadioGroupTypes.js.map +1 -1
- package/dist/components/Common/UI/Select/Select.d.ts +1 -1
- package/dist/components/Common/UI/Select/Select.js +27 -26
- package/dist/components/Common/UI/Select/Select.js.map +1 -1
- package/dist/components/Common/UI/Select/Select.module.scss.js +6 -6
- package/dist/components/Common/UI/Select/SelectTypes.d.ts +4 -0
- package/dist/components/Common/UI/Switch/SwitchTypes.js.map +1 -1
- package/dist/components/Common/UI/Table/Table.module.scss.js +1 -1
- package/dist/components/Common/UI/Table/TableTypes.js.map +1 -1
- package/dist/components/Common/UI/TextArea/TextArea.d.ts +2 -0
- package/dist/components/Common/UI/TextArea/TextArea.js +79 -0
- package/dist/components/Common/UI/TextArea/TextArea.js.map +1 -0
- package/dist/components/Common/UI/TextArea/TextArea.module.scss.js +12 -0
- package/dist/components/Common/UI/TextArea/TextArea.module.scss.js.map +1 -0
- package/dist/components/Common/UI/TextArea/TextAreaTypes.d.ts +37 -0
- package/dist/components/Common/UI/TextArea/TextAreaTypes.js +9 -0
- package/dist/components/Common/UI/TextArea/TextAreaTypes.js.map +1 -0
- package/dist/components/Common/UI/TextArea/index.d.ts +4 -0
- package/dist/components/Common/UI/TextInput/TextInputTypes.js.map +1 -1
- package/dist/components/Company/AssignSignatory/AssignSignatory.js +7 -5
- package/dist/components/Company/AssignSignatory/AssignSignatory.js.map +1 -1
- package/dist/components/Company/AssignSignatory/AssignSignatorySelection.js +5 -2
- package/dist/components/Company/AssignSignatory/AssignSignatorySelection.js.map +1 -1
- package/dist/components/Company/AssignSignatory/CreateSignatory/Actions.js +4 -2
- package/dist/components/Company/AssignSignatory/CreateSignatory/Actions.js.map +1 -1
- package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatory.js +8 -6
- package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatory.js.map +1 -1
- package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatoryForm.js +14 -13
- package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatoryForm.js.map +1 -1
- package/dist/components/Company/AssignSignatory/CreateSignatory/useCreateSignatory.js +3 -4
- package/dist/components/Company/AssignSignatory/CreateSignatory/useCreateSignatory.js.map +1 -1
- package/dist/components/Company/AssignSignatory/InviteSignatory/Actions.js +4 -2
- package/dist/components/Company/AssignSignatory/InviteSignatory/Actions.js.map +1 -1
- package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatory.js +11 -9
- package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatory.js.map +1 -1
- package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatoryForm.js +9 -8
- package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatoryForm.js.map +1 -1
- package/dist/components/Company/AssignSignatory/InviteSignatory/useInviteSignatory.js +3 -4
- package/dist/components/Company/AssignSignatory/InviteSignatory/useInviteSignatory.js.map +1 -1
- package/dist/components/Company/AssignSignatory/TitleSelect.js +6 -4
- package/dist/components/Company/AssignSignatory/TitleSelect.js.map +1 -1
- package/dist/components/Company/AssignSignatory/useAssignSignatory.js +5 -6
- package/dist/components/Company/AssignSignatory/useAssignSignatory.js.map +1 -1
- package/dist/components/Company/BankAccount/BankAccountForm/Actions.js +10 -9
- package/dist/components/Company/BankAccount/BankAccountForm/Actions.js.map +1 -1
- package/dist/components/Company/BankAccount/BankAccountForm/Form.js +10 -8
- package/dist/components/Company/BankAccount/BankAccountForm/Form.js.map +1 -1
- package/dist/components/Company/BankAccount/BankAccountForm/context.js +3 -4
- package/dist/components/Company/BankAccount/BankAccountForm/context.js.map +1 -1
- package/dist/components/Company/BankAccount/BankAccountList/Actions.js +10 -8
- package/dist/components/Company/BankAccount/BankAccountList/Actions.js.map +1 -1
- package/dist/components/Company/BankAccount/BankAccountVerify/Actions.js +10 -8
- package/dist/components/Company/BankAccount/BankAccountVerify/Actions.js.map +1 -1
- package/dist/components/Company/BankAccount/BankAccountVerify/Form.js +6 -4
- package/dist/components/Company/BankAccount/BankAccountVerify/Form.js.map +1 -1
- package/dist/components/Company/DocumentSigner/DocumentList/Actions.js +4 -2
- package/dist/components/Company/DocumentSigner/DocumentList/Actions.js.map +1 -1
- package/dist/components/Company/DocumentSigner/DocumentList/DocumentList.js +10 -8
- package/dist/components/Company/DocumentSigner/DocumentList/DocumentList.js.map +1 -1
- package/dist/components/Company/DocumentSigner/DocumentList/useDocumentList.js +3 -4
- package/dist/components/Company/DocumentSigner/DocumentList/useDocumentList.js.map +1 -1
- package/dist/components/Company/DocumentSigner/SignatureForm/SignatureForm.js +9 -7
- package/dist/components/Company/DocumentSigner/SignatureForm/SignatureForm.js.map +1 -1
- package/dist/components/Company/DocumentSigner/SignatureForm/useSignatureForm.js +3 -4
- package/dist/components/Company/DocumentSigner/SignatureForm/useSignatureForm.js.map +1 -1
- package/dist/components/Company/FederalTaxes/Actions.js +9 -7
- package/dist/components/Company/FederalTaxes/Actions.js.map +1 -1
- package/dist/components/Company/FederalTaxes/FederalTaxes.js +4 -2
- package/dist/components/Company/FederalTaxes/FederalTaxes.js.map +1 -1
- package/dist/components/Company/FederalTaxes/Form.js +4 -4
- package/dist/components/Company/FederalTaxes/useFederalTaxes.js +8 -9
- package/dist/components/Company/FederalTaxes/useFederalTaxes.js.map +1 -1
- package/dist/components/Company/Industry/Actions.js +9 -7
- package/dist/components/Company/Industry/Actions.js.map +1 -1
- package/dist/components/Company/Industry/Context.js +6 -7
- package/dist/components/Company/Industry/Context.js.map +1 -1
- package/dist/components/Company/Industry/Edit.js +7 -4
- package/dist/components/Company/Industry/Edit.js.map +1 -1
- package/dist/components/Company/Locations/LocationForm/Actions.js +10 -8
- package/dist/components/Company/Locations/LocationForm/Actions.js.map +1 -1
- package/dist/components/Company/Locations/LocationForm/Form.js +6 -4
- package/dist/components/Company/Locations/LocationForm/Form.js.map +1 -1
- package/dist/components/Company/Locations/LocationForm/LocationForm.js +10 -8
- package/dist/components/Company/Locations/LocationForm/LocationForm.js.map +1 -1
- package/dist/components/Company/Locations/LocationForm/useLocationForm.js +3 -4
- package/dist/components/Company/Locations/LocationForm/useLocationForm.js.map +1 -1
- package/dist/components/Company/Locations/LocationsList/Actions.js +8 -6
- package/dist/components/Company/Locations/LocationsList/Actions.js.map +1 -1
- package/dist/components/Company/Locations/LocationsList/List.js +16 -15
- package/dist/components/Company/Locations/LocationsList/List.js.map +1 -1
- package/dist/components/Company/Locations/LocationsList/LocationsList.js +3 -2
- package/dist/components/Company/Locations/LocationsList/LocationsList.js.map +1 -1
- package/dist/components/Company/Locations/LocationsList/useLocationsList.js +3 -4
- package/dist/components/Company/Locations/LocationsList/useLocationsList.js.map +1 -1
- package/dist/components/Company/OnboardingOverview/Completed.js +11 -10
- package/dist/components/Company/OnboardingOverview/Completed.js.map +1 -1
- package/dist/components/Company/OnboardingOverview/MissingRequirements.js +10 -9
- package/dist/components/Company/OnboardingOverview/MissingRequirements.js.map +1 -1
- package/dist/components/Company/OnboardingOverview/OnboardingOverview.js +8 -6
- package/dist/components/Company/OnboardingOverview/OnboardingOverview.js.map +1 -1
- package/dist/components/Company/OnboardingOverview/context.js +3 -4
- package/dist/components/Company/OnboardingOverview/context.js.map +1 -1
- package/dist/components/Company/PaySchedule/PaySchedule.js +3 -2
- package/dist/components/Company/PaySchedule/PaySchedule.js.map +1 -1
- package/dist/components/Company/PaySchedule/_parts/Actions.js +11 -9
- package/dist/components/Company/PaySchedule/_parts/Actions.js.map +1 -1
- package/dist/components/Company/PaySchedule/_parts/Head.js +9 -8
- package/dist/components/Company/PaySchedule/_parts/Head.js.map +1 -1
- package/dist/components/Company/PaySchedule/_parts/List.js +8 -8
- package/dist/components/Company/PaySchedule/usePaySchedule.js +5 -6
- package/dist/components/Company/PaySchedule/usePaySchedule.js.map +1 -1
- package/dist/components/Company/StateTaxes/StateTaxesForm/Actions.js +4 -2
- package/dist/components/Company/StateTaxes/StateTaxesForm/Actions.js.map +1 -1
- package/dist/components/Company/StateTaxes/StateTaxesForm/context.js +3 -4
- package/dist/components/Company/StateTaxes/StateTaxesForm/context.js.map +1 -1
- package/dist/components/Company/StateTaxes/StateTaxesList/Actions.js +4 -2
- package/dist/components/Company/StateTaxes/StateTaxesList/Actions.js.map +1 -1
- package/dist/components/Company/StateTaxes/StateTaxesList/List.js +4 -2
- package/dist/components/Company/StateTaxes/StateTaxesList/List.js.map +1 -1
- package/dist/components/Company/StateTaxes/StateTaxesList/context.js +3 -4
- package/dist/components/Company/StateTaxes/StateTaxesList/context.js.map +1 -1
- package/dist/components/Contractor/Address/Address.js +5 -3
- package/dist/components/Contractor/Address/Address.js.map +1 -1
- package/dist/components/Contractor/Address/Form.js +11 -9
- package/dist/components/Contractor/Address/Form.js.map +1 -1
- package/dist/components/Contractor/Address/useAddress.js +5 -6
- package/dist/components/Contractor/Address/useAddress.js.map +1 -1
- package/dist/components/Contractor/ContractorList/index.js +4 -4
- package/dist/components/Contractor/PaymentMethod/BankAccountForm.js +13 -10
- package/dist/components/Contractor/PaymentMethod/BankAccountForm.js.map +1 -1
- package/dist/components/Contractor/PaymentMethod/PaymentTypeForm.js +5 -3
- package/dist/components/Contractor/PaymentMethod/PaymentTypeForm.js.map +1 -1
- package/dist/components/Contractor/Payments/CreatePayment/CreatePayment.d.ts +7 -0
- package/dist/components/Contractor/Payments/CreatePayment/CreatePayment.js +48 -0
- package/dist/components/Contractor/Payments/CreatePayment/CreatePayment.js.map +1 -0
- package/dist/components/Contractor/Payments/CreatePayment/CreatePaymentPresentation.d.ts +14 -0
- package/dist/components/Contractor/Payments/CreatePayment/CreatePaymentPresentation.js +109 -0
- package/dist/components/Contractor/Payments/CreatePayment/CreatePaymentPresentation.js.map +1 -0
- package/dist/components/Contractor/Payments/Detail/DetailPresentation.d.ts +19 -0
- package/dist/components/Contractor/Payments/EditPayment/EditPayment.d.ts +7 -0
- package/dist/components/Contractor/Payments/EditPayment/EditPayment.js +34 -0
- package/dist/components/Contractor/Payments/EditPayment/EditPayment.js.map +1 -0
- package/dist/components/Contractor/Payments/EditPayment/EditPaymentPresentation.d.ts +6 -0
- package/dist/components/Contractor/Payments/EditPayment/EditPaymentPresentation.js +84 -0
- package/dist/components/Contractor/Payments/EditPayment/EditPaymentPresentation.js.map +1 -0
- package/dist/components/Contractor/Payments/Overview/Overview.d.ts +7 -0
- package/dist/components/Contractor/Payments/Overview/Overview.js +72 -0
- package/dist/components/Contractor/Payments/Overview/Overview.js.map +1 -0
- package/dist/components/Contractor/Payments/Overview/OverviewPresentation.d.ts +18 -0
- package/dist/components/Contractor/Payments/Overview/OverviewPresentation.js +131 -0
- package/dist/components/Contractor/Payments/Overview/OverviewPresentation.js.map +1 -0
- package/dist/components/Contractor/Payments/PaymentFlow/PaymentFlow.d.ts +2 -0
- package/dist/components/Contractor/Payments/PaymentFlow/PaymentFlow.js +26 -0
- package/dist/components/Contractor/Payments/PaymentFlow/PaymentFlow.js.map +1 -0
- package/dist/components/Contractor/Payments/PaymentFlow/PaymentFlowComponents.d.ts +15 -0
- package/dist/components/Contractor/Payments/PaymentFlow/PaymentFlowComponents.js +30 -0
- package/dist/components/Contractor/Payments/PaymentFlow/PaymentFlowComponents.js.map +1 -0
- package/dist/components/Contractor/Payments/PaymentFlow/index.d.ts +3 -0
- package/dist/components/Contractor/Payments/PaymentFlow/paymentStateMachine.d.ts +8 -0
- package/dist/components/Contractor/Payments/PaymentFlow/paymentStateMachine.js +158 -0
- package/dist/components/Contractor/Payments/PaymentFlow/paymentStateMachine.js.map +1 -0
- package/dist/components/Contractor/Payments/PaymentsList/PaymentsList.d.ts +7 -0
- package/dist/components/Contractor/Payments/PaymentsList/PaymentsList.js +29 -0
- package/dist/components/Contractor/Payments/PaymentsList/PaymentsList.js.map +1 -0
- package/dist/components/Contractor/Payments/PaymentsList/PaymentsListPresentation.d.ts +18 -0
- package/dist/components/Contractor/Payments/PaymentsList/PaymentsListPresentation.js +108 -0
- package/dist/components/Contractor/Payments/PaymentsList/PaymentsListPresentation.js.map +1 -0
- package/dist/components/Contractor/Payments/PaymentsList/PaymentsListPresentation.module.scss.js +10 -0
- package/dist/components/Contractor/Payments/PaymentsList/PaymentsListPresentation.module.scss.js.map +1 -0
- package/dist/components/Contractor/Payments/types.d.ts +4 -0
- package/dist/components/Contractor/Profile/ContractorProfileForm.js +11 -11
- package/dist/components/Contractor/Profile/useContractorProfile.d.ts +26 -26
- package/dist/components/Contractor/Profile/useContractorProfile.js +2 -3
- package/dist/components/Contractor/Profile/useContractorProfile.js.map +1 -1
- package/dist/components/Contractor/Submit/Submit.js +20 -19
- package/dist/components/Contractor/Submit/Submit.js.map +1 -1
- package/dist/components/Contractor/index.d.ts +1 -0
- package/dist/components/Contractor/index.js +4 -2
- package/dist/components/Contractor/index.js.map +1 -1
- package/dist/components/Employee/Compensation/Actions.js +14 -13
- package/dist/components/Employee/Compensation/Actions.js.map +1 -1
- package/dist/components/Employee/Compensation/List.js +23 -22
- package/dist/components/Employee/Compensation/List.js.map +1 -1
- package/dist/components/Employee/Deductions/Deductions.d.ts +1 -1
- package/dist/components/Employee/Deductions/Deductions.js +10 -10
- package/dist/components/Employee/Deductions/Deductions.js.map +1 -1
- package/dist/components/Employee/Deductions/DeductionsComponents.d.ts +2 -0
- package/dist/components/Employee/Deductions/DeductionsComponents.js +6 -6
- package/dist/components/Employee/Deductions/DeductionsComponents.js.map +1 -1
- package/dist/components/Employee/Deductions/DeductionsForm/ChildSupportForm.js +220 -0
- package/dist/components/Employee/Deductions/DeductionsForm/ChildSupportForm.js.map +1 -0
- package/dist/components/Employee/Deductions/DeductionsForm/ChildSupportForm.module.scss.js +8 -0
- package/dist/components/Employee/Deductions/DeductionsForm/ChildSupportForm.module.scss.js.map +1 -0
- package/dist/components/Employee/Deductions/DeductionsForm/CustomDeductionForm.d.ts +2 -2
- package/dist/components/Employee/Deductions/DeductionsForm/CustomDeductionForm.js +163 -0
- package/dist/components/Employee/Deductions/DeductionsForm/CustomDeductionForm.js.map +1 -0
- package/dist/components/Employee/Deductions/DeductionsForm/DeductionsForm.d.ts +0 -34
- package/dist/components/Employee/Deductions/DeductionsForm/DeductionsForm.js +121 -125
- package/dist/components/Employee/Deductions/DeductionsForm/DeductionsForm.js.map +1 -1
- package/dist/components/Employee/Deductions/DeductionsForm/DeductionsForm.module.scss.js +14 -0
- package/dist/components/Employee/Deductions/DeductionsForm/DeductionsForm.module.scss.js.map +1 -0
- package/dist/components/Employee/Deductions/DeductionsForm/GarnishmentForm.d.ts +56 -0
- package/dist/components/Employee/Deductions/DeductionsForm/GarnishmentForm.js +158 -0
- package/dist/components/Employee/Deductions/DeductionsForm/GarnishmentForm.js.map +1 -0
- package/dist/components/Employee/Deductions/DeductionsList/DeductionsList.js +55 -55
- package/dist/components/Employee/Deductions/DeductionsList/DeductionsList.js.map +1 -1
- package/dist/components/Employee/Deductions/IncludeDeductions/IncludeDeductions.d.ts +6 -0
- package/dist/components/Employee/Deductions/IncludeDeductions/IncludeDeductions.js +54 -0
- package/dist/components/Employee/Deductions/IncludeDeductions/IncludeDeductions.js.map +1 -0
- package/dist/components/Employee/Deductions/IncludeDeductions/IncludeDeductions.module.scss.js +14 -0
- package/dist/components/Employee/Deductions/IncludeDeductions/IncludeDeductions.module.scss.js.map +1 -0
- package/dist/components/Employee/Deductions/stateMachine.js +49 -29
- package/dist/components/Employee/Deductions/stateMachine.js.map +1 -1
- package/dist/components/Employee/DocumentSigner/DocumentList/Actions.js +8 -6
- package/dist/components/Employee/DocumentSigner/DocumentList/Actions.js.map +1 -1
- package/dist/components/Employee/DocumentSigner/DocumentList/DocumentList.js +4 -2
- package/dist/components/Employee/DocumentSigner/DocumentList/DocumentList.js.map +1 -1
- package/dist/components/Employee/DocumentSigner/DocumentList/List.js +4 -2
- package/dist/components/Employee/DocumentSigner/DocumentList/List.js.map +1 -1
- package/dist/components/Employee/DocumentSigner/DocumentList/useDocumentList.js +3 -4
- package/dist/components/Employee/DocumentSigner/DocumentList/useDocumentList.js.map +1 -1
- package/dist/components/Employee/DocumentSigner/SignatureForm/SignatureForm.js +4 -2
- package/dist/components/Employee/DocumentSigner/SignatureForm/SignatureForm.js.map +1 -1
- package/dist/components/Employee/DocumentSigner/SignatureForm/useSignatureForm.js +3 -4
- package/dist/components/Employee/DocumentSigner/SignatureForm/useSignatureForm.js.map +1 -1
- package/dist/components/Employee/EmployeeList/Actions.js +8 -6
- package/dist/components/Employee/EmployeeList/Actions.js.map +1 -1
- package/dist/components/Employee/EmployeeList/EmployeeList.js +4 -2
- package/dist/components/Employee/EmployeeList/EmployeeList.js.map +1 -1
- package/dist/components/Employee/EmployeeList/Head.js +6 -5
- package/dist/components/Employee/EmployeeList/Head.js.map +1 -1
- package/dist/components/Employee/EmployeeList/List.js +14 -14
- package/dist/components/Employee/EmployeeList/useEmployeeList.js +3 -4
- package/dist/components/Employee/EmployeeList/useEmployeeList.js.map +1 -1
- package/dist/components/Employee/FederalTaxes/Actions.js +9 -7
- package/dist/components/Employee/FederalTaxes/Actions.js.map +1 -1
- package/dist/components/Employee/FederalTaxes/FederalForm.d.ts +22 -7
- package/dist/components/Employee/FederalTaxes/FederalForm.js +85 -29
- package/dist/components/Employee/FederalTaxes/FederalForm.js.map +1 -1
- package/dist/components/Employee/FederalTaxes/FederalTaxes.js +62 -46
- package/dist/components/Employee/FederalTaxes/FederalTaxes.js.map +1 -1
- package/dist/components/Employee/FederalTaxes/useFederalTaxes.js +3 -4
- package/dist/components/Employee/FederalTaxes/useFederalTaxes.js.map +1 -1
- package/dist/components/Employee/Landing/Landing.js +3 -2
- package/dist/components/Employee/Landing/Landing.js.map +1 -1
- package/dist/components/Employee/PaymentMethod/Actions.js +8 -6
- package/dist/components/Employee/PaymentMethod/Actions.js.map +1 -1
- package/dist/components/Employee/PaymentMethod/BankAccountEdit.js +5 -3
- package/dist/components/Employee/PaymentMethod/BankAccountEdit.js.map +1 -1
- package/dist/components/Employee/PaymentMethod/BankAccountsList.js +12 -11
- package/dist/components/Employee/PaymentMethod/BankAccountsList.js.map +1 -1
- package/dist/components/Employee/PaymentMethod/PaymentTypeForm.js +8 -6
- package/dist/components/Employee/PaymentMethod/PaymentTypeForm.js.map +1 -1
- package/dist/components/Employee/PaymentMethod/Split.js +5 -5
- package/dist/components/Employee/PaymentMethod/usePaymentMethod.js +5 -6
- package/dist/components/Employee/PaymentMethod/usePaymentMethod.js.map +1 -1
- package/dist/components/Employee/Profile/Actions.js +9 -7
- package/dist/components/Employee/Profile/Actions.js.map +1 -1
- package/dist/components/Employee/Profile/AdminPersonalDetails.d.ts +6 -6
- package/dist/components/Employee/Profile/AdminPersonalDetails.js +10 -8
- package/dist/components/Employee/Profile/AdminPersonalDetails.js.map +1 -1
- package/dist/components/Employee/Profile/HomeAddress.js +9 -8
- package/dist/components/Employee/Profile/HomeAddress.js.map +1 -1
- package/dist/components/Employee/Profile/PersonalDetailsInputs.d.ts +2 -2
- package/dist/components/Employee/Profile/PersonalDetailsInputs.js +26 -23
- package/dist/components/Employee/Profile/PersonalDetailsInputs.js.map +1 -1
- package/dist/components/Employee/Profile/useProfile.js +3 -4
- package/dist/components/Employee/Profile/useProfile.js.map +1 -1
- package/dist/components/Employee/StateTaxes/Actions.js +10 -8
- package/dist/components/Employee/StateTaxes/Actions.js.map +1 -1
- package/dist/components/Employee/StateTaxes/useStateTaxes.js +3 -4
- package/dist/components/Employee/StateTaxes/useStateTaxes.js.map +1 -1
- package/dist/components/Employee/Taxes/Actions.js +10 -8
- package/dist/components/Employee/Taxes/Actions.js.map +1 -1
- package/dist/components/Employee/Taxes/FederalForm.d.ts +22 -7
- package/dist/components/Employee/Taxes/FederalForm.js +85 -29
- package/dist/components/Employee/Taxes/FederalForm.js.map +1 -1
- package/dist/components/Employee/Taxes/Taxes.js +97 -81
- package/dist/components/Employee/Taxes/Taxes.js.map +1 -1
- package/dist/components/Employee/Taxes/useTaxes.js +3 -4
- package/dist/components/Employee/Taxes/useTaxes.js.map +1 -1
- package/dist/components/Flow/Flow.js +14 -13
- package/dist/components/Flow/Flow.js.map +1 -1
- package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetails.d.ts +1 -1
- package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetails.js +63 -34
- package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetails.js.map +1 -1
- package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetails.module.scss.js +8 -0
- package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetails.module.scss.js.map +1 -0
- package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetailsBanner/ConfirmWireDetailsBanner.d.ts +2 -0
- package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetailsBanner/ConfirmWireDetailsBanner.js +71 -54
- package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetailsBanner/ConfirmWireDetailsBanner.js.map +1 -1
- package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetailsComponents.d.ts +23 -0
- package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetailsComponents.js +27 -15
- package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetailsComponents.js.map +1 -1
- package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetailsForm/ConfirmWireDetailsForm.d.ts +25 -2
- package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetailsForm/ConfirmWireDetailsForm.js +152 -23
- package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetailsForm/ConfirmWireDetailsForm.js.map +1 -1
- package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetailsForm/ConfirmWireDetailsForm.module.scss.js +10 -0
- package/dist/components/Payroll/ConfirmWireDetails/ConfirmWireDetailsForm/ConfirmWireDetailsForm.module.scss.js.map +1 -0
- package/dist/components/Payroll/ConfirmWireDetails/WireInstructions/WireInstructions.d.ts +9 -1
- package/dist/components/Payroll/ConfirmWireDetails/WireInstructions/WireInstructions.js +194 -22
- package/dist/components/Payroll/ConfirmWireDetails/WireInstructions/WireInstructions.js.map +1 -1
- package/dist/components/Payroll/ConfirmWireDetails/WireInstructions/WireInstructions.module.scss.js +18 -0
- package/dist/components/Payroll/ConfirmWireDetails/WireInstructions/WireInstructions.module.scss.js.map +1 -0
- package/dist/components/Payroll/ConfirmWireDetails/confirmWireDetailsStateMachine.d.ts +10 -2
- package/dist/components/Payroll/ConfirmWireDetails/confirmWireDetailsStateMachine.js +44 -30
- package/dist/components/Payroll/ConfirmWireDetails/confirmWireDetailsStateMachine.js.map +1 -1
- package/dist/components/Payroll/ConfirmWireDetails/index.d.ts +1 -0
- package/dist/components/Payroll/ConfirmWireDetails/types.d.ts +5 -0
- package/dist/components/Payroll/PayrollBlocker/components/PayrollBlockerAlerts.js +3 -2
- package/dist/components/Payroll/PayrollBlocker/components/PayrollBlockerAlerts.js.map +1 -1
- package/dist/components/Payroll/PayrollBlocker/components/PayrollBlockerList.js +7 -6
- package/dist/components/Payroll/PayrollBlocker/components/PayrollBlockerList.js.map +1 -1
- package/dist/components/Payroll/PayrollConfiguration/PayrollConfigurationPresentation.js +15 -15
- package/dist/components/Payroll/PayrollConfiguration/PayrollConfigurationPresentation.js.map +1 -1
- package/dist/components/Payroll/PayrollFlow/PayrollFlowComponents.d.ts +1 -0
- package/dist/components/Payroll/PayrollFlow/PayrollFlowComponents.js.map +1 -1
- package/dist/components/Payroll/PayrollFlow/payrollStateMachine.js +32 -40
- package/dist/components/Payroll/PayrollFlow/payrollStateMachine.js.map +1 -1
- package/dist/components/Payroll/PayrollHistory/PayrollHistory.d.ts +0 -12
- package/dist/components/Payroll/PayrollHistory/PayrollHistory.js +44 -52
- package/dist/components/Payroll/PayrollHistory/PayrollHistory.js.map +1 -1
- package/dist/components/Payroll/PayrollHistory/PayrollHistoryPresentation.d.ts +9 -6
- package/dist/components/Payroll/PayrollHistory/PayrollHistoryPresentation.js +104 -101
- package/dist/components/Payroll/PayrollHistory/PayrollHistoryPresentation.js.map +1 -1
- package/dist/components/Payroll/PayrollList/PayrollList.js +58 -59
- package/dist/components/Payroll/PayrollList/PayrollList.js.map +1 -1
- package/dist/components/Payroll/PayrollList/PayrollListPresentation.d.ts +4 -6
- package/dist/components/Payroll/PayrollList/PayrollListPresentation.js +77 -69
- package/dist/components/Payroll/PayrollList/PayrollListPresentation.js.map +1 -1
- package/dist/components/Payroll/PayrollOverview/PayrollOverview.js +127 -103
- package/dist/components/Payroll/PayrollOverview/PayrollOverview.js.map +1 -1
- package/dist/components/Payroll/PayrollOverview/PayrollOverviewPresentation.js +254 -185
- package/dist/components/Payroll/PayrollOverview/PayrollOverviewPresentation.js.map +1 -1
- package/dist/components/Payroll/PayrollOverview/SubmissionBlockers/FastAchThresholdExceeded.js +3 -2
- package/dist/components/Payroll/PayrollOverview/SubmissionBlockers/FastAchThresholdExceeded.js.map +1 -1
- package/dist/components/Payroll/PayrollReceipts/PayrollReceiptsPresentation.module.scss.js +1 -1
- package/dist/components/Payroll/PayrollStatusBadges/PayrollStatusBadges.d.ts +7 -0
- package/dist/components/Payroll/PayrollStatusBadges/PayrollStatusBadges.js +19 -0
- package/dist/components/Payroll/PayrollStatusBadges/PayrollStatusBadges.js.map +1 -0
- package/dist/components/Payroll/PayrollStatusBadges/PayrollStatusBadges.module.scss.js +10 -0
- package/dist/components/Payroll/PayrollStatusBadges/PayrollStatusBadges.module.scss.js.map +1 -0
- package/dist/components/Payroll/PayrollStatusBadges/index.d.ts +4 -0
- package/dist/components/Payroll/PayrollStatusBadges/payrollStatusConfig.d.ts +33 -0
- package/dist/components/Payroll/PayrollStatusBadges/payrollStatusConfig.js +161 -0
- package/dist/components/Payroll/PayrollStatusBadges/payrollStatusConfig.js.map +1 -0
- package/dist/components/Payroll/PayrollStatusBadges/usePayrollStatusBadges.d.ts +3 -0
- package/dist/components/Payroll/PayrollStatusBadges/usePayrollStatusBadges.js +17 -0
- package/dist/components/Payroll/PayrollStatusBadges/usePayrollStatusBadges.js.map +1 -0
- package/dist/components/Payroll/PayrollStatusBadges/usePayrollStatusBadges.test.d.ts +1 -0
- package/dist/components/Payroll/UNSTABLE_PayrollHooks/PayrollConfiguration/PayrollConfiguration.d.ts +6 -0
- package/dist/components/Payroll/UNSTABLE_PayrollHooks/PayrollConfiguration/PayrollConfiguration.js +70 -0
- package/dist/components/Payroll/UNSTABLE_PayrollHooks/PayrollConfiguration/PayrollConfiguration.js.map +1 -0
- package/dist/components/Payroll/UNSTABLE_PayrollHooks/PayrollConfiguration/PayrollConfigurationContext.d.ts +7 -0
- package/dist/components/Payroll/UNSTABLE_PayrollHooks/PayrollConfiguration/PayrollConfigurationContext.js +6 -0
- package/dist/components/Payroll/UNSTABLE_PayrollHooks/PayrollConfiguration/PayrollConfigurationContext.js.map +1 -0
- package/dist/components/Payroll/UNSTABLE_PayrollHooks/PayrollConfiguration/PayrollConfigurationProvider.d.ts +9 -0
- package/dist/components/Payroll/UNSTABLE_PayrollHooks/PayrollConfiguration/PayrollConfigurationProvider.js +40 -0
- package/dist/components/Payroll/UNSTABLE_PayrollHooks/PayrollConfiguration/PayrollConfigurationProvider.js.map +1 -0
- package/dist/components/Payroll/UNSTABLE_PayrollHooks/PayrollConfiguration/index.d.ts +5 -0
- package/dist/components/Payroll/UNSTABLE_PayrollHooks/PayrollConfiguration/usePayrollConfiguration.d.ts +2 -0
- package/dist/components/Payroll/UNSTABLE_PayrollHooks/PayrollConfiguration/usePayrollConfiguration.js +12 -0
- package/dist/components/Payroll/UNSTABLE_PayrollHooks/PayrollConfiguration/usePayrollConfiguration.js.map +1 -0
- package/dist/components/Payroll/UNSTABLE_PayrollHooks/index.d.ts +2 -0
- package/dist/components/Payroll/helpers.d.ts +0 -5
- package/dist/components/Payroll/helpers.js +106 -112
- package/dist/components/Payroll/helpers.js.map +1 -1
- package/dist/components/Payroll/usePreparedPayrollData.js +5 -6
- package/dist/components/Payroll/usePreparedPayrollData.js.map +1 -1
- package/dist/contexts/ComponentAdapter/adapters/defaultComponentAdapter.js +48 -46
- package/dist/contexts/ComponentAdapter/adapters/defaultComponentAdapter.js.map +1 -1
- package/dist/contexts/ComponentAdapter/useComponentContext.d.ts +2 -0
- package/dist/contexts/ComponentAdapter/useComponentContext.js +3 -3
- package/dist/contexts/ComponentAdapter/useComponentContext.js.map +1 -1
- package/dist/contexts/GustoProvider/GustoProviderCustomUIAdapter.js +7 -5
- package/dist/contexts/GustoProvider/GustoProviderCustomUIAdapter.js.map +1 -1
- package/dist/helpers/dateFormatting.d.ts +9 -0
- package/dist/helpers/dateFormatting.js +65 -52
- package/dist/helpers/dateFormatting.js.map +1 -1
- package/dist/i18n/I18n.js +3 -3
- package/dist/i18n/I18n.js.map +1 -1
- package/dist/i18n/en/Contractor.Payments.CreatePayment.json.js +34 -0
- package/dist/i18n/en/Contractor.Payments.CreatePayment.json.js.map +1 -0
- package/dist/i18n/en/Contractor.Payments.EditPayment.json.js +36 -0
- package/dist/i18n/en/Contractor.Payments.EditPayment.json.js.map +1 -0
- package/dist/i18n/en/Contractor.Payments.Overview.json.js +34 -0
- package/dist/i18n/en/Contractor.Payments.Overview.json.js.map +1 -0
- package/dist/i18n/en/Contractor.Payments.PaymentsList.json.js +34 -0
- package/dist/i18n/en/Contractor.Payments.PaymentsList.json.js.map +1 -0
- package/dist/i18n/en/ContractorPayment.ContractorPaymentDetail.json.js +24 -0
- package/dist/i18n/en/ContractorPayment.ContractorPaymentDetail.json.js.map +1 -0
- package/dist/i18n/en/Employee.Deductions.json.js +58 -46
- package/dist/i18n/en/Employee.Deductions.json.js.map +1 -1
- package/dist/i18n/en/Employee.FederalTaxes.json.js +49 -41
- package/dist/i18n/en/Employee.FederalTaxes.json.js.map +1 -1
- package/dist/i18n/en/Employee.Taxes.json.js +53 -45
- package/dist/i18n/en/Employee.Taxes.json.js.map +1 -1
- package/dist/i18n/en/Payroll.Common.json.js +8 -0
- package/dist/i18n/en/Payroll.Common.json.js.map +1 -0
- package/dist/i18n/en/Payroll.ConfirmWireDetailsForm.json.js +25 -5
- package/dist/i18n/en/Payroll.ConfirmWireDetailsForm.json.js.map +1 -1
- package/dist/i18n/en/Payroll.PayrollList.json.js +14 -16
- package/dist/i18n/en/Payroll.PayrollList.json.js.map +1 -1
- package/dist/i18n/en/Payroll.PayrollOverview.json.js +34 -30
- package/dist/i18n/en/Payroll.PayrollOverview.json.js.map +1 -1
- package/dist/i18n/en/Payroll.WireInstructions.json.js +22 -6
- package/dist/i18n/en/Payroll.WireInstructions.json.js.map +1 -1
- package/dist/shared/constants.d.ts +18 -0
- package/dist/shared/constants.js +66 -55
- package/dist/shared/constants.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/types/i18next.d.ts +236 -15
- package/package.json +19 -15
- package/dist/components/Employee/Deductions/DeductionsForm/UNSTABLE_DeductionsForm.d.ts +0 -7
- package/dist/components/Employee/Deductions/EmptyState/EmptyState.d.ts +0 -6
- package/dist/components/Employee/Deductions/IncludeDeductionsForm/IncludeDeductionsForm.d.ts +0 -15
- package/dist/components/Employee/Deductions/IncludeDeductionsForm/IncludeDeductionsForm.js +0 -49
- package/dist/components/Employee/Deductions/IncludeDeductionsForm/IncludeDeductionsForm.js.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const e = "Deductions", t = "Include deductions for this employee?", o = "If you need to deduct money from this employee's paycheck (e.g. for Housing, Meals, or Transportation), you can choose either a one-time deduction or an ongoing deduction that occurs every pay period.", n = "If you need to deduct money from this employee's paycheck (e.g. for child support, housing, meals, or transportation), you can choose either a one-time deduction or an ongoing deduction that occurs every pay period.", c = "Employee deductions", i = "You haven't added any deductions yet",
|
|
1
|
+
const e = "Deductions", t = "Include deductions for this employee?", o = "If you need to deduct money from this employee's paycheck (e.g. for Housing, Meals, or Transportation), you can choose either a one-time deduction or an ongoing deduction that occurs every pay period.", n = "If you need to deduct money from this employee's paycheck (e.g. for child support, housing, meals, or transportation), you can choose either a one-time deduction or an ongoing deduction that occurs every pay period.", c = "Employee deductions", i = "You haven't added any deductions yet", ve = "Yes", ke = "No", s = "Continue", a = "Save", r = "Add Deduction", d = "Add deduction", u = "Back to deductions", l = "External post tax deductions", p = "Amounts are withheld from the net pay of an employee and reported on the paystub and within payroll receipts. Note that these deductions are always post-tax and will start with the next pay period.", h = "Garnishment (a court-ordered deduction)", m = "Garnishment type", y = "Child support", g = "Child Support", D = "Custom deduction", f = "All counties", x = "Agency", T = "Select the appropriate state agency.", b = "County", C = "Select the appropriate state county", w = "CSE Case Number", L = "Carefully enter the Child Support Enforcement Case Number", A = "Enter the unique Order Identifier or Order ID associated with this child support obligation.", O = "Carefully enter the Child Support Enforcement Remittance ID", P = "Total amount withheld", E = "Enter the amount indicated in the letter from the child support agency", v = "Max paycheck percentage", k = "Enter the maximum percentage of your employee's paycheck that we should withhold. You can find this info in the letter from the child support agency.", S = "Reminder: you are responsible for this payment", q = "Unfortunately, this agency doesn't support electronic payments, so you are responsible for paying the agency yourself.", Se = "Per", N = "Enter how often the agency collects the withholding amount", R = "Every week", F = "Every other week", M = "Twice per month", G = "Monthly", I = "Custom deduction (post-tax)", V = "A garnishment is a court-ordered wage reduction—we’ll handle the tax calculations based what you select. For other post-tax deductions, choose Custom Deduction.", W = "Edit Deduction", Y = "Deduction description", B = "Description", j = "Deduction frequency", H = "This deduction occurs every payroll", U = "Recurring (every payroll)", _ = "This is a one-time deduction and only applies to the next upcoming payroll", z = "One-time (next payroll only)", J = "List of current deductions of an employee", K = "Deduction type", Q = "Percentage or fixed", X = "Percentage", Z = "Percentage of pay", $ = "Fixed dollar amount", ee = "Amount to withhold", te = "Enter the percentage of your employee’s wages to withhold.", oe = "Enter the amount of money to withhold each pay period from your employee’s wages.", ne = "Pay period maximum", ce = "Total amount owed", ie = "We will adjust the amount of the last payment and stop collecting once the total amount is reached.", se = "Annual maximum", ae = "The maximum annual amount you deduct from the employee's pay for this specific deduction. Leave this field blank if there is no maximum.", re = "This is a court-ordered deduction", de = "Deduction", ue = "Frequency", le = "Withheld", pe = "Actions", he = "Recurring", me = "{{value}} per paycheck", ye = "One-time", ge = "Once added, your deductions will appear here.", De = "Deduction actions menu", fe = "Edit deduction", xe = "Delete deduction", Te = "+ Add another deduction", be = "Cancel", Ce = { description: "Description is required", amount: "Amount must be a valid number" }, we = "Federal Tax Lien", Le = "State Tax Lien", Ae = "Student Loan", Oe = "Creditor Garnishment", Pe = "Federal Loan", Ee = "Other Garnishment", qe = {
|
|
2
2
|
pageTitle: e,
|
|
3
3
|
includeDeductionsFormLabel: t,
|
|
4
4
|
includeDeductionsDescription: o,
|
|
@@ -21,30 +21,30 @@ const e = "Deductions", t = "Include deductions for this employee?", o = "If you
|
|
|
21
21
|
customDeductionTitle: D,
|
|
22
22
|
allCounties: f,
|
|
23
23
|
agency: x,
|
|
24
|
-
agencyDescription:
|
|
25
|
-
county:
|
|
24
|
+
agencyDescription: T,
|
|
25
|
+
county: b,
|
|
26
26
|
countyDescription: C,
|
|
27
27
|
caseNumber: w,
|
|
28
|
-
caseNumberDescription:
|
|
29
|
-
orderNumberDescription:
|
|
30
|
-
remittanceNumberDescription:
|
|
31
|
-
totalAmountWithheld:
|
|
32
|
-
totalAmountWithheldDescription:
|
|
33
|
-
maxPaycheckPercentage:
|
|
28
|
+
caseNumberDescription: L,
|
|
29
|
+
orderNumberDescription: A,
|
|
30
|
+
remittanceNumberDescription: O,
|
|
31
|
+
totalAmountWithheld: P,
|
|
32
|
+
totalAmountWithheldDescription: E,
|
|
33
|
+
maxPaycheckPercentage: v,
|
|
34
34
|
maxPaycheckPercentageDescription: k,
|
|
35
|
-
manualPaymentRequired:
|
|
36
|
-
manualPaymentRequiredDescription:
|
|
35
|
+
manualPaymentRequired: S,
|
|
36
|
+
manualPaymentRequiredDescription: q,
|
|
37
37
|
per: "Per",
|
|
38
38
|
perDescription: N,
|
|
39
39
|
everyWeek: R,
|
|
40
|
-
everyOtherWeek:
|
|
41
|
-
twicePerMonth:
|
|
42
|
-
monthly:
|
|
43
|
-
customDeductionOption:
|
|
44
|
-
deductionTypeRadioLabel:
|
|
45
|
-
editDeductionTitle:
|
|
46
|
-
descriptionLabel:
|
|
47
|
-
descriptionLabelV2:
|
|
40
|
+
everyOtherWeek: F,
|
|
41
|
+
twicePerMonth: M,
|
|
42
|
+
monthly: G,
|
|
43
|
+
customDeductionOption: I,
|
|
44
|
+
deductionTypeRadioLabel: V,
|
|
45
|
+
editDeductionTitle: W,
|
|
46
|
+
descriptionLabel: Y,
|
|
47
|
+
descriptionLabelV2: B,
|
|
48
48
|
frequencyLabel: j,
|
|
49
49
|
frequencyRecurringOption: H,
|
|
50
50
|
frequencyRecurringOptionV2: U,
|
|
@@ -76,31 +76,38 @@ const e = "Deductions", t = "Include deductions for this employee?", o = "If you
|
|
|
76
76
|
hamburgerTitle: De,
|
|
77
77
|
editCta: fe,
|
|
78
78
|
deleteCta: xe,
|
|
79
|
-
addDeductionCta:
|
|
80
|
-
cancelCta:
|
|
81
|
-
validations: Ce
|
|
79
|
+
addDeductionCta: Te,
|
|
80
|
+
cancelCta: be,
|
|
81
|
+
validations: Ce,
|
|
82
|
+
federalTaxLien: we,
|
|
83
|
+
stateTaxLien: Le,
|
|
84
|
+
studentLoan: Ae,
|
|
85
|
+
creditorGarnishment: Oe,
|
|
86
|
+
federalLoan: Pe,
|
|
87
|
+
otherGarnishment: Ee
|
|
82
88
|
};
|
|
83
89
|
export {
|
|
84
90
|
pe as actionsColumn,
|
|
85
91
|
d as addDeductionButtonCta,
|
|
86
|
-
|
|
92
|
+
Te as addDeductionCta,
|
|
87
93
|
r as addDeductionTitle,
|
|
88
94
|
x as agency,
|
|
89
|
-
|
|
95
|
+
T as agencyDescription,
|
|
90
96
|
f as allCounties,
|
|
91
97
|
ae as annualMaxDescription,
|
|
92
98
|
se as annualMaxLabel,
|
|
93
99
|
u as backToDeductionsCta,
|
|
94
|
-
|
|
100
|
+
be as cancelCta,
|
|
95
101
|
w as caseNumber,
|
|
96
|
-
|
|
102
|
+
L as caseNumberDescription,
|
|
97
103
|
y as childSupport,
|
|
98
104
|
g as childSupportTitle,
|
|
99
105
|
s as continueCta,
|
|
100
|
-
|
|
106
|
+
b as county,
|
|
101
107
|
C as countyDescription,
|
|
102
108
|
re as courtOrderedLabel,
|
|
103
|
-
|
|
109
|
+
Oe as creditorGarnishment,
|
|
110
|
+
I as customDeductionOption,
|
|
104
111
|
D as customDeductionTitle,
|
|
105
112
|
oe as deductionAmountDescriptionFixed,
|
|
106
113
|
te as deductionAmountDescriptionPercentage,
|
|
@@ -110,19 +117,21 @@ export {
|
|
|
110
117
|
Q as deductionTypeLabelV2,
|
|
111
118
|
X as deductionTypePercentageOption,
|
|
112
119
|
Z as deductionTypePercentageOptionV2,
|
|
113
|
-
|
|
120
|
+
V as deductionTypeRadioLabel,
|
|
114
121
|
J as deductionsTableLabel,
|
|
115
|
-
|
|
122
|
+
qe as default,
|
|
116
123
|
xe as deleteCta,
|
|
117
|
-
|
|
118
|
-
|
|
124
|
+
Y as descriptionLabel,
|
|
125
|
+
B as descriptionLabelV2,
|
|
119
126
|
fe as editCta,
|
|
120
|
-
|
|
127
|
+
W as editDeductionTitle,
|
|
121
128
|
ge as emptyListMessage,
|
|
122
|
-
|
|
129
|
+
F as everyOtherWeek,
|
|
123
130
|
R as everyWeek,
|
|
124
131
|
l as externalPostTaxDeductions,
|
|
125
132
|
p as externalPostTaxDeductionsDescription,
|
|
133
|
+
Pe as federalLoan,
|
|
134
|
+
we as federalTaxLien,
|
|
126
135
|
ue as frequencyColumn,
|
|
127
136
|
j as frequencyLabel,
|
|
128
137
|
_ as frequencyOneTimeOption,
|
|
@@ -136,30 +145,33 @@ export {
|
|
|
136
145
|
n as includeDeductionsDescriptionV2,
|
|
137
146
|
i as includeDeductionsEmptyState,
|
|
138
147
|
t as includeDeductionsFormLabel,
|
|
139
|
-
|
|
148
|
+
ke as includeDeductionsNo,
|
|
140
149
|
c as includeDeductionsSubtitle,
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
150
|
+
ve as includeDeductionsYes,
|
|
151
|
+
S as manualPaymentRequired,
|
|
152
|
+
q as manualPaymentRequiredDescription,
|
|
153
|
+
v as maxPaycheckPercentage,
|
|
145
154
|
k as maxPaycheckPercentageDescription,
|
|
146
|
-
|
|
155
|
+
G as monthly,
|
|
147
156
|
de as nameColumn,
|
|
148
157
|
ye as nonRecurringText,
|
|
149
|
-
|
|
158
|
+
A as orderNumberDescription,
|
|
159
|
+
Ee as otherGarnishment,
|
|
150
160
|
e as pageTitle,
|
|
151
161
|
ne as payPeriodMaximum,
|
|
152
|
-
|
|
162
|
+
Se as per,
|
|
153
163
|
N as perDescription,
|
|
154
164
|
me as recurringAmount,
|
|
155
165
|
he as recurringText,
|
|
156
|
-
|
|
166
|
+
O as remittanceNumberDescription,
|
|
157
167
|
a as saveCta,
|
|
168
|
+
Le as stateTaxLien,
|
|
169
|
+
Ae as studentLoan,
|
|
158
170
|
ie as totalAmountDescription,
|
|
159
171
|
ce as totalAmountLabel,
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
172
|
+
P as totalAmountWithheld,
|
|
173
|
+
E as totalAmountWithheldDescription,
|
|
174
|
+
M as twicePerMonth,
|
|
163
175
|
Ce as validations,
|
|
164
176
|
le as withheldColumn
|
|
165
177
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Employee.Deductions.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Employee.Deductions.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,46 +1,54 @@
|
|
|
1
|
-
const e = "Step 4b: Deductions",
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
1
|
+
const e = "Additional withholding", t = "Step 4b: Deductions", o = "Step 3: Dependents (if applicable)", i = "Step 4c: Extra withholding", l = "Step 1c: Federal filing status (1c)", n = "Select filing status...", s = "Federal tax withholdings (Form W-4)", a = "Federal withholding allowance", r = "This field is a required field. Please enter a value.", c = "Filing status", d = "Exempt from withholding", h = "Head of household", u = "Married", p = "Married, but withhold as Single", f = "Single", g = 'Includes spouse, if applicable. Answering 2c will result in a higher withholding, but to preserve privacy, this can be left unchecked. <IrsLink href="https://www.irs.gov/newsroom/faqs-on-the-2020-form-w-4" target="_blank">Learn more on the IRS website</IrsLink>.', w = `We'll use this information to withhold the appropriate federal taxes from each paycheck. If you're unsure what to enter here, refer to <IrsCalculatorLink href="https://www.irs.gov/pub/irs-pdf/fw4.pdf" target="_blank">Form W-4</IrsCalculatorLink> to calculate the values, visit our <HelpCenterLink href="https://support.gusto.com" target="_blank">Help Center</HelpCenterLink>, or consult your tax advisor.`, b = "Step 2c: Multiple jobs (2c)", m = "Step 4a: Other income", S = "If you select Exempt from withholding, we won't withhold federal income taxes, but we'll still report taxable wages on a W-2. Keep in mind that anyone who claims exemption from withholding needs to submit a new W-4 each year.", x = "Continue", F = "No", I = "Yes", k = { federalFilingStatus: "Please select filing status", federalTwoJobs: "Please select an option" }, L = {
|
|
2
|
+
additionalWithholding: e,
|
|
3
|
+
deductions: t,
|
|
4
|
+
dependentsTotalIfApplicable: o,
|
|
5
|
+
extraWithholding: i,
|
|
6
|
+
federalFilingStatus1c: l,
|
|
7
|
+
federalFilingStatusPlaceholder: n,
|
|
8
|
+
federalTaxesTitle: s,
|
|
9
|
+
federalWithholdingAllowance: a,
|
|
10
|
+
fieldIsRequired: r,
|
|
11
|
+
filingStatus: c,
|
|
12
|
+
filingStatusExemptFromWithholding: d,
|
|
13
|
+
filingStatusHeadOfHousehold: h,
|
|
14
|
+
filingStatusMarried: u,
|
|
15
|
+
filingStatusMarriedWithholdAsSingle: p,
|
|
16
|
+
filingStatusSingle: f,
|
|
17
|
+
includesSpouseExplanation: g,
|
|
18
|
+
irsCalculator: w,
|
|
19
|
+
multipleJobs2c: b,
|
|
20
|
+
otherIncome: m,
|
|
21
|
+
selectWithholdingDescription: S,
|
|
22
|
+
submitCta: x,
|
|
20
23
|
twoJobNoLabel: "No",
|
|
21
|
-
|
|
24
|
+
twoJobYesLabel: "Yes",
|
|
25
|
+
validations: k
|
|
22
26
|
};
|
|
23
27
|
export {
|
|
24
|
-
e as
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
o as
|
|
28
|
-
i as
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
a as
|
|
33
|
-
r as
|
|
34
|
-
c as
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
p as
|
|
39
|
-
f as
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
m as
|
|
44
|
-
|
|
28
|
+
e as additionalWithholding,
|
|
29
|
+
t as deductions,
|
|
30
|
+
L as default,
|
|
31
|
+
o as dependentsTotalIfApplicable,
|
|
32
|
+
i as extraWithholding,
|
|
33
|
+
l as federalFilingStatus1c,
|
|
34
|
+
n as federalFilingStatusPlaceholder,
|
|
35
|
+
s as federalTaxesTitle,
|
|
36
|
+
a as federalWithholdingAllowance,
|
|
37
|
+
r as fieldIsRequired,
|
|
38
|
+
c as filingStatus,
|
|
39
|
+
d as filingStatusExemptFromWithholding,
|
|
40
|
+
h as filingStatusHeadOfHousehold,
|
|
41
|
+
u as filingStatusMarried,
|
|
42
|
+
p as filingStatusMarriedWithholdAsSingle,
|
|
43
|
+
f as filingStatusSingle,
|
|
44
|
+
g as includesSpouseExplanation,
|
|
45
|
+
w as irsCalculator,
|
|
46
|
+
b as multipleJobs2c,
|
|
47
|
+
m as otherIncome,
|
|
48
|
+
S as selectWithholdingDescription,
|
|
49
|
+
x as submitCta,
|
|
50
|
+
F as twoJobNoLabel,
|
|
51
|
+
I as twoJobYesLabel,
|
|
52
|
+
k as validations
|
|
45
53
|
};
|
|
46
54
|
//# sourceMappingURL=Employee.FederalTaxes.json.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Employee.FederalTaxes.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Employee.FederalTaxes.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,50 +1,58 @@
|
|
|
1
|
-
const e = "
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
1
|
+
const e = "Additional withholding", t = "Back", o = "Step 4b: Deductions", i = "Step 3: Dependents (if applicable)", l = "Step 4c: Extra withholding", n = "Step 1c: Federal filing status (1c)", s = "Select filing status...", a = "Federal tax withholdings (Form W-4)", r = "Federal withholding allowance", c = "This field is a required field. Please enter a value.", h = "Filing status", d = "Exempt from withholding", u = "Head of household", p = "Married", f = "Married, but withhold as Single", g = "Single", w = 'Includes spouse, if applicable. Answering 2c will result in a higher withholding, but to preserve privacy, this can be left unchecked. <IrsLink href="https://www.irs.gov/newsroom/faqs-on-the-2020-form-w-4" target="_blank">Learn more on the IRS website</IrsLink>.', b = `We'll use this information to withhold the appropriate federal taxes from each paycheck. If you're unsure what to enter here, refer to <IrsCalculatorLink href="https://www.irs.gov/pub/irs-pdf/fw4.pdf" target="_blank">Form W-4</IrsCalculatorLink> to calculate the values, visit our <HelpCenterLink href="https://support.gusto.com" target="_blank">Help Center</HelpCenterLink>, or consult your tax advisor.`, m = "Step 2c: Multiple jobs (2c)", S = "Step 4a: Other income", x = "If you select Exempt from withholding, we won't withhold federal income taxes, but we'll still report taxable wages on a W-2. Keep in mind that anyone who claims exemption from withholding needs to submit a new W-4 each year.", k = "{{state}} Tax Requirements", I = "Continue", W = "No", F = "Yes", L = { federalFilingStatus: "Please select filing status", federalTwoJobs: "Please select an option" }, v = {
|
|
2
|
+
additionalWithholding: e,
|
|
3
|
+
cancelCta: t,
|
|
4
|
+
deductions: o,
|
|
5
|
+
dependentsTotalIfApplicable: i,
|
|
6
|
+
extraWithholding: l,
|
|
7
|
+
federalFilingStatus1c: n,
|
|
8
|
+
federalFilingStatusPlaceholder: s,
|
|
9
|
+
federalTaxesTitle: a,
|
|
10
|
+
federalWithholdingAllowance: r,
|
|
11
|
+
fieldIsRequired: c,
|
|
12
|
+
filingStatus: h,
|
|
13
|
+
filingStatusExemptFromWithholding: d,
|
|
14
|
+
filingStatusHeadOfHousehold: u,
|
|
15
|
+
filingStatusMarried: p,
|
|
16
|
+
filingStatusMarriedWithholdAsSingle: f,
|
|
17
|
+
filingStatusSingle: g,
|
|
18
|
+
includesSpouseExplanation: w,
|
|
19
|
+
irsCalculator: b,
|
|
20
|
+
multipleJobs2c: m,
|
|
21
|
+
otherIncome: S,
|
|
22
|
+
selectWithholdingDescription: x,
|
|
23
|
+
stateTaxesTitle: k,
|
|
24
|
+
submitCta: I,
|
|
22
25
|
twoJobNoLabel: "No",
|
|
23
|
-
|
|
26
|
+
twoJobYesLabel: "Yes",
|
|
27
|
+
validations: L
|
|
24
28
|
};
|
|
25
29
|
export {
|
|
26
|
-
e as
|
|
27
|
-
t as
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
u as
|
|
40
|
-
p as
|
|
41
|
-
f as
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
b as
|
|
45
|
-
m as
|
|
46
|
-
|
|
47
|
-
x as
|
|
48
|
-
|
|
30
|
+
e as additionalWithholding,
|
|
31
|
+
t as cancelCta,
|
|
32
|
+
o as deductions,
|
|
33
|
+
v as default,
|
|
34
|
+
i as dependentsTotalIfApplicable,
|
|
35
|
+
l as extraWithholding,
|
|
36
|
+
n as federalFilingStatus1c,
|
|
37
|
+
s as federalFilingStatusPlaceholder,
|
|
38
|
+
a as federalTaxesTitle,
|
|
39
|
+
r as federalWithholdingAllowance,
|
|
40
|
+
c as fieldIsRequired,
|
|
41
|
+
h as filingStatus,
|
|
42
|
+
d as filingStatusExemptFromWithholding,
|
|
43
|
+
u as filingStatusHeadOfHousehold,
|
|
44
|
+
p as filingStatusMarried,
|
|
45
|
+
f as filingStatusMarriedWithholdAsSingle,
|
|
46
|
+
g as filingStatusSingle,
|
|
47
|
+
w as includesSpouseExplanation,
|
|
48
|
+
b as irsCalculator,
|
|
49
|
+
m as multipleJobs2c,
|
|
50
|
+
S as otherIncome,
|
|
51
|
+
x as selectWithholdingDescription,
|
|
52
|
+
k as stateTaxesTitle,
|
|
53
|
+
I as submitCta,
|
|
54
|
+
W as twoJobNoLabel,
|
|
55
|
+
F as twoJobYesLabel,
|
|
56
|
+
L as validations
|
|
49
57
|
};
|
|
50
58
|
//# sourceMappingURL=Employee.Taxes.json.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Employee.Taxes.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Employee.Taxes.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
const e = { processed: "Processed", unprocessed: "Unprocessed", calculating: "Calculating...", readyToSubmit: "Ready to submit", processing: "Processing", failed: "Failed", waitingForWireIn: "Waiting for wire in", pendingApproval: "Pending approval", dueInHours_one: "Due in {{count}} hour", dueInHours_other: "Due in {{count}} hours", dueInDays_one: "Due in {{count}} day", dueInDays_other: "Due in {{count}} days", daysLate_one: "{{count}} day late", daysLate_other: "{{count}} days late", pending: "Pending", paid: "Paid", complete: "Complete", submitted: "Submitted", inProgress: "In progress" }, n = {
|
|
2
|
+
status: e
|
|
3
|
+
};
|
|
4
|
+
export {
|
|
5
|
+
n as default,
|
|
6
|
+
e as status
|
|
7
|
+
};
|
|
8
|
+
//# sourceMappingURL=Payroll.Common.json.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Payroll.Common.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;"}
|
|
@@ -1,10 +1,30 @@
|
|
|
1
|
-
const t = "Confirm
|
|
1
|
+
const t = "Confirm wire details for {{payrollRange}}", e = "Enter the details of your wire transfer submitted through your bank.", n = "Total amount sent", a = "Date sent", i = "Initiating bank", o = "The bank where you initiated the wire transfer", r = "Enter a financial institution", s = "Additional notes", l = "Cancel", c = "Submit", u = { amount: "Total amount sent is required", date: "Date sent is required", bankName: "Initiating bank is required" }, d = { title: "Wire details submitted for {{payrollRange}} payroll", emptyTitle: "Wire details submitted", content: "Once we receive the funds from your bank we'll pay your team on {{checkDate}}." }, m = {
|
|
2
2
|
title: t,
|
|
3
|
-
|
|
3
|
+
description: e,
|
|
4
|
+
amountLabel: n,
|
|
5
|
+
dateLabel: a,
|
|
6
|
+
bankNameLabel: i,
|
|
7
|
+
bankNameDescription: o,
|
|
8
|
+
bankNamePlaceholder: r,
|
|
9
|
+
notesLabel: s,
|
|
10
|
+
cancelCta: l,
|
|
11
|
+
submitCta: c,
|
|
12
|
+
validations: u,
|
|
13
|
+
confirmationAlert: d
|
|
4
14
|
};
|
|
5
15
|
export {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
16
|
+
n as amountLabel,
|
|
17
|
+
o as bankNameDescription,
|
|
18
|
+
i as bankNameLabel,
|
|
19
|
+
r as bankNamePlaceholder,
|
|
20
|
+
l as cancelCta,
|
|
21
|
+
d as confirmationAlert,
|
|
22
|
+
a as dateLabel,
|
|
23
|
+
m as default,
|
|
24
|
+
e as description,
|
|
25
|
+
s as notesLabel,
|
|
26
|
+
c as submitCta,
|
|
27
|
+
t as title,
|
|
28
|
+
u as validations
|
|
9
29
|
};
|
|
10
30
|
//# sourceMappingURL=Payroll.ConfirmWireDetailsForm.json.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Payroll.ConfirmWireDetailsForm.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Payroll.ConfirmWireDetailsForm.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;"}
|
|
@@ -1,30 +1,28 @@
|
|
|
1
|
-
const l = "All payrolls have been processed",
|
|
1
|
+
const l = "All payrolls have been processed", a = "Upcoming payroll", o = "Payrolls", e = "Run Payroll", t = "Review and submit", s = "Skip payroll", r = "Payroll actions", y = { title: "Skip payroll for {{payPeriod}}?", body: "Before skipping this payroll, check your state's pay frequency laws. If you don't pay the team on time, it could lead to penalties or fines.", confirmCta: "Yes, skip payroll", cancelCta: "No, go back" }, n = "Payroll skipped", i = { External: "External", "Off-Cycle": "Off-Cycle", Regular: "Regular" }, p = ["Pay Period", "Type", "Pay Date", "Run By", "Status"], c = {
|
|
2
2
|
emptyState: l,
|
|
3
|
-
title:
|
|
3
|
+
title: a,
|
|
4
4
|
payrollsListLabel: o,
|
|
5
|
-
runPayrollTitle:
|
|
5
|
+
runPayrollTitle: e,
|
|
6
6
|
submitPayrollCta: t,
|
|
7
7
|
skipPayrollCta: s,
|
|
8
8
|
payrollMenuLabel: r,
|
|
9
|
-
skipPayrollDialog:
|
|
10
|
-
skipSuccessAlert:
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
tableHeaders: i
|
|
9
|
+
skipPayrollDialog: y,
|
|
10
|
+
skipSuccessAlert: n,
|
|
11
|
+
type: i,
|
|
12
|
+
tableHeaders: p
|
|
14
13
|
};
|
|
15
14
|
export {
|
|
16
|
-
|
|
15
|
+
c as default,
|
|
17
16
|
l as emptyState,
|
|
18
17
|
r as payrollMenuLabel,
|
|
19
18
|
o as payrollsListLabel,
|
|
20
|
-
|
|
19
|
+
e as runPayrollTitle,
|
|
21
20
|
s as skipPayrollCta,
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
c as status,
|
|
21
|
+
y as skipPayrollDialog,
|
|
22
|
+
n as skipSuccessAlert,
|
|
25
23
|
t as submitPayrollCta,
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
24
|
+
p as tableHeaders,
|
|
25
|
+
a as title,
|
|
26
|
+
i as type
|
|
29
27
|
};
|
|
30
28
|
//# sourceMappingURL=Payroll.PayrollList.json.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Payroll.PayrollList.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Payroll.PayrollList.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;"}
|