@epam/uui 5.5.1 → 5.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/styles/buttonLayout.scss +67 -67
- package/assets/styles/controlLayout.scss +28 -28
- package/assets/styles/dnd.scss +9 -9
- package/assets/styles/effects.scss +7 -7
- package/assets/styles/icons.scss +19 -19
- package/assets/styles/index.scss +8 -8
- package/assets/styles/inputs.scss +74 -74
- package/assets/styles/text-size.scss +42 -42
- package/assets/styles/typography.scss +174 -174
- package/build/assets/styles/buttonLayout.scss +67 -0
- package/build/assets/styles/controlLayout.scss +28 -0
- package/build/assets/styles/dnd.scss +9 -0
- package/build/assets/styles/effects.scss +7 -0
- package/build/assets/styles/icons.scss +19 -0
- package/build/assets/styles/index.scss +8 -0
- package/build/assets/styles/inputs.scss +74 -0
- package/build/assets/styles/text-size.scss +42 -0
- package/build/assets/styles/typography.scss +174 -0
- package/build/index.esm.js +4740 -0
- package/build/index.esm.js.map +1 -0
- package/build/index.js +4905 -0
- package/build/index.js.map +1 -0
- package/build/package.json +37 -0
- package/build/readme.md +5 -0
- package/build/stats.html +4838 -0
- package/build/styles.css +11145 -0
- package/build/styles.css.map +1 -0
- package/components/buttons/Button.module.scss +157 -0
- package/components/buttons/Button.tsx +53 -0
- package/components/buttons/IconButton.module.scss +44 -0
- package/components/buttons/IconButton.tsx +23 -0
- package/components/buttons/LinkButton.module.scss +85 -0
- package/components/buttons/LinkButton.tsx +48 -0
- package/components/buttons/TabButton.module.scss +94 -0
- package/components/buttons/TabButton.tsx +50 -0
- package/components/buttons/VerticalTabButton.module.scss +7 -0
- package/components/buttons/VerticalTabButton.tsx +12 -0
- package/components/buttons/__tests__/Button.test.tsx +34 -0
- package/components/buttons/__tests__/IconButton.test.tsx +16 -0
- package/components/buttons/__tests__/LinkButton.test.tsx +16 -0
- package/components/buttons/__tests__/TabButton.test.tsx +16 -0
- package/components/buttons/__tests__/VerticalTabButton.test.tsx +16 -0
- package/components/buttons/__tests__/__snapshots__/Button.test.tsx.snap +60 -0
- package/components/buttons/__tests__/__snapshots__/IconButton.test.tsx.snap +34 -0
- package/components/buttons/__tests__/__snapshots__/LinkButton.test.tsx.snap +47 -0
- package/components/buttons/__tests__/__snapshots__/TabButton.test.tsx.snap +31 -0
- package/components/buttons/__tests__/__snapshots__/VerticalTabButton.test.tsx.snap +31 -0
- package/components/buttons/helper.ts +22 -0
- package/components/buttons/index.ts +5 -0
- package/components/datePickers/Calendar.module.scss +143 -0
- package/components/datePickers/Calendar.tsx +10 -0
- package/components/datePickers/CalendarPresets.module.scss +30 -0
- package/components/datePickers/CalendarPresets.tsx +9 -0
- package/components/datePickers/DatePicker.tsx +79 -0
- package/components/datePickers/DatePickerBody.module.scss +107 -0
- package/components/datePickers/DatePickerBody.tsx +78 -0
- package/components/datePickers/DatePickerHeader.module.scss +15 -0
- package/components/datePickers/DatePickerHeader.tsx +126 -0
- package/components/datePickers/RangeDatePicker.module.scss +101 -0
- package/components/datePickers/RangeDatePicker.tsx +120 -0
- package/components/datePickers/RangeDatePickerBody.module.scss +128 -0
- package/components/datePickers/RangeDatePickerBody.tsx +263 -0
- package/components/datePickers/__tests__/Calendar.test.tsx +11 -0
- package/components/datePickers/__tests__/CalendarPresets.test.tsx +11 -0
- package/components/datePickers/__tests__/DatePicker.test.tsx +153 -0
- package/components/datePickers/__tests__/DatePickerBody.test.tsx +64 -0
- package/components/datePickers/__tests__/DatePickerHeader.test.tsx +195 -0
- package/components/datePickers/__tests__/RangeDatePicker.test.tsx +323 -0
- package/components/datePickers/__tests__/RangeDatePickerBody.test.tsx +284 -0
- package/components/datePickers/__tests__/__snapshots__/Calendar.test.tsx.snap +524 -0
- package/components/datePickers/__tests__/__snapshots__/CalendarPresets.test.tsx.snap +61 -0
- package/components/datePickers/__tests__/__snapshots__/DatePicker.test.tsx.snap +59 -0
- package/components/datePickers/__tests__/__snapshots__/DatePickerBody.test.tsx.snap +619 -0
- package/components/datePickers/__tests__/__snapshots__/RangeDatePicker.test.tsx.snap +119 -0
- package/components/datePickers/__tests__/__snapshots__/RangeDatePickerBody.test.tsx.snap +1231 -0
- package/components/datePickers/index.ts +5 -0
- package/components/dnd/DropMarker.module.scss +62 -0
- package/components/dnd/DropMarker.tsx +28 -0
- package/components/dnd/__tests__/DropMarker.test.tsx +31 -0
- package/components/dnd/__tests__/__snapshots__/DropMarker.test.tsx.snap +7 -0
- package/components/dnd/index.tsx +1 -0
- package/components/fileUpload/DropSpot.module.scss +47 -0
- package/components/fileUpload/DropSpot.tsx +68 -0
- package/components/fileUpload/FileCard.module.scss +88 -0
- package/components/fileUpload/FileCard.tsx +147 -0
- package/components/fileUpload/SvgCircleProgress.module.scss +8 -0
- package/components/fileUpload/SvgCircleProgress.tsx +41 -0
- package/components/fileUpload/__tests__/DropSpot.test.tsx +15 -0
- package/components/fileUpload/__tests__/FileCard.test.tsx +57 -0
- package/components/fileUpload/__tests__/SvgCircleProgress.test.tsx +10 -0
- package/components/fileUpload/__tests__/__snapshots__/DropSpot.test.tsx.snap +130 -0
- package/components/fileUpload/__tests__/__snapshots__/FileCard.test.tsx.snap +266 -0
- package/components/fileUpload/__tests__/__snapshots__/SvgCircleProgress.test.tsx.snap +26 -0
- package/components/fileUpload/index.ts +3 -0
- package/components/filters/FilterDatePickerBody.tsx +58 -0
- package/components/filters/FilterItemBody.tsx +23 -0
- package/components/filters/FilterNumericBody.module.scss +4 -0
- package/components/filters/FilterNumericBody.tsx +131 -0
- package/components/filters/FilterPanelItemToggler.module.scss +140 -0
- package/components/filters/FilterPanelItemToggler.tsx +91 -0
- package/components/filters/FilterPickerBody.tsx +75 -0
- package/components/filters/FilterRangeDatePickerBody.module.scss +92 -0
- package/components/filters/FilterRangeDatePickerBody.tsx +85 -0
- package/components/filters/FiltersPanel.tsx +218 -0
- package/components/filters/FiltersPanelItem.module.scss +22 -0
- package/components/filters/FiltersPanelItem.tsx +269 -0
- package/components/filters/PresetPanel/Preset.module.scss +25 -0
- package/components/filters/PresetPanel/Preset.tsx +61 -0
- package/components/filters/PresetPanel/PresetActionsDropdown.module.scss +23 -0
- package/components/filters/PresetPanel/PresetActionsDropdown.tsx +138 -0
- package/components/filters/PresetPanel/PresetInput.module.scss +55 -0
- package/components/filters/PresetPanel/PresetInput.tsx +54 -0
- package/components/filters/PresetPanel/PresetsPanel.module.scss +34 -0
- package/components/filters/PresetPanel/PresetsPanel.tsx +112 -0
- package/components/filters/PresetPanel/__tests__/Preset.test.tsx +44 -0
- package/components/filters/PresetPanel/__tests__/PresetActionsDropdown.test.tsx +28 -0
- package/components/filters/PresetPanel/__tests__/PresetInput.test.tsx +10 -0
- package/components/filters/PresetPanel/__tests__/__snapshots__/Preset.test.tsx.snap +101 -0
- package/components/filters/PresetPanel/__tests__/__snapshots__/PresetActionsDropdown.test.tsx.snap +19 -0
- package/components/filters/PresetPanel/__tests__/__snapshots__/PresetInput.test.tsx.snap +38 -0
- package/components/filters/PresetPanel/__tests__/__snapshots__/presetsPanel.test.tsx.snap +101 -0
- package/components/filters/PresetPanel/__tests__/presetsPanel.test.tsx +381 -0
- package/components/filters/PresetPanel/constants.ts +4 -0
- package/components/filters/PresetPanel/index.ts +1 -0
- package/components/filters/__tests__/__snapshots__/filtersPanel.test.tsx.snap +295 -0
- package/components/filters/__tests__/filtersPanel.test.tsx +375 -0
- package/components/filters/constants.ts +4 -0
- package/components/filters/defaultPredicates.ts +11 -0
- package/components/filters/index.ts +4 -0
- package/components/forms/Form.tsx +39 -0
- package/components/forms/index.tsx +2 -0
- package/components/forms/useForm.tsx +39 -0
- package/components/index.ts +14 -0
- package/components/inputs/Checkbox.module.scss +162 -0
- package/components/inputs/Checkbox.tsx +43 -0
- package/components/inputs/InputAddon.module.scss +11 -0
- package/components/inputs/InputAddon.tsx +11 -0
- package/components/inputs/MultiSwitch.tsx +54 -0
- package/components/inputs/NumericInput.module.scss +97 -0
- package/components/inputs/NumericInput.tsx +53 -0
- package/components/inputs/RadioInput.module.scss +200 -0
- package/components/inputs/RadioInput.tsx +30 -0
- package/components/inputs/Slider.module.scss +130 -0
- package/components/inputs/Slider.tsx +11 -0
- package/components/inputs/Switch.module.scss +172 -0
- package/components/inputs/Switch.tsx +22 -0
- package/components/inputs/TextArea.module.scss +210 -0
- package/components/inputs/TextArea.tsx +47 -0
- package/components/inputs/TextInput.module.scss +199 -0
- package/components/inputs/TextInput.tsx +60 -0
- package/components/inputs/TimePicker.module.scss +68 -0
- package/components/inputs/TimePicker.tsx +79 -0
- package/components/inputs/TimePickerBody.tsx +10 -0
- package/components/inputs/__tests__/Checkbox.test.tsx +15 -0
- package/components/inputs/__tests__/InputAddon.test.tsx +12 -0
- package/components/inputs/__tests__/MultiSwitch.test.tsx +16 -0
- package/components/inputs/__tests__/NumericInput.test.tsx +19 -0
- package/components/inputs/__tests__/RadioInput.test.tsx +15 -0
- package/components/inputs/__tests__/Slider.test.tsx +22 -0
- package/components/inputs/__tests__/Switch.test.tsx +15 -0
- package/components/inputs/__tests__/TextArea.test.tsx +15 -0
- package/components/inputs/__tests__/TextInput.test.tsx +20 -0
- package/components/inputs/__tests__/TimePicker.test.tsx +19 -0
- package/components/inputs/__tests__/TimePickerBody.test.tsx +38 -0
- package/components/inputs/__tests__/__snapshots__/Checkbox.test.tsx.snap +37 -0
- package/components/inputs/__tests__/__snapshots__/InputAddon.test.tsx.snap +9 -0
- package/components/inputs/__tests__/__snapshots__/MultiSwitch.test.tsx.snap +37 -0
- package/components/inputs/__tests__/__snapshots__/NumericInput.test.tsx.snap +95 -0
- package/components/inputs/__tests__/__snapshots__/RadioInput.test.tsx.snap +40 -0
- package/components/inputs/__tests__/__snapshots__/Slider.test.tsx.snap +157 -0
- package/components/inputs/__tests__/__snapshots__/Switch.test.tsx.snap +48 -0
- package/components/inputs/__tests__/__snapshots__/TextArea.test.tsx.snap +38 -0
- package/components/inputs/__tests__/__snapshots__/TextInput.test.tsx.snap +55 -0
- package/components/inputs/__tests__/__snapshots__/TimePicker.test.tsx +19 -0
- package/components/inputs/__tests__/__snapshots__/TimePicker.test.tsx.snap +45 -0
- package/components/inputs/__tests__/__snapshots__/TimePickerBody.test.tsx +38 -0
- package/components/inputs/__tests__/__snapshots__/TimePickerBody.test.tsx.snap +327 -0
- package/components/inputs/__tests__/__snapshots__/__snapshots__/TimePicker.test.tsx.snap +45 -0
- package/components/inputs/__tests__/__snapshots__/__snapshots__/TimePickerBody.test.tsx.snap +327 -0
- package/components/inputs/index.ts +10 -0
- package/components/layout/Accordion.module.scss +180 -0
- package/components/layout/Accordion.tsx +35 -0
- package/components/layout/Blocker.module.scss +30 -0
- package/components/layout/Blocker.tsx +11 -0
- package/components/layout/CheckboxGroup.module.scss +21 -0
- package/components/layout/CheckboxGroup.tsx +74 -0
- package/components/layout/ControlGroup.module.scss +15 -0
- package/components/layout/ControlGroup.tsx +5 -0
- package/components/layout/FlexItems/FlexCell.module.scss +5 -0
- package/components/layout/FlexItems/FlexCell.tsx +11 -0
- package/components/layout/FlexItems/FlexRow.module.scss +122 -0
- package/components/layout/FlexItems/FlexRow.tsx +63 -0
- package/components/layout/FlexItems/Panel.module.scss +34 -0
- package/components/layout/FlexItems/Panel.tsx +29 -0
- package/components/layout/FlexItems/__tests__/FlexCell.test.tsx +15 -0
- package/components/layout/FlexItems/__tests__/FlexRow.test.tsx +17 -0
- package/components/layout/FlexItems/__tests__/FlexSpacer.test.tsx +10 -0
- package/components/layout/FlexItems/__tests__/Panel.test.tsx +15 -0
- package/components/layout/FlexItems/__tests__/__snapshots__/FlexCell.test.tsx.snap +34 -0
- package/components/layout/FlexItems/__tests__/__snapshots__/FlexRow.test.tsx.snap +26 -0
- package/components/layout/FlexItems/__tests__/__snapshots__/FlexSpacer.test.tsx.snap +7 -0
- package/components/layout/FlexItems/__tests__/__snapshots__/Panel.test.tsx.snap +14 -0
- package/components/layout/FlexItems/index.ts +4 -0
- package/components/layout/LabeledInput.module.scss +139 -0
- package/components/layout/LabeledInput.tsx +22 -0
- package/components/layout/RadioGroup.module.scss +21 -0
- package/components/layout/RadioGroup.tsx +68 -0
- package/components/layout/ScrollBars.module.scss +56 -0
- package/components/layout/ScrollBars.tsx +11 -0
- package/components/layout/VirtualList.module.scss +10 -0
- package/components/layout/VirtualList.tsx +126 -0
- package/components/layout/__tests__/Accordion.test.tsx +16 -0
- package/components/layout/__tests__/Blocker.test.tsx +10 -0
- package/components/layout/__tests__/CheckboxGroup.test.tsx +33 -0
- package/components/layout/__tests__/ControlGroup.test.tsx +18 -0
- package/components/layout/__tests__/LabeledInput.test.tsx +26 -0
- package/components/layout/__tests__/RadioGroup.test.tsx +33 -0
- package/components/layout/__tests__/ScrollBars.test.tsx +17 -0
- package/components/layout/__tests__/VirtualList.test.tsx +10 -0
- package/components/layout/__tests__/__snapshots__/Accordion.test.tsx.snap +65 -0
- package/components/layout/__tests__/__snapshots__/Blocker.test.tsx.snap +36 -0
- package/components/layout/__tests__/__snapshots__/CheckboxGroup.test.tsx.snap +99 -0
- package/components/layout/__tests__/__snapshots__/ControlGroup.test.tsx.snap +33 -0
- package/components/layout/__tests__/__snapshots__/LabeledInput.test.tsx.snap +89 -0
- package/components/layout/__tests__/__snapshots__/RadioGroup.test.tsx.snap +95 -0
- package/components/layout/__tests__/__snapshots__/ScrollBars.test.tsx.snap +68 -0
- package/components/layout/__tests__/__snapshots__/VirtualList.test.tsx.snap +90 -0
- package/components/layout/index.ts +10 -0
- package/components/navigation/Anchor.module.scss +7 -0
- package/components/navigation/Anchor.tsx +5 -0
- package/components/navigation/MainMenu/Burger/Burger.module.scss +81 -0
- package/components/navigation/MainMenu/Burger/Burger.tsx +18 -0
- package/components/navigation/MainMenu/Burger/BurgerButton.module.scss +69 -0
- package/components/navigation/MainMenu/Burger/BurgerButton.tsx +28 -0
- package/components/navigation/MainMenu/Burger/BurgerGroupHeader.module.scss +31 -0
- package/components/navigation/MainMenu/Burger/BurgerGroupHeader.tsx +19 -0
- package/components/navigation/MainMenu/Burger/BurgerSearch.module.scss +51 -0
- package/components/navigation/MainMenu/Burger/BurgerSearch.tsx +23 -0
- package/components/navigation/MainMenu/Burger/__tests__/Burger.test.tsx +13 -0
- package/components/navigation/MainMenu/Burger/__tests__/BurgerButton.test.tsx +18 -0
- package/components/navigation/MainMenu/Burger/__tests__/BurgerGroupHeader.test.tsx +10 -0
- package/components/navigation/MainMenu/Burger/__tests__/BurgerSearch.test.tsx +20 -0
- package/components/navigation/MainMenu/Burger/__tests__/__snapshots__/Burger.test.tsx.snap +21 -0
- package/components/navigation/MainMenu/Burger/__tests__/__snapshots__/BurgerButton.test.tsx.snap +46 -0
- package/components/navigation/MainMenu/Burger/__tests__/__snapshots__/BurgerGroupHeader.test.tsx.snap +16 -0
- package/components/navigation/MainMenu/Burger/__tests__/__snapshots__/BurgerSearch.test.tsx.snap +55 -0
- package/components/navigation/MainMenu/Burger/index.ts +4 -0
- package/components/navigation/MainMenu/GlobalMenu.module.scss +32 -0
- package/components/navigation/MainMenu/GlobalMenu.tsx +15 -0
- package/components/navigation/MainMenu/MainMenu.module.scss +53 -0
- package/components/navigation/MainMenu/MainMenu.tsx +22 -0
- package/components/navigation/MainMenu/MainMenuAvatar.module.scss +41 -0
- package/components/navigation/MainMenu/MainMenuAvatar.tsx +31 -0
- package/components/navigation/MainMenu/MainMenuButton.module.scss +60 -0
- package/components/navigation/MainMenu/MainMenuButton.tsx +17 -0
- package/components/navigation/MainMenu/MainMenuDropdown.module.scss +44 -0
- package/components/navigation/MainMenu/MainMenuDropdown.tsx +47 -0
- package/components/navigation/MainMenu/MainMenuIcon.module.scss +25 -0
- package/components/navigation/MainMenu/MainMenuIcon.tsx +17 -0
- package/components/navigation/MainMenu/MainMenuSearch.module.scss +51 -0
- package/components/navigation/MainMenu/MainMenuSearch.tsx +27 -0
- package/components/navigation/MainMenu/__tests__/GlobalMenu.test.tsx +10 -0
- package/components/navigation/MainMenu/__tests__/MainMenu.test.tsx +45 -0
- package/components/navigation/MainMenu/__tests__/MainMenuAvatar.test.tsx +27 -0
- package/components/navigation/MainMenu/__tests__/MainMenuButton.test.tsx +30 -0
- package/components/navigation/MainMenu/__tests__/MainMenuDropdown.test.tsx +24 -0
- package/components/navigation/MainMenu/__tests__/MainMenuIcon.test.tsx +18 -0
- package/components/navigation/MainMenu/__tests__/MainMenuSearch.test.tsx +28 -0
- package/components/navigation/MainMenu/__tests__/__snapshots__/GlobalMenu.test.tsx.snap +17 -0
- package/components/navigation/MainMenu/__tests__/__snapshots__/MainMenu.test.tsx.snap +103 -0
- package/components/navigation/MainMenu/__tests__/__snapshots__/MainMenuAvatar.test.tsx.snap +39 -0
- package/components/navigation/MainMenu/__tests__/__snapshots__/MainMenuButton.test.tsx.snap +37 -0
- package/components/navigation/MainMenu/__tests__/__snapshots__/MainMenuDropdown.test.tsx.snap +46 -0
- package/components/navigation/MainMenu/__tests__/__snapshots__/MainMenuIcon.test.tsx.snap +39 -0
- package/components/navigation/MainMenu/__tests__/__snapshots__/MainMenuSearch.test.tsx.snap +55 -0
- package/components/navigation/MainMenu/index.ts +8 -0
- package/components/navigation/__tests__/Anchor.test.tsx +21 -0
- package/components/navigation/__tests__/__snapshots__/Anchor.test.tsx.snap +29 -0
- package/components/navigation/index.ts +2 -0
- package/components/overlays/Alert.module.scss +77 -0
- package/components/overlays/Alert.tsx +89 -0
- package/components/overlays/ConfirmationModal.tsx +41 -0
- package/components/overlays/Dropdown.tsx +4 -0
- package/components/overlays/DropdownContainer.module.scss +93 -0
- package/components/overlays/DropdownContainer.tsx +27 -0
- package/components/overlays/DropdownMenu.module.scss +181 -0
- package/components/overlays/DropdownMenu.tsx +262 -0
- package/components/overlays/Modals.module.scss +63 -0
- package/components/overlays/Modals.tsx +92 -0
- package/components/overlays/NotificationCard.module.scss +76 -0
- package/components/overlays/NotificationCard.tsx +103 -0
- package/components/overlays/Tooltip.module.scss +90 -0
- package/components/overlays/Tooltip.tsx +24 -0
- package/components/overlays/__tests__/Alert.test.tsx +57 -0
- package/components/overlays/__tests__/ConfirmationModal.test.tsx +29 -0
- package/components/overlays/__tests__/Dropdown.test.tsx +16 -0
- package/components/overlays/__tests__/DropdownContainer.test.tsx +28 -0
- package/components/overlays/__tests__/DropdownMenu.test.tsx +26 -0
- package/components/overlays/__tests__/Modals.test.tsx +35 -0
- package/components/overlays/__tests__/NotificationCard.test.tsx +52 -0
- package/components/overlays/__tests__/Tooltip.test.tsx +20 -0
- package/components/overlays/__tests__/__snapshots__/Alert.test.tsx.snap +183 -0
- package/components/overlays/__tests__/__snapshots__/ConfirmationModal.test.tsx.snap +351 -0
- package/components/overlays/__tests__/__snapshots__/Dropdown.test.tsx.snap +51 -0
- package/components/overlays/__tests__/__snapshots__/DropdownContainer.test.tsx.snap +45 -0
- package/components/overlays/__tests__/__snapshots__/DropdownMenu.test.tsx.snap +90 -0
- package/components/overlays/__tests__/__snapshots__/Modals.test.tsx.snap +134 -0
- package/components/overlays/__tests__/__snapshots__/NotificationCard.test.tsx.snap +284 -0
- package/components/overlays/__tests__/__snapshots__/Tooltip.test.tsx.snap +5 -0
- package/components/overlays/index.ts +8 -0
- package/components/pickers/DataPickerBody.module.scss +54 -0
- package/components/pickers/DataPickerBody.tsx +69 -0
- package/components/pickers/DataPickerCell.module.scss +93 -0
- package/components/pickers/DataPickerCell.tsx +95 -0
- package/components/pickers/DataPickerFooter.tsx +85 -0
- package/components/pickers/DataPickerHeader.module.scss +19 -0
- package/components/pickers/DataPickerHeader.tsx +24 -0
- package/components/pickers/DataPickerRow.module.scss +11 -0
- package/components/pickers/DataPickerRow.tsx +38 -0
- package/components/pickers/MobileDropdownWrapper.module.scss +20 -0
- package/components/pickers/MobileDropdownWrapper.tsx +40 -0
- package/components/pickers/PickerInput.module.scss +39 -0
- package/components/pickers/PickerInput.tsx +197 -0
- package/components/pickers/PickerItem.module.scss +32 -0
- package/components/pickers/PickerItem.tsx +66 -0
- package/components/pickers/PickerList.tsx +83 -0
- package/components/pickers/PickerListItem.module.scss +3 -0
- package/components/pickers/PickerListItem.tsx +55 -0
- package/components/pickers/PickerModal.module.scss +27 -0
- package/components/pickers/PickerModal.tsx +167 -0
- package/components/pickers/PickerToggler.module.scss +249 -0
- package/components/pickers/PickerToggler.tsx +88 -0
- package/components/pickers/__tests__/DataPickerBody.test.tsx +58 -0
- package/components/pickers/__tests__/DataPickerRow.test.tsx +39 -0
- package/components/pickers/__tests__/PickerInput.test.tsx +1073 -0
- package/components/pickers/__tests__/PickerList.test.tsx +597 -0
- package/components/pickers/__tests__/PickerModal.test.tsx +521 -0
- package/components/pickers/__tests__/PickerToggler.test.tsx +40 -0
- package/components/pickers/__tests__/__snapshots__/DataPickerBody.test.tsx.snap +201 -0
- package/components/pickers/__tests__/__snapshots__/DataPickerRow.test.tsx.snap +100 -0
- package/components/pickers/__tests__/__snapshots__/PickerInput.test.tsx.snap +705 -0
- package/components/pickers/__tests__/__snapshots__/PickerList.test.tsx.snap +980 -0
- package/components/pickers/__tests__/__snapshots__/PickerModal.test.tsx.snap +2062 -0
- package/components/pickers/__tests__/__snapshots__/PickerToggler.test.tsx.snap +81 -0
- package/components/pickers/__tests__/highlight.test.tsx +37 -0
- package/components/pickers/__tests__/mocks.ts +87 -0
- package/components/pickers/helpers.ts +4 -0
- package/components/pickers/highlight.tsx +93 -0
- package/components/pickers/index.ts +12 -0
- package/components/pickers/types.ts +7 -0
- package/components/tables/ColumnHeaderDropdown/ColumnHeaderDropdown.tsx +46 -0
- package/components/tables/ColumnHeaderDropdown/SortingPanel.module.scss +14 -0
- package/components/tables/ColumnHeaderDropdown/SortingPanel.tsx +27 -0
- package/components/tables/ColumnHeaderDropdown/index.ts +1 -0
- package/components/tables/DataRowsContainer/DataRowsContainer.module.scss +21 -0
- package/components/tables/DataRowsContainer/DataRowsContainer.tsx +27 -0
- package/components/tables/DataRowsContainer/DataRowsGroups.tsx +86 -0
- package/components/tables/DataRowsContainer/index.tsx +1 -0
- package/components/tables/DataRowsContainer/utils.ts +15 -0
- package/components/tables/DataTable.module.scss +54 -0
- package/components/tables/DataTable.tsx +172 -0
- package/components/tables/DataTableCell.module.scss +65 -0
- package/components/tables/DataTableCell.tsx +51 -0
- package/components/tables/DataTableHeaderCell.module.scss +161 -0
- package/components/tables/DataTableHeaderCell.tsx +151 -0
- package/components/tables/DataTableHeaderRow.module.scss +23 -0
- package/components/tables/DataTableHeaderRow.tsx +19 -0
- package/components/tables/DataTableRow.module.scss +58 -0
- package/components/tables/DataTableRow.tsx +31 -0
- package/components/tables/__tests__/ColumnHeaderDropdown.test.tsx +25 -0
- package/components/tables/__tests__/DataTable.test.tsx +23 -0
- package/components/tables/__tests__/DataTableCell.test.tsx +66 -0
- package/components/tables/__tests__/DataTableHeaderCell.test.tsx +21 -0
- package/components/tables/__tests__/DataTableHeaderRow.test.tsx +28 -0
- package/components/tables/__tests__/DataTableRow.test.tsx +30 -0
- package/components/tables/__tests__/__snapshots__/ColumnHeaderDropdown.test.tsx.snap +138 -0
- package/components/tables/__tests__/__snapshots__/DataTable.test.tsx.snap +122 -0
- package/components/tables/__tests__/__snapshots__/DataTableCell.test.tsx.snap +45 -0
- package/components/tables/__tests__/__snapshots__/DataTableHeaderCell.test.tsx.snap +34 -0
- package/components/tables/__tests__/__snapshots__/DataTableHeaderRow.test.tsx.snap +51 -0
- package/components/tables/__tests__/__snapshots__/DataTableRow.test.tsx.snap +54 -0
- package/components/tables/columnsConfigurationModal/ColumnRow.module.scss +45 -0
- package/components/tables/columnsConfigurationModal/ColumnRow.tsx +66 -0
- package/components/tables/columnsConfigurationModal/ColumnsConfigurationModal.module.scss +55 -0
- package/components/tables/columnsConfigurationModal/ColumnsConfigurationModal.tsx +153 -0
- package/components/tables/columnsConfigurationModal/PinIconButton.tsx +55 -0
- package/components/tables/columnsConfigurationModal/__tests__/ColumnsConfigurationModal.test.tsx +72 -0
- package/components/tables/columnsConfigurationModal/__tests__/__snapshots__/ColumnsConfigurationModal.test.tsx.snap +877 -0
- package/components/tables/columnsConfigurationModal/index.ts +1 -0
- package/components/tables/index.ts +9 -0
- package/components/tables/types.ts +33 -0
- package/components/tables/variables.scss +25 -0
- package/components/types.ts +34 -0
- package/components/typography/RichTextView.tsx +17 -0
- package/components/typography/Text.module.scss +54 -0
- package/components/typography/Text.tsx +59 -0
- package/components/typography/TextPlaceholder.module.scss +46 -0
- package/components/typography/TextPlaceholder.tsx +38 -0
- package/components/typography/__tests__/RichTextView.test.tsx +27 -0
- package/components/typography/__tests__/Text.test.tsx +21 -0
- package/components/typography/__tests__/TextPlaceholder.test.tsx +23 -0
- package/components/typography/__tests__/__snapshots__/RichTextView.test.tsx.snap +21 -0
- package/components/typography/__tests__/__snapshots__/Text.test.tsx.snap +18 -0
- package/components/typography/__tests__/__snapshots__/TextPlaceholder.test.tsx.snap +65 -0
- package/components/typography/index.ts +3 -0
- package/components/widgets/AvatarStack.module.scss +36 -0
- package/components/widgets/AvatarStack.tsx +5 -0
- package/components/widgets/Badge.module.scss +334 -0
- package/components/widgets/Badge.tsx +97 -0
- package/components/widgets/CountIndicator.module.scss +52 -0
- package/components/widgets/CountIndicator.tsx +38 -0
- package/components/widgets/DataRowAddons.module.scss +57 -0
- package/components/widgets/DataRowAddons.tsx +66 -0
- package/components/widgets/IndeterminateBar.module.scss +42 -0
- package/components/widgets/IndeterminateBar.tsx +16 -0
- package/components/widgets/IndicatorBar.module.scss +3 -0
- package/components/widgets/IndicatorBar.tsx +20 -0
- package/components/widgets/Paginator.module.scss +66 -0
- package/components/widgets/Paginator.tsx +64 -0
- package/components/widgets/ProgressBar.module.scss +52 -0
- package/components/widgets/ProgressBar.tsx +33 -0
- package/components/widgets/Spinner.module.scss +38 -0
- package/components/widgets/Spinner.tsx +11 -0
- package/components/widgets/StatusIndicator.module.scss +72 -0
- package/components/widgets/StatusIndicator.tsx +50 -0
- package/components/widgets/Tag.module.scss +142 -0
- package/components/widgets/Tag.tsx +73 -0
- package/components/widgets/__tests__/AvatarStack.test.tsx +19 -0
- package/components/widgets/__tests__/Badge.test.tsx +30 -0
- package/components/widgets/__tests__/IndeterminateBar.test.tsx +15 -0
- package/components/widgets/__tests__/IndicatorBar.test.tsx +15 -0
- package/components/widgets/__tests__/Paginator.test.tsx +19 -0
- package/components/widgets/__tests__/ProgressBar.test.tsx +25 -0
- package/components/widgets/__tests__/Spinner.test.tsx +10 -0
- package/components/widgets/__tests__/StatusIndicator.test.tsx +17 -0
- package/components/widgets/__tests__/Tag.test.tsx +18 -0
- package/components/widgets/__tests__/__snapshots__/AvatarStack.test.tsx.snap +55 -0
- package/components/widgets/__tests__/__snapshots__/Badge.test.tsx.snap +48 -0
- package/components/widgets/__tests__/__snapshots__/IndeterminateBar.test.tsx.snap +21 -0
- package/components/widgets/__tests__/__snapshots__/IndicatorBar.test.tsx.snap +30 -0
- package/components/widgets/__tests__/__snapshots__/Paginator.test.tsx.snap +127 -0
- package/components/widgets/__tests__/__snapshots__/ProgressBar.test.tsx.snap +107 -0
- package/components/widgets/__tests__/__snapshots__/Spinner.test.tsx.snap +21 -0
- package/components/widgets/__tests__/__snapshots__/StatusIndicator.test.tsx.snap +31 -0
- package/components/widgets/__tests__/__snapshots__/Tag.test.tsx.snap +48 -0
- package/components/widgets/index.ts +12 -0
- package/globals.d.ts +12 -0
- package/helpers/index.ts +2 -0
- package/helpers/text-layout.module.scss +81 -0
- package/helpers/textLayout.tsx +35 -0
- package/helpers/useColumnsWithFilters.tsx +34 -0
- package/i18n.ts +105 -0
- package/icons/accept-12.svg +1 -0
- package/icons/accept-18.svg +1 -0
- package/icons/accept-24.svg +1 -0
- package/icons/action-settings-12.svg +1 -0
- package/icons/action-settings-18.svg +1 -0
- package/icons/action-settings-24.svg +1 -0
- package/icons/btn-cross-12.svg +1 -0
- package/icons/btn-cross-18.svg +1 -0
- package/icons/btn-cross-24.svg +1 -0
- package/icons/burger-close.svg +3 -0
- package/icons/burger.svg +3 -0
- package/icons/calendar-12.svg +1 -0
- package/icons/calendar-18.svg +1 -0
- package/icons/calendar-24.svg +1 -0
- package/icons/check-12.svg +3 -0
- package/icons/check-18.svg +3 -0
- package/icons/checkbox-checked.svg +21 -0
- package/icons/checkbox-partial.svg +21 -0
- package/icons/checkbox_tick.svg +44 -0
- package/icons/chevron-down-24.svg +1 -0
- package/icons/chevron-up-24.svg +1 -0
- package/icons/content-edit-12.svg +1 -0
- package/icons/content-edit-18.svg +1 -0
- package/icons/content-edit-24.svg +1 -0
- package/icons/empty-table.svg +58 -0
- package/icons/fileUpload/file-file-24.svg +1 -0
- package/icons/fileUpload/file-file_chart-24.svg +1 -0
- package/icons/fileUpload/file-file_eml-24.svg +1 -0
- package/icons/fileUpload/file-file_excel-24.svg +1 -0
- package/icons/fileUpload/file-file_image-24.svg +1 -0
- package/icons/fileUpload/file-file_pdf-24.svg +1 -0
- package/icons/fileUpload/file-file_table-24.svg +1 -0
- package/icons/fileUpload/file-file_text-24.svg +1 -0
- package/icons/fileUpload/file-file_video-24.svg +1 -0
- package/icons/fileUpload/file-file_word-24.svg +1 -0
- package/icons/fileUpload/shape.svg +2 -0
- package/icons/filter.svg +11 -0
- package/icons/folding-arrow-12.svg +1 -0
- package/icons/folding-arrow-18.svg +1 -0
- package/icons/folding-arrow-24.svg +1 -0
- package/icons/global_menu.svg +9 -0
- package/icons/help-fill-10.svg +3 -0
- package/icons/help-fill-16.svg +3 -0
- package/icons/icons.tsx +116 -0
- package/icons/info-12.svg +3 -0
- package/icons/info-18.svg +1 -0
- package/icons/info-24.svg +1 -0
- package/icons/logo-arrow.svg +4 -0
- package/icons/menu_input_cancel.svg +84 -0
- package/icons/modal-close-cross.svg +22 -0
- package/icons/navigation-close-24.svg +1 -0
- package/icons/navigation-more_vert-12.svg +1 -0
- package/icons/navigation-more_vert-18.svg +1 -0
- package/icons/navigation-more_vert-24.svg +1 -0
- package/icons/notification-check_circle-fill-24.svg +1 -0
- package/icons/notification-done-12.svg +1 -0
- package/icons/notification-done-18.svg +1 -0
- package/icons/notification-done-24.svg +1 -0
- package/icons/notification-error-fill-10.svg +1 -0
- package/icons/notification-error-fill-24.svg +1 -0
- package/icons/notification-help-fill-24.svg +1 -0
- package/icons/notification-warning-fill-24.svg +1 -0
- package/icons/partly-select-12.svg +3 -0
- package/icons/partly-select-18.svg +3 -0
- package/icons/radio-point.svg +3 -0
- package/icons/search-12.svg +1 -0
- package/icons/search-18.svg +1 -0
- package/icons/search-24.svg +1 -0
- package/icons/search-with-background.svg +4 -0
- package/icons/settings-18.svg +1 -0
- package/icons/slider-rating/active_mark_blue_icon.svg +23 -0
- package/icons/slider-rating/active_mark_green_icon.svg +23 -0
- package/icons/slider-rating/active_mark_red_icon.svg +23 -0
- package/icons/slider-rating/active_mark_violet_icon.svg +23 -0
- package/icons/slider-rating/active_mark_yellow_icon.svg +23 -0
- package/icons/slider-rating/line_blue_icon.svg +31 -0
- package/icons/slider-rating/line_gray_icon.svg +20 -0
- package/icons/slider-rating/line_red_icon.svg +42 -0
- package/icons/slider-rating/line_violet_icon.svg +33 -0
- package/icons/slider-rating/line_yellow_icon.svg +34 -0
- package/icons/slider-rating/na_active_icon.svg +13 -0
- package/icons/slider-rating/na_icon.svg +13 -0
- package/icons/snackbar/cross.svg +1 -0
- package/icons/snackbar/info.svg +1 -0
- package/icons/snackbar/success.svg +1 -0
- package/icons/snackbar/warning.svg +1 -0
- package/icons/sort.svg +5 -0
- package/icons/sort_asc-12.svg +1 -0
- package/icons/sort_desc-12.svg +1 -0
- package/icons/star-empty.svg +3 -0
- package/icons/star-filled.svg +3 -0
- package/icons/tick-12.svg +1 -0
- package/icons/tick-24.svg +1 -0
- package/icons/triangle.svg +10 -0
- package/index.tsx +5 -0
- package/package.json +7 -7
- package/readme.md +4 -4
- package/themeTodo.md +21 -0
- package/tsconfig.json +12 -0
- package/index.esm.js +0 -4740
- package/index.esm.js.map +0 -1
- package/index.js +0 -4905
- package/index.js.map +0 -1
- package/stats.html +0 -4838
- package/styles.css +0 -11145
- package/styles.css.map +0 -1
- /package/{components → build/components}/buttons/Button.d.ts +0 -0
- /package/{components → build/components}/buttons/Button.d.ts.map +0 -0
- /package/{components → build/components}/buttons/IconButton.d.ts +0 -0
- /package/{components → build/components}/buttons/IconButton.d.ts.map +0 -0
- /package/{components → build/components}/buttons/LinkButton.d.ts +0 -0
- /package/{components → build/components}/buttons/LinkButton.d.ts.map +0 -0
- /package/{components → build/components}/buttons/TabButton.d.ts +0 -0
- /package/{components → build/components}/buttons/TabButton.d.ts.map +0 -0
- /package/{components → build/components}/buttons/VerticalTabButton.d.ts +0 -0
- /package/{components → build/components}/buttons/VerticalTabButton.d.ts.map +0 -0
- /package/{components → build/components}/buttons/helper.d.ts +0 -0
- /package/{components → build/components}/buttons/helper.d.ts.map +0 -0
- /package/{components → build/components}/buttons/index.d.ts +0 -0
- /package/{components → build/components}/buttons/index.d.ts.map +0 -0
- /package/{components → build/components}/datePickers/Calendar.d.ts +0 -0
- /package/{components → build/components}/datePickers/Calendar.d.ts.map +0 -0
- /package/{components → build/components}/datePickers/CalendarPresets.d.ts +0 -0
- /package/{components → build/components}/datePickers/CalendarPresets.d.ts.map +0 -0
- /package/{components → build/components}/datePickers/DatePicker.d.ts +0 -0
- /package/{components → build/components}/datePickers/DatePicker.d.ts.map +0 -0
- /package/{components → build/components}/datePickers/DatePickerBody.d.ts +0 -0
- /package/{components → build/components}/datePickers/DatePickerBody.d.ts.map +0 -0
- /package/{components → build/components}/datePickers/DatePickerHeader.d.ts +0 -0
- /package/{components → build/components}/datePickers/DatePickerHeader.d.ts.map +0 -0
- /package/{components → build/components}/datePickers/RangeDatePicker.d.ts +0 -0
- /package/{components → build/components}/datePickers/RangeDatePicker.d.ts.map +0 -0
- /package/{components → build/components}/datePickers/RangeDatePickerBody.d.ts +0 -0
- /package/{components → build/components}/datePickers/RangeDatePickerBody.d.ts.map +0 -0
- /package/{components → build/components}/datePickers/index.d.ts +0 -0
- /package/{components → build/components}/datePickers/index.d.ts.map +0 -0
- /package/{components → build/components}/dnd/DropMarker.d.ts +0 -0
- /package/{components → build/components}/dnd/DropMarker.d.ts.map +0 -0
- /package/{components → build/components}/dnd/index.d.ts +0 -0
- /package/{components → build/components}/dnd/index.d.ts.map +0 -0
- /package/{components → build/components}/fileUpload/DropSpot.d.ts +0 -0
- /package/{components → build/components}/fileUpload/DropSpot.d.ts.map +0 -0
- /package/{components → build/components}/fileUpload/FileCard.d.ts +0 -0
- /package/{components → build/components}/fileUpload/FileCard.d.ts.map +0 -0
- /package/{components → build/components}/fileUpload/SvgCircleProgress.d.ts +0 -0
- /package/{components → build/components}/fileUpload/SvgCircleProgress.d.ts.map +0 -0
- /package/{components → build/components}/fileUpload/index.d.ts +0 -0
- /package/{components → build/components}/fileUpload/index.d.ts.map +0 -0
- /package/{components → build/components}/filters/FilterDatePickerBody.d.ts +0 -0
- /package/{components → build/components}/filters/FilterDatePickerBody.d.ts.map +0 -0
- /package/{components → build/components}/filters/FilterItemBody.d.ts +0 -0
- /package/{components → build/components}/filters/FilterItemBody.d.ts.map +0 -0
- /package/{components → build/components}/filters/FilterNumericBody.d.ts +0 -0
- /package/{components → build/components}/filters/FilterNumericBody.d.ts.map +0 -0
- /package/{components → build/components}/filters/FilterPanelItemToggler.d.ts +0 -0
- /package/{components → build/components}/filters/FilterPanelItemToggler.d.ts.map +0 -0
- /package/{components → build/components}/filters/FilterPickerBody.d.ts +0 -0
- /package/{components → build/components}/filters/FilterPickerBody.d.ts.map +0 -0
- /package/{components → build/components}/filters/FilterRangeDatePickerBody.d.ts +0 -0
- /package/{components → build/components}/filters/FilterRangeDatePickerBody.d.ts.map +0 -0
- /package/{components → build/components}/filters/FiltersPanel.d.ts +0 -0
- /package/{components → build/components}/filters/FiltersPanel.d.ts.map +0 -0
- /package/{components → build/components}/filters/FiltersPanelItem.d.ts +0 -0
- /package/{components → build/components}/filters/FiltersPanelItem.d.ts.map +0 -0
- /package/{components → build/components}/filters/PresetPanel/Preset.d.ts +0 -0
- /package/{components → build/components}/filters/PresetPanel/Preset.d.ts.map +0 -0
- /package/{components → build/components}/filters/PresetPanel/PresetActionsDropdown.d.ts +0 -0
- /package/{components → build/components}/filters/PresetPanel/PresetActionsDropdown.d.ts.map +0 -0
- /package/{components → build/components}/filters/PresetPanel/PresetInput.d.ts +0 -0
- /package/{components → build/components}/filters/PresetPanel/PresetInput.d.ts.map +0 -0
- /package/{components → build/components}/filters/PresetPanel/PresetsPanel.d.ts +0 -0
- /package/{components → build/components}/filters/PresetPanel/PresetsPanel.d.ts.map +0 -0
- /package/{components → build/components}/filters/PresetPanel/constants.d.ts +0 -0
- /package/{components → build/components}/filters/PresetPanel/constants.d.ts.map +0 -0
- /package/{components → build/components}/filters/PresetPanel/index.d.ts +0 -0
- /package/{components → build/components}/filters/PresetPanel/index.d.ts.map +0 -0
- /package/{components → build/components}/filters/constants.d.ts +0 -0
- /package/{components → build/components}/filters/constants.d.ts.map +0 -0
- /package/{components → build/components}/filters/defaultPredicates.d.ts +0 -0
- /package/{components → build/components}/filters/defaultPredicates.d.ts.map +0 -0
- /package/{components → build/components}/filters/index.d.ts +0 -0
- /package/{components → build/components}/filters/index.d.ts.map +0 -0
- /package/{components → build/components}/forms/Form.d.ts +0 -0
- /package/{components → build/components}/forms/Form.d.ts.map +0 -0
- /package/{components → build/components}/forms/index.d.ts +0 -0
- /package/{components → build/components}/forms/index.d.ts.map +0 -0
- /package/{components → build/components}/forms/useForm.d.ts +0 -0
- /package/{components → build/components}/forms/useForm.d.ts.map +0 -0
- /package/{components → build/components}/index.d.ts +0 -0
- /package/{components → build/components}/index.d.ts.map +0 -0
- /package/{components → build/components}/inputs/Checkbox.d.ts +0 -0
- /package/{components → build/components}/inputs/Checkbox.d.ts.map +0 -0
- /package/{components → build/components}/inputs/InputAddon.d.ts +0 -0
- /package/{components → build/components}/inputs/InputAddon.d.ts.map +0 -0
- /package/{components → build/components}/inputs/MultiSwitch.d.ts +0 -0
- /package/{components → build/components}/inputs/MultiSwitch.d.ts.map +0 -0
- /package/{components → build/components}/inputs/NumericInput.d.ts +0 -0
- /package/{components → build/components}/inputs/NumericInput.d.ts.map +0 -0
- /package/{components → build/components}/inputs/RadioInput.d.ts +0 -0
- /package/{components → build/components}/inputs/RadioInput.d.ts.map +0 -0
- /package/{components → build/components}/inputs/Slider.d.ts +0 -0
- /package/{components → build/components}/inputs/Slider.d.ts.map +0 -0
- /package/{components → build/components}/inputs/Switch.d.ts +0 -0
- /package/{components → build/components}/inputs/Switch.d.ts.map +0 -0
- /package/{components → build/components}/inputs/TextArea.d.ts +0 -0
- /package/{components → build/components}/inputs/TextArea.d.ts.map +0 -0
- /package/{components → build/components}/inputs/TextInput.d.ts +0 -0
- /package/{components → build/components}/inputs/TextInput.d.ts.map +0 -0
- /package/{components → build/components}/inputs/TimePicker.d.ts +0 -0
- /package/{components → build/components}/inputs/TimePicker.d.ts.map +0 -0
- /package/{components → build/components}/inputs/TimePickerBody.d.ts +0 -0
- /package/{components → build/components}/inputs/TimePickerBody.d.ts.map +0 -0
- /package/{components → build/components}/inputs/index.d.ts +0 -0
- /package/{components → build/components}/inputs/index.d.ts.map +0 -0
- /package/{components → build/components}/layout/Accordion.d.ts +0 -0
- /package/{components → build/components}/layout/Accordion.d.ts.map +0 -0
- /package/{components → build/components}/layout/Blocker.d.ts +0 -0
- /package/{components → build/components}/layout/Blocker.d.ts.map +0 -0
- /package/{components → build/components}/layout/CheckboxGroup.d.ts +0 -0
- /package/{components → build/components}/layout/CheckboxGroup.d.ts.map +0 -0
- /package/{components → build/components}/layout/ControlGroup.d.ts +0 -0
- /package/{components → build/components}/layout/ControlGroup.d.ts.map +0 -0
- /package/{components → build/components}/layout/FlexItems/FlexCell.d.ts +0 -0
- /package/{components → build/components}/layout/FlexItems/FlexCell.d.ts.map +0 -0
- /package/{components → build/components}/layout/FlexItems/FlexRow.d.ts +0 -0
- /package/{components → build/components}/layout/FlexItems/FlexRow.d.ts.map +0 -0
- /package/{components → build/components}/layout/FlexItems/Panel.d.ts +0 -0
- /package/{components → build/components}/layout/FlexItems/Panel.d.ts.map +0 -0
- /package/{components → build/components}/layout/FlexItems/index.d.ts +0 -0
- /package/{components → build/components}/layout/FlexItems/index.d.ts.map +0 -0
- /package/{components → build/components}/layout/LabeledInput.d.ts +0 -0
- /package/{components → build/components}/layout/LabeledInput.d.ts.map +0 -0
- /package/{components → build/components}/layout/RadioGroup.d.ts +0 -0
- /package/{components → build/components}/layout/RadioGroup.d.ts.map +0 -0
- /package/{components → build/components}/layout/ScrollBars.d.ts +0 -0
- /package/{components → build/components}/layout/ScrollBars.d.ts.map +0 -0
- /package/{components → build/components}/layout/VirtualList.d.ts +0 -0
- /package/{components → build/components}/layout/VirtualList.d.ts.map +0 -0
- /package/{components → build/components}/layout/index.d.ts +0 -0
- /package/{components → build/components}/layout/index.d.ts.map +0 -0
- /package/{components → build/components}/navigation/Anchor.d.ts +0 -0
- /package/{components → build/components}/navigation/Anchor.d.ts.map +0 -0
- /package/{components → build/components}/navigation/MainMenu/Burger/Burger.d.ts +0 -0
- /package/{components → build/components}/navigation/MainMenu/Burger/Burger.d.ts.map +0 -0
- /package/{components → build/components}/navigation/MainMenu/Burger/BurgerButton.d.ts +0 -0
- /package/{components → build/components}/navigation/MainMenu/Burger/BurgerButton.d.ts.map +0 -0
- /package/{components → build/components}/navigation/MainMenu/Burger/BurgerGroupHeader.d.ts +0 -0
- /package/{components → build/components}/navigation/MainMenu/Burger/BurgerGroupHeader.d.ts.map +0 -0
- /package/{components → build/components}/navigation/MainMenu/Burger/BurgerSearch.d.ts +0 -0
- /package/{components → build/components}/navigation/MainMenu/Burger/BurgerSearch.d.ts.map +0 -0
- /package/{components → build/components}/navigation/MainMenu/Burger/index.d.ts +0 -0
- /package/{components → build/components}/navigation/MainMenu/Burger/index.d.ts.map +0 -0
- /package/{components → build/components}/navigation/MainMenu/GlobalMenu.d.ts +0 -0
- /package/{components → build/components}/navigation/MainMenu/GlobalMenu.d.ts.map +0 -0
- /package/{components → build/components}/navigation/MainMenu/MainMenu.d.ts +0 -0
- /package/{components → build/components}/navigation/MainMenu/MainMenu.d.ts.map +0 -0
- /package/{components → build/components}/navigation/MainMenu/MainMenuAvatar.d.ts +0 -0
- /package/{components → build/components}/navigation/MainMenu/MainMenuAvatar.d.ts.map +0 -0
- /package/{components → build/components}/navigation/MainMenu/MainMenuButton.d.ts +0 -0
- /package/{components → build/components}/navigation/MainMenu/MainMenuButton.d.ts.map +0 -0
- /package/{components → build/components}/navigation/MainMenu/MainMenuDropdown.d.ts +0 -0
- /package/{components → build/components}/navigation/MainMenu/MainMenuDropdown.d.ts.map +0 -0
- /package/{components → build/components}/navigation/MainMenu/MainMenuIcon.d.ts +0 -0
- /package/{components → build/components}/navigation/MainMenu/MainMenuIcon.d.ts.map +0 -0
- /package/{components → build/components}/navigation/MainMenu/MainMenuSearch.d.ts +0 -0
- /package/{components → build/components}/navigation/MainMenu/MainMenuSearch.d.ts.map +0 -0
- /package/{components → build/components}/navigation/MainMenu/index.d.ts +0 -0
- /package/{components → build/components}/navigation/MainMenu/index.d.ts.map +0 -0
- /package/{components → build/components}/navigation/index.d.ts +0 -0
- /package/{components → build/components}/navigation/index.d.ts.map +0 -0
- /package/{components → build/components}/overlays/Alert.d.ts +0 -0
- /package/{components → build/components}/overlays/Alert.d.ts.map +0 -0
- /package/{components → build/components}/overlays/ConfirmationModal.d.ts +0 -0
- /package/{components → build/components}/overlays/ConfirmationModal.d.ts.map +0 -0
- /package/{components → build/components}/overlays/Dropdown.d.ts +0 -0
- /package/{components → build/components}/overlays/Dropdown.d.ts.map +0 -0
- /package/{components → build/components}/overlays/DropdownContainer.d.ts +0 -0
- /package/{components → build/components}/overlays/DropdownContainer.d.ts.map +0 -0
- /package/{components → build/components}/overlays/DropdownMenu.d.ts +0 -0
- /package/{components → build/components}/overlays/DropdownMenu.d.ts.map +0 -0
- /package/{components → build/components}/overlays/Modals.d.ts +0 -0
- /package/{components → build/components}/overlays/Modals.d.ts.map +0 -0
- /package/{components → build/components}/overlays/NotificationCard.d.ts +0 -0
- /package/{components → build/components}/overlays/NotificationCard.d.ts.map +0 -0
- /package/{components → build/components}/overlays/Tooltip.d.ts +0 -0
- /package/{components → build/components}/overlays/Tooltip.d.ts.map +0 -0
- /package/{components → build/components}/overlays/index.d.ts +0 -0
- /package/{components → build/components}/overlays/index.d.ts.map +0 -0
- /package/{components → build/components}/pickers/DataPickerBody.d.ts +0 -0
- /package/{components → build/components}/pickers/DataPickerBody.d.ts.map +0 -0
- /package/{components → build/components}/pickers/DataPickerCell.d.ts +0 -0
- /package/{components → build/components}/pickers/DataPickerCell.d.ts.map +0 -0
- /package/{components → build/components}/pickers/DataPickerFooter.d.ts +0 -0
- /package/{components → build/components}/pickers/DataPickerFooter.d.ts.map +0 -0
- /package/{components → build/components}/pickers/DataPickerHeader.d.ts +0 -0
- /package/{components → build/components}/pickers/DataPickerHeader.d.ts.map +0 -0
- /package/{components → build/components}/pickers/DataPickerRow.d.ts +0 -0
- /package/{components → build/components}/pickers/DataPickerRow.d.ts.map +0 -0
- /package/{components → build/components}/pickers/MobileDropdownWrapper.d.ts +0 -0
- /package/{components → build/components}/pickers/MobileDropdownWrapper.d.ts.map +0 -0
- /package/{components → build/components}/pickers/PickerInput.d.ts +0 -0
- /package/{components → build/components}/pickers/PickerInput.d.ts.map +0 -0
- /package/{components → build/components}/pickers/PickerItem.d.ts +0 -0
- /package/{components → build/components}/pickers/PickerItem.d.ts.map +0 -0
- /package/{components → build/components}/pickers/PickerList.d.ts +0 -0
- /package/{components → build/components}/pickers/PickerList.d.ts.map +0 -0
- /package/{components → build/components}/pickers/PickerListItem.d.ts +0 -0
- /package/{components → build/components}/pickers/PickerListItem.d.ts.map +0 -0
- /package/{components → build/components}/pickers/PickerModal.d.ts +0 -0
- /package/{components → build/components}/pickers/PickerModal.d.ts.map +0 -0
- /package/{components → build/components}/pickers/PickerToggler.d.ts +0 -0
- /package/{components → build/components}/pickers/PickerToggler.d.ts.map +0 -0
- /package/{components → build/components}/pickers/helpers.d.ts +0 -0
- /package/{components → build/components}/pickers/helpers.d.ts.map +0 -0
- /package/{components → build/components}/pickers/highlight.d.ts +0 -0
- /package/{components → build/components}/pickers/highlight.d.ts.map +0 -0
- /package/{components → build/components}/pickers/index.d.ts +0 -0
- /package/{components → build/components}/pickers/index.d.ts.map +0 -0
- /package/{components → build/components}/pickers/types.d.ts +0 -0
- /package/{components → build/components}/pickers/types.d.ts.map +0 -0
- /package/{components → build/components}/tables/ColumnHeaderDropdown/ColumnHeaderDropdown.d.ts +0 -0
- /package/{components → build/components}/tables/ColumnHeaderDropdown/ColumnHeaderDropdown.d.ts.map +0 -0
- /package/{components → build/components}/tables/ColumnHeaderDropdown/SortingPanel.d.ts +0 -0
- /package/{components → build/components}/tables/ColumnHeaderDropdown/SortingPanel.d.ts.map +0 -0
- /package/{components → build/components}/tables/ColumnHeaderDropdown/index.d.ts +0 -0
- /package/{components → build/components}/tables/ColumnHeaderDropdown/index.d.ts.map +0 -0
- /package/{components → build/components}/tables/DataRowsContainer/DataRowsContainer.d.ts +0 -0
- /package/{components → build/components}/tables/DataRowsContainer/DataRowsContainer.d.ts.map +0 -0
- /package/{components → build/components}/tables/DataRowsContainer/DataRowsGroups.d.ts +0 -0
- /package/{components → build/components}/tables/DataRowsContainer/DataRowsGroups.d.ts.map +0 -0
- /package/{components → build/components}/tables/DataRowsContainer/index.d.ts +0 -0
- /package/{components → build/components}/tables/DataRowsContainer/index.d.ts.map +0 -0
- /package/{components → build/components}/tables/DataRowsContainer/utils.d.ts +0 -0
- /package/{components → build/components}/tables/DataRowsContainer/utils.d.ts.map +0 -0
- /package/{components → build/components}/tables/DataTable.d.ts +0 -0
- /package/{components → build/components}/tables/DataTable.d.ts.map +0 -0
- /package/{components → build/components}/tables/DataTableCell.d.ts +0 -0
- /package/{components → build/components}/tables/DataTableCell.d.ts.map +0 -0
- /package/{components → build/components}/tables/DataTableHeaderCell.d.ts +0 -0
- /package/{components → build/components}/tables/DataTableHeaderCell.d.ts.map +0 -0
- /package/{components → build/components}/tables/DataTableHeaderRow.d.ts +0 -0
- /package/{components → build/components}/tables/DataTableHeaderRow.d.ts.map +0 -0
- /package/{components → build/components}/tables/DataTableRow.d.ts +0 -0
- /package/{components → build/components}/tables/DataTableRow.d.ts.map +0 -0
- /package/{components → build/components}/tables/columnsConfigurationModal/ColumnRow.d.ts +0 -0
- /package/{components → build/components}/tables/columnsConfigurationModal/ColumnRow.d.ts.map +0 -0
- /package/{components → build/components}/tables/columnsConfigurationModal/ColumnsConfigurationModal.d.ts +0 -0
- /package/{components → build/components}/tables/columnsConfigurationModal/ColumnsConfigurationModal.d.ts.map +0 -0
- /package/{components → build/components}/tables/columnsConfigurationModal/PinIconButton.d.ts +0 -0
- /package/{components → build/components}/tables/columnsConfigurationModal/PinIconButton.d.ts.map +0 -0
- /package/{components → build/components}/tables/columnsConfigurationModal/index.d.ts +0 -0
- /package/{components → build/components}/tables/columnsConfigurationModal/index.d.ts.map +0 -0
- /package/{components → build/components}/tables/index.d.ts +0 -0
- /package/{components → build/components}/tables/index.d.ts.map +0 -0
- /package/{components → build/components}/tables/types.d.ts +0 -0
- /package/{components → build/components}/tables/types.d.ts.map +0 -0
- /package/{components → build/components}/types.d.ts +0 -0
- /package/{components → build/components}/types.d.ts.map +0 -0
- /package/{components → build/components}/typography/RichTextView.d.ts +0 -0
- /package/{components → build/components}/typography/RichTextView.d.ts.map +0 -0
- /package/{components → build/components}/typography/Text.d.ts +0 -0
- /package/{components → build/components}/typography/Text.d.ts.map +0 -0
- /package/{components → build/components}/typography/TextPlaceholder.d.ts +0 -0
- /package/{components → build/components}/typography/TextPlaceholder.d.ts.map +0 -0
- /package/{components → build/components}/typography/index.d.ts +0 -0
- /package/{components → build/components}/typography/index.d.ts.map +0 -0
- /package/{components → build/components}/widgets/AvatarStack.d.ts +0 -0
- /package/{components → build/components}/widgets/AvatarStack.d.ts.map +0 -0
- /package/{components → build/components}/widgets/Badge.d.ts +0 -0
- /package/{components → build/components}/widgets/Badge.d.ts.map +0 -0
- /package/{components → build/components}/widgets/CountIndicator.d.ts +0 -0
- /package/{components → build/components}/widgets/CountIndicator.d.ts.map +0 -0
- /package/{components → build/components}/widgets/DataRowAddons.d.ts +0 -0
- /package/{components → build/components}/widgets/DataRowAddons.d.ts.map +0 -0
- /package/{components → build/components}/widgets/IndeterminateBar.d.ts +0 -0
- /package/{components → build/components}/widgets/IndeterminateBar.d.ts.map +0 -0
- /package/{components → build/components}/widgets/IndicatorBar.d.ts +0 -0
- /package/{components → build/components}/widgets/IndicatorBar.d.ts.map +0 -0
- /package/{components → build/components}/widgets/Paginator.d.ts +0 -0
- /package/{components → build/components}/widgets/Paginator.d.ts.map +0 -0
- /package/{components → build/components}/widgets/ProgressBar.d.ts +0 -0
- /package/{components → build/components}/widgets/ProgressBar.d.ts.map +0 -0
- /package/{components → build/components}/widgets/Spinner.d.ts +0 -0
- /package/{components → build/components}/widgets/Spinner.d.ts.map +0 -0
- /package/{components → build/components}/widgets/StatusIndicator.d.ts +0 -0
- /package/{components → build/components}/widgets/StatusIndicator.d.ts.map +0 -0
- /package/{components → build/components}/widgets/Tag.d.ts +0 -0
- /package/{components → build/components}/widgets/Tag.d.ts.map +0 -0
- /package/{components → build/components}/widgets/index.d.ts +0 -0
- /package/{components → build/components}/widgets/index.d.ts.map +0 -0
- /package/{helpers → build/helpers}/index.d.ts +0 -0
- /package/{helpers → build/helpers}/index.d.ts.map +0 -0
- /package/{helpers → build/helpers}/textLayout.d.ts +0 -0
- /package/{helpers → build/helpers}/textLayout.d.ts.map +0 -0
- /package/{helpers → build/helpers}/useColumnsWithFilters.d.ts +0 -0
- /package/{helpers → build/helpers}/useColumnsWithFilters.d.ts.map +0 -0
- /package/{i18n.d.ts → build/i18n.d.ts} +0 -0
- /package/{i18n.d.ts.map → build/i18n.d.ts.map} +0 -0
- /package/{icons → build/icons}/icons.d.ts +0 -0
- /package/{icons → build/icons}/icons.d.ts.map +0 -0
- /package/{index.d.ts → build/index.d.ts} +0 -0
- /package/{index.d.ts.map → build/index.d.ts.map} +0 -0
|
@@ -0,0 +1,2062 @@
|
|
|
1
|
+
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
|
+
|
|
3
|
+
exports[`PickerModal should be rendered correctly 1`] = `
|
|
4
|
+
<div
|
|
5
|
+
className="container modalBlocker"
|
|
6
|
+
style={
|
|
7
|
+
Object {
|
|
8
|
+
"zIndex": 1,
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
>
|
|
12
|
+
<div
|
|
13
|
+
aria-label="Click to close a modal"
|
|
14
|
+
className="uui-modal-blocker"
|
|
15
|
+
onClick={[Function]}
|
|
16
|
+
/>
|
|
17
|
+
<div
|
|
18
|
+
aria-modal={true}
|
|
19
|
+
className="uui-modal-window root modal container"
|
|
20
|
+
role="dialog"
|
|
21
|
+
style={
|
|
22
|
+
Object {
|
|
23
|
+
"height": "700px",
|
|
24
|
+
"width": "600px",
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
>
|
|
28
|
+
<div
|
|
29
|
+
className="uui-flex-row root size-36 padding-24 vPadding-12 spacing-12 root modalHeader container align-items-center"
|
|
30
|
+
style={
|
|
31
|
+
Object {
|
|
32
|
+
"columnGap": undefined,
|
|
33
|
+
"rowGap": undefined,
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
>
|
|
37
|
+
<div
|
|
38
|
+
className="root uui-text uui-color-primary uui-font-weight-600 uui-font-style-normal uui-typography line-height-24 font-size-18 v-padding-12 container"
|
|
39
|
+
>
|
|
40
|
+
Please select
|
|
41
|
+
</div>
|
|
42
|
+
<div
|
|
43
|
+
className="flexSpacer"
|
|
44
|
+
/>
|
|
45
|
+
<div
|
|
46
|
+
className="flexCell"
|
|
47
|
+
style={
|
|
48
|
+
Object {
|
|
49
|
+
"alignSelf": undefined,
|
|
50
|
+
"flexBasis": "auto",
|
|
51
|
+
"flexGrow": undefined,
|
|
52
|
+
"flexShrink": 0,
|
|
53
|
+
"minWidth": 0,
|
|
54
|
+
"textAlign": undefined,
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
>
|
|
58
|
+
<button
|
|
59
|
+
aria-label="Close modal"
|
|
60
|
+
className="container uui-button-box uui-enabled -clickable uui-icon_button uui-color-neutral root"
|
|
61
|
+
onClick={[Function]}
|
|
62
|
+
tabIndex={0}
|
|
63
|
+
type="button"
|
|
64
|
+
>
|
|
65
|
+
<div
|
|
66
|
+
className="container uui-icon uui-enabled"
|
|
67
|
+
style={Object {}}
|
|
68
|
+
>
|
|
69
|
+
<svg
|
|
70
|
+
className=""
|
|
71
|
+
/>
|
|
72
|
+
</div>
|
|
73
|
+
</button>
|
|
74
|
+
</div>
|
|
75
|
+
</div>
|
|
76
|
+
<div
|
|
77
|
+
className="flexCell subHeaderWrapper"
|
|
78
|
+
style={
|
|
79
|
+
Object {
|
|
80
|
+
"alignSelf": undefined,
|
|
81
|
+
"flexBasis": "0",
|
|
82
|
+
"flexGrow": undefined,
|
|
83
|
+
"flexShrink": undefined,
|
|
84
|
+
"minWidth": 0,
|
|
85
|
+
"textAlign": undefined,
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
>
|
|
89
|
+
<div
|
|
90
|
+
className="uui-flex-row root size-36 vPadding-24 container align-items-center"
|
|
91
|
+
style={
|
|
92
|
+
Object {
|
|
93
|
+
"columnGap": undefined,
|
|
94
|
+
"rowGap": undefined,
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
>
|
|
98
|
+
<div
|
|
99
|
+
className="container uui-input-box -clickable root size-36 mode-form"
|
|
100
|
+
onFocus={[Function]}
|
|
101
|
+
tabIndex={-1}
|
|
102
|
+
>
|
|
103
|
+
<div
|
|
104
|
+
className="container uui-icon uui-enabled"
|
|
105
|
+
style={Object {}}
|
|
106
|
+
>
|
|
107
|
+
<svg
|
|
108
|
+
className=""
|
|
109
|
+
/>
|
|
110
|
+
</div>
|
|
111
|
+
<input
|
|
112
|
+
aria-invalid={false}
|
|
113
|
+
autoFocus={true}
|
|
114
|
+
className="uui-input"
|
|
115
|
+
inputMode="search"
|
|
116
|
+
onBlur={[Function]}
|
|
117
|
+
onChange={[Function]}
|
|
118
|
+
onFocus={[Function]}
|
|
119
|
+
onKeyDown={[Function]}
|
|
120
|
+
placeholder="Type text for quick search"
|
|
121
|
+
tabIndex={0}
|
|
122
|
+
type="search"
|
|
123
|
+
value=""
|
|
124
|
+
/>
|
|
125
|
+
</div>
|
|
126
|
+
</div>
|
|
127
|
+
</div>
|
|
128
|
+
<div
|
|
129
|
+
className="uui-flex-row root size-36 body modal undefined container align-items-center"
|
|
130
|
+
style={
|
|
131
|
+
Object {
|
|
132
|
+
"columnGap": undefined,
|
|
133
|
+
"maxHeight": undefined,
|
|
134
|
+
"maxWidth": undefined,
|
|
135
|
+
"rowGap": undefined,
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
>
|
|
139
|
+
<div
|
|
140
|
+
className="root root uui-scroll-bars uui-shadow-top uui-shadow-bottom scrollContainer"
|
|
141
|
+
style={
|
|
142
|
+
Object {
|
|
143
|
+
"display": "flex",
|
|
144
|
+
"height": "100%",
|
|
145
|
+
"overflow": "hidden",
|
|
146
|
+
"position": "relative",
|
|
147
|
+
"width": "100%",
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
>
|
|
151
|
+
<div
|
|
152
|
+
style={
|
|
153
|
+
Object {
|
|
154
|
+
"WebkitOverflowScrolling": "touch",
|
|
155
|
+
"bottom": 0,
|
|
156
|
+
"display": "flex",
|
|
157
|
+
"flex": "1 1 auto",
|
|
158
|
+
"flexDirection": "column",
|
|
159
|
+
"left": 0,
|
|
160
|
+
"marginBottom": 0,
|
|
161
|
+
"marginRight": 0,
|
|
162
|
+
"overflow": "scroll",
|
|
163
|
+
"position": "relative",
|
|
164
|
+
"right": 0,
|
|
165
|
+
"top": 0,
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
>
|
|
169
|
+
<div
|
|
170
|
+
className="listContainer"
|
|
171
|
+
style={
|
|
172
|
+
Object {
|
|
173
|
+
"minHeight": "0px",
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
>
|
|
177
|
+
<div
|
|
178
|
+
style={
|
|
179
|
+
Object {
|
|
180
|
+
"marginTop": 0,
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
>
|
|
184
|
+
<div
|
|
185
|
+
aria-posinset={1}
|
|
186
|
+
aria-selected={false}
|
|
187
|
+
className="uui-flex-row pickerRow container -clickable align-items-center"
|
|
188
|
+
onClick={[Function]}
|
|
189
|
+
role="option"
|
|
190
|
+
style={
|
|
191
|
+
Object {
|
|
192
|
+
"columnGap": undefined,
|
|
193
|
+
"rowGap": undefined,
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
>
|
|
197
|
+
<div
|
|
198
|
+
className="flexCell cell data-picker-cell size-36 padding-24 padding-left-24 align-widgets-top"
|
|
199
|
+
role="cell"
|
|
200
|
+
style={
|
|
201
|
+
Object {
|
|
202
|
+
"alignSelf": undefined,
|
|
203
|
+
"flexBasis": "0",
|
|
204
|
+
"flexGrow": 1,
|
|
205
|
+
"flexShrink": undefined,
|
|
206
|
+
"minWidth": 0,
|
|
207
|
+
"textAlign": undefined,
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
>
|
|
211
|
+
<div
|
|
212
|
+
className="contentWrapper"
|
|
213
|
+
>
|
|
214
|
+
<div
|
|
215
|
+
className="renderItem"
|
|
216
|
+
>
|
|
217
|
+
<div
|
|
218
|
+
className="flexCell root uui-typography"
|
|
219
|
+
style={
|
|
220
|
+
Object {
|
|
221
|
+
"alignSelf": undefined,
|
|
222
|
+
"flexBasis": "auto",
|
|
223
|
+
"flexGrow": undefined,
|
|
224
|
+
"flexShrink": undefined,
|
|
225
|
+
"minWidth": 0,
|
|
226
|
+
"textAlign": undefined,
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
>
|
|
230
|
+
<div
|
|
231
|
+
className="uui-flex-row root size-36 spacing-12 container align-items-center"
|
|
232
|
+
style={
|
|
233
|
+
Object {
|
|
234
|
+
"columnGap": undefined,
|
|
235
|
+
"rowGap": undefined,
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
>
|
|
239
|
+
<div
|
|
240
|
+
className="flexCell"
|
|
241
|
+
style={
|
|
242
|
+
Object {
|
|
243
|
+
"alignSelf": undefined,
|
|
244
|
+
"flexBasis": "auto",
|
|
245
|
+
"flexGrow": undefined,
|
|
246
|
+
"flexShrink": undefined,
|
|
247
|
+
"minWidth": 0,
|
|
248
|
+
"textAlign": undefined,
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
>
|
|
252
|
+
<div
|
|
253
|
+
className="root uui-text uui-color-primary uui-font-weight-400 uui-font-style-normal uui-typography line-height-18 font-size-14 v-padding-9 text container"
|
|
254
|
+
>
|
|
255
|
+
Elementary
|
|
256
|
+
</div>
|
|
257
|
+
</div>
|
|
258
|
+
</div>
|
|
259
|
+
</div>
|
|
260
|
+
<div
|
|
261
|
+
className="flexSpacer"
|
|
262
|
+
/>
|
|
263
|
+
</div>
|
|
264
|
+
</div>
|
|
265
|
+
</div>
|
|
266
|
+
</div>
|
|
267
|
+
<div
|
|
268
|
+
aria-posinset={2}
|
|
269
|
+
aria-selected={false}
|
|
270
|
+
className="uui-flex-row pickerRow container -clickable align-items-center"
|
|
271
|
+
onClick={[Function]}
|
|
272
|
+
role="option"
|
|
273
|
+
style={
|
|
274
|
+
Object {
|
|
275
|
+
"columnGap": undefined,
|
|
276
|
+
"rowGap": undefined,
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
>
|
|
280
|
+
<div
|
|
281
|
+
className="flexCell cell data-picker-cell size-36 padding-24 padding-left-24 align-widgets-top"
|
|
282
|
+
role="cell"
|
|
283
|
+
style={
|
|
284
|
+
Object {
|
|
285
|
+
"alignSelf": undefined,
|
|
286
|
+
"flexBasis": "0",
|
|
287
|
+
"flexGrow": 1,
|
|
288
|
+
"flexShrink": undefined,
|
|
289
|
+
"minWidth": 0,
|
|
290
|
+
"textAlign": undefined,
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
>
|
|
294
|
+
<div
|
|
295
|
+
className="contentWrapper"
|
|
296
|
+
>
|
|
297
|
+
<div
|
|
298
|
+
className="renderItem"
|
|
299
|
+
>
|
|
300
|
+
<div
|
|
301
|
+
className="flexCell root uui-typography"
|
|
302
|
+
style={
|
|
303
|
+
Object {
|
|
304
|
+
"alignSelf": undefined,
|
|
305
|
+
"flexBasis": "auto",
|
|
306
|
+
"flexGrow": undefined,
|
|
307
|
+
"flexShrink": undefined,
|
|
308
|
+
"minWidth": 0,
|
|
309
|
+
"textAlign": undefined,
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
>
|
|
313
|
+
<div
|
|
314
|
+
className="uui-flex-row root size-36 spacing-12 container align-items-center"
|
|
315
|
+
style={
|
|
316
|
+
Object {
|
|
317
|
+
"columnGap": undefined,
|
|
318
|
+
"rowGap": undefined,
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
>
|
|
322
|
+
<div
|
|
323
|
+
className="flexCell"
|
|
324
|
+
style={
|
|
325
|
+
Object {
|
|
326
|
+
"alignSelf": undefined,
|
|
327
|
+
"flexBasis": "auto",
|
|
328
|
+
"flexGrow": undefined,
|
|
329
|
+
"flexShrink": undefined,
|
|
330
|
+
"minWidth": 0,
|
|
331
|
+
"textAlign": undefined,
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
>
|
|
335
|
+
<div
|
|
336
|
+
className="root uui-text uui-color-primary uui-font-weight-400 uui-font-style-normal uui-typography line-height-18 font-size-14 v-padding-9 text container"
|
|
337
|
+
>
|
|
338
|
+
Elementary+
|
|
339
|
+
</div>
|
|
340
|
+
</div>
|
|
341
|
+
</div>
|
|
342
|
+
</div>
|
|
343
|
+
<div
|
|
344
|
+
className="flexSpacer"
|
|
345
|
+
/>
|
|
346
|
+
</div>
|
|
347
|
+
</div>
|
|
348
|
+
</div>
|
|
349
|
+
</div>
|
|
350
|
+
</div>
|
|
351
|
+
</div>
|
|
352
|
+
</div>
|
|
353
|
+
<div
|
|
354
|
+
className="container uui-blocker-container root"
|
|
355
|
+
style={
|
|
356
|
+
Object {
|
|
357
|
+
"minHeight": undefined,
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
>
|
|
361
|
+
<div />
|
|
362
|
+
</div>
|
|
363
|
+
<div
|
|
364
|
+
className="uui-track-horizontal"
|
|
365
|
+
style={
|
|
366
|
+
Object {
|
|
367
|
+
"display": "none",
|
|
368
|
+
"height": 6,
|
|
369
|
+
"position": "absolute",
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
>
|
|
373
|
+
<div
|
|
374
|
+
className="uui-thumb-horizontal"
|
|
375
|
+
/>
|
|
376
|
+
</div>
|
|
377
|
+
<div
|
|
378
|
+
className="uui-track-vertical"
|
|
379
|
+
style={
|
|
380
|
+
Object {
|
|
381
|
+
"display": "none",
|
|
382
|
+
"position": "absolute",
|
|
383
|
+
"width": 6,
|
|
384
|
+
}
|
|
385
|
+
}
|
|
386
|
+
>
|
|
387
|
+
<div
|
|
388
|
+
className="uui-thumb-vertical"
|
|
389
|
+
/>
|
|
390
|
+
</div>
|
|
391
|
+
</div>
|
|
392
|
+
</div>
|
|
393
|
+
<div
|
|
394
|
+
className="uui-flex-row root size-36 padding-24 vPadding-24 spacing-12 root modalFooter container align-items-center"
|
|
395
|
+
style={
|
|
396
|
+
Object {
|
|
397
|
+
"columnGap": undefined,
|
|
398
|
+
"rowGap": undefined,
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
>
|
|
402
|
+
<div
|
|
403
|
+
className="flexSpacer"
|
|
404
|
+
/>
|
|
405
|
+
<button
|
|
406
|
+
className="container uui-button-box uui-enabled -clickable root uui-button uui-fill-outline uui-color-secondary uui-size-36"
|
|
407
|
+
onClick={[Function]}
|
|
408
|
+
tabIndex={0}
|
|
409
|
+
type="button"
|
|
410
|
+
>
|
|
411
|
+
<div
|
|
412
|
+
className="uui-caption"
|
|
413
|
+
>
|
|
414
|
+
Cancel
|
|
415
|
+
</div>
|
|
416
|
+
</button>
|
|
417
|
+
<button
|
|
418
|
+
className="container uui-button-box uui-enabled -clickable root uui-button uui-fill-solid uui-color-accent uui-size-36"
|
|
419
|
+
onClick={[Function]}
|
|
420
|
+
tabIndex={0}
|
|
421
|
+
type="button"
|
|
422
|
+
>
|
|
423
|
+
<div
|
|
424
|
+
className="uui-caption"
|
|
425
|
+
>
|
|
426
|
+
Select
|
|
427
|
+
</div>
|
|
428
|
+
</button>
|
|
429
|
+
</div>
|
|
430
|
+
</div>
|
|
431
|
+
</div>
|
|
432
|
+
`;
|
|
433
|
+
|
|
434
|
+
exports[`PickerModal should be rendered correctly with maximum props 1`] = `
|
|
435
|
+
<div
|
|
436
|
+
className="container modalBlocker"
|
|
437
|
+
style={
|
|
438
|
+
Object {
|
|
439
|
+
"zIndex": 1,
|
|
440
|
+
}
|
|
441
|
+
}
|
|
442
|
+
>
|
|
443
|
+
<div
|
|
444
|
+
aria-label="Click to close a modal"
|
|
445
|
+
className="uui-modal-blocker"
|
|
446
|
+
onClick={[Function]}
|
|
447
|
+
/>
|
|
448
|
+
<div
|
|
449
|
+
aria-modal={true}
|
|
450
|
+
className="uui-modal-window root modal container"
|
|
451
|
+
role="dialog"
|
|
452
|
+
style={
|
|
453
|
+
Object {
|
|
454
|
+
"height": "700px",
|
|
455
|
+
"width": "600px",
|
|
456
|
+
}
|
|
457
|
+
}
|
|
458
|
+
>
|
|
459
|
+
<div
|
|
460
|
+
className="uui-flex-row root size-36 padding-24 vPadding-12 spacing-12 root modalHeader container align-items-center"
|
|
461
|
+
style={
|
|
462
|
+
Object {
|
|
463
|
+
"columnGap": undefined,
|
|
464
|
+
"rowGap": undefined,
|
|
465
|
+
}
|
|
466
|
+
}
|
|
467
|
+
>
|
|
468
|
+
<div
|
|
469
|
+
className="root uui-text uui-color-primary uui-font-weight-600 uui-font-style-normal uui-typography line-height-24 font-size-18 v-padding-12 container"
|
|
470
|
+
>
|
|
471
|
+
Please select
|
|
472
|
+
</div>
|
|
473
|
+
<div
|
|
474
|
+
className="flexSpacer"
|
|
475
|
+
/>
|
|
476
|
+
<div
|
|
477
|
+
className="flexCell"
|
|
478
|
+
style={
|
|
479
|
+
Object {
|
|
480
|
+
"alignSelf": undefined,
|
|
481
|
+
"flexBasis": "auto",
|
|
482
|
+
"flexGrow": undefined,
|
|
483
|
+
"flexShrink": 0,
|
|
484
|
+
"minWidth": 0,
|
|
485
|
+
"textAlign": undefined,
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
|
+
>
|
|
489
|
+
<button
|
|
490
|
+
aria-label="Close modal"
|
|
491
|
+
className="container uui-button-box uui-enabled -clickable uui-icon_button uui-color-neutral root"
|
|
492
|
+
onClick={[Function]}
|
|
493
|
+
tabIndex={0}
|
|
494
|
+
type="button"
|
|
495
|
+
>
|
|
496
|
+
<div
|
|
497
|
+
className="container uui-icon uui-enabled"
|
|
498
|
+
style={Object {}}
|
|
499
|
+
>
|
|
500
|
+
<svg
|
|
501
|
+
className=""
|
|
502
|
+
/>
|
|
503
|
+
</div>
|
|
504
|
+
</button>
|
|
505
|
+
</div>
|
|
506
|
+
</div>
|
|
507
|
+
<div
|
|
508
|
+
className="flexCell subHeaderWrapper"
|
|
509
|
+
style={
|
|
510
|
+
Object {
|
|
511
|
+
"alignSelf": undefined,
|
|
512
|
+
"flexBasis": "0",
|
|
513
|
+
"flexGrow": undefined,
|
|
514
|
+
"flexShrink": undefined,
|
|
515
|
+
"minWidth": 0,
|
|
516
|
+
"textAlign": undefined,
|
|
517
|
+
}
|
|
518
|
+
}
|
|
519
|
+
>
|
|
520
|
+
<div
|
|
521
|
+
className="uui-flex-row root size-36 vPadding-24 container align-items-center"
|
|
522
|
+
style={
|
|
523
|
+
Object {
|
|
524
|
+
"columnGap": undefined,
|
|
525
|
+
"rowGap": undefined,
|
|
526
|
+
}
|
|
527
|
+
}
|
|
528
|
+
>
|
|
529
|
+
<div
|
|
530
|
+
className="container uui-input-box -clickable root size-36 mode-form"
|
|
531
|
+
onFocus={[Function]}
|
|
532
|
+
tabIndex={-1}
|
|
533
|
+
>
|
|
534
|
+
<div
|
|
535
|
+
className="container uui-icon uui-enabled"
|
|
536
|
+
style={Object {}}
|
|
537
|
+
>
|
|
538
|
+
<svg
|
|
539
|
+
className=""
|
|
540
|
+
/>
|
|
541
|
+
</div>
|
|
542
|
+
<input
|
|
543
|
+
aria-invalid={false}
|
|
544
|
+
autoFocus={true}
|
|
545
|
+
className="uui-input"
|
|
546
|
+
inputMode="search"
|
|
547
|
+
onBlur={[Function]}
|
|
548
|
+
onChange={[Function]}
|
|
549
|
+
onFocus={[Function]}
|
|
550
|
+
onKeyDown={[Function]}
|
|
551
|
+
placeholder="Type text for quick search"
|
|
552
|
+
tabIndex={0}
|
|
553
|
+
type="search"
|
|
554
|
+
value=""
|
|
555
|
+
/>
|
|
556
|
+
</div>
|
|
557
|
+
</div>
|
|
558
|
+
<label
|
|
559
|
+
className="uui-switch container root size-18 uui-color-primary switch uui-disabled"
|
|
560
|
+
>
|
|
561
|
+
<div
|
|
562
|
+
className="uui-switch-body"
|
|
563
|
+
>
|
|
564
|
+
<input
|
|
565
|
+
aria-checked={false}
|
|
566
|
+
aria-disabled={true}
|
|
567
|
+
checked={false}
|
|
568
|
+
disabled={true}
|
|
569
|
+
onChange={[Function]}
|
|
570
|
+
role="switch"
|
|
571
|
+
type="checkbox"
|
|
572
|
+
/>
|
|
573
|
+
<div
|
|
574
|
+
className="uui-switch-toggler"
|
|
575
|
+
/>
|
|
576
|
+
</div>
|
|
577
|
+
<div
|
|
578
|
+
className="uui-input-label"
|
|
579
|
+
>
|
|
580
|
+
Show only selected
|
|
581
|
+
</div>
|
|
582
|
+
</label>
|
|
583
|
+
</div>
|
|
584
|
+
<div
|
|
585
|
+
className="uui-flex-row root size-36 body modal undefined container align-items-center"
|
|
586
|
+
style={
|
|
587
|
+
Object {
|
|
588
|
+
"columnGap": undefined,
|
|
589
|
+
"maxHeight": undefined,
|
|
590
|
+
"maxWidth": undefined,
|
|
591
|
+
"rowGap": undefined,
|
|
592
|
+
}
|
|
593
|
+
}
|
|
594
|
+
>
|
|
595
|
+
<div
|
|
596
|
+
className="root root uui-scroll-bars uui-shadow-top uui-shadow-bottom scrollContainer"
|
|
597
|
+
style={
|
|
598
|
+
Object {
|
|
599
|
+
"display": "flex",
|
|
600
|
+
"height": "100%",
|
|
601
|
+
"overflow": "hidden",
|
|
602
|
+
"position": "relative",
|
|
603
|
+
"width": "100%",
|
|
604
|
+
}
|
|
605
|
+
}
|
|
606
|
+
>
|
|
607
|
+
<div
|
|
608
|
+
style={
|
|
609
|
+
Object {
|
|
610
|
+
"WebkitOverflowScrolling": "touch",
|
|
611
|
+
"bottom": 0,
|
|
612
|
+
"display": "flex",
|
|
613
|
+
"flex": "1 1 auto",
|
|
614
|
+
"flexDirection": "column",
|
|
615
|
+
"left": 0,
|
|
616
|
+
"marginBottom": 0,
|
|
617
|
+
"marginRight": 0,
|
|
618
|
+
"overflow": "scroll",
|
|
619
|
+
"position": "relative",
|
|
620
|
+
"right": 0,
|
|
621
|
+
"top": 0,
|
|
622
|
+
}
|
|
623
|
+
}
|
|
624
|
+
>
|
|
625
|
+
<div
|
|
626
|
+
className="listContainer"
|
|
627
|
+
style={
|
|
628
|
+
Object {
|
|
629
|
+
"minHeight": "0px",
|
|
630
|
+
}
|
|
631
|
+
}
|
|
632
|
+
>
|
|
633
|
+
<div
|
|
634
|
+
style={
|
|
635
|
+
Object {
|
|
636
|
+
"marginTop": 0,
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
>
|
|
640
|
+
<div
|
|
641
|
+
aria-checked={false}
|
|
642
|
+
aria-posinset={1}
|
|
643
|
+
className="uui-flex-row pickerRow container -clickable align-items-center"
|
|
644
|
+
onClick={[Function]}
|
|
645
|
+
role="option"
|
|
646
|
+
style={
|
|
647
|
+
Object {
|
|
648
|
+
"columnGap": undefined,
|
|
649
|
+
"rowGap": undefined,
|
|
650
|
+
}
|
|
651
|
+
}
|
|
652
|
+
>
|
|
653
|
+
<div
|
|
654
|
+
className="flexCell cell data-picker-cell size-36 padding-24 padding-left-24 align-widgets-top"
|
|
655
|
+
role="cell"
|
|
656
|
+
style={
|
|
657
|
+
Object {
|
|
658
|
+
"alignSelf": undefined,
|
|
659
|
+
"flexBasis": "0",
|
|
660
|
+
"flexGrow": 1,
|
|
661
|
+
"flexShrink": undefined,
|
|
662
|
+
"minWidth": 0,
|
|
663
|
+
"textAlign": undefined,
|
|
664
|
+
}
|
|
665
|
+
}
|
|
666
|
+
>
|
|
667
|
+
<label
|
|
668
|
+
className="container uui-checkbox-container root size-18 mode-form uui-color-primary checkbox -clickable"
|
|
669
|
+
>
|
|
670
|
+
<div
|
|
671
|
+
className="uui-checkbox"
|
|
672
|
+
>
|
|
673
|
+
<input
|
|
674
|
+
aria-checked={false}
|
|
675
|
+
checked={false}
|
|
676
|
+
onChange={[Function]}
|
|
677
|
+
tabIndex={0}
|
|
678
|
+
type="checkbox"
|
|
679
|
+
/>
|
|
680
|
+
</div>
|
|
681
|
+
</label>
|
|
682
|
+
<div
|
|
683
|
+
className="contentWrapper"
|
|
684
|
+
>
|
|
685
|
+
<div
|
|
686
|
+
className="renderItem"
|
|
687
|
+
>
|
|
688
|
+
<div
|
|
689
|
+
className="flexCell root uui-typography"
|
|
690
|
+
style={
|
|
691
|
+
Object {
|
|
692
|
+
"alignSelf": undefined,
|
|
693
|
+
"flexBasis": "auto",
|
|
694
|
+
"flexGrow": undefined,
|
|
695
|
+
"flexShrink": undefined,
|
|
696
|
+
"minWidth": 0,
|
|
697
|
+
"textAlign": undefined,
|
|
698
|
+
}
|
|
699
|
+
}
|
|
700
|
+
>
|
|
701
|
+
<div
|
|
702
|
+
className="uui-flex-row root size-36 spacing-12 container align-items-center"
|
|
703
|
+
style={
|
|
704
|
+
Object {
|
|
705
|
+
"columnGap": undefined,
|
|
706
|
+
"rowGap": undefined,
|
|
707
|
+
}
|
|
708
|
+
}
|
|
709
|
+
>
|
|
710
|
+
<div
|
|
711
|
+
className="flexCell"
|
|
712
|
+
style={
|
|
713
|
+
Object {
|
|
714
|
+
"alignSelf": undefined,
|
|
715
|
+
"flexBasis": "auto",
|
|
716
|
+
"flexGrow": undefined,
|
|
717
|
+
"flexShrink": undefined,
|
|
718
|
+
"minWidth": 0,
|
|
719
|
+
"textAlign": undefined,
|
|
720
|
+
}
|
|
721
|
+
}
|
|
722
|
+
>
|
|
723
|
+
<div
|
|
724
|
+
className="root uui-text uui-color-primary uui-font-weight-400 uui-font-style-normal uui-typography line-height-18 font-size-14 v-padding-9 text container"
|
|
725
|
+
>
|
|
726
|
+
C2
|
|
727
|
+
</div>
|
|
728
|
+
</div>
|
|
729
|
+
</div>
|
|
730
|
+
</div>
|
|
731
|
+
<div
|
|
732
|
+
className="flexSpacer"
|
|
733
|
+
/>
|
|
734
|
+
</div>
|
|
735
|
+
</div>
|
|
736
|
+
</div>
|
|
737
|
+
</div>
|
|
738
|
+
<div
|
|
739
|
+
aria-checked={false}
|
|
740
|
+
aria-posinset={2}
|
|
741
|
+
className="uui-flex-row pickerRow container -clickable align-items-center"
|
|
742
|
+
onClick={[Function]}
|
|
743
|
+
role="option"
|
|
744
|
+
style={
|
|
745
|
+
Object {
|
|
746
|
+
"columnGap": undefined,
|
|
747
|
+
"rowGap": undefined,
|
|
748
|
+
}
|
|
749
|
+
}
|
|
750
|
+
>
|
|
751
|
+
<div
|
|
752
|
+
className="flexCell cell data-picker-cell size-36 padding-24 padding-left-24 align-widgets-top"
|
|
753
|
+
role="cell"
|
|
754
|
+
style={
|
|
755
|
+
Object {
|
|
756
|
+
"alignSelf": undefined,
|
|
757
|
+
"flexBasis": "0",
|
|
758
|
+
"flexGrow": 1,
|
|
759
|
+
"flexShrink": undefined,
|
|
760
|
+
"minWidth": 0,
|
|
761
|
+
"textAlign": undefined,
|
|
762
|
+
}
|
|
763
|
+
}
|
|
764
|
+
>
|
|
765
|
+
<label
|
|
766
|
+
className="container uui-checkbox-container root size-18 mode-form uui-color-primary checkbox -clickable"
|
|
767
|
+
>
|
|
768
|
+
<div
|
|
769
|
+
className="uui-checkbox"
|
|
770
|
+
>
|
|
771
|
+
<input
|
|
772
|
+
aria-checked={false}
|
|
773
|
+
checked={false}
|
|
774
|
+
onChange={[Function]}
|
|
775
|
+
tabIndex={0}
|
|
776
|
+
type="checkbox"
|
|
777
|
+
/>
|
|
778
|
+
</div>
|
|
779
|
+
</label>
|
|
780
|
+
<div
|
|
781
|
+
className="contentWrapper"
|
|
782
|
+
>
|
|
783
|
+
<div
|
|
784
|
+
className="renderItem"
|
|
785
|
+
>
|
|
786
|
+
<div
|
|
787
|
+
className="flexCell root uui-typography"
|
|
788
|
+
style={
|
|
789
|
+
Object {
|
|
790
|
+
"alignSelf": undefined,
|
|
791
|
+
"flexBasis": "auto",
|
|
792
|
+
"flexGrow": undefined,
|
|
793
|
+
"flexShrink": undefined,
|
|
794
|
+
"minWidth": 0,
|
|
795
|
+
"textAlign": undefined,
|
|
796
|
+
}
|
|
797
|
+
}
|
|
798
|
+
>
|
|
799
|
+
<div
|
|
800
|
+
className="uui-flex-row root size-36 spacing-12 container align-items-center"
|
|
801
|
+
style={
|
|
802
|
+
Object {
|
|
803
|
+
"columnGap": undefined,
|
|
804
|
+
"rowGap": undefined,
|
|
805
|
+
}
|
|
806
|
+
}
|
|
807
|
+
>
|
|
808
|
+
<div
|
|
809
|
+
className="flexCell"
|
|
810
|
+
style={
|
|
811
|
+
Object {
|
|
812
|
+
"alignSelf": undefined,
|
|
813
|
+
"flexBasis": "auto",
|
|
814
|
+
"flexGrow": undefined,
|
|
815
|
+
"flexShrink": undefined,
|
|
816
|
+
"minWidth": 0,
|
|
817
|
+
"textAlign": undefined,
|
|
818
|
+
}
|
|
819
|
+
}
|
|
820
|
+
>
|
|
821
|
+
<div
|
|
822
|
+
className="root uui-text uui-color-primary uui-font-weight-400 uui-font-style-normal uui-typography line-height-18 font-size-14 v-padding-9 text container"
|
|
823
|
+
>
|
|
824
|
+
C1+
|
|
825
|
+
</div>
|
|
826
|
+
</div>
|
|
827
|
+
</div>
|
|
828
|
+
</div>
|
|
829
|
+
<div
|
|
830
|
+
className="flexSpacer"
|
|
831
|
+
/>
|
|
832
|
+
</div>
|
|
833
|
+
</div>
|
|
834
|
+
</div>
|
|
835
|
+
</div>
|
|
836
|
+
<div
|
|
837
|
+
aria-checked={false}
|
|
838
|
+
aria-posinset={3}
|
|
839
|
+
className="uui-flex-row pickerRow container -clickable align-items-center"
|
|
840
|
+
onClick={[Function]}
|
|
841
|
+
role="option"
|
|
842
|
+
style={
|
|
843
|
+
Object {
|
|
844
|
+
"columnGap": undefined,
|
|
845
|
+
"rowGap": undefined,
|
|
846
|
+
}
|
|
847
|
+
}
|
|
848
|
+
>
|
|
849
|
+
<div
|
|
850
|
+
className="flexCell cell data-picker-cell size-36 padding-24 padding-left-24 align-widgets-top"
|
|
851
|
+
role="cell"
|
|
852
|
+
style={
|
|
853
|
+
Object {
|
|
854
|
+
"alignSelf": undefined,
|
|
855
|
+
"flexBasis": "0",
|
|
856
|
+
"flexGrow": 1,
|
|
857
|
+
"flexShrink": undefined,
|
|
858
|
+
"minWidth": 0,
|
|
859
|
+
"textAlign": undefined,
|
|
860
|
+
}
|
|
861
|
+
}
|
|
862
|
+
>
|
|
863
|
+
<label
|
|
864
|
+
className="container uui-checkbox-container root size-18 mode-form uui-color-primary checkbox -clickable"
|
|
865
|
+
>
|
|
866
|
+
<div
|
|
867
|
+
className="uui-checkbox"
|
|
868
|
+
>
|
|
869
|
+
<input
|
|
870
|
+
aria-checked={false}
|
|
871
|
+
checked={false}
|
|
872
|
+
onChange={[Function]}
|
|
873
|
+
tabIndex={0}
|
|
874
|
+
type="checkbox"
|
|
875
|
+
/>
|
|
876
|
+
</div>
|
|
877
|
+
</label>
|
|
878
|
+
<div
|
|
879
|
+
className="contentWrapper"
|
|
880
|
+
>
|
|
881
|
+
<div
|
|
882
|
+
className="renderItem"
|
|
883
|
+
>
|
|
884
|
+
<div
|
|
885
|
+
className="flexCell root uui-typography"
|
|
886
|
+
style={
|
|
887
|
+
Object {
|
|
888
|
+
"alignSelf": undefined,
|
|
889
|
+
"flexBasis": "auto",
|
|
890
|
+
"flexGrow": undefined,
|
|
891
|
+
"flexShrink": undefined,
|
|
892
|
+
"minWidth": 0,
|
|
893
|
+
"textAlign": undefined,
|
|
894
|
+
}
|
|
895
|
+
}
|
|
896
|
+
>
|
|
897
|
+
<div
|
|
898
|
+
className="uui-flex-row root size-36 spacing-12 container align-items-center"
|
|
899
|
+
style={
|
|
900
|
+
Object {
|
|
901
|
+
"columnGap": undefined,
|
|
902
|
+
"rowGap": undefined,
|
|
903
|
+
}
|
|
904
|
+
}
|
|
905
|
+
>
|
|
906
|
+
<div
|
|
907
|
+
className="flexCell"
|
|
908
|
+
style={
|
|
909
|
+
Object {
|
|
910
|
+
"alignSelf": undefined,
|
|
911
|
+
"flexBasis": "auto",
|
|
912
|
+
"flexGrow": undefined,
|
|
913
|
+
"flexShrink": undefined,
|
|
914
|
+
"minWidth": 0,
|
|
915
|
+
"textAlign": undefined,
|
|
916
|
+
}
|
|
917
|
+
}
|
|
918
|
+
>
|
|
919
|
+
<div
|
|
920
|
+
className="root uui-text uui-color-primary uui-font-weight-400 uui-font-style-normal uui-typography line-height-18 font-size-14 v-padding-9 text container"
|
|
921
|
+
>
|
|
922
|
+
C1
|
|
923
|
+
</div>
|
|
924
|
+
</div>
|
|
925
|
+
</div>
|
|
926
|
+
</div>
|
|
927
|
+
<div
|
|
928
|
+
className="flexSpacer"
|
|
929
|
+
/>
|
|
930
|
+
</div>
|
|
931
|
+
</div>
|
|
932
|
+
</div>
|
|
933
|
+
</div>
|
|
934
|
+
<div
|
|
935
|
+
aria-checked={false}
|
|
936
|
+
aria-posinset={4}
|
|
937
|
+
className="uui-flex-row pickerRow container -clickable align-items-center"
|
|
938
|
+
onClick={[Function]}
|
|
939
|
+
role="option"
|
|
940
|
+
style={
|
|
941
|
+
Object {
|
|
942
|
+
"columnGap": undefined,
|
|
943
|
+
"rowGap": undefined,
|
|
944
|
+
}
|
|
945
|
+
}
|
|
946
|
+
>
|
|
947
|
+
<div
|
|
948
|
+
className="flexCell cell data-picker-cell size-36 padding-24 padding-left-24 align-widgets-top"
|
|
949
|
+
role="cell"
|
|
950
|
+
style={
|
|
951
|
+
Object {
|
|
952
|
+
"alignSelf": undefined,
|
|
953
|
+
"flexBasis": "0",
|
|
954
|
+
"flexGrow": 1,
|
|
955
|
+
"flexShrink": undefined,
|
|
956
|
+
"minWidth": 0,
|
|
957
|
+
"textAlign": undefined,
|
|
958
|
+
}
|
|
959
|
+
}
|
|
960
|
+
>
|
|
961
|
+
<label
|
|
962
|
+
className="container uui-checkbox-container root size-18 mode-form uui-color-primary checkbox -clickable"
|
|
963
|
+
>
|
|
964
|
+
<div
|
|
965
|
+
className="uui-checkbox"
|
|
966
|
+
>
|
|
967
|
+
<input
|
|
968
|
+
aria-checked={false}
|
|
969
|
+
checked={false}
|
|
970
|
+
onChange={[Function]}
|
|
971
|
+
tabIndex={0}
|
|
972
|
+
type="checkbox"
|
|
973
|
+
/>
|
|
974
|
+
</div>
|
|
975
|
+
</label>
|
|
976
|
+
<div
|
|
977
|
+
className="contentWrapper"
|
|
978
|
+
>
|
|
979
|
+
<div
|
|
980
|
+
className="renderItem"
|
|
981
|
+
>
|
|
982
|
+
<div
|
|
983
|
+
className="flexCell root uui-typography"
|
|
984
|
+
style={
|
|
985
|
+
Object {
|
|
986
|
+
"alignSelf": undefined,
|
|
987
|
+
"flexBasis": "auto",
|
|
988
|
+
"flexGrow": undefined,
|
|
989
|
+
"flexShrink": undefined,
|
|
990
|
+
"minWidth": 0,
|
|
991
|
+
"textAlign": undefined,
|
|
992
|
+
}
|
|
993
|
+
}
|
|
994
|
+
>
|
|
995
|
+
<div
|
|
996
|
+
className="uui-flex-row root size-36 spacing-12 container align-items-center"
|
|
997
|
+
style={
|
|
998
|
+
Object {
|
|
999
|
+
"columnGap": undefined,
|
|
1000
|
+
"rowGap": undefined,
|
|
1001
|
+
}
|
|
1002
|
+
}
|
|
1003
|
+
>
|
|
1004
|
+
<div
|
|
1005
|
+
className="flexCell"
|
|
1006
|
+
style={
|
|
1007
|
+
Object {
|
|
1008
|
+
"alignSelf": undefined,
|
|
1009
|
+
"flexBasis": "auto",
|
|
1010
|
+
"flexGrow": undefined,
|
|
1011
|
+
"flexShrink": undefined,
|
|
1012
|
+
"minWidth": 0,
|
|
1013
|
+
"textAlign": undefined,
|
|
1014
|
+
}
|
|
1015
|
+
}
|
|
1016
|
+
>
|
|
1017
|
+
<div
|
|
1018
|
+
className="root uui-text uui-color-primary uui-font-weight-400 uui-font-style-normal uui-typography line-height-18 font-size-14 v-padding-9 text container"
|
|
1019
|
+
>
|
|
1020
|
+
B2+
|
|
1021
|
+
</div>
|
|
1022
|
+
</div>
|
|
1023
|
+
</div>
|
|
1024
|
+
</div>
|
|
1025
|
+
<div
|
|
1026
|
+
className="flexSpacer"
|
|
1027
|
+
/>
|
|
1028
|
+
</div>
|
|
1029
|
+
</div>
|
|
1030
|
+
</div>
|
|
1031
|
+
</div>
|
|
1032
|
+
<div
|
|
1033
|
+
aria-checked={false}
|
|
1034
|
+
aria-posinset={5}
|
|
1035
|
+
className="uui-flex-row pickerRow container -clickable align-items-center"
|
|
1036
|
+
onClick={[Function]}
|
|
1037
|
+
role="option"
|
|
1038
|
+
style={
|
|
1039
|
+
Object {
|
|
1040
|
+
"columnGap": undefined,
|
|
1041
|
+
"rowGap": undefined,
|
|
1042
|
+
}
|
|
1043
|
+
}
|
|
1044
|
+
>
|
|
1045
|
+
<div
|
|
1046
|
+
className="flexCell cell data-picker-cell size-36 padding-24 padding-left-24 align-widgets-top"
|
|
1047
|
+
role="cell"
|
|
1048
|
+
style={
|
|
1049
|
+
Object {
|
|
1050
|
+
"alignSelf": undefined,
|
|
1051
|
+
"flexBasis": "0",
|
|
1052
|
+
"flexGrow": 1,
|
|
1053
|
+
"flexShrink": undefined,
|
|
1054
|
+
"minWidth": 0,
|
|
1055
|
+
"textAlign": undefined,
|
|
1056
|
+
}
|
|
1057
|
+
}
|
|
1058
|
+
>
|
|
1059
|
+
<label
|
|
1060
|
+
className="container uui-checkbox-container root size-18 mode-form uui-color-primary checkbox -clickable"
|
|
1061
|
+
>
|
|
1062
|
+
<div
|
|
1063
|
+
className="uui-checkbox"
|
|
1064
|
+
>
|
|
1065
|
+
<input
|
|
1066
|
+
aria-checked={false}
|
|
1067
|
+
checked={false}
|
|
1068
|
+
onChange={[Function]}
|
|
1069
|
+
tabIndex={0}
|
|
1070
|
+
type="checkbox"
|
|
1071
|
+
/>
|
|
1072
|
+
</div>
|
|
1073
|
+
</label>
|
|
1074
|
+
<div
|
|
1075
|
+
className="contentWrapper"
|
|
1076
|
+
>
|
|
1077
|
+
<div
|
|
1078
|
+
className="renderItem"
|
|
1079
|
+
>
|
|
1080
|
+
<div
|
|
1081
|
+
className="flexCell root uui-typography"
|
|
1082
|
+
style={
|
|
1083
|
+
Object {
|
|
1084
|
+
"alignSelf": undefined,
|
|
1085
|
+
"flexBasis": "auto",
|
|
1086
|
+
"flexGrow": undefined,
|
|
1087
|
+
"flexShrink": undefined,
|
|
1088
|
+
"minWidth": 0,
|
|
1089
|
+
"textAlign": undefined,
|
|
1090
|
+
}
|
|
1091
|
+
}
|
|
1092
|
+
>
|
|
1093
|
+
<div
|
|
1094
|
+
className="uui-flex-row root size-36 spacing-12 container align-items-center"
|
|
1095
|
+
style={
|
|
1096
|
+
Object {
|
|
1097
|
+
"columnGap": undefined,
|
|
1098
|
+
"rowGap": undefined,
|
|
1099
|
+
}
|
|
1100
|
+
}
|
|
1101
|
+
>
|
|
1102
|
+
<div
|
|
1103
|
+
className="flexCell"
|
|
1104
|
+
style={
|
|
1105
|
+
Object {
|
|
1106
|
+
"alignSelf": undefined,
|
|
1107
|
+
"flexBasis": "auto",
|
|
1108
|
+
"flexGrow": undefined,
|
|
1109
|
+
"flexShrink": undefined,
|
|
1110
|
+
"minWidth": 0,
|
|
1111
|
+
"textAlign": undefined,
|
|
1112
|
+
}
|
|
1113
|
+
}
|
|
1114
|
+
>
|
|
1115
|
+
<div
|
|
1116
|
+
className="root uui-text uui-color-primary uui-font-weight-400 uui-font-style-normal uui-typography line-height-18 font-size-14 v-padding-9 text container"
|
|
1117
|
+
>
|
|
1118
|
+
B2
|
|
1119
|
+
</div>
|
|
1120
|
+
</div>
|
|
1121
|
+
</div>
|
|
1122
|
+
</div>
|
|
1123
|
+
<div
|
|
1124
|
+
className="flexSpacer"
|
|
1125
|
+
/>
|
|
1126
|
+
</div>
|
|
1127
|
+
</div>
|
|
1128
|
+
</div>
|
|
1129
|
+
</div>
|
|
1130
|
+
<div
|
|
1131
|
+
aria-checked={false}
|
|
1132
|
+
aria-posinset={6}
|
|
1133
|
+
className="uui-flex-row pickerRow container -clickable align-items-center"
|
|
1134
|
+
onClick={[Function]}
|
|
1135
|
+
role="option"
|
|
1136
|
+
style={
|
|
1137
|
+
Object {
|
|
1138
|
+
"columnGap": undefined,
|
|
1139
|
+
"rowGap": undefined,
|
|
1140
|
+
}
|
|
1141
|
+
}
|
|
1142
|
+
>
|
|
1143
|
+
<div
|
|
1144
|
+
className="flexCell cell data-picker-cell size-36 padding-24 padding-left-24 align-widgets-top"
|
|
1145
|
+
role="cell"
|
|
1146
|
+
style={
|
|
1147
|
+
Object {
|
|
1148
|
+
"alignSelf": undefined,
|
|
1149
|
+
"flexBasis": "0",
|
|
1150
|
+
"flexGrow": 1,
|
|
1151
|
+
"flexShrink": undefined,
|
|
1152
|
+
"minWidth": 0,
|
|
1153
|
+
"textAlign": undefined,
|
|
1154
|
+
}
|
|
1155
|
+
}
|
|
1156
|
+
>
|
|
1157
|
+
<label
|
|
1158
|
+
className="container uui-checkbox-container root size-18 mode-form uui-color-primary checkbox -clickable"
|
|
1159
|
+
>
|
|
1160
|
+
<div
|
|
1161
|
+
className="uui-checkbox"
|
|
1162
|
+
>
|
|
1163
|
+
<input
|
|
1164
|
+
aria-checked={false}
|
|
1165
|
+
checked={false}
|
|
1166
|
+
onChange={[Function]}
|
|
1167
|
+
tabIndex={0}
|
|
1168
|
+
type="checkbox"
|
|
1169
|
+
/>
|
|
1170
|
+
</div>
|
|
1171
|
+
</label>
|
|
1172
|
+
<div
|
|
1173
|
+
className="contentWrapper"
|
|
1174
|
+
>
|
|
1175
|
+
<div
|
|
1176
|
+
className="renderItem"
|
|
1177
|
+
>
|
|
1178
|
+
<div
|
|
1179
|
+
className="flexCell root uui-typography"
|
|
1180
|
+
style={
|
|
1181
|
+
Object {
|
|
1182
|
+
"alignSelf": undefined,
|
|
1183
|
+
"flexBasis": "auto",
|
|
1184
|
+
"flexGrow": undefined,
|
|
1185
|
+
"flexShrink": undefined,
|
|
1186
|
+
"minWidth": 0,
|
|
1187
|
+
"textAlign": undefined,
|
|
1188
|
+
}
|
|
1189
|
+
}
|
|
1190
|
+
>
|
|
1191
|
+
<div
|
|
1192
|
+
className="uui-flex-row root size-36 spacing-12 container align-items-center"
|
|
1193
|
+
style={
|
|
1194
|
+
Object {
|
|
1195
|
+
"columnGap": undefined,
|
|
1196
|
+
"rowGap": undefined,
|
|
1197
|
+
}
|
|
1198
|
+
}
|
|
1199
|
+
>
|
|
1200
|
+
<div
|
|
1201
|
+
className="flexCell"
|
|
1202
|
+
style={
|
|
1203
|
+
Object {
|
|
1204
|
+
"alignSelf": undefined,
|
|
1205
|
+
"flexBasis": "auto",
|
|
1206
|
+
"flexGrow": undefined,
|
|
1207
|
+
"flexShrink": undefined,
|
|
1208
|
+
"minWidth": 0,
|
|
1209
|
+
"textAlign": undefined,
|
|
1210
|
+
}
|
|
1211
|
+
}
|
|
1212
|
+
>
|
|
1213
|
+
<div
|
|
1214
|
+
className="root uui-text uui-color-primary uui-font-weight-400 uui-font-style-normal uui-typography line-height-18 font-size-14 v-padding-9 text container"
|
|
1215
|
+
>
|
|
1216
|
+
B1+
|
|
1217
|
+
</div>
|
|
1218
|
+
</div>
|
|
1219
|
+
</div>
|
|
1220
|
+
</div>
|
|
1221
|
+
<div
|
|
1222
|
+
className="flexSpacer"
|
|
1223
|
+
/>
|
|
1224
|
+
</div>
|
|
1225
|
+
</div>
|
|
1226
|
+
</div>
|
|
1227
|
+
</div>
|
|
1228
|
+
<div
|
|
1229
|
+
aria-checked={false}
|
|
1230
|
+
aria-posinset={7}
|
|
1231
|
+
className="uui-flex-row pickerRow container -clickable align-items-center"
|
|
1232
|
+
onClick={[Function]}
|
|
1233
|
+
role="option"
|
|
1234
|
+
style={
|
|
1235
|
+
Object {
|
|
1236
|
+
"columnGap": undefined,
|
|
1237
|
+
"rowGap": undefined,
|
|
1238
|
+
}
|
|
1239
|
+
}
|
|
1240
|
+
>
|
|
1241
|
+
<div
|
|
1242
|
+
className="flexCell cell data-picker-cell size-36 padding-24 padding-left-24 align-widgets-top"
|
|
1243
|
+
role="cell"
|
|
1244
|
+
style={
|
|
1245
|
+
Object {
|
|
1246
|
+
"alignSelf": undefined,
|
|
1247
|
+
"flexBasis": "0",
|
|
1248
|
+
"flexGrow": 1,
|
|
1249
|
+
"flexShrink": undefined,
|
|
1250
|
+
"minWidth": 0,
|
|
1251
|
+
"textAlign": undefined,
|
|
1252
|
+
}
|
|
1253
|
+
}
|
|
1254
|
+
>
|
|
1255
|
+
<label
|
|
1256
|
+
className="container uui-checkbox-container root size-18 mode-form uui-color-primary checkbox -clickable"
|
|
1257
|
+
>
|
|
1258
|
+
<div
|
|
1259
|
+
className="uui-checkbox"
|
|
1260
|
+
>
|
|
1261
|
+
<input
|
|
1262
|
+
aria-checked={false}
|
|
1263
|
+
checked={false}
|
|
1264
|
+
onChange={[Function]}
|
|
1265
|
+
tabIndex={0}
|
|
1266
|
+
type="checkbox"
|
|
1267
|
+
/>
|
|
1268
|
+
</div>
|
|
1269
|
+
</label>
|
|
1270
|
+
<div
|
|
1271
|
+
className="contentWrapper"
|
|
1272
|
+
>
|
|
1273
|
+
<div
|
|
1274
|
+
className="renderItem"
|
|
1275
|
+
>
|
|
1276
|
+
<div
|
|
1277
|
+
className="flexCell root uui-typography"
|
|
1278
|
+
style={
|
|
1279
|
+
Object {
|
|
1280
|
+
"alignSelf": undefined,
|
|
1281
|
+
"flexBasis": "auto",
|
|
1282
|
+
"flexGrow": undefined,
|
|
1283
|
+
"flexShrink": undefined,
|
|
1284
|
+
"minWidth": 0,
|
|
1285
|
+
"textAlign": undefined,
|
|
1286
|
+
}
|
|
1287
|
+
}
|
|
1288
|
+
>
|
|
1289
|
+
<div
|
|
1290
|
+
className="uui-flex-row root size-36 spacing-12 container align-items-center"
|
|
1291
|
+
style={
|
|
1292
|
+
Object {
|
|
1293
|
+
"columnGap": undefined,
|
|
1294
|
+
"rowGap": undefined,
|
|
1295
|
+
}
|
|
1296
|
+
}
|
|
1297
|
+
>
|
|
1298
|
+
<div
|
|
1299
|
+
className="flexCell"
|
|
1300
|
+
style={
|
|
1301
|
+
Object {
|
|
1302
|
+
"alignSelf": undefined,
|
|
1303
|
+
"flexBasis": "auto",
|
|
1304
|
+
"flexGrow": undefined,
|
|
1305
|
+
"flexShrink": undefined,
|
|
1306
|
+
"minWidth": 0,
|
|
1307
|
+
"textAlign": undefined,
|
|
1308
|
+
}
|
|
1309
|
+
}
|
|
1310
|
+
>
|
|
1311
|
+
<div
|
|
1312
|
+
className="root uui-text uui-color-primary uui-font-weight-400 uui-font-style-normal uui-typography line-height-18 font-size-14 v-padding-9 text container"
|
|
1313
|
+
>
|
|
1314
|
+
B1
|
|
1315
|
+
</div>
|
|
1316
|
+
</div>
|
|
1317
|
+
</div>
|
|
1318
|
+
</div>
|
|
1319
|
+
<div
|
|
1320
|
+
className="flexSpacer"
|
|
1321
|
+
/>
|
|
1322
|
+
</div>
|
|
1323
|
+
</div>
|
|
1324
|
+
</div>
|
|
1325
|
+
</div>
|
|
1326
|
+
<div
|
|
1327
|
+
aria-checked={false}
|
|
1328
|
+
aria-posinset={8}
|
|
1329
|
+
className="uui-flex-row pickerRow container -clickable align-items-center"
|
|
1330
|
+
onClick={[Function]}
|
|
1331
|
+
role="option"
|
|
1332
|
+
style={
|
|
1333
|
+
Object {
|
|
1334
|
+
"columnGap": undefined,
|
|
1335
|
+
"rowGap": undefined,
|
|
1336
|
+
}
|
|
1337
|
+
}
|
|
1338
|
+
>
|
|
1339
|
+
<div
|
|
1340
|
+
className="flexCell cell data-picker-cell size-36 padding-24 padding-left-24 align-widgets-top"
|
|
1341
|
+
role="cell"
|
|
1342
|
+
style={
|
|
1343
|
+
Object {
|
|
1344
|
+
"alignSelf": undefined,
|
|
1345
|
+
"flexBasis": "0",
|
|
1346
|
+
"flexGrow": 1,
|
|
1347
|
+
"flexShrink": undefined,
|
|
1348
|
+
"minWidth": 0,
|
|
1349
|
+
"textAlign": undefined,
|
|
1350
|
+
}
|
|
1351
|
+
}
|
|
1352
|
+
>
|
|
1353
|
+
<label
|
|
1354
|
+
className="container uui-checkbox-container root size-18 mode-form uui-color-primary checkbox -clickable"
|
|
1355
|
+
>
|
|
1356
|
+
<div
|
|
1357
|
+
className="uui-checkbox"
|
|
1358
|
+
>
|
|
1359
|
+
<input
|
|
1360
|
+
aria-checked={false}
|
|
1361
|
+
checked={false}
|
|
1362
|
+
onChange={[Function]}
|
|
1363
|
+
tabIndex={0}
|
|
1364
|
+
type="checkbox"
|
|
1365
|
+
/>
|
|
1366
|
+
</div>
|
|
1367
|
+
</label>
|
|
1368
|
+
<div
|
|
1369
|
+
className="contentWrapper"
|
|
1370
|
+
>
|
|
1371
|
+
<div
|
|
1372
|
+
className="renderItem"
|
|
1373
|
+
>
|
|
1374
|
+
<div
|
|
1375
|
+
className="flexCell root uui-typography"
|
|
1376
|
+
style={
|
|
1377
|
+
Object {
|
|
1378
|
+
"alignSelf": undefined,
|
|
1379
|
+
"flexBasis": "auto",
|
|
1380
|
+
"flexGrow": undefined,
|
|
1381
|
+
"flexShrink": undefined,
|
|
1382
|
+
"minWidth": 0,
|
|
1383
|
+
"textAlign": undefined,
|
|
1384
|
+
}
|
|
1385
|
+
}
|
|
1386
|
+
>
|
|
1387
|
+
<div
|
|
1388
|
+
className="uui-flex-row root size-36 spacing-12 container align-items-center"
|
|
1389
|
+
style={
|
|
1390
|
+
Object {
|
|
1391
|
+
"columnGap": undefined,
|
|
1392
|
+
"rowGap": undefined,
|
|
1393
|
+
}
|
|
1394
|
+
}
|
|
1395
|
+
>
|
|
1396
|
+
<div
|
|
1397
|
+
className="flexCell"
|
|
1398
|
+
style={
|
|
1399
|
+
Object {
|
|
1400
|
+
"alignSelf": undefined,
|
|
1401
|
+
"flexBasis": "auto",
|
|
1402
|
+
"flexGrow": undefined,
|
|
1403
|
+
"flexShrink": undefined,
|
|
1404
|
+
"minWidth": 0,
|
|
1405
|
+
"textAlign": undefined,
|
|
1406
|
+
}
|
|
1407
|
+
}
|
|
1408
|
+
>
|
|
1409
|
+
<div
|
|
1410
|
+
className="root uui-text uui-color-primary uui-font-weight-400 uui-font-style-normal uui-typography line-height-18 font-size-14 v-padding-9 text container"
|
|
1411
|
+
>
|
|
1412
|
+
A2+
|
|
1413
|
+
</div>
|
|
1414
|
+
</div>
|
|
1415
|
+
</div>
|
|
1416
|
+
</div>
|
|
1417
|
+
<div
|
|
1418
|
+
className="flexSpacer"
|
|
1419
|
+
/>
|
|
1420
|
+
</div>
|
|
1421
|
+
</div>
|
|
1422
|
+
</div>
|
|
1423
|
+
</div>
|
|
1424
|
+
<div
|
|
1425
|
+
aria-checked={false}
|
|
1426
|
+
aria-posinset={9}
|
|
1427
|
+
className="uui-flex-row pickerRow container -clickable align-items-center"
|
|
1428
|
+
onClick={[Function]}
|
|
1429
|
+
role="option"
|
|
1430
|
+
style={
|
|
1431
|
+
Object {
|
|
1432
|
+
"columnGap": undefined,
|
|
1433
|
+
"rowGap": undefined,
|
|
1434
|
+
}
|
|
1435
|
+
}
|
|
1436
|
+
>
|
|
1437
|
+
<div
|
|
1438
|
+
className="flexCell cell data-picker-cell size-36 padding-24 padding-left-24 align-widgets-top"
|
|
1439
|
+
role="cell"
|
|
1440
|
+
style={
|
|
1441
|
+
Object {
|
|
1442
|
+
"alignSelf": undefined,
|
|
1443
|
+
"flexBasis": "0",
|
|
1444
|
+
"flexGrow": 1,
|
|
1445
|
+
"flexShrink": undefined,
|
|
1446
|
+
"minWidth": 0,
|
|
1447
|
+
"textAlign": undefined,
|
|
1448
|
+
}
|
|
1449
|
+
}
|
|
1450
|
+
>
|
|
1451
|
+
<label
|
|
1452
|
+
className="container uui-checkbox-container root size-18 mode-form uui-color-primary checkbox -clickable"
|
|
1453
|
+
>
|
|
1454
|
+
<div
|
|
1455
|
+
className="uui-checkbox"
|
|
1456
|
+
>
|
|
1457
|
+
<input
|
|
1458
|
+
aria-checked={false}
|
|
1459
|
+
checked={false}
|
|
1460
|
+
onChange={[Function]}
|
|
1461
|
+
tabIndex={0}
|
|
1462
|
+
type="checkbox"
|
|
1463
|
+
/>
|
|
1464
|
+
</div>
|
|
1465
|
+
</label>
|
|
1466
|
+
<div
|
|
1467
|
+
className="contentWrapper"
|
|
1468
|
+
>
|
|
1469
|
+
<div
|
|
1470
|
+
className="renderItem"
|
|
1471
|
+
>
|
|
1472
|
+
<div
|
|
1473
|
+
className="flexCell root uui-typography"
|
|
1474
|
+
style={
|
|
1475
|
+
Object {
|
|
1476
|
+
"alignSelf": undefined,
|
|
1477
|
+
"flexBasis": "auto",
|
|
1478
|
+
"flexGrow": undefined,
|
|
1479
|
+
"flexShrink": undefined,
|
|
1480
|
+
"minWidth": 0,
|
|
1481
|
+
"textAlign": undefined,
|
|
1482
|
+
}
|
|
1483
|
+
}
|
|
1484
|
+
>
|
|
1485
|
+
<div
|
|
1486
|
+
className="uui-flex-row root size-36 spacing-12 container align-items-center"
|
|
1487
|
+
style={
|
|
1488
|
+
Object {
|
|
1489
|
+
"columnGap": undefined,
|
|
1490
|
+
"rowGap": undefined,
|
|
1491
|
+
}
|
|
1492
|
+
}
|
|
1493
|
+
>
|
|
1494
|
+
<div
|
|
1495
|
+
className="flexCell"
|
|
1496
|
+
style={
|
|
1497
|
+
Object {
|
|
1498
|
+
"alignSelf": undefined,
|
|
1499
|
+
"flexBasis": "auto",
|
|
1500
|
+
"flexGrow": undefined,
|
|
1501
|
+
"flexShrink": undefined,
|
|
1502
|
+
"minWidth": 0,
|
|
1503
|
+
"textAlign": undefined,
|
|
1504
|
+
}
|
|
1505
|
+
}
|
|
1506
|
+
>
|
|
1507
|
+
<div
|
|
1508
|
+
className="root uui-text uui-color-primary uui-font-weight-400 uui-font-style-normal uui-typography line-height-18 font-size-14 v-padding-9 text container"
|
|
1509
|
+
>
|
|
1510
|
+
A2
|
|
1511
|
+
</div>
|
|
1512
|
+
</div>
|
|
1513
|
+
</div>
|
|
1514
|
+
</div>
|
|
1515
|
+
<div
|
|
1516
|
+
className="flexSpacer"
|
|
1517
|
+
/>
|
|
1518
|
+
</div>
|
|
1519
|
+
</div>
|
|
1520
|
+
</div>
|
|
1521
|
+
</div>
|
|
1522
|
+
<div
|
|
1523
|
+
aria-checked={false}
|
|
1524
|
+
aria-posinset={10}
|
|
1525
|
+
className="uui-flex-row pickerRow container -clickable align-items-center"
|
|
1526
|
+
onClick={[Function]}
|
|
1527
|
+
role="option"
|
|
1528
|
+
style={
|
|
1529
|
+
Object {
|
|
1530
|
+
"columnGap": undefined,
|
|
1531
|
+
"rowGap": undefined,
|
|
1532
|
+
}
|
|
1533
|
+
}
|
|
1534
|
+
>
|
|
1535
|
+
<div
|
|
1536
|
+
className="flexCell cell data-picker-cell size-36 padding-24 padding-left-24 align-widgets-top"
|
|
1537
|
+
role="cell"
|
|
1538
|
+
style={
|
|
1539
|
+
Object {
|
|
1540
|
+
"alignSelf": undefined,
|
|
1541
|
+
"flexBasis": "0",
|
|
1542
|
+
"flexGrow": 1,
|
|
1543
|
+
"flexShrink": undefined,
|
|
1544
|
+
"minWidth": 0,
|
|
1545
|
+
"textAlign": undefined,
|
|
1546
|
+
}
|
|
1547
|
+
}
|
|
1548
|
+
>
|
|
1549
|
+
<label
|
|
1550
|
+
className="container uui-checkbox-container root size-18 mode-form uui-color-primary checkbox -clickable"
|
|
1551
|
+
>
|
|
1552
|
+
<div
|
|
1553
|
+
className="uui-checkbox"
|
|
1554
|
+
>
|
|
1555
|
+
<input
|
|
1556
|
+
aria-checked={false}
|
|
1557
|
+
checked={false}
|
|
1558
|
+
onChange={[Function]}
|
|
1559
|
+
tabIndex={0}
|
|
1560
|
+
type="checkbox"
|
|
1561
|
+
/>
|
|
1562
|
+
</div>
|
|
1563
|
+
</label>
|
|
1564
|
+
<div
|
|
1565
|
+
className="contentWrapper"
|
|
1566
|
+
>
|
|
1567
|
+
<div
|
|
1568
|
+
className="renderItem"
|
|
1569
|
+
>
|
|
1570
|
+
<div
|
|
1571
|
+
className="flexCell root uui-typography"
|
|
1572
|
+
style={
|
|
1573
|
+
Object {
|
|
1574
|
+
"alignSelf": undefined,
|
|
1575
|
+
"flexBasis": "auto",
|
|
1576
|
+
"flexGrow": undefined,
|
|
1577
|
+
"flexShrink": undefined,
|
|
1578
|
+
"minWidth": 0,
|
|
1579
|
+
"textAlign": undefined,
|
|
1580
|
+
}
|
|
1581
|
+
}
|
|
1582
|
+
>
|
|
1583
|
+
<div
|
|
1584
|
+
className="uui-flex-row root size-36 spacing-12 container align-items-center"
|
|
1585
|
+
style={
|
|
1586
|
+
Object {
|
|
1587
|
+
"columnGap": undefined,
|
|
1588
|
+
"rowGap": undefined,
|
|
1589
|
+
}
|
|
1590
|
+
}
|
|
1591
|
+
>
|
|
1592
|
+
<div
|
|
1593
|
+
className="flexCell"
|
|
1594
|
+
style={
|
|
1595
|
+
Object {
|
|
1596
|
+
"alignSelf": undefined,
|
|
1597
|
+
"flexBasis": "auto",
|
|
1598
|
+
"flexGrow": undefined,
|
|
1599
|
+
"flexShrink": undefined,
|
|
1600
|
+
"minWidth": 0,
|
|
1601
|
+
"textAlign": undefined,
|
|
1602
|
+
}
|
|
1603
|
+
}
|
|
1604
|
+
>
|
|
1605
|
+
<div
|
|
1606
|
+
className="root uui-text uui-color-primary uui-font-weight-400 uui-font-style-normal uui-typography line-height-18 font-size-14 v-padding-9 text container"
|
|
1607
|
+
>
|
|
1608
|
+
A1+
|
|
1609
|
+
</div>
|
|
1610
|
+
</div>
|
|
1611
|
+
</div>
|
|
1612
|
+
</div>
|
|
1613
|
+
<div
|
|
1614
|
+
className="flexSpacer"
|
|
1615
|
+
/>
|
|
1616
|
+
</div>
|
|
1617
|
+
</div>
|
|
1618
|
+
</div>
|
|
1619
|
+
</div>
|
|
1620
|
+
<div
|
|
1621
|
+
aria-checked={false}
|
|
1622
|
+
aria-posinset={11}
|
|
1623
|
+
className="uui-flex-row pickerRow container -clickable align-items-center"
|
|
1624
|
+
onClick={[Function]}
|
|
1625
|
+
role="option"
|
|
1626
|
+
style={
|
|
1627
|
+
Object {
|
|
1628
|
+
"columnGap": undefined,
|
|
1629
|
+
"rowGap": undefined,
|
|
1630
|
+
}
|
|
1631
|
+
}
|
|
1632
|
+
>
|
|
1633
|
+
<div
|
|
1634
|
+
className="flexCell cell data-picker-cell size-36 padding-24 padding-left-24 align-widgets-top"
|
|
1635
|
+
role="cell"
|
|
1636
|
+
style={
|
|
1637
|
+
Object {
|
|
1638
|
+
"alignSelf": undefined,
|
|
1639
|
+
"flexBasis": "0",
|
|
1640
|
+
"flexGrow": 1,
|
|
1641
|
+
"flexShrink": undefined,
|
|
1642
|
+
"minWidth": 0,
|
|
1643
|
+
"textAlign": undefined,
|
|
1644
|
+
}
|
|
1645
|
+
}
|
|
1646
|
+
>
|
|
1647
|
+
<label
|
|
1648
|
+
className="container uui-checkbox-container root size-18 mode-form uui-color-primary checkbox -clickable"
|
|
1649
|
+
>
|
|
1650
|
+
<div
|
|
1651
|
+
className="uui-checkbox"
|
|
1652
|
+
>
|
|
1653
|
+
<input
|
|
1654
|
+
aria-checked={false}
|
|
1655
|
+
checked={false}
|
|
1656
|
+
onChange={[Function]}
|
|
1657
|
+
tabIndex={0}
|
|
1658
|
+
type="checkbox"
|
|
1659
|
+
/>
|
|
1660
|
+
</div>
|
|
1661
|
+
</label>
|
|
1662
|
+
<div
|
|
1663
|
+
className="contentWrapper"
|
|
1664
|
+
>
|
|
1665
|
+
<div
|
|
1666
|
+
className="renderItem"
|
|
1667
|
+
>
|
|
1668
|
+
<div
|
|
1669
|
+
className="flexCell root uui-typography"
|
|
1670
|
+
style={
|
|
1671
|
+
Object {
|
|
1672
|
+
"alignSelf": undefined,
|
|
1673
|
+
"flexBasis": "auto",
|
|
1674
|
+
"flexGrow": undefined,
|
|
1675
|
+
"flexShrink": undefined,
|
|
1676
|
+
"minWidth": 0,
|
|
1677
|
+
"textAlign": undefined,
|
|
1678
|
+
}
|
|
1679
|
+
}
|
|
1680
|
+
>
|
|
1681
|
+
<div
|
|
1682
|
+
className="uui-flex-row root size-36 spacing-12 container align-items-center"
|
|
1683
|
+
style={
|
|
1684
|
+
Object {
|
|
1685
|
+
"columnGap": undefined,
|
|
1686
|
+
"rowGap": undefined,
|
|
1687
|
+
}
|
|
1688
|
+
}
|
|
1689
|
+
>
|
|
1690
|
+
<div
|
|
1691
|
+
className="flexCell"
|
|
1692
|
+
style={
|
|
1693
|
+
Object {
|
|
1694
|
+
"alignSelf": undefined,
|
|
1695
|
+
"flexBasis": "auto",
|
|
1696
|
+
"flexGrow": undefined,
|
|
1697
|
+
"flexShrink": undefined,
|
|
1698
|
+
"minWidth": 0,
|
|
1699
|
+
"textAlign": undefined,
|
|
1700
|
+
}
|
|
1701
|
+
}
|
|
1702
|
+
>
|
|
1703
|
+
<div
|
|
1704
|
+
className="root uui-text uui-color-primary uui-font-weight-400 uui-font-style-normal uui-typography line-height-18 font-size-14 v-padding-9 text container"
|
|
1705
|
+
>
|
|
1706
|
+
A1
|
|
1707
|
+
</div>
|
|
1708
|
+
</div>
|
|
1709
|
+
</div>
|
|
1710
|
+
</div>
|
|
1711
|
+
<div
|
|
1712
|
+
className="flexSpacer"
|
|
1713
|
+
/>
|
|
1714
|
+
</div>
|
|
1715
|
+
</div>
|
|
1716
|
+
</div>
|
|
1717
|
+
</div>
|
|
1718
|
+
</div>
|
|
1719
|
+
</div>
|
|
1720
|
+
</div>
|
|
1721
|
+
<div
|
|
1722
|
+
className="container uui-blocker-container root"
|
|
1723
|
+
style={
|
|
1724
|
+
Object {
|
|
1725
|
+
"minHeight": undefined,
|
|
1726
|
+
}
|
|
1727
|
+
}
|
|
1728
|
+
>
|
|
1729
|
+
<div />
|
|
1730
|
+
</div>
|
|
1731
|
+
<div
|
|
1732
|
+
className="uui-track-horizontal"
|
|
1733
|
+
style={
|
|
1734
|
+
Object {
|
|
1735
|
+
"display": "none",
|
|
1736
|
+
"height": 6,
|
|
1737
|
+
"position": "absolute",
|
|
1738
|
+
}
|
|
1739
|
+
}
|
|
1740
|
+
>
|
|
1741
|
+
<div
|
|
1742
|
+
className="uui-thumb-horizontal"
|
|
1743
|
+
/>
|
|
1744
|
+
</div>
|
|
1745
|
+
<div
|
|
1746
|
+
className="uui-track-vertical"
|
|
1747
|
+
style={
|
|
1748
|
+
Object {
|
|
1749
|
+
"display": "none",
|
|
1750
|
+
"position": "absolute",
|
|
1751
|
+
"width": 6,
|
|
1752
|
+
}
|
|
1753
|
+
}
|
|
1754
|
+
>
|
|
1755
|
+
<div
|
|
1756
|
+
className="uui-thumb-vertical"
|
|
1757
|
+
/>
|
|
1758
|
+
</div>
|
|
1759
|
+
</div>
|
|
1760
|
+
</div>
|
|
1761
|
+
<div
|
|
1762
|
+
className="uui-flex-row root size-36 padding-24 vPadding-24 spacing-12 root modalFooter container align-items-center"
|
|
1763
|
+
style={
|
|
1764
|
+
Object {
|
|
1765
|
+
"columnGap": undefined,
|
|
1766
|
+
"rowGap": undefined,
|
|
1767
|
+
}
|
|
1768
|
+
}
|
|
1769
|
+
>
|
|
1770
|
+
<button
|
|
1771
|
+
aria-disabled={false}
|
|
1772
|
+
className="container uui-button-box uui-enabled -clickable uui-link_button root uui-size-36 uui-no-left-icon uui-no-right-icon uui-color-primary"
|
|
1773
|
+
onClick={[Function]}
|
|
1774
|
+
tabIndex={0}
|
|
1775
|
+
type="button"
|
|
1776
|
+
>
|
|
1777
|
+
<div
|
|
1778
|
+
className="uui-caption"
|
|
1779
|
+
>
|
|
1780
|
+
SELECT ALL
|
|
1781
|
+
</div>
|
|
1782
|
+
</button>
|
|
1783
|
+
<div
|
|
1784
|
+
className="flexSpacer"
|
|
1785
|
+
/>
|
|
1786
|
+
<button
|
|
1787
|
+
className="container uui-button-box uui-enabled -clickable root uui-button uui-fill-outline uui-color-secondary uui-size-36"
|
|
1788
|
+
onClick={[Function]}
|
|
1789
|
+
tabIndex={0}
|
|
1790
|
+
type="button"
|
|
1791
|
+
>
|
|
1792
|
+
<div
|
|
1793
|
+
className="uui-caption"
|
|
1794
|
+
>
|
|
1795
|
+
Cancel
|
|
1796
|
+
</div>
|
|
1797
|
+
</button>
|
|
1798
|
+
<button
|
|
1799
|
+
className="container uui-button-box uui-enabled -clickable root uui-button uui-fill-solid uui-color-accent uui-size-36"
|
|
1800
|
+
onClick={[Function]}
|
|
1801
|
+
tabIndex={0}
|
|
1802
|
+
type="button"
|
|
1803
|
+
>
|
|
1804
|
+
<div
|
|
1805
|
+
className="uui-caption"
|
|
1806
|
+
>
|
|
1807
|
+
Select
|
|
1808
|
+
</div>
|
|
1809
|
+
</button>
|
|
1810
|
+
</div>
|
|
1811
|
+
</div>
|
|
1812
|
+
</div>
|
|
1813
|
+
`;
|
|
1814
|
+
|
|
1815
|
+
exports[`PickerModal should open body 1`] = `
|
|
1816
|
+
<body
|
|
1817
|
+
style="overflow: hidden;"
|
|
1818
|
+
>
|
|
1819
|
+
<div>
|
|
1820
|
+
<button
|
|
1821
|
+
class="container uui-button-box uui-enabled -clickable"
|
|
1822
|
+
tabindex="0"
|
|
1823
|
+
type="button"
|
|
1824
|
+
/>
|
|
1825
|
+
<div
|
|
1826
|
+
class="container modalBlocker"
|
|
1827
|
+
style="z-index: 2000;"
|
|
1828
|
+
>
|
|
1829
|
+
<div
|
|
1830
|
+
aria-label="Click to close a modal"
|
|
1831
|
+
class="uui-modal-blocker"
|
|
1832
|
+
/>
|
|
1833
|
+
<div
|
|
1834
|
+
aria-modal="true"
|
|
1835
|
+
class="uui-modal-window root modal container"
|
|
1836
|
+
role="dialog"
|
|
1837
|
+
style="width: 600px; height: 700px;"
|
|
1838
|
+
>
|
|
1839
|
+
<div
|
|
1840
|
+
class="uui-flex-row root size-36 padding-24 vPadding-12 spacing-12 root modalHeader container align-items-center"
|
|
1841
|
+
>
|
|
1842
|
+
<div
|
|
1843
|
+
class="root uui-text uui-color-primary uui-font-weight-600 uui-font-style-normal uui-typography line-height-24 font-size-18 v-padding-12 container"
|
|
1844
|
+
>
|
|
1845
|
+
Please select
|
|
1846
|
+
</div>
|
|
1847
|
+
<div
|
|
1848
|
+
class="flexSpacer"
|
|
1849
|
+
/>
|
|
1850
|
+
<div
|
|
1851
|
+
class="flexCell"
|
|
1852
|
+
style="min-width: 0; flex-shrink: 0; flex-basis: auto;"
|
|
1853
|
+
>
|
|
1854
|
+
<button
|
|
1855
|
+
aria-label="Close modal"
|
|
1856
|
+
class="container uui-button-box uui-enabled -clickable uui-icon_button uui-color-neutral root"
|
|
1857
|
+
tabindex="0"
|
|
1858
|
+
type="button"
|
|
1859
|
+
>
|
|
1860
|
+
<div
|
|
1861
|
+
class="container uui-icon uui-enabled"
|
|
1862
|
+
>
|
|
1863
|
+
<svg
|
|
1864
|
+
class=""
|
|
1865
|
+
/>
|
|
1866
|
+
</div>
|
|
1867
|
+
</button>
|
|
1868
|
+
</div>
|
|
1869
|
+
</div>
|
|
1870
|
+
<div
|
|
1871
|
+
class="flexCell subHeaderWrapper"
|
|
1872
|
+
style="min-width: 0; flex-basis: 0px;"
|
|
1873
|
+
>
|
|
1874
|
+
<div
|
|
1875
|
+
class="uui-flex-row root size-36 vPadding-24 container align-items-center"
|
|
1876
|
+
>
|
|
1877
|
+
<div
|
|
1878
|
+
class="container uui-input-box -clickable uui-focus root size-36 mode-form"
|
|
1879
|
+
tabindex="-1"
|
|
1880
|
+
>
|
|
1881
|
+
<div
|
|
1882
|
+
class="container uui-icon uui-enabled"
|
|
1883
|
+
>
|
|
1884
|
+
<svg
|
|
1885
|
+
class=""
|
|
1886
|
+
/>
|
|
1887
|
+
</div>
|
|
1888
|
+
<input
|
|
1889
|
+
aria-invalid="false"
|
|
1890
|
+
class="uui-input"
|
|
1891
|
+
inputmode="search"
|
|
1892
|
+
placeholder="Type text for quick search"
|
|
1893
|
+
tabindex="-1"
|
|
1894
|
+
type="search"
|
|
1895
|
+
value=""
|
|
1896
|
+
/>
|
|
1897
|
+
</div>
|
|
1898
|
+
</div>
|
|
1899
|
+
</div>
|
|
1900
|
+
<div
|
|
1901
|
+
class="uui-flex-row root size-36 body modal undefined container align-items-center"
|
|
1902
|
+
>
|
|
1903
|
+
<div
|
|
1904
|
+
class="root uui-scroll-bars uui-shadow-top uui-shadow-bottom scrollContainer"
|
|
1905
|
+
style="position: relative; overflow: hidden; width: 100%; height: 100%; display: flex;"
|
|
1906
|
+
>
|
|
1907
|
+
<div
|
|
1908
|
+
style="position: relative; top: 0px; left: 0px; right: 0px; bottom: 0px; overflow: scroll; margin-right: 0px; margin-bottom: 0px; flex: 1 1 auto; display: flex; flex-direction: column;"
|
|
1909
|
+
>
|
|
1910
|
+
<div
|
|
1911
|
+
class="listContainer"
|
|
1912
|
+
style="min-height: 2px;"
|
|
1913
|
+
>
|
|
1914
|
+
<div
|
|
1915
|
+
style="margin-top: 0px;"
|
|
1916
|
+
>
|
|
1917
|
+
<div
|
|
1918
|
+
aria-posinset="1"
|
|
1919
|
+
aria-selected="false"
|
|
1920
|
+
class="uui-flex-row pickerRow container -clickable align-items-center"
|
|
1921
|
+
role="option"
|
|
1922
|
+
>
|
|
1923
|
+
<div
|
|
1924
|
+
class="flexCell cell data-picker-cell size-36 padding-24 padding-left-24 align-widgets-top"
|
|
1925
|
+
role="cell"
|
|
1926
|
+
style="min-width: 0; flex-grow: 1; flex-basis: 0px;"
|
|
1927
|
+
>
|
|
1928
|
+
<div
|
|
1929
|
+
class="contentWrapper"
|
|
1930
|
+
>
|
|
1931
|
+
<div
|
|
1932
|
+
class="renderItem"
|
|
1933
|
+
>
|
|
1934
|
+
<div
|
|
1935
|
+
class="flexCell root uui-typography"
|
|
1936
|
+
style="min-width: 0; flex-basis: auto;"
|
|
1937
|
+
>
|
|
1938
|
+
<div
|
|
1939
|
+
class="uui-flex-row root size-36 spacing-12 container align-items-center"
|
|
1940
|
+
>
|
|
1941
|
+
<div
|
|
1942
|
+
class="flexCell"
|
|
1943
|
+
style="min-width: 0; flex-basis: auto;"
|
|
1944
|
+
>
|
|
1945
|
+
<div
|
|
1946
|
+
class="root uui-text uui-color-primary uui-font-weight-400 uui-font-style-normal uui-typography line-height-18 font-size-14 v-padding-9 text container"
|
|
1947
|
+
>
|
|
1948
|
+
Elementary
|
|
1949
|
+
</div>
|
|
1950
|
+
</div>
|
|
1951
|
+
</div>
|
|
1952
|
+
</div>
|
|
1953
|
+
<div
|
|
1954
|
+
class="flexSpacer"
|
|
1955
|
+
/>
|
|
1956
|
+
</div>
|
|
1957
|
+
</div>
|
|
1958
|
+
</div>
|
|
1959
|
+
</div>
|
|
1960
|
+
<div
|
|
1961
|
+
aria-posinset="2"
|
|
1962
|
+
aria-selected="false"
|
|
1963
|
+
class="uui-flex-row pickerRow container -clickable align-items-center"
|
|
1964
|
+
role="option"
|
|
1965
|
+
>
|
|
1966
|
+
<div
|
|
1967
|
+
class="flexCell cell data-picker-cell size-36 padding-24 padding-left-24 align-widgets-top"
|
|
1968
|
+
role="cell"
|
|
1969
|
+
style="min-width: 0; flex-grow: 1; flex-basis: 0px;"
|
|
1970
|
+
>
|
|
1971
|
+
<div
|
|
1972
|
+
class="contentWrapper"
|
|
1973
|
+
>
|
|
1974
|
+
<div
|
|
1975
|
+
class="renderItem"
|
|
1976
|
+
>
|
|
1977
|
+
<div
|
|
1978
|
+
class="flexCell root uui-typography"
|
|
1979
|
+
style="min-width: 0; flex-basis: auto;"
|
|
1980
|
+
>
|
|
1981
|
+
<div
|
|
1982
|
+
class="uui-flex-row root size-36 spacing-12 container align-items-center"
|
|
1983
|
+
>
|
|
1984
|
+
<div
|
|
1985
|
+
class="flexCell"
|
|
1986
|
+
style="min-width: 0; flex-basis: auto;"
|
|
1987
|
+
>
|
|
1988
|
+
<div
|
|
1989
|
+
class="root uui-text uui-color-primary uui-font-weight-400 uui-font-style-normal uui-typography line-height-18 font-size-14 v-padding-9 text container"
|
|
1990
|
+
>
|
|
1991
|
+
Elementary+
|
|
1992
|
+
</div>
|
|
1993
|
+
</div>
|
|
1994
|
+
</div>
|
|
1995
|
+
</div>
|
|
1996
|
+
<div
|
|
1997
|
+
class="flexSpacer"
|
|
1998
|
+
/>
|
|
1999
|
+
</div>
|
|
2000
|
+
</div>
|
|
2001
|
+
</div>
|
|
2002
|
+
</div>
|
|
2003
|
+
</div>
|
|
2004
|
+
</div>
|
|
2005
|
+
</div>
|
|
2006
|
+
<div
|
|
2007
|
+
class="container uui-blocker-container root"
|
|
2008
|
+
>
|
|
2009
|
+
<div />
|
|
2010
|
+
</div>
|
|
2011
|
+
<div
|
|
2012
|
+
class="uui-track-horizontal"
|
|
2013
|
+
style="position: absolute; height: 6px; display: none;"
|
|
2014
|
+
>
|
|
2015
|
+
<div
|
|
2016
|
+
class="uui-thumb-horizontal"
|
|
2017
|
+
/>
|
|
2018
|
+
</div>
|
|
2019
|
+
<div
|
|
2020
|
+
class="uui-track-vertical"
|
|
2021
|
+
style="position: absolute; width: 6px; display: none;"
|
|
2022
|
+
>
|
|
2023
|
+
<div
|
|
2024
|
+
class="uui-thumb-vertical"
|
|
2025
|
+
/>
|
|
2026
|
+
</div>
|
|
2027
|
+
</div>
|
|
2028
|
+
</div>
|
|
2029
|
+
<div
|
|
2030
|
+
class="uui-flex-row root size-36 padding-24 vPadding-24 spacing-12 root modalFooter container align-items-center"
|
|
2031
|
+
>
|
|
2032
|
+
<div
|
|
2033
|
+
class="flexSpacer"
|
|
2034
|
+
/>
|
|
2035
|
+
<button
|
|
2036
|
+
class="container uui-button-box uui-enabled -clickable root uui-button uui-fill-outline uui-color-secondary uui-size-36"
|
|
2037
|
+
tabindex="0"
|
|
2038
|
+
type="button"
|
|
2039
|
+
>
|
|
2040
|
+
<div
|
|
2041
|
+
class="uui-caption"
|
|
2042
|
+
>
|
|
2043
|
+
Cancel
|
|
2044
|
+
</div>
|
|
2045
|
+
</button>
|
|
2046
|
+
<button
|
|
2047
|
+
class="container uui-button-box uui-enabled -clickable root uui-button uui-fill-solid uui-color-accent uui-size-36"
|
|
2048
|
+
tabindex="0"
|
|
2049
|
+
type="button"
|
|
2050
|
+
>
|
|
2051
|
+
<div
|
|
2052
|
+
class="uui-caption"
|
|
2053
|
+
>
|
|
2054
|
+
Select
|
|
2055
|
+
</div>
|
|
2056
|
+
</button>
|
|
2057
|
+
</div>
|
|
2058
|
+
</div>
|
|
2059
|
+
</div>
|
|
2060
|
+
</div>
|
|
2061
|
+
</body>
|
|
2062
|
+
`;
|