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,96 @@
|
|
|
1
|
+
@import 'colors.scss';
|
|
2
|
+
.fieldset-component {
|
|
3
|
+
font-family: 'Roboto', sans-serif;
|
|
4
|
+
border: 1px solid $component-border-color;
|
|
5
|
+
padding: 5px;
|
|
6
|
+
width: 100%;
|
|
7
|
+
margin-bottom: 5px;
|
|
8
|
+
height: 100%;
|
|
9
|
+
display: flex;
|
|
10
|
+
flex-direction: column;
|
|
11
|
+
&.-danger {
|
|
12
|
+
border: 1px solid $danger-color;
|
|
13
|
+
> .legend {
|
|
14
|
+
background-color: $danger-color;
|
|
15
|
+
color: $font-color-second;
|
|
16
|
+
border: 1px solid $danger-color;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
&.-primary {
|
|
20
|
+
border: 1px solid $primary-border-color;
|
|
21
|
+
> .legend {
|
|
22
|
+
background-color: $primary-color;
|
|
23
|
+
color: $font-color-second;
|
|
24
|
+
border: 1px solid $primary-border-color;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
&.-warning {
|
|
28
|
+
border: 1px solid $warning-color;
|
|
29
|
+
> .legend {
|
|
30
|
+
background-color: $warning-color;
|
|
31
|
+
color: $font-color-second;
|
|
32
|
+
border: 1px solid $warning-color;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
&.-success {
|
|
36
|
+
border: 1px solid $success-color;
|
|
37
|
+
> .legend {
|
|
38
|
+
background-color: $success-color;
|
|
39
|
+
color: $font-color-second;
|
|
40
|
+
border: 1px solid $success-color;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
&.-info {
|
|
44
|
+
border: 1px solid $info-color;
|
|
45
|
+
> .legend {
|
|
46
|
+
background-color: $info-color;
|
|
47
|
+
color: $font-color-second;
|
|
48
|
+
border: 1px solid $info-color;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
&.-witherror {
|
|
52
|
+
border: 1px solid $input-error-border-color;
|
|
53
|
+
> .legend {
|
|
54
|
+
border: 1px solid $input-error-border-color;
|
|
55
|
+
background-color: $input-error-bg-color;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
> .legend {
|
|
59
|
+
border: 1px solid #eee;
|
|
60
|
+
padding: 2px 15px 0;
|
|
61
|
+
font-size: 11px;
|
|
62
|
+
font-weight: bold;
|
|
63
|
+
color: $font-color-soft;
|
|
64
|
+
background-color: $fieldset-default;
|
|
65
|
+
text-transform: uppercase;
|
|
66
|
+
border-radius: 0px 10px 0px 0px;
|
|
67
|
+
z-index: 9;
|
|
68
|
+
display: flex;
|
|
69
|
+
align-items: center;
|
|
70
|
+
gap: 8px;
|
|
71
|
+
}
|
|
72
|
+
> .errormessage {
|
|
73
|
+
position: relative;
|
|
74
|
+
float: right;
|
|
75
|
+
right: 20px;
|
|
76
|
+
background: #fff;
|
|
77
|
+
line-height: 1.2em;
|
|
78
|
+
}
|
|
79
|
+
> .contentfieldset {
|
|
80
|
+
font-size: 16px;
|
|
81
|
+
line-height: 26px;
|
|
82
|
+
height: 100%;
|
|
83
|
+
overflow: auto;
|
|
84
|
+
padding-bottom: 3px;
|
|
85
|
+
&.-templatecolumns {
|
|
86
|
+
display: grid;
|
|
87
|
+
grid-template-columns: repeat(3, 1fr);
|
|
88
|
+
grid-column-gap: 5px;
|
|
89
|
+
}
|
|
90
|
+
&.-templaterows {
|
|
91
|
+
display: grid;
|
|
92
|
+
grid-template-rows: repeat(2, 1fr);
|
|
93
|
+
grid-row-gap: 5px;
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
@import "colors.scss";
|
|
2
|
+
@import "effects";
|
|
3
|
+
@import "commons.scss";
|
|
4
|
+
|
|
5
|
+
::-webkit-file-upload-button {
|
|
6
|
+
display: none;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.button-component {
|
|
10
|
+
&.-transparentWithoutShadow {
|
|
11
|
+
border: none;
|
|
12
|
+
box-shadow: none;
|
|
13
|
+
background-color: transparent;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.input-dragdrop-container {
|
|
18
|
+
width: 100%;
|
|
19
|
+
height: 100%;
|
|
20
|
+
> .drag-content {
|
|
21
|
+
height: 100%;
|
|
22
|
+
width: 100%;
|
|
23
|
+
max-width: 100%;
|
|
24
|
+
text-align: center;
|
|
25
|
+
> .drag-position-element {
|
|
26
|
+
position: absolute;
|
|
27
|
+
width: 100%;
|
|
28
|
+
height: 100%;
|
|
29
|
+
border-radius: 1rem;
|
|
30
|
+
top: 0px;
|
|
31
|
+
right: 0px;
|
|
32
|
+
bottom: 0px;
|
|
33
|
+
left: 0px;
|
|
34
|
+
}
|
|
35
|
+
> .content {
|
|
36
|
+
padding: 2rem 1rem;
|
|
37
|
+
box-sizing: border-box;
|
|
38
|
+
flex-direction: column;
|
|
39
|
+
width: 100%;
|
|
40
|
+
height: 100%;
|
|
41
|
+
min-height: 150px;
|
|
42
|
+
display: flex;
|
|
43
|
+
margin: 0px;
|
|
44
|
+
align-items: center;
|
|
45
|
+
justify-content: center;
|
|
46
|
+
border-width: 2px;
|
|
47
|
+
border-radius: 1rem;
|
|
48
|
+
border-style: dashed;
|
|
49
|
+
border-color: #cbd5e1;
|
|
50
|
+
background-color: #f8fafc;
|
|
51
|
+
&.disapprovedFile {
|
|
52
|
+
background-color: #eec8c4;
|
|
53
|
+
border-color: $danger-border-color;
|
|
54
|
+
cursor: no-drop;
|
|
55
|
+
}
|
|
56
|
+
&.approvedFile {
|
|
57
|
+
background-color: #d1f0d7;
|
|
58
|
+
border-color: $success-border-color;
|
|
59
|
+
}
|
|
60
|
+
> img {
|
|
61
|
+
width: 50%;
|
|
62
|
+
object-fit: cover;
|
|
63
|
+
height: 150px;
|
|
64
|
+
}
|
|
65
|
+
> label {
|
|
66
|
+
width: 100%;
|
|
67
|
+
display: flex;
|
|
68
|
+
flex-direction: column;
|
|
69
|
+
align-items: center;
|
|
70
|
+
justify-content: center;
|
|
71
|
+
> .title {
|
|
72
|
+
font-weight: bold;
|
|
73
|
+
font-size: 24px;
|
|
74
|
+
color: #4f4e4e;
|
|
75
|
+
}
|
|
76
|
+
> .subtitle {
|
|
77
|
+
font-size: 14px !important;
|
|
78
|
+
color: #777777;
|
|
79
|
+
padding-bottom: 10px;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
> .file-list {
|
|
83
|
+
display: flex;
|
|
84
|
+
flex: 1;
|
|
85
|
+
gap: 20px;
|
|
86
|
+
overflow: auto;
|
|
87
|
+
width: 100%;
|
|
88
|
+
position: relative;
|
|
89
|
+
padding: 0 0 10px 0;
|
|
90
|
+
> .file-card {
|
|
91
|
+
width: 150px;
|
|
92
|
+
position: relative;
|
|
93
|
+
border-radius: 10px;
|
|
94
|
+
background-color: #dadada;
|
|
95
|
+
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
|
|
96
|
+
padding: 10px 10px;
|
|
97
|
+
height: 125px;
|
|
98
|
+
&:hover .delete-button{
|
|
99
|
+
opacity: 1;
|
|
100
|
+
pointer-events: all;
|
|
101
|
+
}
|
|
102
|
+
> .delete-button{
|
|
103
|
+
position: absolute;
|
|
104
|
+
padding: 0;
|
|
105
|
+
right: 0px;
|
|
106
|
+
opacity: 0;
|
|
107
|
+
pointer-events: none;
|
|
108
|
+
top: 8px;
|
|
109
|
+
& svg {
|
|
110
|
+
fill: $danger-color;
|
|
111
|
+
background-color: white;
|
|
112
|
+
border-radius: 10px;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
> .image-content {
|
|
116
|
+
img {
|
|
117
|
+
width: 130px;
|
|
118
|
+
object-fit: cover;
|
|
119
|
+
height: 80px;
|
|
120
|
+
max-height: 75px;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
> .description-file {
|
|
124
|
+
width: 100%;
|
|
125
|
+
overflow: hidden;
|
|
126
|
+
text-overflow: ellipsis;
|
|
127
|
+
white-space: nowrap;
|
|
128
|
+
> .subtitle {
|
|
129
|
+
font-size: 14px !important;
|
|
130
|
+
color: #777777;
|
|
131
|
+
padding-bottom: 10px;
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
& .color-icon-upload {
|
|
135
|
+
border-radius: 10px;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
> .image-preview-solo {
|
|
140
|
+
img {
|
|
141
|
+
width: 100%;
|
|
142
|
+
object-fit: contain;
|
|
143
|
+
height: 150px;
|
|
144
|
+
padding: 10px;
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
> .footer-button-action {
|
|
148
|
+
gap: 15px;
|
|
149
|
+
display: flex;
|
|
150
|
+
padding-top: 10px;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
> .errormessages {
|
|
155
|
+
width: 100%;
|
|
156
|
+
color: red;
|
|
157
|
+
font-size: 13px!important;
|
|
158
|
+
line-height: 13px;
|
|
159
|
+
margin-top: 3px;
|
|
160
|
+
}
|
|
161
|
+
> .-skeletonized {
|
|
162
|
+
height: 180px !important;
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.input-simple-file-container {
|
|
167
|
+
.-disabledVisualApply {
|
|
168
|
+
background: #fff5e5 !important;
|
|
169
|
+
> .size-position-icon {
|
|
170
|
+
> .button-component {
|
|
171
|
+
width: 25px;
|
|
172
|
+
height: 25px;
|
|
173
|
+
padding-top: 7px;
|
|
174
|
+
padding-bottom: 7px;
|
|
175
|
+
text-align: -webkit-center;
|
|
176
|
+
pointer-events: all;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
.-disabled-popover {
|
|
181
|
+
> button{
|
|
182
|
+
pointer-events: none !important;
|
|
183
|
+
opacity: 0.5;
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
> .errormessages {
|
|
187
|
+
width: 100%;
|
|
188
|
+
color: red;
|
|
189
|
+
font-size: 13px!important;
|
|
190
|
+
line-height: 13px;
|
|
191
|
+
margin-top: 3px;
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.popovercontainer{
|
|
196
|
+
width: 178px;
|
|
197
|
+
> p {
|
|
198
|
+
> .list-simple-file {
|
|
199
|
+
width: 100%;
|
|
200
|
+
overflow: hidden;
|
|
201
|
+
white-space: nowrap;
|
|
202
|
+
background-color: #a5a3a3;
|
|
203
|
+
border-radius: 5px;
|
|
204
|
+
padding: 5px;
|
|
205
|
+
margin-bottom: 10px;
|
|
206
|
+
> .file-name {
|
|
207
|
+
overflow: hidden;
|
|
208
|
+
text-overflow: ellipsis;
|
|
209
|
+
> span{
|
|
210
|
+
font-size: 12px;
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.-skeletonized {
|
|
218
|
+
@extend %skeleton-component;
|
|
219
|
+
color: transparent !important;
|
|
220
|
+
text-shadow: none;
|
|
221
|
+
box-shadow: none;
|
|
222
|
+
border-color: transparent !important;
|
|
223
|
+
transition: none;
|
|
224
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
@import "colors.scss";
|
|
2
|
+
@import "commons.scss";
|
|
3
|
+
@import "effects.scss";
|
|
4
|
+
.floatmenu-component {
|
|
5
|
+
width: 100%;
|
|
6
|
+
display: flex;
|
|
7
|
+
justify-content: center;
|
|
8
|
+
>.buttonfloat {
|
|
9
|
+
padding: 8px;
|
|
10
|
+
width: 100%;
|
|
11
|
+
text-align: center;
|
|
12
|
+
>.icon-component {
|
|
13
|
+
float: none;
|
|
14
|
+
margin-right: 2px;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
%component-fonts {
|
|
2
|
+
color: #666;
|
|
3
|
+
font-size: 16px;
|
|
4
|
+
font-family: 'Roboto';
|
|
5
|
+
font-weight: 400;
|
|
6
|
+
outline: none;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
%component-font-headers {
|
|
10
|
+
@extend %component-fonts;
|
|
11
|
+
font-size: 16px;
|
|
12
|
+
font-weight: bold;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
@font-face {
|
|
16
|
+
font-family: 'Roboto';
|
|
17
|
+
src: url('../fonts/Roboto-Thin.woff2') format('woff2'), url('../fonts/Roboto-Thin.woff') format('woff');
|
|
18
|
+
font-weight: 100;
|
|
19
|
+
font-style: normal;
|
|
20
|
+
}
|
|
21
|
+
@font-face {
|
|
22
|
+
font-family: 'Roboto';
|
|
23
|
+
src: url('../fonts/Roboto-Light.woff2') format('woff2'), url('../fonts/Roboto-Light.woff') format('woff');
|
|
24
|
+
font-weight: 300;
|
|
25
|
+
font-style: normal;
|
|
26
|
+
}
|
|
27
|
+
@font-face {
|
|
28
|
+
font-family: 'Roboto';
|
|
29
|
+
src: url('../fonts/Roboto-Bold.woff2') format('woff2'), url('../fonts/Roboto-Bold.woff') format('woff');
|
|
30
|
+
font-weight: bold;
|
|
31
|
+
font-style: normal;
|
|
32
|
+
}
|
|
33
|
+
@font-face {
|
|
34
|
+
font-family: 'Roboto';
|
|
35
|
+
src: url('../fonts/Roboto-Medium.woff2') format('woff2'), url('../fonts/Roboto-Medium.woff') format('woff');
|
|
36
|
+
font-weight: 500;
|
|
37
|
+
font-style: normal;
|
|
38
|
+
}
|
|
39
|
+
@font-face {
|
|
40
|
+
font-family: 'Roboto';
|
|
41
|
+
src: url('../fonts/Roboto-Black.woff2') format('woff2'), url('../fonts/Roboto-Black.woff') format('woff');
|
|
42
|
+
font-weight: 900;
|
|
43
|
+
font-style: normal;
|
|
44
|
+
}
|
|
45
|
+
@font-face {
|
|
46
|
+
font-family: 'Titillium Web';
|
|
47
|
+
src: url('../fonts/TitilliumWeb-Regular.woff2') format('woff2'), url('../fonts/TitilliumWeb-Regular.woff') format('woff');
|
|
48
|
+
font-weight: normal;
|
|
49
|
+
font-style: normal;
|
|
50
|
+
}
|
|
51
|
+
@font-face {
|
|
52
|
+
font-family: 'Titillium Web';
|
|
53
|
+
src: url('../fonts/TitilliumWeb-ExtraLight.woff2') format('woff2'), url('../fonts/TitilliumWeb-ExtraLight.woff') format('woff');
|
|
54
|
+
font-weight: 200;
|
|
55
|
+
font-style: normal;
|
|
56
|
+
}
|
|
57
|
+
@font-face {
|
|
58
|
+
font-family: 'Titillium Web';
|
|
59
|
+
src: url('../fonts/TitilliumWeb-Bold.woff2') format('woff2'), url('../fonts/TitilliumWeb-Bold.woff') format('woff');
|
|
60
|
+
font-weight: bold;
|
|
61
|
+
font-style: normal;
|
|
62
|
+
}
|
|
63
|
+
@font-face {
|
|
64
|
+
font-family: 'Roboto';
|
|
65
|
+
src: url('../fonts/Roboto-Regular.woff2') format('woff2'), url('../fonts/Roboto-Regular.woff') format('woff');
|
|
66
|
+
font-weight: normal;
|
|
67
|
+
font-style: normal;
|
|
68
|
+
}
|
|
69
|
+
@font-face {
|
|
70
|
+
font-family: 'Titillium Web';
|
|
71
|
+
src: url('../fonts/TitilliumWeb-Light.woff2') format('woff2'), url('../fonts/TitilliumWeb-Light.woff') format('woff');
|
|
72
|
+
font-weight: 300;
|
|
73
|
+
font-style: normal;
|
|
74
|
+
}
|
|
75
|
+
@font-face {
|
|
76
|
+
font-family: 'Titillium Web';
|
|
77
|
+
src: url('../fonts/TitilliumWeb-Black.woff2') format('woff2'), url('../fonts/TitilliumWeb-Black.woff') format('woff');
|
|
78
|
+
font-weight: 900;
|
|
79
|
+
font-style: normal;
|
|
80
|
+
}
|
|
81
|
+
@font-face {
|
|
82
|
+
font-family: 'Titillium Web';
|
|
83
|
+
src: url('../fonts/TitilliumWeb-SemiBold.woff2') format('woff2'), url('../fonts/TitilliumWeb-SemiBold.woff') format('woff');
|
|
84
|
+
font-weight: 600;
|
|
85
|
+
font-style: normal;
|
|
86
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
@import "commons.scss";
|
|
2
|
+
@import "colors.scss";
|
|
3
|
+
.form-component {
|
|
4
|
+
.arraycontainer {
|
|
5
|
+
margin-bottom: 5px;
|
|
6
|
+
border: 0;
|
|
7
|
+
&.-bordered {
|
|
8
|
+
border-radius: 2px;
|
|
9
|
+
border: 1px solid $component-border-color;
|
|
10
|
+
padding: 5px;
|
|
11
|
+
> .label {
|
|
12
|
+
padding: 0 4px;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
> .label {
|
|
16
|
+
@extend %input-label;
|
|
17
|
+
border: 0;
|
|
18
|
+
background-color: transparent;
|
|
19
|
+
text-transform: none;
|
|
20
|
+
font-weight: normal;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|