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,9 @@
|
|
|
1
|
+
import React__default from 'react';
|
|
2
|
+
import { WithAlertContextProps } from './types.js';
|
|
3
|
+
import '../@types/PositionAlert.js';
|
|
4
|
+
import '../@types/Icon.js';
|
|
5
|
+
import '../icons/helper.js';
|
|
6
|
+
|
|
7
|
+
declare const withAlert: <ComponentProps extends WithAlertContextProps>(WrapperComponent: React__default.ComponentType<ComponentProps>) => (props: ComponentProps) => JSX.Element;
|
|
8
|
+
|
|
9
|
+
export { withAlert as default };
|
|
@@ -0,0 +1,24 @@
|
|
|
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 _helpers = _interopRequireDefault(require("./helpers"));
|
|
9
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
10
|
+
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); }
|
|
11
|
+
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; }
|
|
12
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
13
|
+
const withAlert = WrapperComponent => {
|
|
14
|
+
const GetAlert = props => {
|
|
15
|
+
const {
|
|
16
|
+
alert
|
|
17
|
+
} = (0, _react.useContext)(_helpers.default);
|
|
18
|
+
return /*#__PURE__*/_react.default.createElement(WrapperComponent, _extends({}, props, {
|
|
19
|
+
alert: alert
|
|
20
|
+
}));
|
|
21
|
+
};
|
|
22
|
+
return GetAlert;
|
|
23
|
+
};
|
|
24
|
+
var _default = exports.default = withAlert;
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
@import "colors.scss";
|
|
2
|
+
@import "effects.scss";
|
|
3
|
+
.transparentclass {
|
|
4
|
+
opacity: 0.3 !important;
|
|
5
|
+
background-color: #E0CABB;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.alert-component {
|
|
9
|
+
position: fixed;
|
|
10
|
+
z-index: 9999999;
|
|
11
|
+
> .messagecontainer {
|
|
12
|
+
height: 100%;
|
|
13
|
+
> .lefttop, > .leftbottom, > .rightbottom, .righttop, .centertop, .centerbottom {
|
|
14
|
+
position: fixed;
|
|
15
|
+
width: auto;
|
|
16
|
+
min-width: 20%;
|
|
17
|
+
max-width: 25%;
|
|
18
|
+
}
|
|
19
|
+
> .lefttop {
|
|
20
|
+
left: 0;
|
|
21
|
+
top: 0;
|
|
22
|
+
}
|
|
23
|
+
> .leftbottom {
|
|
24
|
+
left: 0;
|
|
25
|
+
bottom: 0;
|
|
26
|
+
}
|
|
27
|
+
> .centertop {
|
|
28
|
+
top: 0;
|
|
29
|
+
right: auto;
|
|
30
|
+
bottom: auto;
|
|
31
|
+
left: 50%;
|
|
32
|
+
transform: translate(-50%, 0%)
|
|
33
|
+
}
|
|
34
|
+
> .centerbottom {
|
|
35
|
+
top: auto;
|
|
36
|
+
right: auto;
|
|
37
|
+
bottom: 0;
|
|
38
|
+
left: 50%;
|
|
39
|
+
transform: translate(-50%, 0%)
|
|
40
|
+
}
|
|
41
|
+
> .righttop {
|
|
42
|
+
top: 0;
|
|
43
|
+
right: 0;
|
|
44
|
+
bottom: auto;
|
|
45
|
+
left: auto;
|
|
46
|
+
}
|
|
47
|
+
> .danger {
|
|
48
|
+
background-color: $danger-color;
|
|
49
|
+
color: $font-color-second;
|
|
50
|
+
&:hover, &:focus {
|
|
51
|
+
background-color: $danger-hover-color;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
> .rightbottom {
|
|
55
|
+
right: 0;
|
|
56
|
+
bottom: 0;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
.message {
|
|
60
|
+
display: flex;
|
|
61
|
+
flex-wrap: wrap;
|
|
62
|
+
width: 100%;
|
|
63
|
+
height: 100%;
|
|
64
|
+
min-height: 80px;
|
|
65
|
+
background: #FFF;
|
|
66
|
+
box-shadow: 2px 4px 10px rgba(0,0,0,0.1);
|
|
67
|
+
-webkit-box-shadow: 10px 2px 28px 1px rgba(0, 0, 0, 0.623);
|
|
68
|
+
-moz-box-shadow: 10px 2px 28px 1px rgba(0, 0, 0, 0.623);
|
|
69
|
+
box-shadow: 10px 2px 28px 1px rgba(0, 0, 0, 0.623);
|
|
70
|
+
margin-bottom: 2px;
|
|
71
|
+
animation: tinRightIn 1s forwards ease-in-out ;
|
|
72
|
+
animation: 1s ease-out 0s 1 tinUpIn;
|
|
73
|
+
> .-icon {
|
|
74
|
+
background: #455870;
|
|
75
|
+
display: flex;
|
|
76
|
+
flex: 3;
|
|
77
|
+
justify-content: center;
|
|
78
|
+
align-items: center;
|
|
79
|
+
color: #FFF;
|
|
80
|
+
margin: 0;
|
|
81
|
+
margin-left: -1px;
|
|
82
|
+
}
|
|
83
|
+
> .-messagecontent {
|
|
84
|
+
flex: 10;
|
|
85
|
+
padding-left: 1.5rem;
|
|
86
|
+
margin: 0;
|
|
87
|
+
display: flex;
|
|
88
|
+
align-items: center;
|
|
89
|
+
padding: 10px 10px 10px 15px;
|
|
90
|
+
font-family: 'Roboto';
|
|
91
|
+
font-weight: 400;
|
|
92
|
+
font-size: 16px;
|
|
93
|
+
color: #333333;
|
|
94
|
+
line-height: 22px;
|
|
95
|
+
}
|
|
96
|
+
> .close {
|
|
97
|
+
color: #455870;
|
|
98
|
+
display: flex;
|
|
99
|
+
flex: 1;
|
|
100
|
+
justify-content: center;
|
|
101
|
+
font-size: 1.2em;
|
|
102
|
+
transition: color .4s ease;
|
|
103
|
+
font-family: 'Roboto';
|
|
104
|
+
>.close-button {
|
|
105
|
+
cursor: pointer;
|
|
106
|
+
margin-top: 5px;
|
|
107
|
+
margin-right: 3px;
|
|
108
|
+
pointer-events: all;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
&.-warning {
|
|
112
|
+
color: $warning-color;
|
|
113
|
+
&:hover, &:focus {
|
|
114
|
+
border-color: $warning-hover-color;
|
|
115
|
+
}
|
|
116
|
+
& .-icon {
|
|
117
|
+
background: $warning-color;
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
&.-danger {
|
|
121
|
+
font-weight: 600!important;
|
|
122
|
+
color: $danger-color;
|
|
123
|
+
&:hover, &:focus {
|
|
124
|
+
border-color: $danger-hover-color;
|
|
125
|
+
}
|
|
126
|
+
& .-icon {
|
|
127
|
+
background: $danger-color;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
&.-success {
|
|
131
|
+
color: $success-color;
|
|
132
|
+
&:hover, &:focus {
|
|
133
|
+
border-color: $success-hover-color;
|
|
134
|
+
}
|
|
135
|
+
& .-icon {
|
|
136
|
+
background: $success-color;
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
&.-info {
|
|
140
|
+
color: $info-color;
|
|
141
|
+
&:hover, &:focus {
|
|
142
|
+
border-color: $info-hover-color;
|
|
143
|
+
}
|
|
144
|
+
& .-icon {
|
|
145
|
+
background: $info-color;
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
.avatar-component {
|
|
2
|
+
color: rgb(255, 255, 255);
|
|
3
|
+
background-color: #e2e2e2;
|
|
4
|
+
user-select: none;
|
|
5
|
+
display: inline-flex;
|
|
6
|
+
align-items: center;
|
|
7
|
+
justify-content: center;
|
|
8
|
+
font-size: 20px;
|
|
9
|
+
border-radius: 100%;
|
|
10
|
+
height: 40px;
|
|
11
|
+
width: 40px;
|
|
12
|
+
top: 8px;
|
|
13
|
+
left: 16px;
|
|
14
|
+
> .imgavatar {
|
|
15
|
+
border-radius: 100%;
|
|
16
|
+
pointer-events: none;
|
|
17
|
+
object-fit: cover;
|
|
18
|
+
opacity: 1;
|
|
19
|
+
}
|
|
20
|
+
&.-square {
|
|
21
|
+
border-radius: 10%;
|
|
22
|
+
> .imgavatar {
|
|
23
|
+
border-radius: 10%;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
&.-default {
|
|
27
|
+
width: 40px;
|
|
28
|
+
height: 40px;
|
|
29
|
+
> .imgavatar {
|
|
30
|
+
width: 40px;
|
|
31
|
+
height: 40px;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
&.-mini {
|
|
35
|
+
width: 30px;
|
|
36
|
+
height: 30px;
|
|
37
|
+
> .imgavatar {
|
|
38
|
+
width: 30px;
|
|
39
|
+
height: 30px;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
@import "colors.scss";
|
|
2
|
+
@import "commons.scss";
|
|
3
|
+
.badge-component {
|
|
4
|
+
position: relative;
|
|
5
|
+
display: inline-block;
|
|
6
|
+
.badge {
|
|
7
|
+
align-content: center;
|
|
8
|
+
align-items: center;
|
|
9
|
+
position: absolute;
|
|
10
|
+
top: -16px;
|
|
11
|
+
right: -11px;
|
|
12
|
+
font-weight: 500;
|
|
13
|
+
font-size: 12px;
|
|
14
|
+
width: 24px;
|
|
15
|
+
height: 24px;
|
|
16
|
+
border-radius: 50%;
|
|
17
|
+
z-index: 1;
|
|
18
|
+
text-align: center;
|
|
19
|
+
font-weight: 600;
|
|
20
|
+
line-height: 24px;
|
|
21
|
+
&.-default {
|
|
22
|
+
background: $default-color;
|
|
23
|
+
color: $font-color-default;
|
|
24
|
+
border: 1px solid $component-border-color;
|
|
25
|
+
}
|
|
26
|
+
&.-primary {
|
|
27
|
+
background: $primary-color;
|
|
28
|
+
color: $font-color-second;
|
|
29
|
+
}
|
|
30
|
+
&.-warning {
|
|
31
|
+
background: $warning-color;
|
|
32
|
+
color: $font-color-second;
|
|
33
|
+
}
|
|
34
|
+
&.-danger {
|
|
35
|
+
background: $danger-color;
|
|
36
|
+
color: $font-color-second;
|
|
37
|
+
}
|
|
38
|
+
&.-success {
|
|
39
|
+
background: $success-color;
|
|
40
|
+
color: $font-color-second;
|
|
41
|
+
}
|
|
42
|
+
&.-info {
|
|
43
|
+
background: $info-color;
|
|
44
|
+
color: $font-color-second;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
@@ -0,0 +1,345 @@
|
|
|
1
|
+
@import "colors.scss";
|
|
2
|
+
@import "fonts.scss";
|
|
3
|
+
@import "commons.scss";
|
|
4
|
+
|
|
5
|
+
$shadow-button-default: 1px 1px 1px rgba(0, 0, 0, 0.2);
|
|
6
|
+
$shadow-text-button: 0 1px 0 rgba(0,0,0,.1);
|
|
7
|
+
$shadow-button-inset: inset 0 0 0 1px $default-color, $shadow-button-default;
|
|
8
|
+
$shadow-button-inset-default: inset 0 0 0 1px $default-border-color, $shadow-button-default;
|
|
9
|
+
%color-effects {
|
|
10
|
+
color: $font-color-second;
|
|
11
|
+
box-shadow: $shadow-button-default;
|
|
12
|
+
-webkit-box-shadow: $shadow-button-default;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.button-component {
|
|
16
|
+
@extend %component-fonts;
|
|
17
|
+
font-weight: 700;
|
|
18
|
+
font-family: 'Titillium Web';
|
|
19
|
+
position: relative;
|
|
20
|
+
cursor: pointer;
|
|
21
|
+
display: inline-block;
|
|
22
|
+
padding: .5rem .8rem;
|
|
23
|
+
letter-spacing: normal;
|
|
24
|
+
border-width: 0;
|
|
25
|
+
border: 1px solid $default-border-color;
|
|
26
|
+
outline: none;
|
|
27
|
+
overflow: hidden;
|
|
28
|
+
border-radius: 3px;
|
|
29
|
+
background-color: $default-color;
|
|
30
|
+
color: $font-color-soft;
|
|
31
|
+
line-height: 1;
|
|
32
|
+
text-align: center;
|
|
33
|
+
transition: background-color .3s;
|
|
34
|
+
transition: all 0.2s ease-in-out;
|
|
35
|
+
box-shadow: $shadow-button-default;
|
|
36
|
+
-webkit-appearance: none;
|
|
37
|
+
&:before {
|
|
38
|
+
@extend %component-splash-click;
|
|
39
|
+
content: "";
|
|
40
|
+
position: absolute;
|
|
41
|
+
top: 50% !important;
|
|
42
|
+
left: 50% !important;
|
|
43
|
+
display: block;
|
|
44
|
+
padding-top: 0;
|
|
45
|
+
border-radius: 100%;
|
|
46
|
+
background-color: rgba(236, 240, 241, 0.3);
|
|
47
|
+
width: 0;
|
|
48
|
+
height: 0 !important;
|
|
49
|
+
}
|
|
50
|
+
> .icon-component {
|
|
51
|
+
width: 15px;
|
|
52
|
+
height: 15px;
|
|
53
|
+
margin-top: 0 !important;
|
|
54
|
+
}
|
|
55
|
+
> .spinnercontainer {
|
|
56
|
+
margin-left: 0;
|
|
57
|
+
float: right;
|
|
58
|
+
margin-top: 0;
|
|
59
|
+
> .spinnerloading {
|
|
60
|
+
background: none;
|
|
61
|
+
float: right;
|
|
62
|
+
margin-top: -15px;
|
|
63
|
+
margin-bottom: -20px;
|
|
64
|
+
margin-right: -20px;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
&.-pointerEventsRemove {
|
|
68
|
+
pointer-events: auto;
|
|
69
|
+
}
|
|
70
|
+
&:active:before {
|
|
71
|
+
@extend %component-effect-click;
|
|
72
|
+
}
|
|
73
|
+
&:hover, &[data-uitour="hover"] {
|
|
74
|
+
background-color: $default-hover-color;
|
|
75
|
+
}
|
|
76
|
+
&:focus {
|
|
77
|
+
-webkit-box-shadow: $shadow-button-inset-default;
|
|
78
|
+
box-shadow: $shadow-button-inset-default;
|
|
79
|
+
}
|
|
80
|
+
&.-round {
|
|
81
|
+
border: 10px;
|
|
82
|
+
box-sizing: border-box;
|
|
83
|
+
display: inline-block;
|
|
84
|
+
font-family: Roboto, sans-serif;
|
|
85
|
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
86
|
+
cursor: pointer;
|
|
87
|
+
text-decoration: none;
|
|
88
|
+
margin: 0px;
|
|
89
|
+
padding: 0px;
|
|
90
|
+
outline: none;
|
|
91
|
+
font-size: inherit;
|
|
92
|
+
font-weight: inherit;
|
|
93
|
+
position: relative;
|
|
94
|
+
vertical-align: bottom;
|
|
95
|
+
transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
|
|
96
|
+
height: 56px;
|
|
97
|
+
width: 56px;
|
|
98
|
+
overflow: hidden;
|
|
99
|
+
border-radius: 100%;
|
|
100
|
+
text-align: center;
|
|
101
|
+
}
|
|
102
|
+
&.-disabled {
|
|
103
|
+
@extend %component-disabled;
|
|
104
|
+
opacity: 0.7;
|
|
105
|
+
border: solid 1px $font-color-disabled;
|
|
106
|
+
pointer-events: auto;
|
|
107
|
+
}
|
|
108
|
+
&.-shadowsdisabled {
|
|
109
|
+
box-shadow: none!important;
|
|
110
|
+
&:focus {
|
|
111
|
+
-webkit-box-shadow: inset 0 0 0 1px $default-color!important;
|
|
112
|
+
box-shadow: inset 0 0 0 1px $default-color!important;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
&.-transparent {
|
|
116
|
+
background-color: transparent !important;
|
|
117
|
+
border: none !important;
|
|
118
|
+
&:focus {
|
|
119
|
+
box-shadow: none!important;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
&.-mini {
|
|
123
|
+
padding: 2px 7px 1px;
|
|
124
|
+
font-size: 10px;
|
|
125
|
+
line-height: 10px;
|
|
126
|
+
> .icon-component {
|
|
127
|
+
width: 10px;
|
|
128
|
+
height: 10px;
|
|
129
|
+
margin-top: 2px !important;
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
&.-small {
|
|
133
|
+
padding: 3px 9px;
|
|
134
|
+
font-size: 12px;
|
|
135
|
+
line-height: 15px;
|
|
136
|
+
> .icon-component {
|
|
137
|
+
width: 12px;
|
|
138
|
+
height: 12px;
|
|
139
|
+
margin-top: 2px !important;
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
&.-medium {
|
|
143
|
+
padding: 4px 10px 6px;
|
|
144
|
+
font-size: 14px;
|
|
145
|
+
line-height: 16px;
|
|
146
|
+
> .icon-component {
|
|
147
|
+
width: 14px;
|
|
148
|
+
height: 14px;
|
|
149
|
+
margin-top: 1px !important;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
&.-large {
|
|
153
|
+
padding: 9px 16px;
|
|
154
|
+
font-size: 20px;
|
|
155
|
+
line-height: 20px !important;
|
|
156
|
+
> .icon-component {
|
|
157
|
+
width: 18px;
|
|
158
|
+
height: 20px;
|
|
159
|
+
margin-top: 1px !important;
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
&.-primary {
|
|
163
|
+
background-color: $primary-color;
|
|
164
|
+
border: 1px solid $primary-border-color;
|
|
165
|
+
text-shadow: $shadow-text-button;
|
|
166
|
+
@extend %color-effects;
|
|
167
|
+
&:hover, &[data-uitour="hover"] {
|
|
168
|
+
background-color: $primary-hover-color;
|
|
169
|
+
}
|
|
170
|
+
&:focus {
|
|
171
|
+
background-color: $primary-color;
|
|
172
|
+
-webkit-box-shadow: $shadow-button-inset;
|
|
173
|
+
box-shadow: $shadow-button-inset;
|
|
174
|
+
border: 1px solid $default-color;
|
|
175
|
+
border: rgba(0,0,0,0) solid 1px;
|
|
176
|
+
outline: 1px solid #4d90fe;
|
|
177
|
+
outline: rgba(0,0,0,0) 0;
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
&.-toggleable {
|
|
181
|
+
outline: 1px solid #4d90fe;
|
|
182
|
+
outline: rgba(0,0,0,0) 0;
|
|
183
|
+
background-color: $default-actived-color;
|
|
184
|
+
&.-primary {
|
|
185
|
+
background-color: $primary-actived-color!important;
|
|
186
|
+
}
|
|
187
|
+
&.-info {
|
|
188
|
+
background-color: $info-actived-color!important;
|
|
189
|
+
}
|
|
190
|
+
&.-danger {
|
|
191
|
+
background-color: $danger-actived-color!important;
|
|
192
|
+
}
|
|
193
|
+
&.-success {
|
|
194
|
+
background-color: $success-actived-color!important;
|
|
195
|
+
}
|
|
196
|
+
&.-warning {
|
|
197
|
+
background-color: $warning-actived-color!important;
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
&.-warning {
|
|
202
|
+
background-color: $warning-color;
|
|
203
|
+
border: 1px solid $warning-color;
|
|
204
|
+
text-shadow: $shadow-text-button;
|
|
205
|
+
@extend %color-effects;
|
|
206
|
+
&:hover, &[data-uitour="hover"] {
|
|
207
|
+
background-color: $warning-hover-color;
|
|
208
|
+
}
|
|
209
|
+
&:focus {
|
|
210
|
+
background-color: $warning-color;
|
|
211
|
+
-webkit-box-shadow: $shadow-button-inset;
|
|
212
|
+
box-shadow: $shadow-button-inset;
|
|
213
|
+
border: 1px solid $default-color;
|
|
214
|
+
border: rgba(0,0,0,0) solid 1px;
|
|
215
|
+
outline: 1px solid $warning-color;
|
|
216
|
+
outline: rgba(0,0,0,0) 0;
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
&.-danger {
|
|
220
|
+
background-color: $danger-color;
|
|
221
|
+
border: 1px solid $danger-color;
|
|
222
|
+
text-shadow: $shadow-text-button;
|
|
223
|
+
@extend %color-effects;
|
|
224
|
+
color: $font-color-second;
|
|
225
|
+
&:hover, &[data-uitour="hover"] {
|
|
226
|
+
background-color: $danger-hover-color;
|
|
227
|
+
}
|
|
228
|
+
&:focus {
|
|
229
|
+
background-color: $danger-color;
|
|
230
|
+
-webkit-box-shadow: $shadow-button-inset;
|
|
231
|
+
box-shadow: $shadow-button-inset;
|
|
232
|
+
border: 1px solid $default-color;
|
|
233
|
+
border: rgba(0,0,0,0) solid 1px;
|
|
234
|
+
outline: 1px solid $danger-color;
|
|
235
|
+
outline: rgba(0,0,0,0) 0;
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
&.-success {
|
|
239
|
+
background-color: $success-color;
|
|
240
|
+
border: 1px solid $success-color;
|
|
241
|
+
text-shadow: $shadow-text-button;
|
|
242
|
+
@extend %color-effects;
|
|
243
|
+
color: $font-color-second;
|
|
244
|
+
&:hover, &[data-uitour="hover"] {
|
|
245
|
+
background-color: $success-hover-color;
|
|
246
|
+
color: $font-color-second;
|
|
247
|
+
}
|
|
248
|
+
&:focus {
|
|
249
|
+
background-color: $success-color;
|
|
250
|
+
-webkit-box-shadow: $shadow-button-inset;
|
|
251
|
+
box-shadow: $shadow-button-inset;
|
|
252
|
+
border: 1px solid $default-color;
|
|
253
|
+
border: rgba(0,0,0,0) solid 1px;
|
|
254
|
+
outline: 1px solid $success-color;
|
|
255
|
+
outline: rgba(0,0,0,0) 0;
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
&.-info {
|
|
259
|
+
background-color: $info-color;
|
|
260
|
+
border: 1px solid $info-color;
|
|
261
|
+
text-shadow: $shadow-text-button;
|
|
262
|
+
@extend %color-effects;
|
|
263
|
+
color: $font-color-second;
|
|
264
|
+
&:hover, &[data-uitour="hover"] {
|
|
265
|
+
background-color: $info-hover-color;
|
|
266
|
+
color: $font-color-second;
|
|
267
|
+
}
|
|
268
|
+
&:focus {
|
|
269
|
+
background-color: $info-color;
|
|
270
|
+
-webkit-box-shadow: $shadow-button-inset;
|
|
271
|
+
box-shadow: $shadow-button-inset;
|
|
272
|
+
border: 1px solid $default-color;
|
|
273
|
+
border: rgba(0,0,0,0) solid 1px;
|
|
274
|
+
outline: 1px solid $info-color;
|
|
275
|
+
outline: rgba(0,0,0,0) 0;
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
&.-transparenttext {
|
|
279
|
+
color: transparent !important;
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.btn-container,
|
|
284
|
+
.toolbar-group {
|
|
285
|
+
width: auto;
|
|
286
|
+
> .button-component {
|
|
287
|
+
margin-right: 10px;
|
|
288
|
+
line-height: 15px;
|
|
289
|
+
}
|
|
290
|
+
> .button-component:last-child {
|
|
291
|
+
margin-right: 1px;
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.button-component {
|
|
296
|
+
&.-primary .dropdown-icon,
|
|
297
|
+
&.-success .dropdown-icon,
|
|
298
|
+
&.-info .dropdown-icon,
|
|
299
|
+
&.-warinig .dropdown-icon,
|
|
300
|
+
&.-danger .dropdown-icon {
|
|
301
|
+
fill: #FFF;
|
|
302
|
+
}
|
|
303
|
+
.dropdown-icon {
|
|
304
|
+
margin-left: 7px;
|
|
305
|
+
margin-right: -10px;
|
|
306
|
+
}
|
|
307
|
+
&.icon-right .icon-component {
|
|
308
|
+
float: right;
|
|
309
|
+
margin: 1px 0 0 6px;
|
|
310
|
+
}
|
|
311
|
+
&.icon-left .icon-component {
|
|
312
|
+
float: left;
|
|
313
|
+
margin: 1px 6px 0 0;
|
|
314
|
+
}
|
|
315
|
+
&.icon-top .icon-component {
|
|
316
|
+
margin-top: 0px;
|
|
317
|
+
width: 100%;
|
|
318
|
+
}
|
|
319
|
+
&.icon-center .icon-component {
|
|
320
|
+
text-align: center;
|
|
321
|
+
vertical-align: center;
|
|
322
|
+
}
|
|
323
|
+
&.icon-bottom .icon-component {
|
|
324
|
+
position: relative;
|
|
325
|
+
left: 50%;
|
|
326
|
+
line-height: 30px;
|
|
327
|
+
bottom: -18px;
|
|
328
|
+
display: inline-flex;
|
|
329
|
+
vertical-align: middle;
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.button-component.-skeletonized {
|
|
334
|
+
@extend %skeleton-component;
|
|
335
|
+
color: transparent !important;
|
|
336
|
+
text-shadow: none;
|
|
337
|
+
box-shadow: none;
|
|
338
|
+
border-color: transparent !important;
|
|
339
|
+
transition: none;
|
|
340
|
+
|
|
341
|
+
> svg {
|
|
342
|
+
opacity: 0;
|
|
343
|
+
visibility: hidden;
|
|
344
|
+
}
|
|
345
|
+
}
|