@gusto/embedded-react-sdk 0.7.0 → 0.8.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 +35 -0
- package/dist/_virtual/dynamic-import-helper.js +17 -0
- package/dist/_virtual/dynamic-import-helper.js.map +1 -0
- package/dist/assets/icons/alert-circle.svg.js +10 -0
- package/dist/assets/icons/alert-circle.svg.js.map +1 -0
- package/dist/assets/icons/caret-down.svg.js +10 -0
- package/dist/assets/icons/caret-down.svg.js.map +1 -0
- package/dist/assets/icons/caret-left.svg.js +10 -0
- package/dist/assets/icons/caret-left.svg.js.map +1 -0
- package/dist/assets/icons/caret-right.svg.js +10 -0
- package/dist/assets/icons/caret-right.svg.js.map +1 -0
- package/dist/assets/icons/checkbox.svg.js +10 -0
- package/dist/assets/icons/checkbox.svg.js.map +1 -0
- package/dist/assets/icons/error.svg.js +10 -0
- package/dist/assets/icons/error.svg.js.map +1 -0
- package/dist/assets/icons/hamburger.svg.js +10 -0
- package/dist/assets/icons/hamburger.svg.js.map +1 -0
- package/dist/assets/icons/info.svg.js +10 -0
- package/dist/assets/icons/info.svg.js.map +1 -0
- package/dist/assets/icons/list.svg.js +10 -0
- package/dist/assets/icons/list.svg.js.map +1 -0
- package/dist/assets/icons/magnifyingGlass.png.js +5 -0
- package/dist/assets/icons/magnifyingGlass.png.js.map +1 -0
- package/dist/assets/icons/pagination_first.svg.js +10 -0
- package/dist/assets/icons/pagination_first.svg.js.map +1 -0
- package/dist/assets/icons/pagination_last.svg.js +10 -0
- package/dist/assets/icons/pagination_last.svg.js.map +1 -0
- package/dist/assets/icons/pagination_next.svg.js +10 -0
- package/dist/assets/icons/pagination_next.svg.js.map +1 -0
- package/dist/assets/icons/pagination_previous.svg.js +10 -0
- package/dist/assets/icons/pagination_previous.svg.js.map +1 -0
- package/dist/assets/icons/pencil.svg.js +10 -0
- package/dist/assets/icons/pencil.svg.js.map +1 -0
- package/dist/assets/icons/success_check.svg.js +10 -0
- package/dist/assets/icons/success_check.svg.js.map +1 -0
- package/dist/assets/icons/trashcan.svg.js +10 -0
- package/dist/assets/icons/trashcan.svg.js.map +1 -0
- package/dist/assets/icons/unchecked_circular.svg.js +10 -0
- package/dist/assets/icons/unchecked_circular.svg.js.map +1 -0
- package/dist/assets/icons/verification_pending.svg.js +10 -0
- package/dist/assets/icons/verification_pending.svg.js.map +1 -0
- package/dist/assets/icons/warning.svg.js +10 -0
- package/dist/assets/icons/warning.svg.js.map +1 -0
- package/dist/components/Base/Base.d.ts +16 -0
- package/dist/components/Base/Base.js +78 -0
- package/dist/components/Base/Base.js.map +1 -0
- package/dist/components/Base/createCompoundContext.d.ts +1 -0
- package/dist/components/Base/createCompoundContext.js +14 -0
- package/dist/components/Base/createCompoundContext.js.map +1 -0
- package/dist/components/Base/index.d.ts +3 -0
- package/dist/components/Base/useBase.d.ts +20 -0
- package/dist/components/Base/useBase.js +12 -0
- package/dist/components/Base/useBase.js.map +1 -0
- package/dist/components/Common/ActionsLayout/ActionsLayout.d.ts +7 -0
- package/dist/components/Common/ActionsLayout/ActionsLayout.js +22 -0
- package/dist/components/Common/ActionsLayout/ActionsLayout.js.map +1 -0
- package/dist/components/Common/ActionsLayout/index.d.ts +1 -0
- package/dist/components/Common/Alert/Alert.d.ts +9 -0
- package/dist/components/Common/DataView/DataCards/DataCards.d.ts +9 -0
- package/dist/components/Common/DataView/DataCards/DataCards.js +36 -0
- package/dist/components/Common/DataView/DataCards/DataCards.js.map +1 -0
- package/dist/components/Common/DataView/DataCards/DataCards.module.scss.js +8 -0
- package/dist/components/Common/DataView/DataCards/DataCards.module.scss.js.map +1 -0
- package/dist/components/Common/DataView/DataCards/index.d.ts +1 -0
- package/dist/components/Common/DataView/DataTable/DataTable.d.ts +10 -0
- package/dist/components/Common/DataView/DataTable/DataTable.js +86 -0
- package/dist/components/Common/DataView/DataTable/DataTable.js.map +1 -0
- package/dist/components/Common/DataView/DataView.d.ts +12 -0
- package/dist/components/Common/DataView/DataView.js +34 -0
- package/dist/components/Common/DataView/DataView.js.map +1 -0
- package/dist/components/Common/DataView/DataView.module.scss.js +8 -0
- package/dist/components/Common/DataView/DataView.module.scss.js.map +1 -0
- package/dist/components/Common/DataView/index.d.ts +4 -0
- package/dist/components/Common/DataView/useDataView.d.ts +28 -0
- package/dist/components/Common/DataView/useDataView.js +20 -0
- package/dist/components/Common/DataView/useDataView.js.map +1 -0
- package/dist/components/Common/DocumentList/DocumentList.d.ts +26 -0
- package/dist/components/Common/DocumentList/DocumentList.js +40 -0
- package/dist/components/Common/DocumentList/DocumentList.js.map +1 -0
- package/dist/components/Common/DocumentList/DocumentList.module.scss.js +16 -0
- package/dist/components/Common/DocumentList/DocumentList.module.scss.js.map +1 -0
- package/dist/components/Common/DocumentList/index.d.ts +1 -0
- package/dist/components/Common/DocumentViewer/DocumentViewer.d.ts +9 -0
- package/dist/components/Common/DocumentViewer/DocumentViewer.js +48 -0
- package/dist/components/Common/DocumentViewer/DocumentViewer.js.map +1 -0
- package/dist/components/Common/DocumentViewer/DocumentViewer.module.scss.js +18 -0
- package/dist/components/Common/DocumentViewer/DocumentViewer.module.scss.js.map +1 -0
- package/dist/components/Common/DocumentViewer/index.d.ts +1 -0
- package/dist/components/Common/EmptyData/EmptyData.d.ts +7 -0
- package/dist/components/Common/EmptyData/EmptyData.js +19 -0
- package/dist/components/Common/EmptyData/EmptyData.js.map +1 -0
- package/dist/components/Common/EmptyData/EmptyData.module.scss.js +10 -0
- package/dist/components/Common/EmptyData/EmptyData.module.scss.js.map +1 -0
- package/dist/components/Common/FadeIn/FadeIn.d.ts +4 -0
- package/dist/components/Common/FadeIn/FadeIn.js +18 -0
- package/dist/components/Common/FadeIn/FadeIn.js.map +1 -0
- package/dist/components/Common/FadeIn/FadeIn.module.scss.js +10 -0
- package/dist/components/Common/FadeIn/FadeIn.module.scss.js.map +1 -0
- package/dist/components/Common/Fields/CheckboxField/CheckboxField.d.ts +5 -0
- package/dist/components/Common/Fields/CheckboxField/CheckboxField.js +28 -0
- package/dist/components/Common/Fields/CheckboxField/CheckboxField.js.map +1 -0
- package/dist/components/Common/Fields/CheckboxField/index.d.ts +1 -0
- package/dist/components/Common/Fields/CheckboxGroupField/CheckboxGroupField.d.ts +10 -0
- package/dist/components/Common/Fields/CheckboxGroupField/CheckboxGroupField.js +36 -0
- package/dist/components/Common/Fields/CheckboxGroupField/CheckboxGroupField.js.map +1 -0
- package/dist/components/Common/Fields/CheckboxGroupField/index.d.ts +1 -0
- package/dist/components/Common/Fields/ComboBoxField/ComboBoxField.d.ts +10 -0
- package/dist/components/Common/Fields/ComboBoxField/ComboBoxField.js +36 -0
- package/dist/components/Common/Fields/ComboBoxField/ComboBoxField.js.map +1 -0
- package/dist/components/Common/Fields/ComboBoxField/index.d.ts +2 -0
- package/dist/components/Common/Fields/DatePickerField/DatePickerField.d.ts +6 -0
- package/dist/components/Common/Fields/DatePickerField/DatePickerField.js +28 -0
- package/dist/components/Common/Fields/DatePickerField/DatePickerField.js.map +1 -0
- package/dist/components/Common/Fields/DatePickerField/index.d.ts +1 -0
- package/dist/components/Common/Fields/NumberInputField/NumberInputField.d.ts +5 -0
- package/dist/components/Common/Fields/NumberInputField/NumberInputField.js +31 -0
- package/dist/components/Common/Fields/NumberInputField/NumberInputField.js.map +1 -0
- package/dist/components/Common/Fields/NumberInputField/index.d.ts +1 -0
- package/dist/components/Common/Fields/RadioGroupField/RadioGroupField.d.ts +10 -0
- package/dist/components/Common/Fields/RadioGroupField/RadioGroupField.js +36 -0
- package/dist/components/Common/Fields/RadioGroupField/RadioGroupField.js.map +1 -0
- package/dist/components/Common/Fields/RadioGroupField/index.d.ts +2 -0
- package/dist/components/Common/Fields/SelectField/SelectField.d.ts +10 -0
- package/dist/components/Common/Fields/SelectField/SelectField.js +36 -0
- package/dist/components/Common/Fields/SelectField/SelectField.js.map +1 -0
- package/dist/components/Common/Fields/SelectField/index.d.ts +2 -0
- package/dist/components/Common/Fields/SwitchField/SwitchField.d.ts +5 -0
- package/dist/components/Common/Fields/SwitchField/SwitchField.js +28 -0
- package/dist/components/Common/Fields/SwitchField/SwitchField.js.map +1 -0
- package/dist/components/Common/Fields/SwitchField/index.d.ts +1 -0
- package/dist/components/Common/Fields/TextInputField/TextInputField.d.ts +5 -0
- package/dist/components/Common/Fields/TextInputField/TextInputField.js +28 -0
- package/dist/components/Common/Fields/TextInputField/TextInputField.js.map +1 -0
- package/dist/components/Common/Fields/TextInputField/index.d.ts +1 -0
- package/dist/components/Common/Fields/hooks/useField.d.ts +22 -0
- package/dist/components/Common/Fields/hooks/useField.js +36 -0
- package/dist/components/Common/Fields/hooks/useField.js.map +1 -0
- package/dist/components/Common/Fields/hooks/useStringifyGenericFieldValue.d.ts +31 -0
- package/dist/components/Common/Fields/hooks/useStringifyGenericFieldValue.js +73 -0
- package/dist/components/Common/Fields/hooks/useStringifyGenericFieldValue.js.map +1 -0
- package/dist/components/Common/Flex/Flex.d.ts +14 -0
- package/dist/components/Common/Flex/Flex.js +22 -0
- package/dist/components/Common/Flex/Flex.js.map +1 -0
- package/dist/components/Common/Flex/Flex.module.scss.js +10 -0
- package/dist/components/Common/Flex/Flex.module.scss.js.map +1 -0
- package/dist/components/Common/Flex/index.d.ts +1 -0
- package/dist/components/Common/Form/Form.d.ts +2 -0
- package/dist/components/Common/Form/Form.js +8 -0
- package/dist/components/Common/Form/Form.js.map +1 -0
- package/dist/components/Common/Form/Form.module.scss.js +8 -0
- package/dist/components/Common/Form/Form.module.scss.js.map +1 -0
- package/dist/components/Common/Form/index.d.ts +2 -0
- package/dist/components/Common/Grid/Grid.d.ts +18 -0
- package/dist/components/Common/Grid/Grid.js +32 -0
- package/dist/components/Common/Grid/Grid.js.map +1 -0
- package/dist/components/Common/Grid/Grid.module.scss.js +10 -0
- package/dist/components/Common/Grid/Grid.module.scss.js.map +1 -0
- package/dist/components/Common/HamburgerMenu/HamburgerMenu.d.ts +2 -0
- package/dist/components/Common/HamburgerMenu/HamburgerMenu.js +40 -0
- package/dist/components/Common/HamburgerMenu/HamburgerMenu.js.map +1 -0
- package/dist/components/Common/HamburgerMenu/HamburgerMenuTypes.d.ts +9 -0
- package/dist/components/Common/HamburgerMenu/index.d.ts +1 -0
- package/dist/components/Common/InternalError/InternalError.d.ts +2 -0
- package/dist/components/Common/InternalError/InternalError.js +26 -0
- package/dist/components/Common/InternalError/InternalError.js.map +1 -0
- package/dist/components/Common/InternalError/InternalError.module.scss.js +12 -0
- package/dist/components/Common/InternalError/InternalError.module.scss.js.map +1 -0
- package/dist/components/Common/Loading/Loading.d.ts +1 -0
- package/dist/components/Common/Loading/Loading.js +22 -0
- package/dist/components/Common/Loading/Loading.js.map +1 -0
- package/dist/components/Common/Loading/Loading.module.scss.js +12 -0
- package/dist/components/Common/Loading/Loading.module.scss.js.map +1 -0
- package/dist/components/Common/PaginationControl/PaginationControl.d.ts +2 -0
- package/dist/components/Common/PaginationControl/PaginationControl.js +86 -0
- package/dist/components/Common/PaginationControl/PaginationControl.js.map +1 -0
- package/dist/components/Common/PaginationControl/PaginationControl.module.scss.js +12 -0
- package/dist/components/Common/PaginationControl/PaginationControl.module.scss.js.map +1 -0
- package/dist/components/Common/PaginationControl/PaginationControlTypes.d.ts +9 -0
- package/dist/components/Common/PaginationControl/index.d.ts +2 -0
- package/dist/components/Common/ReorderableList/DropZone.d.ts +11 -0
- package/dist/components/Common/ReorderableList/DropZone.js +62 -0
- package/dist/components/Common/ReorderableList/DropZone.js.map +1 -0
- package/dist/components/Common/ReorderableList/ReorderableItem.d.ts +28 -0
- package/dist/components/Common/ReorderableList/ReorderableItem.js +139 -0
- package/dist/components/Common/ReorderableList/ReorderableItem.js.map +1 -0
- package/dist/components/Common/ReorderableList/ReorderableList.d.ts +25 -0
- package/dist/components/Common/ReorderableList/ReorderableList.js +192 -0
- package/dist/components/Common/ReorderableList/ReorderableList.js.map +1 -0
- package/dist/components/Common/ReorderableList/ReorderableList.module.scss.js +28 -0
- package/dist/components/Common/ReorderableList/ReorderableList.module.scss.js.map +1 -0
- package/dist/components/Common/ReorderableList/ReorderableListTypes.d.ts +6 -0
- package/dist/components/Common/ReorderableList/constants.d.ts +4 -0
- package/dist/components/Common/ReorderableList/constants.js +5 -0
- package/dist/components/Common/ReorderableList/constants.js.map +1 -0
- package/dist/components/Common/ReorderableList/index.d.ts +2 -0
- package/dist/components/Common/RequirementsList/RequirementsList.d.ts +9 -0
- package/dist/components/Common/RequirementsList/RequirementsList.js +21 -0
- package/dist/components/Common/RequirementsList/RequirementsList.js.map +1 -0
- package/dist/components/Common/RequirementsList/RequirementsList.module.scss.js +14 -0
- package/dist/components/Common/RequirementsList/RequirementsList.module.scss.js.map +1 -0
- package/dist/components/Common/SignatureForm/SignatureForm.d.ts +14 -0
- package/dist/components/Common/SignatureForm/SignatureForm.js +26 -0
- package/dist/components/Common/SignatureForm/SignatureForm.js.map +1 -0
- package/dist/components/Common/SignatureForm/SignatureForm.module.scss.js +10 -0
- package/dist/components/Common/SignatureForm/SignatureForm.module.scss.js.map +1 -0
- package/dist/components/Common/SignatureForm/SignatureFormActions.d.ts +8 -0
- package/dist/components/Common/SignatureForm/SignatureFormActions.js +19 -0
- package/dist/components/Common/SignatureForm/SignatureFormActions.js.map +1 -0
- package/dist/components/Common/SignatureForm/SignatureFormFields.d.ts +9 -0
- package/dist/components/Common/SignatureForm/SignatureFormFields.js +36 -0
- package/dist/components/Common/SignatureForm/SignatureFormFields.js.map +1 -0
- package/dist/components/Common/SignatureForm/index.d.ts +4 -0
- package/dist/components/Common/TaxInputs/TaxInputs.d.ts +25 -0
- package/dist/components/Common/TaxInputs/TaxInputs.js +144 -0
- package/dist/components/Common/TaxInputs/TaxInputs.js.map +1 -0
- package/dist/components/Common/TaxInputs/index.d.ts +1 -0
- package/dist/components/Common/Toast/Toast.d.ts +4 -0
- package/dist/components/Common/UI/Alert/Alert.d.ts +2 -0
- package/dist/components/Common/UI/Alert/Alert.js +31 -0
- package/dist/components/Common/UI/Alert/Alert.js.map +1 -0
- package/dist/components/Common/UI/Alert/Alert.module.scss.js +14 -0
- package/dist/components/Common/UI/Alert/Alert.module.scss.js.map +1 -0
- package/dist/components/Common/UI/Alert/AlertTypes.d.ts +11 -0
- package/dist/components/Common/UI/Alert/index.d.ts +1 -0
- package/dist/components/Common/UI/Badge/Badge.d.ts +3 -0
- package/dist/components/Common/UI/Badge/Badge.js +13 -0
- package/dist/components/Common/UI/Badge/Badge.js.map +1 -0
- package/dist/components/Common/UI/Badge/Badge.module.scss.js +8 -0
- package/dist/components/Common/UI/Badge/Badge.module.scss.js.map +1 -0
- package/dist/components/Common/UI/Badge/BadgeTypes.d.ts +5 -0
- package/dist/components/Common/UI/Button/Button.d.ts +2 -0
- package/dist/components/Common/UI/Button/Button.js +39 -0
- package/dist/components/Common/UI/Button/Button.js.map +1 -0
- package/dist/components/Common/UI/Button/Button.module.scss.js +8 -0
- package/dist/components/Common/UI/Button/Button.module.scss.js.map +1 -0
- package/dist/components/Common/UI/Button/ButtonIcon.d.ts +2 -0
- package/dist/components/Common/UI/Button/ButtonIcon.js +9 -0
- package/dist/components/Common/UI/Button/ButtonIcon.js.map +1 -0
- package/dist/components/Common/UI/Button/ButtonTypes.d.ts +16 -0
- package/dist/components/Common/UI/Button/index.d.ts +3 -0
- package/dist/components/Common/UI/CalendarPreview/CalendarLegend.d.ts +3 -0
- package/dist/components/Common/UI/CalendarPreview/CalendarLegend.js +37 -0
- package/dist/components/Common/UI/CalendarPreview/CalendarLegend.js.map +1 -0
- package/dist/components/Common/UI/CalendarPreview/CalendarPreview.d.ts +2 -0
- package/dist/components/Common/UI/CalendarPreview/CalendarPreview.js +64 -0
- package/dist/components/Common/UI/CalendarPreview/CalendarPreview.js.map +1 -0
- package/dist/components/Common/UI/CalendarPreview/CalendarPreview.module.scss.js +14 -0
- package/dist/components/Common/UI/CalendarPreview/CalendarPreview.module.scss.js.map +1 -0
- package/dist/components/Common/UI/CalendarPreview/CalendarPreviewTypes.d.ts +12 -0
- package/dist/components/Common/UI/CalendarPreview/index.d.ts +3 -0
- package/dist/components/Common/UI/Card/Card.d.ts +2 -0
- package/dist/components/Common/UI/Card/Card.js +25 -0
- package/dist/components/Common/UI/Card/Card.js.map +1 -0
- package/dist/components/Common/UI/Card/Card.module.scss.js +8 -0
- package/dist/components/Common/UI/Card/Card.module.scss.js.map +1 -0
- package/dist/components/Common/UI/Card/CardTypes.d.ts +11 -0
- package/dist/components/Common/UI/Checkbox/Checkbox.d.ts +2 -0
- package/dist/components/Common/UI/Checkbox/Checkbox.js +68 -0
- package/dist/components/Common/UI/Checkbox/Checkbox.js.map +1 -0
- package/dist/components/Common/UI/Checkbox/Checkbox.module.scss.js +14 -0
- package/dist/components/Common/UI/Checkbox/Checkbox.module.scss.js.map +1 -0
- package/dist/components/Common/UI/Checkbox/CheckboxTypes.d.ts +9 -0
- package/dist/components/Common/UI/Checkbox/index.d.ts +1 -0
- package/dist/components/Common/UI/CheckboxGroup/CheckboxGroup.d.ts +2 -0
- package/dist/components/Common/UI/CheckboxGroup/CheckboxGroup.js +105 -0
- package/dist/components/Common/UI/CheckboxGroup/CheckboxGroup.js.map +1 -0
- package/dist/components/Common/UI/CheckboxGroup/CheckboxGroup.module.scss.js +8 -0
- package/dist/components/Common/UI/CheckboxGroup/CheckboxGroup.module.scss.js.map +1 -0
- package/dist/components/Common/UI/CheckboxGroup/CheckboxGroupTypes.d.ts +16 -0
- package/dist/components/Common/UI/CheckboxGroup/index.d.ts +1 -0
- package/dist/components/Common/UI/ComboBox/ComboBox.d.ts +2 -0
- package/dist/components/Common/UI/ComboBox/ComboBox.js +90 -0
- package/dist/components/Common/UI/ComboBox/ComboBox.js.map +1 -0
- package/dist/components/Common/UI/ComboBox/ComboBox.module.scss.js +12 -0
- package/dist/components/Common/UI/ComboBox/ComboBox.module.scss.js.map +1 -0
- package/dist/components/Common/UI/ComboBox/ComboBoxTypes.d.ts +16 -0
- package/dist/components/Common/UI/DatePicker/DatePicker.d.ts +2 -0
- package/dist/components/Common/UI/DatePicker/DatePicker.js +102 -0
- package/dist/components/Common/UI/DatePicker/DatePicker.js.map +1 -0
- package/dist/components/Common/UI/DatePicker/DatePicker.module.scss.js +14 -0
- package/dist/components/Common/UI/DatePicker/DatePicker.module.scss.js.map +1 -0
- package/dist/components/Common/UI/DatePicker/DatePickerTypes.d.ts +12 -0
- package/dist/components/Common/UI/DatePicker/index.d.ts +1 -0
- package/dist/components/Common/UI/FieldCaption/FieldCaption.d.ts +9 -0
- package/dist/components/Common/UI/FieldCaption/FieldCaption.js +30 -0
- package/dist/components/Common/UI/FieldCaption/FieldCaption.js.map +1 -0
- package/dist/components/Common/UI/FieldCaption/FieldCaption.module.scss.js +10 -0
- package/dist/components/Common/UI/FieldCaption/FieldCaption.module.scss.js.map +1 -0
- package/dist/components/Common/UI/FieldCaption/index.d.ts +1 -0
- package/dist/components/Common/UI/FieldDescription/FieldDescription.d.ts +7 -0
- package/dist/components/Common/UI/FieldDescription/FieldDescription.js +19 -0
- package/dist/components/Common/UI/FieldDescription/FieldDescription.js.map +1 -0
- package/dist/components/Common/UI/FieldDescription/FieldDescription.module.scss.js +8 -0
- package/dist/components/Common/UI/FieldDescription/FieldDescription.module.scss.js.map +1 -0
- package/dist/components/Common/UI/FieldDescription/index.d.ts +1 -0
- package/dist/components/Common/UI/FieldErrorMessage/FieldErrorMessage.d.ts +6 -0
- package/dist/components/Common/UI/FieldErrorMessage/FieldErrorMessage.js +28 -0
- package/dist/components/Common/UI/FieldErrorMessage/FieldErrorMessage.js.map +1 -0
- package/dist/components/Common/UI/FieldErrorMessage/FieldErrorMessage.module.scss.js +10 -0
- package/dist/components/Common/UI/FieldErrorMessage/FieldErrorMessage.module.scss.js.map +1 -0
- package/dist/components/Common/UI/FieldErrorMessage/index.d.ts +1 -0
- package/dist/components/Common/UI/FieldLayout/FieldLayout.d.ts +2 -0
- package/dist/components/Common/UI/FieldLayout/FieldLayout.js +57 -0
- package/dist/components/Common/UI/FieldLayout/FieldLayout.js.map +1 -0
- package/dist/components/Common/UI/FieldLayout/FieldLayout.module.scss.js +16 -0
- package/dist/components/Common/UI/FieldLayout/FieldLayout.module.scss.js.map +1 -0
- package/dist/components/Common/UI/FieldLayout/FieldLayoutTypes.d.ts +19 -0
- package/dist/components/Common/UI/FieldLayout/index.d.ts +1 -0
- package/dist/components/Common/UI/Fieldset/Fieldset.d.ts +11 -0
- package/dist/components/Common/UI/Fieldset/Fieldset.js +66 -0
- package/dist/components/Common/UI/Fieldset/Fieldset.js.map +1 -0
- package/dist/components/Common/UI/Fieldset/Fieldset.module.scss.js +16 -0
- package/dist/components/Common/UI/Fieldset/Fieldset.module.scss.js.map +1 -0
- package/dist/components/Common/UI/Fieldset/index.d.ts +1 -0
- package/dist/components/Common/UI/Heading/Heading.d.ts +2 -0
- package/dist/components/Common/UI/Heading/Heading.js +28 -0
- package/dist/components/Common/UI/Heading/Heading.js.map +1 -0
- package/dist/components/Common/UI/Heading/Heading.module.scss.js +23 -0
- package/dist/components/Common/UI/Heading/Heading.module.scss.js.map +1 -0
- package/dist/components/Common/UI/Heading/HeadingTypes.d.ts +7 -0
- package/dist/components/Common/UI/Heading/index.d.ts +2 -0
- package/dist/components/Common/UI/HorizontalFieldLayout/HorizontalFieldLayout.d.ts +2 -0
- package/dist/components/Common/UI/HorizontalFieldLayout/HorizontalFieldLayout.js +45 -0
- package/dist/components/Common/UI/HorizontalFieldLayout/HorizontalFieldLayout.js.map +1 -0
- package/dist/components/Common/UI/HorizontalFieldLayout/HorizontalFieldLayout.module.scss.js +20 -0
- package/dist/components/Common/UI/HorizontalFieldLayout/HorizontalFieldLayout.module.scss.js.map +1 -0
- package/dist/components/Common/UI/HorizontalFieldLayout/HorizontalFieldLayoutTypes.d.ts +3 -0
- package/dist/components/Common/UI/HorizontalFieldLayout/index.d.ts +1 -0
- package/dist/components/Common/UI/Input/Input.d.ts +2 -0
- package/dist/components/Common/UI/Input/Input.js +41 -0
- package/dist/components/Common/UI/Input/Input.js.map +1 -0
- package/dist/components/Common/UI/Input/Input.module.scss.js +20 -0
- package/dist/components/Common/UI/Input/Input.module.scss.js.map +1 -0
- package/dist/components/Common/UI/Input/InputTypes.d.ts +19 -0
- package/dist/components/Common/UI/Input/index.d.ts +2 -0
- package/dist/components/Common/UI/Link/Link.d.ts +2 -0
- package/dist/components/Common/UI/Link/Link.js +11 -0
- package/dist/components/Common/UI/Link/Link.js.map +1 -0
- package/dist/components/Common/UI/Link/Link.module.scss.js +8 -0
- package/dist/components/Common/UI/Link/Link.module.scss.js.map +1 -0
- package/dist/components/Common/UI/Link/LinkTypes.d.ts +2 -0
- package/dist/components/Common/UI/Link/index.d.ts +1 -0
- package/dist/components/Common/UI/List/List.module.scss.js +10 -0
- package/dist/components/Common/UI/List/List.module.scss.js.map +1 -0
- package/dist/components/Common/UI/List/ListTypes.d.ts +27 -0
- package/dist/components/Common/UI/List/OrderedList.d.ts +2 -0
- package/dist/components/Common/UI/List/OrderedList.js +13 -0
- package/dist/components/Common/UI/List/OrderedList.js.map +1 -0
- package/dist/components/Common/UI/List/UnorderedList.d.ts +2 -0
- package/dist/components/Common/UI/List/UnorderedList.js +13 -0
- package/dist/components/Common/UI/List/UnorderedList.js.map +1 -0
- package/dist/components/Common/UI/List/index.d.ts +3 -0
- package/dist/components/Common/UI/Menu/Menu.d.ts +2 -0
- package/dist/components/Common/UI/Menu/Menu.js +52 -0
- package/dist/components/Common/UI/Menu/Menu.js.map +1 -0
- package/dist/components/Common/UI/Menu/Menu.module.scss.js +12 -0
- package/dist/components/Common/UI/Menu/Menu.module.scss.js.map +1 -0
- package/dist/components/Common/UI/Menu/MenuTypes.d.ts +16 -0
- package/dist/components/Common/UI/Menu/index.d.ts +1 -0
- package/dist/components/Common/UI/NumberInput/NumberInput.d.ts +2 -0
- package/dist/components/Common/UI/NumberInput/NumberInput.js +99 -0
- package/dist/components/Common/UI/NumberInput/NumberInput.js.map +1 -0
- package/dist/components/Common/UI/NumberInput/NumberInput.module.scss.js +8 -0
- package/dist/components/Common/UI/NumberInput/NumberInput.module.scss.js.map +1 -0
- package/dist/components/Common/UI/NumberInput/NumberInputTypes.d.ts +16 -0
- package/dist/components/Common/UI/NumberInput/index.d.ts +1 -0
- package/dist/components/Common/UI/ProgressBar/ProgressBar.d.ts +2 -0
- package/dist/components/Common/UI/ProgressBar/ProgressBar.js +14 -0
- package/dist/components/Common/UI/ProgressBar/ProgressBar.js.map +1 -0
- package/dist/components/Common/UI/ProgressBar/ProgressBar.module.scss.js +8 -0
- package/dist/components/Common/UI/ProgressBar/ProgressBar.module.scss.js.map +1 -0
- package/dist/components/Common/UI/ProgressBar/ProgressBarTypes.d.ts +6 -0
- package/dist/components/Common/UI/ProgressBar/index.d.ts +2 -0
- package/dist/components/Common/UI/Radio/Radio.d.ts +2 -0
- package/dist/components/Common/UI/Radio/Radio.js +67 -0
- package/dist/components/Common/UI/Radio/Radio.js.map +1 -0
- package/dist/components/Common/UI/Radio/Radio.module.scss.js +16 -0
- package/dist/components/Common/UI/Radio/Radio.module.scss.js.map +1 -0
- package/dist/components/Common/UI/Radio/RadioTypes.d.ts +9 -0
- package/dist/components/Common/UI/Radio/index.d.ts +1 -0
- package/dist/components/Common/UI/RadioGroup/RadioGroup.d.ts +2 -0
- package/dist/components/Common/UI/RadioGroup/RadioGroup.js +103 -0
- package/dist/components/Common/UI/RadioGroup/RadioGroup.js.map +1 -0
- package/dist/components/Common/UI/RadioGroup/RadioGroup.module.scss.js +8 -0
- package/dist/components/Common/UI/RadioGroup/RadioGroup.module.scss.js.map +1 -0
- package/dist/components/Common/UI/RadioGroup/RadioGroupTypes.d.ts +16 -0
- package/dist/components/Common/UI/RadioGroup/index.d.ts +1 -0
- package/dist/components/Common/UI/Select/Select.d.ts +2 -0
- package/dist/components/Common/UI/Select/Select.js +91 -0
- package/dist/components/Common/UI/Select/Select.js.map +1 -0
- package/dist/components/Common/UI/Select/Select.module.scss.js +12 -0
- package/dist/components/Common/UI/Select/Select.module.scss.js.map +1 -0
- package/dist/components/Common/UI/Select/SelectTypes.d.ts +17 -0
- package/dist/components/Common/UI/Select/index.d.ts +1 -0
- package/dist/components/Common/UI/Switch/Switch.d.ts +2 -0
- package/dist/components/Common/UI/Switch/Switch.js +65 -0
- package/dist/components/Common/UI/Switch/Switch.js.map +1 -0
- package/dist/components/Common/UI/Switch/Switch.module.scss.js +12 -0
- package/dist/components/Common/UI/Switch/Switch.module.scss.js.map +1 -0
- package/dist/components/Common/UI/Switch/SwitchTypes.d.ts +12 -0
- package/dist/components/Common/UI/Switch/index.d.ts +1 -0
- package/dist/components/Common/UI/Table/Table.d.ts +2 -0
- package/dist/components/Common/UI/Table/Table.js +14 -0
- package/dist/components/Common/UI/Table/Table.js.map +1 -0
- package/dist/components/Common/UI/Table/Table.module.scss.js +8 -0
- package/dist/components/Common/UI/Table/Table.module.scss.js.map +1 -0
- package/dist/components/Common/UI/Table/TableTypes.d.ts +14 -0
- package/dist/components/Common/UI/Table/index.d.ts +2 -0
- package/dist/components/Common/UI/Text/Text.d.ts +2 -0
- package/dist/components/Common/UI/Text/Text.js +29 -0
- package/dist/components/Common/UI/Text/Text.js.map +1 -0
- package/dist/components/Common/UI/Text/Text.module.scss.js +26 -0
- package/dist/components/Common/UI/Text/Text.module.scss.js.map +1 -0
- package/dist/components/Common/UI/Text/TextTypes.d.ts +9 -0
- package/dist/components/Common/UI/Text/index.d.ts +2 -0
- package/dist/components/Common/UI/TextInput/TextInput.d.ts +2 -0
- package/dist/components/Common/UI/TextInput/TextInput.js +71 -0
- package/dist/components/Common/UI/TextInput/TextInput.js.map +1 -0
- package/dist/components/Common/UI/TextInput/TextInputTypes.d.ts +12 -0
- package/dist/components/Common/UI/TextInput/index.d.ts +1 -0
- package/dist/components/Common/UI/hooks/useFieldIds.d.ts +14 -0
- package/dist/components/Common/UI/hooks/useFieldIds.js +20 -0
- package/dist/components/Common/UI/hooks/useFieldIds.js.map +1 -0
- package/dist/components/Common/UI/hooks/useFieldIds.test.d.ts +1 -0
- package/dist/components/Common/VisuallyHidden/VisuallyHidden.d.ts +13 -0
- package/dist/components/Common/VisuallyHidden/VisuallyHidden.js +15 -0
- package/dist/components/Common/VisuallyHidden/VisuallyHidden.js.map +1 -0
- package/dist/components/Common/VisuallyHidden/VisuallyHidden.module.scss.js +8 -0
- package/dist/components/Common/VisuallyHidden/VisuallyHidden.module.scss.js.map +1 -0
- package/dist/components/Common/VisuallyHidden/index.d.ts +2 -0
- package/dist/components/Common/hooks/useAsyncError.d.ts +5 -0
- package/dist/components/Common/hooks/useAsyncError.js +17 -0
- package/dist/components/Common/hooks/useAsyncError.js.map +1 -0
- package/dist/components/Common/hooks/useMenu.d.ts +13 -0
- package/dist/components/Common/hooks/useMenu.js +25 -0
- package/dist/components/Common/hooks/useMenu.js.map +1 -0
- package/dist/components/Common/hooks/useNumberFormatter.d.ts +3 -0
- package/dist/components/Common/hooks/useNumberFormatter.js +16 -0
- package/dist/components/Common/hooks/useNumberFormatter.js.map +1 -0
- package/dist/components/Common/index.d.ts +23 -0
- package/dist/components/Company/AssignSignatory/AssignSignatory.d.ts +14 -0
- package/dist/components/Company/AssignSignatory/AssignSignatory.js +65 -0
- package/dist/components/Company/AssignSignatory/AssignSignatory.js.map +1 -0
- package/dist/components/Company/AssignSignatory/AssignSignatorySelection.d.ts +1 -0
- package/dist/components/Company/AssignSignatory/AssignSignatorySelection.js +31 -0
- package/dist/components/Company/AssignSignatory/AssignSignatorySelection.js.map +1 -0
- package/dist/components/Company/AssignSignatory/AssignSignatorySelection.module.scss.js +8 -0
- package/dist/components/Company/AssignSignatory/AssignSignatorySelection.module.scss.js.map +1 -0
- package/dist/components/Company/AssignSignatory/CreateSignatory/Actions.d.ts +1 -0
- package/dist/components/Company/AssignSignatory/CreateSignatory/Actions.js +13 -0
- package/dist/components/Company/AssignSignatory/CreateSignatory/Actions.js.map +1 -0
- package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatory.d.ts +13 -0
- package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatory.js +120 -0
- package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatory.js.map +1 -0
- package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatory.module.scss.js +8 -0
- package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatory.module.scss.js.map +1 -0
- package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatoryForm.d.ts +4 -0
- package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatoryForm.js +139 -0
- package/dist/components/Company/AssignSignatory/CreateSignatory/CreateSignatoryForm.js.map +1 -0
- package/dist/components/Company/AssignSignatory/CreateSignatory/Schema.d.ts +15 -0
- package/dist/components/Company/AssignSignatory/CreateSignatory/Schema.js +24 -0
- package/dist/components/Company/AssignSignatory/CreateSignatory/Schema.js.map +1 -0
- package/dist/components/Company/AssignSignatory/CreateSignatory/index.d.ts +2 -0
- package/dist/components/Company/AssignSignatory/CreateSignatory/useCreateSignatory.d.ts +11 -0
- package/dist/components/Company/AssignSignatory/CreateSignatory/useCreateSignatory.js +17 -0
- package/dist/components/Company/AssignSignatory/CreateSignatory/useCreateSignatory.js.map +1 -0
- package/dist/components/Company/AssignSignatory/Head.d.ts +1 -0
- package/dist/components/Company/AssignSignatory/Head.js +14 -0
- package/dist/components/Company/AssignSignatory/Head.js.map +1 -0
- package/dist/components/Company/AssignSignatory/InviteSignatory/Actions.d.ts +1 -0
- package/dist/components/Company/AssignSignatory/InviteSignatory/Actions.js +13 -0
- package/dist/components/Company/AssignSignatory/InviteSignatory/Actions.js.map +1 -0
- package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatory.d.ts +12 -0
- package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatory.js +72 -0
- package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatory.js.map +1 -0
- package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatory.module.scss.js +8 -0
- package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatory.module.scss.js.map +1 -0
- package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatoryForm.d.ts +28 -0
- package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatoryForm.js +83 -0
- package/dist/components/Company/AssignSignatory/InviteSignatory/InviteSignatoryForm.js.map +1 -0
- package/dist/components/Company/AssignSignatory/InviteSignatory/index.d.ts +2 -0
- package/dist/components/Company/AssignSignatory/InviteSignatory/useInviteSignatory.d.ts +10 -0
- package/dist/components/Company/AssignSignatory/InviteSignatory/useInviteSignatory.js +17 -0
- package/dist/components/Company/AssignSignatory/InviteSignatory/useInviteSignatory.js.map +1 -0
- package/dist/components/Company/AssignSignatory/SignatoryForm.d.ts +1 -0
- package/dist/components/Company/AssignSignatory/SignatoryForm.js +28 -0
- package/dist/components/Company/AssignSignatory/SignatoryForm.js.map +1 -0
- package/dist/components/Company/AssignSignatory/TitleSelect.d.ts +2 -0
- package/dist/components/Company/AssignSignatory/TitleSelect.js +25 -0
- package/dist/components/Company/AssignSignatory/TitleSelect.js.map +1 -0
- package/dist/components/Company/AssignSignatory/index.d.ts +6 -0
- package/dist/components/Company/AssignSignatory/useAssignSignatory.d.ts +21 -0
- package/dist/components/Company/AssignSignatory/useAssignSignatory.js +21 -0
- package/dist/components/Company/AssignSignatory/useAssignSignatory.js.map +1 -0
- package/dist/components/Company/BankAccount/BankAccountComponents.d.ts +16 -0
- package/dist/components/Company/BankAccount/BankAccountComponents.js +38 -0
- package/dist/components/Company/BankAccount/BankAccountComponents.js.map +1 -0
- package/dist/components/Company/BankAccount/BankAccountFlow.d.ts +5 -0
- package/dist/components/Company/BankAccount/BankAccountFlow.js +24 -0
- package/dist/components/Company/BankAccount/BankAccountFlow.js.map +1 -0
- package/dist/components/Company/BankAccount/BankAccountForm/Actions.d.ts +1 -0
- package/dist/components/Company/BankAccount/BankAccountForm/Actions.js +13 -0
- package/dist/components/Company/BankAccount/BankAccountForm/Actions.js.map +1 -0
- package/dist/components/Company/BankAccount/BankAccountForm/BankAccountForm.d.ts +11 -0
- package/dist/components/Company/BankAccount/BankAccountForm/BankAccountForm.js +44 -0
- package/dist/components/Company/BankAccount/BankAccountForm/BankAccountForm.js.map +1 -0
- package/dist/components/Company/BankAccount/BankAccountForm/Form.d.ts +7 -0
- package/dist/components/Company/BankAccount/BankAccountForm/Form.js +39 -0
- package/dist/components/Company/BankAccount/BankAccountForm/Form.js.map +1 -0
- package/dist/components/Company/BankAccount/BankAccountForm/Head.d.ts +1 -0
- package/dist/components/Company/BankAccount/BankAccountForm/Head.js +14 -0
- package/dist/components/Company/BankAccount/BankAccountForm/Head.js.map +1 -0
- package/dist/components/Company/BankAccount/BankAccountForm/context.d.ts +5 -0
- package/dist/components/Company/BankAccount/BankAccountForm/context.js +17 -0
- package/dist/components/Company/BankAccount/BankAccountForm/context.js.map +1 -0
- package/dist/components/Company/BankAccount/BankAccountList/AccountView.d.ts +1 -0
- package/dist/components/Company/BankAccount/BankAccountList/AccountView.js +20 -0
- package/dist/components/Company/BankAccount/BankAccountList/AccountView.js.map +1 -0
- package/dist/components/Company/BankAccount/BankAccountList/Actions.d.ts +1 -0
- package/dist/components/Company/BankAccount/BankAccountList/Actions.js +16 -0
- package/dist/components/Company/BankAccount/BankAccountList/Actions.js.map +1 -0
- package/dist/components/Company/BankAccount/BankAccountList/BankAccountList.d.ts +12 -0
- package/dist/components/Company/BankAccount/BankAccountList/BankAccountList.js +55 -0
- package/dist/components/Company/BankAccount/BankAccountList/BankAccountList.js.map +1 -0
- package/dist/components/Company/BankAccount/BankAccountList/Head.d.ts +1 -0
- package/dist/components/Company/BankAccount/BankAccountList/Head.js +44 -0
- package/dist/components/Company/BankAccount/BankAccountList/Head.js.map +1 -0
- package/dist/components/Company/BankAccount/BankAccountList/context.d.ts +10 -0
- package/dist/components/Company/BankAccount/BankAccountList/context.js +7 -0
- package/dist/components/Company/BankAccount/BankAccountList/context.js.map +1 -0
- package/dist/components/Company/BankAccount/BankAccountVerify/Actions.d.ts +1 -0
- package/dist/components/Company/BankAccount/BankAccountVerify/Actions.js +33 -0
- package/dist/components/Company/BankAccount/BankAccountVerify/Actions.js.map +1 -0
- package/dist/components/Company/BankAccount/BankAccountVerify/BankAccountVerify.d.ts +12 -0
- package/dist/components/Company/BankAccount/BankAccountVerify/BankAccountVerify.js +54 -0
- package/dist/components/Company/BankAccount/BankAccountVerify/BankAccountVerify.js.map +1 -0
- package/dist/components/Company/BankAccount/BankAccountVerify/Form.d.ts +7 -0
- package/dist/components/Company/BankAccount/BankAccountVerify/Form.js +41 -0
- package/dist/components/Company/BankAccount/BankAccountVerify/Form.js.map +1 -0
- package/dist/components/Company/BankAccount/BankAccountVerify/Head.d.ts +1 -0
- package/dist/components/Company/BankAccount/BankAccountVerify/Head.js +14 -0
- package/dist/components/Company/BankAccount/BankAccountVerify/Head.js.map +1 -0
- package/dist/components/Company/BankAccount/BankAccountVerify/context.d.ts +6 -0
- package/dist/components/Company/BankAccount/BankAccountVerify/context.js +7 -0
- package/dist/components/Company/BankAccount/BankAccountVerify/context.js.map +1 -0
- package/dist/components/Company/BankAccount/stateMachine.d.ts +6 -0
- package/dist/components/Company/BankAccount/stateMachine.js +66 -0
- package/dist/components/Company/BankAccount/stateMachine.js.map +1 -0
- package/dist/components/Company/DocumentSignerFlow/DocumentList/Actions.d.ts +5 -0
- package/dist/components/Company/DocumentSignerFlow/DocumentList/Actions.js +13 -0
- package/dist/components/Company/DocumentSignerFlow/DocumentList/Actions.js.map +1 -0
- package/dist/components/Company/DocumentSignerFlow/DocumentList/DocumentList.d.ts +13 -0
- package/dist/components/Company/DocumentSignerFlow/DocumentList/DocumentList.js +69 -0
- package/dist/components/Company/DocumentSignerFlow/DocumentList/DocumentList.js.map +1 -0
- package/dist/components/Company/DocumentSignerFlow/DocumentList/Head.d.ts +1 -0
- package/dist/components/Company/DocumentSignerFlow/DocumentList/Head.js +11 -0
- package/dist/components/Company/DocumentSignerFlow/DocumentList/Head.js.map +1 -0
- package/dist/components/Company/DocumentSignerFlow/DocumentList/List.d.ts +2 -0
- package/dist/components/Company/DocumentSignerFlow/DocumentList/List.js +40 -0
- package/dist/components/Company/DocumentSignerFlow/DocumentList/List.js.map +1 -0
- package/dist/components/Company/DocumentSignerFlow/DocumentList/ManageSignatories.d.ts +1 -0
- package/dist/components/Company/DocumentSignerFlow/DocumentList/ManageSignatories.js +35 -0
- package/dist/components/Company/DocumentSignerFlow/DocumentList/ManageSignatories.js.map +1 -0
- package/dist/components/Company/DocumentSignerFlow/DocumentList/ManageSignatories.module.scss.js +8 -0
- package/dist/components/Company/DocumentSignerFlow/DocumentList/ManageSignatories.module.scss.js.map +1 -0
- package/dist/components/Company/DocumentSignerFlow/DocumentList/index.d.ts +1 -0
- package/dist/components/Company/DocumentSignerFlow/DocumentList/useDocumentList.d.ts +13 -0
- package/dist/components/Company/DocumentSignerFlow/DocumentList/useDocumentList.js +19 -0
- package/dist/components/Company/DocumentSignerFlow/DocumentList/useDocumentList.js.map +1 -0
- package/dist/components/Company/DocumentSignerFlow/DocumentSignerFlow.d.ts +6 -0
- package/dist/components/Company/DocumentSignerFlow/DocumentSignerFlow.js +35 -0
- package/dist/components/Company/DocumentSignerFlow/DocumentSignerFlow.js.map +1 -0
- package/dist/components/Company/DocumentSignerFlow/SignatureForm/Actions.d.ts +1 -0
- package/dist/components/Company/DocumentSignerFlow/SignatureForm/Actions.js +20 -0
- package/dist/components/Company/DocumentSignerFlow/SignatureForm/Actions.js.map +1 -0
- package/dist/components/Company/DocumentSignerFlow/SignatureForm/Form.d.ts +1 -0
- package/dist/components/Company/DocumentSignerFlow/SignatureForm/Form.js +20 -0
- package/dist/components/Company/DocumentSignerFlow/SignatureForm/Form.js.map +1 -0
- package/dist/components/Company/DocumentSignerFlow/SignatureForm/Head.d.ts +1 -0
- package/dist/components/Company/DocumentSignerFlow/SignatureForm/Head.js +35 -0
- package/dist/components/Company/DocumentSignerFlow/SignatureForm/Head.js.map +1 -0
- package/dist/components/Company/DocumentSignerFlow/SignatureForm/Preview.d.ts +1 -0
- package/dist/components/Company/DocumentSignerFlow/SignatureForm/Preview.js +20 -0
- package/dist/components/Company/DocumentSignerFlow/SignatureForm/Preview.js.map +1 -0
- package/dist/components/Company/DocumentSignerFlow/SignatureForm/SignatureForm.d.ts +17 -0
- package/dist/components/Company/DocumentSignerFlow/SignatureForm/SignatureForm.js +78 -0
- package/dist/components/Company/DocumentSignerFlow/SignatureForm/SignatureForm.js.map +1 -0
- package/dist/components/Company/DocumentSignerFlow/SignatureForm/index.d.ts +1 -0
- package/dist/components/Company/DocumentSignerFlow/SignatureForm/useSignatureForm.d.ts +9 -0
- package/dist/components/Company/DocumentSignerFlow/SignatureForm/useSignatureForm.js +19 -0
- package/dist/components/Company/DocumentSignerFlow/SignatureForm/useSignatureForm.js.map +1 -0
- package/dist/components/Company/DocumentSignerFlow/assignSignatoryState.d.ts +1 -0
- package/dist/components/Company/DocumentSignerFlow/assignSignatoryState.js +41 -0
- package/dist/components/Company/DocumentSignerFlow/assignSignatoryState.js.map +1 -0
- package/dist/components/Company/DocumentSignerFlow/documentSignerStateMachine.d.ts +11 -0
- package/dist/components/Company/DocumentSignerFlow/documentSignerStateMachine.js +45 -0
- package/dist/components/Company/DocumentSignerFlow/documentSignerStateMachine.js.map +1 -0
- package/dist/components/Company/DocumentSignerFlow/index.d.ts +1 -0
- package/dist/components/Company/DocumentSignerFlow/stateMachine.d.ts +7 -0
- package/dist/components/Company/DocumentSignerFlow/stateMachine.js +59 -0
- package/dist/components/Company/DocumentSignerFlow/stateMachine.js.map +1 -0
- package/dist/components/Company/DocumentSignerFlow/useDocumentSignerFlow.d.ts +6 -0
- package/dist/components/Company/FederalTaxes/Actions.d.ts +1 -0
- package/dist/components/Company/FederalTaxes/Actions.js +13 -0
- package/dist/components/Company/FederalTaxes/Actions.js.map +1 -0
- package/dist/components/Company/FederalTaxes/FederalTaxes.d.ts +11 -0
- package/dist/components/Company/FederalTaxes/FederalTaxes.js +67 -0
- package/dist/components/Company/FederalTaxes/FederalTaxes.js.map +1 -0
- package/dist/components/Company/FederalTaxes/Form.d.ts +1 -0
- package/dist/components/Company/FederalTaxes/Form.js +104 -0
- package/dist/components/Company/FederalTaxes/Form.js.map +1 -0
- package/dist/components/Company/FederalTaxes/Head.d.ts +1 -0
- package/dist/components/Company/FederalTaxes/Head.js +30 -0
- package/dist/components/Company/FederalTaxes/Head.js.map +1 -0
- package/dist/components/Company/FederalTaxes/index.d.ts +1 -0
- package/dist/components/Company/FederalTaxes/useFederalTaxes.d.ts +21 -0
- package/dist/components/Company/FederalTaxes/useFederalTaxes.js +31 -0
- package/dist/components/Company/FederalTaxes/useFederalTaxes.js.map +1 -0
- package/dist/components/Company/Industry/Actions.d.ts +1 -0
- package/dist/components/Company/Industry/Actions.js +13 -0
- package/dist/components/Company/Industry/Actions.js.map +1 -0
- package/dist/components/Company/Industry/Context.d.ts +12 -0
- package/dist/components/Company/Industry/Context.js +23 -0
- package/dist/components/Company/Industry/Context.js.map +1 -0
- package/dist/components/Company/Industry/Edit.d.ts +4 -0
- package/dist/components/Company/Industry/Edit.js +21 -0
- package/dist/components/Company/Industry/Edit.js.map +1 -0
- package/dist/components/Company/Industry/Head.d.ts +1 -0
- package/dist/components/Company/Industry/Head.js +14 -0
- package/dist/components/Company/Industry/Head.js.map +1 -0
- package/dist/components/Company/Industry/Industry.d.ts +11 -0
- package/dist/components/Company/Industry/Industry.js +40 -0
- package/dist/components/Company/Industry/Industry.js.map +1 -0
- package/dist/components/Company/Industry/IndustrySelect.d.ts +8 -0
- package/dist/components/Company/Industry/IndustrySelect.js +36 -0
- package/dist/components/Company/Industry/IndustrySelect.js.map +1 -0
- package/dist/components/Company/Industry/index.d.ts +1 -0
- package/dist/components/Company/Locations/LocationForm/Actions.d.ts +1 -0
- package/dist/components/Company/Locations/LocationForm/Actions.js +16 -0
- package/dist/components/Company/Locations/LocationForm/Actions.js.map +1 -0
- package/dist/components/Company/Locations/LocationForm/Form.d.ts +12 -0
- package/dist/components/Company/Locations/LocationForm/Form.js +110 -0
- package/dist/components/Company/Locations/LocationForm/Form.js.map +1 -0
- package/dist/components/Company/Locations/LocationForm/Head.d.ts +1 -0
- package/dist/components/Company/Locations/LocationForm/Head.js +14 -0
- package/dist/components/Company/Locations/LocationForm/Head.js.map +1 -0
- package/dist/components/Company/Locations/LocationForm/LocationForm.d.ts +12 -0
- package/dist/components/Company/Locations/LocationForm/LocationForm.js +99 -0
- package/dist/components/Company/Locations/LocationForm/LocationForm.js.map +1 -0
- package/dist/components/Company/Locations/LocationForm/useLocationForm.d.ts +6 -0
- package/dist/components/Company/Locations/LocationForm/useLocationForm.js +19 -0
- package/dist/components/Company/Locations/LocationForm/useLocationForm.js.map +1 -0
- package/dist/components/Company/Locations/LocationsFlow.d.ts +5 -0
- package/dist/components/Company/Locations/LocationsFlow.js +21 -0
- package/dist/components/Company/Locations/LocationsFlow.js.map +1 -0
- package/dist/components/Company/Locations/LocationsList/Actions.d.ts +1 -0
- package/dist/components/Company/Locations/LocationsList/Actions.js +16 -0
- package/dist/components/Company/Locations/LocationsList/Actions.js.map +1 -0
- package/dist/components/Company/Locations/LocationsList/Head.d.ts +1 -0
- package/dist/components/Company/Locations/LocationsList/Head.js +14 -0
- package/dist/components/Company/Locations/LocationsList/Head.js.map +1 -0
- package/dist/components/Company/Locations/LocationsList/List.d.ts +2 -0
- package/dist/components/Company/Locations/LocationsList/List.js +78 -0
- package/dist/components/Company/Locations/LocationsList/List.js.map +1 -0
- package/dist/components/Company/Locations/LocationsList/LocationsList.d.ts +11 -0
- package/dist/components/Company/Locations/LocationsList/LocationsList.js +72 -0
- package/dist/components/Company/Locations/LocationsList/LocationsList.js.map +1 -0
- package/dist/components/Company/Locations/LocationsList/index.d.ts +1 -0
- package/dist/components/Company/Locations/LocationsList/useLocationsList.d.ts +16 -0
- package/dist/components/Company/Locations/LocationsList/useLocationsList.js +19 -0
- package/dist/components/Company/Locations/LocationsList/useLocationsList.js.map +1 -0
- package/dist/components/Company/Locations/locationsStateMachine.d.ts +15 -0
- package/dist/components/Company/Locations/locationsStateMachine.js +18 -0
- package/dist/components/Company/Locations/locationsStateMachine.js.map +1 -0
- package/dist/components/Company/Locations/stateMachine.d.ts +6 -0
- package/dist/components/Company/Locations/stateMachine.js +61 -0
- package/dist/components/Company/Locations/stateMachine.js.map +1 -0
- package/dist/components/Company/OnboardingFlow/OnboardingFlow.d.ts +2 -0
- package/dist/components/Company/OnboardingFlow/OnboardingFlow.js +26 -0
- package/dist/components/Company/OnboardingFlow/OnboardingFlow.js.map +1 -0
- package/dist/components/Company/OnboardingFlow/OnboardingFlowComponents.d.ts +26 -0
- package/dist/components/Company/OnboardingFlow/OnboardingFlowComponents.js +74 -0
- package/dist/components/Company/OnboardingFlow/OnboardingFlowComponents.js.map +1 -0
- package/dist/components/Company/OnboardingFlow/onboardingStateMachine.d.ts +12 -0
- package/dist/components/Company/OnboardingFlow/onboardingStateMachine.js +83 -0
- package/dist/components/Company/OnboardingFlow/onboardingStateMachine.js.map +1 -0
- package/dist/components/Company/OnboardingOverview/Completed.d.ts +1 -0
- package/dist/components/Company/OnboardingOverview/Completed.js +17 -0
- package/dist/components/Company/OnboardingOverview/Completed.js.map +1 -0
- package/dist/components/Company/OnboardingOverview/MissingRequirements.d.ts +1 -0
- package/dist/components/Company/OnboardingOverview/MissingRequirements.js +32 -0
- package/dist/components/Company/OnboardingOverview/MissingRequirements.js.map +1 -0
- package/dist/components/Company/OnboardingOverview/OnboardingOverview.d.ts +6 -0
- package/dist/components/Company/OnboardingOverview/OnboardingOverview.js +39 -0
- package/dist/components/Company/OnboardingOverview/OnboardingOverview.js.map +1 -0
- package/dist/components/Company/OnboardingOverview/context.d.ts +9 -0
- package/dist/components/Company/OnboardingOverview/context.js +17 -0
- package/dist/components/Company/OnboardingOverview/context.js.map +1 -0
- package/dist/components/Company/PaySchedule/PaySchedule.d.ts +14 -0
- package/dist/components/Company/PaySchedule/PaySchedule.js +168 -0
- package/dist/components/Company/PaySchedule/PaySchedule.js.map +1 -0
- package/dist/components/Company/PaySchedule/_parts/Actions.d.ts +1 -0
- package/dist/components/Company/PaySchedule/_parts/Actions.js +62 -0
- package/dist/components/Company/PaySchedule/_parts/Actions.js.map +1 -0
- package/dist/components/Company/PaySchedule/_parts/Edit.d.ts +1 -0
- package/dist/components/Company/PaySchedule/_parts/Edit.js +115 -0
- package/dist/components/Company/PaySchedule/_parts/Edit.js.map +1 -0
- package/dist/components/Company/PaySchedule/_parts/Edit.module.scss.js +14 -0
- package/dist/components/Company/PaySchedule/_parts/Edit.module.scss.js.map +1 -0
- package/dist/components/Company/PaySchedule/_parts/Head.d.ts +1 -0
- package/dist/components/Company/PaySchedule/_parts/Head.js +47 -0
- package/dist/components/Company/PaySchedule/_parts/Head.js.map +1 -0
- package/dist/components/Company/PaySchedule/_parts/List.d.ts +1 -0
- package/dist/components/Company/PaySchedule/_parts/List.js +60 -0
- package/dist/components/Company/PaySchedule/_parts/List.js.map +1 -0
- package/dist/components/Company/PaySchedule/_parts/index.d.ts +4 -0
- package/dist/components/Company/PaySchedule/index.d.ts +1 -0
- package/dist/components/Company/PaySchedule/usePaySchedule.d.ts +34 -0
- package/dist/components/Company/PaySchedule/usePaySchedule.js +33 -0
- package/dist/components/Company/PaySchedule/usePaySchedule.js.map +1 -0
- package/dist/components/Company/StateTaxes/StateTaxesFlow.d.ts +5 -0
- package/dist/components/Company/StateTaxes/StateTaxesFlow.js +21 -0
- package/dist/components/Company/StateTaxes/StateTaxesFlow.js.map +1 -0
- package/dist/components/Company/StateTaxes/StateTaxesFlowComponents.d.ts +8 -0
- package/dist/components/Company/StateTaxes/StateTaxesFlowComponents.js +25 -0
- package/dist/components/Company/StateTaxes/StateTaxesFlowComponents.js.map +1 -0
- package/dist/components/Company/StateTaxes/StateTaxesForm/Actions.d.ts +1 -0
- package/dist/components/Company/StateTaxes/StateTaxesForm/Actions.js +16 -0
- package/dist/components/Company/StateTaxes/StateTaxesForm/Actions.js.map +1 -0
- package/dist/components/Company/StateTaxes/StateTaxesForm/Form.d.ts +4 -0
- package/dist/components/Company/StateTaxes/StateTaxesForm/Form.js +34 -0
- package/dist/components/Company/StateTaxes/StateTaxesForm/Form.js.map +1 -0
- package/dist/components/Company/StateTaxes/StateTaxesForm/Head.d.ts +1 -0
- package/dist/components/Company/StateTaxes/StateTaxesForm/Head.js +12 -0
- package/dist/components/Company/StateTaxes/StateTaxesForm/Head.js.map +1 -0
- package/dist/components/Company/StateTaxes/StateTaxesForm/StateTaxesForm.d.ts +12 -0
- package/dist/components/Company/StateTaxes/StateTaxesForm/StateTaxesForm.js +111 -0
- package/dist/components/Company/StateTaxes/StateTaxesForm/StateTaxesForm.js.map +1 -0
- package/dist/components/Company/StateTaxes/StateTaxesForm/context.d.ts +9 -0
- package/dist/components/Company/StateTaxes/StateTaxesForm/context.js +17 -0
- package/dist/components/Company/StateTaxes/StateTaxesForm/context.js.map +1 -0
- package/dist/components/Company/StateTaxes/StateTaxesList/Actions.d.ts +1 -0
- package/dist/components/Company/StateTaxes/StateTaxesList/Actions.js +13 -0
- package/dist/components/Company/StateTaxes/StateTaxesList/Actions.js.map +1 -0
- package/dist/components/Company/StateTaxes/StateTaxesList/Head.d.ts +1 -0
- package/dist/components/Company/StateTaxes/StateTaxesList/Head.js +11 -0
- package/dist/components/Company/StateTaxes/StateTaxesList/Head.js.map +1 -0
- package/dist/components/Company/StateTaxes/StateTaxesList/List.d.ts +1 -0
- package/dist/components/Company/StateTaxes/StateTaxesList/List.js +40 -0
- package/dist/components/Company/StateTaxes/StateTaxesList/List.js.map +1 -0
- package/dist/components/Company/StateTaxes/StateTaxesList/StateTaxesList.d.ts +11 -0
- package/dist/components/Company/StateTaxes/StateTaxesList/StateTaxesList.js +45 -0
- package/dist/components/Company/StateTaxes/StateTaxesList/StateTaxesList.js.map +1 -0
- package/dist/components/Company/StateTaxes/StateTaxesList/context.d.ts +9 -0
- package/dist/components/Company/StateTaxes/StateTaxesList/context.js +17 -0
- package/dist/components/Company/StateTaxes/StateTaxesList/context.js.map +1 -0
- package/dist/components/Company/StateTaxes/stateTaxesStateMachine.d.ts +5 -0
- package/dist/components/Company/StateTaxes/stateTaxesStateMachine.js +48 -0
- package/dist/components/Company/StateTaxes/stateTaxesStateMachine.js.map +1 -0
- package/dist/components/Company/index.d.ts +12 -0
- package/dist/components/Company/index.js +27 -0
- package/dist/components/Company/index.js.map +1 -0
- package/dist/components/Employee/Compensation/Actions.d.ts +1 -0
- package/dist/components/Employee/Compensation/Actions.js +38 -0
- package/dist/components/Employee/Compensation/Actions.js.map +1 -0
- package/dist/components/Employee/Compensation/Compensation.d.ts +25 -0
- package/dist/components/Employee/Compensation/Compensation.js +207 -0
- package/dist/components/Employee/Compensation/Compensation.js.map +1 -0
- package/dist/components/Employee/Compensation/Edit.d.ts +5 -0
- package/dist/components/Employee/Compensation/Edit.js +166 -0
- package/dist/components/Employee/Compensation/Edit.js.map +1 -0
- package/dist/components/Employee/Compensation/Head.d.ts +1 -0
- package/dist/components/Employee/Compensation/Head.js +22 -0
- package/dist/components/Employee/Compensation/Head.js.map +1 -0
- package/dist/components/Employee/Compensation/List.d.ts +1 -0
- package/dist/components/Employee/Compensation/List.js +71 -0
- package/dist/components/Employee/Compensation/List.js.map +1 -0
- package/dist/components/Employee/Compensation/index.d.ts +1 -0
- package/dist/components/Employee/Compensation/useCompensation.d.ts +68 -0
- package/dist/components/Employee/Compensation/useCompensation.js +73 -0
- package/dist/components/Employee/Compensation/useCompensation.js.map +1 -0
- package/dist/components/Employee/Deductions/Actions.d.ts +1 -0
- package/dist/components/Employee/Deductions/Actions.js +25 -0
- package/dist/components/Employee/Deductions/Actions.js.map +1 -0
- package/dist/components/Employee/Deductions/DeductionForm.d.ts +1 -0
- package/dist/components/Employee/Deductions/DeductionForm.js +68 -0
- package/dist/components/Employee/Deductions/DeductionForm.js.map +1 -0
- package/dist/components/Employee/Deductions/Deductions.d.ts +13 -0
- package/dist/components/Employee/Deductions/Deductions.js +155 -0
- package/dist/components/Employee/Deductions/Deductions.js.map +1 -0
- package/dist/components/Employee/Deductions/DeductionsList.d.ts +2 -0
- package/dist/components/Employee/Deductions/DeductionsList.js +58 -0
- package/dist/components/Employee/Deductions/DeductionsList.js.map +1 -0
- package/dist/components/Employee/Deductions/Head.d.ts +1 -0
- package/dist/components/Employee/Deductions/Head.js +13 -0
- package/dist/components/Employee/Deductions/Head.js.map +1 -0
- package/dist/components/Employee/Deductions/IncludeDeductionsForm.d.ts +1 -0
- package/dist/components/Employee/Deductions/IncludeDeductionsForm.js +24 -0
- package/dist/components/Employee/Deductions/IncludeDeductionsForm.js.map +1 -0
- package/dist/components/Employee/Deductions/index.d.ts +1 -0
- package/dist/components/Employee/Deductions/useDeductions.d.ts +29 -0
- package/dist/components/Employee/Deductions/useDeductions.js +48 -0
- package/dist/components/Employee/Deductions/useDeductions.js.map +1 -0
- package/dist/components/Employee/DocumentSigner/DocumentList/Actions.d.ts +1 -0
- package/dist/components/Employee/DocumentSigner/DocumentList/Actions.js +13 -0
- package/dist/components/Employee/DocumentSigner/DocumentList/Actions.js.map +1 -0
- package/dist/components/Employee/DocumentSigner/DocumentList/DocumentList.d.ts +11 -0
- package/dist/components/Employee/DocumentSigner/DocumentList/DocumentList.js +46 -0
- package/dist/components/Employee/DocumentSigner/DocumentList/DocumentList.js.map +1 -0
- package/dist/components/Employee/DocumentSigner/DocumentList/Head.d.ts +2 -0
- package/dist/components/Employee/DocumentSigner/DocumentList/Head.js +11 -0
- package/dist/components/Employee/DocumentSigner/DocumentList/Head.js.map +1 -0
- package/dist/components/Employee/DocumentSigner/DocumentList/List.d.ts +1 -0
- package/dist/components/Employee/DocumentSigner/DocumentList/List.js +37 -0
- package/dist/components/Employee/DocumentSigner/DocumentList/List.js.map +1 -0
- package/dist/components/Employee/DocumentSigner/DocumentList/useDocumentList.d.ts +11 -0
- package/dist/components/Employee/DocumentSigner/DocumentList/useDocumentList.js +17 -0
- package/dist/components/Employee/DocumentSigner/DocumentList/useDocumentList.js.map +1 -0
- package/dist/components/Employee/DocumentSigner/DocumentSignerFlow.d.ts +5 -0
- package/dist/components/Employee/DocumentSigner/DocumentSignerFlow.js +21 -0
- package/dist/components/Employee/DocumentSigner/DocumentSignerFlow.js.map +1 -0
- package/dist/components/Employee/DocumentSigner/SignatureForm/Actions.d.ts +1 -0
- package/dist/components/Employee/DocumentSigner/SignatureForm/Actions.js +20 -0
- package/dist/components/Employee/DocumentSigner/SignatureForm/Actions.js.map +1 -0
- package/dist/components/Employee/DocumentSigner/SignatureForm/Form.d.ts +1 -0
- package/dist/components/Employee/DocumentSigner/SignatureForm/Form.js +20 -0
- package/dist/components/Employee/DocumentSigner/SignatureForm/Form.js.map +1 -0
- package/dist/components/Employee/DocumentSigner/SignatureForm/Head.d.ts +1 -0
- package/dist/components/Employee/DocumentSigner/SignatureForm/Head.js +35 -0
- package/dist/components/Employee/DocumentSigner/SignatureForm/Head.js.map +1 -0
- package/dist/components/Employee/DocumentSigner/SignatureForm/Preview.d.ts +1 -0
- package/dist/components/Employee/DocumentSigner/SignatureForm/Preview.js +20 -0
- package/dist/components/Employee/DocumentSigner/SignatureForm/Preview.js.map +1 -0
- package/dist/components/Employee/DocumentSigner/SignatureForm/SignatureForm.d.ts +14 -0
- package/dist/components/Employee/DocumentSigner/SignatureForm/SignatureForm.js +73 -0
- package/dist/components/Employee/DocumentSigner/SignatureForm/SignatureForm.js.map +1 -0
- package/dist/components/Employee/DocumentSigner/SignatureForm/useSignatureForm.d.ts +9 -0
- package/dist/components/Employee/DocumentSigner/SignatureForm/useSignatureForm.js +17 -0
- package/dist/components/Employee/DocumentSigner/SignatureForm/useSignatureForm.js.map +1 -0
- package/dist/components/Employee/DocumentSigner/documentSignerStateMachine.d.ts +16 -0
- package/dist/components/Employee/DocumentSigner/documentSignerStateMachine.js +25 -0
- package/dist/components/Employee/DocumentSigner/documentSignerStateMachine.js.map +1 -0
- package/dist/components/Employee/DocumentSigner/index.d.ts +1 -0
- package/dist/components/Employee/DocumentSigner/stateMachine.d.ts +5 -0
- package/dist/components/Employee/DocumentSigner/stateMachine.js +48 -0
- package/dist/components/Employee/DocumentSigner/stateMachine.js.map +1 -0
- package/dist/components/Employee/EmployeeList/Actions.d.ts +1 -0
- package/dist/components/Employee/EmployeeList/Actions.js +13 -0
- package/dist/components/Employee/EmployeeList/Actions.js.map +1 -0
- package/dist/components/Employee/EmployeeList/EmployeeList.d.ts +15 -0
- package/dist/components/Employee/EmployeeList/EmployeeList.js +107 -0
- package/dist/components/Employee/EmployeeList/EmployeeList.js.map +1 -0
- package/dist/components/Employee/EmployeeList/Head.d.ts +1 -0
- package/dist/components/Employee/EmployeeList/Head.js +12 -0
- package/dist/components/Employee/EmployeeList/Head.js.map +1 -0
- package/dist/components/Employee/EmployeeList/List.d.ts +2 -0
- package/dist/components/Employee/EmployeeList/List.js +113 -0
- package/dist/components/Employee/EmployeeList/List.js.map +1 -0
- package/dist/components/Employee/EmployeeList/List.module.scss.js +8 -0
- package/dist/components/Employee/EmployeeList/List.module.scss.js.map +1 -0
- package/dist/components/Employee/EmployeeList/useEmployeeList.d.ts +19 -0
- package/dist/components/Employee/EmployeeList/useEmployeeList.js +17 -0
- package/dist/components/Employee/EmployeeList/useEmployeeList.js.map +1 -0
- package/dist/components/Employee/Landing/Landing.d.ts +7 -0
- package/dist/components/Employee/Landing/Landing.js +53 -0
- package/dist/components/Employee/Landing/Landing.js.map +1 -0
- package/dist/components/Employee/Landing/Landing.module.scss.js +8 -0
- package/dist/components/Employee/Landing/Landing.module.scss.js.map +1 -0
- package/dist/components/Employee/Landing/index.d.ts +1 -0
- package/dist/components/Employee/OnboardingSummary/OnboardingSummary.d.ts +8 -0
- package/dist/components/Employee/OnboardingSummary/OnboardingSummary.js +83 -0
- package/dist/components/Employee/OnboardingSummary/OnboardingSummary.js.map +1 -0
- package/dist/components/Employee/OnboardingSummary/OnboardingSummary.module.scss.js +16 -0
- package/dist/components/Employee/OnboardingSummary/OnboardingSummary.module.scss.js.map +1 -0
- package/dist/components/Employee/OnboardingSummary/index.d.ts +1 -0
- package/dist/components/Employee/PaymentMethod/Actions.d.ts +1 -0
- package/dist/components/Employee/PaymentMethod/Actions.js +18 -0
- package/dist/components/Employee/PaymentMethod/Actions.js.map +1 -0
- package/dist/components/Employee/PaymentMethod/BankAccount.d.ts +10 -0
- package/dist/components/Employee/PaymentMethod/BankAccount.js +13 -0
- package/dist/components/Employee/PaymentMethod/BankAccount.js.map +1 -0
- package/dist/components/Employee/PaymentMethod/BankAccountEdit.d.ts +1 -0
- package/dist/components/Employee/PaymentMethod/BankAccountEdit.js +56 -0
- package/dist/components/Employee/PaymentMethod/BankAccountEdit.js.map +1 -0
- package/dist/components/Employee/PaymentMethod/BankAccountsList.d.ts +1 -0
- package/dist/components/Employee/PaymentMethod/BankAccountsList.js +47 -0
- package/dist/components/Employee/PaymentMethod/BankAccountsList.js.map +1 -0
- package/dist/components/Employee/PaymentMethod/Constants.d.ts +8 -0
- package/dist/components/Employee/PaymentMethod/Constants.js +6 -0
- package/dist/components/Employee/PaymentMethod/Constants.js.map +1 -0
- package/dist/components/Employee/PaymentMethod/Head.d.ts +1 -0
- package/dist/components/Employee/PaymentMethod/Head.js +13 -0
- package/dist/components/Employee/PaymentMethod/Head.js.map +1 -0
- package/dist/components/Employee/PaymentMethod/PaymentMethod.d.ts +8 -0
- package/dist/components/Employee/PaymentMethod/PaymentMethod.js +174 -0
- package/dist/components/Employee/PaymentMethod/PaymentMethod.js.map +1 -0
- package/dist/components/Employee/PaymentMethod/PaymentTypeForm.d.ts +7 -0
- package/dist/components/Employee/PaymentMethod/PaymentTypeForm.js +37 -0
- package/dist/components/Employee/PaymentMethod/PaymentTypeForm.js.map +1 -0
- package/dist/components/Employee/PaymentMethod/Split.d.ts +1 -0
- package/dist/components/Employee/PaymentMethod/Split.js +161 -0
- package/dist/components/Employee/PaymentMethod/Split.js.map +1 -0
- package/dist/components/Employee/PaymentMethod/index.d.ts +1 -0
- package/dist/components/Employee/PaymentMethod/usePaymentMethod.d.ts +53 -0
- package/dist/components/Employee/PaymentMethod/usePaymentMethod.js +63 -0
- package/dist/components/Employee/PaymentMethod/usePaymentMethod.js.map +1 -0
- package/dist/components/Employee/Profile/Actions.d.ts +1 -0
- package/dist/components/Employee/Profile/Actions.js +13 -0
- package/dist/components/Employee/Profile/Actions.js.map +1 -0
- package/dist/components/Employee/Profile/AdminPersonalDetails.d.ts +32 -0
- package/dist/components/Employee/Profile/AdminPersonalDetails.js +58 -0
- package/dist/components/Employee/Profile/AdminPersonalDetails.js.map +1 -0
- package/dist/components/Employee/Profile/Head.d.ts +1 -0
- package/dist/components/Employee/Profile/Head.js +14 -0
- package/dist/components/Employee/Profile/Head.js.map +1 -0
- package/dist/components/Employee/Profile/HomeAddress.d.ts +14 -0
- package/dist/components/Employee/Profile/HomeAddress.js +105 -0
- package/dist/components/Employee/Profile/HomeAddress.js.map +1 -0
- package/dist/components/Employee/Profile/PersonalDetailsInputs.d.ts +49 -0
- package/dist/components/Employee/Profile/PersonalDetailsInputs.js +153 -0
- package/dist/components/Employee/Profile/PersonalDetailsInputs.js.map +1 -0
- package/dist/components/Employee/Profile/Profile.d.ts +36 -0
- package/dist/components/Employee/Profile/Profile.js +265 -0
- package/dist/components/Employee/Profile/Profile.js.map +1 -0
- package/dist/components/Employee/Profile/SelfPersonalDetails.d.ts +16 -0
- package/dist/components/Employee/Profile/SelfPersonalDetails.js +29 -0
- package/dist/components/Employee/Profile/SelfPersonalDetails.js.map +1 -0
- package/dist/components/Employee/Profile/WorkAddress.d.ts +1 -0
- package/dist/components/Employee/Profile/WorkAddress.js +21 -0
- package/dist/components/Employee/Profile/WorkAddress.js.map +1 -0
- package/dist/components/Employee/Profile/WorkAddress.module.scss.js +8 -0
- package/dist/components/Employee/Profile/WorkAddress.module.scss.js.map +1 -0
- package/dist/components/Employee/Profile/getEmployeeAddressForProfile.d.ts +2 -0
- package/dist/components/Employee/Profile/getEmployeeAddressForProfile.js +8 -0
- package/dist/components/Employee/Profile/getEmployeeAddressForProfile.js.map +1 -0
- package/dist/components/Employee/Profile/getEmployeeAddressForProfile.test.d.ts +1 -0
- package/dist/components/Employee/Profile/index.d.ts +1 -0
- package/dist/components/Employee/Profile/useProfile.d.ts +15 -0
- package/dist/components/Employee/Profile/useProfile.js +17 -0
- package/dist/components/Employee/Profile/useProfile.js.map +1 -0
- package/dist/components/Employee/Taxes/Actions.d.ts +1 -0
- package/dist/components/Employee/Taxes/Actions.js +13 -0
- package/dist/components/Employee/Taxes/Actions.js.map +1 -0
- package/dist/components/Employee/Taxes/FederalForm.d.ts +13 -0
- package/dist/components/Employee/Taxes/FederalForm.js +106 -0
- package/dist/components/Employee/Taxes/FederalForm.js.map +1 -0
- package/dist/components/Employee/Taxes/FederalHead.d.ts +1 -0
- package/dist/components/Employee/Taxes/FederalHead.js +24 -0
- package/dist/components/Employee/Taxes/FederalHead.js.map +1 -0
- package/dist/components/Employee/Taxes/StateForm.d.ts +6 -0
- package/dist/components/Employee/Taxes/StateForm.js +32 -0
- package/dist/components/Employee/Taxes/StateForm.js.map +1 -0
- package/dist/components/Employee/Taxes/Taxes.d.ts +14 -0
- package/dist/components/Employee/Taxes/Taxes.js +127 -0
- package/dist/components/Employee/Taxes/Taxes.js.map +1 -0
- package/dist/components/Employee/Taxes/index.d.ts +1 -0
- package/dist/components/Employee/Taxes/useTaxes.d.ts +8 -0
- package/dist/components/Employee/Taxes/useTaxes.js +17 -0
- package/dist/components/Employee/Taxes/useTaxes.js.map +1 -0
- package/dist/components/Employee/index.d.ts +9 -0
- package/dist/components/Employee/index.js +21 -0
- package/dist/components/Employee/index.js.map +1 -0
- package/dist/components/Flow/EmployeeOnboardingFlow.d.ts +27 -0
- package/dist/components/Flow/EmployeeOnboardingFlow.js +29 -0
- package/dist/components/Flow/EmployeeOnboardingFlow.js.map +1 -0
- package/dist/components/Flow/EmployeeSelfOnboardingFlow/EmployeeSelfOnboardingComponents.d.ts +5 -0
- package/dist/components/Flow/EmployeeSelfOnboardingFlow/EmployeeSelfOnboardingComponents.js +58 -0
- package/dist/components/Flow/EmployeeSelfOnboardingFlow/EmployeeSelfOnboardingComponents.js.map +1 -0
- package/dist/components/Flow/EmployeeSelfOnboardingFlow/EmployeeSelfOnboardingFlow.d.ts +13 -0
- package/dist/components/Flow/EmployeeSelfOnboardingFlow/EmployeeSelfOnboardingFlow.js +26 -0
- package/dist/components/Flow/EmployeeSelfOnboardingFlow/EmployeeSelfOnboardingFlow.js.map +1 -0
- package/dist/components/Flow/Flow.d.ts +10 -0
- package/dist/components/Flow/Flow.js +37 -0
- package/dist/components/Flow/Flow.js.map +1 -0
- package/dist/components/Flow/StateMachines/employeeOnboarding.d.ts +10 -0
- package/dist/components/Flow/StateMachines/employeeOnboarding.js +136 -0
- package/dist/components/Flow/StateMachines/employeeOnboarding.js.map +1 -0
- package/dist/components/Flow/StateMachines/employeeSelfOnboarding.d.ts +7 -0
- package/dist/components/Flow/StateMachines/employeeSelfOnboarding.js +73 -0
- package/dist/components/Flow/StateMachines/employeeSelfOnboarding.js.map +1 -0
- package/dist/components/Flow/StateMachines/index.d.ts +2 -0
- package/dist/components/Flow/index.d.ts +2 -0
- package/dist/components/Flow/index.js +7 -0
- package/dist/components/Flow/index.js.map +1 -0
- package/dist/components/Flow/useFlow.d.ts +12 -0
- package/dist/components/Flow/useFlow.js +13 -0
- package/dist/components/Flow/useFlow.js.map +1 -0
- package/dist/components/index.d.ts +3 -0
- package/dist/contexts/ComponentAdapter/ComponentsProvider.d.ts +8 -0
- package/dist/contexts/ComponentAdapter/ComponentsProvider.js +11 -0
- package/dist/contexts/ComponentAdapter/ComponentsProvider.js.map +1 -0
- package/dist/contexts/ComponentAdapter/adapters/defaultComponentAdapter.d.ts +2 -0
- package/dist/contexts/ComponentAdapter/adapters/defaultComponentAdapter.js +55 -0
- package/dist/contexts/ComponentAdapter/adapters/defaultComponentAdapter.js.map +1 -0
- package/dist/contexts/ComponentAdapter/componentAdapterTypes.d.ts +18 -0
- package/dist/contexts/ComponentAdapter/useComponentContext.d.ts +53 -0
- package/dist/contexts/ComponentAdapter/useComponentContext.js +12 -0
- package/dist/contexts/ComponentAdapter/useComponentContext.js.map +1 -0
- package/dist/contexts/GustoApiProvider/index.d.ts +2 -0
- package/dist/contexts/GustoProvider/GustoProvider.d.ts +11 -0
- package/dist/contexts/GustoProvider/GustoProvider.js +16 -0
- package/dist/contexts/GustoProvider/GustoProvider.js.map +1 -0
- package/dist/contexts/GustoProvider/GustoProviderCustomUIAdapter.d.ts +32 -0
- package/dist/contexts/GustoProvider/GustoProviderCustomUIAdapter.js +39 -0
- package/dist/contexts/GustoProvider/GustoProviderCustomUIAdapter.js.map +1 -0
- package/dist/contexts/GustoProvider/SDKI18next.d.ts +4 -0
- package/dist/contexts/GustoProvider/SDKI18next.js +17 -0
- package/dist/contexts/GustoProvider/SDKI18next.js.map +1 -0
- package/dist/contexts/GustoProvider/index.d.ts +3 -0
- package/dist/contexts/LocaleProvider/LocaleProvider.d.ts +5 -0
- package/dist/contexts/LocaleProvider/LocaleProvider.js +13 -0
- package/dist/contexts/LocaleProvider/LocaleProvider.js.map +1 -0
- package/dist/contexts/LocaleProvider/index.d.ts +2 -0
- package/dist/contexts/LocaleProvider/useLocale.d.ts +7 -0
- package/dist/contexts/LocaleProvider/useLocale.js +22 -0
- package/dist/contexts/LocaleProvider/useLocale.js.map +1 -0
- package/dist/contexts/ThemeProvider/ThemeProvider.d.ts +8 -0
- package/dist/contexts/ThemeProvider/ThemeProvider.js +37 -0
- package/dist/contexts/ThemeProvider/ThemeProvider.js.map +1 -0
- package/dist/contexts/ThemeProvider/createTheme.d.ts +22 -0
- package/dist/contexts/ThemeProvider/createTheme.js +271 -0
- package/dist/contexts/ThemeProvider/createTheme.js.map +1 -0
- package/dist/contexts/ThemeProvider/createTheme.test.d.ts +1 -0
- package/dist/contexts/ThemeProvider/customRender.d.ts +4 -0
- package/dist/contexts/ThemeProvider/index.d.ts +3 -0
- package/dist/contexts/ThemeProvider/test-utils.d.ts +4 -0
- package/dist/contexts/ThemeProvider/useTheme.d.ts +5 -0
- package/dist/contexts/ThemeProvider/useTheme.js +7 -0
- package/dist/contexts/ThemeProvider/useTheme.js.map +1 -0
- package/dist/contexts/index.d.ts +4 -0
- package/dist/helpers/LRUCache.d.ts +7 -0
- package/dist/helpers/LRUCache.js +22 -0
- package/dist/helpers/LRUCache.js.map +1 -0
- package/dist/helpers/dateFormatting.d.ts +2 -0
- package/dist/helpers/dateFormatting.js +10 -0
- package/dist/helpers/dateFormatting.js.map +1 -0
- package/dist/helpers/ensureRequired.d.ts +1 -0
- package/dist/helpers/ensureRequired.js +10 -0
- package/dist/helpers/ensureRequired.js.map +1 -0
- package/dist/helpers/ensureRequired.test.d.ts +1 -0
- package/dist/helpers/federalEin.d.ts +8 -0
- package/dist/helpers/federalEin.js +11 -0
- package/dist/helpers/federalEin.js.map +1 -0
- package/dist/helpers/federalEin.test.d.ts +1 -0
- package/dist/helpers/formattedStrings.d.ts +19 -0
- package/dist/helpers/formattedStrings.js +22 -0
- package/dist/helpers/formattedStrings.js.map +1 -0
- package/dist/helpers/formattedStrings.test.d.ts +1 -0
- package/dist/helpers/getDataProps.d.ts +2 -0
- package/dist/helpers/getDataProps.js +17 -0
- package/dist/helpers/getDataProps.js.map +1 -0
- package/dist/helpers/getDataProps.test.d.ts +1 -0
- package/dist/helpers/mask.d.ts +23 -0
- package/dist/helpers/mask.js +37 -0
- package/dist/helpers/mask.js.map +1 -0
- package/dist/helpers/mask.test.d.ts +1 -0
- package/dist/helpers/payRateCalculator.d.ts +2 -0
- package/dist/helpers/payRateCalculator.js +20 -0
- package/dist/helpers/payRateCalculator.js.map +1 -0
- package/dist/helpers/rem.d.ts +7 -0
- package/dist/helpers/rem.js +17 -0
- package/dist/helpers/rem.js.map +1 -0
- package/dist/helpers/responsive.d.ts +15 -0
- package/dist/helpers/responsive.js +43 -0
- package/dist/helpers/responsive.js.map +1 -0
- package/dist/helpers/responsive.test.d.ts +1 -0
- package/dist/helpers/ssn.d.ts +3 -0
- package/dist/helpers/ssn.js +11 -0
- package/dist/helpers/ssn.js.map +1 -0
- package/dist/helpers/validations.d.ts +7 -0
- package/dist/helpers/validations.js +21 -0
- package/dist/helpers/validations.js.map +1 -0
- package/dist/hooks/useContainerBreakpoints/useContainerBreakpoints.d.ts +12 -0
- package/dist/hooks/useContainerBreakpoints/useContainerBreakpoints.js +30 -0
- package/dist/hooks/useContainerBreakpoints/useContainerBreakpoints.js.map +1 -0
- package/dist/hooks/useDebounce/useDebounce.d.ts +2 -0
- package/dist/hooks/useDebounce/useDebounce.js +19 -0
- package/dist/hooks/useDebounce/useDebounce.js.map +1 -0
- package/dist/hooks/useForkRef/index.d.ts +1 -0
- package/dist/hooks/useForkRef/useForkRef.d.ts +7 -0
- package/dist/hooks/useForkRef/useForkRef.js +12 -0
- package/dist/hooks/useForkRef/useForkRef.js.map +1 -0
- package/dist/i18n/I18n.d.ts +7 -0
- package/dist/i18n/I18n.js +35 -0
- package/dist/i18n/I18n.js.map +1 -0
- package/dist/{Company.AddBank--N4kK8CC.js → i18n/en/Company.AddBank.json.js} +1 -1
- package/dist/i18n/en/Company.AddBank.json.js.map +1 -0
- package/dist/{Company.Addresses-BLDgBmOD.js → i18n/en/Company.Addresses.json.js} +1 -1
- package/dist/i18n/en/Company.Addresses.json.js.map +1 -0
- package/dist/{Company.AssignSignatory-CUCZtm6s.js → i18n/en/Company.AssignSignatory.json.js} +1 -1
- package/dist/i18n/en/Company.AssignSignatory.json.js.map +1 -0
- package/dist/i18n/en/Company.BankAccount.json.js +63 -0
- package/dist/i18n/en/Company.BankAccount.json.js.map +1 -0
- package/dist/{Company.DocumentList-D-h6c4bI.js → i18n/en/Company.DocumentList.json.js} +1 -1
- package/dist/i18n/en/Company.DocumentList.json.js.map +1 -0
- package/dist/{Company.FederalTaxes-BuTN_7W0.js → i18n/en/Company.FederalTaxes.json.js} +1 -1
- package/dist/i18n/en/Company.FederalTaxes.json.js.map +1 -0
- package/dist/{Company.Industry-DLXwZPaw.js → i18n/en/Company.Industry.json.js} +1 -1
- package/dist/i18n/en/Company.Industry.json.js.map +1 -0
- package/dist/{Company.Locations-Cp9h8ZGu.js → i18n/en/Company.Locations.json.js} +1 -1
- package/dist/i18n/en/Company.Locations.json.js.map +1 -0
- package/dist/i18n/en/Company.OnboardingOverview.json.js +50 -0
- package/dist/i18n/en/Company.OnboardingOverview.json.js.map +1 -0
- package/dist/{Company.PaySchedule-CxoupNmN.js → i18n/en/Company.PaySchedule.json.js} +32 -30
- package/dist/i18n/en/Company.PaySchedule.json.js.map +1 -0
- package/dist/i18n/en/Company.SignatureForm.json.js +28 -0
- package/dist/i18n/en/Company.SignatureForm.json.js.map +1 -0
- package/dist/i18n/en/Company.StateTaxes.json.js +33 -0
- package/dist/i18n/en/Company.StateTaxes.json.js.map +1 -0
- package/dist/{Employee.BankAccount-DFNmm0eF.js → i18n/en/Employee.BankAccount.json.js} +1 -1
- package/dist/i18n/en/Employee.BankAccount.json.js.map +1 -0
- package/dist/i18n/en/Employee.Compensation.json.js +98 -0
- package/dist/i18n/en/Employee.Compensation.json.js.map +1 -0
- package/dist/{Employee.Deductions-yskR0evJ.js → i18n/en/Employee.Deductions.json.js} +1 -1
- package/dist/i18n/en/Employee.Deductions.json.js.map +1 -0
- package/dist/{Employee.DocumentSigner-DgbuxBnJ.js → i18n/en/Employee.DocumentSigner.json.js} +17 -19
- package/dist/i18n/en/Employee.DocumentSigner.json.js.map +1 -0
- package/dist/i18n/en/Employee.EmployeeList.json.js +44 -0
- package/dist/i18n/en/Employee.EmployeeList.json.js.map +1 -0
- package/dist/{Employee.HomeAddress-DQ-CWfZA.js → i18n/en/Employee.HomeAddress.json.js} +1 -1
- package/dist/i18n/en/Employee.HomeAddress.json.js.map +1 -0
- package/dist/{Employee.Landing-Hpn09zPP.js → i18n/en/Employee.Landing.json.js} +1 -1
- package/dist/i18n/en/Employee.Landing.json.js.map +1 -0
- package/dist/{Employee.OnboardingSummary-CmxhPw5V.js → i18n/en/Employee.OnboardingSummary.json.js} +21 -23
- package/dist/i18n/en/Employee.OnboardingSummary.json.js.map +1 -0
- package/dist/{Employee.PaySchedules-C3chTJFz.js → i18n/en/Employee.PaySchedules.json.js} +1 -1
- package/dist/i18n/en/Employee.PaySchedules.json.js.map +1 -0
- package/dist/{Employee.PaymentMethod-B1tieS6Y.js → i18n/en/Employee.PaymentMethod.json.js} +1 -1
- package/dist/i18n/en/Employee.PaymentMethod.json.js.map +1 -0
- package/dist/{Employee.Profile-u_Zt7QkR.js → i18n/en/Employee.Profile.json.js} +1 -1
- package/dist/i18n/en/Employee.Profile.json.js.map +1 -0
- package/dist/{Employee.SplitPaycheck-DuzIuN4Y.js → i18n/en/Employee.SplitPaycheck.json.js} +1 -1
- package/dist/i18n/en/Employee.SplitPaycheck.json.js.map +1 -0
- package/dist/{Employee.StateTaxes-5hNQeRZm.js → i18n/en/Employee.StateTaxes.json.js} +1 -1
- package/dist/i18n/en/Employee.StateTaxes.json.js.map +1 -0
- package/dist/i18n/en/Employee.Taxes.json.js +55 -0
- package/dist/i18n/en/Employee.Taxes.json.js.map +1 -0
- package/dist/{Payroll.PayrollHistoryList-vkBomN9P.js → i18n/en/Payroll.PayrollHistoryList.json.js} +1 -1
- package/dist/i18n/en/Payroll.PayrollHistoryList.json.js.map +1 -0
- package/dist/{Payroll.PayrollSchedule-DR1oc4YN.js → i18n/en/Payroll.PayrollSchedule.json.js} +1 -1
- package/dist/i18n/en/Payroll.PayrollSchedule.json.js.map +1 -0
- package/dist/i18n/en/common.json.d.ts +153 -0
- package/dist/i18n/en/common.json.js +168 -0
- package/dist/i18n/en/common.json.js.map +1 -0
- package/dist/i18n/index.d.ts +1 -0
- package/dist/index.d.ts +5 -1516
- package/dist/index.js +17 -49644
- package/dist/index.js.map +1 -1
- package/dist/models/NAICSCodes.d.ts +4 -0
- package/dist/models/NAICSCodes.js +5 -0
- package/dist/models/NAICSCodes.js.map +1 -0
- package/dist/models/NAICSValues.d.ts +2 -0
- package/dist/{NAICSValues-DHi955wK.js → models/NAICSValues.js} +1 -1
- package/dist/models/NAICSValues.js.map +1 -0
- package/dist/models/PayPeriod.d.ts +18 -0
- package/dist/models/Payroll.d.ts +40 -0
- package/dist/models/PayrollTotals.d.ts +24 -0
- package/dist/models/WA_RISK_CODES.d.ts +2866 -0
- package/dist/models/WA_RISK_CODES.js +3826 -0
- package/dist/models/WA_RISK_CODES.js.map +1 -0
- package/dist/shared/constants.d.ts +234 -0
- package/dist/shared/constants.js +208 -0
- package/dist/shared/constants.js.map +1 -0
- package/dist/style.css +1 -1
- package/dist/test-utils/renderWithProviders.d.ts +9 -0
- package/dist/types/GTheme.d.ts +255 -0
- package/dist/types/Helpers.d.ts +27 -0
- package/dist/types/i18next.d.ts +918 -0
- package/dist/types/sass.d.ts +4 -0
- package/dist/types/svg.d.ts +14 -0
- package/package.json +35 -26
- package/dist/Company.AddBank--N4kK8CC.js.map +0 -1
- package/dist/Company.Addresses-BLDgBmOD.js.map +0 -1
- package/dist/Company.AssignSignatory-CUCZtm6s.js.map +0 -1
- package/dist/Company.DocumentList-D-h6c4bI.js.map +0 -1
- package/dist/Company.FederalTaxes-BuTN_7W0.js.map +0 -1
- package/dist/Company.Industry-DLXwZPaw.js.map +0 -1
- package/dist/Company.Locations-Cp9h8ZGu.js.map +0 -1
- package/dist/Company.PaySchedule-CxoupNmN.js.map +0 -1
- package/dist/Company.SignatureForm-DC4MsbLt.js +0 -30
- package/dist/Company.SignatureForm-DC4MsbLt.js.map +0 -1
- package/dist/Employee.BankAccount-DFNmm0eF.js.map +0 -1
- package/dist/Employee.Compensation-TuS8Bmv_.js +0 -83
- package/dist/Employee.Compensation-TuS8Bmv_.js.map +0 -1
- package/dist/Employee.Deductions-yskR0evJ.js.map +0 -1
- package/dist/Employee.DocumentSigner-DgbuxBnJ.js.map +0 -1
- package/dist/Employee.EmployeeList-BGB23n1N.js +0 -40
- package/dist/Employee.EmployeeList-BGB23n1N.js.map +0 -1
- package/dist/Employee.HomeAddress-DQ-CWfZA.js.map +0 -1
- package/dist/Employee.Landing-Hpn09zPP.js.map +0 -1
- package/dist/Employee.OnboardingSummary-CmxhPw5V.js.map +0 -1
- package/dist/Employee.PaySchedules-C3chTJFz.js.map +0 -1
- package/dist/Employee.PaymentMethod-B1tieS6Y.js.map +0 -1
- package/dist/Employee.Profile-u_Zt7QkR.js.map +0 -1
- package/dist/Employee.SplitPaycheck-DuzIuN4Y.js.map +0 -1
- package/dist/Employee.StateTaxes-5hNQeRZm.js.map +0 -1
- package/dist/Employee.Taxes-DQX-wk0E.js +0 -53
- package/dist/Employee.Taxes-DQX-wk0E.js.map +0 -1
- package/dist/NAICSValues-DHi955wK.js.map +0 -1
- package/dist/Payroll.PayrollHistoryList-vkBomN9P.js.map +0 -1
- package/dist/Payroll.PayrollSchedule-DR1oc4YN.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.8.0
|
|
4
|
+
|
|
5
|
+
- Company Onboarding flow improvements and fixes:
|
|
6
|
+
- Added comprehensive Company.OnboardingFlow component that guides users through the entire onboarding process
|
|
7
|
+
- Introduced Company.OnboardingOverview component for tracking onboarding progress
|
|
8
|
+
- Improved state management and context handling for onboarding components
|
|
9
|
+
- Enhanced documentation for company onboarding workflow
|
|
10
|
+
- Added Company.StateTaxesFlow component for managing state tax requirements
|
|
11
|
+
- Support for state-specific tax forms and requirements
|
|
12
|
+
- Ability to update state tax settings with validation
|
|
13
|
+
- Component Adapter initial implementation available with most components (Docs coming soon)
|
|
14
|
+
- Rework of exports to enable better tree shaking
|
|
15
|
+
- Breadcrumbs have been replaced with Progress Bar for improved user experience
|
|
16
|
+
- Common RequirementsList component added
|
|
17
|
+
|
|
18
|
+
### Breaking changes
|
|
19
|
+
|
|
20
|
+
> Note: We are pre alpha and are regularly iterating on the SDK as we learn more about our consumers and their needs which sometimes involves breaking changes. [Read more about our current versioning strategy here](./docs/04/01/versioning.md).
|
|
21
|
+
|
|
22
|
+
#### Deprecation of GustoApiProvider in favor of GustoProvider
|
|
23
|
+
|
|
24
|
+
`GustoApiProvider` has been deprecated and will be removed in a future version. Please update your code to use `GustoProvider` instead:
|
|
25
|
+
|
|
26
|
+
```tsx
|
|
27
|
+
// Before
|
|
28
|
+
<GustoApiProvider config={{ baseUrl: 'https://api.example.com' }}>
|
|
29
|
+
{children}
|
|
30
|
+
</GustoApiProvider>
|
|
31
|
+
|
|
32
|
+
// After
|
|
33
|
+
<GustoProvider config={{ baseUrl: 'https://api.example.com' }}>
|
|
34
|
+
{children}
|
|
35
|
+
</GustoProvider>
|
|
36
|
+
```
|
|
37
|
+
|
|
3
38
|
## 0.7.0
|
|
4
39
|
|
|
5
40
|
- Add company federal taxes component
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
const l = (r, n, t) => {
|
|
2
|
+
const e = r[n];
|
|
3
|
+
return e ? typeof e == "function" ? e() : Promise.resolve(e) : new Promise((i, o) => {
|
|
4
|
+
(typeof queueMicrotask == "function" ? queueMicrotask : setTimeout)(
|
|
5
|
+
o.bind(
|
|
6
|
+
null,
|
|
7
|
+
new Error(
|
|
8
|
+
"Unknown variable dynamic import: " + n + (n.split("/").length !== t ? ". Note that variables only represent file names one level deep." : "")
|
|
9
|
+
)
|
|
10
|
+
)
|
|
11
|
+
);
|
|
12
|
+
});
|
|
13
|
+
};
|
|
14
|
+
export {
|
|
15
|
+
l as default
|
|
16
|
+
};
|
|
17
|
+
//# sourceMappingURL=dynamic-import-helper.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dynamic-import-helper.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const i = ({
|
|
3
|
+
title: t,
|
|
4
|
+
titleId: l,
|
|
5
|
+
...r
|
|
6
|
+
}) => /* @__PURE__ */ e.createElement("svg", { width: 16, height: 16, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": l, ...r }, t ? /* @__PURE__ */ e.createElement("title", { id: l }, t) : null, /* @__PURE__ */ e.createElement("g", { clipPath: "url(#clip0_7905_56699)" }, /* @__PURE__ */ e.createElement("path", { d: "M8.00004 5.33334V8.00001M8.00004 10.6667H8.00671M14.6667 8.00001C14.6667 11.6819 11.6819 14.6667 8.00004 14.6667C4.31814 14.6667 1.33337 11.6819 1.33337 8.00001C1.33337 4.31811 4.31814 1.33334 8.00004 1.33334C11.6819 1.33334 14.6667 4.31811 14.6667 8.00001Z", stroke: "#F04438", strokeWidth: 1.33333, strokeLinecap: "round", strokeLinejoin: "round" })), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("clipPath", { id: "clip0_7905_56699" }, /* @__PURE__ */ e.createElement("rect", { width: 16, height: 16, fill: "white" }))));
|
|
7
|
+
export {
|
|
8
|
+
i as default
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=alert-circle.svg.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"alert-circle.svg.js","sources":["../../../src/assets/icons/alert-circle.svg?react"],"sourcesContent":["import * as React from \"react\";\nconst SvgAlertCircle = ({\n title,\n titleId,\n ...props\n}) => /* @__PURE__ */ React.createElement(\"svg\", { width: 16, height: 16, viewBox: \"0 0 16 16\", fill: \"none\", xmlns: \"http://www.w3.org/2000/svg\", \"aria-labelledby\": titleId, ...props }, title ? /* @__PURE__ */ React.createElement(\"title\", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement(\"g\", { clipPath: \"url(#clip0_7905_56699)\" }, /* @__PURE__ */ React.createElement(\"path\", { d: \"M8.00004 5.33334V8.00001M8.00004 10.6667H8.00671M14.6667 8.00001C14.6667 11.6819 11.6819 14.6667 8.00004 14.6667C4.31814 14.6667 1.33337 11.6819 1.33337 8.00001C1.33337 4.31811 4.31814 1.33334 8.00004 1.33334C11.6819 1.33334 14.6667 4.31811 14.6667 8.00001Z\", stroke: \"#F04438\", strokeWidth: 1.33333, strokeLinecap: \"round\", strokeLinejoin: \"round\" })), /* @__PURE__ */ React.createElement(\"defs\", null, /* @__PURE__ */ React.createElement(\"clipPath\", { id: \"clip0_7905_56699\" }, /* @__PURE__ */ React.createElement(\"rect\", { width: 16, height: 16, fill: \"white\" }))));\nexport default SvgAlertCircle;\n"],"names":["SvgAlertCircle","title","titleId","props","React"],"mappings":";AACK,MAACA,IAAiB,CAAC;AAAA,EACtB,OAAAC;AAAA,EACA,SAAAC;AAAA,EACA,GAAGC;AACL,MAAsB,gBAAAC,EAAM,cAAc,OAAO,EAAE,OAAO,IAAI,QAAQ,IAAI,SAAS,aAAa,MAAM,QAAQ,OAAO,8BAA8B,mBAAmBF,GAAS,GAAGC,EAAK,GAAIF,IAAwB,gBAAAG,EAAM,cAAc,SAAS,EAAE,IAAIF,KAAWD,CAAK,IAAI,MAAsB,gBAAAG,EAAM,cAAc,KAAK,EAAE,UAAU,yBAAwB,GAAoB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,qQAAqQ,QAAQ,WAAW,aAAa,SAAS,eAAe,SAAS,gBAAgB,QAAS,CAAA,CAAC,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,MAAsB,gBAAAA,EAAM,cAAc,YAAY,EAAE,IAAI,mBAAoB,GAAkB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,OAAO,IAAI,QAAQ,IAAI,MAAM,QAAS,CAAA,CAAC,CAAC,CAAC;"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const n = ({
|
|
3
|
+
title: l,
|
|
4
|
+
titleId: t,
|
|
5
|
+
...a
|
|
6
|
+
}) => /* @__PURE__ */ e.createElement("svg", { width: 20, height: 20, viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": t, ...a }, l ? /* @__PURE__ */ e.createElement("title", { id: t }, l) : null, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M9.11612 13.2544C9.60427 13.7426 10.3957 13.7426 10.8839 13.2544L15.9754 8.16291C16.3415 7.7968 16.3415 7.2032 15.9754 6.83709C15.6093 6.47097 15.0157 6.47097 14.6496 6.83709L10 11.4867L5.35041 6.83709C4.9843 6.47097 4.3907 6.47097 4.02459 6.83709C3.65847 7.2032 3.65847 7.7968 4.02459 8.16291L9.11612 13.2544Z", fill: "#6C6C72" }));
|
|
7
|
+
export {
|
|
8
|
+
n as default
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=caret-down.svg.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"caret-down.svg.js","sources":["../../../src/assets/icons/caret-down.svg?react"],"sourcesContent":["import * as React from \"react\";\nconst SvgCaretDown = ({\n title,\n titleId,\n ...props\n}) => /* @__PURE__ */ React.createElement(\"svg\", { width: 20, height: 20, viewBox: \"0 0 20 20\", fill: \"none\", xmlns: \"http://www.w3.org/2000/svg\", \"aria-labelledby\": titleId, ...props }, title ? /* @__PURE__ */ React.createElement(\"title\", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement(\"path\", { fillRule: \"evenodd\", clipRule: \"evenodd\", d: \"M9.11612 13.2544C9.60427 13.7426 10.3957 13.7426 10.8839 13.2544L15.9754 8.16291C16.3415 7.7968 16.3415 7.2032 15.9754 6.83709C15.6093 6.47097 15.0157 6.47097 14.6496 6.83709L10 11.4867L5.35041 6.83709C4.9843 6.47097 4.3907 6.47097 4.02459 6.83709C3.65847 7.2032 3.65847 7.7968 4.02459 8.16291L9.11612 13.2544Z\", fill: \"#6C6C72\" }));\nexport default SvgCaretDown;\n"],"names":["SvgCaretDown","title","titleId","props","React"],"mappings":";AACK,MAACA,IAAe,CAAC;AAAA,EACpB,OAAAC;AAAA,EACA,SAAAC;AAAA,EACA,GAAGC;AACL,MAAsB,gBAAAC,EAAM,cAAc,OAAO,EAAE,OAAO,IAAI,QAAQ,IAAI,SAAS,aAAa,MAAM,QAAQ,OAAO,8BAA8B,mBAAmBF,GAAS,GAAGC,EAAO,GAAEF,IAAwB,gBAAAG,EAAM,cAAc,SAAS,EAAE,IAAIF,EAAO,GAAID,CAAK,IAAI,MAAsB,gBAAAG,EAAM,cAAc,QAAQ,EAAE,UAAU,WAAW,UAAU,WAAW,GAAG,0TAA0T,MAAM,WAAW,CAAC;"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const n = ({
|
|
3
|
+
title: l,
|
|
4
|
+
titleId: t,
|
|
5
|
+
...a
|
|
6
|
+
}) => /* @__PURE__ */ e.createElement("svg", { width: 20, height: 20, viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": t, ...a }, l ? /* @__PURE__ */ e.createElement("title", { id: t }, l) : null, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6.74557 9.11612C6.25742 9.60427 6.25742 10.3957 6.74557 10.8839L11.8371 15.9754C12.2032 16.3415 12.7968 16.3415 13.1629 15.9754C13.529 15.6093 13.529 15.0157 13.1629 14.6496L8.51334 10L13.1629 5.35041C13.529 4.9843 13.529 4.3907 13.1629 4.02459C12.7968 3.65847 12.2032 3.65847 11.8371 4.02459L6.74557 9.11612Z", fill: "#6C6C72" }));
|
|
7
|
+
export {
|
|
8
|
+
n as default
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=caret-left.svg.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"caret-left.svg.js","sources":["../../../src/assets/icons/caret-left.svg?react"],"sourcesContent":["import * as React from \"react\";\nconst SvgCaretLeft = ({\n title,\n titleId,\n ...props\n}) => /* @__PURE__ */ React.createElement(\"svg\", { width: 20, height: 20, viewBox: \"0 0 20 20\", fill: \"none\", xmlns: \"http://www.w3.org/2000/svg\", \"aria-labelledby\": titleId, ...props }, title ? /* @__PURE__ */ React.createElement(\"title\", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement(\"path\", { fillRule: \"evenodd\", clipRule: \"evenodd\", d: \"M6.74557 9.11612C6.25742 9.60427 6.25742 10.3957 6.74557 10.8839L11.8371 15.9754C12.2032 16.3415 12.7968 16.3415 13.1629 15.9754C13.529 15.6093 13.529 15.0157 13.1629 14.6496L8.51334 10L13.1629 5.35041C13.529 4.9843 13.529 4.3907 13.1629 4.02459C12.7968 3.65847 12.2032 3.65847 11.8371 4.02459L6.74557 9.11612Z\", fill: \"#6C6C72\" }));\nexport default SvgCaretLeft;\n"],"names":["SvgCaretLeft","title","titleId","props","React"],"mappings":";AACK,MAACA,IAAe,CAAC;AAAA,EACpB,OAAAC;AAAA,EACA,SAAAC;AAAA,EACA,GAAGC;AACL,MAAsB,gBAAAC,EAAM,cAAc,OAAO,EAAE,OAAO,IAAI,QAAQ,IAAI,SAAS,aAAa,MAAM,QAAQ,OAAO,8BAA8B,mBAAmBF,GAAS,GAAGC,EAAO,GAAEF,IAAwB,gBAAAG,EAAM,cAAc,SAAS,EAAE,IAAIF,EAAO,GAAID,CAAK,IAAI,MAAsB,gBAAAG,EAAM,cAAc,QAAQ,EAAE,UAAU,WAAW,UAAU,WAAW,GAAG,0TAA0T,MAAM,WAAW,CAAC;"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const i = ({
|
|
3
|
+
title: l,
|
|
4
|
+
titleId: t,
|
|
5
|
+
...a
|
|
6
|
+
}) => /* @__PURE__ */ e.createElement("svg", { width: 20, height: 20, viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": t, ...a }, l ? /* @__PURE__ */ e.createElement("title", { id: t }, l) : null, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M13.2544 9.11612C13.7426 9.60427 13.7426 10.3957 13.2544 10.8839L8.16291 15.9754C7.7968 16.3415 7.2032 16.3415 6.83709 15.9754C6.47097 15.6093 6.47097 15.0157 6.83709 14.6496L11.4867 10L6.83709 5.35041C6.47097 4.9843 6.47097 4.3907 6.83709 4.02459C7.2032 3.65847 7.7968 3.65847 8.16291 4.02459L13.2544 9.11612Z", fill: "#6C6C72" }));
|
|
7
|
+
export {
|
|
8
|
+
i as default
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=caret-right.svg.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"caret-right.svg.js","sources":["../../../src/assets/icons/caret-right.svg?react"],"sourcesContent":["import * as React from \"react\";\nconst SvgCaretRight = ({\n title,\n titleId,\n ...props\n}) => /* @__PURE__ */ React.createElement(\"svg\", { width: 20, height: 20, viewBox: \"0 0 20 20\", fill: \"none\", xmlns: \"http://www.w3.org/2000/svg\", \"aria-labelledby\": titleId, ...props }, title ? /* @__PURE__ */ React.createElement(\"title\", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement(\"path\", { fillRule: \"evenodd\", clipRule: \"evenodd\", d: \"M13.2544 9.11612C13.7426 9.60427 13.7426 10.3957 13.2544 10.8839L8.16291 15.9754C7.7968 16.3415 7.2032 16.3415 6.83709 15.9754C6.47097 15.6093 6.47097 15.0157 6.83709 14.6496L11.4867 10L6.83709 5.35041C6.47097 4.9843 6.47097 4.3907 6.83709 4.02459C7.2032 3.65847 7.7968 3.65847 8.16291 4.02459L13.2544 9.11612Z\", fill: \"#6C6C72\" }));\nexport default SvgCaretRight;\n"],"names":["SvgCaretRight","title","titleId","props","React"],"mappings":";AACK,MAACA,IAAgB,CAAC;AAAA,EACrB,OAAAC;AAAA,EACA,SAAAC;AAAA,EACA,GAAGC;AACL,MAAsB,gBAAAC,EAAM,cAAc,OAAO,EAAE,OAAO,IAAI,QAAQ,IAAI,SAAS,aAAa,MAAM,QAAQ,OAAO,8BAA8B,mBAAmBF,GAAS,GAAGC,EAAO,GAAEF,IAAwB,gBAAAG,EAAM,cAAc,SAAS,EAAE,IAAIF,EAAO,GAAID,CAAK,IAAI,MAAsB,gBAAAG,EAAM,cAAc,QAAQ,EAAE,UAAU,WAAW,UAAU,WAAW,GAAG,0TAA0T,MAAM,WAAW,CAAC;"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const a = ({
|
|
3
|
+
title: l,
|
|
4
|
+
titleId: t,
|
|
5
|
+
...o
|
|
6
|
+
}) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 16, height: 16, viewBox: "0 0 16 16", fill: "none", "aria-labelledby": t, ...o }, l ? /* @__PURE__ */ e.createElement("title", { id: t }, l) : null, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6.5 10.0858L4.20711 7.79289C3.81658 7.40237 3.18342 7.40237 2.79289 7.79289C2.40237 8.18342 2.40237 8.81658 2.79289 9.20711L5.61611 12.0303C6.10427 12.5185 6.89572 12.5185 7.38388 12.0303L13.7071 5.70711C14.0976 5.31658 14.0976 4.68342 13.7071 4.29289C13.3166 3.90237 12.6834 3.90237 12.2929 4.29289L6.5 10.0858Z", fill: "currentcolor" }));
|
|
7
|
+
export {
|
|
8
|
+
a as default
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=checkbox.svg.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"checkbox.svg.js","sources":["../../../src/assets/icons/checkbox.svg?react"],"sourcesContent":["import * as React from \"react\";\nconst SvgCheckbox = ({\n title,\n titleId,\n ...props\n}) => /* @__PURE__ */ React.createElement(\"svg\", { xmlns: \"http://www.w3.org/2000/svg\", width: 16, height: 16, viewBox: \"0 0 16 16\", fill: \"none\", \"aria-labelledby\": titleId, ...props }, title ? /* @__PURE__ */ React.createElement(\"title\", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement(\"path\", { fillRule: \"evenodd\", clipRule: \"evenodd\", d: \"M6.5 10.0858L4.20711 7.79289C3.81658 7.40237 3.18342 7.40237 2.79289 7.79289C2.40237 8.18342 2.40237 8.81658 2.79289 9.20711L5.61611 12.0303C6.10427 12.5185 6.89572 12.5185 7.38388 12.0303L13.7071 5.70711C14.0976 5.31658 14.0976 4.68342 13.7071 4.29289C13.3166 3.90237 12.6834 3.90237 12.2929 4.29289L6.5 10.0858Z\", fill: \"currentcolor\" }));\nexport default SvgCheckbox;\n"],"names":["SvgCheckbox","title","titleId","props","React"],"mappings":";AACK,MAACA,IAAc,CAAC;AAAA,EACnB,OAAAC;AAAA,EACA,SAAAC;AAAA,EACA,GAAGC;AACL,MAAsB,gBAAAC,EAAM,cAAc,OAAO,EAAE,OAAO,8BAA8B,OAAO,IAAI,QAAQ,IAAI,SAAS,aAAa,MAAM,QAAQ,mBAAmBF,GAAS,GAAGC,EAAO,GAAEF,IAAwB,gBAAAG,EAAM,cAAc,SAAS,EAAE,IAAIF,EAAO,GAAID,CAAK,IAAI,MAAsB,gBAAAG,EAAM,cAAc,QAAQ,EAAE,UAAU,WAAW,UAAU,WAAW,GAAG,6TAA6T,MAAM,gBAAgB,CAAC;"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const l = ({
|
|
3
|
+
title: t,
|
|
4
|
+
titleId: r,
|
|
5
|
+
...a
|
|
6
|
+
}) => /* @__PURE__ */ e.createElement("svg", { width: 36, height: 36, viewBox: "0 0 36 36", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": r, ...a }, t ? /* @__PURE__ */ e.createElement("title", { id: r }, t) : null, /* @__PURE__ */ e.createElement("g", { opacity: 0.3 }, /* @__PURE__ */ e.createElement("path", { d: "M18 30.5C11.0964 30.5 5.49996 24.9036 5.49996 18C5.49996 11.0964 11.0964 5.50001 18 5.50001C24.9035 5.50001 30.5 11.0964 30.5 18C30.5 24.9036 24.9035 30.5 18 30.5Z", stroke: "#D92D20", strokeWidth: 1.66667 })), /* @__PURE__ */ e.createElement("g", { opacity: 0.1 }, /* @__PURE__ */ e.createElement("path", { d: "M17.1667 1.33333H18.8333C27.5778 1.33333 34.6667 8.42216 34.6667 17.1667V18.8333C34.6667 27.5778 27.5778 34.6667 18.8333 34.6667H17.1667C8.42216 34.6667 1.33333 27.5778 1.33333 18.8333V17.1667C1.33333 8.42216 8.42216 1.33333 17.1667 1.33333Z", stroke: "#D92D20", strokeWidth: 1.66667 })), /* @__PURE__ */ e.createElement("g", { clipPath: "url(#clip0_7863_14861)" }, /* @__PURE__ */ e.createElement("path", { d: "M20.5 15.5L15.5 20.5M15.5 15.5L20.5 20.5M26.3333 18C26.3333 22.6024 22.6023 26.3333 18 26.3333C13.3976 26.3333 9.66663 22.6024 9.66663 18C9.66663 13.3976 13.3976 9.66667 18 9.66667C22.6023 9.66667 26.3333 13.3976 26.3333 18Z", stroke: "#D92D20", strokeWidth: 1.66667, strokeLinecap: "round", strokeLinejoin: "round" })), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("clipPath", { id: "clip0_7863_14861" }, /* @__PURE__ */ e.createElement("rect", { width: 20, height: 20, fill: "white", transform: "translate(8 8)" }))));
|
|
7
|
+
export {
|
|
8
|
+
l as default
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=error.svg.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"error.svg.js","sources":["../../../src/assets/icons/error.svg?react"],"sourcesContent":["import * as React from \"react\";\nconst SvgError = ({\n title,\n titleId,\n ...props\n}) => /* @__PURE__ */ React.createElement(\"svg\", { width: 36, height: 36, viewBox: \"0 0 36 36\", fill: \"none\", xmlns: \"http://www.w3.org/2000/svg\", \"aria-labelledby\": titleId, ...props }, title ? /* @__PURE__ */ React.createElement(\"title\", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement(\"g\", { opacity: 0.3 }, /* @__PURE__ */ React.createElement(\"path\", { d: \"M18 30.5C11.0964 30.5 5.49996 24.9036 5.49996 18C5.49996 11.0964 11.0964 5.50001 18 5.50001C24.9035 5.50001 30.5 11.0964 30.5 18C30.5 24.9036 24.9035 30.5 18 30.5Z\", stroke: \"#D92D20\", strokeWidth: 1.66667 })), /* @__PURE__ */ React.createElement(\"g\", { opacity: 0.1 }, /* @__PURE__ */ React.createElement(\"path\", { d: \"M17.1667 1.33333H18.8333C27.5778 1.33333 34.6667 8.42216 34.6667 17.1667V18.8333C34.6667 27.5778 27.5778 34.6667 18.8333 34.6667H17.1667C8.42216 34.6667 1.33333 27.5778 1.33333 18.8333V17.1667C1.33333 8.42216 8.42216 1.33333 17.1667 1.33333Z\", stroke: \"#D92D20\", strokeWidth: 1.66667 })), /* @__PURE__ */ React.createElement(\"g\", { clipPath: \"url(#clip0_7863_14861)\" }, /* @__PURE__ */ React.createElement(\"path\", { d: \"M20.5 15.5L15.5 20.5M15.5 15.5L20.5 20.5M26.3333 18C26.3333 22.6024 22.6023 26.3333 18 26.3333C13.3976 26.3333 9.66663 22.6024 9.66663 18C9.66663 13.3976 13.3976 9.66667 18 9.66667C22.6023 9.66667 26.3333 13.3976 26.3333 18Z\", stroke: \"#D92D20\", strokeWidth: 1.66667, strokeLinecap: \"round\", strokeLinejoin: \"round\" })), /* @__PURE__ */ React.createElement(\"defs\", null, /* @__PURE__ */ React.createElement(\"clipPath\", { id: \"clip0_7863_14861\" }, /* @__PURE__ */ React.createElement(\"rect\", { width: 20, height: 20, fill: \"white\", transform: \"translate(8 8)\" }))));\nexport default SvgError;\n"],"names":["SvgError","title","titleId","props","React"],"mappings":";AACK,MAACA,IAAW,CAAC;AAAA,EAChB,OAAAC;AAAA,EACA,SAAAC;AAAA,EACA,GAAGC;AACL,MAAsB,gBAAAC,EAAM,cAAc,OAAO,EAAE,OAAO,IAAI,QAAQ,IAAI,SAAS,aAAa,MAAM,QAAQ,OAAO,8BAA8B,mBAAmBF,GAAS,GAAGC,EAAK,GAAIF,IAAwB,gBAAAG,EAAM,cAAc,SAAS,EAAE,IAAIF,EAAO,GAAID,CAAK,IAAI,MAAsB,gBAAAG,EAAM,cAAc,KAAK,EAAE,SAAS,IAAK,GAAkB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,uKAAuK,QAAQ,WAAW,aAAa,QAAS,CAAA,CAAC,GAAmB,gBAAAA,EAAM,cAAc,KAAK,EAAE,SAAS,IAAK,GAAkB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,qPAAqP,QAAQ,WAAW,aAAa,QAAS,CAAA,CAAC,GAAmB,gBAAAA,EAAM,cAAc,KAAK,EAAE,UAAU,yBAAwB,GAAoB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,oOAAoO,QAAQ,WAAW,aAAa,SAAS,eAAe,SAAS,gBAAgB,SAAS,CAAC,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,MAAsB,gBAAAA,EAAM,cAAc,YAAY,EAAE,IAAI,mBAAoB,GAAkB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,OAAO,IAAI,QAAQ,IAAI,MAAM,SAAS,WAAW,iBAAgB,CAAE,CAAC,CAAC,CAAC;"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const a = ({
|
|
3
|
+
title: t,
|
|
4
|
+
titleId: l,
|
|
5
|
+
...r
|
|
6
|
+
}) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 21, height: 20, viewBox: "0 0 21 20", fill: "none", "aria-labelledby": l, ...r }, t ? /* @__PURE__ */ e.createElement("title", { id: l }, t) : null, /* @__PURE__ */ e.createElement("path", { d: "M12.375 3.125C12.375 4.16053 11.5355 5 10.5 5C9.46447 5 8.625 4.16053 8.625 3.125C8.625 2.08947 9.46447 1.25 10.5 1.25C11.5355 1.25 12.375 2.08947 12.375 3.125Z", fill: "currentColor" }), /* @__PURE__ */ e.createElement("path", { d: "M12.375 10C12.375 11.0355 11.5355 11.875 10.5 11.875C9.46447 11.875 8.625 11.0355 8.625 10C8.625 8.96447 9.46447 8.125 10.5 8.125C11.5355 8.125 12.375 8.96447 12.375 10Z", fill: "currentColor" }), /* @__PURE__ */ e.createElement("path", { d: "M10.5 18.75C11.5355 18.75 12.375 17.9105 12.375 16.875C12.375 15.8395 11.5355 15 10.5 15C9.46447 15 8.625 15.8395 8.625 16.875C8.625 17.9105 9.46447 18.75 10.5 18.75Z", fill: "currentColor" }));
|
|
7
|
+
export {
|
|
8
|
+
a as default
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=hamburger.svg.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"hamburger.svg.js","sources":["../../../src/assets/icons/hamburger.svg?react"],"sourcesContent":["import * as React from \"react\";\nconst SvgHamburger = ({\n title,\n titleId,\n ...props\n}) => /* @__PURE__ */ React.createElement(\"svg\", { xmlns: \"http://www.w3.org/2000/svg\", width: 21, height: 20, viewBox: \"0 0 21 20\", fill: \"none\", \"aria-labelledby\": titleId, ...props }, title ? /* @__PURE__ */ React.createElement(\"title\", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M12.375 3.125C12.375 4.16053 11.5355 5 10.5 5C9.46447 5 8.625 4.16053 8.625 3.125C8.625 2.08947 9.46447 1.25 10.5 1.25C11.5355 1.25 12.375 2.08947 12.375 3.125Z\", fill: \"currentColor\" }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M12.375 10C12.375 11.0355 11.5355 11.875 10.5 11.875C9.46447 11.875 8.625 11.0355 8.625 10C8.625 8.96447 9.46447 8.125 10.5 8.125C11.5355 8.125 12.375 8.96447 12.375 10Z\", fill: \"currentColor\" }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M10.5 18.75C11.5355 18.75 12.375 17.9105 12.375 16.875C12.375 15.8395 11.5355 15 10.5 15C9.46447 15 8.625 15.8395 8.625 16.875C8.625 17.9105 9.46447 18.75 10.5 18.75Z\", fill: \"currentColor\" }));\nexport default SvgHamburger;\n"],"names":["SvgHamburger","title","titleId","props","React"],"mappings":";AACK,MAACA,IAAe,CAAC;AAAA,EACpB,OAAAC;AAAA,EACA,SAAAC;AAAA,EACA,GAAGC;AACL,MAAsB,gBAAAC,EAAM,cAAc,OAAO,EAAE,OAAO,8BAA8B,OAAO,IAAI,QAAQ,IAAI,SAAS,aAAa,MAAM,QAAQ,mBAAmBF,GAAS,GAAGC,EAAO,GAAEF,IAAwB,gBAAAG,EAAM,cAAc,SAAS,EAAE,IAAIF,EAAS,GAAED,CAAK,IAAI,MAAsB,gBAAAG,EAAM,cAAc,QAAQ,EAAE,GAAG,oKAAoK,MAAM,eAAc,CAAE,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,6KAA6K,MAAM,eAAgB,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,0KAA0K,MAAM,eAAc,CAAE,CAAC;"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const l = ({
|
|
3
|
+
title: t,
|
|
4
|
+
titleId: r,
|
|
5
|
+
...a
|
|
6
|
+
}) => /* @__PURE__ */ e.createElement("svg", { width: 36, height: 36, viewBox: "0 0 36 36", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": r, ...a }, t ? /* @__PURE__ */ e.createElement("title", { id: r }, t) : null, /* @__PURE__ */ e.createElement("g", { opacity: 0.3 }, /* @__PURE__ */ e.createElement("path", { d: "M18 30.5C11.0964 30.5 5.49996 24.9036 5.49996 18C5.49996 11.0964 11.0964 5.50001 18 5.50001C24.9035 5.50001 30.5 11.0964 30.5 18C30.5 24.9036 24.9035 30.5 18 30.5Z", stroke: "#535862", strokeWidth: 1.66667 })), /* @__PURE__ */ e.createElement("g", { opacity: 0.1 }, /* @__PURE__ */ e.createElement("path", { d: "M17.1667 1.33333H18.8333C27.5778 1.33333 34.6667 8.42216 34.6667 17.1667V18.8333C34.6667 27.5778 27.5778 34.6667 18.8333 34.6667H17.1667C8.42216 34.6667 1.33333 27.5778 1.33333 18.8333V17.1667C1.33333 8.42216 8.42216 1.33333 17.1667 1.33333Z", stroke: "#535862", strokeWidth: 1.66667 })), /* @__PURE__ */ e.createElement("g", { clipPath: "url(#clip0_7863_14850)" }, /* @__PURE__ */ e.createElement("path", { d: "M18 21.3333V18M18 14.6667H18.0083M26.3333 18C26.3333 22.6024 22.6023 26.3333 18 26.3333C13.3976 26.3333 9.66663 22.6024 9.66663 18C9.66663 13.3976 13.3976 9.66667 18 9.66667C22.6023 9.66667 26.3333 13.3976 26.3333 18Z", stroke: "#535862", strokeWidth: 1.66667, strokeLinecap: "round", strokeLinejoin: "round" })), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("clipPath", { id: "clip0_7863_14850" }, /* @__PURE__ */ e.createElement("rect", { width: 20, height: 20, fill: "white", transform: "translate(8 8)" }))));
|
|
7
|
+
export {
|
|
8
|
+
l as default
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=info.svg.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"info.svg.js","sources":["../../../src/assets/icons/info.svg?react"],"sourcesContent":["import * as React from \"react\";\nconst SvgInfo = ({\n title,\n titleId,\n ...props\n}) => /* @__PURE__ */ React.createElement(\"svg\", { width: 36, height: 36, viewBox: \"0 0 36 36\", fill: \"none\", xmlns: \"http://www.w3.org/2000/svg\", \"aria-labelledby\": titleId, ...props }, title ? /* @__PURE__ */ React.createElement(\"title\", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement(\"g\", { opacity: 0.3 }, /* @__PURE__ */ React.createElement(\"path\", { d: \"M18 30.5C11.0964 30.5 5.49996 24.9036 5.49996 18C5.49996 11.0964 11.0964 5.50001 18 5.50001C24.9035 5.50001 30.5 11.0964 30.5 18C30.5 24.9036 24.9035 30.5 18 30.5Z\", stroke: \"#535862\", strokeWidth: 1.66667 })), /* @__PURE__ */ React.createElement(\"g\", { opacity: 0.1 }, /* @__PURE__ */ React.createElement(\"path\", { d: \"M17.1667 1.33333H18.8333C27.5778 1.33333 34.6667 8.42216 34.6667 17.1667V18.8333C34.6667 27.5778 27.5778 34.6667 18.8333 34.6667H17.1667C8.42216 34.6667 1.33333 27.5778 1.33333 18.8333V17.1667C1.33333 8.42216 8.42216 1.33333 17.1667 1.33333Z\", stroke: \"#535862\", strokeWidth: 1.66667 })), /* @__PURE__ */ React.createElement(\"g\", { clipPath: \"url(#clip0_7863_14850)\" }, /* @__PURE__ */ React.createElement(\"path\", { d: \"M18 21.3333V18M18 14.6667H18.0083M26.3333 18C26.3333 22.6024 22.6023 26.3333 18 26.3333C13.3976 26.3333 9.66663 22.6024 9.66663 18C9.66663 13.3976 13.3976 9.66667 18 9.66667C22.6023 9.66667 26.3333 13.3976 26.3333 18Z\", stroke: \"#535862\", strokeWidth: 1.66667, strokeLinecap: \"round\", strokeLinejoin: \"round\" })), /* @__PURE__ */ React.createElement(\"defs\", null, /* @__PURE__ */ React.createElement(\"clipPath\", { id: \"clip0_7863_14850\" }, /* @__PURE__ */ React.createElement(\"rect\", { width: 20, height: 20, fill: \"white\", transform: \"translate(8 8)\" }))));\nexport default SvgInfo;\n"],"names":["SvgInfo","title","titleId","props","React"],"mappings":";AACK,MAACA,IAAU,CAAC;AAAA,EACf,OAAAC;AAAA,EACA,SAAAC;AAAA,EACA,GAAGC;AACL,MAAsB,gBAAAC,EAAM,cAAc,OAAO,EAAE,OAAO,IAAI,QAAQ,IAAI,SAAS,aAAa,MAAM,QAAQ,OAAO,8BAA8B,mBAAmBF,GAAS,GAAGC,EAAK,GAAIF,IAAwB,gBAAAG,EAAM,cAAc,SAAS,EAAE,IAAIF,EAAO,GAAID,CAAK,IAAI,MAAsB,gBAAAG,EAAM,cAAc,KAAK,EAAE,SAAS,IAAK,GAAkB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,uKAAuK,QAAQ,WAAW,aAAa,QAAS,CAAA,CAAC,GAAmB,gBAAAA,EAAM,cAAc,KAAK,EAAE,SAAS,IAAK,GAAkB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,qPAAqP,QAAQ,WAAW,aAAa,QAAS,CAAA,CAAC,GAAmB,gBAAAA,EAAM,cAAc,KAAK,EAAE,UAAU,yBAAwB,GAAoB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,6NAA6N,QAAQ,WAAW,aAAa,SAAS,eAAe,SAAS,gBAAgB,SAAS,CAAC,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,MAAsB,gBAAAA,EAAM,cAAc,YAAY,EAAE,IAAI,mBAAoB,GAAkB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,OAAO,IAAI,QAAQ,IAAI,MAAM,SAAS,WAAW,iBAAgB,CAAE,CAAC,CAAC,CAAC;"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const a = ({
|
|
3
|
+
title: C,
|
|
4
|
+
titleId: t,
|
|
5
|
+
...l
|
|
6
|
+
}) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 16, height: 16, viewBox: "0 0 16 16", fill: "none", "aria-labelledby": t, ...l }, C ? /* @__PURE__ */ e.createElement("title", { id: t }, C) : null, /* @__PURE__ */ e.createElement("path", { d: "M1.5 4C2.05228 4 2.5 3.55228 2.5 3C2.5 2.44772 2.05228 2 1.5 2C0.947715 2 0.5 2.44772 0.5 3C0.5 3.55228 0.947715 4 1.5 4Z", fill: "#6C6C72" }), /* @__PURE__ */ e.createElement("path", { d: "M4.75 2.25C4.33579 2.25 4 2.58579 4 3C4 3.41421 4.33579 3.75 4.75 3.75H14.75C15.1642 3.75 15.5 3.41421 15.5 3C15.5 2.58579 15.1642 2.25 14.75 2.25H4.75Z", fill: "#6C6C72" }), /* @__PURE__ */ e.createElement("path", { d: "M2.5 8C2.5 8.55228 2.05228 9 1.5 9C0.947715 9 0.5 8.55228 0.5 8C0.5 7.44772 0.947715 7 1.5 7C2.05228 7 2.5 7.44772 2.5 8Z", fill: "#6C6C72" }), /* @__PURE__ */ e.createElement("path", { d: "M4.75 7.25C4.33579 7.25 4 7.58579 4 8C4 8.41421 4.33579 8.75 4.75 8.75H14.75C15.1642 8.75 15.5 8.41421 15.5 8C15.5 7.58579 15.1642 7.25 14.75 7.25H4.75Z", fill: "#6C6C72" }), /* @__PURE__ */ e.createElement("path", { d: "M2.5 13C2.5 13.5523 2.05228 14 1.5 14C0.947715 14 0.5 13.5523 0.5 13C0.5 12.4477 0.947715 12 1.5 12C2.05228 12 2.5 12.4477 2.5 13Z", fill: "#6C6C72" }), /* @__PURE__ */ e.createElement("path", { d: "M4.75 12.25C4.33579 12.25 4 12.5858 4 13C4 13.4142 4.33579 13.75 4.75 13.75H14.75C15.1642 13.75 15.5 13.4142 15.5 13C15.5 12.5858 15.1642 12.25 14.75 12.25H4.75Z", fill: "#6C6C72" }));
|
|
7
|
+
export {
|
|
8
|
+
a as default
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=list.svg.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list.svg.js","sources":["../../../src/assets/icons/list.svg?react"],"sourcesContent":["import * as React from \"react\";\nconst SvgList = ({\n title,\n titleId,\n ...props\n}) => /* @__PURE__ */ React.createElement(\"svg\", { xmlns: \"http://www.w3.org/2000/svg\", width: 16, height: 16, viewBox: \"0 0 16 16\", fill: \"none\", \"aria-labelledby\": titleId, ...props }, title ? /* @__PURE__ */ React.createElement(\"title\", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M1.5 4C2.05228 4 2.5 3.55228 2.5 3C2.5 2.44772 2.05228 2 1.5 2C0.947715 2 0.5 2.44772 0.5 3C0.5 3.55228 0.947715 4 1.5 4Z\", fill: \"#6C6C72\" }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M4.75 2.25C4.33579 2.25 4 2.58579 4 3C4 3.41421 4.33579 3.75 4.75 3.75H14.75C15.1642 3.75 15.5 3.41421 15.5 3C15.5 2.58579 15.1642 2.25 14.75 2.25H4.75Z\", fill: \"#6C6C72\" }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M2.5 8C2.5 8.55228 2.05228 9 1.5 9C0.947715 9 0.5 8.55228 0.5 8C0.5 7.44772 0.947715 7 1.5 7C2.05228 7 2.5 7.44772 2.5 8Z\", fill: \"#6C6C72\" }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M4.75 7.25C4.33579 7.25 4 7.58579 4 8C4 8.41421 4.33579 8.75 4.75 8.75H14.75C15.1642 8.75 15.5 8.41421 15.5 8C15.5 7.58579 15.1642 7.25 14.75 7.25H4.75Z\", fill: \"#6C6C72\" }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M2.5 13C2.5 13.5523 2.05228 14 1.5 14C0.947715 14 0.5 13.5523 0.5 13C0.5 12.4477 0.947715 12 1.5 12C2.05228 12 2.5 12.4477 2.5 13Z\", fill: \"#6C6C72\" }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M4.75 12.25C4.33579 12.25 4 12.5858 4 13C4 13.4142 4.33579 13.75 4.75 13.75H14.75C15.1642 13.75 15.5 13.4142 15.5 13C15.5 12.5858 15.1642 12.25 14.75 12.25H4.75Z\", fill: \"#6C6C72\" }));\nexport default SvgList;\n"],"names":["SvgList","title","titleId","props","React"],"mappings":";AACK,MAACA,IAAU,CAAC;AAAA,EACf,OAAAC;AAAA,EACA,SAAAC;AAAA,EACA,GAAGC;AACL,MAAsB,gBAAAC,EAAM,cAAc,OAAO,EAAE,OAAO,8BAA8B,OAAO,IAAI,QAAQ,IAAI,SAAS,aAAa,MAAM,QAAQ,mBAAmBF,GAAS,GAAGC,KAASF,IAAwB,gBAAAG,EAAM,cAAc,SAAS,EAAE,IAAIF,EAAO,GAAID,CAAK,IAAI,MAAsB,gBAAAG,EAAM,cAAc,QAAQ,EAAE,GAAG,6HAA6H,MAAM,WAAW,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,4JAA4J,MAAM,UAAS,CAAE,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,6HAA6H,MAAM,UAAS,CAAE,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,4JAA4J,MAAM,UAAW,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,sIAAsI,MAAM,UAAW,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,qKAAqK,MAAM,WAAW,CAAC;"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
const A = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADgAAAA4CAYAAACohjseAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAd+SURBVHgB7VpPTBRXGP+WlT+tFVetSDCGQWkgaRvXJiZom7q0F2xSs5zKDbjBCbzpyTXtpelBaJNWD3ahl9ITmF40TcpyMR7a7NJ4gMRmFw/IxeyKGBeJTr/fm/eWt8MsCzvDdjX8ko+dmZ19b37v+/O+7xuIdrGLioaP3CHAEmIJsuzXzhVSLAmWWZaYPC8rSiUYYhmSnyBFgUCADMOgYDAobojFYpRKpey/m2IZJYtsRSLMkmQxmZAZCoXMa9eumfF43Eyn06YTcH1yctIcGhoy8TspcbK0XjGAlqIkiU1PTxcktBmSyaTZ19enE71CFQCDpNaghVKI2YEFYnMuC8liPmiwTOOTydHIyIjjTZlMRvjcwsKCOIY/Njc3C3/EMcQJGO/ixYs4RCDqpv8hCCWx0vAxJ9/iBxR+SOsmt0GUr46NjZmFzBb3kGUlAfIYm2kQphOJRqPEfpP3BbTV398vouSBpib64LPPxeeBpqN08OhRer68TM0Nh+ntR4sUv3s3F1ERZTEeE94wXmdnpzhk6aQyAOREQLAjEokIzbxVX29+9fU35nf/3C8oN+bmzSerq0LbenDBGHb09vaq74fJQzhp0GCJ82oH2DTz/Ofq1avEDye0NHDzZ6GxYqj1+6m39TjV19QILXZ3d1MikRDjXLmSH1+gRWiT0UIe+WOVwzXMGsDkOjn2oW2TA1ZfvqSJZIqy/AkT5QhK4XBYjDU1NZV3L8xXzulZZLVr0CArsBA7f+4iVh6ru1ZXx+SiVLdvH20XZxsa6OyRw+IYkRbjYVzMoy8koioHrwxZWsyQS9g1GMIfzk7yLqogwT5XEjng78ePhRYBEMIcIAqzz3sAKwCBcR95ALsG4zxBEGako6WlhfYeP0F9I6PkBroWAeVzHIRyWgRpzMefMfIgouoaxAxBmKcO+B60d/rCBXKL+5l03jlHTvE5Pj6+/hBMVCbsQfJgX9QJilHte9ToqKW193mvc4vlF2tCFNT+aq86NDP1lKDhdANC+onTp8krPHz2LO98eHhYbQ05nDt3Th16T/DkyZO5C/AH4OAWt4StYPnFiw3XsIhqLkCLqq5LKp2gmEEVrOKCnLSprY28wvLaWt65cgmdoPYMnmpQwKEKL3lrKBUaWU8JxvBHJ6hMJfv0Ke0UEKX1uYCZmRl16OlGn7INnqvl7k//SV6hvro67xwLqupGBeyL+jO5wQYTtUc05I2Lc3P03CMtHntnb+4YpogAo/s9MDs7qw5T5BL2IJPChDqwGYPcHz/9SG6ByuLY3nWCKtlWG76CXGQ8T4Jcwq7BcdV+UECUg/x1a8q1Ft+rzw9WyEOROenJBUxWLvIUeQA7wTH80f0QQOnkhRaRiyqgagAZbinm3SN7NIC7xFfCbzuHWYR4BY2BgQGq4/IIUPnpLz98LyJq28ef0HZx9kgDtUoNypJILFxPT0/uHpisrC5iLN+SB/A7XFvIZrN9q6ur1NXVlbuozAgk04uLIn2rrq2lreCjdw/Rp41HRFAZHByk69evC7+zd+nOnz+v9kCwdO1/gBPBFEvo3r17hs/ny/MPdfzrjRuUuH2bU7gmamg5TpsBmgM5mOOZM2eEf6MFCZI6kNRPTEzgcIwsgjsKg2SzF01aO9Cul60+s6mt3Ry8Gd3QcJr4N2k+XFkRLUfeasS9aEE6jYfWoWwE70jrsBCwOaV5jxIP4PRQ6JSpDjX3aEw2WyEgTbbeKPdbTCeg46aRM6jM6APJQiuvgJcrXPaIBq8SaA3Xiv1Oa+EjfQnZ5scbLBDf0fa+IScR/UwnbZYCdMU1YhE1B633RUVvtlzvMOAXk2rCQm34rQALpLX7QSqoLWRcEo7ie7gHTBif5SAJROREOaLF3jbhewQaaN/2HmOENgYUQ5I0fY2NZkJaixaEtk2ylDe8Blm+2SuPxfahKg+VOKuUy1at4wAZyhg5J9IYc8zHCUYNJxpIMO7wftnM46rerCznMP84bQFu39GHpaDPYW8vpMgiBEF5gNwytslYBkvcx6tUw9kNa1BcBLkCJJHTjVARuCXo9JAKKdoe8LBDtaw5RU5BJwlo7zAiVCQp8JO3yGiyXWRZQq8ePAhUMUGfVgA/yWbp9/l5+rK9nQJsvqhRkUpythWSt8wUGtRrgm6QYrlF2Wz4ZSIh2FVpTWidZCOTR54MU+XiOCRvcSTptYl6BfFfGH4OWNXhcN4XurkieJ06dUr5ZIQczLWSNKjjN5YOc2nJYG0SiPr27BFf2DUJc8X/BszNzYXI2nbu6ANVKkH4I7YBH5ss/JL8ra3kk/WpTtJgf53nYxl0OshGslIJKsQIJFdWQq/YDJ1IfsjnkcuXxf6LGpO7ESCJbWmOXiPAEdNMzqzu6THrOCuC1F66ZB5styoXlHCALOM86eeUGwbJhHxPR4dZy5VKlUzfDnV1mbOPHomUjqx0blr9qFKjaCEYZCX9uazJ39FB1bxl7GdT/WJpiaJWG6SfZAPtdQVYmJwMCE3CXJmkXqEY9AYAdSNKK1F5UAFyr5uJ2mGQRRT/jIvIWTT53sUuKgz/AcKAtcI2GmtyAAAAAElFTkSuQmCC";
|
|
2
|
+
export {
|
|
3
|
+
A as default
|
|
4
|
+
};
|
|
5
|
+
//# sourceMappingURL=magnifyingGlass.png.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"magnifyingGlass.png.js","sources":["../../../src/assets/icons/magnifyingGlass.png"],"sourcesContent":["export default \"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADgAAAA4CAYAAACohjseAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAd+SURBVHgB7VpPTBRXGP+WlT+tFVetSDCGQWkgaRvXJiZom7q0F2xSs5zKDbjBCbzpyTXtpelBaJNWD3ahl9ITmF40TcpyMR7a7NJ4gMRmFw/IxeyKGBeJTr/fm/eWt8MsCzvDdjX8ko+dmZ19b37v+/O+7xuIdrGLioaP3CHAEmIJsuzXzhVSLAmWWZaYPC8rSiUYYhmSnyBFgUCADMOgYDAobojFYpRKpey/m2IZJYtsRSLMkmQxmZAZCoXMa9eumfF43Eyn06YTcH1yctIcGhoy8TspcbK0XjGAlqIkiU1PTxcktBmSyaTZ19enE71CFQCDpNaghVKI2YEFYnMuC8liPmiwTOOTydHIyIjjTZlMRvjcwsKCOIY/Njc3C3/EMcQJGO/ixYs4RCDqpv8hCCWx0vAxJ9/iBxR+SOsmt0GUr46NjZmFzBb3kGUlAfIYm2kQphOJRqPEfpP3BbTV398vouSBpib64LPPxeeBpqN08OhRer68TM0Nh+ntR4sUv3s3F1ERZTEeE94wXmdnpzhk6aQyAOREQLAjEokIzbxVX29+9fU35nf/3C8oN+bmzSerq0LbenDBGHb09vaq74fJQzhp0GCJ82oH2DTz/Ofq1avEDye0NHDzZ6GxYqj1+6m39TjV19QILXZ3d1MikRDjXLmSH1+gRWiT0UIe+WOVwzXMGsDkOjn2oW2TA1ZfvqSJZIqy/AkT5QhK4XBYjDU1NZV3L8xXzulZZLVr0CArsBA7f+4iVh6ru1ZXx+SiVLdvH20XZxsa6OyRw+IYkRbjYVzMoy8koioHrwxZWsyQS9g1GMIfzk7yLqogwT5XEjng78ePhRYBEMIcIAqzz3sAKwCBcR95ALsG4zxBEGako6WlhfYeP0F9I6PkBroWAeVzHIRyWgRpzMefMfIgouoaxAxBmKcO+B60d/rCBXKL+5l03jlHTvE5Pj6+/hBMVCbsQfJgX9QJilHte9ToqKW193mvc4vlF2tCFNT+aq86NDP1lKDhdANC+onTp8krPHz2LO98eHhYbQ05nDt3Th16T/DkyZO5C/AH4OAWt4StYPnFiw3XsIhqLkCLqq5LKp2gmEEVrOKCnLSprY28wvLaWt65cgmdoPYMnmpQwKEKL3lrKBUaWU8JxvBHJ6hMJfv0Ke0UEKX1uYCZmRl16OlGn7INnqvl7k//SV6hvro67xwLqupGBeyL+jO5wQYTtUc05I2Lc3P03CMtHntnb+4YpogAo/s9MDs7qw5T5BL2IJPChDqwGYPcHz/9SG6ByuLY3nWCKtlWG76CXGQ8T4Jcwq7BcdV+UECUg/x1a8q1Ft+rzw9WyEOROenJBUxWLvIUeQA7wTH80f0QQOnkhRaRiyqgagAZbinm3SN7NIC7xFfCbzuHWYR4BY2BgQGq4/IIUPnpLz98LyJq28ef0HZx9kgDtUoNypJILFxPT0/uHpisrC5iLN+SB/A7XFvIZrN9q6ur1NXVlbuozAgk04uLIn2rrq2lreCjdw/Rp41HRFAZHByk69evC7+zd+nOnz+v9kCwdO1/gBPBFEvo3r17hs/ny/MPdfzrjRuUuH2bU7gmamg5TpsBmgM5mOOZM2eEf6MFCZI6kNRPTEzgcIwsgjsKg2SzF01aO9Cul60+s6mt3Ry8Gd3QcJr4N2k+XFkRLUfeasS9aEE6jYfWoWwE70jrsBCwOaV5jxIP4PRQ6JSpDjX3aEw2WyEgTbbeKPdbTCeg46aRM6jM6APJQiuvgJcrXPaIBq8SaA3Xiv1Oa+EjfQnZ5scbLBDf0fa+IScR/UwnbZYCdMU1YhE1B633RUVvtlzvMOAXk2rCQm34rQALpLX7QSqoLWRcEo7ie7gHTBif5SAJROREOaLF3jbhewQaaN/2HmOENgYUQ5I0fY2NZkJaixaEtk2ylDe8Blm+2SuPxfahKg+VOKuUy1at4wAZyhg5J9IYc8zHCUYNJxpIMO7wftnM46rerCznMP84bQFu39GHpaDPYW8vpMgiBEF5gNwytslYBkvcx6tUw9kNa1BcBLkCJJHTjVARuCXo9JAKKdoe8LBDtaw5RU5BJwlo7zAiVCQp8JO3yGiyXWRZQq8ePAhUMUGfVgA/yWbp9/l5+rK9nQJsvqhRkUpythWSt8wUGtRrgm6QYrlF2Wz4ZSIh2FVpTWidZCOTR54MU+XiOCRvcSTptYl6BfFfGH4OWNXhcN4XurkieJ06dUr5ZIQczLWSNKjjN5YOc2nJYG0SiPr27BFf2DUJc8X/BszNzYXI2nbu6ANVKkH4I7YBH5ss/JL8ra3kk/WpTtJgf53nYxl0OshGslIJKsQIJFdWQq/YDJ1IfsjnkcuXxf6LGpO7ESCJbWmOXiPAEdNMzqzu6THrOCuC1F66ZB5styoXlHCALOM86eeUGwbJhHxPR4dZy5VKlUzfDnV1mbOPHomUjqx0blr9qFKjaCEYZCX9uazJ39FB1bxl7GdT/WJpiaJWG6SfZAPtdQVYmJwMCE3CXJmkXqEY9AYAdSNKK1F5UAFyr5uJ2mGQRRT/jIvIWTT53sUuKgz/AcKAtcI2GmtyAAAAAElFTkSuQmCC\""],"names":["magnifyingGlass"],"mappings":"AAAA,MAAeA,IAAA;"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const o = ({
|
|
3
|
+
title: l,
|
|
4
|
+
titleId: t,
|
|
5
|
+
...n
|
|
6
|
+
}) => /* @__PURE__ */ e.createElement("svg", { width: 20, height: 20, viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": t, ...n }, l ? /* @__PURE__ */ e.createElement("title", { id: t }, l) : null, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8.93306 9.11612C8.4449 9.60427 8.4449 10.3957 8.93306 10.8839L14.0246 15.9754C14.3907 16.3415 14.9843 16.3415 15.3504 15.9754C15.7165 15.6093 15.7165 15.0157 15.3504 14.6496L10.7008 10L15.3504 5.35041C15.7165 4.9843 15.7165 4.3907 15.3504 4.02459C14.9843 3.65847 14.3907 3.65847 14.0246 4.02459L8.93306 9.11612Z", fill: "currentColor" }), /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6.25 4.0625C5.73223 4.0625 5.3125 4.48223 5.3125 5V15C5.3125 15.5178 5.73223 15.9375 6.25 15.9375C6.76777 15.9375 7.1875 15.5178 7.1875 15V5C7.1875 4.48223 6.76777 4.0625 6.25 4.0625Z", fill: "currentColor" }));
|
|
7
|
+
export {
|
|
8
|
+
o as default
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=pagination_first.svg.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pagination_first.svg.js","sources":["../../../src/assets/icons/pagination_first.svg?react"],"sourcesContent":["import * as React from \"react\";\nconst SvgPaginationFirst = ({\n title,\n titleId,\n ...props\n}) => /* @__PURE__ */ React.createElement(\"svg\", { width: 20, height: 20, viewBox: \"0 0 20 20\", fill: \"none\", xmlns: \"http://www.w3.org/2000/svg\", \"aria-labelledby\": titleId, ...props }, title ? /* @__PURE__ */ React.createElement(\"title\", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement(\"path\", { fillRule: \"evenodd\", clipRule: \"evenodd\", d: \"M8.93306 9.11612C8.4449 9.60427 8.4449 10.3957 8.93306 10.8839L14.0246 15.9754C14.3907 16.3415 14.9843 16.3415 15.3504 15.9754C15.7165 15.6093 15.7165 15.0157 15.3504 14.6496L10.7008 10L15.3504 5.35041C15.7165 4.9843 15.7165 4.3907 15.3504 4.02459C14.9843 3.65847 14.3907 3.65847 14.0246 4.02459L8.93306 9.11612Z\", fill: \"currentColor\" }), /* @__PURE__ */ React.createElement(\"path\", { fillRule: \"evenodd\", clipRule: \"evenodd\", d: \"M6.25 4.0625C5.73223 4.0625 5.3125 4.48223 5.3125 5V15C5.3125 15.5178 5.73223 15.9375 6.25 15.9375C6.76777 15.9375 7.1875 15.5178 7.1875 15V5C7.1875 4.48223 6.76777 4.0625 6.25 4.0625Z\", fill: \"currentColor\" }));\nexport default SvgPaginationFirst;\n"],"names":["SvgPaginationFirst","title","titleId","props","React"],"mappings":";AACK,MAACA,IAAqB,CAAC;AAAA,EAC1B,OAAAC;AAAA,EACA,SAAAC;AAAA,EACA,GAAGC;AACL,MAAsB,gBAAAC,EAAM,cAAc,OAAO,EAAE,OAAO,IAAI,QAAQ,IAAI,SAAS,aAAa,MAAM,QAAQ,OAAO,8BAA8B,mBAAmBF,GAAS,GAAGC,EAAK,GAAIF,IAAwB,gBAAAG,EAAM,cAAc,SAAS,EAAE,IAAIF,EAAO,GAAID,CAAK,IAAI,MAAsB,gBAAAG,EAAM,cAAc,QAAQ,EAAE,UAAU,WAAW,UAAU,WAAW,GAAG,4TAA4T,MAAM,eAAc,CAAE,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,UAAU,WAAW,UAAU,WAAW,GAAG,4LAA4L,MAAM,eAAc,CAAE,CAAC;"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const a = ({
|
|
3
|
+
title: l,
|
|
4
|
+
titleId: t,
|
|
5
|
+
...n
|
|
6
|
+
}) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 20, height: 20, viewBox: "0 0 20 20", fill: "none", "aria-labelledby": t, ...n }, l ? /* @__PURE__ */ e.createElement("title", { id: t }, l) : null, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M10.7544 9.11612C11.2426 9.60427 11.2426 10.3957 10.7544 10.8839L5.66291 15.9754C5.2968 16.3415 4.7032 16.3415 4.33709 15.9754C3.97097 15.6093 3.97097 15.0157 4.33709 14.6496L8.98668 10L4.33709 5.35041C3.97097 4.9843 3.97097 4.3907 4.33709 4.02459C4.7032 3.65847 5.2968 3.65847 5.66291 4.02459L10.7544 9.11612Z", fill: "currentColor" }), /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M14.0625 4.0625C14.5803 4.0625 15 4.48223 15 5V15C15 15.5178 14.5803 15.9375 14.0625 15.9375C13.5447 15.9375 13.125 15.5178 13.125 15V5C13.125 4.48223 13.5447 4.0625 14.0625 4.0625Z", fill: "currentColor" }));
|
|
7
|
+
export {
|
|
8
|
+
a as default
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=pagination_last.svg.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pagination_last.svg.js","sources":["../../../src/assets/icons/pagination_last.svg?react"],"sourcesContent":["import * as React from \"react\";\nconst SvgPaginationLast = ({\n title,\n titleId,\n ...props\n}) => /* @__PURE__ */ React.createElement(\"svg\", { xmlns: \"http://www.w3.org/2000/svg\", width: 20, height: 20, viewBox: \"0 0 20 20\", fill: \"none\", \"aria-labelledby\": titleId, ...props }, title ? /* @__PURE__ */ React.createElement(\"title\", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement(\"path\", { fillRule: \"evenodd\", clipRule: \"evenodd\", d: \"M10.7544 9.11612C11.2426 9.60427 11.2426 10.3957 10.7544 10.8839L5.66291 15.9754C5.2968 16.3415 4.7032 16.3415 4.33709 15.9754C3.97097 15.6093 3.97097 15.0157 4.33709 14.6496L8.98668 10L4.33709 5.35041C3.97097 4.9843 3.97097 4.3907 4.33709 4.02459C4.7032 3.65847 5.2968 3.65847 5.66291 4.02459L10.7544 9.11612Z\", fill: \"currentColor\" }), /* @__PURE__ */ React.createElement(\"path\", { fillRule: \"evenodd\", clipRule: \"evenodd\", d: \"M14.0625 4.0625C14.5803 4.0625 15 4.48223 15 5V15C15 15.5178 14.5803 15.9375 14.0625 15.9375C13.5447 15.9375 13.125 15.5178 13.125 15V5C13.125 4.48223 13.5447 4.0625 14.0625 4.0625Z\", fill: \"currentColor\" }));\nexport default SvgPaginationLast;\n"],"names":["SvgPaginationLast","title","titleId","props","React"],"mappings":";AACK,MAACA,IAAoB,CAAC;AAAA,EACzB,OAAAC;AAAA,EACA,SAAAC;AAAA,EACA,GAAGC;AACL,MAAsB,gBAAAC,EAAM,cAAc,OAAO,EAAE,OAAO,8BAA8B,OAAO,IAAI,QAAQ,IAAI,SAAS,aAAa,MAAM,QAAQ,mBAAmBF,GAAS,GAAGC,EAAK,GAAIF,IAAwB,gBAAAG,EAAM,cAAc,SAAS,EAAE,IAAIF,EAAO,GAAID,CAAK,IAAI,MAAsB,gBAAAG,EAAM,cAAc,QAAQ,EAAE,UAAU,WAAW,UAAU,WAAW,GAAG,0TAA0T,MAAM,eAAc,CAAE,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,UAAU,WAAW,UAAU,WAAW,GAAG,yLAAyL,MAAM,eAAc,CAAE,CAAC;"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const n = ({
|
|
3
|
+
title: l,
|
|
4
|
+
titleId: t,
|
|
5
|
+
...a
|
|
6
|
+
}) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 20, height: 20, viewBox: "0 0 20 20", fill: "none", "aria-labelledby": t, ...a }, l ? /* @__PURE__ */ e.createElement("title", { id: t }, l) : null, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6.83709 4.33709C7.2032 3.97097 7.7968 3.97097 8.16291 4.33709L13.1629 9.33709C13.529 9.7032 13.529 10.2968 13.1629 10.6629L8.16291 15.6629C7.7968 16.029 7.2032 16.029 6.83709 15.6629C6.47097 15.2968 6.47097 14.7032 6.83709 14.3371L11.1742 10L6.83709 5.66291C6.47097 5.2968 6.47097 4.7032 6.83709 4.33709Z", fill: "currentColor" }));
|
|
7
|
+
export {
|
|
8
|
+
n as default
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=pagination_next.svg.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pagination_next.svg.js","sources":["../../../src/assets/icons/pagination_next.svg?react"],"sourcesContent":["import * as React from \"react\";\nconst SvgPaginationNext = ({\n title,\n titleId,\n ...props\n}) => /* @__PURE__ */ React.createElement(\"svg\", { xmlns: \"http://www.w3.org/2000/svg\", width: 20, height: 20, viewBox: \"0 0 20 20\", fill: \"none\", \"aria-labelledby\": titleId, ...props }, title ? /* @__PURE__ */ React.createElement(\"title\", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement(\"path\", { fillRule: \"evenodd\", clipRule: \"evenodd\", d: \"M6.83709 4.33709C7.2032 3.97097 7.7968 3.97097 8.16291 4.33709L13.1629 9.33709C13.529 9.7032 13.529 10.2968 13.1629 10.6629L8.16291 15.6629C7.7968 16.029 7.2032 16.029 6.83709 15.6629C6.47097 15.2968 6.47097 14.7032 6.83709 14.3371L11.1742 10L6.83709 5.66291C6.47097 5.2968 6.47097 4.7032 6.83709 4.33709Z\", fill: \"currentColor\" }));\nexport default SvgPaginationNext;\n"],"names":["SvgPaginationNext","title","titleId","props","React"],"mappings":";AACK,MAACA,IAAoB,CAAC;AAAA,EACzB,OAAAC;AAAA,EACA,SAAAC;AAAA,EACA,GAAGC;AACL,MAAsB,gBAAAC,EAAM,cAAc,OAAO,EAAE,OAAO,8BAA8B,OAAO,IAAI,QAAQ,IAAI,SAAS,aAAa,MAAM,QAAQ,mBAAmBF,GAAS,GAAGC,EAAO,GAAEF,IAAwB,gBAAAG,EAAM,cAAc,SAAS,EAAE,IAAIF,EAAO,GAAID,CAAK,IAAI,MAAsB,gBAAAG,EAAM,cAAc,QAAQ,EAAE,UAAU,WAAW,UAAU,WAAW,GAAG,qTAAqT,MAAM,gBAAgB,CAAC;"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const n = ({
|
|
3
|
+
title: l,
|
|
4
|
+
titleId: t,
|
|
5
|
+
...a
|
|
6
|
+
}) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 20, height: 20, viewBox: "0 0 20 20", fill: "none", "aria-labelledby": t, ...a }, l ? /* @__PURE__ */ e.createElement("title", { id: t }, l) : null, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M13.1629 4.33709C13.529 4.7032 13.529 5.2968 13.1629 5.66291L8.82583 10L13.1629 14.3371C13.529 14.7032 13.529 15.2968 13.1629 15.6629C12.7968 16.029 12.2032 16.029 11.8371 15.6629L6.83709 10.6629C6.47097 10.2968 6.47097 9.7032 6.83709 9.33709L11.8371 4.33709C12.2032 3.97097 12.7968 3.97097 13.1629 4.33709Z", fill: "currentColor" }));
|
|
7
|
+
export {
|
|
8
|
+
n as default
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=pagination_previous.svg.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pagination_previous.svg.js","sources":["../../../src/assets/icons/pagination_previous.svg?react"],"sourcesContent":["import * as React from \"react\";\nconst SvgPaginationPrevious = ({\n title,\n titleId,\n ...props\n}) => /* @__PURE__ */ React.createElement(\"svg\", { xmlns: \"http://www.w3.org/2000/svg\", width: 20, height: 20, viewBox: \"0 0 20 20\", fill: \"none\", \"aria-labelledby\": titleId, ...props }, title ? /* @__PURE__ */ React.createElement(\"title\", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement(\"path\", { fillRule: \"evenodd\", clipRule: \"evenodd\", d: \"M13.1629 4.33709C13.529 4.7032 13.529 5.2968 13.1629 5.66291L8.82583 10L13.1629 14.3371C13.529 14.7032 13.529 15.2968 13.1629 15.6629C12.7968 16.029 12.2032 16.029 11.8371 15.6629L6.83709 10.6629C6.47097 10.2968 6.47097 9.7032 6.83709 9.33709L11.8371 4.33709C12.2032 3.97097 12.7968 3.97097 13.1629 4.33709Z\", fill: \"currentColor\" }));\nexport default SvgPaginationPrevious;\n"],"names":["SvgPaginationPrevious","title","titleId","props","React"],"mappings":";AACK,MAACA,IAAwB,CAAC;AAAA,EAC7B,OAAAC;AAAA,EACA,SAAAC;AAAA,EACA,GAAGC;AACL,MAAsB,gBAAAC,EAAM,cAAc,OAAO,EAAE,OAAO,8BAA8B,OAAO,IAAI,QAAQ,IAAI,SAAS,aAAa,MAAM,QAAQ,mBAAmBF,GAAS,GAAGC,EAAO,GAAEF,IAAwB,gBAAAG,EAAM,cAAc,SAAS,EAAE,IAAIF,EAAO,GAAID,CAAK,IAAI,MAAsB,gBAAAG,EAAM,cAAc,QAAQ,EAAE,UAAU,WAAW,UAAU,WAAW,GAAG,uTAAuT,MAAM,gBAAgB,CAAC;"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const a = ({
|
|
3
|
+
title: l,
|
|
4
|
+
titleId: t,
|
|
5
|
+
...i
|
|
6
|
+
}) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 16, height: 16, viewBox: "0 0 16 16", fill: "none", "aria-labelledby": t, ...i }, l ? /* @__PURE__ */ e.createElement("title", { id: t }, l) : null, /* @__PURE__ */ e.createElement("g", { clipPath: "url(#clip0_1331_1906)" }, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2.10129 10.1485C1.84442 10.4054 1.66236 10.7273 1.57466 11.0799L0.664898 14.7367C0.573893 15.1025 0.905016 15.4337 1.27082 15.3427L4.92771 14.4329C5.28023 14.3452 5.60221 14.1631 5.85908 13.9063L14.7704 4.99496C15.4538 4.31155 15.4538 3.20351 14.7704 2.52009L13.4875 1.23717C12.8041 0.553755 11.696 0.553755 11.0126 1.23717L2.10129 10.1485ZM12.4268 2.29783L13.7097 3.58075C13.8074 3.67838 13.8074 3.83667 13.7097 3.9343L12.1036 5.54039L10.4672 3.90392L12.0733 2.29783C12.1709 2.2002 12.3292 2.2002 12.4268 2.29783ZM9.40652 4.96458L11.043 6.60105L4.79842 12.8456C4.7342 12.9098 4.65371 12.9553 4.56558 12.9773L2.52185 13.4857L3.03029 11.442C3.05222 11.3539 3.09773 11.2734 3.16195 11.2091L9.40652 4.96458Z", fill: "currentColor" })), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("clipPath", { id: "clip0_1331_1906" }, /* @__PURE__ */ e.createElement("rect", { width: 16, height: 16, fill: "white" }))));
|
|
7
|
+
export {
|
|
8
|
+
a as default
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=pencil.svg.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pencil.svg.js","sources":["../../../src/assets/icons/pencil.svg?react"],"sourcesContent":["import * as React from \"react\";\nconst SvgPencil = ({\n title,\n titleId,\n ...props\n}) => /* @__PURE__ */ React.createElement(\"svg\", { xmlns: \"http://www.w3.org/2000/svg\", width: 16, height: 16, viewBox: \"0 0 16 16\", fill: \"none\", \"aria-labelledby\": titleId, ...props }, title ? /* @__PURE__ */ React.createElement(\"title\", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement(\"g\", { clipPath: \"url(#clip0_1331_1906)\" }, /* @__PURE__ */ React.createElement(\"path\", { fillRule: \"evenodd\", clipRule: \"evenodd\", d: \"M2.10129 10.1485C1.84442 10.4054 1.66236 10.7273 1.57466 11.0799L0.664898 14.7367C0.573893 15.1025 0.905016 15.4337 1.27082 15.3427L4.92771 14.4329C5.28023 14.3452 5.60221 14.1631 5.85908 13.9063L14.7704 4.99496C15.4538 4.31155 15.4538 3.20351 14.7704 2.52009L13.4875 1.23717C12.8041 0.553755 11.696 0.553755 11.0126 1.23717L2.10129 10.1485ZM12.4268 2.29783L13.7097 3.58075C13.8074 3.67838 13.8074 3.83667 13.7097 3.9343L12.1036 5.54039L10.4672 3.90392L12.0733 2.29783C12.1709 2.2002 12.3292 2.2002 12.4268 2.29783ZM9.40652 4.96458L11.043 6.60105L4.79842 12.8456C4.7342 12.9098 4.65371 12.9553 4.56558 12.9773L2.52185 13.4857L3.03029 11.442C3.05222 11.3539 3.09773 11.2734 3.16195 11.2091L9.40652 4.96458Z\", fill: \"currentColor\" })), /* @__PURE__ */ React.createElement(\"defs\", null, /* @__PURE__ */ React.createElement(\"clipPath\", { id: \"clip0_1331_1906\" }, /* @__PURE__ */ React.createElement(\"rect\", { width: 16, height: 16, fill: \"white\" }))));\nexport default SvgPencil;\n"],"names":["SvgPencil","title","titleId","props","React"],"mappings":";AACK,MAACA,IAAY,CAAC;AAAA,EACjB,OAAAC;AAAA,EACA,SAAAC;AAAA,EACA,GAAGC;AACL,MAAsB,gBAAAC,EAAM,cAAc,OAAO,EAAE,OAAO,8BAA8B,OAAO,IAAI,QAAQ,IAAI,SAAS,aAAa,MAAM,QAAQ,mBAAmBF,GAAS,GAAGC,EAAO,GAAEF,IAAwB,gBAAAG,EAAM,cAAc,SAAS,EAAE,IAAIF,EAAO,GAAID,CAAK,IAAI,MAAsB,gBAAAG,EAAM,cAAc,KAAK,EAAE,UAAU,wBAAyB,GAAkB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,UAAU,WAAW,UAAU,WAAW,GAAG,qsBAAqsB,MAAM,eAAc,CAAE,CAAC,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,MAAsB,gBAAAA,EAAM,cAAc,YAAY,EAAE,IAAI,kBAAmB,GAAkB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,OAAO,IAAI,QAAQ,IAAI,MAAM,QAAS,CAAA,CAAC,CAAC,CAAC;"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const l = ({
|
|
3
|
+
title: t,
|
|
4
|
+
titleId: r,
|
|
5
|
+
...a
|
|
6
|
+
}) => /* @__PURE__ */ e.createElement("svg", { width: 36, height: 36, viewBox: "0 0 36 36", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": r, ...a }, t ? /* @__PURE__ */ e.createElement("title", { id: r }, t) : null, /* @__PURE__ */ e.createElement("g", { opacity: 0.3 }, /* @__PURE__ */ e.createElement("path", { d: "M18 30.5C11.0964 30.5 5.49996 24.9036 5.49996 18C5.49996 11.0964 11.0964 5.50001 18 5.50001C24.9035 5.50001 30.5 11.0964 30.5 18C30.5 24.9036 24.9035 30.5 18 30.5Z", stroke: "#079455", strokeWidth: 1.66667 })), /* @__PURE__ */ e.createElement("g", { opacity: 0.1 }, /* @__PURE__ */ e.createElement("path", { d: "M17.1667 1.33333H18.8333C27.5778 1.33333 34.6667 8.42216 34.6667 17.1667V18.8333C34.6667 27.5778 27.5778 34.6667 18.8333 34.6667H17.1667C8.42216 34.6667 1.33333 27.5778 1.33333 18.8333V17.1667C1.33333 8.42216 8.42216 1.33333 17.1667 1.33333Z", stroke: "#079455", strokeWidth: 1.66667 })), /* @__PURE__ */ e.createElement("g", { clipPath: "url(#clip0_7863_14807)" }, /* @__PURE__ */ e.createElement("path", { d: "M14.25 18L16.75 20.5L21.75 15.5M26.3333 18C26.3333 22.6024 22.6023 26.3333 18 26.3333C13.3976 26.3333 9.66663 22.6024 9.66663 18C9.66663 13.3976 13.3976 9.66667 18 9.66667C22.6023 9.66667 26.3333 13.3976 26.3333 18Z", stroke: "#079455", strokeWidth: 1.66667, strokeLinecap: "round", strokeLinejoin: "round" })), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("clipPath", { id: "clip0_7863_14807" }, /* @__PURE__ */ e.createElement("rect", { width: 20, height: 20, fill: "white", transform: "translate(8 8)" }))));
|
|
7
|
+
export {
|
|
8
|
+
l as default
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=success_check.svg.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"success_check.svg.js","sources":["../../../src/assets/icons/success_check.svg?react"],"sourcesContent":["import * as React from \"react\";\nconst SvgSuccessCheck = ({\n title,\n titleId,\n ...props\n}) => /* @__PURE__ */ React.createElement(\"svg\", { width: 36, height: 36, viewBox: \"0 0 36 36\", fill: \"none\", xmlns: \"http://www.w3.org/2000/svg\", \"aria-labelledby\": titleId, ...props }, title ? /* @__PURE__ */ React.createElement(\"title\", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement(\"g\", { opacity: 0.3 }, /* @__PURE__ */ React.createElement(\"path\", { d: \"M18 30.5C11.0964 30.5 5.49996 24.9036 5.49996 18C5.49996 11.0964 11.0964 5.50001 18 5.50001C24.9035 5.50001 30.5 11.0964 30.5 18C30.5 24.9036 24.9035 30.5 18 30.5Z\", stroke: \"#079455\", strokeWidth: 1.66667 })), /* @__PURE__ */ React.createElement(\"g\", { opacity: 0.1 }, /* @__PURE__ */ React.createElement(\"path\", { d: \"M17.1667 1.33333H18.8333C27.5778 1.33333 34.6667 8.42216 34.6667 17.1667V18.8333C34.6667 27.5778 27.5778 34.6667 18.8333 34.6667H17.1667C8.42216 34.6667 1.33333 27.5778 1.33333 18.8333V17.1667C1.33333 8.42216 8.42216 1.33333 17.1667 1.33333Z\", stroke: \"#079455\", strokeWidth: 1.66667 })), /* @__PURE__ */ React.createElement(\"g\", { clipPath: \"url(#clip0_7863_14807)\" }, /* @__PURE__ */ React.createElement(\"path\", { d: \"M14.25 18L16.75 20.5L21.75 15.5M26.3333 18C26.3333 22.6024 22.6023 26.3333 18 26.3333C13.3976 26.3333 9.66663 22.6024 9.66663 18C9.66663 13.3976 13.3976 9.66667 18 9.66667C22.6023 9.66667 26.3333 13.3976 26.3333 18Z\", stroke: \"#079455\", strokeWidth: 1.66667, strokeLinecap: \"round\", strokeLinejoin: \"round\" })), /* @__PURE__ */ React.createElement(\"defs\", null, /* @__PURE__ */ React.createElement(\"clipPath\", { id: \"clip0_7863_14807\" }, /* @__PURE__ */ React.createElement(\"rect\", { width: 20, height: 20, fill: \"white\", transform: \"translate(8 8)\" }))));\nexport default SvgSuccessCheck;\n"],"names":["SvgSuccessCheck","title","titleId","props","React"],"mappings":";AACK,MAACA,IAAkB,CAAC;AAAA,EACvB,OAAAC;AAAA,EACA,SAAAC;AAAA,EACA,GAAGC;AACL,MAAsB,gBAAAC,EAAM,cAAc,OAAO,EAAE,OAAO,IAAI,QAAQ,IAAI,SAAS,aAAa,MAAM,QAAQ,OAAO,8BAA8B,mBAAmBF,GAAS,GAAGC,EAAK,GAAIF,IAAwB,gBAAAG,EAAM,cAAc,SAAS,EAAE,IAAIF,EAAO,GAAID,CAAK,IAAI,MAAsB,gBAAAG,EAAM,cAAc,KAAK,EAAE,SAAS,IAAK,GAAkB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,uKAAuK,QAAQ,WAAW,aAAa,QAAS,CAAA,CAAC,GAAmB,gBAAAA,EAAM,cAAc,KAAK,EAAE,SAAS,IAAK,GAAkB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,qPAAqP,QAAQ,WAAW,aAAa,QAAS,CAAA,CAAC,GAAmB,gBAAAA,EAAM,cAAc,KAAK,EAAE,UAAU,yBAAwB,GAAoB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,2NAA2N,QAAQ,WAAW,aAAa,SAAS,eAAe,SAAS,gBAAgB,SAAS,CAAC,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,MAAsB,gBAAAA,EAAM,cAAc,YAAY,EAAE,IAAI,mBAAoB,GAAkB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,OAAO,IAAI,QAAQ,IAAI,MAAM,SAAS,WAAW,iBAAgB,CAAE,CAAC,CAAC,CAAC;"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const r = ({
|
|
3
|
+
title: l,
|
|
4
|
+
titleId: t,
|
|
5
|
+
...C
|
|
6
|
+
}) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 16, height: 16, viewBox: "0 0 16 16", fill: "none", "aria-labelledby": t, ...C }, l ? /* @__PURE__ */ e.createElement("title", { id: t }, l) : null, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8 0.5C6.48122 0.5 5.25 1.73122 5.25 3.25H2.75C2.33579 3.25 2 3.58579 2 4C2 4.41421 2.33579 4.75 2.75 4.75H13.25C13.6642 4.75 14 4.41421 14 4C14 3.58579 13.6642 3.25 13.25 3.25H10.75C10.75 1.73122 9.51878 0.5 8 0.5ZM9.25 3.25C9.25 2.55964 8.69036 2 8 2C7.30964 2 6.75 2.55964 6.75 3.25H9.25Z", fill: "currentColor" }), /* @__PURE__ */ e.createElement("path", { d: "M3.65125 6.00649C4.06186 5.95196 4.43893 6.24061 4.49347 6.65122L5.44064 13.7829C5.45714 13.9071 5.56311 14 5.68846 14H10.3115C10.4369 14 10.5428 13.9071 10.5594 13.7829L11.5065 6.65122C11.5611 6.24061 11.9381 5.95196 12.3487 6.00649C12.7593 6.06103 13.048 6.4381 12.9935 6.84871L12.0463 13.9804C11.9308 14.8502 11.189 15.5 10.3115 15.5H5.68846C4.81102 15.5 4.06922 14.8502 3.9537 13.9804L3.00652 6.84871C2.95199 6.4381 3.24064 6.06103 3.65125 6.00649Z", fill: "currentColor" }));
|
|
7
|
+
export {
|
|
8
|
+
r as default
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=trashcan.svg.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"trashcan.svg.js","sources":["../../../src/assets/icons/trashcan.svg?react"],"sourcesContent":["import * as React from \"react\";\nconst SvgTrashcan = ({\n title,\n titleId,\n ...props\n}) => /* @__PURE__ */ React.createElement(\"svg\", { xmlns: \"http://www.w3.org/2000/svg\", width: 16, height: 16, viewBox: \"0 0 16 16\", fill: \"none\", \"aria-labelledby\": titleId, ...props }, title ? /* @__PURE__ */ React.createElement(\"title\", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement(\"path\", { fillRule: \"evenodd\", clipRule: \"evenodd\", d: \"M8 0.5C6.48122 0.5 5.25 1.73122 5.25 3.25H2.75C2.33579 3.25 2 3.58579 2 4C2 4.41421 2.33579 4.75 2.75 4.75H13.25C13.6642 4.75 14 4.41421 14 4C14 3.58579 13.6642 3.25 13.25 3.25H10.75C10.75 1.73122 9.51878 0.5 8 0.5ZM9.25 3.25C9.25 2.55964 8.69036 2 8 2C7.30964 2 6.75 2.55964 6.75 3.25H9.25Z\", fill: \"currentColor\" }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M3.65125 6.00649C4.06186 5.95196 4.43893 6.24061 4.49347 6.65122L5.44064 13.7829C5.45714 13.9071 5.56311 14 5.68846 14H10.3115C10.4369 14 10.5428 13.9071 10.5594 13.7829L11.5065 6.65122C11.5611 6.24061 11.9381 5.95196 12.3487 6.00649C12.7593 6.06103 13.048 6.4381 12.9935 6.84871L12.0463 13.9804C11.9308 14.8502 11.189 15.5 10.3115 15.5H5.68846C4.81102 15.5 4.06922 14.8502 3.9537 13.9804L3.00652 6.84871C2.95199 6.4381 3.24064 6.06103 3.65125 6.00649Z\", fill: \"currentColor\" }));\nexport default SvgTrashcan;\n"],"names":["SvgTrashcan","title","titleId","props","React"],"mappings":";AACK,MAACA,IAAc,CAAC;AAAA,EACnB,OAAAC;AAAA,EACA,SAAAC;AAAA,EACA,GAAGC;AACL,MAAsB,gBAAAC,EAAM,cAAc,OAAO,EAAE,OAAO,8BAA8B,OAAO,IAAI,QAAQ,IAAI,SAAS,aAAa,MAAM,QAAQ,mBAAmBF,GAAS,GAAGC,KAASF,IAAwB,gBAAAG,EAAM,cAAc,SAAS,EAAE,IAAIF,EAAS,GAAED,CAAK,IAAI,MAAsB,gBAAAG,EAAM,cAAc,QAAQ,EAAE,UAAU,WAAW,UAAU,WAAW,GAAG,uSAAuS,MAAM,eAAc,CAAE,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,wcAAwc,MAAM,eAAc,CAAE,CAAC;"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const i = ({
|
|
3
|
+
title: t,
|
|
4
|
+
titleId: r,
|
|
5
|
+
...l
|
|
6
|
+
}) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", "aria-labelledby": r, ...l }, t ? /* @__PURE__ */ e.createElement("title", { id: r }, t) : null, /* @__PURE__ */ e.createElement("rect", { x: 1, y: 1, width: 22, height: 22, rx: 11, fill: "none" }), /* @__PURE__ */ e.createElement("rect", { x: 1, y: 1, width: 22, height: 22, rx: 11, stroke: "currentColor", strokeWidth: 2 }));
|
|
7
|
+
export {
|
|
8
|
+
i as default
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=unchecked_circular.svg.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"unchecked_circular.svg.js","sources":["../../../src/assets/icons/unchecked_circular.svg?react"],"sourcesContent":["import * as React from \"react\";\nconst SvgUncheckedCircular = ({\n title,\n titleId,\n ...props\n}) => /* @__PURE__ */ React.createElement(\"svg\", { xmlns: \"http://www.w3.org/2000/svg\", width: 24, height: 24, viewBox: \"0 0 24 24\", fill: \"none\", \"aria-labelledby\": titleId, ...props }, title ? /* @__PURE__ */ React.createElement(\"title\", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement(\"rect\", { x: 1, y: 1, width: 22, height: 22, rx: 11, fill: \"none\" }), /* @__PURE__ */ React.createElement(\"rect\", { x: 1, y: 1, width: 22, height: 22, rx: 11, stroke: \"currentColor\", strokeWidth: 2 }));\nexport default SvgUncheckedCircular;\n"],"names":["SvgUncheckedCircular","title","titleId","props","React"],"mappings":";AACK,MAACA,IAAuB,CAAC;AAAA,EAC5B,OAAAC;AAAA,EACA,SAAAC;AAAA,EACA,GAAGC;AACL,MAAsB,gBAAAC,EAAM,cAAc,OAAO,EAAE,OAAO,8BAA8B,OAAO,IAAI,QAAQ,IAAI,SAAS,aAAa,MAAM,QAAQ,mBAAmBF,GAAS,GAAGC,EAAK,GAAIF,IAAwB,gBAAAG,EAAM,cAAc,SAAS,EAAE,IAAIF,EAAO,GAAID,CAAK,IAAI,MAAsB,gBAAAG,EAAM,cAAc,QAAQ,EAAE,GAAG,GAAG,GAAG,GAAG,OAAO,IAAI,QAAQ,IAAI,IAAI,IAAI,MAAM,OAAQ,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,GAAG,GAAG,GAAG,OAAO,IAAI,QAAQ,IAAI,IAAI,IAAI,QAAQ,gBAAgB,aAAa,EAAC,CAAE,CAAC;"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const l = ({
|
|
3
|
+
title: t,
|
|
4
|
+
titleId: r,
|
|
5
|
+
...a
|
|
6
|
+
}) => /* @__PURE__ */ e.createElement("svg", { width: 38, height: 38, viewBox: "0 0 38 38", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": r, ...a }, t ? /* @__PURE__ */ e.createElement("title", { id: r }, t) : null, /* @__PURE__ */ e.createElement("g", { opacity: 0.3 }, /* @__PURE__ */ e.createElement("path", { d: "M19 6C26.1797 6 32 11.8203 32 19C32 26.1797 26.1797 32 19 32C11.8203 32 6 26.1797 6 19C6 11.8203 11.8203 6 19 6Z", stroke: "#535862", strokeWidth: 2 })), /* @__PURE__ */ e.createElement("g", { opacity: 0.1 }, /* @__PURE__ */ e.createElement("path", { d: "M19 1C28.9411 1 37 9.05887 37 19C37 28.9411 28.9411 37 19 37C9.05887 37 1 28.9411 1 19C1 9.05887 9.05887 1 19 1Z", stroke: "#535862", strokeWidth: 2 })), /* @__PURE__ */ e.createElement("g", { clipPath: "url(#clip0_7853_3939)" }, /* @__PURE__ */ e.createElement("path", { d: "M18.9998 14V19L22.3332 20.6666M27.3332 19C27.3332 23.6023 23.6022 27.3333 18.9998 27.3333C14.3975 27.3333 10.6665 23.6023 10.6665 19C10.6665 14.3976 14.3975 10.6666 18.9998 10.6666C23.6022 10.6666 27.3332 14.3976 27.3332 19Z", stroke: "#535862", strokeWidth: 1.66667, strokeLinecap: "round", strokeLinejoin: "round" })), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("clipPath", { id: "clip0_7853_3939" }, /* @__PURE__ */ e.createElement("rect", { width: 20, height: 20, fill: "white", transform: "translate(9 9)" }))));
|
|
7
|
+
export {
|
|
8
|
+
l as default
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=verification_pending.svg.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"verification_pending.svg.js","sources":["../../../src/assets/icons/verification_pending.svg?react"],"sourcesContent":["import * as React from \"react\";\nconst SvgVerificationPending = ({\n title,\n titleId,\n ...props\n}) => /* @__PURE__ */ React.createElement(\"svg\", { width: 38, height: 38, viewBox: \"0 0 38 38\", fill: \"none\", xmlns: \"http://www.w3.org/2000/svg\", \"aria-labelledby\": titleId, ...props }, title ? /* @__PURE__ */ React.createElement(\"title\", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement(\"g\", { opacity: 0.3 }, /* @__PURE__ */ React.createElement(\"path\", { d: \"M19 6C26.1797 6 32 11.8203 32 19C32 26.1797 26.1797 32 19 32C11.8203 32 6 26.1797 6 19C6 11.8203 11.8203 6 19 6Z\", stroke: \"#535862\", strokeWidth: 2 })), /* @__PURE__ */ React.createElement(\"g\", { opacity: 0.1 }, /* @__PURE__ */ React.createElement(\"path\", { d: \"M19 1C28.9411 1 37 9.05887 37 19C37 28.9411 28.9411 37 19 37C9.05887 37 1 28.9411 1 19C1 9.05887 9.05887 1 19 1Z\", stroke: \"#535862\", strokeWidth: 2 })), /* @__PURE__ */ React.createElement(\"g\", { clipPath: \"url(#clip0_7853_3939)\" }, /* @__PURE__ */ React.createElement(\"path\", { d: \"M18.9998 14V19L22.3332 20.6666M27.3332 19C27.3332 23.6023 23.6022 27.3333 18.9998 27.3333C14.3975 27.3333 10.6665 23.6023 10.6665 19C10.6665 14.3976 14.3975 10.6666 18.9998 10.6666C23.6022 10.6666 27.3332 14.3976 27.3332 19Z\", stroke: \"#535862\", strokeWidth: 1.66667, strokeLinecap: \"round\", strokeLinejoin: \"round\" })), /* @__PURE__ */ React.createElement(\"defs\", null, /* @__PURE__ */ React.createElement(\"clipPath\", { id: \"clip0_7853_3939\" }, /* @__PURE__ */ React.createElement(\"rect\", { width: 20, height: 20, fill: \"white\", transform: \"translate(9 9)\" }))));\nexport default SvgVerificationPending;\n"],"names":["SvgVerificationPending","title","titleId","props","React"],"mappings":";AACK,MAACA,IAAyB,CAAC;AAAA,EAC9B,OAAAC;AAAA,EACA,SAAAC;AAAA,EACA,GAAGC;AACL,MAAsB,gBAAAC,EAAM,cAAc,OAAO,EAAE,OAAO,IAAI,QAAQ,IAAI,SAAS,aAAa,MAAM,QAAQ,OAAO,8BAA8B,mBAAmBF,GAAS,GAAGC,EAAK,GAAIF,IAAwB,gBAAAG,EAAM,cAAc,SAAS,EAAE,IAAIF,EAAO,GAAID,CAAK,IAAI,MAAsB,gBAAAG,EAAM,cAAc,KAAK,EAAE,SAAS,IAAK,GAAkB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,oHAAoH,QAAQ,WAAW,aAAa,EAAG,CAAA,CAAC,GAAmB,gBAAAA,EAAM,cAAc,KAAK,EAAE,SAAS,IAAK,GAAkB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,oHAAoH,QAAQ,WAAW,aAAa,EAAG,CAAA,CAAC,GAAmB,gBAAAA,EAAM,cAAc,KAAK,EAAE,UAAU,wBAAuB,GAAoB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,oOAAoO,QAAQ,WAAW,aAAa,SAAS,eAAe,SAAS,gBAAgB,SAAS,CAAC,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,MAAsB,gBAAAA,EAAM,cAAc,YAAY,EAAE,IAAI,kBAAmB,GAAkB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,OAAO,IAAI,QAAQ,IAAI,MAAM,SAAS,WAAW,iBAAgB,CAAE,CAAC,CAAC,CAAC;"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const l = ({
|
|
3
|
+
title: t,
|
|
4
|
+
titleId: r,
|
|
5
|
+
...a
|
|
6
|
+
}) => /* @__PURE__ */ e.createElement("svg", { width: 36, height: 36, viewBox: "0 0 36 36", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-labelledby": r, ...a }, t ? /* @__PURE__ */ e.createElement("title", { id: r }, t) : null, /* @__PURE__ */ e.createElement("g", { opacity: 0.3 }, /* @__PURE__ */ e.createElement("path", { d: "M18 30.5C11.0964 30.5 5.49996 24.9036 5.49996 18C5.49996 11.0964 11.0964 5.50001 18 5.50001C24.9035 5.50001 30.5 11.0964 30.5 18C30.5 24.9036 24.9035 30.5 18 30.5Z", stroke: "#DC6803", strokeWidth: 1.66667 })), /* @__PURE__ */ e.createElement("g", { opacity: 0.1 }, /* @__PURE__ */ e.createElement("path", { d: "M17.1667 1.33333H18.8333C27.5778 1.33333 34.6667 8.42216 34.6667 17.1667V18.8333C34.6667 27.5778 27.5778 34.6667 18.8333 34.6667H17.1667C8.42216 34.6667 1.33333 27.5778 1.33333 18.8333V17.1667C1.33333 8.42216 8.42216 1.33333 17.1667 1.33333Z", stroke: "#DC6803", strokeWidth: 1.66667 })), /* @__PURE__ */ e.createElement("g", { clipPath: "url(#clip0_7863_14827)" }, /* @__PURE__ */ e.createElement("path", { d: "M18 14.6667V18M18 21.3333H18.0083M26.3333 18C26.3333 22.6024 22.6023 26.3333 18 26.3333C13.3976 26.3333 9.66663 22.6024 9.66663 18C9.66663 13.3976 13.3976 9.66667 18 9.66667C22.6023 9.66667 26.3333 13.3976 26.3333 18Z", stroke: "#DC6803", strokeWidth: 1.66667, strokeLinecap: "round", strokeLinejoin: "round" })), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("clipPath", { id: "clip0_7863_14827" }, /* @__PURE__ */ e.createElement("rect", { width: 20, height: 20, fill: "white", transform: "translate(8 8)" }))));
|
|
7
|
+
export {
|
|
8
|
+
l as default
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=warning.svg.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"warning.svg.js","sources":["../../../src/assets/icons/warning.svg?react"],"sourcesContent":["import * as React from \"react\";\nconst SvgWarning = ({\n title,\n titleId,\n ...props\n}) => /* @__PURE__ */ React.createElement(\"svg\", { width: 36, height: 36, viewBox: \"0 0 36 36\", fill: \"none\", xmlns: \"http://www.w3.org/2000/svg\", \"aria-labelledby\": titleId, ...props }, title ? /* @__PURE__ */ React.createElement(\"title\", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement(\"g\", { opacity: 0.3 }, /* @__PURE__ */ React.createElement(\"path\", { d: \"M18 30.5C11.0964 30.5 5.49996 24.9036 5.49996 18C5.49996 11.0964 11.0964 5.50001 18 5.50001C24.9035 5.50001 30.5 11.0964 30.5 18C30.5 24.9036 24.9035 30.5 18 30.5Z\", stroke: \"#DC6803\", strokeWidth: 1.66667 })), /* @__PURE__ */ React.createElement(\"g\", { opacity: 0.1 }, /* @__PURE__ */ React.createElement(\"path\", { d: \"M17.1667 1.33333H18.8333C27.5778 1.33333 34.6667 8.42216 34.6667 17.1667V18.8333C34.6667 27.5778 27.5778 34.6667 18.8333 34.6667H17.1667C8.42216 34.6667 1.33333 27.5778 1.33333 18.8333V17.1667C1.33333 8.42216 8.42216 1.33333 17.1667 1.33333Z\", stroke: \"#DC6803\", strokeWidth: 1.66667 })), /* @__PURE__ */ React.createElement(\"g\", { clipPath: \"url(#clip0_7863_14827)\" }, /* @__PURE__ */ React.createElement(\"path\", { d: \"M18 14.6667V18M18 21.3333H18.0083M26.3333 18C26.3333 22.6024 22.6023 26.3333 18 26.3333C13.3976 26.3333 9.66663 22.6024 9.66663 18C9.66663 13.3976 13.3976 9.66667 18 9.66667C22.6023 9.66667 26.3333 13.3976 26.3333 18Z\", stroke: \"#DC6803\", strokeWidth: 1.66667, strokeLinecap: \"round\", strokeLinejoin: \"round\" })), /* @__PURE__ */ React.createElement(\"defs\", null, /* @__PURE__ */ React.createElement(\"clipPath\", { id: \"clip0_7863_14827\" }, /* @__PURE__ */ React.createElement(\"rect\", { width: 20, height: 20, fill: \"white\", transform: \"translate(8 8)\" }))));\nexport default SvgWarning;\n"],"names":["SvgWarning","title","titleId","props","React"],"mappings":";AACK,MAACA,IAAa,CAAC;AAAA,EAClB,OAAAC;AAAA,EACA,SAAAC;AAAA,EACA,GAAGC;AACL,MAAsB,gBAAAC,EAAM,cAAc,OAAO,EAAE,OAAO,IAAI,QAAQ,IAAI,SAAS,aAAa,MAAM,QAAQ,OAAO,8BAA8B,mBAAmBF,GAAS,GAAGC,EAAK,GAAIF,IAAwB,gBAAAG,EAAM,cAAc,SAAS,EAAE,IAAIF,EAAO,GAAID,CAAK,IAAI,MAAsB,gBAAAG,EAAM,cAAc,KAAK,EAAE,SAAS,IAAK,GAAkB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,uKAAuK,QAAQ,WAAW,aAAa,QAAS,CAAA,CAAC,GAAmB,gBAAAA,EAAM,cAAc,KAAK,EAAE,SAAS,IAAK,GAAkB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,qPAAqP,QAAQ,WAAW,aAAa,QAAS,CAAA,CAAC,GAAmB,gBAAAA,EAAM,cAAc,KAAK,EAAE,UAAU,yBAAwB,GAAoB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,6NAA6N,QAAQ,WAAW,aAAa,SAAS,eAAe,SAAS,gBAAgB,SAAS,CAAC,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,MAAsB,gBAAAA,EAAM,cAAc,YAAY,EAAE,IAAI,mBAAoB,GAAkB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,OAAO,IAAI,QAAQ,IAAI,MAAM,SAAS,WAAW,iBAAgB,CAAE,CAAC,CAAC,CAAC;"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ReactNode, FC, JSX } from 'react';
|
|
2
|
+
import { FallbackProps } from 'react-error-boundary';
|
|
3
|
+
import { OnEventType } from './useBase';
|
|
4
|
+
import { EventType } from '../../shared/constants';
|
|
5
|
+
export interface CommonComponentInterface {
|
|
6
|
+
children?: ReactNode;
|
|
7
|
+
className?: string;
|
|
8
|
+
defaultValues?: unknown;
|
|
9
|
+
}
|
|
10
|
+
export interface BaseComponentInterface {
|
|
11
|
+
FallbackComponent?: (props: FallbackProps) => JSX.Element;
|
|
12
|
+
LoaderComponent?: () => JSX.Element;
|
|
13
|
+
onEvent: OnEventType<EventType, unknown>;
|
|
14
|
+
children?: ReactNode;
|
|
15
|
+
}
|
|
16
|
+
export declare const BaseComponent: FC<BaseComponentInterface>;
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import { jsx as a, jsxs as b } from "react/jsx-runtime";
|
|
2
|
+
import { useState as u, useCallback as h, Suspense as x } from "react";
|
|
3
|
+
import { ErrorBoundary as v } from "react-error-boundary";
|
|
4
|
+
import { useTranslation as A } from "react-i18next";
|
|
5
|
+
import { APIError as S } from "@gusto/embedded-api/models/errors/apierror";
|
|
6
|
+
import { SDKValidationError as _ } from "@gusto/embedded-api/models/errors/sdkvalidationerror";
|
|
7
|
+
import { UnprocessableEntityErrorObject as d } from "@gusto/embedded-api/models/errors/unprocessableentityerrorobject";
|
|
8
|
+
import { FadeIn as j } from "../Common/FadeIn/FadeIn.js";
|
|
9
|
+
import { BaseContext as B } from "./useBase.js";
|
|
10
|
+
import { componentEvents as I } from "../../shared/constants.js";
|
|
11
|
+
import { useAsyncError as K } from "../Common/hooks/useAsyncError.js";
|
|
12
|
+
import { Loading as P } from "../Common/Loading/Loading.js";
|
|
13
|
+
import { InternalError as R } from "../Common/InternalError/InternalError.js";
|
|
14
|
+
import { snakeCaseToCamelCase as w } from "../../helpers/formattedStrings.js";
|
|
15
|
+
import { useComponentContext as M } from "../../contexts/ComponentAdapter/useComponentContext.js";
|
|
16
|
+
const O = (t) => t.map((e) => e.message ? /* @__PURE__ */ a("li", { children: e.message }, e.key) : null), y = (t, e) => {
|
|
17
|
+
const n = e ? e + "." : "";
|
|
18
|
+
if (t.category === "invalid_attribute_value" || t.category === "invalid_operation")
|
|
19
|
+
return [
|
|
20
|
+
{
|
|
21
|
+
key: w(n + t.errorKey),
|
|
22
|
+
message: t.message ?? ""
|
|
23
|
+
}
|
|
24
|
+
];
|
|
25
|
+
if (t.category === "nested_errors" && t.errors !== void 0) {
|
|
26
|
+
let o = "";
|
|
27
|
+
return t.metadata?.key && typeof t.metadata.key == "string" ? o = t.metadata.key : t.metadata?.state && typeof t.metadata.state == "string" ? o = t.metadata.state : t.errorKey && (o = t.errorKey), t.errors.flatMap((l) => y(l, n + o));
|
|
28
|
+
}
|
|
29
|
+
return [];
|
|
30
|
+
}, Y = ({
|
|
31
|
+
children: t,
|
|
32
|
+
FallbackComponent: e = R,
|
|
33
|
+
LoaderComponent: n = P,
|
|
34
|
+
onEvent: o
|
|
35
|
+
}) => {
|
|
36
|
+
const [l, i] = u(null), [m, p] = u(null), f = K(), { t: E } = A(), g = M(), k = (r) => {
|
|
37
|
+
i(r), r instanceof d && Array.isArray(r.errors) && p(r.errors.flatMap((c) => y(c)));
|
|
38
|
+
}, C = h(
|
|
39
|
+
async (r, c) => {
|
|
40
|
+
i(null), p(null);
|
|
41
|
+
try {
|
|
42
|
+
await c(r);
|
|
43
|
+
} catch (s) {
|
|
44
|
+
s instanceof S || s instanceof _ || s instanceof d ? k(s) : f(s);
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
[i, f]
|
|
48
|
+
);
|
|
49
|
+
return /* @__PURE__ */ a(
|
|
50
|
+
B.Provider,
|
|
51
|
+
{
|
|
52
|
+
value: {
|
|
53
|
+
fieldErrors: m,
|
|
54
|
+
setError: i,
|
|
55
|
+
onEvent: o,
|
|
56
|
+
throwError: f,
|
|
57
|
+
baseSubmitHandler: C
|
|
58
|
+
},
|
|
59
|
+
children: /* @__PURE__ */ b(
|
|
60
|
+
v,
|
|
61
|
+
{
|
|
62
|
+
FallbackComponent: e,
|
|
63
|
+
onError: (r) => {
|
|
64
|
+
o(I.ERROR, r);
|
|
65
|
+
},
|
|
66
|
+
children: [
|
|
67
|
+
(l || m) && /* @__PURE__ */ a(g.Alert, { label: E("status.errorEncountered"), status: "error", children: m && /* @__PURE__ */ a("ul", { children: O(m) }) }),
|
|
68
|
+
/* @__PURE__ */ a(x, { fallback: /* @__PURE__ */ a(n, {}), children: /* @__PURE__ */ a(j, { children: t }) })
|
|
69
|
+
]
|
|
70
|
+
}
|
|
71
|
+
)
|
|
72
|
+
}
|
|
73
|
+
);
|
|
74
|
+
};
|
|
75
|
+
export {
|
|
76
|
+
Y as BaseComponent
|
|
77
|
+
};
|
|
78
|
+
//# sourceMappingURL=Base.js.map
|