linear-react-components-ui 1.1.20-beta.33 → 1.1.20-beta.34
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/lib/@types/Align.d.ts +4 -0
- package/lib/@types/Align.js +5 -0
- package/lib/@types/ButtonTypes.d.ts +3 -0
- package/lib/@types/ButtonTypes.js +5 -0
- package/lib/@types/ColorStyles.d.ts +3 -0
- package/lib/@types/ColorStyles.js +5 -0
- package/lib/@types/DataCombo.d.ts +3 -0
- package/lib/@types/DataCombo.js +5 -0
- package/lib/@types/Icon.d.ts +5 -0
- package/lib/@types/Icon.js +5 -0
- package/lib/@types/LabelStyles.d.ts +3 -0
- package/lib/@types/LabelStyles.js +5 -0
- package/lib/@types/Period.d.ts +6 -0
- package/lib/@types/Period.js +5 -0
- package/lib/@types/PermissionAttr.d.ts +14 -0
- package/lib/@types/PermissionAttr.js +5 -0
- package/lib/@types/PointerEvents.d.ts +3 -0
- package/lib/@types/PointerEvents.js +5 -0
- package/lib/@types/Position.d.ts +3 -0
- package/lib/@types/Position.js +5 -0
- package/lib/@types/PositionAlert.d.ts +3 -0
- package/lib/@types/PositionAlert.js +5 -0
- package/lib/@types/Size.d.ts +3 -0
- package/lib/@types/Size.js +5 -0
- package/lib/@types/SizePixels.d.ts +3 -0
- package/lib/@types/SizePixels.js +5 -0
- package/lib/@types/StorageMock.d.ts +5 -0
- package/lib/@types/StorageMock.js +5 -0
- package/lib/alerts/AlertContainer.d.ts +18 -0
- package/lib/alerts/AlertContainer.js +80 -0
- package/lib/alerts/AlertProvider.d.ts +9 -0
- package/lib/alerts/AlertProvider.js +73 -0
- package/lib/alerts/BaseAlert.d.ts +9 -0
- package/lib/alerts/BaseAlert.js +34 -0
- package/lib/alerts/Message.d.ts +9 -0
- package/lib/alerts/Message.js +114 -0
- package/lib/alerts/helpers.d.ts +9 -0
- package/lib/alerts/helpers.js +9 -0
- package/lib/alerts/index.d.ts +11 -0
- package/lib/alerts/index.js +16 -0
- package/lib/alerts/types.d.ts +51 -0
- package/lib/alerts/types.js +5 -0
- package/lib/alerts/withAlert.d.ts +9 -0
- package/lib/alerts/withAlert.js +24 -0
- package/lib/assets/fonts/Roboto-Black.woff +0 -0
- package/lib/assets/fonts/Roboto-Black.woff2 +0 -0
- package/lib/assets/fonts/Roboto-Bold.woff +0 -0
- package/lib/assets/fonts/Roboto-Bold.woff2 +0 -0
- package/lib/assets/fonts/Roboto-Light.woff +0 -0
- package/lib/assets/fonts/Roboto-Light.woff2 +0 -0
- package/lib/assets/fonts/Roboto-Medium.woff +0 -0
- package/lib/assets/fonts/Roboto-Medium.woff2 +0 -0
- package/lib/assets/fonts/Roboto-Regular.woff +0 -0
- package/lib/assets/fonts/Roboto-Regular.woff2 +0 -0
- package/lib/assets/fonts/Roboto-Thin.woff +0 -0
- package/lib/assets/fonts/Roboto-Thin.woff2 +0 -0
- package/lib/assets/fonts/TitilliumWeb-Black.woff +0 -0
- package/lib/assets/fonts/TitilliumWeb-Black.woff2 +0 -0
- package/lib/assets/fonts/TitilliumWeb-Bold.woff +0 -0
- package/lib/assets/fonts/TitilliumWeb-Bold.woff2 +0 -0
- package/lib/assets/fonts/TitilliumWeb-ExtraLight.woff +0 -0
- package/lib/assets/fonts/TitilliumWeb-ExtraLight.woff2 +0 -0
- package/lib/assets/fonts/TitilliumWeb-Light.woff +0 -0
- package/lib/assets/fonts/TitilliumWeb-Light.woff2 +0 -0
- package/lib/assets/fonts/TitilliumWeb-Regular.woff +0 -0
- package/lib/assets/fonts/TitilliumWeb-Regular.woff2 +0 -0
- package/lib/assets/fonts/TitilliumWeb-SemiBold.woff +0 -0
- package/lib/assets/fonts/TitilliumWeb-SemiBold.woff2 +0 -0
- package/lib/assets/images/logo.png +0 -0
- package/lib/assets/styles/alerts.scss +149 -0
- package/lib/assets/styles/avatar.scss +42 -0
- package/lib/assets/styles/badge.scss +48 -0
- package/lib/assets/styles/button.scss +345 -0
- package/lib/assets/styles/calendar.scss +172 -0
- package/lib/assets/styles/checkbox.scss +108 -0
- package/lib/assets/styles/colorpicker.scss +17 -0
- package/lib/assets/styles/colors.scss +144 -0
- package/lib/assets/styles/commons.scss +138 -0
- package/lib/assets/styles/datepicker.scss +16 -0
- package/lib/assets/styles/dialog.scss +200 -0
- package/lib/assets/styles/drawers.scss +159 -0
- package/lib/assets/styles/dropdown.scss +179 -0
- package/lib/assets/styles/effects.scss +823 -0
- package/lib/assets/styles/error.scss +9 -0
- package/lib/assets/styles/fieldset.scss +96 -0
- package/lib/assets/styles/file.scss +224 -0
- package/lib/assets/styles/floatMenu.scss +17 -0
- package/lib/assets/styles/fonts.scss +86 -0
- package/lib/assets/styles/form.scss +23 -0
- package/lib/assets/styles/gridlayout.scss +2054 -0
- package/lib/assets/styles/hint.scss +30 -0
- package/lib/assets/styles/icon.scss +42 -0
- package/lib/assets/styles/input.scss +156 -0
- package/lib/assets/styles/label.scss +116 -0
- package/lib/assets/styles/labelMessages.scss +81 -0
- package/lib/assets/styles/list.scss +124 -0
- package/lib/assets/styles/multiSelect.scss +125 -0
- package/lib/assets/styles/noPermission.scss +25 -0
- package/lib/assets/styles/numbers.scss +5 -0
- package/lib/assets/styles/panel.scss +95 -0
- package/lib/assets/styles/periodpicker.scss +69 -0
- package/lib/assets/styles/popover.scss +44 -0
- package/lib/assets/styles/progress.scss +72 -0
- package/lib/assets/styles/radio.scss +156 -0
- package/lib/assets/styles/search.scss +13 -0
- package/lib/assets/styles/select.scss +155 -0
- package/lib/assets/styles/shortcuts.scss +59 -0
- package/lib/assets/styles/sidenav.scss +408 -0
- package/lib/assets/styles/skeleton.scss +48 -0
- package/lib/assets/styles/spinner.scss +34 -0
- package/lib/assets/styles/split.scss +80 -0
- package/lib/assets/styles/table.scss +179 -0
- package/lib/assets/styles/tabs.scss +266 -0
- package/lib/assets/styles/textContent.scss +9 -0
- package/lib/assets/styles/toolbar.scss +74 -0
- package/lib/assets/styles/tooltip.scss +95 -0
- package/lib/assets/styles/treetable.scss +100 -0
- package/lib/assets/styles/treeview.scss +96 -0
- package/lib/assets/styles/uitour.scss +112 -0
- package/lib/assets/styles/wizard.scss +125 -0
- package/lib/avatar/index.d.ts +12 -0
- package/lib/avatar/index.js +91 -0
- package/lib/avatar/types.d.ts +31 -0
- package/lib/avatar/types.js +5 -0
- package/lib/badge/index.d.ts +6 -0
- package/lib/badge/index.js +30 -0
- package/lib/badge/types.d.ts +13 -0
- package/lib/badge/types.js +5 -0
- package/lib/buttons/ActivateButton.d.ts +11 -0
- package/lib/buttons/ActivateButton.js +14 -0
- package/lib/buttons/AddButton.d.ts +11 -0
- package/lib/buttons/AddButton.js +18 -0
- package/lib/buttons/Button.d.ts +14 -0
- package/lib/buttons/Button.js +23 -0
- package/lib/buttons/ButtonGroups.d.ts +8 -0
- package/lib/buttons/ButtonGroups.js +17 -0
- package/lib/buttons/CancelButton.d.ts +11 -0
- package/lib/buttons/CancelButton.js +23 -0
- package/lib/buttons/DangerButton.d.ts +11 -0
- package/lib/buttons/DangerButton.js +23 -0
- package/lib/buttons/DefaultButton.d.ts +14 -0
- package/lib/buttons/DefaultButton.js +176 -0
- package/lib/buttons/DestroyButton.d.ts +11 -0
- package/lib/buttons/DestroyButton.js +27 -0
- package/lib/buttons/EditButton.d.ts +11 -0
- package/lib/buttons/EditButton.js +14 -0
- package/lib/buttons/InactivateButton.d.ts +11 -0
- package/lib/buttons/InactivateButton.js +14 -0
- package/lib/buttons/InfoButton.d.ts +11 -0
- package/lib/buttons/InfoButton.js +23 -0
- package/lib/buttons/PrimaryButton.d.ts +11 -0
- package/lib/buttons/PrimaryButton.js +23 -0
- package/lib/buttons/RestoreButton.d.ts +11 -0
- package/lib/buttons/RestoreButton.js +14 -0
- package/lib/buttons/SaveButton.d.ts +11 -0
- package/lib/buttons/SaveButton.js +23 -0
- package/lib/buttons/SuccessButton.d.ts +11 -0
- package/lib/buttons/SuccessButton.js +23 -0
- package/lib/buttons/WarningButton.d.ts +11 -0
- package/lib/buttons/WarningButton.js +23 -0
- package/lib/buttons/button_container/index.d.ts +12 -0
- package/lib/buttons/button_container/index.js +30 -0
- package/lib/buttons/index.d.ts +26 -0
- package/lib/buttons/index.js +108 -0
- package/lib/buttons/split_button/index.d.ts +11 -0
- package/lib/buttons/split_button/index.js +57 -0
- package/lib/buttons/types.d.ts +49 -0
- package/lib/buttons/types.js +5 -0
- package/lib/calendar/DangerCalendar.d.ts +7 -0
- package/lib/calendar/DangerCalendar.js +23 -0
- package/lib/calendar/InfoCalendar.d.ts +7 -0
- package/lib/calendar/InfoCalendar.js +23 -0
- package/lib/calendar/PrimaryCalendar.d.ts +7 -0
- package/lib/calendar/PrimaryCalendar.js +23 -0
- package/lib/calendar/SuccessCalendar.d.ts +7 -0
- package/lib/calendar/SuccessCalendar.js +23 -0
- package/lib/calendar/WarningCalendar.d.ts +7 -0
- package/lib/calendar/WarningCalendar.js +23 -0
- package/lib/calendar/base/Day.d.ts +7 -0
- package/lib/calendar/base/Day.js +32 -0
- package/lib/calendar/base/Month.d.ts +7 -0
- package/lib/calendar/base/Month.js +37 -0
- package/lib/calendar/base/Week.d.ts +7 -0
- package/lib/calendar/base/Week.js +35 -0
- package/lib/calendar/base/helpers.d.ts +62 -0
- package/lib/calendar/base/helpers.js +117 -0
- package/lib/calendar/base/index.d.ts +7 -0
- package/lib/calendar/base/index.js +79 -0
- package/lib/calendar/index.d.ts +13 -0
- package/lib/calendar/index.js +44 -0
- package/lib/calendar/types.d.ts +25 -0
- package/lib/calendar/types.js +5 -0
- package/lib/checkbox/index.d.ts +13 -0
- package/lib/checkbox/index.js +145 -0
- package/lib/checkbox/types.d.ts +47 -0
- package/lib/checkbox/types.js +5 -0
- package/lib/dialog/Alert.d.ts +9 -0
- package/lib/dialog/Alert.js +28 -0
- package/lib/dialog/Custom.d.ts +9 -0
- package/lib/dialog/Custom.js +56 -0
- package/lib/dialog/Error.d.ts +9 -0
- package/lib/dialog/Error.js +28 -0
- package/lib/dialog/Information.d.ts +9 -0
- package/lib/dialog/Information.js +28 -0
- package/lib/dialog/Question.d.ts +9 -0
- package/lib/dialog/Question.js +60 -0
- package/lib/dialog/Warning.d.ts +9 -0
- package/lib/dialog/Warning.js +28 -0
- package/lib/dialog/base/Content.d.ts +9 -0
- package/lib/dialog/base/Content.js +22 -0
- package/lib/dialog/base/Footer.d.ts +9 -0
- package/lib/dialog/base/Footer.js +12 -0
- package/lib/dialog/base/Header.d.ts +9 -0
- package/lib/dialog/base/Header.js +59 -0
- package/lib/dialog/base/index.d.ts +15 -0
- package/lib/dialog/base/index.js +157 -0
- package/lib/dialog/base/style.js +13 -0
- package/lib/dialog/form/index.d.ts +10 -0
- package/lib/dialog/form/index.js +84 -0
- package/lib/dialog/index.d.ts +16 -0
- package/lib/dialog/index.js +51 -0
- package/lib/dialog/types.d.ts +105 -0
- package/lib/dialog/types.js +5 -0
- package/lib/dialog/wizard/index.d.ts +13 -0
- package/lib/dialog/wizard/index.js +74 -0
- package/lib/dialog/wizard/progressbar.d.ts +13 -0
- package/lib/dialog/wizard/progressbar.js +36 -0
- package/lib/dialog/wizard/step.d.ts +9 -0
- package/lib/dialog/wizard/step.js +22 -0
- package/lib/dialog/wizard/useWizard.d.ts +9 -0
- package/lib/dialog/wizard/useWizard.js +48 -0
- package/lib/drawer/Content.d.ts +10 -0
- package/lib/drawer/Content.js +26 -0
- package/lib/drawer/Drawer.d.ts +10 -0
- package/lib/drawer/Drawer.js +138 -0
- package/lib/drawer/Header.d.ts +10 -0
- package/lib/drawer/Header.js +76 -0
- package/lib/drawer/helpers.d.ts +10 -0
- package/lib/drawer/helpers.js +10 -0
- package/lib/drawer/index.d.ts +12 -0
- package/lib/drawer/index.js +25 -0
- package/lib/drawer/types.d.ts +41 -0
- package/lib/drawer/types.js +5 -0
- package/lib/dropdown/Popup.d.ts +6 -0
- package/lib/dropdown/Popup.js +69 -0
- package/lib/dropdown/helper.d.ts +4 -0
- package/lib/dropdown/helper.js +16 -0
- package/lib/dropdown/types.d.ts +44 -0
- package/lib/dropdown/types.js +5 -0
- package/lib/dropdown/withDropdown.d.ts +10 -0
- package/lib/dropdown/withDropdown.js +92 -0
- package/lib/fieldset/index.d.ts +8 -0
- package/lib/fieldset/index.js +83 -0
- package/lib/fieldset/types.d.ts +30 -0
- package/lib/fieldset/types.js +5 -0
- package/lib/form/Field.d.ts +14 -0
- package/lib/form/Field.js +118 -0
- package/lib/form/FieldArray.d.ts +14 -0
- package/lib/form/FieldArray.js +105 -0
- package/lib/form/FieldNumber.d.ts +14 -0
- package/lib/form/FieldNumber.js +68 -0
- package/lib/form/FieldPeriod.d.ts +14 -0
- package/lib/form/FieldPeriod.js +98 -0
- package/lib/form/helpers.d.ts +19 -0
- package/lib/form/helpers.js +50 -0
- package/lib/form/index.d.ts +18 -0
- package/lib/form/index.js +283 -0
- package/lib/form/types.d.ts +243 -0
- package/lib/form/types.js +5 -0
- package/lib/form/withFieldHOC.d.ts +14 -0
- package/lib/form/withFieldHOC.js +71 -0
- package/lib/form/withFormSecurity.d.ts +15 -0
- package/lib/form/withFormSecurity.js +55 -0
- package/lib/gridlayout/GridCol.d.ts +6 -0
- package/lib/gridlayout/GridCol.js +34 -0
- package/lib/gridlayout/GridRow.d.ts +6 -0
- package/lib/gridlayout/GridRow.js +34 -0
- package/lib/gridlayout/index.d.ts +8 -0
- package/lib/gridlayout/index.js +16 -0
- package/lib/gridlayout/types.d.ts +20 -0
- package/lib/gridlayout/types.js +5 -0
- package/lib/hint/helpers.d.ts +3 -0
- package/lib/hint/helpers.js +21 -0
- package/lib/hint/index.d.ts +7 -0
- package/lib/hint/index.js +36 -0
- package/lib/hint/types.d.ts +14 -0
- package/lib/hint/types.js +5 -0
- package/lib/icons/helper.d.ts +636 -0
- package/lib/icons/helper.js +640 -0
- package/lib/icons/index.d.ts +15 -0
- package/lib/icons/index.js +71 -0
- package/lib/icons/types.d.ts +49 -0
- package/lib/icons/types.js +5 -0
- package/lib/index.d.ts +39 -0
- package/lib/index.js +69 -0
- package/lib/inputs/base/InputTextBase.d.ts +11 -0
- package/lib/inputs/base/InputTextBase.js +261 -0
- package/lib/inputs/base/Label.d.ts +14 -0
- package/lib/inputs/base/Label.js +35 -0
- package/lib/inputs/base/helpers.d.ts +17 -0
- package/lib/inputs/base/helpers.js +46 -0
- package/lib/inputs/base/types.d.ts +100 -0
- package/lib/inputs/base/types.js +5 -0
- package/lib/inputs/color/index.d.ts +7 -0
- package/lib/inputs/color/index.js +95 -0
- package/lib/inputs/color/types.d.ts +19 -0
- package/lib/inputs/color/types.js +5 -0
- package/lib/inputs/date/Dialog.d.ts +13 -0
- package/lib/inputs/date/Dialog.js +25 -0
- package/lib/inputs/date/Dropdown.d.ts +13 -0
- package/lib/inputs/date/Dropdown.js +32 -0
- package/lib/inputs/date/helpers.d.ts +17 -0
- package/lib/inputs/date/helpers.js +31 -0
- package/lib/inputs/date/index.d.ts +13 -0
- package/lib/inputs/date/index.js +251 -0
- package/lib/inputs/date/types.d.ts +62 -0
- package/lib/inputs/date/types.js +5 -0
- package/lib/inputs/errorMessage/index.d.ts +16 -0
- package/lib/inputs/errorMessage/index.js +26 -0
- package/lib/inputs/file/DefaultFile.d.ts +13 -0
- package/lib/inputs/file/DefaultFile.js +80 -0
- package/lib/inputs/file/DragDropFile.d.ts +13 -0
- package/lib/inputs/file/DragDropFile.js +272 -0
- package/lib/inputs/file/File.d.ts +13 -0
- package/lib/inputs/file/File.js +63 -0
- package/lib/inputs/file/FileButtonSettings.d.ts +13 -0
- package/lib/inputs/file/FileButtonSettings.js +34 -0
- package/lib/inputs/file/helpers.d.ts +13 -0
- package/lib/inputs/file/helpers.js +21 -0
- package/lib/inputs/file/index.d.ts +16 -0
- package/lib/inputs/file/index.js +24 -0
- package/lib/inputs/file/types.d.ts +57 -0
- package/lib/inputs/file/types.js +5 -0
- package/lib/inputs/inputHOC.d.ts +16 -0
- package/lib/inputs/inputHOC.js +44 -0
- package/lib/inputs/mask/BaseMask.d.ts +12 -0
- package/lib/inputs/mask/BaseMask.js +167 -0
- package/lib/inputs/mask/Cnpj.d.ts +15 -0
- package/lib/inputs/mask/Cnpj.js +60 -0
- package/lib/inputs/mask/Cpf.d.ts +15 -0
- package/lib/inputs/mask/Cpf.js +57 -0
- package/lib/inputs/mask/Phone.d.ts +12 -0
- package/lib/inputs/mask/Phone.js +19 -0
- package/lib/inputs/mask/ZipCode.d.ts +12 -0
- package/lib/inputs/mask/ZipCode.js +14 -0
- package/lib/inputs/mask/helpers.d.ts +62 -0
- package/lib/inputs/mask/helpers.js +138 -0
- package/lib/inputs/mask/index.d.ts +17 -0
- package/lib/inputs/mask/index.js +37 -0
- package/lib/inputs/mask/types.d.ts +79 -0
- package/lib/inputs/mask/types.js +5 -0
- package/lib/inputs/multiSelect/ActionButtons.d.ts +13 -0
- package/lib/inputs/multiSelect/ActionButtons.js +51 -0
- package/lib/inputs/multiSelect/Dropdown.d.ts +13 -0
- package/lib/inputs/multiSelect/Dropdown.js +136 -0
- package/lib/inputs/multiSelect/helper.d.ts +13 -0
- package/lib/inputs/multiSelect/helper.js +20 -0
- package/lib/inputs/multiSelect/index.d.ts +13 -0
- package/lib/inputs/multiSelect/index.js +218 -0
- package/lib/inputs/multiSelect/types.d.ts +65 -0
- package/lib/inputs/multiSelect/types.js +5 -0
- package/lib/inputs/number/BaseNumber.d.ts +17 -0
- package/lib/inputs/number/BaseNumber.js +70 -0
- package/lib/inputs/number/Currency.d.ts +17 -0
- package/lib/inputs/number/Currency.js +22 -0
- package/lib/inputs/number/Decimal.d.ts +17 -0
- package/lib/inputs/number/Decimal.js +11 -0
- package/lib/inputs/number/format_number.d.ts +5 -0
- package/lib/inputs/number/format_number.js +27 -0
- package/lib/inputs/number/index.d.ts +19 -0
- package/lib/inputs/number/index.js +64 -0
- package/lib/inputs/number/types.d.ts +39 -0
- package/lib/inputs/number/types.js +5 -0
- package/lib/inputs/period/Dialog.d.ts +14 -0
- package/lib/inputs/period/Dialog.js +25 -0
- package/lib/inputs/period/Dropdown.d.ts +14 -0
- package/lib/inputs/period/Dropdown.js +28 -0
- package/lib/inputs/period/PeriodList.d.ts +14 -0
- package/lib/inputs/period/PeriodList.js +61 -0
- package/lib/inputs/period/helper.d.ts +22 -0
- package/lib/inputs/period/helper.js +66 -0
- package/lib/inputs/period/index.d.ts +14 -0
- package/lib/inputs/period/index.js +423 -0
- package/lib/inputs/period/types.d.ts +73 -0
- package/lib/inputs/period/types.js +5 -0
- package/lib/inputs/search/index.d.ts +16 -0
- package/lib/inputs/search/index.js +129 -0
- package/lib/inputs/select/ActionButtons.d.ts +16 -0
- package/lib/inputs/select/ActionButtons.js +38 -0
- package/lib/inputs/select/Dropdown.d.ts +16 -0
- package/lib/inputs/select/Dropdown.js +112 -0
- package/lib/inputs/select/helper.d.ts +25 -0
- package/lib/inputs/select/helper.js +108 -0
- package/lib/inputs/select/index.d.ts +13 -0
- package/lib/inputs/select/index.js +42 -0
- package/lib/inputs/select/multiple/Selecteds.d.ts +13 -0
- package/lib/inputs/select/multiple/Selecteds.js +25 -0
- package/lib/inputs/select/multiple/index.d.ts +13 -0
- package/lib/inputs/select/multiple/index.js +276 -0
- package/lib/inputs/select/simple/index.d.ts +13 -0
- package/lib/inputs/select/simple/index.js +302 -0
- package/lib/inputs/select/types.d.ts +119 -0
- package/lib/inputs/select/types.js +5 -0
- package/lib/inputs/text/index.d.ts +12 -0
- package/lib/inputs/text/index.js +13 -0
- package/lib/inputs/text/types.d.ts +25 -0
- package/lib/inputs/text/types.js +5 -0
- package/lib/inputs/textarea/index.d.ts +12 -0
- package/lib/inputs/textarea/index.js +25 -0
- package/lib/inputs/textarea/types.d.ts +16 -0
- package/lib/inputs/textarea/types.js +5 -0
- package/lib/inputs/types.d.ts +157 -0
- package/lib/inputs/types.js +5 -0
- package/lib/internals/colorStyles.d.ts +9 -0
- package/lib/internals/colorStyles.js +14 -0
- package/lib/internals/constants.d.ts +11 -0
- package/lib/internals/constants.js +15 -0
- package/lib/internals/types.d.ts +25 -0
- package/lib/internals/types.js +5 -0
- package/lib/internals/withTooltip.d.ts +12 -0
- package/lib/internals/withTooltip.js +172 -0
- package/lib/labelMessages/index.d.ts +9 -0
- package/lib/labelMessages/index.js +60 -0
- package/lib/labelMessages/types.d.ts +20 -0
- package/lib/labelMessages/types.js +5 -0
- package/lib/labels/DangerLabel.d.ts +11 -0
- package/lib/labels/DangerLabel.js +23 -0
- package/lib/labels/DefaultLabel.d.ts +14 -0
- package/lib/labels/DefaultLabel.js +55 -0
- package/lib/labels/InfoLabel.d.ts +11 -0
- package/lib/labels/InfoLabel.js +23 -0
- package/lib/labels/PrimaryLabel.d.ts +11 -0
- package/lib/labels/PrimaryLabel.js +23 -0
- package/lib/labels/SuccessLabel.d.ts +11 -0
- package/lib/labels/SuccessLabel.js +23 -0
- package/lib/labels/WarningLabel.d.ts +11 -0
- package/lib/labels/WarningLabel.js +23 -0
- package/lib/labels/index.d.ts +18 -0
- package/lib/labels/index.js +52 -0
- package/lib/labels/label_container/index.d.ts +12 -0
- package/lib/labels/label_container/index.js +22 -0
- package/lib/labels/types.d.ts +26 -0
- package/lib/labels/types.js +5 -0
- package/lib/list/Header.d.ts +10 -0
- package/lib/list/Header.js +23 -0
- package/lib/list/Item.d.ts +13 -0
- package/lib/list/Item.js +162 -0
- package/lib/list/Separator.d.ts +3 -0
- package/lib/list/Separator.js +12 -0
- package/lib/list/helpers.d.ts +15 -0
- package/lib/list/helpers.js +14 -0
- package/lib/list/index.d.ts +13 -0
- package/lib/list/index.js +182 -0
- package/lib/list/types.d.ts +73 -0
- package/lib/list/types.js +5 -0
- package/lib/menus/float/MenuItem.d.ts +9 -0
- package/lib/menus/float/MenuItem.js +69 -0
- package/lib/menus/float/SubMenuContainer.js +77 -0
- package/lib/menus/float/helpers.d.ts +9 -0
- package/lib/menus/float/helpers.js +10 -0
- package/lib/menus/float/index.d.ts +40 -0
- package/lib/menus/float/index.js +68 -0
- package/lib/menus/float/types.d.ts +30 -0
- package/lib/menus/float/types.js +5 -0
- package/lib/menus/index.d.ts +12 -0
- package/lib/menus/index.js +9 -0
- package/lib/menus/sidenav/ExpandMenu.d.ts +12 -0
- package/lib/menus/sidenav/ExpandMenu.js +27 -0
- package/lib/menus/sidenav/MenuLink.d.ts +15 -0
- package/lib/menus/sidenav/MenuLink.js +29 -0
- package/lib/menus/sidenav/NavMenuGroup.d.ts +12 -0
- package/lib/menus/sidenav/NavMenuGroup.js +26 -0
- package/lib/menus/sidenav/NavMenuItem.d.ts +15 -0
- package/lib/menus/sidenav/NavMenuItem.js +150 -0
- package/lib/menus/sidenav/NavSubMenuItem.d.ts +12 -0
- package/lib/menus/sidenav/NavSubMenuItem.js +43 -0
- package/lib/menus/sidenav/helpers.d.ts +14 -0
- package/lib/menus/sidenav/helpers.js +18 -0
- package/lib/menus/sidenav/index.d.ts +16 -0
- package/lib/menus/sidenav/index.js +184 -0
- package/lib/menus/sidenav/popup_menu_search/EmptyList.d.ts +12 -0
- package/lib/menus/sidenav/popup_menu_search/EmptyList.js +26 -0
- package/lib/menus/sidenav/popup_menu_search/index.d.ts +12 -0
- package/lib/menus/sidenav/popup_menu_search/index.js +116 -0
- package/lib/menus/sidenav/types.d.ts +90 -0
- package/lib/menus/sidenav/types.js +5 -0
- package/lib/noPermission/index.d.ts +3 -0
- package/lib/noPermission/index.js +23 -0
- package/lib/panel/Content.d.ts +10 -0
- package/lib/panel/Content.js +79 -0
- package/lib/panel/DangerPanel.d.ts +10 -0
- package/lib/panel/DangerPanel.js +15 -0
- package/lib/panel/Default.d.ts +10 -0
- package/lib/panel/Default.js +67 -0
- package/lib/panel/Header.d.ts +10 -0
- package/lib/panel/Header.js +77 -0
- package/lib/panel/InfoPanel.d.ts +10 -0
- package/lib/panel/InfoPanel.js +15 -0
- package/lib/panel/PrimaryPanel.d.ts +10 -0
- package/lib/panel/PrimaryPanel.js +15 -0
- package/lib/panel/SuccessPanel.d.ts +10 -0
- package/lib/panel/SuccessPanel.js +15 -0
- package/lib/panel/ToolBar.d.ts +10 -0
- package/lib/panel/ToolBar.js +22 -0
- package/lib/panel/WarningPanel.d.ts +10 -0
- package/lib/panel/WarningPanel.js +15 -0
- package/lib/panel/helpers.d.ts +11 -0
- package/lib/panel/helpers.js +25 -0
- package/lib/panel/index.d.ts +18 -0
- package/lib/panel/index.js +59 -0
- package/lib/panel/types.d.ts +47 -0
- package/lib/panel/types.js +5 -0
- package/lib/permissionValidations.d.ts +14 -0
- package/lib/permissionValidations.js +59 -0
- package/lib/popover/PopoverText.d.ts +10 -0
- package/lib/popover/PopoverText.js +20 -0
- package/lib/popover/PopoverTitle.d.ts +10 -0
- package/lib/popover/PopoverTitle.js +17 -0
- package/lib/popover/index.d.ts +15 -0
- package/lib/popover/index.js +63 -0
- package/lib/popover/types.d.ts +24 -0
- package/lib/popover/types.js +5 -0
- package/lib/progress/Bar.d.ts +6 -0
- package/lib/progress/Bar.js +74 -0
- package/lib/progress/index.d.ts +7 -0
- package/lib/progress/index.js +38 -0
- package/lib/progress/types.d.ts +37 -0
- package/lib/progress/types.js +5 -0
- package/lib/radio/index.d.ts +13 -0
- package/lib/radio/index.js +113 -0
- package/lib/radio/types.d.ts +28 -0
- package/lib/radio/types.js +5 -0
- package/lib/shortcuts/index.d.ts +7 -0
- package/lib/shortcuts/index.js +28 -0
- package/lib/shortcuts/types.d.ts +12 -0
- package/lib/shortcuts/types.js +5 -0
- package/lib/skeleton/SkeletonContainer.d.ts +7 -0
- package/lib/skeleton/SkeletonContainer.js +23 -0
- package/lib/skeleton/index.d.ts +8 -0
- package/lib/skeleton/index.js +54 -0
- package/lib/skeleton/types.d.ts +21 -0
- package/lib/skeleton/types.js +5 -0
- package/lib/spinner/SpinnerLoading.d.ts +7 -0
- package/lib/spinner/SpinnerLoading.js +219 -0
- package/lib/spinner/index.d.ts +7 -0
- package/lib/spinner/index.js +60 -0
- package/lib/spinner/types.d.ts +20 -0
- package/lib/spinner/types.js +5 -0
- package/lib/split/Split.d.ts +6 -0
- package/lib/split/Split.js +292 -0
- package/lib/split/SplitSide.d.ts +6 -0
- package/lib/split/SplitSide.js +42 -0
- package/lib/split/helpers.d.ts +10 -0
- package/lib/split/helpers.js +10 -0
- package/lib/split/index.d.ts +8 -0
- package/lib/split/index.js +17 -0
- package/lib/split/types.d.ts +34 -0
- package/lib/split/types.js +5 -0
- package/lib/table/Body.d.ts +6 -0
- package/lib/table/Body.js +71 -0
- package/lib/table/Header.d.ts +6 -0
- package/lib/table/Header.js +90 -0
- package/lib/table/HeaderColumn.d.ts +6 -0
- package/lib/table/HeaderColumn.js +55 -0
- package/lib/table/Row.d.ts +6 -0
- package/lib/table/Row.js +78 -0
- package/lib/table/RowColumn.d.ts +6 -0
- package/lib/table/RowColumn.js +81 -0
- package/lib/table/helpers.d.ts +8 -0
- package/lib/table/helpers.js +15 -0
- package/lib/table/index.d.ts +11 -0
- package/lib/table/index.js +154 -0
- package/lib/table/types.d.ts +97 -0
- package/lib/table/types.js +5 -0
- package/lib/tabs/DropdownTabs.d.ts +11 -0
- package/lib/tabs/DropdownTabs.js +73 -0
- package/lib/tabs/Menu.d.ts +11 -0
- package/lib/tabs/Menu.js +46 -0
- package/lib/tabs/MenuTabs.d.ts +11 -0
- package/lib/tabs/MenuTabs.js +84 -0
- package/lib/tabs/Panel.d.ts +11 -0
- package/lib/tabs/Panel.js +84 -0
- package/lib/tabs/context.d.ts +12 -0
- package/lib/tabs/context.js +127 -0
- package/lib/tabs/index.d.ts +12 -0
- package/lib/tabs/index.js +70 -0
- package/lib/tabs/tabHelpers.d.ts +12 -0
- package/lib/tabs/tabHelpers.js +75 -0
- package/lib/tabs/types.d.ts +98 -0
- package/lib/tabs/types.js +5 -0
- package/lib/tabs/useTabs.d.ts +11 -0
- package/lib/tabs/useTabs.js +11 -0
- package/lib/textContent/index.d.ts +22 -0
- package/lib/textContent/index.js +42 -0
- package/lib/toolbar/ButtonBar.d.ts +12 -0
- package/lib/toolbar/ButtonBar.js +66 -0
- package/lib/toolbar/LabelBar.d.ts +12 -0
- package/lib/toolbar/LabelBar.js +58 -0
- package/lib/toolbar/Separator.d.ts +3 -0
- package/lib/toolbar/Separator.js +12 -0
- package/lib/toolbar/ToolBarGroup.d.ts +12 -0
- package/lib/toolbar/ToolBarGroup.js +19 -0
- package/lib/toolbar/helpers.d.ts +12 -0
- package/lib/toolbar/helpers.js +9 -0
- package/lib/toolbar/index.d.ts +16 -0
- package/lib/toolbar/index.js +65 -0
- package/lib/toolbar/types.d.ts +46 -0
- package/lib/toolbar/types.js +5 -0
- package/lib/tooltip/index.d.ts +6 -0
- package/lib/tooltip/index.js +63 -0
- package/lib/tooltip/types.d.ts +17 -0
- package/lib/tooltip/types.js +5 -0
- package/lib/treetable/Body.d.ts +3 -0
- package/lib/treetable/Body.js +34 -0
- package/lib/treetable/Header.d.ts +3 -0
- package/lib/treetable/Header.js +24 -0
- package/lib/treetable/Row.d.ts +7 -0
- package/lib/treetable/Row.js +209 -0
- package/lib/treetable/helpers.d.ts +19 -0
- package/lib/treetable/helpers.js +32 -0
- package/lib/treetable/index.d.ts +8 -0
- package/lib/treetable/index.js +28 -0
- package/lib/treetable/types.d.js +5 -0
- package/lib/treeview/Header.d.ts +7 -0
- package/lib/treeview/Header.js +21 -0
- package/lib/treeview/Node.d.ts +7 -0
- package/lib/treeview/Node.js +245 -0
- package/lib/treeview/constants.d.ts +7 -0
- package/lib/treeview/constants.js +9 -0
- package/lib/treeview/index.d.ts +9 -0
- package/lib/treeview/index.js +320 -0
- package/lib/treeview/types.d.ts +108 -0
- package/lib/treeview/types.js +5 -0
- package/lib/types.d-73cece43.d.ts +46 -0
- package/lib/uitour/helpers.d.ts +8 -0
- package/lib/uitour/helpers.js +12 -0
- package/lib/uitour/index.d.ts +7 -0
- package/lib/uitour/index.js +255 -0
- package/lib/uitour/types.d.ts +38 -0
- package/lib/uitour/types.js +5 -0
- package/package.json +1 -1
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import { ReactNode, CSSProperties, ReactElement } from 'react';
|
|
2
|
+
import { Size } from '../@types/Size.js';
|
|
3
|
+
|
|
4
|
+
type NodeItem<T = void> = T & {
|
|
5
|
+
id: number;
|
|
6
|
+
itens?: NodeItem<T>[];
|
|
7
|
+
statusEnum?: {
|
|
8
|
+
id: number | string;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
interface IValidator<T = void> {
|
|
12
|
+
validator: (node: NodeItem<T>) => boolean;
|
|
13
|
+
applyBehavior?: 'unvisible' | 'disabled';
|
|
14
|
+
}
|
|
15
|
+
interface INodeElementsValidations<T = void> {
|
|
16
|
+
[key: string]: IValidator<T>[];
|
|
17
|
+
}
|
|
18
|
+
interface INodeValidationProps {
|
|
19
|
+
validationKey: string | null;
|
|
20
|
+
onNodeElementClick: (node: any) => void;
|
|
21
|
+
visible: boolean;
|
|
22
|
+
}
|
|
23
|
+
interface ITreeviewProps {
|
|
24
|
+
data: object;
|
|
25
|
+
valuePropName: string;
|
|
26
|
+
labelPropName: string;
|
|
27
|
+
parentPropName: string;
|
|
28
|
+
customClass?: string;
|
|
29
|
+
bordered?: boolean;
|
|
30
|
+
startNodesOpened?: boolean;
|
|
31
|
+
alwaysShowArrow?: boolean;
|
|
32
|
+
selectedIds?: number[];
|
|
33
|
+
requiredIds?: number[] | string[];
|
|
34
|
+
showCheckBox?: boolean;
|
|
35
|
+
onSelectedIdsChange?: (value: any) => void;
|
|
36
|
+
children?: ReactNode;
|
|
37
|
+
styleForContainer?: CSSProperties;
|
|
38
|
+
allowCheckAllChildren?: boolean;
|
|
39
|
+
allowCheckAllAncestry?: boolean;
|
|
40
|
+
defaultDisabledTooltip?: string;
|
|
41
|
+
nodeRightElements?: ReactElement<INodeValidationProps>[];
|
|
42
|
+
nodeToolbarElements?: ReactElement<INodeValidationProps>[];
|
|
43
|
+
nodeMenuButtonSize?: Size;
|
|
44
|
+
onNodeClick?: () => void;
|
|
45
|
+
onNodeOpen?: (value: any) => void;
|
|
46
|
+
nodeElementsValidations?: INodeElementsValidations<any>;
|
|
47
|
+
enableDynamicData?: boolean;
|
|
48
|
+
idsInLoading?: number[];
|
|
49
|
+
selectedNodeId?: number;
|
|
50
|
+
customClassForNodes?: string;
|
|
51
|
+
customStyleForNodes?: CSSProperties;
|
|
52
|
+
}
|
|
53
|
+
interface ITreeNodeProps {
|
|
54
|
+
node: any;
|
|
55
|
+
children: ReactNode;
|
|
56
|
+
startNodesOpened: boolean;
|
|
57
|
+
childrenIds?: number[];
|
|
58
|
+
parentId?: number;
|
|
59
|
+
disabled?: boolean;
|
|
60
|
+
isParent?: boolean;
|
|
61
|
+
alwaysShowArrow?: boolean;
|
|
62
|
+
nodeRightElements?: ReactElement<INodeValidationProps>[];
|
|
63
|
+
nodeToolbarElements?: ReactElement<INodeValidationProps>[];
|
|
64
|
+
nodeMenuButtonSize?: Size;
|
|
65
|
+
onNodeClick?: (node: any) => void;
|
|
66
|
+
handlerOnNodeOpen?: (node: any) => void;
|
|
67
|
+
nodeElementsValidations?: INodeElementsValidations;
|
|
68
|
+
idsInLoading?: number[];
|
|
69
|
+
selectedNodeId?: number;
|
|
70
|
+
customClass?: string;
|
|
71
|
+
customStyle?: CSSProperties;
|
|
72
|
+
}
|
|
73
|
+
interface ITreeHeaderProps {
|
|
74
|
+
title?: string;
|
|
75
|
+
customClass?: string;
|
|
76
|
+
children?: ReactNode;
|
|
77
|
+
}
|
|
78
|
+
interface ITreeViewContext extends ITreeviewProps {
|
|
79
|
+
requiredIds: number[] | string[];
|
|
80
|
+
selectedIds?: number[];
|
|
81
|
+
isHandlingSelectedIds: boolean;
|
|
82
|
+
selectedIdsUpdatedOnMount: boolean;
|
|
83
|
+
requiredParentsIds: number[] | string[];
|
|
84
|
+
alreadyOpenedIds: number[];
|
|
85
|
+
handlerUpdateSelectedIds: (nodeId: number, checked: boolean, isParent: boolean, required?: boolean, handling?: boolean) => void;
|
|
86
|
+
handlerToggleCheckChildren: (nodeId: number, check: boolean, required?: boolean) => void;
|
|
87
|
+
disabled?: boolean;
|
|
88
|
+
}
|
|
89
|
+
type ItensMock = {
|
|
90
|
+
id?: number;
|
|
91
|
+
titulo: string;
|
|
92
|
+
codigo: string;
|
|
93
|
+
permissoes?: {
|
|
94
|
+
codigo: string;
|
|
95
|
+
}[];
|
|
96
|
+
itens: ItensMock[];
|
|
97
|
+
};
|
|
98
|
+
interface IDataMock {
|
|
99
|
+
id: number;
|
|
100
|
+
titulo: string;
|
|
101
|
+
codigo: string;
|
|
102
|
+
permissoes: {
|
|
103
|
+
codigo: string;
|
|
104
|
+
}[];
|
|
105
|
+
itens: ItensMock[];
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
export { IDataMock, INodeElementsValidations, INodeValidationProps, ITreeHeaderProps, ITreeNodeProps, ITreeViewContext, ITreeviewProps, IValidator, NodeItem };
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { CSSProperties, ReactElement } from 'react';
|
|
2
|
+
import { ITableProps, ITableRowProps } from './table/types.js';
|
|
3
|
+
|
|
4
|
+
type RowItem<T = void> = T & {
|
|
5
|
+
id: number | string;
|
|
6
|
+
statusEnum: {
|
|
7
|
+
id: number | string
|
|
8
|
+
}
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
interface IValidatorElements<T = void> {
|
|
12
|
+
validator: (row: RowItem<T>) => boolean;
|
|
13
|
+
onDenied: 'unvisible' | 'disabled';
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
interface IRowElementsValidations<T = void> {
|
|
17
|
+
[key: string]: IValidatorElements<T>[]
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
interface ITreeTableProps extends ITableProps {
|
|
21
|
+
data: Array<{ [key: string]: any }>;
|
|
22
|
+
dataColumns: Array<{
|
|
23
|
+
title: string;
|
|
24
|
+
name: string;
|
|
25
|
+
style?: CSSProperties
|
|
26
|
+
}>;
|
|
27
|
+
rootPropName: string;
|
|
28
|
+
parentPropName: string;
|
|
29
|
+
leftToolbarElements?: Array<ReactElement>;
|
|
30
|
+
rightToolbarElements?: Array<ReactElement>;
|
|
31
|
+
toolbarElementsValidations?: IRowElementsValidations<any>;
|
|
32
|
+
stylesForRow?: CSSProperties;
|
|
33
|
+
onClickGetChildrens?: (id?: string | number) => Promise<void>;
|
|
34
|
+
onClickFirstColumn?: (id?: string | number) => void;
|
|
35
|
+
styleForRightToolbar?: CSSProperties;
|
|
36
|
+
styleForLeftToolbar?: CSSProperties;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
interface ITreeTableRow extends ITableRowProps {
|
|
40
|
+
dataRow: {
|
|
41
|
+
[key: string]: any
|
|
42
|
+
};
|
|
43
|
+
rowLevel: number;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export { ITreeTableRow as I, RowItem as R, ITreeTableProps as a, IRowElementsValidations as b };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.STEP_POSITIONS = exports.ARROW_WIDTH = exports.ARROW_HEIGHT = void 0;
|
|
7
|
+
const ARROW_WIDTH = exports.ARROW_WIDTH = 26;
|
|
8
|
+
const ARROW_HEIGHT = exports.ARROW_HEIGHT = 20;
|
|
9
|
+
const STEP_POSITIONS = exports.STEP_POSITIONS = {
|
|
10
|
+
right: 'right',
|
|
11
|
+
left: 'left'
|
|
12
|
+
};
|
|
@@ -0,0 +1,255 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
8
|
+
var _reactDom = require("react-dom");
|
|
9
|
+
var _buttons = _interopRequireWildcard(require("../buttons"));
|
|
10
|
+
require("../assets/styles/uitour.scss");
|
|
11
|
+
var _helpers = require("./helpers");
|
|
12
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
13
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
14
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
15
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
16
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
17
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
|
18
|
+
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
19
|
+
const UiTour = props => {
|
|
20
|
+
const {
|
|
21
|
+
data,
|
|
22
|
+
nextButtonLabel,
|
|
23
|
+
backButtonLabel,
|
|
24
|
+
finishButtonLabel,
|
|
25
|
+
showCloseButton = true,
|
|
26
|
+
showBackButton = true,
|
|
27
|
+
visible = true,
|
|
28
|
+
onFinish,
|
|
29
|
+
onStepChange
|
|
30
|
+
} = props;
|
|
31
|
+
const [currentStep, setCurrentStep] = (0, _react.useState)(undefined);
|
|
32
|
+
const [hasNextStep, setHasNextStep] = (0, _react.useState)(false);
|
|
33
|
+
const [hasBackStep, setHasBackStep] = (0, _react.useState)(false);
|
|
34
|
+
const [isLastStep, setIsLastStep] = (0, _react.useState)(false);
|
|
35
|
+
const [stepDimensions, setStepDimensions] = (0, _react.useState)(null);
|
|
36
|
+
const [showTour, setShowTour] = (0, _react.useState)(visible);
|
|
37
|
+
const [stepPosition, setStepPosition] = (0, _react.useState)(_helpers.STEP_POSITIONS.left);
|
|
38
|
+
const stepRef = (0, _react.useRef)(null);
|
|
39
|
+
const descriptionRef = (0, _react.useRef)(null);
|
|
40
|
+
const activatedEffects = (0, _react.useRef)([]);
|
|
41
|
+
const handleNextStep = () => {
|
|
42
|
+
if (hasNextStep) {
|
|
43
|
+
const currentStepIndex = data.findIndex(item => item.id === currentStep?.id);
|
|
44
|
+
const nextStep = data[currentStepIndex + 1];
|
|
45
|
+
const nextStepIndex = data.findIndex(item => item.id === nextStep.id);
|
|
46
|
+
const target = document.getElementById(nextStep.targetId);
|
|
47
|
+
if (target) {
|
|
48
|
+
setCurrentStep(_objectSpread(_objectSpread({}, nextStep), {}, {
|
|
49
|
+
number: nextStepIndex + 1
|
|
50
|
+
}));
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
};
|
|
54
|
+
const handleBackStep = () => {
|
|
55
|
+
if (hasBackStep) {
|
|
56
|
+
const currentStepIndex = data.findIndex(item => item.id === currentStep?.id);
|
|
57
|
+
const backStep = data[currentStepIndex - 1];
|
|
58
|
+
const backStepIndex = data.findIndex(item => item.id === backStep.id);
|
|
59
|
+
const target = document.getElementById(backStep.targetId);
|
|
60
|
+
if (target) {
|
|
61
|
+
setCurrentStep(_objectSpread(_objectSpread({}, backStep), {}, {
|
|
62
|
+
number: backStepIndex + 1
|
|
63
|
+
}));
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
};
|
|
67
|
+
const onCloseTour = () => {
|
|
68
|
+
setShowTour(false);
|
|
69
|
+
if (onFinish) onFinish(true);
|
|
70
|
+
};
|
|
71
|
+
const getStepPosition = target => {
|
|
72
|
+
if (stepRef.current) {
|
|
73
|
+
const stepRect = stepRef.current.getBoundingClientRect();
|
|
74
|
+
const windowWidth = window.innerWidth;
|
|
75
|
+
if (stepRect.right >= windowWidth || currentStep?.position === _helpers.STEP_POSITIONS.right) {
|
|
76
|
+
setStepPosition(_helpers.STEP_POSITIONS.right);
|
|
77
|
+
setStepDimensions({
|
|
78
|
+
top: target.top - _helpers.ARROW_HEIGHT,
|
|
79
|
+
left: target.left - stepRect.width - _helpers.ARROW_WIDTH
|
|
80
|
+
});
|
|
81
|
+
} else {
|
|
82
|
+
setStepPosition(_helpers.STEP_POSITIONS.left);
|
|
83
|
+
setStepDimensions({
|
|
84
|
+
top: target.top - _helpers.ARROW_HEIGHT,
|
|
85
|
+
left: target.left + target.width + _helpers.ARROW_WIDTH
|
|
86
|
+
});
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
};
|
|
90
|
+
const showStepTour = step => {
|
|
91
|
+
setShowTour(visible);
|
|
92
|
+
setCurrentStep(step);
|
|
93
|
+
};
|
|
94
|
+
const removePreviousElementsEffects = () => {
|
|
95
|
+
if (activatedEffects.current.length > 0) {
|
|
96
|
+
const effects = activatedEffects.current;
|
|
97
|
+
effects.forEach(ef => {
|
|
98
|
+
const element = document.getElementById(ef.elementId);
|
|
99
|
+
if (element) {
|
|
100
|
+
delete element.dataset.uitour;
|
|
101
|
+
activatedEffects.current = activatedEffects.current.filter(r => r.elementId !== ef.elementId);
|
|
102
|
+
}
|
|
103
|
+
});
|
|
104
|
+
}
|
|
105
|
+
};
|
|
106
|
+
const addElementEffect = (0, _react.useCallback)(elementEffect => {
|
|
107
|
+
const element = document.getElementById(elementEffect.elementId);
|
|
108
|
+
if (element) {
|
|
109
|
+
element.dataset.uitour = elementEffect.effect;
|
|
110
|
+
if (activatedEffects.current) activatedEffects.current.push(elementEffect);
|
|
111
|
+
}
|
|
112
|
+
}, []);
|
|
113
|
+
const showElementsEffects = currentData => {
|
|
114
|
+
if (currentData.effect) {
|
|
115
|
+
const {
|
|
116
|
+
effect,
|
|
117
|
+
targetId
|
|
118
|
+
} = currentData;
|
|
119
|
+
addElementEffect({
|
|
120
|
+
effect,
|
|
121
|
+
elementId: targetId
|
|
122
|
+
});
|
|
123
|
+
}
|
|
124
|
+
if (currentData.elementsEffects) {
|
|
125
|
+
let {
|
|
126
|
+
elementsEffects
|
|
127
|
+
} = currentData;
|
|
128
|
+
if (!Array.isArray(elementsEffects)) elementsEffects = [elementsEffects];
|
|
129
|
+
elementsEffects.forEach(ef => {
|
|
130
|
+
addElementEffect(ef);
|
|
131
|
+
});
|
|
132
|
+
}
|
|
133
|
+
};
|
|
134
|
+
(0, _react.useEffect)(() => {
|
|
135
|
+
if (currentStep) {
|
|
136
|
+
const target = document.getElementById(currentStep.targetId);
|
|
137
|
+
if (target) {
|
|
138
|
+
const targetRect = target.getBoundingClientRect();
|
|
139
|
+
const currentStepIndex = data.findIndex(item => item.id === currentStep.id);
|
|
140
|
+
const lastDataIndex = data.length - 1;
|
|
141
|
+
const initialDataIndex = 0;
|
|
142
|
+
switch (currentStepIndex) {
|
|
143
|
+
case lastDataIndex:
|
|
144
|
+
setHasNextStep(false);
|
|
145
|
+
setHasBackStep(true);
|
|
146
|
+
setIsLastStep(true);
|
|
147
|
+
break;
|
|
148
|
+
case initialDataIndex:
|
|
149
|
+
setHasNextStep(true);
|
|
150
|
+
setIsLastStep(false);
|
|
151
|
+
setHasBackStep(false);
|
|
152
|
+
break;
|
|
153
|
+
default:
|
|
154
|
+
setHasNextStep(true);
|
|
155
|
+
setHasBackStep(true);
|
|
156
|
+
setIsLastStep(false);
|
|
157
|
+
}
|
|
158
|
+
getStepPosition(targetRect);
|
|
159
|
+
removePreviousElementsEffects();
|
|
160
|
+
showElementsEffects(data[currentStepIndex]);
|
|
161
|
+
if (onStepChange) onStepChange(target);
|
|
162
|
+
}
|
|
163
|
+
if (descriptionRef.current) {
|
|
164
|
+
descriptionRef.current.innerHTML = currentStep.description;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
}, [currentStep, stepRef.current]);
|
|
168
|
+
(0, _react.useEffect)(() => {
|
|
169
|
+
let mutationObserver = null;
|
|
170
|
+
if (data && visible) {
|
|
171
|
+
const initialNumber = 1;
|
|
172
|
+
const initialStep = _objectSpread(_objectSpread({}, data[0]), {}, {
|
|
173
|
+
number: initialNumber
|
|
174
|
+
});
|
|
175
|
+
const target = document.getElementById(initialStep.targetId);
|
|
176
|
+
if (target) {
|
|
177
|
+
showStepTour(initialStep);
|
|
178
|
+
} else {
|
|
179
|
+
mutationObserver = new MutationObserver(() => {
|
|
180
|
+
const targetObserved = document.getElementById(initialStep.targetId);
|
|
181
|
+
if (targetObserved) {
|
|
182
|
+
showStepTour(initialStep);
|
|
183
|
+
mutationObserver?.disconnect();
|
|
184
|
+
mutationObserver = null;
|
|
185
|
+
}
|
|
186
|
+
});
|
|
187
|
+
mutationObserver.observe(document, {
|
|
188
|
+
subtree: true,
|
|
189
|
+
childList: true
|
|
190
|
+
});
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
return () => {
|
|
194
|
+
mutationObserver?.disconnect();
|
|
195
|
+
mutationObserver = null;
|
|
196
|
+
};
|
|
197
|
+
}, [visible, data]);
|
|
198
|
+
(0, _react.useEffect)(() => {
|
|
199
|
+
if (!showTour && activatedEffects.current.length > 0) {
|
|
200
|
+
removePreviousElementsEffects();
|
|
201
|
+
}
|
|
202
|
+
if (showTour) document.body.style.overflow = 'hidden';else document.body.style.overflow = 'auto';
|
|
203
|
+
}, [showTour, activatedEffects.current.length]);
|
|
204
|
+
const component = (0, _react.useMemo)(() => /*#__PURE__*/_react.default.createElement("div", {
|
|
205
|
+
className: "uitour-component"
|
|
206
|
+
}, currentStep && /*#__PURE__*/_react.default.createElement("div", {
|
|
207
|
+
ref: stepRef,
|
|
208
|
+
className: `step -${stepPosition}`,
|
|
209
|
+
key: currentStep.id,
|
|
210
|
+
style: _objectSpread({}, stepDimensions)
|
|
211
|
+
}, showCloseButton && /*#__PURE__*/_react.default.createElement("div", {
|
|
212
|
+
className: "closebutton"
|
|
213
|
+
}, /*#__PURE__*/_react.default.createElement(_buttons.default, {
|
|
214
|
+
iconName: "cancel2",
|
|
215
|
+
iconAlign: "center",
|
|
216
|
+
size: "large",
|
|
217
|
+
transparent: true,
|
|
218
|
+
boxShadow: false,
|
|
219
|
+
style: {
|
|
220
|
+
padding: 0
|
|
221
|
+
},
|
|
222
|
+
onClick: onCloseTour
|
|
223
|
+
})), /*#__PURE__*/_react.default.createElement("div", {
|
|
224
|
+
className: "content"
|
|
225
|
+
}, /*#__PURE__*/_react.default.createElement("span", {
|
|
226
|
+
className: "number"
|
|
227
|
+
}, currentStep.number), /*#__PURE__*/_react.default.createElement("div", {
|
|
228
|
+
className: "about"
|
|
229
|
+
}, /*#__PURE__*/_react.default.createElement("h3", null, currentStep.title), /*#__PURE__*/_react.default.createElement("p", {
|
|
230
|
+
className: "description",
|
|
231
|
+
ref: descriptionRef
|
|
232
|
+
}))), /*#__PURE__*/_react.default.createElement("div", {
|
|
233
|
+
className: "footer"
|
|
234
|
+
}, /*#__PURE__*/_react.default.createElement(_buttons.PrimaryButton, {
|
|
235
|
+
label: backButtonLabel,
|
|
236
|
+
onClick: handleBackStep,
|
|
237
|
+
disabled: !hasBackStep,
|
|
238
|
+
visible: showBackButton,
|
|
239
|
+
customClass: "back-button"
|
|
240
|
+
}), /*#__PURE__*/_react.default.createElement(_buttons.PrimaryButton, {
|
|
241
|
+
label: nextButtonLabel,
|
|
242
|
+
onClick: handleNextStep,
|
|
243
|
+
disabled: !hasNextStep,
|
|
244
|
+
visible: !isLastStep,
|
|
245
|
+
customClass: "next-button"
|
|
246
|
+
}), /*#__PURE__*/_react.default.createElement(_buttons.PrimaryButton, {
|
|
247
|
+
label: finishButtonLabel,
|
|
248
|
+
visible: isLastStep,
|
|
249
|
+
onClick: onCloseTour,
|
|
250
|
+
customClass: "finish-button"
|
|
251
|
+
})))), [currentStep, stepPosition, stepDimensions, showCloseButton, onCloseTour, backButtonLabel, handleBackStep, hasBackStep, showBackButton, nextButtonLabel, handleNextStep, hasNextStep, isLastStep, finishButtonLabel, isLastStep, onCloseTour]);
|
|
252
|
+
if (!showTour) return null;
|
|
253
|
+
return /*#__PURE__*/(0, _reactDom.createPortal)(component, document.body);
|
|
254
|
+
};
|
|
255
|
+
var _default = exports.default = UiTour;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { STEP_POSITIONS } from './helpers.js';
|
|
2
|
+
|
|
3
|
+
type Effect = 'hover' | 'focus' | 'blur' | 'active' | 'selected';
|
|
4
|
+
type ElementEffect = {
|
|
5
|
+
elementId: string;
|
|
6
|
+
effect: Effect;
|
|
7
|
+
};
|
|
8
|
+
type UITourData = {
|
|
9
|
+
id: string | number;
|
|
10
|
+
targetId: string;
|
|
11
|
+
effect?: Effect;
|
|
12
|
+
title: string;
|
|
13
|
+
description: string;
|
|
14
|
+
position?: keyof typeof STEP_POSITIONS;
|
|
15
|
+
elementsEffects?: ElementEffect | ElementEffect[];
|
|
16
|
+
};
|
|
17
|
+
interface CurrentStep extends UITourData {
|
|
18
|
+
number: number;
|
|
19
|
+
}
|
|
20
|
+
interface StepDimensions {
|
|
21
|
+
top?: number;
|
|
22
|
+
left?: number;
|
|
23
|
+
right?: number;
|
|
24
|
+
bottom?: number;
|
|
25
|
+
}
|
|
26
|
+
interface IUITourProps {
|
|
27
|
+
data: UITourData[];
|
|
28
|
+
nextButtonLabel: string;
|
|
29
|
+
backButtonLabel: string;
|
|
30
|
+
finishButtonLabel: string;
|
|
31
|
+
showCloseButton?: boolean;
|
|
32
|
+
showBackButton?: boolean;
|
|
33
|
+
visible?: boolean;
|
|
34
|
+
onFinish: (value: boolean) => void;
|
|
35
|
+
onStepChange?: (target: HTMLElement) => void;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export { CurrentStep, Effect, ElementEffect, IUITourProps, StepDimensions, UITourData };
|