@epam/uui 5.3.0-rc.0 → 5.3.0
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/inputs.scss +25 -21
- package/assets/styles/typography.scss +14 -6
- 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 +37 -0
- package/build/assets/styles/typography.scss +174 -0
- package/build/components/filters/FilterPanelItemToggler.d.ts +13 -0
- package/build/components/filters/FilterPanelItemToggler.d.ts.map +1 -0
- package/build/components/filters/FilterPickerBody.d.ts +9 -0
- package/build/components/filters/FilterPickerBody.d.ts.map +1 -0
- package/build/components/filters/FiltersPanel.d.ts.map +1 -0
- package/build/components/filters/FiltersPanelItem.d.ts.map +1 -0
- package/build/components/filters/PresetPanel/Preset.d.ts.map +1 -0
- package/build/components/filters/PresetPanel/PresetInput.d.ts.map +1 -0
- package/build/components/filters/PresetPanel/PresetsPanel.d.ts.map +1 -0
- package/build/components/filters/PresetPanel/constants.d.ts +5 -0
- package/build/components/filters/PresetPanel/constants.d.ts.map +1 -0
- package/build/components/filters/constants.d.ts +5 -0
- package/build/components/filters/constants.d.ts.map +1 -0
- package/build/components/inputs/TextInput.d.ts +15 -0
- package/build/components/layout/ScrollBars.d.ts +3 -0
- package/build/components/layout/ScrollBars.d.ts.map +1 -0
- package/build/components/layout/VirtualList.d.ts.map +1 -0
- package/build/components/navigation/MainMenu/MainMenuAvatar.d.ts +8 -0
- package/build/components/navigation/MainMenu/MainMenuIcon.d.ts +8 -0
- package/build/components/navigation/MainMenu/MainMenuSearch.d.ts +7 -0
- package/build/components/overlays/DropdownMenu.d.ts +37 -0
- package/build/components/overlays/DropdownMenu.d.ts.map +1 -0
- package/build/components/overlays/Tooltip.d.ts +8 -0
- package/build/components/pickers/DataPickerFooter.d.ts.map +1 -0
- package/build/components/pickers/PickerInput.d.ts.map +1 -0
- package/build/components/pickers/PickerModal.d.ts.map +1 -0
- package/build/components/pickers/highlight.d.ts.map +1 -0
- package/build/components/tables/DataTableHeaderCell.d.ts.map +1 -0
- package/build/components/types.d.ts +44 -0
- package/build/components/types.d.ts.map +1 -0
- package/build/components/typography/Text.d.ts +14 -0
- package/build/components/typography/Text.d.ts.map +1 -0
- package/build/helpers/useColumnsWithFilters.d.ts.map +1 -0
- package/build/index.esm.js +4674 -0
- package/build/index.esm.js.map +1 -0
- package/build/index.js +4863 -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 +11032 -0
- package/build/styles.css.map +1 -0
- package/components/buttons/Button.module.scss +157 -0
- package/components/buttons/Button.tsx +42 -0
- package/components/buttons/IconButton.module.scss +44 -0
- package/components/buttons/IconButton.tsx +20 -0
- package/components/buttons/LinkButton.module.scss +85 -0
- package/components/buttons/LinkButton.tsx +32 -0
- package/components/buttons/TabButton.module.scss +94 -0
- package/components/buttons/TabButton.tsx +38 -0
- package/components/buttons/VerticalTabButton.module.scss +7 -0
- package/components/buttons/VerticalTabButton.tsx +12 -0
- package/components/buttons/__tests__/Button.test.tsx +30 -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 +58 -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 +70 -0
- package/components/datePickers/DatePickerBody.module.scss +107 -0
- package/components/datePickers/DatePickerBody.tsx +74 -0
- package/components/datePickers/DatePickerHeader.module.scss +15 -0
- package/components/datePickers/DatePickerHeader.tsx +113 -0
- package/components/datePickers/RangeDatePicker.module.scss +101 -0
- package/components/datePickers/RangeDatePicker.tsx +107 -0
- package/components/datePickers/RangeDatePickerBody.module.scss +127 -0
- package/components/datePickers/RangeDatePickerBody.tsx +252 -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 +119 -0
- package/components/datePickers/__tests__/DatePickerBody.test.tsx +36 -0
- package/components/datePickers/__tests__/DatePickerHeader.test.tsx +57 -0
- package/components/datePickers/__tests__/RangeDatePicker.test.tsx +181 -0
- package/components/datePickers/__tests__/RangeDatePickerBody.test.tsx +186 -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 +57 -0
- package/components/datePickers/__tests__/__snapshots__/DatePickerBody.test.tsx.snap +62 -0
- package/components/datePickers/__tests__/__snapshots__/RangeDatePicker.test.tsx.snap +115 -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 +25 -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 +57 -0
- package/components/fileUpload/FileCard.module.scss +88 -0
- package/components/fileUpload/FileCard.tsx +134 -0
- package/components/fileUpload/SvgCircleProgress.module.scss +8 -0
- package/components/fileUpload/SvgCircleProgress.tsx +35 -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 +63 -0
- package/components/filters/FilterItemBody.tsx +23 -0
- package/components/filters/FilterNumericBody.module.scss +4 -0
- package/components/filters/FilterNumericBody.tsx +111 -0
- package/components/filters/FilterPanelItemToggler.module.scss +140 -0
- package/components/filters/FilterPanelItemToggler.tsx +91 -0
- package/components/filters/FilterPickerBody.tsx +73 -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 +257 -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 +50 -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 +35 -0
- package/components/filters/PresetPanel/__tests__/__snapshots__/presetsPanel.test.tsx.snap +101 -0
- package/components/filters/PresetPanel/__tests__/presetsPanel.test.tsx +395 -0
- package/components/filters/PresetPanel/constants.ts +4 -0
- package/components/filters/PresetPanel/index.ts +1 -0
- package/components/filters/__tests__/filtersPanel.test.tsx +371 -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 +15 -0
- package/components/inputs/Checkbox.module.scss +162 -0
- package/components/inputs/Checkbox.tsx +30 -0
- package/components/inputs/InputAddon.module.scss +11 -0
- package/components/inputs/InputAddon.tsx +11 -0
- package/components/inputs/MultiSwitch.tsx +39 -0
- package/components/inputs/NumericInput.module.scss +97 -0
- package/components/inputs/NumericInput.tsx +27 -0
- package/components/inputs/RadioInput.module.scss +200 -0
- package/components/inputs/RadioInput.tsx +16 -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 +17 -0
- package/components/inputs/TextArea.module.scss +210 -0
- package/components/inputs/TextArea.tsx +24 -0
- package/components/inputs/TextInput.module.scss +187 -0
- package/components/inputs/TextInput.tsx +59 -0
- package/components/inputs/TimePicker.module.scss +68 -0
- package/components/inputs/TimePicker.tsx +69 -0
- package/components/inputs/TimePickerBody.tsx +10 -0
- package/components/inputs/__tests__/Checkbox.test.tsx +15 -0
- package/components/inputs/__tests__/MultiSwitch.test.tsx +16 -0
- package/components/inputs/__tests__/NumericInput.test.tsx +208 -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 +39 -0
- package/components/inputs/__tests__/__snapshots__/MultiSwitch.test.tsx.snap +37 -0
- package/components/inputs/__tests__/__snapshots__/NumericInput.test.tsx.snap +93 -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 +32 -0
- package/components/inputs/__tests__/__snapshots__/TextInput.test.tsx.snap +53 -0
- package/components/inputs/__tests__/__snapshots__/TimePicker.test.tsx +19 -0
- package/components/inputs/__tests__/__snapshots__/TimePicker.test.tsx.snap +43 -0
- package/components/inputs/__tests__/__snapshots__/TimePickerBody.test.tsx +38 -0
- package/components/inputs/__tests__/__snapshots__/TimePickerBody.test.tsx.snap +321 -0
- package/components/inputs/__tests__/__snapshots__/__snapshots__/TimePicker.test.tsx.snap +43 -0
- package/components/inputs/__tests__/__snapshots__/__snapshots__/TimePickerBody.test.tsx.snap +321 -0
- package/components/inputs/index.ts +10 -0
- package/components/layout/Accordion.module.scss +180 -0
- package/components/layout/Accordion.tsx +23 -0
- package/components/layout/Blocker.module.scss +30 -0
- package/components/layout/Blocker.tsx +11 -0
- package/components/layout/CheckboxGroup.module.scss +15 -0
- package/components/layout/CheckboxGroup.tsx +10 -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 +9 -0
- package/components/layout/FlexItems/FlexRow.module.scss +122 -0
- package/components/layout/FlexItems/FlexRow.tsx +32 -0
- package/components/layout/FlexItems/Panel.module.scss +34 -0
- package/components/layout/FlexItems/Panel.tsx +19 -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 +21 -0
- package/components/layout/RadioGroup.module.scss +15 -0
- package/components/layout/RadioGroup.tsx +10 -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 +127 -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 +103 -0
- package/components/layout/__tests__/__snapshots__/ControlGroup.test.tsx.snap +33 -0
- package/components/layout/__tests__/__snapshots__/LabeledInput.test.tsx.snap +87 -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 +22 -0
- package/components/navigation/MainMenu/Burger/BurgerGroupHeader.module.scss +31 -0
- package/components/navigation/MainMenu/Burger/BurgerGroupHeader.tsx +16 -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 +53 -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 +14 -0
- package/components/navigation/MainMenu/MainMenu.module.scss +53 -0
- package/components/navigation/MainMenu/MainMenu.tsx +21 -0
- package/components/navigation/MainMenu/MainMenuAvatar.module.scss +41 -0
- package/components/navigation/MainMenu/MainMenuAvatar.tsx +30 -0
- package/components/navigation/MainMenu/MainMenuButton.module.scss +58 -0
- package/components/navigation/MainMenu/MainMenuButton.tsx +14 -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 +13 -0
- package/components/navigation/MainMenu/MainMenuSearch.module.scss +51 -0
- package/components/navigation/MainMenu/MainMenuSearch.tsx +26 -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 +53 -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 +75 -0
- package/components/overlays/ConfirmationModal.tsx +38 -0
- package/components/overlays/Dropdown.tsx +7 -0
- package/components/overlays/DropdownContainer.module.scss +93 -0
- package/components/overlays/DropdownContainer.tsx +20 -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 +82 -0
- package/components/overlays/NotificationCard.module.scss +76 -0
- package/components/overlays/NotificationCard.tsx +97 -0
- package/components/overlays/Tooltip.module.scss +74 -0
- package/components/overlays/Tooltip.tsx +19 -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 +423 -0
- package/components/overlays/__tests__/__snapshots__/Dropdown.test.tsx.snap +51 -0
- package/components/overlays/__tests__/__snapshots__/DropdownContainer.test.tsx.snap +82 -0
- package/components/overlays/__tests__/__snapshots__/DropdownMenu.test.tsx.snap +128 -0
- package/components/overlays/__tests__/__snapshots__/Modals.test.tsx.snap +206 -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 +68 -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 +30 -0
- package/components/pickers/DataPickerRow.tsx +77 -0
- package/components/pickers/MobileDropdownWrapper.module.scss +20 -0
- package/components/pickers/MobileDropdownWrapper.tsx +38 -0
- package/components/pickers/PickerInput.module.scss +39 -0
- package/components/pickers/PickerInput.tsx +180 -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 +145 -0
- package/components/pickers/PickerToggler.module.scss +249 -0
- package/components/pickers/PickerToggler.tsx +84 -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 +1041 -0
- package/components/pickers/__tests__/PickerList.test.tsx +619 -0
- package/components/pickers/__tests__/PickerModal.test.tsx +542 -0
- package/components/pickers/__tests__/PickerToggler.test.tsx +40 -0
- package/components/pickers/__tests__/__snapshots__/DataPickerBody.test.tsx.snap +197 -0
- package/components/pickers/__tests__/__snapshots__/DataPickerRow.test.tsx.snap +114 -0
- package/components/pickers/__tests__/__snapshots__/PickerInput.test.tsx.snap +705 -0
- package/components/pickers/__tests__/__snapshots__/PickerList.test.tsx.snap +828 -0
- package/components/pickers/__tests__/__snapshots__/PickerModal.test.tsx.snap +1638 -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/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 +149 -0
- package/components/tables/DataTableCell.module.scss +123 -0
- package/components/tables/DataTableCell.tsx +96 -0
- package/components/tables/DataTableHeaderCell.module.scss +161 -0
- package/components/tables/DataTableHeaderCell.tsx +144 -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 +181 -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 +44 -0
- package/components/tables/columnsConfigurationModal/ColumnRow.tsx +68 -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 +951 -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 +73 -0
- package/components/typography/RichTextView.tsx +13 -0
- package/components/typography/Text.module.scss +50 -0
- package/components/typography/Text.tsx +39 -0
- package/components/typography/TextPlaceholder.module.scss +33 -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 +75 -0
- package/components/widgets/CountIndicator.module.scss +52 -0
- package/components/widgets/CountIndicator.tsx +26 -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 +24 -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 +36 -0
- package/components/widgets/Tag.module.scss +121 -0
- package/components/widgets/Tag.tsx +55 -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 +10 -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 +125 -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 +11 -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 +6 -6
- package/themeTodo.md +21 -0
- package/tsconfig.json +12 -0
- package/components/filters/FilterPanelItemToggler.d.ts +0 -13
- package/components/filters/FilterPanelItemToggler.d.ts.map +0 -1
- package/components/filters/FilterPickerBody.d.ts +0 -7
- package/components/filters/FilterPickerBody.d.ts.map +0 -1
- package/components/filters/FiltersPanel.d.ts.map +0 -1
- package/components/filters/FiltersPanelItem.d.ts.map +0 -1
- package/components/filters/PresetPanel/Preset.d.ts.map +0 -1
- package/components/filters/PresetPanel/PresetInput.d.ts.map +0 -1
- package/components/filters/PresetPanel/PresetsPanel.d.ts.map +0 -1
- package/components/inputs/TextInput.d.ts +0 -15
- package/components/layout/ScrollBars.d.ts +0 -4
- package/components/layout/ScrollBars.d.ts.map +0 -1
- package/components/layout/VirtualList.d.ts.map +0 -1
- package/components/navigation/MainMenu/MainMenuAvatar.d.ts +0 -8
- package/components/navigation/MainMenu/MainMenuIcon.d.ts +0 -8
- package/components/navigation/MainMenu/MainMenuSearch.d.ts +0 -7
- package/components/overlays/DropdownMenu.d.ts +0 -39
- package/components/overlays/DropdownMenu.d.ts.map +0 -1
- package/components/overlays/Tooltip.d.ts +0 -8
- package/components/pickers/DataPickerFooter.d.ts.map +0 -1
- package/components/pickers/PickerInput.d.ts.map +0 -1
- package/components/pickers/PickerModal.d.ts.map +0 -1
- package/components/pickers/highlight.d.ts.map +0 -1
- package/components/tables/DataTableHeaderCell.d.ts.map +0 -1
- package/components/types.d.ts +0 -42
- package/components/types.d.ts.map +0 -1
- package/components/typography/Text.d.ts +0 -13
- package/components/typography/Text.d.ts.map +0 -1
- package/helpers/useColumnsWithFilters.d.ts.map +0 -1
- package/index.esm.js +0 -4657
- package/index.esm.js.map +0 -1
- package/index.js +0 -4845
- package/index.js.map +0 -1
- package/stats.html +0 -4838
- package/styles.css +0 -11020
- 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/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/FiltersPanelItem.d.ts +0 -0
- /package/{components → build/components}/filters/PresetPanel/Preset.d.ts +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/PresetsPanel.d.ts +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/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.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/VirtualList.d.ts +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.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.map +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/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.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/DataPickerFooter.d.ts +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/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/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/index.d.ts +0 -0
- /package/{components → build/components}/pickers/index.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/DataTableHeaderCell.d.ts +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}/typography/RichTextView.d.ts +0 -0
- /package/{components → build/components}/typography/RichTextView.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/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/{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
package/i18n.ts
ADDED
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import { i18n as uuiI18n } from '@epam/uui-core';
|
|
2
|
+
|
|
3
|
+
export const i18n = {
|
|
4
|
+
...uuiI18n,
|
|
5
|
+
dataPickerBody: {
|
|
6
|
+
searchPlaceholder: 'Search',
|
|
7
|
+
noRecordsMessage: 'No records found',
|
|
8
|
+
noRecordsSubTitle: 'Check your spelling, or search for a different keyword',
|
|
9
|
+
},
|
|
10
|
+
pickerModal: {
|
|
11
|
+
headerTitle: 'Please select',
|
|
12
|
+
searchPlaceholder: 'Type text for quick search',
|
|
13
|
+
cancelButton: 'Cancel',
|
|
14
|
+
selectButton: 'Select',
|
|
15
|
+
clearAllButton: 'CLEAR ALL',
|
|
16
|
+
selectAllButton: 'SELECT ALL',
|
|
17
|
+
},
|
|
18
|
+
pickerInput: {
|
|
19
|
+
showOnlySelectedLabel: 'Show only selected',
|
|
20
|
+
clearSelectionButton: 'CLEAR ALL',
|
|
21
|
+
clearSelectionButtonSingle: 'CLEAR',
|
|
22
|
+
selectAllButton: 'SELECT ALL',
|
|
23
|
+
doneButton: 'DONE',
|
|
24
|
+
},
|
|
25
|
+
notificationCard: {
|
|
26
|
+
closeAllNotificationsButton: 'CLOSE ALL NOTIFICATIONS',
|
|
27
|
+
},
|
|
28
|
+
form: {
|
|
29
|
+
notifications: {
|
|
30
|
+
actionButtonCaption: 'Restore',
|
|
31
|
+
unsavedChangesMessage: 'You have unsaved changes. Click Restore button if you would like to recover the data',
|
|
32
|
+
},
|
|
33
|
+
modals: {
|
|
34
|
+
beforeLeaveMessage: 'Your data may be lost. Do you want to save data?',
|
|
35
|
+
discardButton: 'Discard',
|
|
36
|
+
saveButton: 'Save',
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
rangeDatePicker: {
|
|
40
|
+
pickerPlaceholderFrom: 'From:',
|
|
41
|
+
pickerPlaceholderTo: 'To:',
|
|
42
|
+
},
|
|
43
|
+
tables: {
|
|
44
|
+
noResultsBlock: {
|
|
45
|
+
title: 'No results found',
|
|
46
|
+
message: 'We can’t find any item matching your request',
|
|
47
|
+
},
|
|
48
|
+
columnsConfigurationModal: {
|
|
49
|
+
applyButton: 'Apply',
|
|
50
|
+
cancelButton: 'Cancel',
|
|
51
|
+
selectAllButton: 'Select all',
|
|
52
|
+
clearAllButton: 'Clear all',
|
|
53
|
+
checkAllButton: 'Check All',
|
|
54
|
+
uncheckAllButton: 'Uncheck All',
|
|
55
|
+
configureColumnsTitle: 'Configure columns',
|
|
56
|
+
resetToDefaultButton: 'Reset to Default',
|
|
57
|
+
displayedSectionTitle: 'Displayed in table',
|
|
58
|
+
hiddenSectionTitle: 'Hidden in table',
|
|
59
|
+
searchPlaceholder: 'Search by column name',
|
|
60
|
+
noResultsFound: {
|
|
61
|
+
text: 'No results found',
|
|
62
|
+
subText: 'We can’t find any item matching your request',
|
|
63
|
+
},
|
|
64
|
+
enableAtLeastOneColumnMessage: 'Please enable at least one column',
|
|
65
|
+
pinColumnButton: 'Pin column',
|
|
66
|
+
unPinColumnButton: 'Unpin column',
|
|
67
|
+
lockedColumnPinButton: 'You cannot unpin this column',
|
|
68
|
+
},
|
|
69
|
+
},
|
|
70
|
+
pickerFilterHeader: {
|
|
71
|
+
sortAscending: 'Sort Ascending',
|
|
72
|
+
sortDescending: 'Sort Descending',
|
|
73
|
+
},
|
|
74
|
+
filterToolbar: {
|
|
75
|
+
addCaption: 'Add filter',
|
|
76
|
+
datePicker: {
|
|
77
|
+
placeholder: 'Select date',
|
|
78
|
+
removeCaption: 'REMOVE FILTER',
|
|
79
|
+
clearCaption: 'CLEAR',
|
|
80
|
+
},
|
|
81
|
+
rangeDatePicker: {
|
|
82
|
+
emptyPickerPlaceholder: 'Select period',
|
|
83
|
+
emptyPlaceholderFrom: 'Select From',
|
|
84
|
+
emptyPlaceholderTo: 'Select To',
|
|
85
|
+
},
|
|
86
|
+
pickerInput: {
|
|
87
|
+
itemsPlaceholder: 'items',
|
|
88
|
+
},
|
|
89
|
+
},
|
|
90
|
+
presetPanel: {
|
|
91
|
+
addCaption: 'Add Preset',
|
|
92
|
+
},
|
|
93
|
+
confirmationModal: {
|
|
94
|
+
discardButton: 'Discard',
|
|
95
|
+
saveButton: 'Save',
|
|
96
|
+
},
|
|
97
|
+
fileUpload: {
|
|
98
|
+
labelStart: 'Drop files to attach or',
|
|
99
|
+
browse: 'browse',
|
|
100
|
+
labelEnd: 'your local files',
|
|
101
|
+
},
|
|
102
|
+
fileCard: {
|
|
103
|
+
fileSizeProgress: ' of ',
|
|
104
|
+
},
|
|
105
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill-rule="evenodd" d="M4.846 6.8L9.462 2 11 3.6 4.846 10l-.77-.8L1 6l1.538-1.6 2.308 2.4z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><path fill-rule="evenodd" d="M7.136 11.91L4.034 8.776 3 9.821 7.136 14 16 5.045 14.966 4z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M9.727 16.075l-4.295-4.388L4 13.149 9.727 19 22 6.463 20.568 5z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill-rule="evenodd" d="M2.016 6.361a4.051 4.051 0 010-.722l-.84-1.273 1-1.732 1.526.092c.195-.137.402-.257.62-.358L5.006 1h2l.688 1.375c.212.1.415.217.605.351l1.537-.092 1 1.732-.85 1.289a4.053 4.053 0 010 .69l.85 1.289-1 1.732L8.3 9.274c-.19.134-.393.251-.605.35L7.006 11h-2l-.684-1.368c-.218-.1-.425-.22-.62-.358l-1.526.092-1-1.732.84-1.273zM6 8a2 2 0 100-4 2 2 0 000 4z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><path fill-rule="evenodd" d="M3 9.093a6.121 6.121 0 010-.186L1.55 7.271a1 1 0 01-.118-1.163l1.28-2.216a1 1 0 011.066-.48l2.14.439c.054-.033.108-.064.163-.094l.691-2.073A1 1 0 017.721 1h2.558a1 1 0 01.949.684l.69 2.073c.056.03.11.061.163.094l2.141-.439a1 1 0 011.067.48l1.279 2.216a1 1 0 01-.118 1.163L15 8.907a6.12 6.12 0 010 .186l1.45 1.636a1 1 0 01.118 1.163l-1.28 2.216a1 1 0 01-1.066.48l-2.14-.439a5.994 5.994 0 01-.163.094l-.691 2.073a1 1 0 01-.949.684H7.721a1 1 0 01-.949-.684l-.69-2.073a5.994 5.994 0 01-.163-.094l-2.141.439a1 1 0 01-1.067-.48l-1.279-2.216a1 1 0 01.118-1.163L3 9.093zM9 12a3 3 0 100-6 3 3 0 000 6z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M16.265 18.77c-.174.11-.352.213-.535.309l-.54 2.164a1 1 0 01-.97.757H9.78a1 1 0 01-.97-.757l-.54-2.164c-.183-.096-.36-.2-.535-.31l-2.145.614a1 1 0 01-1.14-.461l-2.22-3.844a1 1 0 01.171-1.219l1.605-1.551a8.142 8.142 0 010-.616L2.4 10.141a1 1 0 01-.17-1.22l2.218-3.843a1 1 0 011.141-.461l2.145.613c.174-.11.352-.213.535-.309l.54-2.164A1 1 0 019.78 2h4.44a1 1 0 01.97.757l.54 2.164c.183.096.36.2.535.31l2.145-.614a1 1 0 011.14.461l2.22 3.844a1 1 0 01-.171 1.219l-1.605 1.551a8.142 8.142 0 010 .616l1.605 1.551a1 1 0 01.17 1.22l-2.218 3.843a1 1 0 01-1.141.461l-2.145-.613zM12 16a4 4 0 100-8 4 4 0 000 8z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill-rule="evenodd" d="M9.5 3.205L8.795 2.5 6 5.295 3.205 2.5l-.705.705L5.295 6 2.5 8.795l.705.705L6 6.705 8.795 9.5l.705-.705L6.705 6z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><path fill-rule="evenodd" d="M14.25 4.808L13.193 3.75 9 7.942 4.808 3.75 3.75 4.808 7.942 9 3.75 13.193l1.058 1.057L9 10.057l4.193 4.193 1.057-1.057L10.057 9z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="60px" height="60px" viewBox="0 0 60 60" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path transform="translate(18.000000, 18.000000)" d="M20.5431153,2 L22,3.45688473 L13.456,12 L22,20.5431153 L20.5431153,22 L12,13.456 L3.45688473,22 L2,20.5431153 L10.543,12 L2,3.45688473 L3.45688473,2 L12,10.543 L20.5431153,2 Z" id="icon" />
|
|
3
|
+
</svg>
|
package/icons/burger.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill-rule="evenodd" d="M10 2H9V1H8v1H4V1H3v1H2c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm0 8H2V4h8v6z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><path fill-rule="evenodd" d="M14 3V1h-2v2H6V1H4v2C3 3 2 4 2 5v10c0 1 1 2 2 2h10c1 0 2-1 2-2V5c0-1-1-2-2-2zm0 12l-10 .048V7h10v8z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z"/></svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="18px" height="18px" viewBox="0 0 18 18" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<polygon id="Path-2" fill-rule="evenodd" points="14.2474233 4.34149539 15.7525767 5.65850461 8.04871006 14.4629236 3.29289322 9.70710678 4.70710678 8.29289322 7.951 11.536"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="20" height="20" version="1.1" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<g transform="translate(0,-294.65)" display="none">
|
|
4
|
+
<path d="m6 297.65v1h-2v2h-1v8h1v2h2v1h8v-1h2v-2h1v-8h-1v-2h-2v-1z" fill-opacity=".27451" opacity=".544"/>
|
|
5
|
+
<path d="m9.91 297.99a6.6574 6.6574 89.506 0 0-6.568 6.7468 6.6574 6.6574 89.506 0 0 6.7468 6.568 6.6574 6.6574 89.506 0 0 6.568-6.7468 6.6574 6.6574 89.506 0 0-6.7468-6.568zm0.089396 0.83218a5.8252 5.8252 0 0 1 5.8252 5.8252 5.8252 5.8252 0 0 1-5.8252 5.8252 5.8252 5.8252 0 0 1-5.8252-5.8252 5.8252 5.8252 0 0 1 5.8252-5.8252z"/>
|
|
6
|
+
<rect x="-4.9792" y="289.67" width="29.958" height="29.958" fill="none" stroke="#000000" stroke-width=".041609"/>
|
|
7
|
+
<ellipse cx="10" cy="304.65" rx="14.979" ry="14.979" fill="none" stroke="#000000" stroke-width=".041609"/>
|
|
8
|
+
</g>
|
|
9
|
+
<g transform="translate(0,-4)">
|
|
10
|
+
<g transform="matrix(1.1539 0 0 1.15 .68686 4.4985)">
|
|
11
|
+
<g transform="translate(0,-298.65)" display="none">
|
|
12
|
+
<rect x="-3.9834" y="294.67" width="23.967" height="23.967" fill="none" stroke="#000000" stroke-width=".033287"/>
|
|
13
|
+
<circle cx="8" cy="306.65" r="11.983" fill="none" stroke="#000000" stroke-width=".033287"/>
|
|
14
|
+
<path d="m5 300.65v1h-1v1h-1v1h-1v6h1v1h1v1h1v1h6v-1h1v-1h1v-1h1v-6h-1v-1h-1v-1h-1v-1z" fill="#000000" fill-opacity=".14902"/>
|
|
15
|
+
</g>
|
|
16
|
+
<g>
|
|
17
|
+
<path d="m7.3054 9.0514 4.8667-5.5042a1.6253 1.6667 0 0 1 2.4074 2.2399l-5.8938 6.6664a1.6251 1.6666 0 0 1-2.221 0.18l-3.857-3.1721a1.6254 1.6668 0 1 1 2.0347-2.5999z" fill-rule="evenodd" stroke-width="1.0972"/>
|
|
18
|
+
</g>
|
|
19
|
+
</g>
|
|
20
|
+
</g>
|
|
21
|
+
</svg>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<g transform="translate(0,-298.65)" display="none">
|
|
4
|
+
<rect x="-3.9834" y="294.67" width="23.967" height="23.967" fill="none" stroke="#000000" stroke-width=".033287"/>
|
|
5
|
+
<circle cx="8" cy="306.65" r="11.983" fill="none" stroke="#000000" stroke-width=".033287"/>
|
|
6
|
+
<path d="m5 300.65v1h-1v1h-1v1h-1v6h1v1h1v1h1v1h6v-1h1v-1h1v-1h1v-6h-1v-1h-1v-1h-1v-1z" fill="#000000" fill-opacity=".14902"/>
|
|
7
|
+
</g>
|
|
8
|
+
<g transform="translate(0,-8)">
|
|
9
|
+
<g transform="matrix(.83333 0 0 1 -.33333 6)">
|
|
10
|
+
<g transform="translate(0,-294.65)" display="none">
|
|
11
|
+
<path d="m6 297.65v1h-2v2h-1v8h1v2h2v1h8v-1h2v-2h1v-8h-1v-2h-2v-1z" fill-opacity=".27451" opacity=".544"/>
|
|
12
|
+
<path d="m9.91 297.99a6.6574 6.6574 89.506 0 0-6.568 6.7468 6.6574 6.6574 89.506 0 0 6.7468 6.568 6.6574 6.6574 89.506 0 0 6.568-6.7468 6.6574 6.6574 89.506 0 0-6.7468-6.568zm0.089396 0.83218a5.8252 5.8252 0 0 1 5.8252 5.8252 5.8252 5.8252 0 0 1-5.8252 5.8252 5.8252 5.8252 0 0 1-5.8252-5.8252 5.8252 5.8252 0 0 1 5.8252-5.8252z"/>
|
|
13
|
+
<rect x="-4.9792" y="289.67" width="29.958" height="29.958" fill="none" stroke="#000000" stroke-width=".041609"/>
|
|
14
|
+
<ellipse cx="10" cy="304.65" rx="14.979" ry="14.979" fill="none" stroke="#000000" stroke-width=".041609"/>
|
|
15
|
+
</g>
|
|
16
|
+
<g transform="translate(0,-4)">
|
|
17
|
+
<rect x="4" y="12" width="12" height="3" rx="1.8" fill-rule="evenodd" stroke-width="1.0954"/>
|
|
18
|
+
</g>
|
|
19
|
+
</g>
|
|
20
|
+
</g>
|
|
21
|
+
</svg>
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
width="14"
|
|
7
|
+
height="14"
|
|
8
|
+
viewBox="0 0 14 14"
|
|
9
|
+
version="1.1"
|
|
10
|
+
id="svg8">
|
|
11
|
+
<defs
|
|
12
|
+
id="defs2">
|
|
13
|
+
<pattern
|
|
14
|
+
y="0"
|
|
15
|
+
x="0"
|
|
16
|
+
height="6"
|
|
17
|
+
width="6"
|
|
18
|
+
patternUnits="userSpaceOnUse"
|
|
19
|
+
id="EMFhbasepattern" />
|
|
20
|
+
<pattern
|
|
21
|
+
y="0"
|
|
22
|
+
x="0"
|
|
23
|
+
height="6"
|
|
24
|
+
width="6"
|
|
25
|
+
patternUnits="userSpaceOnUse"
|
|
26
|
+
id="EMFhbasepattern-7" />
|
|
27
|
+
<pattern
|
|
28
|
+
y="0"
|
|
29
|
+
x="0"
|
|
30
|
+
height="6"
|
|
31
|
+
width="6"
|
|
32
|
+
patternUnits="userSpaceOnUse"
|
|
33
|
+
id="EMFhbasepattern-0" />
|
|
34
|
+
</defs>
|
|
35
|
+
<g
|
|
36
|
+
id="layer2"
|
|
37
|
+
style="display:inline"
|
|
38
|
+
transform="translate(0,-10)">
|
|
39
|
+
<path
|
|
40
|
+
id="rect6017-9"
|
|
41
|
+
d="M 11.585822,12.514734 5.9289233,18.17159 3.100495,15.343181 1.6862979,16.757367 4.5147262,19.585776 5.9289384,21 7.3431356,19.585814 13,13.928957 Z"
|
|
42
|
+
style="opacity:1;vector-effect:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.0954448;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
43
|
+
</g>
|
|
44
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill-rule="evenodd" d="M1 8.974V11h2.026L9 5.026 6.974 3 1 8.974zm9.85-5.909c.2-.2.2-.52 0-.72L9.656 1.149c-.2-.199-.52-.199-.72 0L8 2.084 9.916 4l.935-.935z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><path fill-rule="evenodd" d="M2.25 12.94v2.812h2.813l8.294-8.295-2.812-2.813L2.25 12.94zm13.283-7.658a.747.747 0 000-1.058L13.777 2.47a.747.747 0 00-1.058 0l-1.373 1.373 2.813 2.812 1.373-1.372z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M3 17.253v3.75h3.75l11.06-11.06-3.75-3.75L3 17.253zm17.71-10.21a.996.996 0 000-1.41l-2.34-2.34a.996.996 0 00-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"/></svg>
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
<svg width="232" height="180" viewBox="0 0 232 180" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_18395_59719)">
|
|
3
|
+
<path d="M150.585 1.53517C49.4828 -11.4952 27.4814 61.8041 45.7256 97.4814C56.3063 118.171 6.08421 168.273 63.469 178.949C91.007 184.072 99.469 165.608 125.902 168.294C161.302 171.894 274.069 163.564 214.251 89.3793C182.538 50.0441 215.277 9.8731 150.585 1.53517Z" fill="#F5F6FA"/>
|
|
4
|
+
<path d="M58.069 136.51L57.4152 140.748L56.1449 135.368C52.511 133.312 48.6687 131.647 44.6828 130.403L44.6001 136.039L42.0552 129.646C37.599 128.459 33.0114 127.836 28.4001 127.792L29.1035 133.97L25.7476 127.862C21.5969 128.045 17.4922 128.808 13.5532 130.13L15.8828 133.655C15.8828 133.655 13.7104 132.058 11.7987 130.759C7.88682 132.286 4.23309 134.406 0.965576 137.044C4.81029 140.948 9.02138 144.473 13.5407 147.571C16.0235 146.934 18.6676 146.292 18.6676 146.292L15.407 148.829C19.5741 151.589 24.0276 153.891 28.6897 155.694C31.0359 154.341 34.1063 152.425 34.1063 152.425L30.5518 156.356C35.5104 158.097 40.7505 158.897 46.0028 158.715L50.2607 154.502L48.5642 158.503C55.5656 157.655 62.7076 154.601 69.5145 148.159C67.8925 144.29 63.7463 140.086 58.069 136.51Z" fill="#9BDEFF"/>
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.557158 136.978C0.593748 136.752 0.806281 136.599 1.03186 136.636L69.5808 147.754C69.8064 147.791 69.9596 148.003 69.923 148.229C69.8864 148.455 69.6739 148.608 69.4483 148.571L0.899362 137.453C0.673779 137.416 0.520569 137.203 0.557158 136.978Z" fill="white"/>
|
|
6
|
+
<path d="M174.887 125.586H86.7863C84.0346 125.586 81.407 123.352 81.407 120.6V27.5339C81.407 24.7822 84.0511 22.5684 86.7863 22.5684H174.887C177.639 22.5684 180.287 24.7987 180.287 27.5339V120.6C180.287 123.352 177.655 125.586 174.887 125.586Z" fill="#9BDEFF"/>
|
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M86.7863 22.9821C84.2352 22.9821 81.8208 25.0527 81.8208 27.5339V120.6C81.8208 123.084 84.2218 125.172 86.7863 125.172H174.887C177.469 125.172 179.873 123.083 179.873 120.6V27.5339C179.873 25.0696 177.455 22.9821 174.887 22.9821H86.7863ZM80.9932 27.5339C80.9932 24.5115 83.867 22.1545 86.7863 22.1545H174.887C177.822 22.1545 180.701 24.5278 180.701 27.5339V120.6C180.701 123.621 177.841 126 174.887 126H86.7863C83.8473 126 80.9932 123.619 80.9932 120.6V27.5339Z" fill="#1D1E26"/>
|
|
8
|
+
<mask id="mask0_18395_59719" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="81" y="22" width="100" height="104">
|
|
9
|
+
<path d="M174.887 125.586H86.7863C84.0346 125.586 81.407 123.352 81.407 120.6V27.5339C81.407 24.7822 84.0511 22.5684 86.7863 22.5684H174.887C177.639 22.5684 180.287 24.7987 180.287 27.5339V120.6C180.287 123.352 177.655 125.586 174.887 125.586Z" fill="#9BDEFF"/>
|
|
10
|
+
</mask>
|
|
11
|
+
<g mask="url(#mask0_18395_59719)">
|
|
12
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M69.8168 99.2466C69.9778 99.0844 70.2398 99.0834 70.402 99.2443L121.282 149.727C121.444 149.888 121.445 150.15 121.284 150.312C121.123 150.474 120.861 150.476 120.699 150.315L69.8191 99.8318C69.6569 99.6708 69.6559 99.4088 69.8168 99.2466Z" fill="white"/>
|
|
13
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M72.8017 28.407C73.0074 28.3073 73.2549 28.3932 73.3546 28.5988L136.955 159.771C137.054 159.977 136.968 160.224 136.763 160.324C136.557 160.424 136.31 160.338 136.21 160.132L72.6099 28.9599C72.5102 28.7543 72.5961 28.5067 72.8017 28.407Z" fill="white"/>
|
|
14
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M142.576 6.51548C142.759 6.65121 142.798 6.91029 142.663 7.09415L60.1854 118.818C60.0497 119.002 59.7906 119.041 59.6068 118.905C59.4229 118.77 59.3839 118.511 59.5196 118.327L141.997 6.60263C142.133 6.41877 142.392 6.37975 142.576 6.51548Z" fill="white"/>
|
|
15
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M197.977 60.314C198.158 60.4538 198.191 60.7136 198.052 60.8945L121.318 160.205C121.178 160.386 120.918 160.419 120.737 160.279C120.557 160.14 120.523 159.88 120.663 159.699L197.397 60.3885C197.537 60.2076 197.796 60.1743 197.977 60.314Z" fill="white"/>
|
|
16
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M192.316 43.4397C192.447 43.6273 192.401 43.8852 192.213 44.0157L60.0888 135.878C59.9011 136.008 59.6433 135.962 59.5128 135.774C59.3823 135.587 59.4287 135.329 59.6163 135.198L191.74 43.3362C191.928 43.2057 192.186 43.2521 192.316 43.4397Z" fill="white"/>
|
|
17
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M91.9658 11.5323C92.1213 11.3648 92.3831 11.3551 92.5506 11.5106L221.803 131.511C221.97 131.666 221.98 131.928 221.825 132.095C221.669 132.263 221.407 132.273 221.24 132.117L91.9875 12.1171C91.82 11.9616 91.8103 11.6998 91.9658 11.5323Z" fill="white"/>
|
|
18
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M75.2324 2.76882C75.4286 2.65174 75.6827 2.71593 75.7997 2.91219L169.354 159.74C169.471 159.936 169.407 160.19 169.211 160.307C169.015 160.424 168.761 160.36 168.643 160.164L75.089 3.33617C74.9719 3.13991 75.0361 2.8859 75.2324 2.76882Z" fill="white"/>
|
|
19
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M125.643 0.328922C125.816 0.179147 126.077 0.19766 126.227 0.37027L198.037 83.1289C198.187 83.3015 198.168 83.5628 197.995 83.7126C197.823 83.8624 197.561 83.8439 197.412 83.6713L125.602 0.912651C125.452 0.74004 125.471 0.478696 125.643 0.328922Z" fill="white"/>
|
|
20
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M67.271 75.3686C67.3646 75.1601 67.6094 75.067 67.8179 75.1605L224.563 145.505C224.771 145.599 224.864 145.844 224.771 146.052C224.677 146.261 224.432 146.354 224.224 146.26L67.4791 75.9156C67.2706 75.822 67.1774 75.5771 67.271 75.3686Z" fill="white"/>
|
|
21
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M159.279 8.9379C159.497 9.00902 159.615 9.24273 159.544 9.45992L101.278 187.391C101.206 187.608 100.973 187.727 100.756 187.655C100.538 187.584 100.42 187.351 100.491 187.133L158.757 9.20237C158.828 8.98518 159.062 8.86678 159.279 8.9379Z" fill="white"/>
|
|
22
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M86.7863 22.9821C84.2352 22.9821 81.8208 25.0527 81.8208 27.5339V120.6C81.8208 123.084 84.2218 125.172 86.7863 125.172H174.887C177.469 125.172 179.873 123.083 179.873 120.6V27.5339C179.873 25.0696 177.455 22.9821 174.887 22.9821H86.7863ZM80.9932 27.5339C80.9932 24.5115 83.867 22.1545 86.7863 22.1545H174.887C177.822 22.1545 180.701 24.5278 180.701 27.5339V120.6C180.701 123.621 177.841 126 174.887 126H86.7863C83.8473 126 80.9932 123.619 80.9932 120.6V27.5339Z" fill="#1D1E26"/>
|
|
23
|
+
</g>
|
|
24
|
+
<path d="M180.287 30.8276H81.3904V27.1035C81.3904 25.7866 81.9135 24.5236 82.8447 23.5923C83.776 22.6611 85.039 22.138 86.3559 22.138H175.301C175.955 22.1353 176.602 22.2617 177.207 22.51C177.812 22.7583 178.362 23.1237 178.825 23.585C179.289 24.0464 179.656 24.5947 179.907 25.1985C180.158 25.8023 180.287 26.4497 180.287 27.1035V30.8276Z" fill="white"/>
|
|
25
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M177.05 22.8928C176.496 22.6651 175.902 22.5492 175.302 22.5517L175.301 22.5518H86.3559C85.1487 22.5518 83.9909 23.0313 83.1373 23.8849C82.2837 24.7385 81.8041 25.8963 81.8041 27.1035V30.4138H179.873V27.1035C179.873 26.5041 179.755 25.9107 179.525 25.3572C179.295 24.8037 178.958 24.3011 178.533 23.8782C178.109 23.4553 177.605 23.1204 177.05 22.8928ZM175.3 21.7242C176.008 21.7213 176.709 21.8583 177.364 22.1272C178.02 22.3962 178.615 22.792 179.117 23.2918C179.619 23.7916 180.017 24.3856 180.289 25.0397C180.561 25.6938 180.701 26.3952 180.701 27.1035V30.8276C180.701 31.0561 180.515 31.2414 180.287 31.2414H81.3904C81.1618 31.2414 80.9766 31.0561 80.9766 30.8276V27.1035C80.9766 25.6768 81.5433 24.3085 82.5521 23.2997C83.5609 22.2909 84.9292 21.7242 86.3559 21.7242H175.3Z" fill="#1D1E26"/>
|
|
26
|
+
<path d="M87.3242 28.2166C88.3183 28.2166 89.1242 27.4107 89.1242 26.4166C89.1242 25.4225 88.3183 24.6166 87.3242 24.6166C86.3301 24.6166 85.5242 25.4225 85.5242 26.4166C85.5242 27.4107 86.3301 28.2166 87.3242 28.2166Z" fill="#1D1E26"/>
|
|
27
|
+
<path d="M93.5974 28.2166C94.5915 28.2166 95.3974 27.4107 95.3974 26.4166C95.3974 25.4225 94.5915 24.6166 93.5974 24.6166C92.6033 24.6166 91.7974 25.4225 91.7974 26.4166C91.7974 27.4107 92.6033 28.2166 93.5974 28.2166Z" fill="#1D1E26"/>
|
|
28
|
+
<path d="M99.8664 28.2166C100.861 28.2166 101.666 27.4107 101.666 26.4166C101.666 25.4225 100.861 24.6166 99.8664 24.6166C98.8723 24.6166 98.0664 25.4225 98.0664 26.4166C98.0664 27.4107 98.8723 28.2166 99.8664 28.2166Z" fill="#1D1E26"/>
|
|
29
|
+
<path d="M151.71 47.8055H63.6139C60.8601 47.8055 58.6277 50.0379 58.6277 52.7918V145.854C58.6277 148.608 60.8601 150.84 63.6139 150.84H151.71C154.464 150.84 156.697 148.608 156.697 145.854V52.7918C156.697 50.0379 154.464 47.8055 151.71 47.8055Z" fill="white"/>
|
|
30
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M63.6139 48.2193C61.0886 48.2193 59.0415 50.2664 59.0415 52.7917V145.854C59.0415 148.379 61.0886 150.426 63.6139 150.426H151.71C154.236 150.426 156.283 148.379 156.283 145.854V52.7917C156.283 50.2665 154.236 48.2193 151.71 48.2193H63.6139ZM58.2139 52.7917C58.2139 49.8094 60.6315 47.3917 63.6139 47.3917H151.71C154.693 47.3917 157.11 49.8094 157.11 52.7917V145.854C157.11 148.836 154.693 151.254 151.71 151.254H63.6139C60.6315 151.254 58.2139 148.836 58.2139 145.854V52.7917Z" fill="#1D1E26"/>
|
|
31
|
+
<path d="M157.11 56.0814H58.2139V52.3572C58.2193 51.0384 58.7471 49.7755 59.6816 48.8448C60.6161 47.9142 61.8812 47.3917 63.2001 47.3917H152.124C153.443 47.3928 154.707 47.9156 155.641 48.846C156.576 49.7764 157.104 51.0387 157.11 52.3572V56.0814Z" fill="#008ACE"/>
|
|
32
|
+
<path d="M64.5656 53.4745C65.5597 53.4745 66.3656 52.6686 66.3656 51.6745C66.3656 50.6804 65.5597 49.8745 64.5656 49.8745C63.5715 49.8745 62.7656 50.6804 62.7656 51.6745C62.7656 52.6686 63.5715 53.4745 64.5656 53.4745Z" fill="#1D1E26"/>
|
|
33
|
+
<path d="M70.8347 53.4745C71.8288 53.4745 72.6347 52.6686 72.6347 51.6745C72.6347 50.6804 71.8288 49.8745 70.8347 49.8745C69.8406 49.8745 69.0347 50.6804 69.0347 51.6745C69.0347 52.6686 69.8406 53.4745 70.8347 53.4745Z" fill="#1D1E26"/>
|
|
34
|
+
<path d="M77.1035 53.4745C78.0976 53.4745 78.9035 52.6686 78.9035 51.6745C78.9035 50.6804 78.0976 49.8745 77.1035 49.8745C76.1094 49.8745 75.3035 50.6804 75.3035 51.6745C75.3035 52.6686 76.1094 53.4745 77.1035 53.4745Z" fill="#1D1E26"/>
|
|
35
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M48.9677 36.0668C49.1342 35.9103 49.396 35.9183 49.5526 36.0848L56.5581 43.533C56.7147 43.6995 56.7067 43.9614 56.5402 44.118C56.3737 44.2745 56.1119 44.2665 55.9553 44.1L48.9498 36.6518C48.7932 36.4853 48.8012 36.2234 48.9677 36.0668Z" fill="#1D1E26"/>
|
|
36
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M46.9893 44.0467C47.0907 43.8419 47.3389 43.7581 47.5438 43.8595L53.8127 46.9629C54.0175 47.0643 54.1014 47.3125 54 47.5173C53.8986 47.7221 53.6504 47.806 53.4456 47.7046L47.1766 44.6011C46.9718 44.4997 46.8879 44.2515 46.9893 44.0467Z" fill="#1D1E26"/>
|
|
37
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M183.97 9.36573C184.179 9.45733 184.275 9.70132 184.183 9.91069L181.287 16.5314C181.195 16.7407 180.951 16.8362 180.742 16.7446C180.532 16.653 180.437 16.409 180.528 16.1997L183.425 9.57897C183.517 9.3696 183.761 9.27413 183.97 9.36573Z" fill="#1D1E26"/>
|
|
38
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M192.373 9.86607C192.534 10.0277 192.534 10.2897 192.373 10.4513L184.097 18.7271C183.935 18.8887 183.673 18.8887 183.512 18.7271C183.35 18.5655 183.35 18.3035 183.512 18.1419L191.787 9.86607C191.949 9.70447 192.211 9.70447 192.373 9.86607Z" fill="#1D1E26"/>
|
|
39
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M192.464 19.1084C192.549 19.3206 192.446 19.5614 192.234 19.6462L186.027 22.129C185.815 22.2139 185.574 22.1107 185.489 21.8985C185.404 21.6863 185.507 21.4455 185.719 21.3606L191.926 18.8779C192.139 18.793 192.379 18.8962 192.464 19.1084Z" fill="#1D1E26"/>
|
|
40
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M182.977 54.8483C183.205 54.8483 183.39 55.0335 183.39 55.2621V113.607C183.39 113.835 183.205 114.021 182.977 114.021C182.748 114.021 182.563 113.835 182.563 113.607V55.2621C182.563 55.0335 182.748 54.8483 182.977 54.8483Z" fill="#1D1E26"/>
|
|
41
|
+
<path d="M133.371 157.945C156.567 157.945 175.371 139.141 175.371 115.945C175.371 92.7489 156.567 73.9448 133.371 73.9448C110.175 73.9448 91.3711 92.7489 91.3711 115.945C91.3711 139.141 110.175 157.945 133.371 157.945Z" fill="#008ACE"/>
|
|
42
|
+
<path d="M133.371 149.669C151.996 149.669 167.095 134.57 167.095 115.945C167.095 97.3195 151.996 82.2207 133.371 82.2207C114.746 82.2207 99.647 97.3195 99.647 115.945C99.647 134.57 114.746 149.669 133.371 149.669Z" fill="white"/>
|
|
43
|
+
<path d="M117.312 113.565C119.414 113.565 121.119 111.861 121.119 109.759C121.119 107.656 119.414 105.952 117.312 105.952C115.209 105.952 113.505 107.656 113.505 109.759C113.505 111.861 115.209 113.565 117.312 113.565Z" fill="#1D1E26"/>
|
|
44
|
+
<path d="M149.435 113.565C151.537 113.565 153.241 111.861 153.241 109.759C153.241 107.656 151.537 105.952 149.435 105.952C147.332 105.952 145.628 107.656 145.628 109.759C145.628 111.861 147.332 113.565 149.435 113.565Z" fill="#1D1E26"/>
|
|
45
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M133.38 123.952C128.788 123.952 124.855 126.211 122.912 129.375C122.673 129.765 122.164 129.886 121.774 129.647C121.385 129.408 121.263 128.899 121.502 128.509C123.772 124.812 128.264 122.297 133.38 122.297C138.488 122.297 143.026 124.782 145.262 128.517C145.497 128.909 145.369 129.417 144.977 129.652C144.585 129.887 144.077 129.759 143.842 129.367C141.94 126.191 137.979 123.952 133.38 123.952Z" fill="#1D1E26"/>
|
|
46
|
+
<path d="M170.965 137.356L163.143 147.133L164.811 148.467L172.633 138.69L170.965 137.356Z" fill="#1D1E26"/>
|
|
47
|
+
<path d="M200.774 163.345C201.353 165.488 197.443 170.197 195.221 170.284C188.186 170.561 166.491 146.371 166.491 146.371L170.931 140.818C170.931 140.818 199.053 156.96 200.774 163.345Z" fill="#9BDEFF"/>
|
|
48
|
+
<path d="M204.424 178.378C207.861 178.378 210.647 175.592 210.647 172.154C210.647 168.717 207.861 165.931 204.424 165.931C200.987 165.931 198.2 168.717 198.2 172.154C198.2 175.592 200.987 178.378 204.424 178.378Z" fill="#9BDEFF"/>
|
|
49
|
+
<path d="M199.586 168.269C200.428 167.216 201.59 166.468 202.897 166.138L200.774 164.441C200.31 166.51 197.815 169.436 195.937 170.131L198.233 171.968C198.268 170.621 198.743 169.321 199.586 168.269Z" fill="#1D1E26"/>
|
|
50
|
+
<path d="M72.3572 138.314L68.8566 141.269L71.5793 135.952C70.0281 131.588 68.0314 127.397 65.6207 123.443L61.6069 127.957L63.9862 120.881C61.1562 116.625 57.8216 112.726 54.0552 109.27L50.331 114.819L51.8703 107.371C48.3402 104.459 44.428 102.043 40.2428 100.192L39.6759 104.797C39.6759 104.797 39.0014 101.901 38.3434 99.4179C34.0793 97.7763 29.5883 96.7994 25.0276 96.5214C25.4616 102.553 26.4604 108.531 28.011 114.377C30.4938 115.688 33.1297 117.128 33.1297 117.128L28.669 116.781C30.1583 122.107 32.1997 127.263 34.76 132.166C37.6566 132.803 41.5048 133.519 41.5048 133.519L35.8276 134.069C38.6993 139.034 42.32 143.669 46.8966 147.418L53.3476 147.149L49.1559 149.139C55.5117 153.629 63.5269 156.439 73.6359 156.244C75.0345 151.912 74.5379 145.428 72.3572 138.314Z" fill="#008ACE"/>
|
|
51
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.7292 96.184C24.9064 96.0397 25.1671 96.0664 25.3114 96.2436L73.9569 155.995C74.1012 156.173 74.0745 156.433 73.8972 156.577C73.72 156.722 73.4594 156.695 73.3151 156.518L24.6696 96.7661C24.5253 96.5889 24.552 96.3283 24.7292 96.184Z" fill="white"/>
|
|
52
|
+
</g>
|
|
53
|
+
<defs>
|
|
54
|
+
<clipPath id="clip0_18395_59719">
|
|
55
|
+
<rect width="230.897" height="180" fill="white" transform="translate(0.551758)"/>
|
|
56
|
+
</clipPath>
|
|
57
|
+
</defs>
|
|
58
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M13 9V3.5L18.5 9H13zM6 2c-1.11 0-2 .89-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8l-6-6H6z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M13 9h5.5L13 3.5V9zM6 2h8l6 6v12a2 2 0 01-2 2H6a2 2 0 01-2-2V4c0-1.11.89-2 2-2zm1 18h2v-6H7v6zm4 0h2v-8h-2v8zm4 0h2v-4h-2v4z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M14 2l6 6v12a2 2 0 01-2 2H6a2 2 0 01-2-2V4c0-1.11.89-2 2-2h8zm3 11.267l-5 3.334-5-3.334V18a1 1 0 001 1h8a1 1 0 001-1v-4.733zM16 12H8a.997.997 0 00-.688.274L12 15.399l4.688-3.125A.997.997 0 0016 12zm-3-8.5V9h5.5L13 3.5z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8l-6-6zm1.8 18H14l-2-3.4-2 3.4H8.2l2.9-4.5L8.2 11H10l2 3.4 2-3.4h1.8l-2.9 4.5 2.9 4.5zM13 9V3.5L18.5 9H13z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M13 9h5.5L13 3.5V9zM6 2h8l6 6v12a2 2 0 01-2 2H6a2 2 0 01-2-2V4c0-1.11.89-2 2-2zm0 18h12v-8l-4 4-2-2-6 6zM8 9a2 2 0 100 4 2 2 0 000-4z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M13 9h5.5L13 3.5V9zM6 2h8l6 6v12a2 2 0 01-2 2H6a2 2 0 01-2-2V4a2 2 0 012-2zm4.1 9.4c-.02.04-.29 1.76-2.1 4.69 0 0-3.5 1.82-2.67 3.18.67 1.08 2.32-.04 3.74-2.68 0 0 1.82-.64 4.24-.82 0 0 3.86 1.73 4.39-.11.52-1.86-3.06-1.44-3.7-1.25 0 0-2-1.35-2.5-3.21 0 0 1.14-3.95-.61-3.9-1.75.05-1.09 3.13-.79 4.1zm.81 1.04c.03.01.47 1.21 1.89 2.46 0 0-2.33.46-3.39.9 0 0 1-1.73 1.5-3.36zm3.93 2.72c.58-.16 2.33.15 2.26.48-.06.33-2.26-.48-2.26-.48zM7.77 17c-.53 1.24-1.44 2-1.67 2-.23 0 .7-1.6 1.67-2zm3.14-6.93c0-.07-.36-2.2 0-2.15.54.08 0 2.08 0 2.15z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8l-6-6zm-4 17H7v-2h3v2zm0-3H7v-2h3v2zm0-3H7v-2h3v2zm4 6h-3v-2h3v2zm0-3h-3v-2h3v2zm0-3h-3v-2h3v2zm-1-4V3.5L18.5 9H13z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M13 9h5.5L13 3.5V9zM6 2h8l6 6v12a2 2 0 01-2 2H6a2 2 0 01-2-2V4c0-1.11.89-2 2-2zm9 16v-2H6v2h9zm3-4v-2H6v2h12z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M14 2l6 6v12a2 2 0 01-2 2H6a2 2 0 01-2-2V4c0-1.11.89-2 2-2h8zm-5 8v8l7-4-7-4zm4-6.5V9h5.5L13 3.5z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8l-6-6zm1.2 18h-1.4L12 13.2 10.2 20H8.8l-2.2-9h1.5l1.4 6.8 1.8-6.8h1.3l1.8 6.8 1.4-6.8h1.5l-2.1 9zM13 9V3.5L18.5 9H13z"/></svg>
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
<svg width="24" height="16" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd"
|
|
2
|
+
d="M14,9 L14,13 L10,13 L10,9 L7,9 L12,4 L17,9 M19.35,6.03 C18.67,2.59 15.64,0 12,0 C9.11,0 6.6,1.64 5.35,4.03 C2.34,4.36 0,6.9 0,10 C0,13.3137085 2.6862915,16 6,16 L19,16 C20.3260824,16 21.597852,15.4732158 22.5355339,14.5355339 C23.4732158,13.597852 24,12.3260824 24,11 C24,8.36 21.95,6.22 19.35,6.03 Z"/></svg>
|
package/icons/filter.svg
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<g transform="translate(0,-298.65)" display="none">
|
|
4
|
+
<rect x="-3.9834" y="294.67" width="23.967" height="23.967" fill="none" stroke="#000000" stroke-width=".033287"/>
|
|
5
|
+
<circle cx="8" cy="306.65" r="11.983" fill="none" stroke="#000000" stroke-width=".033287"/>
|
|
6
|
+
<path d="m5 300.65v1h-1v1h-1v1h-1v6h1v1h1v1h1v1h6v-1h1v-1h1v-1h1v-6h-1v-1h-1v-1h-1v-1z" fill="#000000" fill-opacity=".14902"/>
|
|
7
|
+
</g>
|
|
8
|
+
<g transform="translate(0,-8)">
|
|
9
|
+
<path d="m4 12h8v1l-3 3v5l-2-2v-3l-3-3z"/>
|
|
10
|
+
</g>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill-rule="evenodd" d="M8.295 4.295L6 6.585l-2.295-2.29L3 5l3 3 3-3z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><path fill-rule="evenodd" d="M12.443 6.442L9 9.877 5.558 6.442 4.5 7.5 9 12l4.5-4.5z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"/></svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<svg width="60px" height="60px" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g transform="translate(0,-290.65)" display="none" fill="none" stroke="#000" stroke-width=".05">
|
|
3
|
+
<circle cx="12" cy="302.65" r="7.4103"/>
|
|
4
|
+
<rect x="-6" y="284.65" width="36" height="36"/>
|
|
5
|
+
<circle cx="12" cy="302.65" r="18"/>
|
|
6
|
+
<rect x="6" y="296.65" width="12" height="12"/>
|
|
7
|
+
</g>
|
|
8
|
+
<path id="global_icon" class="cls-2" d="m12 11.2a0.8 0.8 0 1 1 -0.8 0.8 0.8 0.8 0 0 1 0.8 -0.8zm3.2 0a0.8 0.8 0 1 1 -0.8 0.8 0.8024 0.8024 0 0 1 0.8 -0.8zm-6.4 0a0.8 0.8 0 1 1 -0.8 0.8 0.8 0.8 0 0 1 0.8 -0.8zm3.2-3.6a0.8 0.8 0 1 1 -0.8 0.8 0.8 0.8 0 0 1 0.8 -0.8zm3.2 0a0.8 0.8 0 1 1 -0.8 0.8 0.8024 0.8024 0 0 1 0.8 -0.8zm-6.4 0a0.8 0.8 0 1 1 -0.8 0.8 0.8 0.8 0 0 1 0.8 -0.8zm3.2 7.2a0.8 0.8 0 1 1 -0.8 0.8 0.8 0.8 0 0 1 0.8 -0.8zm3.2 0a0.8 0.8 0 1 1 -0.8 0.8 0.8024 0.8024 0 0 1 0.8 -0.8zm-6.4 0a0.8 0.8 0 1 1 -0.8 0.8 0.8 0.8 0 0 1 0.8 -0.8z"/>
|
|
9
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="10px" height="10px" viewBox="0 0 10 10" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path transform="translate(-1.000000, -1.000000)" d="M6,1 C3.24,1 1,3.24 1,6 C1,8.76 3.24,11 6,11 C8.76,11 11,8.76 11,6 C11,3.24 8.76,1 6,1 Z M6.5,8.5 L5.5,8.5 L5.5,5.5 L6.5,5.5 L6.5,8.5 Z M6.5,4.5 L5.5,4.5 L5.5,3.5 L6.5,3.5 L6.5,4.5 Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path transform="translate(-1.000000, -1.00000)" d="M8,13 L10,13 L10,8 L8,8 L8,13 Z M9,1 C4.584,1 1,4.584 1,9 C1,13.416 4.584,17 9,17 C13.416,17 17,13.416 17,9 C17,4.584 13.416,1 9,1 Z M9,16 C5.14125,16 2,12.85875 2,9 C2,5.14125 5.14125,2 9,2 C12.85875,2 16,5.14125 16,9 C16,12.85875 12.85875,16 9,16 Z M8,7 L10,7 L10,5 L8,5 L8,7 Z" />
|
|
3
|
+
</svg>
|
package/icons/icons.tsx
ADDED
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import { ReactComponent as btnCross12 } from './btn-cross-12.svg';
|
|
2
|
+
import { ReactComponent as btnCross18 } from './btn-cross-18.svg';
|
|
3
|
+
import { ReactComponent as btnCross24 } from './btn-cross-24.svg';
|
|
4
|
+
import { ReactComponent as foldingArrow12 } from './folding-arrow-12.svg';
|
|
5
|
+
import { ReactComponent as foldingArrow18 } from './folding-arrow-18.svg';
|
|
6
|
+
import { ReactComponent as foldingArrow24 } from './folding-arrow-24.svg';
|
|
7
|
+
import { ReactComponent as accept12 } from './accept-12.svg';
|
|
8
|
+
import { ReactComponent as accept18 } from './accept-18.svg';
|
|
9
|
+
import { ReactComponent as accept24 } from './accept-24.svg';
|
|
10
|
+
import { ReactComponent as search12 } from './search-12.svg';
|
|
11
|
+
import { ReactComponent as search18 } from './search-18.svg';
|
|
12
|
+
import { ReactComponent as search24 } from './search-24.svg';
|
|
13
|
+
import { ReactComponent as calendar12 } from './calendar-12.svg';
|
|
14
|
+
import { ReactComponent as calendar18 } from './calendar-18.svg';
|
|
15
|
+
import { ReactComponent as calendar24 } from './calendar-24.svg';
|
|
16
|
+
import { ReactComponent as info12 } from './info-12.svg';
|
|
17
|
+
import { ReactComponent as info18 } from './info-18.svg';
|
|
18
|
+
import { ReactComponent as info24 } from './info-24.svg';
|
|
19
|
+
import { ReactComponent as help10 } from './help-fill-10.svg';
|
|
20
|
+
import { ReactComponent as help16 } from './help-fill-16.svg';
|
|
21
|
+
import { ReactComponent as DocIcon } from '@epam/assets/icons/common/file-file_word-24.svg';
|
|
22
|
+
import { ReactComponent as ExelIcon } from '@epam/assets/icons/common/file-file_excel-24.svg';
|
|
23
|
+
import { ReactComponent as PdfIcon } from '@epam/assets/icons/common/file-file_pdf-24.svg';
|
|
24
|
+
import { ReactComponent as ImgIcon } from '@epam/assets/icons/common/file-file_image-24.svg';
|
|
25
|
+
import { ReactComponent as VideoIcon } from '@epam/assets/icons/common/file-file_video-24.svg';
|
|
26
|
+
import { ReactComponent as TableIcon } from '@epam/assets/icons/common/file-file_table-24.svg';
|
|
27
|
+
import { ReactComponent as TextIcon } from '@epam/assets/icons/common/file-file_text-24.svg';
|
|
28
|
+
import { ReactComponent as MailIcon } from '@epam/assets/icons/common/file-file_eml-24.svg';
|
|
29
|
+
import { ReactComponent as FileIcon } from '@epam/assets/icons/common/file-file-24.svg';
|
|
30
|
+
|
|
31
|
+
export const fileIcons = {
|
|
32
|
+
docIcon: DocIcon,
|
|
33
|
+
exelIcon: ExelIcon,
|
|
34
|
+
pdfIcon: PdfIcon,
|
|
35
|
+
imgIcon: ImgIcon,
|
|
36
|
+
videoIcon: VideoIcon,
|
|
37
|
+
tableIcon: TableIcon,
|
|
38
|
+
textIcon: TextIcon,
|
|
39
|
+
mailIcon: MailIcon,
|
|
40
|
+
fileIcon: FileIcon,
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
export const systemIcons: { [key: string]: any } = {
|
|
44
|
+
18: {
|
|
45
|
+
clear: btnCross12,
|
|
46
|
+
foldingArrow: foldingArrow12,
|
|
47
|
+
accept: accept12,
|
|
48
|
+
search: search12,
|
|
49
|
+
calendar: calendar12,
|
|
50
|
+
info: info12,
|
|
51
|
+
help: help10,
|
|
52
|
+
},
|
|
53
|
+
24: {
|
|
54
|
+
clear: btnCross12,
|
|
55
|
+
foldingArrow: foldingArrow12,
|
|
56
|
+
accept: accept12,
|
|
57
|
+
search: search12,
|
|
58
|
+
calendar: calendar12,
|
|
59
|
+
info: info12,
|
|
60
|
+
help: help10,
|
|
61
|
+
},
|
|
62
|
+
30: {
|
|
63
|
+
clear: btnCross18,
|
|
64
|
+
foldingArrow: foldingArrow18,
|
|
65
|
+
accept: accept18,
|
|
66
|
+
search: search18,
|
|
67
|
+
calendar: calendar18,
|
|
68
|
+
info: info18,
|
|
69
|
+
help: help10,
|
|
70
|
+
},
|
|
71
|
+
36: {
|
|
72
|
+
clear: btnCross18,
|
|
73
|
+
foldingArrow: foldingArrow18,
|
|
74
|
+
accept: accept18,
|
|
75
|
+
search: search18,
|
|
76
|
+
calendar: calendar18,
|
|
77
|
+
info: info18,
|
|
78
|
+
help: help16,
|
|
79
|
+
},
|
|
80
|
+
42: {
|
|
81
|
+
clear: btnCross18,
|
|
82
|
+
foldingArrow: foldingArrow18,
|
|
83
|
+
accept: accept18,
|
|
84
|
+
search: search18,
|
|
85
|
+
calendar: calendar18,
|
|
86
|
+
info: info18,
|
|
87
|
+
help: help16,
|
|
88
|
+
},
|
|
89
|
+
48: {
|
|
90
|
+
clear: btnCross24,
|
|
91
|
+
foldingArrow: foldingArrow24,
|
|
92
|
+
accept: accept24,
|
|
93
|
+
search: search24,
|
|
94
|
+
calendar: calendar24,
|
|
95
|
+
info: info24,
|
|
96
|
+
help: help16,
|
|
97
|
+
},
|
|
98
|
+
60: {
|
|
99
|
+
clear: btnCross24,
|
|
100
|
+
foldingArrow: foldingArrow24,
|
|
101
|
+
accept: accept24,
|
|
102
|
+
search: search24,
|
|
103
|
+
calendar: calendar24,
|
|
104
|
+
info: info24,
|
|
105
|
+
help: help16,
|
|
106
|
+
},
|
|
107
|
+
none: {
|
|
108
|
+
clear: btnCross18,
|
|
109
|
+
foldingArrow: foldingArrow18,
|
|
110
|
+
accept: accept18,
|
|
111
|
+
search: search18,
|
|
112
|
+
calendar: calendar18,
|
|
113
|
+
info: info18,
|
|
114
|
+
help: help16,
|
|
115
|
+
},
|
|
116
|
+
};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="12" height="12" version="1.1" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="m6 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1 8h-2v-4h2zm0-5c-0.4714 0.4714-1.5286 0.4714-2 0s-0.4714-1.5286 0-2 1.5286-0.4714 2 0 0.4714 1.5286 0 2z" fill-rule="evenodd"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><path fill-rule="evenodd" d="M8 13h2V8H8v5zM9 1C4.584 1 1 4.584 1 9s3.584 8 8 8 8-3.584 8-8-3.584-8-8-8zm0 15c-3.859 0-7-3.141-7-7s3.141-7 7-7 7 3.141 7 7-3.141 7-7 7zM8 7h2V5H8v2z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M11 17h2v-6h-2v6zm1-15C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM11 9h2V7h-2v2z"/></svg>
|