linear-react-components-ui 1.1.26-beta.7 → 1.1.26-beta.8
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 +2 -0
- package/lib/@types/ButtonTypes.d.ts +1 -0
- package/lib/@types/ColorStyles.d.ts +1 -0
- package/lib/@types/DataCombo.d.ts +1 -0
- package/lib/@types/Icon.d.ts +2 -0
- package/lib/@types/LabelStyles.d.ts +1 -0
- package/lib/@types/Period.d.ts +4 -0
- package/lib/@types/PermissionAttr.d.ts +12 -0
- package/lib/@types/PointerEvents.d.ts +1 -0
- package/lib/@types/Position.d.ts +1 -0
- package/lib/@types/PositionAlert.d.ts +1 -0
- package/lib/@types/Size.d.ts +1 -0
- package/lib/@types/SizePixels.d.ts +1 -0
- package/lib/@types/StorageMock.d.ts +3 -0
- package/lib/alerts/AlertContainer.d.ts +12 -0
- package/lib/alerts/AlertContainer.js +70 -0
- package/lib/alerts/AlertProvider.d.ts +3 -0
- package/lib/alerts/AlertProvider.js +46 -0
- package/lib/alerts/BaseAlert.d.ts +3 -0
- package/lib/alerts/BaseAlert.js +20 -0
- package/lib/alerts/Message.d.ts +3 -0
- package/lib/alerts/Message.js +94 -0
- package/lib/alerts/alert.spec.d.ts +0 -0
- package/lib/alerts/helpers.d.ts +3 -0
- package/lib/alerts/helpers.js +5 -0
- package/lib/alerts/index.d.ts +4 -0
- package/lib/alerts/index.js +6 -0
- package/lib/alerts/types.d.ts +47 -0
- package/lib/alerts/withAlert.d.ts +4 -0
- package/lib/alerts/withAlert.js +14 -0
- package/lib/assets/BaseAlert.css +1 -0
- package/lib/assets/Content.css +1 -0
- package/lib/assets/DefaultFile.css +1 -0
- package/lib/assets/Drawer.css +1 -0
- package/lib/assets/InputTextBase.css +1 -0
- package/lib/assets/button.css +1 -0
- package/lib/assets/gridlayout.css +1 -0
- package/lib/assets/index.css +1 -0
- package/lib/assets/index10.css +1 -0
- package/lib/assets/index11.css +1 -0
- package/lib/assets/index12.css +1 -0
- package/lib/assets/index13.css +1 -0
- package/lib/assets/index14.css +1 -0
- package/lib/assets/index15.css +1 -0
- package/lib/assets/index16.css +1 -0
- package/lib/assets/index17.css +1 -0
- package/lib/assets/index18.css +1 -0
- package/lib/assets/index19.css +1 -0
- package/lib/assets/index2.css +1 -0
- package/lib/assets/index20.css +1 -0
- package/lib/assets/index21.css +1 -0
- package/lib/assets/index22.css +1 -0
- package/lib/assets/index23.css +1 -0
- package/lib/assets/index24.css +1 -0
- package/lib/assets/index25.css +1 -0
- package/lib/assets/index26.css +1 -0
- package/lib/assets/index27.css +1 -0
- package/lib/assets/index28.css +1 -0
- package/lib/assets/index3.css +1 -0
- package/lib/assets/index4.css +1 -0
- package/lib/assets/index5.css +1 -0
- package/lib/assets/index6.css +1 -0
- package/lib/assets/index7.css +1 -0
- package/lib/assets/index8.css +1 -0
- package/lib/assets/index9.css +1 -0
- package/lib/assets/label.css +1 -0
- package/lib/assets/noPermission.css +1 -0
- package/lib/assets/panel.css +1 -0
- package/lib/assets/progressbar.css +1 -0
- package/lib/assets/radio.css +1 -0
- package/lib/assets/skeleton.css +1 -0
- package/lib/assets/table.css +1 -0
- package/lib/assets/tabs.css +1 -0
- package/lib/assets/toolbar.css +1 -0
- package/lib/assets/withDropdown.css +1 -0
- package/lib/avatar/avatar.spec.d.ts +1 -0
- package/lib/avatar/index.d.ts +6 -0
- package/lib/avatar/index.js +55 -0
- package/lib/avatar/types.d.ts +27 -0
- package/lib/badge/badge.spec.d.ts +1 -0
- package/lib/badge/index.d.ts +3 -0
- package/lib/badge/index.js +28 -0
- package/lib/badge/types.d.ts +10 -0
- package/lib/buttons/ActivateButton.d.ts +3 -0
- package/lib/buttons/ActivateButton.js +11 -0
- package/lib/buttons/AddButton.d.ts +3 -0
- package/lib/buttons/AddButton.js +14 -0
- package/lib/buttons/Button.d.ts +6 -0
- package/lib/buttons/Button.js +19 -0
- package/lib/buttons/ButtonGroups.d.ts +6 -0
- package/lib/buttons/ButtonGroups.js +12 -0
- package/lib/buttons/CancelButton.d.ts +3 -0
- package/lib/buttons/CancelButton.js +16 -0
- package/lib/buttons/DangerButton.d.ts +3 -0
- package/lib/buttons/DangerButton.js +17 -0
- package/lib/buttons/DefaultButton.d.ts +6 -0
- package/lib/buttons/DefaultButton.js +95 -0
- package/lib/buttons/DestroyButton.d.ts +3 -0
- package/lib/buttons/DestroyButton.js +23 -0
- package/lib/buttons/EditButton.d.ts +3 -0
- package/lib/buttons/EditButton.js +11 -0
- package/lib/buttons/InactivateButton.d.ts +3 -0
- package/lib/buttons/InactivateButton.js +11 -0
- package/lib/buttons/InfoButton.d.ts +3 -0
- package/lib/buttons/InfoButton.js +17 -0
- package/lib/buttons/PrimaryButton.d.ts +3 -0
- package/lib/buttons/PrimaryButton.js +17 -0
- package/lib/buttons/RestoreButton.d.ts +3 -0
- package/lib/buttons/RestoreButton.js +11 -0
- package/lib/buttons/SaveButton.d.ts +3 -0
- package/lib/buttons/SaveButton.js +16 -0
- package/lib/buttons/SuccessButton.d.ts +3 -0
- package/lib/buttons/SuccessButton.js +17 -0
- package/lib/buttons/WarningButton.d.ts +3 -0
- package/lib/buttons/WarningButton.js +17 -0
- package/lib/buttons/button_container/index.d.ts +10 -0
- package/lib/buttons/button_container/index.js +23 -0
- package/lib/buttons/buttons.spec.d.ts +0 -0
- package/lib/buttons/index.d.ts +17 -0
- package/lib/buttons/index.js +33 -0
- package/lib/buttons/split_button/index.d.ts +3 -0
- package/lib/buttons/split_button/index.js +58 -0
- package/lib/buttons/types.d.ts +46 -0
- package/lib/calendar/DangerCalendar.d.ts +3 -0
- package/lib/calendar/DangerCalendar.js +20 -0
- package/lib/calendar/InfoCalendar.d.ts +3 -0
- package/lib/calendar/InfoCalendar.js +20 -0
- package/lib/calendar/PrimaryCalendar.d.ts +3 -0
- package/lib/calendar/PrimaryCalendar.js +20 -0
- package/lib/calendar/SuccessCalendar.d.ts +3 -0
- package/lib/calendar/SuccessCalendar.js +20 -0
- package/lib/calendar/WarningCalendar.d.ts +3 -0
- package/lib/calendar/WarningCalendar.js +20 -0
- package/lib/calendar/base/Day.d.ts +3 -0
- package/lib/calendar/base/Day.js +37 -0
- package/lib/calendar/base/Month.d.ts +3 -0
- package/lib/calendar/base/Month.js +28 -0
- package/lib/calendar/base/Week.d.ts +3 -0
- package/lib/calendar/base/Week.js +24 -0
- package/lib/calendar/base/helpers.d.ts +59 -0
- package/lib/calendar/base/helpers.js +100 -0
- package/lib/calendar/base/index.d.ts +3 -0
- package/lib/calendar/base/index.js +137 -0
- package/lib/calendar/calendar.spec.d.ts +0 -0
- package/lib/calendar/index.d.ts +8 -0
- package/lib/calendar/index.js +14 -0
- package/lib/calendar/types.d.ts +27 -0
- package/lib/checkbox/checkbox.spec.d.ts +1 -0
- package/lib/checkbox/index.d.ts +9 -0
- package/lib/checkbox/index.js +32 -0
- package/lib/checkbox/types.d.ts +45 -0
- package/lib/chunks/compiler-runtime.Cu50tn6L.js +54 -0
- package/lib/chunks/index.Df3kt2LQ.js +667 -0
- package/lib/chunks/index.aw0XaUkg.js +266 -0
- package/lib/chunks/jsx-runtime.D1SHvdVE.js +282 -0
- package/lib/chunks/lodash.CIAK_hAg.js +3684 -0
- package/lib/chunks/moment.DMLRxgRE.js +2589 -0
- package/lib/chunks/tabs.BvKfeA6Y.js +244 -0
- package/lib/chunks/v1.Ds1rkxUj.js +49 -0
- package/lib/dialog/Alert.d.ts +3 -0
- package/lib/dialog/Alert.js +24 -0
- package/lib/dialog/Custom.d.ts +3 -0
- package/lib/dialog/Custom.js +47 -0
- package/lib/dialog/Error.d.ts +3 -0
- package/lib/dialog/Error.js +24 -0
- package/lib/dialog/Information.d.ts +3 -0
- package/lib/dialog/Information.js +24 -0
- package/lib/dialog/Question.d.ts +3 -0
- package/lib/dialog/Question.js +47 -0
- package/lib/dialog/Warning.d.ts +3 -0
- package/lib/dialog/Warning.js +24 -0
- package/lib/dialog/base/Content.d.ts +3 -0
- package/lib/dialog/base/Content.js +15 -0
- package/lib/dialog/base/Footer.d.ts +3 -0
- package/lib/dialog/base/Footer.js +10 -0
- package/lib/dialog/base/Header.d.ts +3 -0
- package/lib/dialog/base/Header.js +8 -0
- package/lib/dialog/base/index.d.ts +10 -0
- package/lib/dialog/base/index.js +10 -0
- package/lib/dialog/base/style.d.ts +7 -0
- package/lib/dialog/dialog.spec.d.ts +0 -0
- package/lib/dialog/form/index.d.ts +5 -0
- package/lib/dialog/form/index.js +16 -0
- package/lib/dialog/index.d.ts +9 -0
- package/lib/dialog/index.js +16 -0
- package/lib/dialog/types.d.ts +107 -0
- package/lib/dialog/wizard/index.d.ts +9 -0
- package/lib/dialog/wizard/index.js +15 -0
- package/lib/dialog/wizard/progressbar.d.ts +11 -0
- package/lib/dialog/wizard/progressbar.js +98 -0
- package/lib/dialog/wizard/step.d.ts +2 -0
- package/lib/dialog/wizard/step.js +6 -0
- package/lib/dialog/wizard/useWizard.d.ts +2 -0
- package/lib/dialog/wizard/useWizard.js +45 -0
- package/lib/dialog/wizard/wizard.spec.d.ts +0 -0
- package/lib/drawer/Content.d.ts +3 -0
- package/lib/drawer/Content.js +18 -0
- package/lib/drawer/Drawer.d.ts +4 -0
- package/lib/drawer/Drawer.js +75 -0
- package/lib/drawer/Drawer.spec.d.ts +1 -0
- package/lib/drawer/Header.d.ts +3 -0
- package/lib/drawer/Header.js +56 -0
- package/lib/drawer/helpers.d.ts +4 -0
- package/lib/drawer/helpers.js +5 -0
- package/lib/drawer/index.d.ts +5 -0
- package/lib/drawer/index.js +10 -0
- package/lib/drawer/types.d.ts +37 -0
- package/lib/dropdown/Popup.d.ts +3 -0
- package/lib/dropdown/Popup.js +51 -0
- package/lib/dropdown/dropdown.spec.d.ts +1 -0
- package/lib/dropdown/helper.d.ts +2 -0
- package/lib/dropdown/helper.js +8 -0
- package/lib/dropdown/types.d.ts +45 -0
- package/lib/dropdown/withDropdown.d.ts +9 -0
- package/lib/dropdown/withDropdown.js +80 -0
- package/lib/fieldset/fieldset.spec.d.ts +1 -0
- package/lib/fieldset/index.d.ts +3 -0
- package/lib/fieldset/index.js +70 -0
- package/lib/fieldset/types.d.ts +27 -0
- package/lib/form/Field.d.ts +2 -0
- package/lib/form/Field.js +98 -0
- package/lib/form/FieldArray.d.ts +2 -0
- package/lib/form/FieldArray.js +68 -0
- package/lib/form/FieldNumber.d.ts +2 -0
- package/lib/form/FieldNumber.js +48 -0
- package/lib/form/FieldPeriod.d.ts +2 -0
- package/lib/form/FieldPeriod.js +95 -0
- package/lib/form/form.spec.d.ts +0 -0
- package/lib/form/helpers.d.ts +8 -0
- package/lib/form/helpers.js +28 -0
- package/lib/form/index.d.ts +8 -0
- package/lib/form/index.js +150 -0
- package/lib/form/types.d.ts +233 -0
- package/lib/form/withFieldHOC.d.ts +4 -0
- package/lib/form/withFieldHOC.js +62 -0
- package/lib/form/withFormSecurity.d.ts +6 -0
- package/lib/form/withFormSecurity.js +30 -0
- package/lib/gridlayout/GridCol.d.ts +3 -0
- package/lib/gridlayout/GridCol.js +27 -0
- package/lib/gridlayout/GridRow.d.ts +3 -0
- package/lib/gridlayout/GridRow.js +26 -0
- package/lib/gridlayout/gridLayout.spec.d.ts +1 -0
- package/lib/gridlayout/index.d.ts +4 -0
- package/lib/gridlayout/index.js +6 -0
- package/lib/gridlayout/types.d.ts +17 -0
- package/lib/hint/helpers.d.ts +1 -0
- package/lib/hint/helpers.js +12 -0
- package/lib/hint/hint.spec.d.ts +1 -0
- package/lib/hint/index.d.ts +3 -0
- package/lib/hint/index.js +30 -0
- package/lib/hint/types.d.ts +11 -0
- package/lib/icons/helper.d.ts +635 -0
- package/lib/icons/helper.js +637 -0
- package/lib/icons/icons.spec.d.ts +1 -0
- package/lib/icons/index.d.ts +6 -0
- package/lib/icons/index.js +66 -0
- package/lib/icons/types.d.ts +46 -0
- package/lib/index.d.ts +10 -0
- package/lib/index.js +28 -0
- package/lib/inputs/base/InputTextBase.d.ts +3 -0
- package/lib/inputs/base/InputTextBase.js +183 -0
- package/lib/inputs/base/Label.d.ts +6 -0
- package/lib/inputs/base/Label.js +30 -0
- package/lib/inputs/base/base.spec.d.ts +1 -0
- package/lib/inputs/base/helpers.d.ts +10 -0
- package/lib/inputs/base/helpers.js +30 -0
- package/lib/inputs/base/types.d.ts +98 -0
- package/lib/inputs/color/color_input.spec.d.ts +0 -0
- package/lib/inputs/color/index.d.ts +3 -0
- package/lib/inputs/color/index.js +57 -0
- package/lib/inputs/color/types.d.ts +16 -0
- package/lib/inputs/date/Dialog.d.ts +3 -0
- package/lib/inputs/date/Dialog.js +17 -0
- package/lib/inputs/date/Dropdown.d.ts +3 -0
- package/lib/inputs/date/Dropdown.js +19 -0
- package/lib/inputs/date/date.spec.d.ts +1 -0
- package/lib/inputs/date/helpers.d.ts +5 -0
- package/lib/inputs/date/helpers.js +10 -0
- package/lib/inputs/date/index.d.ts +3 -0
- package/lib/inputs/date/index.js +136 -0
- package/lib/inputs/date/types.d.ts +56 -0
- package/lib/inputs/errorMessage/error.spec.d.ts +1 -0
- package/lib/inputs/errorMessage/index.d.ts +4 -0
- package/lib/inputs/errorMessage/index.js +24 -0
- package/lib/inputs/file/DefaultFile.d.ts +3 -0
- package/lib/inputs/file/DefaultFile.js +68 -0
- package/lib/inputs/file/DragDropFile.d.ts +3 -0
- package/lib/inputs/file/DragDropFile.js +135 -0
- package/lib/inputs/file/File.d.ts +3 -0
- package/lib/inputs/file/File.js +31 -0
- package/lib/inputs/file/FileButtonSettings.d.ts +3 -0
- package/lib/inputs/file/FileButtonSettings.js +24 -0
- package/lib/inputs/file/filefield.spec.d.ts +1 -0
- package/lib/inputs/file/helpers.d.ts +2 -0
- package/lib/inputs/file/helpers.js +11 -0
- package/lib/inputs/file/index.d.ts +5 -0
- package/lib/inputs/file/index.js +8 -0
- package/lib/inputs/file/types.d.ts +49 -0
- package/lib/inputs/inputHOC.d.ts +4 -0
- package/lib/inputs/inputHOC.js +42 -0
- package/lib/inputs/mask/BaseMask.d.ts +3 -0
- package/lib/inputs/mask/BaseMask.js +2672 -0
- package/lib/inputs/mask/Cnpj.d.ts +6 -0
- package/lib/inputs/mask/Cnpj.js +46 -0
- package/lib/inputs/mask/Cpf.d.ts +6 -0
- package/lib/inputs/mask/Cpf.js +48 -0
- package/lib/inputs/mask/Phone.d.ts +3 -0
- package/lib/inputs/mask/Phone.js +13 -0
- package/lib/inputs/mask/ZipCode.d.ts +3 -0
- package/lib/inputs/mask/ZipCode.js +11 -0
- package/lib/inputs/mask/helpers.d.ts +52 -0
- package/lib/inputs/mask/helpers.js +63 -0
- package/lib/inputs/mask/index.d.ts +7 -0
- package/lib/inputs/mask/index.js +12 -0
- package/lib/inputs/mask/input_mask.spec.d.ts +0 -0
- package/lib/inputs/mask/types.d.ts +73 -0
- package/lib/inputs/multiSelect/ActionButtons.d.ts +3 -0
- package/lib/inputs/multiSelect/ActionButtons.js +39 -0
- package/lib/inputs/multiSelect/Dropdown.d.ts +3 -0
- package/lib/inputs/multiSelect/Dropdown.js +98 -0
- package/lib/inputs/multiSelect/helper.d.ts +3 -0
- package/lib/inputs/multiSelect/helper.js +8 -0
- package/lib/inputs/multiSelect/index.d.ts +3 -0
- package/lib/inputs/multiSelect/index.js +180 -0
- package/lib/inputs/multiSelect/multiSelect.spec.d.ts +1 -0
- package/lib/inputs/multiSelect/types.d.ts +57 -0
- package/lib/inputs/number/BaseNumber.d.ts +3 -0
- package/lib/inputs/number/BaseNumber.js +59 -0
- package/lib/inputs/number/Currency.d.ts +3 -0
- package/lib/inputs/number/Currency.js +22 -0
- package/lib/inputs/number/Decimal.d.ts +3 -0
- package/lib/inputs/number/Decimal.js +11 -0
- package/lib/inputs/number/format_number.d.ts +3 -0
- package/lib/inputs/number/format_number.js +9 -0
- package/lib/inputs/number/index.d.ts +6 -0
- package/lib/inputs/number/index.js +34 -0
- package/lib/inputs/number/numberfield.spec.d.ts +1 -0
- package/lib/inputs/number/types.d.ts +28 -0
- package/lib/inputs/period/Dialog.d.ts +3 -0
- package/lib/inputs/period/Dialog.js +18 -0
- package/lib/inputs/period/Dropdown.d.ts +3 -0
- package/lib/inputs/period/Dropdown.js +18 -0
- package/lib/inputs/period/PeriodList.d.ts +3 -0
- package/lib/inputs/period/PeriodList.js +43 -0
- package/lib/inputs/period/helper.d.ts +11 -0
- package/lib/inputs/period/helper.js +39 -0
- package/lib/inputs/period/index.d.ts +3 -0
- package/lib/inputs/period/index.js +213 -0
- package/lib/inputs/period/types.d.ts +69 -0
- package/lib/inputs/search/index.d.ts +3 -0
- package/lib/inputs/search/index.js +104 -0
- package/lib/inputs/search/search_input.spec.d.ts +1 -0
- package/lib/inputs/select/ActionButtons.d.ts +3 -0
- package/lib/inputs/select/ActionButtons.js +28 -0
- package/lib/inputs/select/Dropdown.d.ts +3 -0
- package/lib/inputs/select/Dropdown.js +70 -0
- package/lib/inputs/select/helper.d.ts +11 -0
- package/lib/inputs/select/helper.js +48 -0
- package/lib/inputs/select/index.d.ts +3 -0
- package/lib/inputs/select/index.js +27 -0
- package/lib/inputs/select/multiple/Selecteds.d.ts +3 -0
- package/lib/inputs/select/multiple/Selecteds.js +25 -0
- package/lib/inputs/select/multiple/index.d.ts +3 -0
- package/lib/inputs/select/multiple/index.js +126 -0
- package/lib/inputs/select/select.spec.d.ts +1 -0
- package/lib/inputs/select/simple/index.d.ts +3 -0
- package/lib/inputs/select/simple/index.js +156 -0
- package/lib/inputs/select/types.d.ts +117 -0
- package/lib/inputs/text/index.d.ts +3 -0
- package/lib/inputs/text/index.js +11 -0
- package/lib/inputs/text/textfield.spec.d.ts +1 -0
- package/lib/inputs/text/types.d.ts +21 -0
- package/lib/inputs/textarea/index.d.ts +3 -0
- package/lib/inputs/textarea/index.js +16 -0
- package/lib/inputs/textarea/textarea.spec.d.ts +1 -0
- package/lib/inputs/textarea/types.d.ts +7 -0
- package/lib/inputs/types.d.ts +151 -0
- package/lib/internals/colorStyles.d.ts +8 -0
- package/lib/internals/colorStyles.js +10 -0
- package/lib/internals/constants.d.ts +9 -0
- package/lib/internals/constants.js +12 -0
- package/lib/internals/types.d.ts +22 -0
- package/lib/internals/withTooltip.d.ts +8 -0
- package/lib/internals/withTooltip.js +122 -0
- package/lib/labelMessages/index.d.ts +3 -0
- package/lib/labelMessages/index.js +53 -0
- package/lib/labelMessages/labelMessages.spec.d.ts +1 -0
- package/lib/labelMessages/types.d.ts +16 -0
- package/lib/labels/DangerLabel.d.ts +3 -0
- package/lib/labels/DangerLabel.js +20 -0
- package/lib/labels/DefaultLabel.d.ts +6 -0
- package/lib/labels/DefaultLabel.js +55 -0
- package/lib/labels/InfoLabel.d.ts +3 -0
- package/lib/labels/InfoLabel.js +20 -0
- package/lib/labels/PrimaryLabel.d.ts +3 -0
- package/lib/labels/PrimaryLabel.js +20 -0
- package/lib/labels/SuccessLabel.d.ts +3 -0
- package/lib/labels/SuccessLabel.js +20 -0
- package/lib/labels/WarningLabel.d.ts +3 -0
- package/lib/labels/WarningLabel.js +20 -0
- package/lib/labels/index.d.ts +9 -0
- package/lib/labels/index.js +17 -0
- package/lib/labels/label.spec.d.ts +1 -0
- package/lib/labels/label_container/index.d.ts +10 -0
- package/lib/labels/label_container/index.js +18 -0
- package/lib/labels/types.d.ts +22 -0
- package/lib/list/Header.d.ts +3 -0
- package/lib/list/Header.js +20 -0
- package/lib/list/Item.d.ts +6 -0
- package/lib/list/Item.js +14 -0
- package/lib/list/Separator.d.ts +2 -0
- package/lib/list/Separator.js +10 -0
- package/lib/list/helpers.d.ts +9 -0
- package/lib/list/helpers.js +10 -0
- package/lib/list/index.d.ts +7 -0
- package/lib/list/index.js +104 -0
- package/lib/list/list.spec.d.ts +1 -0
- package/lib/list/types.d.ts +69 -0
- package/lib/menus/float/MenuItem.d.ts +3 -0
- package/lib/menus/float/MenuItem.js +55 -0
- package/lib/menus/float/SubMenuContainer.d.ts +29 -0
- package/lib/menus/float/float-menu.spec.d.ts +0 -0
- package/lib/menus/float/helpers.d.ts +4 -0
- package/lib/menus/float/helpers.js +5 -0
- package/lib/menus/float/index.d.ts +6 -0
- package/lib/menus/float/index.js +113 -0
- package/lib/menus/float/types.d.ts +26 -0
- package/lib/menus/index.d.ts +2 -0
- package/lib/menus/index.js +4 -0
- package/lib/menus/sidenav/ExpandMenu.d.ts +3 -0
- package/lib/menus/sidenav/ExpandMenu.js +19 -0
- package/lib/menus/sidenav/MenuLink.d.ts +6 -0
- package/lib/menus/sidenav/MenuLink.js +24 -0
- package/lib/menus/sidenav/NavMenuGroup.d.ts +3 -0
- package/lib/menus/sidenav/NavMenuGroup.js +22 -0
- package/lib/menus/sidenav/NavMenuItem.d.ts +6 -0
- package/lib/menus/sidenav/NavMenuItem.js +136 -0
- package/lib/menus/sidenav/NavSubMenuItem.d.ts +3 -0
- package/lib/menus/sidenav/NavSubMenuItem.js +39 -0
- package/lib/menus/sidenav/helpers.d.ts +6 -0
- package/lib/menus/sidenav/helpers.js +10 -0
- package/lib/menus/sidenav/index.d.ts +8 -0
- package/lib/menus/sidenav/index.js +150 -0
- package/lib/menus/sidenav/popup_menu_search/EmptyList.d.ts +3 -0
- package/lib/menus/sidenav/popup_menu_search/EmptyList.js +23 -0
- package/lib/menus/sidenav/popup_menu_search/index.d.ts +4 -0
- package/lib/menus/sidenav/popup_menu_search/index.js +56 -0
- package/lib/menus/sidenav/sidenav.spec.d.ts +1 -0
- package/lib/menus/sidenav/types.d.ts +85 -0
- package/lib/noPermission/index.d.ts +2 -0
- package/lib/noPermission/index.js +16 -0
- package/lib/panel/Content.d.ts +3 -0
- package/lib/panel/Content.js +55 -0
- package/lib/panel/DangerPanel.d.ts +3 -0
- package/lib/panel/DangerPanel.js +12 -0
- package/lib/panel/Default.d.ts +3 -0
- package/lib/panel/Default.js +68 -0
- package/lib/panel/Header.d.ts +3 -0
- package/lib/panel/Header.js +58 -0
- package/lib/panel/InfoPanel.d.ts +3 -0
- package/lib/panel/InfoPanel.js +12 -0
- package/lib/panel/PrimaryPanel.d.ts +3 -0
- package/lib/panel/PrimaryPanel.js +12 -0
- package/lib/panel/SuccessPanel.d.ts +3 -0
- package/lib/panel/SuccessPanel.js +12 -0
- package/lib/panel/ToolBar.d.ts +3 -0
- package/lib/panel/ToolBar.js +19 -0
- package/lib/panel/WarningPanel.d.ts +3 -0
- package/lib/panel/WarningPanel.js +12 -0
- package/lib/panel/helpers.d.ts +5 -0
- package/lib/panel/helpers.js +15 -0
- package/lib/panel/index.d.ts +10 -0
- package/lib/panel/index.js +19 -0
- package/lib/panel/panel.spec.d.ts +0 -0
- package/lib/panel/types.d.ts +43 -0
- package/lib/permissionValidations.d.ts +12 -0
- package/lib/permissionValidations.js +46 -0
- package/lib/popover/PopoverText.d.ts +4 -0
- package/lib/popover/PopoverText.js +14 -0
- package/lib/popover/PopoverTitle.d.ts +3 -0
- package/lib/popover/PopoverTitle.js +12 -0
- package/lib/popover/index.d.ts +6 -0
- package/lib/popover/index.js +39 -0
- package/lib/popover/popover.spec.d.ts +1 -0
- package/lib/popover/types.d.ts +31 -0
- package/lib/progress/Bar.d.ts +3 -0
- package/lib/progress/Bar.js +51 -0
- package/lib/progress/index.d.ts +5 -0
- package/lib/progress/index.js +26 -0
- package/lib/progress/progress.spec.d.ts +1 -0
- package/lib/progress/types.d.ts +34 -0
- package/lib/radio/index.d.ts +8 -0
- package/lib/radio/index.js +112 -0
- package/lib/radio/radio.spec.d.ts +1 -0
- package/lib/radio/types.d.ts +25 -0
- package/lib/shortcuts/index.d.ts +3 -0
- package/lib/shortcuts/index.js +22 -0
- package/lib/shortcuts/shortcuts.spec.d.ts +0 -0
- package/lib/shortcuts/types.d.ts +9 -0
- package/lib/skeleton/SkeletonContainer.d.ts +3 -0
- package/lib/skeleton/SkeletonContainer.js +19 -0
- package/lib/skeleton/index.d.ts +5 -0
- package/lib/skeleton/index.js +49 -0
- package/lib/skeleton/types.d.ts +18 -0
- package/lib/spinner/SpinnerLoading.d.ts +3 -0
- package/lib/spinner/SpinnerLoading.js +55 -0
- package/lib/spinner/index.d.ts +3 -0
- package/lib/spinner/index.js +51 -0
- package/lib/spinner/spinner.spec.d.ts +1 -0
- package/lib/spinner/types.d.ts +17 -0
- package/lib/split/Split.d.ts +3 -0
- package/lib/split/Split.js +193 -0
- package/lib/split/SplitSide.d.ts +3 -0
- package/lib/split/SplitSide.js +27 -0
- package/lib/split/helpers.d.ts +8 -0
- package/lib/split/helpers.js +5 -0
- package/lib/split/index.d.ts +4 -0
- package/lib/split/index.js +6 -0
- package/lib/split/split.spec.d.ts +0 -0
- package/lib/split/types.d.ts +31 -0
- package/lib/table/Body.d.ts +3 -0
- package/lib/table/Body.js +46 -0
- package/lib/table/Header.d.ts +3 -0
- package/lib/table/Header.js +52 -0
- package/lib/table/HeaderColumn.d.ts +3 -0
- package/lib/table/HeaderColumn.js +43 -0
- package/lib/table/Row.d.ts +3 -0
- package/lib/table/Row.js +53 -0
- package/lib/table/RowColumn.d.ts +3 -0
- package/lib/table/RowColumn.js +58 -0
- package/lib/table/helpers.d.ts +7 -0
- package/lib/table/helpers.js +9 -0
- package/lib/table/index.d.ts +9 -0
- package/lib/table/index.js +106 -0
- package/lib/table/table.spec.d.ts +1 -0
- package/lib/table/types.d.ts +94 -0
- package/lib/tabs/DropdownTabs.d.ts +3 -0
- package/lib/tabs/DropdownTabs.js +84 -0
- package/lib/tabs/Menu.d.ts +3 -0
- package/lib/tabs/Menu.js +38 -0
- package/lib/tabs/MenuTabs.d.ts +4 -0
- package/lib/tabs/MenuTabs.js +64 -0
- package/lib/tabs/Panel.d.ts +3 -0
- package/lib/tabs/Panel.js +62 -0
- package/lib/tabs/context.d.ts +4 -0
- package/lib/tabs/context.js +64 -0
- package/lib/tabs/index.d.ts +5 -0
- package/lib/tabs/index.js +73 -0
- package/lib/tabs/tabHelpers.d.ts +9 -0
- package/lib/tabs/tabHelpers.js +48 -0
- package/lib/tabs/tabs.spec.d.ts +0 -0
- package/lib/tabs/types.d.ts +95 -0
- package/lib/tabs/useTabs.d.ts +1 -0
- package/lib/tabs/useTabs.js +8 -0
- package/lib/textContent/index.d.ts +18 -0
- package/lib/textContent/index.js +33 -0
- package/lib/textContent/textContent.spec.d.ts +1 -0
- package/lib/toolbar/ButtonBar.d.ts +3 -0
- package/lib/toolbar/ButtonBar.js +67 -0
- package/lib/toolbar/LabelBar.d.ts +3 -0
- package/lib/toolbar/LabelBar.js +51 -0
- package/lib/toolbar/Separator.d.ts +2 -0
- package/lib/toolbar/Separator.js +10 -0
- package/lib/toolbar/ToolBarGroup.d.ts +3 -0
- package/lib/toolbar/ToolBarGroup.js +16 -0
- package/lib/toolbar/helpers.d.ts +3 -0
- package/lib/toolbar/helpers.js +5 -0
- package/lib/toolbar/index.d.ts +8 -0
- package/lib/toolbar/index.js +39 -0
- package/lib/toolbar/toolbar.spec.d.ts +1 -0
- package/lib/toolbar/types.d.ts +43 -0
- package/lib/tooltip/index.d.ts +4 -0
- package/lib/tooltip/index.js +39 -0
- package/lib/tooltip/tooltip.spec.d.ts +1 -0
- package/lib/tooltip/types.d.ts +15 -0
- package/lib/treetable/Body.d.ts +2 -0
- package/lib/treetable/Body.js +34 -0
- package/lib/treetable/Header.d.ts +2 -0
- package/lib/treetable/Header.js +30 -0
- package/lib/treetable/Row.d.ts +3 -0
- package/lib/treetable/Row.js +220 -0
- package/lib/treetable/helpers.d.ts +13 -0
- package/lib/treetable/helpers.js +17 -0
- package/lib/treetable/index.d.ts +4 -0
- package/lib/treetable/index.js +28 -0
- package/lib/treeview/Header.d.ts +3 -0
- package/lib/treeview/Header.js +16 -0
- package/lib/treeview/Node.d.ts +3 -0
- package/lib/treeview/Node.js +206 -0
- package/lib/treeview/constants.d.ts +3 -0
- package/lib/treeview/constants.js +5 -0
- package/lib/treeview/index.d.ts +6 -0
- package/lib/treeview/index.js +268 -0
- package/lib/treeview/treeview.spec.d.ts +0 -0
- package/lib/treeview/types.d.ts +106 -0
- package/lib/uitour/helpers.d.ts +7 -0
- package/lib/uitour/helpers.js +9 -0
- package/lib/uitour/index.d.ts +4 -0
- package/lib/uitour/index.js +187 -0
- package/lib/uitour/types.d.ts +35 -0
- package/lib/uitour/uitour.spec.d.ts +0 -0
- package/package.json +1 -1
|
@@ -0,0 +1,244 @@
|
|
|
1
|
+
import { j as o } from "./jsx-runtime.D1SHvdVE.js";
|
|
2
|
+
import { forwardRef as we, useState as je, useRef as Ee, useImperativeHandle as $e, useEffect as Ie, useContext as Ce, createElement as Te } from "react";
|
|
3
|
+
import { c as Re } from "./compiler-runtime.Cu50tn6L.js";
|
|
4
|
+
import { useNavigate as Oe, Link as Pe } from "react-router-dom";
|
|
5
|
+
import ae from "../icons/index.js";
|
|
6
|
+
import '../assets/radio.css';import '../assets/skeleton.css';import '../assets/toolbar.css';import '../assets/label.css';import '../assets/panel.css';import '../assets/noPermission.css';import '../assets/button.css';import '../assets/gridlayout.css';import '../assets/tabs.css';/* empty css */
|
|
7
|
+
import Se from "../gridlayout/GridCol.js";
|
|
8
|
+
import { actionsOnPermissionDenied as Ne, OPTIONS_ON_DENIED as de } from "../permissionValidations.js";
|
|
9
|
+
import { ErrorMessage as Le } from "../inputs/errorMessage/index.js";
|
|
10
|
+
import "../buttons/DefaultButton.js";
|
|
11
|
+
/* empty css */
|
|
12
|
+
import "../panel/helpers.js";
|
|
13
|
+
/* empty css */
|
|
14
|
+
/* empty css */
|
|
15
|
+
import "../toolbar/helpers.js";
|
|
16
|
+
import "../labels/DefaultLabel.js";
|
|
17
|
+
/* empty css */
|
|
18
|
+
/* empty css */
|
|
19
|
+
import { ListContext as _e } from "../list/helpers.js";
|
|
20
|
+
import { WithDropdownContext as Be } from "../dropdown/withDropdown.js";
|
|
21
|
+
import { keyCodes as Ae } from "../internals/constants.js";
|
|
22
|
+
import He, { TooltipContext as Ke } from "../internals/withTooltip.js";
|
|
23
|
+
/* empty css */
|
|
24
|
+
/* empty css */
|
|
25
|
+
import ze from "../popover/index.js";
|
|
26
|
+
import ge from "../textContent/index.js";
|
|
27
|
+
import "../tabs/MenuTabs.js";
|
|
28
|
+
import "./lodash.CIAK_hAg.js";
|
|
29
|
+
import "../tabs/context.js";
|
|
30
|
+
import "../tabs/tabHelpers.js";
|
|
31
|
+
import "./index.aw0XaUkg.js";
|
|
32
|
+
import Fe from "../hint/index.js";
|
|
33
|
+
const ye = we(({
|
|
34
|
+
name: G,
|
|
35
|
+
required: e,
|
|
36
|
+
value: r,
|
|
37
|
+
label: c,
|
|
38
|
+
onChange: p,
|
|
39
|
+
autofocus: l,
|
|
40
|
+
hint: i,
|
|
41
|
+
id: a = void 0,
|
|
42
|
+
gridLayout: A,
|
|
43
|
+
checked: g = !1,
|
|
44
|
+
disabled: f,
|
|
45
|
+
permissionAttr: b,
|
|
46
|
+
tooltip: N,
|
|
47
|
+
tooltipPosition: y = "top",
|
|
48
|
+
tooltipWidth: M = "auto",
|
|
49
|
+
skeletonize: v,
|
|
50
|
+
targetRef: D,
|
|
51
|
+
errorMessages: w,
|
|
52
|
+
customClassForLabel: H,
|
|
53
|
+
hintPosition: K = "below",
|
|
54
|
+
themePopover: W = "light",
|
|
55
|
+
popoverAlign: z = "left"
|
|
56
|
+
}, F) => {
|
|
57
|
+
const [d, u] = je(g), J = [de.disabled, de.unvisible], [Q] = je(Ne(J, b)), t = Ee(null);
|
|
58
|
+
$e(F, () => t.current, [t.current]), Ie(() => {
|
|
59
|
+
u(g);
|
|
60
|
+
}, [g]);
|
|
61
|
+
const k = () => f || Q.disabled, me = () => {
|
|
62
|
+
if (k()) return null;
|
|
63
|
+
const C = {
|
|
64
|
+
checked: !d,
|
|
65
|
+
id: a,
|
|
66
|
+
name: G,
|
|
67
|
+
value: !d
|
|
68
|
+
};
|
|
69
|
+
return {
|
|
70
|
+
onClick: () => {
|
|
71
|
+
!k() && !v && (u(!d), p?.({
|
|
72
|
+
target: C
|
|
73
|
+
}));
|
|
74
|
+
},
|
|
75
|
+
onKeyDown: void 0,
|
|
76
|
+
role: "checkbox",
|
|
77
|
+
tabIndex: -1
|
|
78
|
+
};
|
|
79
|
+
}, E = () => /* @__PURE__ */ o.jsxs("div", { children: [
|
|
80
|
+
/* @__PURE__ */ o.jsxs("div", { "data-skeletonized": v, className: "checkbox-component", style: {
|
|
81
|
+
display: "flex",
|
|
82
|
+
alignItems: "center"
|
|
83
|
+
}, children: [
|
|
84
|
+
/* @__PURE__ */ o.jsxs("span", { "data-testid": "checkbox-container", className: "inputcontent", "aria-checked": d, ...me(), children: [
|
|
85
|
+
/* @__PURE__ */ o.jsx("input", { id: a || void 0, ref: (C) => {
|
|
86
|
+
D && D(C), t.current = C;
|
|
87
|
+
}, className: "input", type: "checkbox", autoFocus: l, checked: d, disabled: k(), name: G, required: e, value: r, onChange: () => {
|
|
88
|
+
} }),
|
|
89
|
+
/* @__PURE__ */ o.jsx("span", { children: /* @__PURE__ */ o.jsx(ae, { size: 12, name: "checkmark" }) }),
|
|
90
|
+
c && /* @__PURE__ */ o.jsxs("div", { className: "description", children: [
|
|
91
|
+
/* @__PURE__ */ o.jsx(ge, { required: e, disabled: k(), className: H, tooltip: N, tooltipWidth: M, tooltipPosition: y }),
|
|
92
|
+
c,
|
|
93
|
+
/* @__PURE__ */ o.jsx(ge, {}),
|
|
94
|
+
/* @__PURE__ */ o.jsx(Fe, { disabled: f, visible: !!i && K === "below", description: i, customClass: "hint" })
|
|
95
|
+
] })
|
|
96
|
+
] }),
|
|
97
|
+
!!i && K === "onLabelRight" && !v && /* @__PURE__ */ o.jsx(ze, { theme: W, align: z, customClass: "-hint", iconColor: "#03bde2", style: {
|
|
98
|
+
margin: "0px 5px",
|
|
99
|
+
height: "auto",
|
|
100
|
+
width: 20
|
|
101
|
+
}, children: i })
|
|
102
|
+
] }),
|
|
103
|
+
/* @__PURE__ */ o.jsx(Le, { messages: w })
|
|
104
|
+
] });
|
|
105
|
+
return Q.unvisible ? null : A ? /* @__PURE__ */ o.jsx(Se, { customClass: "-withinput", cols: A, children: E() }) : E();
|
|
106
|
+
});
|
|
107
|
+
ye.displayName = "CheckBox";
|
|
108
|
+
const Ge = (G) => {
|
|
109
|
+
const e = Re.c(94), {
|
|
110
|
+
onClick: r,
|
|
111
|
+
leftIconName: c,
|
|
112
|
+
leftIcon: p,
|
|
113
|
+
displayCheckbox: l,
|
|
114
|
+
url: i,
|
|
115
|
+
leftElement: a,
|
|
116
|
+
hovered: A,
|
|
117
|
+
customClass: g,
|
|
118
|
+
text: f,
|
|
119
|
+
subText: b,
|
|
120
|
+
rightIcon: N,
|
|
121
|
+
rightIconName: y,
|
|
122
|
+
itemId: M,
|
|
123
|
+
rightElement: v,
|
|
124
|
+
style: D,
|
|
125
|
+
children: w,
|
|
126
|
+
disabled: H,
|
|
127
|
+
separator: K,
|
|
128
|
+
visible: W,
|
|
129
|
+
permissionAttr: z,
|
|
130
|
+
skeletonize: F,
|
|
131
|
+
targetRef: d,
|
|
132
|
+
target: u,
|
|
133
|
+
onDeniedText: J
|
|
134
|
+
} = G, Q = A === void 0 ? !0 : A, t = M === void 0 ? "" : M, k = K === void 0 ? !0 : K, me = W === void 0 ? !0 : W, E = J === void 0 ? "Permissão Negada! Consulte o Administrador do sistema." : J, {
|
|
135
|
+
handleSelectItem: C,
|
|
136
|
+
selectable: $,
|
|
137
|
+
selectedItemId: m,
|
|
138
|
+
selectedItemRef: pe,
|
|
139
|
+
selectOnEnter: fe
|
|
140
|
+
} = Ce(_e), j = Ce(Be), {
|
|
141
|
+
handlerSetOnDeniedText: ue
|
|
142
|
+
} = Ce(Ke);
|
|
143
|
+
let U, V;
|
|
144
|
+
if (e[0] !== z) {
|
|
145
|
+
const s = [de.disabled, de.unvisible];
|
|
146
|
+
U = je, V = Ne(s, z), e[0] = z, e[1] = U, e[2] = V;
|
|
147
|
+
} else
|
|
148
|
+
U = e[1], V = e[2];
|
|
149
|
+
const [I] = U(V), xe = Oe(), n = I.disabled;
|
|
150
|
+
let X;
|
|
151
|
+
e[3] !== H || e[4] !== I.disabled ? (X = () => H || I.disabled, e[3] = H, e[4] = I.disabled, e[5] = X) : X = e[5];
|
|
152
|
+
const x = X;
|
|
153
|
+
let Y;
|
|
154
|
+
e[6] !== g || e[7] !== l || e[8] !== k || e[9] !== x ? (Y = () => `item ${g} ${k && "list-separator"} ${x() && "disabled"}
|
|
155
|
+
${l && "list-checkbox"}`, e[6] = g, e[7] = l, e[8] = k, e[9] = x, e[10] = Y) : Y = e[10];
|
|
156
|
+
const h = Y;
|
|
157
|
+
let Z;
|
|
158
|
+
e[11] !== n || e[12] !== l || e[13] !== a || e[14] !== p || e[15] !== c || e[16] !== I.disabled ? (Z = (s, ke) => {
|
|
159
|
+
const De = !ke && !l && !a && !c && !p && I.disabled;
|
|
160
|
+
return ke || (De ? /* @__PURE__ */ o.jsx(ae, { name: "padlock", color: "rgb(193, 193, 193)" }) : s ? /* @__PURE__ */ o.jsx(ae, { name: n ? "padlock" : s, color: n ? "rgb(193, 193, 193)" : "" }) : null);
|
|
161
|
+
}, e[11] = n, e[12] = l, e[13] = a, e[14] = p, e[15] = c, e[16] = I.disabled, e[17] = Z) : Z = e[17];
|
|
162
|
+
const T = Z;
|
|
163
|
+
let q;
|
|
164
|
+
e[18] !== j || e[19] !== C || e[20] !== t || e[21] !== r || e[22] !== $ ? (q = (s) => {
|
|
165
|
+
r !== void 0 && r(s, t), j && j.handleDropdownClose && j.handleDropdownClose(), $ && C(t, r);
|
|
166
|
+
}, e[18] = j, e[19] = C, e[20] = t, e[21] = r, e[22] = $, e[23] = q) : q = e[23];
|
|
167
|
+
const R = q;
|
|
168
|
+
let ee;
|
|
169
|
+
e[24] !== R || e[25] !== t || e[26] !== xe || e[27] !== m || e[28] !== F || e[29] !== u || e[30] !== i ? (ee = (s) => {
|
|
170
|
+
[Ae.ENTER].includes(s.keyCode) && !F && t && m === t && (s.preventDefault(), R(s), i && (u === "_blank" ? window.open(i, "_blank")?.focus() : xe(i)));
|
|
171
|
+
}, e[24] = R, e[25] = t, e[26] = xe, e[27] = m, e[28] = F, e[29] = u, e[30] = i, e[31] = ee) : ee = e[31];
|
|
172
|
+
const te = ee;
|
|
173
|
+
let se;
|
|
174
|
+
e[32] !== j || e[33] !== R || e[34] !== r || e[35] !== $ || e[36] !== x ? (se = () => {
|
|
175
|
+
if (!x())
|
|
176
|
+
return r === void 0 && j === void 0 && !$ ? null : {
|
|
177
|
+
onClick: (s) => {
|
|
178
|
+
R(s);
|
|
179
|
+
},
|
|
180
|
+
role: "button",
|
|
181
|
+
tabIndex: 0
|
|
182
|
+
};
|
|
183
|
+
}, e[32] = j, e[33] = R, e[34] = r, e[35] = $, e[36] = x, e[37] = se) : se = e[37];
|
|
184
|
+
const he = se;
|
|
185
|
+
let oe;
|
|
186
|
+
e[38] !== te || e[39] !== fe ? (oe = () => (fe && document.addEventListener("keydown", te), () => {
|
|
187
|
+
document.removeEventListener("keydown", te);
|
|
188
|
+
}), e[38] = te, e[39] = fe, e[40] = oe) : oe = e[40];
|
|
189
|
+
let ie;
|
|
190
|
+
e[41] !== t || e[42] !== m || e[43] !== i ? (ie = [i, m, t], e[41] = t, e[42] = m, e[43] = i, e[44] = ie) : ie = e[44], Ie(oe, ie);
|
|
191
|
+
let ne;
|
|
192
|
+
e[45] !== n || e[46] !== ue || e[47] !== E ? (ne = () => {
|
|
193
|
+
n && ue(E);
|
|
194
|
+
}, e[45] = n, e[46] = ue, e[47] = E, e[48] = ne) : ne = e[48];
|
|
195
|
+
let le;
|
|
196
|
+
e[49] !== n ? (le = [n], e[49] = n, e[50] = le) : le = e[50], Ie(ne, le);
|
|
197
|
+
let re;
|
|
198
|
+
e: {
|
|
199
|
+
if (!n && l) {
|
|
200
|
+
let s;
|
|
201
|
+
e[51] === Symbol.for("react.memo_cache_sentinel") ? (s = /* @__PURE__ */ o.jsx(ye, { name: "checkbox" }), e[51] = s) : s = e[51], re = s;
|
|
202
|
+
break e;
|
|
203
|
+
} else if (n && l) {
|
|
204
|
+
let s;
|
|
205
|
+
e[52] === Symbol.for("react.memo_cache_sentinel") ? (s = /* @__PURE__ */ o.jsx(ae, { name: "padlock" }), e[52] = s) : s = e[52], re = s;
|
|
206
|
+
break e;
|
|
207
|
+
}
|
|
208
|
+
re = null;
|
|
209
|
+
}
|
|
210
|
+
const be = re;
|
|
211
|
+
if (!me || I.unvisible)
|
|
212
|
+
return null;
|
|
213
|
+
let O;
|
|
214
|
+
e[53] !== t || e[54] !== m || e[55] !== pe || e[56] !== d ? (O = (s) => (d && d(s), t && m === t ? pe : null), e[53] = t, e[54] = m, e[55] = pe, e[56] = d, e[57] = O) : O = e[57];
|
|
215
|
+
const ve = `item-container ${Q && "hovered"}
|
|
216
|
+
${t && m === t ? "-activedlist" : ""}`;
|
|
217
|
+
let P;
|
|
218
|
+
e[58] !== he ? (P = he(), e[58] = he, e[59] = P) : P = e[59];
|
|
219
|
+
let S;
|
|
220
|
+
e[60] !== x || e[61] !== u || e[62] !== i ? (S = i && !x() && /* @__PURE__ */ o.jsx(Pe, { className: "linkitem", to: i, target: u }), e[60] = x, e[61] = u, e[62] = i, e[63] = S) : S = e[63];
|
|
221
|
+
let L;
|
|
222
|
+
e[64] !== l || e[65] !== h || e[66] !== T || e[67] !== a || e[68] !== p || e[69] !== c || e[70] !== be ? (L = (l || a || c || p) && /* @__PURE__ */ o.jsxs("div", { className: `${h()} -icon-left`, children: [
|
|
223
|
+
be,
|
|
224
|
+
a,
|
|
225
|
+
T(c, p)
|
|
226
|
+
] }), e[64] = l, e[65] = h, e[66] = T, e[67] = a, e[68] = p, e[69] = c, e[70] = be, e[71] = L) : L = e[71];
|
|
227
|
+
let _;
|
|
228
|
+
e[72] !== w || e[73] !== h || e[74] !== b || e[75] !== f ? (_ = (f || b || w) && /* @__PURE__ */ o.jsxs("div", { className: `${h()}`, children: [
|
|
229
|
+
f && /* @__PURE__ */ o.jsx("p", { className: `${f && "text"}`, children: f }),
|
|
230
|
+
b && /* @__PURE__ */ o.jsx("p", { className: `${b && "subtext"}`, children: b }),
|
|
231
|
+
w
|
|
232
|
+
] }), e[72] = w, e[73] = h, e[74] = b, e[75] = f, e[76] = _) : _ = e[76];
|
|
233
|
+
let B;
|
|
234
|
+
e[77] !== n || e[78] !== h || e[79] !== T || e[80] !== v || e[81] !== N || e[82] !== y ? (B = (y || N || v || n) && /* @__PURE__ */ o.jsxs("div", { className: `${h()} -icon-right`, children: [
|
|
235
|
+
T(y, N),
|
|
236
|
+
v
|
|
237
|
+
] }), e[77] = n, e[78] = h, e[79] = T, e[80] = v, e[81] = N, e[82] = y, e[83] = B) : B = e[83];
|
|
238
|
+
let ce;
|
|
239
|
+
return e[84] !== t || e[85] !== D || e[86] !== O || e[87] !== ve || e[88] !== P || e[89] !== S || e[90] !== L || e[91] !== _ || e[92] !== B ? (ce = /* @__PURE__ */ Te("li", { ref: O, style: D, className: ve, ...P, key: t }, S, L, _, B), e[84] = t, e[85] = D, e[86] = O, e[87] = ve, e[88] = P, e[89] = S, e[90] = L, e[91] = _, e[92] = B, e[93] = ce) : ce = e[93], ce;
|
|
240
|
+
}, It = He(Ge);
|
|
241
|
+
export {
|
|
242
|
+
ye as C,
|
|
243
|
+
It as L
|
|
244
|
+
};
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
const c = [];
|
|
2
|
+
for (let n = 0; n < 256; ++n)
|
|
3
|
+
c.push((n + 256).toString(16).slice(1));
|
|
4
|
+
function r(n, i = 0) {
|
|
5
|
+
return (c[n[i + 0]] + c[n[i + 1]] + c[n[i + 2]] + c[n[i + 3]] + "-" + c[n[i + 4]] + c[n[i + 5]] + "-" + c[n[i + 6]] + c[n[i + 7]] + "-" + c[n[i + 8]] + c[n[i + 9]] + "-" + c[n[i + 10]] + c[n[i + 11]] + c[n[i + 12]] + c[n[i + 13]] + c[n[i + 14]] + c[n[i + 15]]).toLowerCase();
|
|
6
|
+
}
|
|
7
|
+
let m;
|
|
8
|
+
const h = new Uint8Array(16);
|
|
9
|
+
function w() {
|
|
10
|
+
if (!m) {
|
|
11
|
+
if (typeof crypto > "u" || !crypto.getRandomValues)
|
|
12
|
+
throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");
|
|
13
|
+
m = crypto.getRandomValues.bind(crypto);
|
|
14
|
+
}
|
|
15
|
+
return m(h);
|
|
16
|
+
}
|
|
17
|
+
const l = {};
|
|
18
|
+
function V(n, i, d) {
|
|
19
|
+
let x;
|
|
20
|
+
{
|
|
21
|
+
const u = Date.now(), e = w();
|
|
22
|
+
t(l, u, e), x = R(e, l.msecs, l.nsecs, l.clockseq, l.node, i, d);
|
|
23
|
+
}
|
|
24
|
+
return i ?? r(x);
|
|
25
|
+
}
|
|
26
|
+
function t(n, i, d) {
|
|
27
|
+
return n.msecs ??= -1 / 0, n.nsecs ??= 0, i === n.msecs ? (n.nsecs++, n.nsecs >= 1e4 && (n.node = void 0, n.nsecs = 0)) : i > n.msecs ? n.nsecs = 0 : i < n.msecs && (n.node = void 0), n.node || (n.node = d.slice(10, 16), n.node[0] |= 1, n.clockseq = (d[8] << 8 | d[9]) & 16383), n.msecs = i, n;
|
|
28
|
+
}
|
|
29
|
+
function R(n, i, d, x, u, e, o = 0) {
|
|
30
|
+
if (n.length < 16)
|
|
31
|
+
throw new Error("Random bytes length must be >= 16");
|
|
32
|
+
if (!e)
|
|
33
|
+
e = new Uint8Array(16), o = 0;
|
|
34
|
+
else if (o < 0 || o + 16 > e.length)
|
|
35
|
+
throw new RangeError(`UUID byte range ${o}:${o + 15} is out of buffer bounds`);
|
|
36
|
+
i ??= Date.now(), d ??= 0, x ??= (n[8] << 8 | n[9]) & 16383, u ??= n.slice(10, 16), i += 122192928e5;
|
|
37
|
+
const p = ((i & 268435455) * 1e4 + d) % 4294967296;
|
|
38
|
+
e[o++] = p >>> 24 & 255, e[o++] = p >>> 16 & 255, e[o++] = p >>> 8 & 255, e[o++] = p & 255;
|
|
39
|
+
const y = i / 4294967296 * 1e4 & 268435455;
|
|
40
|
+
e[o++] = y >>> 8 & 255, e[o++] = y & 255, e[o++] = y >>> 24 & 15 | 16, e[o++] = y >>> 16 & 255, e[o++] = x >>> 8 | 128, e[o++] = x & 255;
|
|
41
|
+
for (let g = 0; g < 6; ++g)
|
|
42
|
+
e[o++] = u[g];
|
|
43
|
+
return e;
|
|
44
|
+
}
|
|
45
|
+
export {
|
|
46
|
+
w as r,
|
|
47
|
+
r as u,
|
|
48
|
+
V as v
|
|
49
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { j as l } from "../chunks/jsx-runtime.D1SHvdVE.js";
|
|
2
|
+
import { c as f } from "../chunks/compiler-runtime.Cu50tn6L.js";
|
|
3
|
+
import "react";
|
|
4
|
+
import "../buttons/DefaultButton.js";
|
|
5
|
+
import a from "../buttons/PrimaryButton.js";
|
|
6
|
+
import u from "../icons/index.js";
|
|
7
|
+
import '../assets/button.css';/* empty css */
|
|
8
|
+
import x from "./Custom.js";
|
|
9
|
+
const L = (t) => {
|
|
10
|
+
const o = f.c(7), {
|
|
11
|
+
onConfirmClick: i,
|
|
12
|
+
confirmLabel: s
|
|
13
|
+
} = t, n = s === void 0 ? "Confirmar" : s;
|
|
14
|
+
let m;
|
|
15
|
+
o[0] !== n || o[1] !== i ? (m = [/* @__PURE__ */ l.jsx(a, { onClick: i, label: n }, "confirm-buttom")], o[0] = n, o[1] = i, o[2] = m) : m = o[2];
|
|
16
|
+
const c = m;
|
|
17
|
+
let r;
|
|
18
|
+
o[3] === Symbol.for("react.memo_cache_sentinel") ? (r = /* @__PURE__ */ l.jsx(u, { name: "exclamation", color: "#f39c12", size: 64 }), o[3] = r) : r = o[3];
|
|
19
|
+
let e;
|
|
20
|
+
return o[4] !== c || o[5] !== t ? (e = /* @__PURE__ */ l.jsx(x, { ...t, buttons: c, icon: r }), o[4] = c, o[5] = t, o[6] = e) : e = o[6], e;
|
|
21
|
+
};
|
|
22
|
+
export {
|
|
23
|
+
L as default
|
|
24
|
+
};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { j as i } from "../chunks/jsx-runtime.D1SHvdVE.js";
|
|
2
|
+
import { c as v } from "../chunks/compiler-runtime.Cu50tn6L.js";
|
|
3
|
+
import g from "react";
|
|
4
|
+
import { B as N } from "../chunks/index.aw0XaUkg.js";
|
|
5
|
+
import b from "./base/Footer.js";
|
|
6
|
+
import w from "../icons/index.js";
|
|
7
|
+
import B from "../buttons/button_container/index.js";
|
|
8
|
+
import "../buttons/DefaultButton.js";
|
|
9
|
+
import '../assets/button.css';/* empty css */
|
|
10
|
+
import { v as C } from "../chunks/v1.Ds1rkxUj.js";
|
|
11
|
+
const E = (e, t) => t || (e ? /* @__PURE__ */ i.jsx(w, { name: e, color: "#000", size: 64 }) : null), G = (e) => {
|
|
12
|
+
const t = v.c(22), {
|
|
13
|
+
width: x,
|
|
14
|
+
height: h,
|
|
15
|
+
iconName: j,
|
|
16
|
+
open: a
|
|
17
|
+
} = e, f = x === void 0 ? "35%" : x, d = h === void 0 ? "auto" : h, u = j === void 0 ? null : j;
|
|
18
|
+
let n;
|
|
19
|
+
t[0] !== u || t[1] !== e.icon ? (n = E(u, e.icon), t[0] = u, t[1] = e.icon, t[2] = n) : n = t[2];
|
|
20
|
+
let l;
|
|
21
|
+
t[3] !== n ? (l = /* @__PURE__ */ i.jsx("div", { className: "icon", children: n }), t[3] = n, t[4] = l) : l = t[4];
|
|
22
|
+
let o;
|
|
23
|
+
t[5] !== e.title ? (o = e.title && /* @__PURE__ */ i.jsx("div", { className: "title", children: e.title }), t[5] = e.title, t[6] = o) : o = t[6];
|
|
24
|
+
let c;
|
|
25
|
+
t[7] !== e.text ? (c = /* @__PURE__ */ i.jsx("div", { className: "text", children: e.text }), t[7] = e.text, t[8] = c) : c = t[8];
|
|
26
|
+
let m;
|
|
27
|
+
t[9] !== o || t[10] !== c ? (m = /* @__PURE__ */ i.jsxs("div", { className: "container", children: [
|
|
28
|
+
o,
|
|
29
|
+
c
|
|
30
|
+
] }), t[9] = o, t[10] = c, t[11] = m) : m = t[11];
|
|
31
|
+
let s;
|
|
32
|
+
t[12] !== e ? (s = e.buttons && e.buttons.length > 0 && /* @__PURE__ */ i.jsx(b, { ...e, children: /* @__PURE__ */ i.jsx(B, { position: "right", children: e.buttons.map(R) }) }), t[12] = e, t[13] = s) : s = t[13];
|
|
33
|
+
let r;
|
|
34
|
+
return t[14] !== d || t[15] !== a || t[16] !== e || t[17] !== l || t[18] !== m || t[19] !== s || t[20] !== f ? (r = /* @__PURE__ */ i.jsxs(N, { open: a, width: f, height: d, ...e, wrapperClassName: "dialog-alert-wrapper", children: [
|
|
35
|
+
l,
|
|
36
|
+
m,
|
|
37
|
+
s
|
|
38
|
+
] }), t[14] = d, t[15] = a, t[16] = e, t[17] = l, t[18] = m, t[19] = s, t[20] = f, t[21] = r) : r = t[21], r;
|
|
39
|
+
};
|
|
40
|
+
function R(e) {
|
|
41
|
+
return g.cloneElement(e, {
|
|
42
|
+
key: `button-${C()}`
|
|
43
|
+
});
|
|
44
|
+
}
|
|
45
|
+
export {
|
|
46
|
+
G as default
|
|
47
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { j as l } from "../chunks/jsx-runtime.D1SHvdVE.js";
|
|
2
|
+
import { c as f } from "../chunks/compiler-runtime.Cu50tn6L.js";
|
|
3
|
+
import "react";
|
|
4
|
+
import "../buttons/DefaultButton.js";
|
|
5
|
+
import a from "../buttons/PrimaryButton.js";
|
|
6
|
+
import u from "../icons/index.js";
|
|
7
|
+
import '../assets/button.css';/* empty css */
|
|
8
|
+
import b from "./Custom.js";
|
|
9
|
+
const L = (t) => {
|
|
10
|
+
const o = f.c(7), {
|
|
11
|
+
onConfirmClick: i,
|
|
12
|
+
confirmLabel: s
|
|
13
|
+
} = t, c = s === void 0 ? "Confirmar" : s;
|
|
14
|
+
let r;
|
|
15
|
+
o[0] !== c || o[1] !== i ? (r = [/* @__PURE__ */ l.jsx(a, { onClick: i, label: c }, "confirm-buttom")], o[0] = c, o[1] = i, o[2] = r) : r = o[2];
|
|
16
|
+
const n = r;
|
|
17
|
+
let m;
|
|
18
|
+
o[3] === Symbol.for("react.memo_cache_sentinel") ? (m = /* @__PURE__ */ l.jsx(u, { name: "block", color: "#e74c3c", size: 64 }), o[3] = m) : m = o[3];
|
|
19
|
+
let e;
|
|
20
|
+
return o[4] !== n || o[5] !== t ? (e = /* @__PURE__ */ l.jsx(b, { ...t, buttons: n, icon: m }), o[4] = n, o[5] = t, o[6] = e) : e = o[6], e;
|
|
21
|
+
};
|
|
22
|
+
export {
|
|
23
|
+
L as default
|
|
24
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { j as s } from "../chunks/jsx-runtime.D1SHvdVE.js";
|
|
2
|
+
import { c as l } from "../chunks/compiler-runtime.Cu50tn6L.js";
|
|
3
|
+
import "react";
|
|
4
|
+
import "../buttons/DefaultButton.js";
|
|
5
|
+
import a from "../buttons/PrimaryButton.js";
|
|
6
|
+
import u from "../icons/index.js";
|
|
7
|
+
import '../assets/button.css';/* empty css */
|
|
8
|
+
import b from "./Custom.js";
|
|
9
|
+
const I = (t) => {
|
|
10
|
+
const o = l.c(7), {
|
|
11
|
+
onConfirmClick: n,
|
|
12
|
+
confirmLabel: f
|
|
13
|
+
} = t, e = f === void 0 ? "Confirmar" : f;
|
|
14
|
+
let m;
|
|
15
|
+
o[0] !== e || o[1] !== n ? (m = [/* @__PURE__ */ s.jsx(a, { onClick: n, label: e }, "confirm-buttom")], o[0] = e, o[1] = n, o[2] = m) : m = o[2];
|
|
16
|
+
const c = m;
|
|
17
|
+
let i;
|
|
18
|
+
o[3] === Symbol.for("react.memo_cache_sentinel") ? (i = /* @__PURE__ */ s.jsx(u, { name: "information", color: "#24cabc", size: 64 }), o[3] = i) : i = o[3];
|
|
19
|
+
let r;
|
|
20
|
+
return o[4] !== c || o[5] !== t ? (r = /* @__PURE__ */ s.jsx(b, { ...t, buttons: c, icon: i }), o[4] = c, o[5] = t, o[6] = r) : r = o[6], r;
|
|
21
|
+
};
|
|
22
|
+
export {
|
|
23
|
+
I as default
|
|
24
|
+
};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { j as a } from "../chunks/jsx-runtime.D1SHvdVE.js";
|
|
2
|
+
import { c as L } from "../chunks/compiler-runtime.Cu50tn6L.js";
|
|
3
|
+
import { useLayoutEffect as g, useEffect as y } from "react";
|
|
4
|
+
import _ from "../buttons/Button.js";
|
|
5
|
+
import B from "../buttons/DangerButton.js";
|
|
6
|
+
import U from "../icons/index.js";
|
|
7
|
+
import '../assets/button.css';/* empty css */
|
|
8
|
+
import h from "./Custom.js";
|
|
9
|
+
const W = (o) => {
|
|
10
|
+
const t = L.c(22), {
|
|
11
|
+
visible: x,
|
|
12
|
+
closeOnEsc: C,
|
|
13
|
+
isWaiting: n,
|
|
14
|
+
onConfirmClick: b,
|
|
15
|
+
onUnconfirmClick: i,
|
|
16
|
+
confirmLabel: j,
|
|
17
|
+
declineLabel: k
|
|
18
|
+
} = o, e = x === void 0 ? !0 : x, d = C === void 0 ? !1 : C, E = j === void 0 ? "Sim" : j, p = k === void 0 ? "Não" : k;
|
|
19
|
+
let c;
|
|
20
|
+
t[0] !== E || t[1] !== n || t[2] !== b ? (c = /* @__PURE__ */ a.jsx(B, { disabled: n, onClick: b, isLoading: n, label: E }, "yes-buttom"), t[0] = E, t[1] = n, t[2] = b, t[3] = c) : c = t[3];
|
|
21
|
+
let l;
|
|
22
|
+
t[4] !== p || t[5] !== n || t[6] !== i ? (l = /* @__PURE__ */ a.jsx(_, { id: "botao-unconfirm-click", disabled: n, onClick: i, label: p }, "no-buttom"), t[4] = p, t[5] = n, t[6] = i, t[7] = l) : l = t[7];
|
|
23
|
+
let s;
|
|
24
|
+
t[8] !== c || t[9] !== l ? (s = [c, l], t[8] = c, t[9] = l, t[10] = s) : s = t[10];
|
|
25
|
+
const v = s;
|
|
26
|
+
let m;
|
|
27
|
+
t[11] !== e ? (m = [e], t[11] = e, t[12] = m) : m = t[12], g(I, m);
|
|
28
|
+
let r;
|
|
29
|
+
if (t[13] !== e ? (r = [e, document.activeElement], t[13] = e, t[14] = r) : r = t[14], y(O, r), !e)
|
|
30
|
+
return null;
|
|
31
|
+
let f;
|
|
32
|
+
t[15] === Symbol.for("react.memo_cache_sentinel") ? (f = /* @__PURE__ */ a.jsx(U, { name: "question", color: "#3498db", size: 64 }), t[15] = f) : f = t[15];
|
|
33
|
+
let u;
|
|
34
|
+
return t[16] !== v || t[17] !== d || t[18] !== i || t[19] !== o || t[20] !== e ? (u = /* @__PURE__ */ a.jsx(h, { ...o, open: e, buttons: v, closeOnEsc: d, handlerClose: i, icon: f }), t[16] = v, t[17] = d, t[18] = i, t[19] = o, t[20] = e, t[21] = u) : u = t[21], u;
|
|
35
|
+
};
|
|
36
|
+
function I() {
|
|
37
|
+
const o = document.activeElement;
|
|
38
|
+
return () => {
|
|
39
|
+
o?.focus?.();
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
function O() {
|
|
43
|
+
document.getElementById("botao-unconfirm-click")?.focus?.();
|
|
44
|
+
}
|
|
45
|
+
export {
|
|
46
|
+
W as default
|
|
47
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { j as s } from "../chunks/jsx-runtime.D1SHvdVE.js";
|
|
2
|
+
import { c as f } from "../chunks/compiler-runtime.Cu50tn6L.js";
|
|
3
|
+
import "react";
|
|
4
|
+
import "../buttons/DefaultButton.js";
|
|
5
|
+
import a from "../buttons/PrimaryButton.js";
|
|
6
|
+
import u from "../icons/index.js";
|
|
7
|
+
import '../assets/button.css';/* empty css */
|
|
8
|
+
import x from "./Custom.js";
|
|
9
|
+
const E = (t) => {
|
|
10
|
+
const o = f.c(7), {
|
|
11
|
+
onConfirmClick: e,
|
|
12
|
+
confirmLabel: l
|
|
13
|
+
} = t, n = l === void 0 ? "Confirmar" : l;
|
|
14
|
+
let r;
|
|
15
|
+
o[0] !== n || o[1] !== e ? (r = [/* @__PURE__ */ s.jsx(a, { onClick: e, label: n }, 1)], o[0] = n, o[1] = e, o[2] = r) : r = o[2];
|
|
16
|
+
const c = r;
|
|
17
|
+
let i;
|
|
18
|
+
o[3] === Symbol.for("react.memo_cache_sentinel") ? (i = /* @__PURE__ */ s.jsx(u, { name: "warning", color: "#f39c12", size: 64 }), o[3] = i) : i = o[3];
|
|
19
|
+
let m;
|
|
20
|
+
return o[4] !== c || o[5] !== t ? (m = /* @__PURE__ */ s.jsx(x, { ...t, buttons: c, icon: i }), o[4] = c, o[5] = t, o[6] = m) : m = o[6], m;
|
|
21
|
+
};
|
|
22
|
+
export {
|
|
23
|
+
E as default
|
|
24
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { j as a } from "../../chunks/jsx-runtime.D1SHvdVE.js";
|
|
2
|
+
import { c as r } from "../../chunks/compiler-runtime.Cu50tn6L.js";
|
|
3
|
+
import { Suspense as i } from "react";
|
|
4
|
+
import '../../assets/Content.css';const f = (l) => {
|
|
5
|
+
const t = r.c(4), {
|
|
6
|
+
children: o,
|
|
7
|
+
styleForContent: e,
|
|
8
|
+
className: c
|
|
9
|
+
} = l, n = `dialog-content ${c === void 0 ? "" : c}`;
|
|
10
|
+
let s;
|
|
11
|
+
return t[0] !== o || t[1] !== e || t[2] !== n ? (s = /* @__PURE__ */ a.jsx(i, { children: /* @__PURE__ */ a.jsx("div", { id: "modal-dialog-content", className: n, style: e, children: o }) }), t[0] = o, t[1] = e, t[2] = n, t[3] = s) : s = t[3], s;
|
|
12
|
+
};
|
|
13
|
+
export {
|
|
14
|
+
f as default
|
|
15
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { j as o } from "../../chunks/jsx-runtime.D1SHvdVE.js";
|
|
2
|
+
import { c as i } from "../../chunks/compiler-runtime.Cu50tn6L.js";
|
|
3
|
+
const l = (r) => {
|
|
4
|
+
const e = i.c(2);
|
|
5
|
+
let t;
|
|
6
|
+
return e[0] !== r.children ? (t = /* @__PURE__ */ o.jsx("div", { className: "footer", children: r.children }), e[0] = r.children, e[1] = t) : t = e[1], t;
|
|
7
|
+
};
|
|
8
|
+
export {
|
|
9
|
+
l as default
|
|
10
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { IBaseProps } from '../types';
|
|
3
|
+
type DialogContextType = {
|
|
4
|
+
handleClose: () => void;
|
|
5
|
+
open: boolean;
|
|
6
|
+
onOpenChange: (open: boolean) => void;
|
|
7
|
+
};
|
|
8
|
+
export declare const DialogContext: React.Context<DialogContextType>;
|
|
9
|
+
declare const BaseDialog: (props: IBaseProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
10
|
+
export default BaseDialog;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import "../../chunks/jsx-runtime.D1SHvdVE.js";
|
|
2
|
+
import "../../chunks/compiler-runtime.Cu50tn6L.js";
|
|
3
|
+
import "react";
|
|
4
|
+
import "react-dom";
|
|
5
|
+
import { D as e, B as f } from "../../chunks/index.aw0XaUkg.js";
|
|
6
|
+
import "./Content.js";
|
|
7
|
+
export {
|
|
8
|
+
e as DialogContext,
|
|
9
|
+
f as default
|
|
10
|
+
};
|
|
File without changes
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { IFormProps, IFormDialogContext } from '../types';
|
|
3
|
+
export declare const FormDialogContext: React.Context<IFormDialogContext>;
|
|
4
|
+
declare const _default: (props: IFormProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export default _default;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import "../../chunks/jsx-runtime.D1SHvdVE.js";
|
|
2
|
+
import "../../chunks/compiler-runtime.Cu50tn6L.js";
|
|
3
|
+
import "react";
|
|
4
|
+
import { a as d, F as g } from "../../chunks/index.aw0XaUkg.js";
|
|
5
|
+
import "../../buttons/button_container/index.js";
|
|
6
|
+
import "../../buttons/DefaultButton.js";
|
|
7
|
+
import "../../icons/index.js";
|
|
8
|
+
import '../../assets/button.css';/* empty css */
|
|
9
|
+
import "../base/Content.js";
|
|
10
|
+
import "../base/Footer.js";
|
|
11
|
+
import "../../spinner/index.js";
|
|
12
|
+
import "../../form/withFormSecurity.js";
|
|
13
|
+
export {
|
|
14
|
+
d as FormDialogContext,
|
|
15
|
+
g as default
|
|
16
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { default as Dialog } from './base/';
|
|
2
|
+
import { default as DialogAlert } from './Alert';
|
|
3
|
+
import { default as DialogError } from './Error';
|
|
4
|
+
import { default as DialogInformation } from './Information';
|
|
5
|
+
import { default as DialogQuestion } from './Question';
|
|
6
|
+
import { default as DialogWarning } from './Warning';
|
|
7
|
+
import { default as DialogCustom } from './Custom';
|
|
8
|
+
export default Dialog;
|
|
9
|
+
export { DialogAlert, DialogInformation, DialogError, DialogCustom, DialogWarning, DialogQuestion, };
|