@epam/uui 5.5.0 → 5.5.2
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/assets/styles/buttonLayout.scss +67 -67
- package/assets/styles/controlLayout.scss +28 -28
- package/assets/styles/dnd.scss +9 -9
- package/assets/styles/effects.scss +7 -7
- package/assets/styles/icons.scss +19 -19
- package/assets/styles/index.scss +8 -8
- package/assets/styles/inputs.scss +74 -74
- package/assets/styles/text-size.scss +42 -42
- package/assets/styles/typography.scss +174 -174
- package/build/assets/styles/buttonLayout.scss +67 -0
- package/build/assets/styles/controlLayout.scss +28 -0
- package/build/assets/styles/dnd.scss +9 -0
- package/build/assets/styles/effects.scss +7 -0
- package/build/assets/styles/icons.scss +19 -0
- package/build/assets/styles/index.scss +8 -0
- package/build/assets/styles/inputs.scss +74 -0
- package/build/assets/styles/text-size.scss +42 -0
- package/build/assets/styles/typography.scss +174 -0
- package/build/components/tables/DataTableHeaderCell.d.ts +21 -0
- package/build/components/tables/DataTableHeaderCell.d.ts.map +1 -0
- package/build/index.esm.js +4740 -0
- package/build/index.esm.js.map +1 -0
- package/build/index.js +4905 -0
- package/build/index.js.map +1 -0
- package/build/package.json +37 -0
- package/build/readme.md +5 -0
- package/build/stats.html +4838 -0
- package/build/styles.css +11145 -0
- package/build/styles.css.map +1 -0
- package/components/buttons/Button.module.scss +157 -0
- package/components/buttons/Button.tsx +53 -0
- package/components/buttons/IconButton.module.scss +44 -0
- package/components/buttons/IconButton.tsx +23 -0
- package/components/buttons/LinkButton.module.scss +85 -0
- package/components/buttons/LinkButton.tsx +48 -0
- package/components/buttons/TabButton.module.scss +94 -0
- package/components/buttons/TabButton.tsx +50 -0
- package/components/buttons/VerticalTabButton.module.scss +7 -0
- package/components/buttons/VerticalTabButton.tsx +12 -0
- package/components/buttons/__tests__/Button.test.tsx +34 -0
- package/components/buttons/__tests__/IconButton.test.tsx +16 -0
- package/components/buttons/__tests__/LinkButton.test.tsx +16 -0
- package/components/buttons/__tests__/TabButton.test.tsx +16 -0
- package/components/buttons/__tests__/VerticalTabButton.test.tsx +16 -0
- package/components/buttons/__tests__/__snapshots__/Button.test.tsx.snap +60 -0
- package/components/buttons/__tests__/__snapshots__/IconButton.test.tsx.snap +34 -0
- package/components/buttons/__tests__/__snapshots__/LinkButton.test.tsx.snap +47 -0
- package/components/buttons/__tests__/__snapshots__/TabButton.test.tsx.snap +31 -0
- package/components/buttons/__tests__/__snapshots__/VerticalTabButton.test.tsx.snap +31 -0
- package/components/buttons/helper.ts +22 -0
- package/components/buttons/index.ts +5 -0
- package/components/datePickers/Calendar.module.scss +143 -0
- package/components/datePickers/Calendar.tsx +10 -0
- package/components/datePickers/CalendarPresets.module.scss +30 -0
- package/components/datePickers/CalendarPresets.tsx +9 -0
- package/components/datePickers/DatePicker.tsx +79 -0
- package/components/datePickers/DatePickerBody.module.scss +107 -0
- package/components/datePickers/DatePickerBody.tsx +78 -0
- package/components/datePickers/DatePickerHeader.module.scss +15 -0
- package/components/datePickers/DatePickerHeader.tsx +126 -0
- package/components/datePickers/RangeDatePicker.module.scss +101 -0
- package/components/datePickers/RangeDatePicker.tsx +120 -0
- package/components/datePickers/RangeDatePickerBody.module.scss +128 -0
- package/components/datePickers/RangeDatePickerBody.tsx +263 -0
- package/components/datePickers/__tests__/Calendar.test.tsx +11 -0
- package/components/datePickers/__tests__/CalendarPresets.test.tsx +11 -0
- package/components/datePickers/__tests__/DatePicker.test.tsx +153 -0
- package/components/datePickers/__tests__/DatePickerBody.test.tsx +64 -0
- package/components/datePickers/__tests__/DatePickerHeader.test.tsx +195 -0
- package/components/datePickers/__tests__/RangeDatePicker.test.tsx +323 -0
- package/components/datePickers/__tests__/RangeDatePickerBody.test.tsx +284 -0
- package/components/datePickers/__tests__/__snapshots__/Calendar.test.tsx.snap +524 -0
- package/components/datePickers/__tests__/__snapshots__/CalendarPresets.test.tsx.snap +61 -0
- package/components/datePickers/__tests__/__snapshots__/DatePicker.test.tsx.snap +59 -0
- package/components/datePickers/__tests__/__snapshots__/DatePickerBody.test.tsx.snap +619 -0
- package/components/datePickers/__tests__/__snapshots__/RangeDatePicker.test.tsx.snap +119 -0
- package/components/datePickers/__tests__/__snapshots__/RangeDatePickerBody.test.tsx.snap +1231 -0
- package/components/datePickers/index.ts +5 -0
- package/components/dnd/DropMarker.module.scss +62 -0
- package/components/dnd/DropMarker.tsx +28 -0
- package/components/dnd/__tests__/DropMarker.test.tsx +31 -0
- package/components/dnd/__tests__/__snapshots__/DropMarker.test.tsx.snap +7 -0
- package/components/dnd/index.tsx +1 -0
- package/components/fileUpload/DropSpot.module.scss +47 -0
- package/components/fileUpload/DropSpot.tsx +68 -0
- package/components/fileUpload/FileCard.module.scss +88 -0
- package/components/fileUpload/FileCard.tsx +147 -0
- package/components/fileUpload/SvgCircleProgress.module.scss +8 -0
- package/components/fileUpload/SvgCircleProgress.tsx +41 -0
- package/components/fileUpload/__tests__/DropSpot.test.tsx +15 -0
- package/components/fileUpload/__tests__/FileCard.test.tsx +57 -0
- package/components/fileUpload/__tests__/SvgCircleProgress.test.tsx +10 -0
- package/components/fileUpload/__tests__/__snapshots__/DropSpot.test.tsx.snap +130 -0
- package/components/fileUpload/__tests__/__snapshots__/FileCard.test.tsx.snap +266 -0
- package/components/fileUpload/__tests__/__snapshots__/SvgCircleProgress.test.tsx.snap +26 -0
- package/components/fileUpload/index.ts +3 -0
- package/components/filters/FilterDatePickerBody.tsx +58 -0
- package/components/filters/FilterItemBody.tsx +23 -0
- package/components/filters/FilterNumericBody.module.scss +4 -0
- package/components/filters/FilterNumericBody.tsx +131 -0
- package/components/filters/FilterPanelItemToggler.module.scss +140 -0
- package/components/filters/FilterPanelItemToggler.tsx +91 -0
- package/components/filters/FilterPickerBody.tsx +75 -0
- package/components/filters/FilterRangeDatePickerBody.module.scss +92 -0
- package/components/filters/FilterRangeDatePickerBody.tsx +85 -0
- package/components/filters/FiltersPanel.tsx +218 -0
- package/components/filters/FiltersPanelItem.module.scss +22 -0
- package/components/filters/FiltersPanelItem.tsx +269 -0
- package/components/filters/PresetPanel/Preset.module.scss +25 -0
- package/components/filters/PresetPanel/Preset.tsx +61 -0
- package/components/filters/PresetPanel/PresetActionsDropdown.module.scss +23 -0
- package/components/filters/PresetPanel/PresetActionsDropdown.tsx +138 -0
- package/components/filters/PresetPanel/PresetInput.module.scss +55 -0
- package/components/filters/PresetPanel/PresetInput.tsx +54 -0
- package/components/filters/PresetPanel/PresetsPanel.module.scss +34 -0
- package/components/filters/PresetPanel/PresetsPanel.tsx +112 -0
- package/components/filters/PresetPanel/__tests__/Preset.test.tsx +44 -0
- package/components/filters/PresetPanel/__tests__/PresetActionsDropdown.test.tsx +28 -0
- package/components/filters/PresetPanel/__tests__/PresetInput.test.tsx +10 -0
- package/components/filters/PresetPanel/__tests__/__snapshots__/Preset.test.tsx.snap +101 -0
- package/components/filters/PresetPanel/__tests__/__snapshots__/PresetActionsDropdown.test.tsx.snap +19 -0
- package/components/filters/PresetPanel/__tests__/__snapshots__/PresetInput.test.tsx.snap +38 -0
- package/components/filters/PresetPanel/__tests__/__snapshots__/presetsPanel.test.tsx.snap +101 -0
- package/components/filters/PresetPanel/__tests__/presetsPanel.test.tsx +381 -0
- package/components/filters/PresetPanel/constants.ts +4 -0
- package/components/filters/PresetPanel/index.ts +1 -0
- package/components/filters/__tests__/__snapshots__/filtersPanel.test.tsx.snap +295 -0
- package/components/filters/__tests__/filtersPanel.test.tsx +375 -0
- package/components/filters/constants.ts +4 -0
- package/components/filters/defaultPredicates.ts +11 -0
- package/components/filters/index.ts +4 -0
- package/components/forms/Form.tsx +39 -0
- package/components/forms/index.tsx +2 -0
- package/components/forms/useForm.tsx +39 -0
- package/components/index.ts +14 -0
- package/components/inputs/Checkbox.module.scss +162 -0
- package/components/inputs/Checkbox.tsx +43 -0
- package/components/inputs/InputAddon.module.scss +11 -0
- package/components/inputs/InputAddon.tsx +11 -0
- package/components/inputs/MultiSwitch.tsx +54 -0
- package/components/inputs/NumericInput.module.scss +97 -0
- package/components/inputs/NumericInput.tsx +53 -0
- package/components/inputs/RadioInput.module.scss +200 -0
- package/components/inputs/RadioInput.tsx +30 -0
- package/components/inputs/Slider.module.scss +130 -0
- package/components/inputs/Slider.tsx +11 -0
- package/components/inputs/Switch.module.scss +172 -0
- package/components/inputs/Switch.tsx +22 -0
- package/components/inputs/TextArea.module.scss +210 -0
- package/components/inputs/TextArea.tsx +47 -0
- package/components/inputs/TextInput.module.scss +199 -0
- package/components/inputs/TextInput.tsx +60 -0
- package/components/inputs/TimePicker.module.scss +68 -0
- package/components/inputs/TimePicker.tsx +79 -0
- package/components/inputs/TimePickerBody.tsx +10 -0
- package/components/inputs/__tests__/Checkbox.test.tsx +15 -0
- package/components/inputs/__tests__/InputAddon.test.tsx +12 -0
- package/components/inputs/__tests__/MultiSwitch.test.tsx +16 -0
- package/components/inputs/__tests__/NumericInput.test.tsx +19 -0
- package/components/inputs/__tests__/RadioInput.test.tsx +15 -0
- package/components/inputs/__tests__/Slider.test.tsx +22 -0
- package/components/inputs/__tests__/Switch.test.tsx +15 -0
- package/components/inputs/__tests__/TextArea.test.tsx +15 -0
- package/components/inputs/__tests__/TextInput.test.tsx +20 -0
- package/components/inputs/__tests__/TimePicker.test.tsx +19 -0
- package/components/inputs/__tests__/TimePickerBody.test.tsx +38 -0
- package/components/inputs/__tests__/__snapshots__/Checkbox.test.tsx.snap +37 -0
- package/components/inputs/__tests__/__snapshots__/InputAddon.test.tsx.snap +9 -0
- package/components/inputs/__tests__/__snapshots__/MultiSwitch.test.tsx.snap +37 -0
- package/components/inputs/__tests__/__snapshots__/NumericInput.test.tsx.snap +95 -0
- package/components/inputs/__tests__/__snapshots__/RadioInput.test.tsx.snap +40 -0
- package/components/inputs/__tests__/__snapshots__/Slider.test.tsx.snap +157 -0
- package/components/inputs/__tests__/__snapshots__/Switch.test.tsx.snap +48 -0
- package/components/inputs/__tests__/__snapshots__/TextArea.test.tsx.snap +38 -0
- package/components/inputs/__tests__/__snapshots__/TextInput.test.tsx.snap +55 -0
- package/components/inputs/__tests__/__snapshots__/TimePicker.test.tsx +19 -0
- package/components/inputs/__tests__/__snapshots__/TimePicker.test.tsx.snap +45 -0
- package/components/inputs/__tests__/__snapshots__/TimePickerBody.test.tsx +38 -0
- package/components/inputs/__tests__/__snapshots__/TimePickerBody.test.tsx.snap +327 -0
- package/components/inputs/__tests__/__snapshots__/__snapshots__/TimePicker.test.tsx.snap +45 -0
- package/components/inputs/__tests__/__snapshots__/__snapshots__/TimePickerBody.test.tsx.snap +327 -0
- package/components/inputs/index.ts +10 -0
- package/components/layout/Accordion.module.scss +180 -0
- package/components/layout/Accordion.tsx +35 -0
- package/components/layout/Blocker.module.scss +30 -0
- package/components/layout/Blocker.tsx +11 -0
- package/components/layout/CheckboxGroup.module.scss +21 -0
- package/components/layout/CheckboxGroup.tsx +74 -0
- package/components/layout/ControlGroup.module.scss +15 -0
- package/components/layout/ControlGroup.tsx +5 -0
- package/components/layout/FlexItems/FlexCell.module.scss +5 -0
- package/components/layout/FlexItems/FlexCell.tsx +11 -0
- package/components/layout/FlexItems/FlexRow.module.scss +122 -0
- package/components/layout/FlexItems/FlexRow.tsx +63 -0
- package/components/layout/FlexItems/Panel.module.scss +34 -0
- package/components/layout/FlexItems/Panel.tsx +29 -0
- package/components/layout/FlexItems/__tests__/FlexCell.test.tsx +15 -0
- package/components/layout/FlexItems/__tests__/FlexRow.test.tsx +17 -0
- package/components/layout/FlexItems/__tests__/FlexSpacer.test.tsx +10 -0
- package/components/layout/FlexItems/__tests__/Panel.test.tsx +15 -0
- package/components/layout/FlexItems/__tests__/__snapshots__/FlexCell.test.tsx.snap +34 -0
- package/components/layout/FlexItems/__tests__/__snapshots__/FlexRow.test.tsx.snap +26 -0
- package/components/layout/FlexItems/__tests__/__snapshots__/FlexSpacer.test.tsx.snap +7 -0
- package/components/layout/FlexItems/__tests__/__snapshots__/Panel.test.tsx.snap +14 -0
- package/components/layout/FlexItems/index.ts +4 -0
- package/components/layout/LabeledInput.module.scss +139 -0
- package/components/layout/LabeledInput.tsx +22 -0
- package/components/layout/RadioGroup.module.scss +21 -0
- package/components/layout/RadioGroup.tsx +68 -0
- package/components/layout/ScrollBars.module.scss +56 -0
- package/components/layout/ScrollBars.tsx +11 -0
- package/components/layout/VirtualList.module.scss +10 -0
- package/components/layout/VirtualList.tsx +126 -0
- package/components/layout/__tests__/Accordion.test.tsx +16 -0
- package/components/layout/__tests__/Blocker.test.tsx +10 -0
- package/components/layout/__tests__/CheckboxGroup.test.tsx +33 -0
- package/components/layout/__tests__/ControlGroup.test.tsx +18 -0
- package/components/layout/__tests__/LabeledInput.test.tsx +26 -0
- package/components/layout/__tests__/RadioGroup.test.tsx +33 -0
- package/components/layout/__tests__/ScrollBars.test.tsx +17 -0
- package/components/layout/__tests__/VirtualList.test.tsx +10 -0
- package/components/layout/__tests__/__snapshots__/Accordion.test.tsx.snap +65 -0
- package/components/layout/__tests__/__snapshots__/Blocker.test.tsx.snap +36 -0
- package/components/layout/__tests__/__snapshots__/CheckboxGroup.test.tsx.snap +99 -0
- package/components/layout/__tests__/__snapshots__/ControlGroup.test.tsx.snap +33 -0
- package/components/layout/__tests__/__snapshots__/LabeledInput.test.tsx.snap +89 -0
- package/components/layout/__tests__/__snapshots__/RadioGroup.test.tsx.snap +95 -0
- package/components/layout/__tests__/__snapshots__/ScrollBars.test.tsx.snap +68 -0
- package/components/layout/__tests__/__snapshots__/VirtualList.test.tsx.snap +90 -0
- package/components/layout/index.ts +10 -0
- package/components/navigation/Anchor.module.scss +7 -0
- package/components/navigation/Anchor.tsx +5 -0
- package/components/navigation/MainMenu/Burger/Burger.module.scss +81 -0
- package/components/navigation/MainMenu/Burger/Burger.tsx +18 -0
- package/components/navigation/MainMenu/Burger/BurgerButton.module.scss +69 -0
- package/components/navigation/MainMenu/Burger/BurgerButton.tsx +28 -0
- package/components/navigation/MainMenu/Burger/BurgerGroupHeader.module.scss +31 -0
- package/components/navigation/MainMenu/Burger/BurgerGroupHeader.tsx +19 -0
- package/components/navigation/MainMenu/Burger/BurgerSearch.module.scss +51 -0
- package/components/navigation/MainMenu/Burger/BurgerSearch.tsx +23 -0
- package/components/navigation/MainMenu/Burger/__tests__/Burger.test.tsx +13 -0
- package/components/navigation/MainMenu/Burger/__tests__/BurgerButton.test.tsx +18 -0
- package/components/navigation/MainMenu/Burger/__tests__/BurgerGroupHeader.test.tsx +10 -0
- package/components/navigation/MainMenu/Burger/__tests__/BurgerSearch.test.tsx +20 -0
- package/components/navigation/MainMenu/Burger/__tests__/__snapshots__/Burger.test.tsx.snap +21 -0
- package/components/navigation/MainMenu/Burger/__tests__/__snapshots__/BurgerButton.test.tsx.snap +46 -0
- package/components/navigation/MainMenu/Burger/__tests__/__snapshots__/BurgerGroupHeader.test.tsx.snap +16 -0
- package/components/navigation/MainMenu/Burger/__tests__/__snapshots__/BurgerSearch.test.tsx.snap +55 -0
- package/components/navigation/MainMenu/Burger/index.ts +4 -0
- package/components/navigation/MainMenu/GlobalMenu.module.scss +32 -0
- package/components/navigation/MainMenu/GlobalMenu.tsx +15 -0
- package/components/navigation/MainMenu/MainMenu.module.scss +53 -0
- package/components/navigation/MainMenu/MainMenu.tsx +22 -0
- package/components/navigation/MainMenu/MainMenuAvatar.module.scss +41 -0
- package/components/navigation/MainMenu/MainMenuAvatar.tsx +31 -0
- package/components/navigation/MainMenu/MainMenuButton.module.scss +60 -0
- package/components/navigation/MainMenu/MainMenuButton.tsx +17 -0
- package/components/navigation/MainMenu/MainMenuDropdown.module.scss +44 -0
- package/components/navigation/MainMenu/MainMenuDropdown.tsx +47 -0
- package/components/navigation/MainMenu/MainMenuIcon.module.scss +25 -0
- package/components/navigation/MainMenu/MainMenuIcon.tsx +17 -0
- package/components/navigation/MainMenu/MainMenuSearch.module.scss +51 -0
- package/components/navigation/MainMenu/MainMenuSearch.tsx +27 -0
- package/components/navigation/MainMenu/__tests__/GlobalMenu.test.tsx +10 -0
- package/components/navigation/MainMenu/__tests__/MainMenu.test.tsx +45 -0
- package/components/navigation/MainMenu/__tests__/MainMenuAvatar.test.tsx +27 -0
- package/components/navigation/MainMenu/__tests__/MainMenuButton.test.tsx +30 -0
- package/components/navigation/MainMenu/__tests__/MainMenuDropdown.test.tsx +24 -0
- package/components/navigation/MainMenu/__tests__/MainMenuIcon.test.tsx +18 -0
- package/components/navigation/MainMenu/__tests__/MainMenuSearch.test.tsx +28 -0
- package/components/navigation/MainMenu/__tests__/__snapshots__/GlobalMenu.test.tsx.snap +17 -0
- package/components/navigation/MainMenu/__tests__/__snapshots__/MainMenu.test.tsx.snap +103 -0
- package/components/navigation/MainMenu/__tests__/__snapshots__/MainMenuAvatar.test.tsx.snap +39 -0
- package/components/navigation/MainMenu/__tests__/__snapshots__/MainMenuButton.test.tsx.snap +37 -0
- package/components/navigation/MainMenu/__tests__/__snapshots__/MainMenuDropdown.test.tsx.snap +46 -0
- package/components/navigation/MainMenu/__tests__/__snapshots__/MainMenuIcon.test.tsx.snap +39 -0
- package/components/navigation/MainMenu/__tests__/__snapshots__/MainMenuSearch.test.tsx.snap +55 -0
- package/components/navigation/MainMenu/index.ts +8 -0
- package/components/navigation/__tests__/Anchor.test.tsx +21 -0
- package/components/navigation/__tests__/__snapshots__/Anchor.test.tsx.snap +29 -0
- package/components/navigation/index.ts +2 -0
- package/components/overlays/Alert.module.scss +77 -0
- package/components/overlays/Alert.tsx +89 -0
- package/components/overlays/ConfirmationModal.tsx +41 -0
- package/components/overlays/Dropdown.tsx +4 -0
- package/components/overlays/DropdownContainer.module.scss +93 -0
- package/components/overlays/DropdownContainer.tsx +27 -0
- package/components/overlays/DropdownMenu.module.scss +181 -0
- package/components/overlays/DropdownMenu.tsx +262 -0
- package/components/overlays/Modals.module.scss +63 -0
- package/components/overlays/Modals.tsx +92 -0
- package/components/overlays/NotificationCard.module.scss +76 -0
- package/components/overlays/NotificationCard.tsx +103 -0
- package/components/overlays/Tooltip.module.scss +90 -0
- package/components/overlays/Tooltip.tsx +24 -0
- package/components/overlays/__tests__/Alert.test.tsx +57 -0
- package/components/overlays/__tests__/ConfirmationModal.test.tsx +29 -0
- package/components/overlays/__tests__/Dropdown.test.tsx +16 -0
- package/components/overlays/__tests__/DropdownContainer.test.tsx +28 -0
- package/components/overlays/__tests__/DropdownMenu.test.tsx +26 -0
- package/components/overlays/__tests__/Modals.test.tsx +35 -0
- package/components/overlays/__tests__/NotificationCard.test.tsx +52 -0
- package/components/overlays/__tests__/Tooltip.test.tsx +20 -0
- package/components/overlays/__tests__/__snapshots__/Alert.test.tsx.snap +183 -0
- package/components/overlays/__tests__/__snapshots__/ConfirmationModal.test.tsx.snap +351 -0
- package/components/overlays/__tests__/__snapshots__/Dropdown.test.tsx.snap +51 -0
- package/components/overlays/__tests__/__snapshots__/DropdownContainer.test.tsx.snap +45 -0
- package/components/overlays/__tests__/__snapshots__/DropdownMenu.test.tsx.snap +90 -0
- package/components/overlays/__tests__/__snapshots__/Modals.test.tsx.snap +134 -0
- package/components/overlays/__tests__/__snapshots__/NotificationCard.test.tsx.snap +284 -0
- package/components/overlays/__tests__/__snapshots__/Tooltip.test.tsx.snap +5 -0
- package/components/overlays/index.ts +8 -0
- package/components/pickers/DataPickerBody.module.scss +54 -0
- package/components/pickers/DataPickerBody.tsx +69 -0
- package/components/pickers/DataPickerCell.module.scss +93 -0
- package/components/pickers/DataPickerCell.tsx +95 -0
- package/components/pickers/DataPickerFooter.tsx +85 -0
- package/components/pickers/DataPickerHeader.module.scss +19 -0
- package/components/pickers/DataPickerHeader.tsx +24 -0
- package/components/pickers/DataPickerRow.module.scss +11 -0
- package/components/pickers/DataPickerRow.tsx +38 -0
- package/components/pickers/MobileDropdownWrapper.module.scss +20 -0
- package/components/pickers/MobileDropdownWrapper.tsx +40 -0
- package/components/pickers/PickerInput.module.scss +39 -0
- package/components/pickers/PickerInput.tsx +197 -0
- package/components/pickers/PickerItem.module.scss +32 -0
- package/components/pickers/PickerItem.tsx +66 -0
- package/components/pickers/PickerList.tsx +83 -0
- package/components/pickers/PickerListItem.module.scss +3 -0
- package/components/pickers/PickerListItem.tsx +55 -0
- package/components/pickers/PickerModal.module.scss +27 -0
- package/components/pickers/PickerModal.tsx +167 -0
- package/components/pickers/PickerToggler.module.scss +249 -0
- package/components/pickers/PickerToggler.tsx +88 -0
- package/components/pickers/__tests__/DataPickerBody.test.tsx +58 -0
- package/components/pickers/__tests__/DataPickerRow.test.tsx +39 -0
- package/components/pickers/__tests__/PickerInput.test.tsx +1073 -0
- package/components/pickers/__tests__/PickerList.test.tsx +597 -0
- package/components/pickers/__tests__/PickerModal.test.tsx +521 -0
- package/components/pickers/__tests__/PickerToggler.test.tsx +40 -0
- package/components/pickers/__tests__/__snapshots__/DataPickerBody.test.tsx.snap +201 -0
- package/components/pickers/__tests__/__snapshots__/DataPickerRow.test.tsx.snap +100 -0
- package/components/pickers/__tests__/__snapshots__/PickerInput.test.tsx.snap +705 -0
- package/components/pickers/__tests__/__snapshots__/PickerList.test.tsx.snap +980 -0
- package/components/pickers/__tests__/__snapshots__/PickerModal.test.tsx.snap +2062 -0
- package/components/pickers/__tests__/__snapshots__/PickerToggler.test.tsx.snap +81 -0
- package/components/pickers/__tests__/highlight.test.tsx +37 -0
- package/components/pickers/__tests__/mocks.ts +87 -0
- package/components/pickers/helpers.ts +4 -0
- package/components/pickers/highlight.tsx +93 -0
- package/components/pickers/index.ts +12 -0
- package/components/pickers/types.ts +7 -0
- package/components/tables/ColumnHeaderDropdown/ColumnHeaderDropdown.tsx +46 -0
- package/components/tables/ColumnHeaderDropdown/SortingPanel.module.scss +14 -0
- package/components/tables/ColumnHeaderDropdown/SortingPanel.tsx +27 -0
- package/components/tables/ColumnHeaderDropdown/index.ts +1 -0
- package/components/tables/DataRowsContainer/DataRowsContainer.module.scss +21 -0
- package/components/tables/DataRowsContainer/DataRowsContainer.tsx +27 -0
- package/components/tables/DataRowsContainer/DataRowsGroups.tsx +86 -0
- package/components/tables/DataRowsContainer/index.tsx +1 -0
- package/components/tables/DataRowsContainer/utils.ts +15 -0
- package/components/tables/DataTable.module.scss +54 -0
- package/components/tables/DataTable.tsx +172 -0
- package/components/tables/DataTableCell.module.scss +65 -0
- package/components/tables/DataTableCell.tsx +51 -0
- package/components/tables/DataTableHeaderCell.module.scss +161 -0
- package/components/tables/DataTableHeaderCell.tsx +151 -0
- package/components/tables/DataTableHeaderRow.module.scss +23 -0
- package/components/tables/DataTableHeaderRow.tsx +19 -0
- package/components/tables/DataTableRow.module.scss +58 -0
- package/components/tables/DataTableRow.tsx +31 -0
- package/components/tables/__tests__/ColumnHeaderDropdown.test.tsx +25 -0
- package/components/tables/__tests__/DataTable.test.tsx +23 -0
- package/components/tables/__tests__/DataTableCell.test.tsx +66 -0
- package/components/tables/__tests__/DataTableHeaderCell.test.tsx +21 -0
- package/components/tables/__tests__/DataTableHeaderRow.test.tsx +28 -0
- package/components/tables/__tests__/DataTableRow.test.tsx +30 -0
- package/components/tables/__tests__/__snapshots__/ColumnHeaderDropdown.test.tsx.snap +138 -0
- package/components/tables/__tests__/__snapshots__/DataTable.test.tsx.snap +122 -0
- package/components/tables/__tests__/__snapshots__/DataTableCell.test.tsx.snap +45 -0
- package/components/tables/__tests__/__snapshots__/DataTableHeaderCell.test.tsx.snap +34 -0
- package/components/tables/__tests__/__snapshots__/DataTableHeaderRow.test.tsx.snap +51 -0
- package/components/tables/__tests__/__snapshots__/DataTableRow.test.tsx.snap +54 -0
- package/components/tables/columnsConfigurationModal/ColumnRow.module.scss +45 -0
- package/components/tables/columnsConfigurationModal/ColumnRow.tsx +66 -0
- package/components/tables/columnsConfigurationModal/ColumnsConfigurationModal.module.scss +55 -0
- package/components/tables/columnsConfigurationModal/ColumnsConfigurationModal.tsx +153 -0
- package/components/tables/columnsConfigurationModal/PinIconButton.tsx +55 -0
- package/components/tables/columnsConfigurationModal/__tests__/ColumnsConfigurationModal.test.tsx +72 -0
- package/components/tables/columnsConfigurationModal/__tests__/__snapshots__/ColumnsConfigurationModal.test.tsx.snap +877 -0
- package/components/tables/columnsConfigurationModal/index.ts +1 -0
- package/components/tables/index.ts +9 -0
- package/components/tables/types.ts +33 -0
- package/components/tables/variables.scss +25 -0
- package/components/types.ts +34 -0
- package/components/typography/RichTextView.tsx +17 -0
- package/components/typography/Text.module.scss +54 -0
- package/components/typography/Text.tsx +59 -0
- package/components/typography/TextPlaceholder.module.scss +46 -0
- package/components/typography/TextPlaceholder.tsx +38 -0
- package/components/typography/__tests__/RichTextView.test.tsx +27 -0
- package/components/typography/__tests__/Text.test.tsx +21 -0
- package/components/typography/__tests__/TextPlaceholder.test.tsx +23 -0
- package/components/typography/__tests__/__snapshots__/RichTextView.test.tsx.snap +21 -0
- package/components/typography/__tests__/__snapshots__/Text.test.tsx.snap +18 -0
- package/components/typography/__tests__/__snapshots__/TextPlaceholder.test.tsx.snap +65 -0
- package/components/typography/index.ts +3 -0
- package/components/widgets/AvatarStack.module.scss +36 -0
- package/components/widgets/AvatarStack.tsx +5 -0
- package/components/widgets/Badge.module.scss +334 -0
- package/components/widgets/Badge.tsx +97 -0
- package/components/widgets/CountIndicator.module.scss +52 -0
- package/components/widgets/CountIndicator.tsx +38 -0
- package/components/widgets/DataRowAddons.module.scss +57 -0
- package/components/widgets/DataRowAddons.tsx +66 -0
- package/components/widgets/IndeterminateBar.module.scss +42 -0
- package/components/widgets/IndeterminateBar.tsx +16 -0
- package/components/widgets/IndicatorBar.module.scss +3 -0
- package/components/widgets/IndicatorBar.tsx +20 -0
- package/components/widgets/Paginator.module.scss +66 -0
- package/components/widgets/Paginator.tsx +64 -0
- package/components/widgets/ProgressBar.module.scss +52 -0
- package/components/widgets/ProgressBar.tsx +33 -0
- package/components/widgets/Spinner.module.scss +38 -0
- package/components/widgets/Spinner.tsx +11 -0
- package/components/widgets/StatusIndicator.module.scss +72 -0
- package/components/widgets/StatusIndicator.tsx +50 -0
- package/components/widgets/Tag.module.scss +142 -0
- package/components/widgets/Tag.tsx +73 -0
- package/components/widgets/__tests__/AvatarStack.test.tsx +19 -0
- package/components/widgets/__tests__/Badge.test.tsx +30 -0
- package/components/widgets/__tests__/IndeterminateBar.test.tsx +15 -0
- package/components/widgets/__tests__/IndicatorBar.test.tsx +15 -0
- package/components/widgets/__tests__/Paginator.test.tsx +19 -0
- package/components/widgets/__tests__/ProgressBar.test.tsx +25 -0
- package/components/widgets/__tests__/Spinner.test.tsx +10 -0
- package/components/widgets/__tests__/StatusIndicator.test.tsx +17 -0
- package/components/widgets/__tests__/Tag.test.tsx +18 -0
- package/components/widgets/__tests__/__snapshots__/AvatarStack.test.tsx.snap +55 -0
- package/components/widgets/__tests__/__snapshots__/Badge.test.tsx.snap +48 -0
- package/components/widgets/__tests__/__snapshots__/IndeterminateBar.test.tsx.snap +21 -0
- package/components/widgets/__tests__/__snapshots__/IndicatorBar.test.tsx.snap +30 -0
- package/components/widgets/__tests__/__snapshots__/Paginator.test.tsx.snap +127 -0
- package/components/widgets/__tests__/__snapshots__/ProgressBar.test.tsx.snap +107 -0
- package/components/widgets/__tests__/__snapshots__/Spinner.test.tsx.snap +21 -0
- package/components/widgets/__tests__/__snapshots__/StatusIndicator.test.tsx.snap +31 -0
- package/components/widgets/__tests__/__snapshots__/Tag.test.tsx.snap +48 -0
- package/components/widgets/index.ts +12 -0
- package/globals.d.ts +12 -0
- package/helpers/index.ts +2 -0
- package/helpers/text-layout.module.scss +81 -0
- package/helpers/textLayout.tsx +35 -0
- package/helpers/useColumnsWithFilters.tsx +34 -0
- package/i18n.ts +105 -0
- package/icons/accept-12.svg +1 -0
- package/icons/accept-18.svg +1 -0
- package/icons/accept-24.svg +1 -0
- package/icons/action-settings-12.svg +1 -0
- package/icons/action-settings-18.svg +1 -0
- package/icons/action-settings-24.svg +1 -0
- package/icons/btn-cross-12.svg +1 -0
- package/icons/btn-cross-18.svg +1 -0
- package/icons/btn-cross-24.svg +1 -0
- package/icons/burger-close.svg +3 -0
- package/icons/burger.svg +3 -0
- package/icons/calendar-12.svg +1 -0
- package/icons/calendar-18.svg +1 -0
- package/icons/calendar-24.svg +1 -0
- package/icons/check-12.svg +3 -0
- package/icons/check-18.svg +3 -0
- package/icons/checkbox-checked.svg +21 -0
- package/icons/checkbox-partial.svg +21 -0
- package/icons/checkbox_tick.svg +44 -0
- package/icons/chevron-down-24.svg +1 -0
- package/icons/chevron-up-24.svg +1 -0
- package/icons/content-edit-12.svg +1 -0
- package/icons/content-edit-18.svg +1 -0
- package/icons/content-edit-24.svg +1 -0
- package/icons/empty-table.svg +58 -0
- package/icons/fileUpload/file-file-24.svg +1 -0
- package/icons/fileUpload/file-file_chart-24.svg +1 -0
- package/icons/fileUpload/file-file_eml-24.svg +1 -0
- package/icons/fileUpload/file-file_excel-24.svg +1 -0
- package/icons/fileUpload/file-file_image-24.svg +1 -0
- package/icons/fileUpload/file-file_pdf-24.svg +1 -0
- package/icons/fileUpload/file-file_table-24.svg +1 -0
- package/icons/fileUpload/file-file_text-24.svg +1 -0
- package/icons/fileUpload/file-file_video-24.svg +1 -0
- package/icons/fileUpload/file-file_word-24.svg +1 -0
- package/icons/fileUpload/shape.svg +2 -0
- package/icons/filter.svg +11 -0
- package/icons/folding-arrow-12.svg +1 -0
- package/icons/folding-arrow-18.svg +1 -0
- package/icons/folding-arrow-24.svg +1 -0
- package/icons/global_menu.svg +9 -0
- package/icons/help-fill-10.svg +3 -0
- package/icons/help-fill-16.svg +3 -0
- package/icons/icons.tsx +116 -0
- package/icons/info-12.svg +3 -0
- package/icons/info-18.svg +1 -0
- package/icons/info-24.svg +1 -0
- package/icons/logo-arrow.svg +4 -0
- package/icons/menu_input_cancel.svg +84 -0
- package/icons/modal-close-cross.svg +22 -0
- package/icons/navigation-close-24.svg +1 -0
- package/icons/navigation-more_vert-12.svg +1 -0
- package/icons/navigation-more_vert-18.svg +1 -0
- package/icons/navigation-more_vert-24.svg +1 -0
- package/icons/notification-check_circle-fill-24.svg +1 -0
- package/icons/notification-done-12.svg +1 -0
- package/icons/notification-done-18.svg +1 -0
- package/icons/notification-done-24.svg +1 -0
- package/icons/notification-error-fill-10.svg +1 -0
- package/icons/notification-error-fill-24.svg +1 -0
- package/icons/notification-help-fill-24.svg +1 -0
- package/icons/notification-warning-fill-24.svg +1 -0
- package/icons/partly-select-12.svg +3 -0
- package/icons/partly-select-18.svg +3 -0
- package/icons/radio-point.svg +3 -0
- package/icons/search-12.svg +1 -0
- package/icons/search-18.svg +1 -0
- package/icons/search-24.svg +1 -0
- package/icons/search-with-background.svg +4 -0
- package/icons/settings-18.svg +1 -0
- package/icons/slider-rating/active_mark_blue_icon.svg +23 -0
- package/icons/slider-rating/active_mark_green_icon.svg +23 -0
- package/icons/slider-rating/active_mark_red_icon.svg +23 -0
- package/icons/slider-rating/active_mark_violet_icon.svg +23 -0
- package/icons/slider-rating/active_mark_yellow_icon.svg +23 -0
- package/icons/slider-rating/line_blue_icon.svg +31 -0
- package/icons/slider-rating/line_gray_icon.svg +20 -0
- package/icons/slider-rating/line_red_icon.svg +42 -0
- package/icons/slider-rating/line_violet_icon.svg +33 -0
- package/icons/slider-rating/line_yellow_icon.svg +34 -0
- package/icons/slider-rating/na_active_icon.svg +13 -0
- package/icons/slider-rating/na_icon.svg +13 -0
- package/icons/snackbar/cross.svg +1 -0
- package/icons/snackbar/info.svg +1 -0
- package/icons/snackbar/success.svg +1 -0
- package/icons/snackbar/warning.svg +1 -0
- package/icons/sort.svg +5 -0
- package/icons/sort_asc-12.svg +1 -0
- package/icons/sort_desc-12.svg +1 -0
- package/icons/star-empty.svg +3 -0
- package/icons/star-filled.svg +3 -0
- package/icons/tick-12.svg +1 -0
- package/icons/tick-24.svg +1 -0
- package/icons/triangle.svg +10 -0
- package/index.tsx +5 -0
- package/package.json +7 -7
- package/readme.md +4 -4
- package/themeTodo.md +21 -0
- package/tsconfig.json +12 -0
- package/components/tables/DataTableHeaderCell.d.ts +0 -21
- package/components/tables/DataTableHeaderCell.d.ts.map +0 -1
- package/index.esm.js +0 -4739
- package/index.esm.js.map +0 -1
- package/index.js +0 -4904
- package/index.js.map +0 -1
- package/stats.html +0 -4838
- package/styles.css +0 -11145
- package/styles.css.map +0 -1
- /package/{components → build/components}/buttons/Button.d.ts +0 -0
- /package/{components → build/components}/buttons/Button.d.ts.map +0 -0
- /package/{components → build/components}/buttons/IconButton.d.ts +0 -0
- /package/{components → build/components}/buttons/IconButton.d.ts.map +0 -0
- /package/{components → build/components}/buttons/LinkButton.d.ts +0 -0
- /package/{components → build/components}/buttons/LinkButton.d.ts.map +0 -0
- /package/{components → build/components}/buttons/TabButton.d.ts +0 -0
- /package/{components → build/components}/buttons/TabButton.d.ts.map +0 -0
- /package/{components → build/components}/buttons/VerticalTabButton.d.ts +0 -0
- /package/{components → build/components}/buttons/VerticalTabButton.d.ts.map +0 -0
- /package/{components → build/components}/buttons/helper.d.ts +0 -0
- /package/{components → build/components}/buttons/helper.d.ts.map +0 -0
- /package/{components → build/components}/buttons/index.d.ts +0 -0
- /package/{components → build/components}/buttons/index.d.ts.map +0 -0
- /package/{components → build/components}/datePickers/Calendar.d.ts +0 -0
- /package/{components → build/components}/datePickers/Calendar.d.ts.map +0 -0
- /package/{components → build/components}/datePickers/CalendarPresets.d.ts +0 -0
- /package/{components → build/components}/datePickers/CalendarPresets.d.ts.map +0 -0
- /package/{components → build/components}/datePickers/DatePicker.d.ts +0 -0
- /package/{components → build/components}/datePickers/DatePicker.d.ts.map +0 -0
- /package/{components → build/components}/datePickers/DatePickerBody.d.ts +0 -0
- /package/{components → build/components}/datePickers/DatePickerBody.d.ts.map +0 -0
- /package/{components → build/components}/datePickers/DatePickerHeader.d.ts +0 -0
- /package/{components → build/components}/datePickers/DatePickerHeader.d.ts.map +0 -0
- /package/{components → build/components}/datePickers/RangeDatePicker.d.ts +0 -0
- /package/{components → build/components}/datePickers/RangeDatePicker.d.ts.map +0 -0
- /package/{components → build/components}/datePickers/RangeDatePickerBody.d.ts +0 -0
- /package/{components → build/components}/datePickers/RangeDatePickerBody.d.ts.map +0 -0
- /package/{components → build/components}/datePickers/index.d.ts +0 -0
- /package/{components → build/components}/datePickers/index.d.ts.map +0 -0
- /package/{components → build/components}/dnd/DropMarker.d.ts +0 -0
- /package/{components → build/components}/dnd/DropMarker.d.ts.map +0 -0
- /package/{components → build/components}/dnd/index.d.ts +0 -0
- /package/{components → build/components}/dnd/index.d.ts.map +0 -0
- /package/{components → build/components}/fileUpload/DropSpot.d.ts +0 -0
- /package/{components → build/components}/fileUpload/DropSpot.d.ts.map +0 -0
- /package/{components → build/components}/fileUpload/FileCard.d.ts +0 -0
- /package/{components → build/components}/fileUpload/FileCard.d.ts.map +0 -0
- /package/{components → build/components}/fileUpload/SvgCircleProgress.d.ts +0 -0
- /package/{components → build/components}/fileUpload/SvgCircleProgress.d.ts.map +0 -0
- /package/{components → build/components}/fileUpload/index.d.ts +0 -0
- /package/{components → build/components}/fileUpload/index.d.ts.map +0 -0
- /package/{components → build/components}/filters/FilterDatePickerBody.d.ts +0 -0
- /package/{components → build/components}/filters/FilterDatePickerBody.d.ts.map +0 -0
- /package/{components → build/components}/filters/FilterItemBody.d.ts +0 -0
- /package/{components → build/components}/filters/FilterItemBody.d.ts.map +0 -0
- /package/{components → build/components}/filters/FilterNumericBody.d.ts +0 -0
- /package/{components → build/components}/filters/FilterNumericBody.d.ts.map +0 -0
- /package/{components → build/components}/filters/FilterPanelItemToggler.d.ts +0 -0
- /package/{components → build/components}/filters/FilterPanelItemToggler.d.ts.map +0 -0
- /package/{components → build/components}/filters/FilterPickerBody.d.ts +0 -0
- /package/{components → build/components}/filters/FilterPickerBody.d.ts.map +0 -0
- /package/{components → build/components}/filters/FilterRangeDatePickerBody.d.ts +0 -0
- /package/{components → build/components}/filters/FilterRangeDatePickerBody.d.ts.map +0 -0
- /package/{components → build/components}/filters/FiltersPanel.d.ts +0 -0
- /package/{components → build/components}/filters/FiltersPanel.d.ts.map +0 -0
- /package/{components → build/components}/filters/FiltersPanelItem.d.ts +0 -0
- /package/{components → build/components}/filters/FiltersPanelItem.d.ts.map +0 -0
- /package/{components → build/components}/filters/PresetPanel/Preset.d.ts +0 -0
- /package/{components → build/components}/filters/PresetPanel/Preset.d.ts.map +0 -0
- /package/{components → build/components}/filters/PresetPanel/PresetActionsDropdown.d.ts +0 -0
- /package/{components → build/components}/filters/PresetPanel/PresetActionsDropdown.d.ts.map +0 -0
- /package/{components → build/components}/filters/PresetPanel/PresetInput.d.ts +0 -0
- /package/{components → build/components}/filters/PresetPanel/PresetInput.d.ts.map +0 -0
- /package/{components → build/components}/filters/PresetPanel/PresetsPanel.d.ts +0 -0
- /package/{components → build/components}/filters/PresetPanel/PresetsPanel.d.ts.map +0 -0
- /package/{components → build/components}/filters/PresetPanel/constants.d.ts +0 -0
- /package/{components → build/components}/filters/PresetPanel/constants.d.ts.map +0 -0
- /package/{components → build/components}/filters/PresetPanel/index.d.ts +0 -0
- /package/{components → build/components}/filters/PresetPanel/index.d.ts.map +0 -0
- /package/{components → build/components}/filters/constants.d.ts +0 -0
- /package/{components → build/components}/filters/constants.d.ts.map +0 -0
- /package/{components → build/components}/filters/defaultPredicates.d.ts +0 -0
- /package/{components → build/components}/filters/defaultPredicates.d.ts.map +0 -0
- /package/{components → build/components}/filters/index.d.ts +0 -0
- /package/{components → build/components}/filters/index.d.ts.map +0 -0
- /package/{components → build/components}/forms/Form.d.ts +0 -0
- /package/{components → build/components}/forms/Form.d.ts.map +0 -0
- /package/{components → build/components}/forms/index.d.ts +0 -0
- /package/{components → build/components}/forms/index.d.ts.map +0 -0
- /package/{components → build/components}/forms/useForm.d.ts +0 -0
- /package/{components → build/components}/forms/useForm.d.ts.map +0 -0
- /package/{components → build/components}/index.d.ts +0 -0
- /package/{components → build/components}/index.d.ts.map +0 -0
- /package/{components → build/components}/inputs/Checkbox.d.ts +0 -0
- /package/{components → build/components}/inputs/Checkbox.d.ts.map +0 -0
- /package/{components → build/components}/inputs/InputAddon.d.ts +0 -0
- /package/{components → build/components}/inputs/InputAddon.d.ts.map +0 -0
- /package/{components → build/components}/inputs/MultiSwitch.d.ts +0 -0
- /package/{components → build/components}/inputs/MultiSwitch.d.ts.map +0 -0
- /package/{components → build/components}/inputs/NumericInput.d.ts +0 -0
- /package/{components → build/components}/inputs/NumericInput.d.ts.map +0 -0
- /package/{components → build/components}/inputs/RadioInput.d.ts +0 -0
- /package/{components → build/components}/inputs/RadioInput.d.ts.map +0 -0
- /package/{components → build/components}/inputs/Slider.d.ts +0 -0
- /package/{components → build/components}/inputs/Slider.d.ts.map +0 -0
- /package/{components → build/components}/inputs/Switch.d.ts +0 -0
- /package/{components → build/components}/inputs/Switch.d.ts.map +0 -0
- /package/{components → build/components}/inputs/TextArea.d.ts +0 -0
- /package/{components → build/components}/inputs/TextArea.d.ts.map +0 -0
- /package/{components → build/components}/inputs/TextInput.d.ts +0 -0
- /package/{components → build/components}/inputs/TextInput.d.ts.map +0 -0
- /package/{components → build/components}/inputs/TimePicker.d.ts +0 -0
- /package/{components → build/components}/inputs/TimePicker.d.ts.map +0 -0
- /package/{components → build/components}/inputs/TimePickerBody.d.ts +0 -0
- /package/{components → build/components}/inputs/TimePickerBody.d.ts.map +0 -0
- /package/{components → build/components}/inputs/index.d.ts +0 -0
- /package/{components → build/components}/inputs/index.d.ts.map +0 -0
- /package/{components → build/components}/layout/Accordion.d.ts +0 -0
- /package/{components → build/components}/layout/Accordion.d.ts.map +0 -0
- /package/{components → build/components}/layout/Blocker.d.ts +0 -0
- /package/{components → build/components}/layout/Blocker.d.ts.map +0 -0
- /package/{components → build/components}/layout/CheckboxGroup.d.ts +0 -0
- /package/{components → build/components}/layout/CheckboxGroup.d.ts.map +0 -0
- /package/{components → build/components}/layout/ControlGroup.d.ts +0 -0
- /package/{components → build/components}/layout/ControlGroup.d.ts.map +0 -0
- /package/{components → build/components}/layout/FlexItems/FlexCell.d.ts +0 -0
- /package/{components → build/components}/layout/FlexItems/FlexCell.d.ts.map +0 -0
- /package/{components → build/components}/layout/FlexItems/FlexRow.d.ts +0 -0
- /package/{components → build/components}/layout/FlexItems/FlexRow.d.ts.map +0 -0
- /package/{components → build/components}/layout/FlexItems/Panel.d.ts +0 -0
- /package/{components → build/components}/layout/FlexItems/Panel.d.ts.map +0 -0
- /package/{components → build/components}/layout/FlexItems/index.d.ts +0 -0
- /package/{components → build/components}/layout/FlexItems/index.d.ts.map +0 -0
- /package/{components → build/components}/layout/LabeledInput.d.ts +0 -0
- /package/{components → build/components}/layout/LabeledInput.d.ts.map +0 -0
- /package/{components → build/components}/layout/RadioGroup.d.ts +0 -0
- /package/{components → build/components}/layout/RadioGroup.d.ts.map +0 -0
- /package/{components → build/components}/layout/ScrollBars.d.ts +0 -0
- /package/{components → build/components}/layout/ScrollBars.d.ts.map +0 -0
- /package/{components → build/components}/layout/VirtualList.d.ts +0 -0
- /package/{components → build/components}/layout/VirtualList.d.ts.map +0 -0
- /package/{components → build/components}/layout/index.d.ts +0 -0
- /package/{components → build/components}/layout/index.d.ts.map +0 -0
- /package/{components → build/components}/navigation/Anchor.d.ts +0 -0
- /package/{components → build/components}/navigation/Anchor.d.ts.map +0 -0
- /package/{components → build/components}/navigation/MainMenu/Burger/Burger.d.ts +0 -0
- /package/{components → build/components}/navigation/MainMenu/Burger/Burger.d.ts.map +0 -0
- /package/{components → build/components}/navigation/MainMenu/Burger/BurgerButton.d.ts +0 -0
- /package/{components → build/components}/navigation/MainMenu/Burger/BurgerButton.d.ts.map +0 -0
- /package/{components → build/components}/navigation/MainMenu/Burger/BurgerGroupHeader.d.ts +0 -0
- /package/{components → build/components}/navigation/MainMenu/Burger/BurgerGroupHeader.d.ts.map +0 -0
- /package/{components → build/components}/navigation/MainMenu/Burger/BurgerSearch.d.ts +0 -0
- /package/{components → build/components}/navigation/MainMenu/Burger/BurgerSearch.d.ts.map +0 -0
- /package/{components → build/components}/navigation/MainMenu/Burger/index.d.ts +0 -0
- /package/{components → build/components}/navigation/MainMenu/Burger/index.d.ts.map +0 -0
- /package/{components → build/components}/navigation/MainMenu/GlobalMenu.d.ts +0 -0
- /package/{components → build/components}/navigation/MainMenu/GlobalMenu.d.ts.map +0 -0
- /package/{components → build/components}/navigation/MainMenu/MainMenu.d.ts +0 -0
- /package/{components → build/components}/navigation/MainMenu/MainMenu.d.ts.map +0 -0
- /package/{components → build/components}/navigation/MainMenu/MainMenuAvatar.d.ts +0 -0
- /package/{components → build/components}/navigation/MainMenu/MainMenuAvatar.d.ts.map +0 -0
- /package/{components → build/components}/navigation/MainMenu/MainMenuButton.d.ts +0 -0
- /package/{components → build/components}/navigation/MainMenu/MainMenuButton.d.ts.map +0 -0
- /package/{components → build/components}/navigation/MainMenu/MainMenuDropdown.d.ts +0 -0
- /package/{components → build/components}/navigation/MainMenu/MainMenuDropdown.d.ts.map +0 -0
- /package/{components → build/components}/navigation/MainMenu/MainMenuIcon.d.ts +0 -0
- /package/{components → build/components}/navigation/MainMenu/MainMenuIcon.d.ts.map +0 -0
- /package/{components → build/components}/navigation/MainMenu/MainMenuSearch.d.ts +0 -0
- /package/{components → build/components}/navigation/MainMenu/MainMenuSearch.d.ts.map +0 -0
- /package/{components → build/components}/navigation/MainMenu/index.d.ts +0 -0
- /package/{components → build/components}/navigation/MainMenu/index.d.ts.map +0 -0
- /package/{components → build/components}/navigation/index.d.ts +0 -0
- /package/{components → build/components}/navigation/index.d.ts.map +0 -0
- /package/{components → build/components}/overlays/Alert.d.ts +0 -0
- /package/{components → build/components}/overlays/Alert.d.ts.map +0 -0
- /package/{components → build/components}/overlays/ConfirmationModal.d.ts +0 -0
- /package/{components → build/components}/overlays/ConfirmationModal.d.ts.map +0 -0
- /package/{components → build/components}/overlays/Dropdown.d.ts +0 -0
- /package/{components → build/components}/overlays/Dropdown.d.ts.map +0 -0
- /package/{components → build/components}/overlays/DropdownContainer.d.ts +0 -0
- /package/{components → build/components}/overlays/DropdownContainer.d.ts.map +0 -0
- /package/{components → build/components}/overlays/DropdownMenu.d.ts +0 -0
- /package/{components → build/components}/overlays/DropdownMenu.d.ts.map +0 -0
- /package/{components → build/components}/overlays/Modals.d.ts +0 -0
- /package/{components → build/components}/overlays/Modals.d.ts.map +0 -0
- /package/{components → build/components}/overlays/NotificationCard.d.ts +0 -0
- /package/{components → build/components}/overlays/NotificationCard.d.ts.map +0 -0
- /package/{components → build/components}/overlays/Tooltip.d.ts +0 -0
- /package/{components → build/components}/overlays/Tooltip.d.ts.map +0 -0
- /package/{components → build/components}/overlays/index.d.ts +0 -0
- /package/{components → build/components}/overlays/index.d.ts.map +0 -0
- /package/{components → build/components}/pickers/DataPickerBody.d.ts +0 -0
- /package/{components → build/components}/pickers/DataPickerBody.d.ts.map +0 -0
- /package/{components → build/components}/pickers/DataPickerCell.d.ts +0 -0
- /package/{components → build/components}/pickers/DataPickerCell.d.ts.map +0 -0
- /package/{components → build/components}/pickers/DataPickerFooter.d.ts +0 -0
- /package/{components → build/components}/pickers/DataPickerFooter.d.ts.map +0 -0
- /package/{components → build/components}/pickers/DataPickerHeader.d.ts +0 -0
- /package/{components → build/components}/pickers/DataPickerHeader.d.ts.map +0 -0
- /package/{components → build/components}/pickers/DataPickerRow.d.ts +0 -0
- /package/{components → build/components}/pickers/DataPickerRow.d.ts.map +0 -0
- /package/{components → build/components}/pickers/MobileDropdownWrapper.d.ts +0 -0
- /package/{components → build/components}/pickers/MobileDropdownWrapper.d.ts.map +0 -0
- /package/{components → build/components}/pickers/PickerInput.d.ts +0 -0
- /package/{components → build/components}/pickers/PickerInput.d.ts.map +0 -0
- /package/{components → build/components}/pickers/PickerItem.d.ts +0 -0
- /package/{components → build/components}/pickers/PickerItem.d.ts.map +0 -0
- /package/{components → build/components}/pickers/PickerList.d.ts +0 -0
- /package/{components → build/components}/pickers/PickerList.d.ts.map +0 -0
- /package/{components → build/components}/pickers/PickerListItem.d.ts +0 -0
- /package/{components → build/components}/pickers/PickerListItem.d.ts.map +0 -0
- /package/{components → build/components}/pickers/PickerModal.d.ts +0 -0
- /package/{components → build/components}/pickers/PickerModal.d.ts.map +0 -0
- /package/{components → build/components}/pickers/PickerToggler.d.ts +0 -0
- /package/{components → build/components}/pickers/PickerToggler.d.ts.map +0 -0
- /package/{components → build/components}/pickers/helpers.d.ts +0 -0
- /package/{components → build/components}/pickers/helpers.d.ts.map +0 -0
- /package/{components → build/components}/pickers/highlight.d.ts +0 -0
- /package/{components → build/components}/pickers/highlight.d.ts.map +0 -0
- /package/{components → build/components}/pickers/index.d.ts +0 -0
- /package/{components → build/components}/pickers/index.d.ts.map +0 -0
- /package/{components → build/components}/pickers/types.d.ts +0 -0
- /package/{components → build/components}/pickers/types.d.ts.map +0 -0
- /package/{components → build/components}/tables/ColumnHeaderDropdown/ColumnHeaderDropdown.d.ts +0 -0
- /package/{components → build/components}/tables/ColumnHeaderDropdown/ColumnHeaderDropdown.d.ts.map +0 -0
- /package/{components → build/components}/tables/ColumnHeaderDropdown/SortingPanel.d.ts +0 -0
- /package/{components → build/components}/tables/ColumnHeaderDropdown/SortingPanel.d.ts.map +0 -0
- /package/{components → build/components}/tables/ColumnHeaderDropdown/index.d.ts +0 -0
- /package/{components → build/components}/tables/ColumnHeaderDropdown/index.d.ts.map +0 -0
- /package/{components → build/components}/tables/DataRowsContainer/DataRowsContainer.d.ts +0 -0
- /package/{components → build/components}/tables/DataRowsContainer/DataRowsContainer.d.ts.map +0 -0
- /package/{components → build/components}/tables/DataRowsContainer/DataRowsGroups.d.ts +0 -0
- /package/{components → build/components}/tables/DataRowsContainer/DataRowsGroups.d.ts.map +0 -0
- /package/{components → build/components}/tables/DataRowsContainer/index.d.ts +0 -0
- /package/{components → build/components}/tables/DataRowsContainer/index.d.ts.map +0 -0
- /package/{components → build/components}/tables/DataRowsContainer/utils.d.ts +0 -0
- /package/{components → build/components}/tables/DataRowsContainer/utils.d.ts.map +0 -0
- /package/{components → build/components}/tables/DataTable.d.ts +0 -0
- /package/{components → build/components}/tables/DataTable.d.ts.map +0 -0
- /package/{components → build/components}/tables/DataTableCell.d.ts +0 -0
- /package/{components → build/components}/tables/DataTableCell.d.ts.map +0 -0
- /package/{components → build/components}/tables/DataTableHeaderRow.d.ts +0 -0
- /package/{components → build/components}/tables/DataTableHeaderRow.d.ts.map +0 -0
- /package/{components → build/components}/tables/DataTableRow.d.ts +0 -0
- /package/{components → build/components}/tables/DataTableRow.d.ts.map +0 -0
- /package/{components → build/components}/tables/columnsConfigurationModal/ColumnRow.d.ts +0 -0
- /package/{components → build/components}/tables/columnsConfigurationModal/ColumnRow.d.ts.map +0 -0
- /package/{components → build/components}/tables/columnsConfigurationModal/ColumnsConfigurationModal.d.ts +0 -0
- /package/{components → build/components}/tables/columnsConfigurationModal/ColumnsConfigurationModal.d.ts.map +0 -0
- /package/{components → build/components}/tables/columnsConfigurationModal/PinIconButton.d.ts +0 -0
- /package/{components → build/components}/tables/columnsConfigurationModal/PinIconButton.d.ts.map +0 -0
- /package/{components → build/components}/tables/columnsConfigurationModal/index.d.ts +0 -0
- /package/{components → build/components}/tables/columnsConfigurationModal/index.d.ts.map +0 -0
- /package/{components → build/components}/tables/index.d.ts +0 -0
- /package/{components → build/components}/tables/index.d.ts.map +0 -0
- /package/{components → build/components}/tables/types.d.ts +0 -0
- /package/{components → build/components}/tables/types.d.ts.map +0 -0
- /package/{components → build/components}/types.d.ts +0 -0
- /package/{components → build/components}/types.d.ts.map +0 -0
- /package/{components → build/components}/typography/RichTextView.d.ts +0 -0
- /package/{components → build/components}/typography/RichTextView.d.ts.map +0 -0
- /package/{components → build/components}/typography/Text.d.ts +0 -0
- /package/{components → build/components}/typography/Text.d.ts.map +0 -0
- /package/{components → build/components}/typography/TextPlaceholder.d.ts +0 -0
- /package/{components → build/components}/typography/TextPlaceholder.d.ts.map +0 -0
- /package/{components → build/components}/typography/index.d.ts +0 -0
- /package/{components → build/components}/typography/index.d.ts.map +0 -0
- /package/{components → build/components}/widgets/AvatarStack.d.ts +0 -0
- /package/{components → build/components}/widgets/AvatarStack.d.ts.map +0 -0
- /package/{components → build/components}/widgets/Badge.d.ts +0 -0
- /package/{components → build/components}/widgets/Badge.d.ts.map +0 -0
- /package/{components → build/components}/widgets/CountIndicator.d.ts +0 -0
- /package/{components → build/components}/widgets/CountIndicator.d.ts.map +0 -0
- /package/{components → build/components}/widgets/DataRowAddons.d.ts +0 -0
- /package/{components → build/components}/widgets/DataRowAddons.d.ts.map +0 -0
- /package/{components → build/components}/widgets/IndeterminateBar.d.ts +0 -0
- /package/{components → build/components}/widgets/IndeterminateBar.d.ts.map +0 -0
- /package/{components → build/components}/widgets/IndicatorBar.d.ts +0 -0
- /package/{components → build/components}/widgets/IndicatorBar.d.ts.map +0 -0
- /package/{components → build/components}/widgets/Paginator.d.ts +0 -0
- /package/{components → build/components}/widgets/Paginator.d.ts.map +0 -0
- /package/{components → build/components}/widgets/ProgressBar.d.ts +0 -0
- /package/{components → build/components}/widgets/ProgressBar.d.ts.map +0 -0
- /package/{components → build/components}/widgets/Spinner.d.ts +0 -0
- /package/{components → build/components}/widgets/Spinner.d.ts.map +0 -0
- /package/{components → build/components}/widgets/StatusIndicator.d.ts +0 -0
- /package/{components → build/components}/widgets/StatusIndicator.d.ts.map +0 -0
- /package/{components → build/components}/widgets/Tag.d.ts +0 -0
- /package/{components → build/components}/widgets/Tag.d.ts.map +0 -0
- /package/{components → build/components}/widgets/index.d.ts +0 -0
- /package/{components → build/components}/widgets/index.d.ts.map +0 -0
- /package/{helpers → build/helpers}/index.d.ts +0 -0
- /package/{helpers → build/helpers}/index.d.ts.map +0 -0
- /package/{helpers → build/helpers}/textLayout.d.ts +0 -0
- /package/{helpers → build/helpers}/textLayout.d.ts.map +0 -0
- /package/{helpers → build/helpers}/useColumnsWithFilters.d.ts +0 -0
- /package/{helpers → build/helpers}/useColumnsWithFilters.d.ts.map +0 -0
- /package/{i18n.d.ts → build/i18n.d.ts} +0 -0
- /package/{i18n.d.ts.map → build/i18n.d.ts.map} +0 -0
- /package/{icons → build/icons}/icons.d.ts +0 -0
- /package/{icons → build/icons}/icons.d.ts.map +0 -0
- /package/{index.d.ts → build/index.d.ts} +0 -0
- /package/{index.d.ts.map → build/index.d.ts.map} +0 -0
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
@use '../../assets/styles/index' as *;
|
|
2
|
+
|
|
3
|
+
@mixin button-disables-styles($bg-color, $border-color) {
|
|
4
|
+
background-color: $bg-color;
|
|
5
|
+
color: var(--uui-btn-caption-disabled);
|
|
6
|
+
fill: var(--uui-btn-caption-disabled);
|
|
7
|
+
border-color: $border-color;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.root {
|
|
11
|
+
--uui-btn-bg: var(--uui-color-50);
|
|
12
|
+
--uui-btn-bg-hover: var(--uui-color-60);
|
|
13
|
+
--uui-btn-bg-active: var(--uui-color-70);
|
|
14
|
+
--uui-btn-bg-disabled: var(--uui-neutral-30);
|
|
15
|
+
--uui-btn-border: var(--uui-color-50);
|
|
16
|
+
--uui-btn-border-hover: var(--uui-color-60);
|
|
17
|
+
--uui-btn-border-active: var(--uui-color-70);
|
|
18
|
+
--uui-btn-border-disabled: var(--uui-neutral-30);
|
|
19
|
+
--uui-btn-caption: var(--uui-color-contrast);
|
|
20
|
+
--uui-btn-caption-disabled: var(--uui-text-disabled);
|
|
21
|
+
|
|
22
|
+
--uui-btn-border-radius: var(--uui-border-radius);
|
|
23
|
+
|
|
24
|
+
--uui-btn-font: var(--uui-font);
|
|
25
|
+
--uui-btn-font-weight: var(--uui-font-weight, 600);
|
|
26
|
+
//
|
|
27
|
+
background-color: var(--uui-btn-bg);
|
|
28
|
+
color: var(--uui-btn-caption);
|
|
29
|
+
fill: var(--uui-btn-caption);
|
|
30
|
+
border-color: var(--uui-btn-border);
|
|
31
|
+
|
|
32
|
+
&:global(.-clickable) {
|
|
33
|
+
&:hover {
|
|
34
|
+
background-color: var(--uui-btn-bg-hover);
|
|
35
|
+
border-color: var(--uui-btn-border-hover);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
&:active {
|
|
39
|
+
background-color: var(--uui-btn-bg-active);
|
|
40
|
+
border-color: var(--uui-btn-border-active);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
&:global(.uui-button-box) {
|
|
45
|
+
border-style: solid;
|
|
46
|
+
justify-content: center;
|
|
47
|
+
border-radius: var(--uui-btn-border-radius);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
&:focus-visible {
|
|
51
|
+
@include focus-visible-effect();
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
:global(.uui-caption) {
|
|
55
|
+
@include overflow-ellipsis();
|
|
56
|
+
min-width: 0;
|
|
57
|
+
text-align: center;
|
|
58
|
+
flex: 1 1 auto;
|
|
59
|
+
font-family: var(--uui-btn-font);
|
|
60
|
+
font-weight: var(--uui-btn-font-weight, normal);
|
|
61
|
+
user-select: none;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
&:is(:global(.-clickable), :hover, :active, :focus):global(.uui-disabled),
|
|
65
|
+
&:global(.uui-disabled) {
|
|
66
|
+
&:global(.uui-fill-solid) {
|
|
67
|
+
@include button-disables-styles(var(--uui-btn-bg-disabled), var(--uui-btn-border-disabled));
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
&:global(.uui-fill-outline) {
|
|
71
|
+
@include button-disables-styles(var(--uui-surface-main), var(--uui-btn-border-disabled));
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
&:global(.uui-fill-none) {
|
|
75
|
+
@include button-disables-styles(transparent, var(--uui-btn-border-disabled));
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
&:global(.uui-fill-ghost) {
|
|
79
|
+
@include button-disables-styles(transparent, transparent);
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
&:global(.uui-fill-solid) {
|
|
84
|
+
--uui-btn-bg: var(--uui-color-50);
|
|
85
|
+
--uui-btn-bg-hover: var(--uui-color-60);
|
|
86
|
+
--uui-btn-bg-active: var(--uui-color-70);
|
|
87
|
+
--uui-btn-border: var(--uui-color-50);
|
|
88
|
+
--uui-btn-border-hover: var(--uui-color-60);
|
|
89
|
+
--uui-btn-border-active: var(--uui-color-70);
|
|
90
|
+
--uui-btn-caption: var(--uui-color-contrast);
|
|
91
|
+
--uui-btn-caption-disabled: var(--uui-text-disabled);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
&:global(.uui-fill-outline) {
|
|
95
|
+
--uui-btn-bg: var(--uui-surface-main);
|
|
96
|
+
--uui-btn-bg-hover: var(--uui-color-10);
|
|
97
|
+
--uui-btn-bg-active: var(--uui-color-20);
|
|
98
|
+
--uui-btn-bg-disabled: transparent;
|
|
99
|
+
--uui-btn-border: var(--uui-color-50);
|
|
100
|
+
--uui-btn-border-hover: var(--uui-color-50);
|
|
101
|
+
--uui-btn-border-active: var(--uui-color-50);
|
|
102
|
+
--uui-btn-caption: var(--uui-color-50);
|
|
103
|
+
--uui-btn-caption-disabled: var(--uui-text-disabled);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
&:global(.uui-fill-none) {
|
|
107
|
+
--uui-btn-bg: transparent;
|
|
108
|
+
--uui-btn-bg-hover: var(--uui-color-10);
|
|
109
|
+
--uui-btn-bg-active: var(--uui-color-20);
|
|
110
|
+
--uui-btn-bg-disabled: transparent;
|
|
111
|
+
--uui-btn-border: var(--uui-color-50);
|
|
112
|
+
--uui-btn-border-hover: var(--uui-color-50);
|
|
113
|
+
--uui-btn-border-active: var(--uui-color-50);
|
|
114
|
+
--uui-btn-caption: var(--uui-color-50);
|
|
115
|
+
--uui-btn-caption-disabled: var(--uui-text-disabled);
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
&:global(.uui-fill-ghost) {
|
|
119
|
+
--uui-btn-bg: transparent;
|
|
120
|
+
--uui-btn-bg-hover: var(--uui-color-10);
|
|
121
|
+
--uui-btn-bg-active: var(--uui-color-20);
|
|
122
|
+
--uui-btn-bg-disabled: transparent;
|
|
123
|
+
--uui-btn-border: transparent;
|
|
124
|
+
--uui-btn-border-hover: var(--uui-color-10);
|
|
125
|
+
--uui-btn-border-active: var(--uui-color-20);
|
|
126
|
+
--uui-btn-border-disabled: transparent;
|
|
127
|
+
--uui-btn-caption: var(--uui-color-50);
|
|
128
|
+
--uui-btn-caption-disabled: var(--uui-text-disabled);
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
&:global {
|
|
132
|
+
&.uui-size-18 {
|
|
133
|
+
@include button-layout(18px, 1px);
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
&.uui-size-24 {
|
|
137
|
+
@include button-layout(24px, 1px);
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
&.uui-size-30 {
|
|
141
|
+
@include button-layout(30px, 1px);
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
&.uui-size-36 {
|
|
145
|
+
@include button-layout(36px, 1px);
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
&.uui-size-42 {
|
|
149
|
+
@include button-layout(42px, 1px);
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
&.uui-size-48 {
|
|
153
|
+
@include button-layout(48px, 1px);
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Button as uuiButton, ButtonProps as uuiButtonProps } from '@epam/uui-components';
|
|
3
|
+
import { withMods } from '@epam/uui-core';
|
|
4
|
+
import { ControlSize } from '../types';
|
|
5
|
+
import { systemIcons } from '../../icons/icons';
|
|
6
|
+
import { CountIndicator } from '../widgets/CountIndicator';
|
|
7
|
+
import css from './Button.module.scss';
|
|
8
|
+
|
|
9
|
+
const DEFAULT_SIZE = '36';
|
|
10
|
+
|
|
11
|
+
interface ButtonMods {
|
|
12
|
+
/**
|
|
13
|
+
* Defines component size.
|
|
14
|
+
* @default '36'
|
|
15
|
+
*/
|
|
16
|
+
size?: ControlSize | '18';
|
|
17
|
+
/**
|
|
18
|
+
* Defines component fill style.
|
|
19
|
+
* @default 'solid'
|
|
20
|
+
*/
|
|
21
|
+
fill?: 'solid' | 'outline' | 'ghost' | 'none';
|
|
22
|
+
/**
|
|
23
|
+
* Defines component color.
|
|
24
|
+
* @default 'primary'
|
|
25
|
+
*/
|
|
26
|
+
color?: 'accent' | 'primary' | 'critical' | 'secondary' | 'neutral';
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/** Represents the 'Core properties' for the Button component, omitting the 'count' property. */
|
|
30
|
+
export interface ButtonCoreProps extends Omit<uuiButtonProps, 'count'> {}
|
|
31
|
+
|
|
32
|
+
/** Represents the props for a Button component. */
|
|
33
|
+
export interface ButtonProps extends ButtonMods, ButtonCoreProps {}
|
|
34
|
+
|
|
35
|
+
function applyButtonMods(mods: ButtonProps) {
|
|
36
|
+
return [
|
|
37
|
+
css.root,
|
|
38
|
+
'uui-button',
|
|
39
|
+
`uui-fill-${mods.fill || 'solid'}`,
|
|
40
|
+
`uui-color-${mods.color || 'primary'}`,
|
|
41
|
+
`uui-size-${mods.size || DEFAULT_SIZE}`,
|
|
42
|
+
];
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export const Button = withMods<uuiButtonProps, ButtonMods>(
|
|
46
|
+
uuiButton,
|
|
47
|
+
applyButtonMods,
|
|
48
|
+
(props) => ({
|
|
49
|
+
dropdownIcon: systemIcons[props.size || DEFAULT_SIZE].foldingArrow,
|
|
50
|
+
clearIcon: systemIcons[props.size || DEFAULT_SIZE].clear,
|
|
51
|
+
countIndicator: (countIndicatorProps) => <CountIndicator { ...countIndicatorProps } color="white" />,
|
|
52
|
+
}),
|
|
53
|
+
);
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
@use '../../assets/styles/effects' as *;
|
|
2
|
+
|
|
3
|
+
.root {
|
|
4
|
+
--uui-icon_btn: var(--uui-color-50);
|
|
5
|
+
--uui-icon_btn-hover: var(--uui-color-60);
|
|
6
|
+
--uui-icon_btn-active: var(--uui-color-70);
|
|
7
|
+
--uui-icon_btn-disabled: var(--uui-icon-disabled); // from core or color class? Current - from core
|
|
8
|
+
//
|
|
9
|
+
fill: var(--uui-icon_btn);
|
|
10
|
+
|
|
11
|
+
&:global(.uui-icon_button.uui-color-neutral) {
|
|
12
|
+
--uui-icon_btn: var(--uui-icon);
|
|
13
|
+
--uui-icon_btn-hover: var(--uui-icon-hover);
|
|
14
|
+
--uui-icon_btn-active: var(--uui-icon-active);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
&:global(.-clickable) {
|
|
18
|
+
&:hover {
|
|
19
|
+
fill: var(--uui-icon_btn-hover);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&:active {
|
|
23
|
+
fill: var(--uui-icon_btn-active);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&:focus-visible {
|
|
27
|
+
@include focus-visible-effect();
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
&:global(.uui-disabled) {
|
|
32
|
+
fill: var(--uui-icon_btn-disabled);
|
|
33
|
+
|
|
34
|
+
&:global(.-clickable) {
|
|
35
|
+
&:hover, &:focus {
|
|
36
|
+
fill: var(--uui-icon_btn-disabled);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
&:active {
|
|
40
|
+
fill: var(--uui-icon_btn-disabled);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { IconButtonBaseProps, IconButton as uuiIconButton } from '@epam/uui-components';
|
|
2
|
+
import { withMods } from '@epam/uui-core';
|
|
3
|
+
import css from './IconButton.module.scss';
|
|
4
|
+
|
|
5
|
+
interface IconButtonMods {
|
|
6
|
+
/**
|
|
7
|
+
* Defines component color.
|
|
8
|
+
* @default 'neutral'
|
|
9
|
+
*/
|
|
10
|
+
color?: 'info' | 'success' | 'warning' | 'error' | 'secondary' | 'neutral';
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
/** Represents the Core properties of the IconButton component. */
|
|
14
|
+
export type IconButtonCoreProps = IconButtonBaseProps;
|
|
15
|
+
|
|
16
|
+
/** Represents the properties of the IconButton component. */
|
|
17
|
+
export type IconButtonProps = IconButtonCoreProps & IconButtonMods;
|
|
18
|
+
|
|
19
|
+
function applyIconButtonMods(mods: IconButtonProps & IconButtonMods) {
|
|
20
|
+
return ['uui-icon_button', `uui-color-${mods.color || 'neutral'}`, css.root];
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export const IconButton = withMods<IconButtonProps, IconButtonMods>(uuiIconButton, applyIconButtonMods);
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
@use '../../assets/styles/buttonLayout' as *;
|
|
2
|
+
|
|
3
|
+
.root {
|
|
4
|
+
--uui-link_btn-text: var(--uui-color-50);
|
|
5
|
+
--uui-link_btn-text-hover: var(--uui-color-60);
|
|
6
|
+
--uui-link_btn-text-active: var(--uui-color-70);
|
|
7
|
+
--uui-link_btn-text-disabled: var(--uui-text-disabled);
|
|
8
|
+
|
|
9
|
+
--uui-link-button-font: var(--uui-font);
|
|
10
|
+
--uui-link-button-font-weight: 600;
|
|
11
|
+
|
|
12
|
+
&:global(.uui-button-box) {
|
|
13
|
+
background-color: transparent;
|
|
14
|
+
color: var(--uui-link_btn-text);
|
|
15
|
+
fill: var(--uui-link_btn-text);
|
|
16
|
+
min-width: auto;
|
|
17
|
+
|
|
18
|
+
&:global(.-clickable:not(.uui-disabled)) {
|
|
19
|
+
&:hover {
|
|
20
|
+
color: var(--uui-link_btn-text-hover);
|
|
21
|
+
fill: var(--uui-link_btn-text-hover);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
&:active {
|
|
25
|
+
color: var(--uui-link_btn-text-active);
|
|
26
|
+
fill: var(--uui-link_btn-text-active);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&:focus {
|
|
30
|
+
box-shadow: none;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
&:focus-visible {
|
|
34
|
+
border-radius: 2px;
|
|
35
|
+
box-shadow:
|
|
36
|
+
inset 0 -2px 0 0 var(--uui-outline-focus),
|
|
37
|
+
inset 0 2px 0 0 var(--uui-outline-focus),
|
|
38
|
+
2px 0 0 0 var(--uui-outline-focus),
|
|
39
|
+
-2px 0 0 0 var(--uui-outline-focus);
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
&:global(.uui-disabled) {
|
|
44
|
+
color: var(--uui-link_btn-text-disabled);
|
|
45
|
+
fill: var(--uui-link_btn-text-disabled);
|
|
46
|
+
background-color: transparent;
|
|
47
|
+
|
|
48
|
+
&:hover {
|
|
49
|
+
background-color: transparent;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
:global(.uui-caption) {
|
|
55
|
+
font-family: var(--uui-link-button-font);
|
|
56
|
+
font-weight: var(--uui-link-button-font-weight, normal);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
// Sizes
|
|
60
|
+
&:global {
|
|
61
|
+
&.uui-size-18 {
|
|
62
|
+
@include link-button-layout(18px);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
&.uui-size-24 {
|
|
66
|
+
@include link-button-layout(24px);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
&.uui-size-30 {
|
|
70
|
+
@include link-button-layout(30px);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
&.uui-size-36 {
|
|
74
|
+
@include link-button-layout(36px);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
&.uui-size-42 {
|
|
78
|
+
@include link-button-layout(42px);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
&.uui-size-48 {
|
|
82
|
+
@include link-button-layout(48px);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import * as types from '../types';
|
|
2
|
+
import { withMods } from '@epam/uui-core';
|
|
3
|
+
import { Button, ButtonProps } from '@epam/uui-components';
|
|
4
|
+
import css from './LinkButton.module.scss';
|
|
5
|
+
import { systemIcons } from '../../icons/icons';
|
|
6
|
+
import { getIconClass } from './helper';
|
|
7
|
+
|
|
8
|
+
const DEFAULT_SIZE = '36';
|
|
9
|
+
|
|
10
|
+
interface LinkButtonMods {
|
|
11
|
+
/**
|
|
12
|
+
* Defines component size.
|
|
13
|
+
* @default '36'
|
|
14
|
+
*/
|
|
15
|
+
size?: types.ControlSize | '42';
|
|
16
|
+
/**
|
|
17
|
+
* Defines component color.
|
|
18
|
+
* @default 'primary'
|
|
19
|
+
*/
|
|
20
|
+
color?: 'primary' | 'secondary' | 'contrast';
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
/** Represents the Core properties of the LinkButton component. */
|
|
24
|
+
export type LinkButtonCoreProps = ButtonProps & {
|
|
25
|
+
size?: types.ControlSize | '42';
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
/** Represents the properties of the LinkButton component. */
|
|
29
|
+
export type LinkButtonProps = LinkButtonCoreProps & LinkButtonMods;
|
|
30
|
+
|
|
31
|
+
function applyLinkButtonMods(mods: LinkButtonProps) {
|
|
32
|
+
return [
|
|
33
|
+
'uui-link_button',
|
|
34
|
+
css.root,
|
|
35
|
+
`uui-size-${mods.size || DEFAULT_SIZE}`,
|
|
36
|
+
...getIconClass(mods),
|
|
37
|
+
`uui-color-${mods.color || 'primary'}`,
|
|
38
|
+
];
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export const LinkButton = withMods<LinkButtonCoreProps, LinkButtonMods>(
|
|
42
|
+
Button,
|
|
43
|
+
applyLinkButtonMods,
|
|
44
|
+
(props) => ({
|
|
45
|
+
dropdownIcon: systemIcons[props.size || DEFAULT_SIZE].foldingArrow,
|
|
46
|
+
clearIcon: systemIcons[props.size || DEFAULT_SIZE].clear,
|
|
47
|
+
}),
|
|
48
|
+
);
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
@use 'sass:math';
|
|
2
|
+
@use '../../assets/styles/index' as *;
|
|
3
|
+
|
|
4
|
+
@mixin tab-button-color($color, $activeColor, $backgroundColor) {
|
|
5
|
+
color: $color;
|
|
6
|
+
fill: $color;
|
|
7
|
+
background-color: $backgroundColor;
|
|
8
|
+
|
|
9
|
+
&:hover {
|
|
10
|
+
color: $activeColor;
|
|
11
|
+
fill: $activeColor;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
&:global(.uui-active) {
|
|
15
|
+
color: $activeColor;
|
|
16
|
+
fill: $activeColor;
|
|
17
|
+
border-color: $activeColor;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
$text-size-caption: 36px;
|
|
22
|
+
$text-size-count: 24px;
|
|
23
|
+
|
|
24
|
+
.root {
|
|
25
|
+
--uui-tab_btn-text: var(--uui-text-primary);
|
|
26
|
+
--uui-tab_btn-text-hover: var(--uui-primary-50);
|
|
27
|
+
--uui-tab_btn-text-active: var(--uui-primary-50);
|
|
28
|
+
--uui-tab_btn-text-disabled: var(--uui-text-disabled);
|
|
29
|
+
--uui-tab_btn-font: var(--uui-font);
|
|
30
|
+
--uui-tab_btn-font-weight: 600;
|
|
31
|
+
|
|
32
|
+
@include link-button-horizontal-layout(36px);
|
|
33
|
+
@include tab-button-color(var(--uui-tab_btn-text), var(--uui-tab_btn-text-active), transparent);
|
|
34
|
+
cursor: pointer;
|
|
35
|
+
padding-left: 12px;
|
|
36
|
+
padding-right: 12px;
|
|
37
|
+
position: relative;
|
|
38
|
+
bottom: -1px;
|
|
39
|
+
display: flex;
|
|
40
|
+
align-items: center;
|
|
41
|
+
font-family: var(--uui-tab_btn-font);
|
|
42
|
+
font-weight: var(--uui-tab_btn-font-weight);
|
|
43
|
+
border-bottom: 3px solid transparent;
|
|
44
|
+
|
|
45
|
+
&:global(.-clickable):focus-visible {
|
|
46
|
+
@include focus-visible-effect(-2px, 0);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
&:global(.uui-disabled) {
|
|
50
|
+
@include tab-button-color(var(--uui-tab_btn-text-disabled), var(--uui-tab_btn-text-disabled), transparent);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
&.withNotify {
|
|
54
|
+
:global(.uui-caption) {
|
|
55
|
+
&::after {
|
|
56
|
+
content: '';
|
|
57
|
+
position: absolute;
|
|
58
|
+
margin-bottom: math.div($text-size-caption, 2);
|
|
59
|
+
height: 6px;
|
|
60
|
+
width: 6px;
|
|
61
|
+
background: var(--uui-critical-50);
|
|
62
|
+
box-shadow: 0 1px 8px 0 var(--uui-critical-50);
|
|
63
|
+
border-radius: 50%;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
&:global(.uui-button-box) {
|
|
69
|
+
min-width: min-content;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
:global(.uui-count_indicator) {
|
|
73
|
+
padding: 0 6px;
|
|
74
|
+
margin-left: 3px;
|
|
75
|
+
margin-right: 3px;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
:global(.uui-caption) {
|
|
79
|
+
@include text-size($text-size-caption, 0);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
// Sizes
|
|
83
|
+
&.size-36 {
|
|
84
|
+
height: 36px;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
&.size-48 {
|
|
88
|
+
height: 48px;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
&.size-60 {
|
|
92
|
+
height: 60px;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import * as uuiComponents from '@epam/uui-components';
|
|
3
|
+
import { withMods } from '@epam/uui-core';
|
|
4
|
+
import { getIconClass } from './helper';
|
|
5
|
+
import { CountIndicator } from '../widgets/CountIndicator';
|
|
6
|
+
import { systemIcons } from '../../icons/icons';
|
|
7
|
+
import css from './TabButton.module.scss';
|
|
8
|
+
|
|
9
|
+
interface TabButtonMods {
|
|
10
|
+
/**
|
|
11
|
+
* Defines component size.
|
|
12
|
+
* @default '48'
|
|
13
|
+
*/
|
|
14
|
+
size?: '36' | '48' | '60';
|
|
15
|
+
/**
|
|
16
|
+
* Defines is the component showing Notify
|
|
17
|
+
*/
|
|
18
|
+
withNotify?: boolean;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/** Represents the properties of a TabButton component. */
|
|
22
|
+
export type TabButtonProps = TabButtonMods & uuiComponents.ButtonProps;
|
|
23
|
+
|
|
24
|
+
function applyTabButtonMods(mods: TabButtonProps) {
|
|
25
|
+
return [
|
|
26
|
+
css.root,
|
|
27
|
+
'uui-tab-button',
|
|
28
|
+
css['size-' + (mods.size || '48')],
|
|
29
|
+
mods.withNotify && css.withNotify,
|
|
30
|
+
...getIconClass(mods),
|
|
31
|
+
];
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export const TabButton = withMods<uuiComponents.ButtonProps, TabButtonMods>(
|
|
35
|
+
uuiComponents.Button,
|
|
36
|
+
applyTabButtonMods,
|
|
37
|
+
(props) => ({
|
|
38
|
+
dropdownIcon: systemIcons['36'].foldingArrow,
|
|
39
|
+
clearIcon: systemIcons['36'].clear,
|
|
40
|
+
...props,
|
|
41
|
+
rawProps: { role: 'tab', ...(props.rawProps as any) },
|
|
42
|
+
countIndicator: (countIndicatorProps) => (
|
|
43
|
+
<CountIndicator
|
|
44
|
+
{ ...countIndicatorProps }
|
|
45
|
+
color={ props.isLinkActive ? 'info' : 'neutral' }
|
|
46
|
+
size="18"
|
|
47
|
+
/>
|
|
48
|
+
),
|
|
49
|
+
}),
|
|
50
|
+
);
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { withMods } from '@epam/uui-core';
|
|
2
|
+
import { TabButton, TabButtonProps } from './TabButton';
|
|
3
|
+
import css from './VerticalTabButton.module.scss';
|
|
4
|
+
|
|
5
|
+
function applyVerticalTabButtonMods() {
|
|
6
|
+
return [css.root];
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
/** Represents the properties of a VerticalTabButton component. */
|
|
10
|
+
export type VerticalTabButtonProps = TabButtonProps;
|
|
11
|
+
|
|
12
|
+
export const VerticalTabButton = withMods<VerticalTabButtonProps>(TabButton, applyVerticalTabButtonMods);
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Button } from '../Button';
|
|
3
|
+
import { renderSnapshotWithContextAsync, SvgMock } from '@epam/uui-test-utils';
|
|
4
|
+
|
|
5
|
+
describe('Button', () => {
|
|
6
|
+
it('should render with minimum props', async () => {
|
|
7
|
+
const tree = await renderSnapshotWithContextAsync(<Button />);
|
|
8
|
+
expect(tree).toMatchSnapshot();
|
|
9
|
+
});
|
|
10
|
+
|
|
11
|
+
it('should render with maximum props', async () => {
|
|
12
|
+
const tree = await renderSnapshotWithContextAsync(
|
|
13
|
+
<Button
|
|
14
|
+
color="accent"
|
|
15
|
+
fill="outline"
|
|
16
|
+
caption="Click me"
|
|
17
|
+
onClick={ jest.fn }
|
|
18
|
+
icon={ SvgMock }
|
|
19
|
+
isDisabled={ false }
|
|
20
|
+
isDropdown={ true }
|
|
21
|
+
count={ 10 }
|
|
22
|
+
iconPosition="right"
|
|
23
|
+
onClear={ jest.fn }
|
|
24
|
+
isOpen
|
|
25
|
+
clearIcon={ SvgMock }
|
|
26
|
+
rawProps={ {
|
|
27
|
+
id: '123',
|
|
28
|
+
'data-my_attr': 'value',
|
|
29
|
+
} }
|
|
30
|
+
/>,
|
|
31
|
+
);
|
|
32
|
+
expect(tree).toMatchSnapshot();
|
|
33
|
+
});
|
|
34
|
+
});
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconButton } from '../IconButton';
|
|
3
|
+
import { renderer } from '@epam/uui-test-utils';
|
|
4
|
+
import { ReactComponent as CalendarIcon } from '../../../icons/calendar-18.svg';
|
|
5
|
+
|
|
6
|
+
describe('IconButton', () => {
|
|
7
|
+
it('should be rendered correctly', () => {
|
|
8
|
+
const tree = renderer.create(<IconButton />).toJSON();
|
|
9
|
+
expect(tree).toMatchSnapshot();
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
it('should be rendered correctly with props', () => {
|
|
13
|
+
const tree = renderer.create(<IconButton color="info" onClick={ jest.fn } icon={ CalendarIcon } isDisabled={ false } />).toJSON();
|
|
14
|
+
expect(tree).toMatchSnapshot();
|
|
15
|
+
});
|
|
16
|
+
});
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { LinkButton } from '../LinkButton';
|
|
3
|
+
import { renderer } from '@epam/uui-test-utils';
|
|
4
|
+
import { ReactComponent as CalendarIcon } from '../../../icons/calendar-18.svg';
|
|
5
|
+
|
|
6
|
+
describe('LinkButton', () => {
|
|
7
|
+
it('should be rendered correctly', () => {
|
|
8
|
+
const tree = renderer.create(<LinkButton />).toJSON();
|
|
9
|
+
expect(tree).toMatchSnapshot();
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
it('should be rendered correctly with props', () => {
|
|
13
|
+
const tree = renderer.create(<LinkButton onClick={ jest.fn } icon={ CalendarIcon } isDisabled={ false } isDropdown onClear={ jest.fn } size="30" />).toJSON();
|
|
14
|
+
expect(tree).toMatchSnapshot();
|
|
15
|
+
});
|
|
16
|
+
});
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { TabButton } from '../TabButton';
|
|
3
|
+
import { renderer } from '@epam/uui-test-utils';
|
|
4
|
+
import { ReactComponent as calendarIcon } from '../../../icons/calendar-18.svg';
|
|
5
|
+
|
|
6
|
+
describe('TabButton', () => {
|
|
7
|
+
it('should be rendered correctly', () => {
|
|
8
|
+
const tree = renderer.create(<TabButton />).toJSON();
|
|
9
|
+
expect(tree).toMatchSnapshot();
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
it('should be rendered correctly with props', () => {
|
|
13
|
+
const tree = renderer.create(<TabButton onClick={ jest.fn } icon={ calendarIcon } isDisabled={ false } withNotify={ true } />).toJSON();
|
|
14
|
+
expect(tree).toMatchSnapshot();
|
|
15
|
+
});
|
|
16
|
+
});
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { VerticalTabButton } from '../VerticalTabButton';
|
|
3
|
+
import { renderer } from '@epam/uui-test-utils';
|
|
4
|
+
import { ReactComponent as calendarIcon } from '../../../icons/calendar-18.svg';
|
|
5
|
+
|
|
6
|
+
describe('VerticalTabButton', () => {
|
|
7
|
+
it('should be rendered correctly', () => {
|
|
8
|
+
const tree = renderer.create(<VerticalTabButton />).toJSON();
|
|
9
|
+
expect(tree).toMatchSnapshot();
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
it('should be rendered correctly with props', () => {
|
|
13
|
+
const tree = renderer.create(<VerticalTabButton onClick={ jest.fn } icon={ calendarIcon } isDisabled={ false } withNotify={ true } />).toJSON();
|
|
14
|
+
expect(tree).toMatchSnapshot();
|
|
15
|
+
});
|
|
16
|
+
});
|