superdesk-ui-framework 3.0.65 → 3.0.67
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/app/styles/_boxed-list.scss +10 -3
- package/app/styles/_helpers.scss +3 -1
- package/app/styles/components/_list-item.scss +22 -11
- package/app/styles/components/_sd-searchbar.scss +20 -1
- package/app/styles/primereact/_pr-dialog.scss +29 -13
- package/app-typescript/components/Autocomplete.tsx +9 -3
- package/app-typescript/components/Badge.tsx +16 -2
- package/app-typescript/components/Dropdown.tsx +3 -1
- package/app-typescript/components/DropdownFirst.tsx +14 -2
- package/app-typescript/components/DurationInput.tsx +19 -4
- package/app-typescript/components/EmptyState.tsx +11 -2
- package/app-typescript/components/Layouts/Panel.tsx +12 -1
- package/app-typescript/components/Lists/ContentList.tsx +5 -1
- package/app-typescript/components/Modal.tsx +12 -3
- package/app-typescript/components/Navigation/BottomNav.tsx +9 -2
- package/app-typescript/components/Navigation/QuickNavBar.tsx +10 -2
- package/app-typescript/components/Navigation/SideBarMenu.tsx +9 -4
- package/app-typescript/components/SearchBar.tsx +1 -0
- package/app-typescript/components/SidebarMenu.tsx +8 -1
- package/app-typescript/components/TabList.tsx +5 -1
- package/app-typescript/components/TagInput.tsx +4 -1
- package/app-typescript/components/ThemeSelector.tsx +13 -2
- package/app-typescript/components/TreeMenu.tsx +127 -122
- package/app-typescript/components/TreeSelect/TreeSelect.tsx +157 -141
- package/app-typescript/components/WithPortal.tsx +49 -0
- package/app-typescript/components/avatar/avatar-image.tsx +2 -0
- package/app-typescript/components/avatar/avatar.tsx +2 -1
- package/dist/examples.bundle.js +1409 -1278
- package/dist/playgrounds/planning.html +121 -43
- package/dist/playgrounds/react-playgrounds/CoreLayout.tsx +398 -385
- package/dist/playgrounds/react-playgrounds/EditorTest.tsx +359 -365
- package/dist/playgrounds/react-playgrounds/FirstPlayground.tsx +33 -33
- package/dist/playgrounds/react-playgrounds/Multiedit.tsx +227 -231
- package/dist/playgrounds/react-playgrounds/PageLayoutTest.tsx +41 -38
- package/dist/playgrounds/react-playgrounds/PersonalProfile.tsx +76 -96
- package/dist/playgrounds/react-playgrounds/RundownEditor.tsx +73 -101
- package/dist/playgrounds/react-playgrounds/Rundowns.tsx +788 -729
- package/dist/playgrounds/react-playgrounds/SamsPlayground.tsx +35 -26
- package/dist/playgrounds/react-playgrounds/TestGround.tsx +140 -121
- package/dist/playgrounds/react-playgrounds/UiPlayground.tsx +40 -25
- package/dist/playgrounds/react-playgrounds/components/GraphicButton.tsx +6 -5
- package/dist/playgrounds/react-playgrounds/components/Layout.tsx +0 -2
- package/dist/playgrounds/react-playgrounds/components/SearchBar.tsx +16 -9
- package/dist/superdesk-ui.bundle.css +79 -33
- package/dist/superdesk-ui.bundle.js +833 -729
- package/dist/vendor.bundle.js +14 -14
- package/examples/pages/playgrounds/planning.html +121 -43
- package/examples/pages/playgrounds/react-playgrounds/CoreLayout.tsx +398 -385
- package/examples/pages/playgrounds/react-playgrounds/EditorTest.tsx +359 -365
- package/examples/pages/playgrounds/react-playgrounds/FirstPlayground.tsx +33 -33
- package/examples/pages/playgrounds/react-playgrounds/Multiedit.tsx +227 -231
- package/examples/pages/playgrounds/react-playgrounds/PageLayoutTest.tsx +41 -38
- package/examples/pages/playgrounds/react-playgrounds/PersonalProfile.tsx +76 -96
- package/examples/pages/playgrounds/react-playgrounds/RundownEditor.tsx +73 -101
- package/examples/pages/playgrounds/react-playgrounds/Rundowns.tsx +788 -729
- package/examples/pages/playgrounds/react-playgrounds/SamsPlayground.tsx +35 -26
- package/examples/pages/playgrounds/react-playgrounds/TestGround.tsx +140 -121
- package/examples/pages/playgrounds/react-playgrounds/UiPlayground.tsx +40 -25
- package/examples/pages/playgrounds/react-playgrounds/components/GraphicButton.tsx +6 -5
- package/examples/pages/playgrounds/react-playgrounds/components/Layout.tsx +0 -2
- package/examples/pages/playgrounds/react-playgrounds/components/SearchBar.tsx +16 -9
- package/package.json +1 -1
- package/react/{components → app-typescript/components}/Autocomplete.js +2 -2
- package/react/{components → app-typescript/components}/Badge.js +1 -1
- package/react/{components → app-typescript/components}/Dropdown.js +3 -1
- package/react/{components → app-typescript/components}/DropdownFirst.js +6 -2
- package/react/{components → app-typescript/components}/DurationInput.js +5 -1
- package/react/{components → app-typescript/components}/EmptyState.js +2 -1
- package/react/{components → app-typescript/components}/Lists/ContentList.js +1 -1
- package/react/{components → app-typescript/components}/Modal.js +2 -2
- package/react/{components → app-typescript/components}/Navigation/BottomNav.js +4 -1
- package/react/{components → app-typescript/components}/Navigation/QuickNavBar.js +2 -1
- package/react/{components → app-typescript/components}/Navigation/SideBarMenu.js +3 -1
- package/react/{components → app-typescript/components}/SearchBar.js +1 -0
- package/react/{components → app-typescript/components}/TabList.js +2 -1
- package/react/{components → app-typescript/components}/TagInput.js +1 -1
- package/react/{components → app-typescript/components}/TreeSelect/TreeSelect.d.ts +3 -2
- package/react/{components → app-typescript/components}/TreeSelect/TreeSelect.js +81 -73
- package/react/app-typescript/components/WithPortal.d.ts +14 -0
- package/react/app-typescript/components/WithPortal.js +69 -0
- package/react/{components → app-typescript/components}/avatar/avatar.js +2 -1
- package/react/examples/pages/playgrounds/dummy-data/items.d.ts +16 -0
- package/react/examples/pages/playgrounds/dummy-data/items.js +95 -0
- package/react/examples/pages/playgrounds/react-playgrounds/CoreLayout.d.ts +51 -0
- package/react/examples/pages/playgrounds/react-playgrounds/CoreLayout.js +454 -0
- package/react/examples/pages/playgrounds/react-playgrounds/EditorTest.d.ts +27 -0
- package/react/examples/pages/playgrounds/react-playgrounds/EditorTest.js +256 -0
- package/react/examples/pages/playgrounds/react-playgrounds/FirstPlayground.d.ts +19 -0
- package/react/examples/pages/playgrounds/react-playgrounds/FirstPlayground.js +160 -0
- package/react/examples/pages/playgrounds/react-playgrounds/Index.d.ts +11 -0
- package/react/examples/pages/playgrounds/react-playgrounds/Index.js +25 -0
- package/react/examples/pages/playgrounds/react-playgrounds/Multiedit.d.ts +36 -0
- package/react/examples/pages/playgrounds/react-playgrounds/Multiedit.js +200 -0
- package/react/examples/pages/playgrounds/react-playgrounds/PageLayoutTest.d.ts +22 -0
- package/react/examples/pages/playgrounds/react-playgrounds/PageLayoutTest.js +134 -0
- package/react/examples/pages/playgrounds/react-playgrounds/PersonalProfile.d.ts +40 -0
- package/react/examples/pages/playgrounds/react-playgrounds/PersonalProfile.js +350 -0
- package/react/examples/pages/playgrounds/react-playgrounds/RundownEditor.d.ts +32 -0
- package/react/examples/pages/playgrounds/react-playgrounds/RundownEditor.js +267 -0
- package/react/examples/pages/playgrounds/react-playgrounds/Rundowns.d.ts +39 -0
- package/react/examples/pages/playgrounds/react-playgrounds/Rundowns.js +558 -0
- package/react/examples/pages/playgrounds/react-playgrounds/SamsPlayground.d.ts +24 -0
- package/react/examples/pages/playgrounds/react-playgrounds/SamsPlayground.js +241 -0
- package/react/examples/pages/playgrounds/react-playgrounds/TestGround.d.ts +27 -0
- package/react/examples/pages/playgrounds/react-playgrounds/TestGround.js +508 -0
- package/react/examples/pages/playgrounds/react-playgrounds/UiPlayground.d.ts +24 -0
- package/react/examples/pages/playgrounds/react-playgrounds/UiPlayground.js +239 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/AuthoringContainer.d.ts +11 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/AuthoringContainer.js +64 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/ContentSplitter.d.ts +10 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/ContentSplitter.js +62 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/GraphicButton.d.ts +14 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/GraphicButton.js +65 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/GraphicButtonsGroup.d.ts +8 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/GraphicButtonsGroup.js +53 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/HeaderPanel.d.ts +8 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/HeaderPanel.js +53 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/Index.d.ts +19 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/Index.js +41 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/Layout.d.ts +8 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/Layout.js +40 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/LayoutContainer.d.ts +8 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/LayoutContainer.js +53 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/LeftPanel.d.ts +9 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/LeftPanel.js +53 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/MainPanel.d.ts +10 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/MainPanel.js +63 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/OverlayPanel.d.ts +8 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/OverlayPanel.js +55 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/Panel.d.ts +10 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/Panel.js +63 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/PanelContent.d.ts +8 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/PanelContent.js +53 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/PanelContentBlock.d.ts +11 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/PanelContentBlock.js +63 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/PanelFooter.d.ts +8 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/PanelFooter.js +54 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/PanelHeader.d.ts +12 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/PanelHeader.js +63 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/RightPanel.d.ts +9 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/RightPanel.js +53 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/SearchBar.d.ts +23 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/SearchBar.js +92 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/SidebarMenu.d.ts +20 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/SidebarMenu.js +83 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/SubNav.d.ts +9 -0
- package/react/examples/pages/playgrounds/react-playgrounds/components/SubNav.js +60 -0
- package/tsconfig.json +5 -1
- /package/dist/playgrounds/dummy-data/{items.js → items.ts} +0 -0
- /package/examples/pages/playgrounds/dummy-data/{items.js → items.ts} +0 -0
- /package/react/{components → app-typescript/components}/Alert.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Alert.js +0 -0
- /package/react/{components → app-typescript/components}/Autocomplete.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Badge.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Button.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Button.js +0 -0
- /package/react/{components → app-typescript/components}/ButtonGroup.d.ts +0 -0
- /package/react/{components → app-typescript/components}/ButtonGroup.js +0 -0
- /package/react/{components → app-typescript/components}/Carousel.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Carousel.js +0 -0
- /package/react/{components → app-typescript/components}/CheckButtonGroup.d.ts +0 -0
- /package/react/{components → app-typescript/components}/CheckButtonGroup.js +0 -0
- /package/react/{components → app-typescript/components}/CheckGroup.d.ts +0 -0
- /package/react/{components → app-typescript/components}/CheckGroup.js +0 -0
- /package/react/{components → app-typescript/components}/Checkbox.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Checkbox.js +0 -0
- /package/react/{components → app-typescript/components}/CheckboxButton.d.ts +0 -0
- /package/react/{components → app-typescript/components}/CheckboxButton.js +0 -0
- /package/react/{components → app-typescript/components}/ContentDivider.d.ts +0 -0
- /package/react/{components → app-typescript/components}/ContentDivider.js +0 -0
- /package/react/{components → app-typescript/components}/CreateButton.d.ts +0 -0
- /package/react/{components → app-typescript/components}/CreateButton.js +0 -0
- /package/react/{components → app-typescript/components}/DatePicker.d.ts +0 -0
- /package/react/{components → app-typescript/components}/DatePicker.js +0 -0
- /package/react/{components → app-typescript/components}/Divider.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Divider.js +0 -0
- /package/react/{components → app-typescript/components}/DonutChart.d.ts +0 -0
- /package/react/{components → app-typescript/components}/DonutChart.js +0 -0
- /package/react/{components → app-typescript/components}/DragHandle.d.ts +0 -0
- /package/react/{components → app-typescript/components}/DragHandle.js +0 -0
- /package/react/{components → app-typescript/components}/DropZone.d.ts +0 -0
- /package/react/{components → app-typescript/components}/DropZone.js +0 -0
- /package/react/{components → app-typescript/components}/Dropdown.d.ts +0 -0
- /package/react/{components → app-typescript/components}/DropdownFirst.d.ts +0 -0
- /package/react/{components → app-typescript/components}/DurationInput.d.ts +0 -0
- /package/react/{components → app-typescript/components}/EmptyState.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Form/FormGroup.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Form/FormGroup.js +0 -0
- /package/react/{components → app-typescript/components}/Form/FormItem.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Form/FormItem.js +0 -0
- /package/react/{components → app-typescript/components}/Form/FormLabel.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Form/FormLabel.js +0 -0
- /package/react/{components → app-typescript/components}/Form/FormRow.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Form/FormRow.js +0 -0
- /package/react/{components → app-typescript/components}/Form/FormRowNew.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Form/FormRowNew.js +0 -0
- /package/react/{components → app-typescript/components}/Form/FormText.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Form/FormText.js +0 -0
- /package/react/{components → app-typescript/components}/Form/InputBase.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Form/InputBase.js +0 -0
- /package/react/{components → app-typescript/components}/Form/InputNew.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Form/InputNew.js +0 -0
- /package/react/{components → app-typescript/components}/Form/InputWrapper.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Form/InputWrapper.js +0 -0
- /package/react/{components → app-typescript/components}/Form/index.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Form/index.js +0 -0
- /package/react/{components → app-typescript/components}/FormLabel.d.ts +0 -0
- /package/react/{components → app-typescript/components}/FormLabel.js +0 -0
- /package/react/{components → app-typescript/components}/GridItem.d.ts +0 -0
- /package/react/{components → app-typescript/components}/GridItem.js +0 -0
- /package/react/{components → app-typescript/components}/GridList.d.ts +0 -0
- /package/react/{components → app-typescript/components}/GridList.js +0 -0
- /package/react/{components → app-typescript/components}/HeadingText.d.ts +0 -0
- /package/react/{components → app-typescript/components}/HeadingText.js +0 -0
- /package/react/{components → app-typescript/components}/HelloWorld.d.ts +0 -0
- /package/react/{components → app-typescript/components}/HelloWorld.js +0 -0
- /package/react/{components → app-typescript/components}/Icon.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Icon.js +0 -0
- /package/react/{components → app-typescript/components}/IconButton.d.ts +0 -0
- /package/react/{components → app-typescript/components}/IconButton.js +0 -0
- /package/react/{components → app-typescript/components}/IconLabel.d.ts +0 -0
- /package/react/{components → app-typescript/components}/IconLabel.js +0 -0
- /package/react/{components → app-typescript/components}/IconPicker.d.ts +0 -0
- /package/react/{components → app-typescript/components}/IconPicker.js +0 -0
- /package/react/{components → app-typescript/components}/Input.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Input.js +0 -0
- /package/react/{components → app-typescript/components}/Label.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Label.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthorinInnerSideBar.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthorinInnerSideBar.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringContainer.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringContainer.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrame.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrame.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameContainer.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameContainer.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameLeftBar.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameLeftBar.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameMain.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameMain.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameNavBar.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameNavBar.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameOverlay.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameOverlay.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameRightBar.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameRightBar.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameSidePanel.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameSidePanel.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameSidePanelOverlay.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringFrameSidePanelOverlay.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringInnerBody.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringInnerBody.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringInnerHeader.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringInnerHeader.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringMain.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringMain.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringMainContainer.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringMainContainer.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringMainContent.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringMainContent.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringMainToolBar.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/AuthoringMainToolBar.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/BottomBarAction.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/BottomBarAction.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/Container.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/Container.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/ContentSplitter.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/ContentSplitter.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/CoreLayout.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/CoreLayout.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/CoreLayoutContainer.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/CoreLayoutContainer.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/CoreLayoutFooter.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/CoreLayoutFooter.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/CoreLayoutMain.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/CoreLayoutMain.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/CoreLayoutOverlay.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/CoreLayoutOverlay.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/CoreLayoutSlideInMenu.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/CoreLayoutSlideInMenu.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/CoreLayoutTopMenu.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/CoreLayoutTopMenu.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/HamburgerButton.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/HamburgerButton.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/HeaderPanel.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/HeaderPanel.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/Layout.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/Layout.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/LayoutContainer.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/LayoutContainer.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/LeftPanel.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/LeftPanel.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/MainMenu.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/MainMenu.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/MainPanel.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/MainPanel.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/NotificationPanel.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/NotificationPanel.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/OverlayPanel.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/OverlayPanel.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/PageLayout.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/PageLayout.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/Panel.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/Panel.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/RightPanel.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/RightPanel.js +0 -0
- /package/react/{components → app-typescript/components}/Layouts/index.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Layouts/index.js +0 -0
- /package/react/{components → app-typescript/components}/LeftMenu.d.ts +0 -0
- /package/react/{components → app-typescript/components}/LeftMenu.js +0 -0
- /package/react/{components → app-typescript/components}/ListItemLoader.d.ts +0 -0
- /package/react/{components → app-typescript/components}/ListItemLoader.js +0 -0
- /package/react/{components → app-typescript/components}/Lists/BoxedList.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Lists/BoxedList.js +0 -0
- /package/react/{components → app-typescript/components}/Lists/ContentList.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Lists/SimpleList.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Lists/SimpleList.js +0 -0
- /package/react/{components → app-typescript/components}/Lists/TableList.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Lists/TableList.js +0 -0
- /package/react/{components → app-typescript/components}/Lists/index.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Lists/index.js +0 -0
- /package/react/{components → app-typescript/components}/Loader.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Loader.js +0 -0
- /package/react/{components → app-typescript/components}/Menu.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Menu.js +0 -0
- /package/react/{components → app-typescript/components}/Modal.d.ts +0 -0
- /package/react/{components → app-typescript/components}/MultiSelect.d.ts +0 -0
- /package/react/{components → app-typescript/components}/MultiSelect.js +0 -0
- /package/react/{components → app-typescript/components}/NavButton.d.ts +0 -0
- /package/react/{components → app-typescript/components}/NavButton.js +0 -0
- /package/react/{components → app-typescript/components}/Navigation/BottomNav.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Navigation/QuickNavBar.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Navigation/SideBarMenu.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Navigation/SideBarTabs.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Navigation/SideBarTabs.js +0 -0
- /package/react/{components → app-typescript/components}/Navigation/index.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Navigation/index.js +0 -0
- /package/react/{components → app-typescript/components}/Popover.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Popover.js +0 -0
- /package/react/{components → app-typescript/components}/PropsList.d.ts +0 -0
- /package/react/{components → app-typescript/components}/PropsList.js +0 -0
- /package/react/{components → app-typescript/components}/RadioButtonGroup.d.ts +0 -0
- /package/react/{components → app-typescript/components}/RadioButtonGroup.js +0 -0
- /package/react/{components → app-typescript/components}/RadioGroup.d.ts +0 -0
- /package/react/{components → app-typescript/components}/RadioGroup.js +0 -0
- /package/react/{components → app-typescript/components}/ResizablePanels.d.ts +0 -0
- /package/react/{components → app-typescript/components}/ResizablePanels.js +0 -0
- /package/react/{components → app-typescript/components}/ResizeObserverComponent.d.ts +0 -0
- /package/react/{components → app-typescript/components}/ResizeObserverComponent.js +0 -0
- /package/react/{components → app-typescript/components}/Rotate.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Rotate.js +0 -0
- /package/react/{components → app-typescript/components}/SearchBar.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Select.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Select.js +0 -0
- /package/react/{components → app-typescript/components}/SelectGrid.d.ts +0 -0
- /package/react/{components → app-typescript/components}/SelectGrid.js +0 -0
- /package/react/{components → app-typescript/components}/SelectPreview.d.ts +0 -0
- /package/react/{components → app-typescript/components}/SelectPreview.js +0 -0
- /package/react/{components → app-typescript/components}/SelectWithTemplate.d.ts +0 -0
- /package/react/{components → app-typescript/components}/SelectWithTemplate.js +0 -0
- /package/react/{components → app-typescript/components}/ShowPopup.d.ts +0 -0
- /package/react/{components → app-typescript/components}/ShowPopup.js +0 -0
- /package/react/{components → app-typescript/components}/SingleAndDoubleClickFunction.d.ts +0 -0
- /package/react/{components → app-typescript/components}/SingleAndDoubleClickFunction.js +0 -0
- /package/react/{components → app-typescript/components}/Skeleton.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Skeleton.js +0 -0
- /package/react/{components → app-typescript/components}/SlidingToolbar.d.ts +0 -0
- /package/react/{components → app-typescript/components}/SlidingToolbar.js +0 -0
- /package/react/{components → app-typescript/components}/Spacer.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Spacer.js +0 -0
- /package/react/{components → app-typescript/components}/Spinner.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Spinner.js +0 -0
- /package/react/{components → app-typescript/components}/StrechBar.d.ts +0 -0
- /package/react/{components → app-typescript/components}/StrechBar.js +0 -0
- /package/react/{components → app-typescript/components}/SubNav.d.ts +0 -0
- /package/react/{components → app-typescript/components}/SubNav.js +0 -0
- /package/react/{components → app-typescript/components}/Switch.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Switch.js +0 -0
- /package/react/{components → app-typescript/components}/SwitchGroup.d.ts +0 -0
- /package/react/{components → app-typescript/components}/SwitchGroup.js +0 -0
- /package/react/{components → app-typescript/components}/TabCustom.d.ts +0 -0
- /package/react/{components → app-typescript/components}/TabCustom.js +0 -0
- /package/react/{components → app-typescript/components}/TabList.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Tag.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Tag.js +0 -0
- /package/react/{components → app-typescript/components}/TagInput.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Text/Heading.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Text/Heading.js +0 -0
- /package/react/{components → app-typescript/components}/Text/Text.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Text/Text.js +0 -0
- /package/react/{components → app-typescript/components}/Text/Time.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Text/Time.js +0 -0
- /package/react/{components → app-typescript/components}/ThemeSelector.d.ts +0 -0
- /package/react/{components → app-typescript/components}/ThemeSelector.js +0 -0
- /package/react/{components → app-typescript/components}/TimePicker.d.ts +0 -0
- /package/react/{components → app-typescript/components}/TimePicker.js +0 -0
- /package/react/{components → app-typescript/components}/Toast.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Toast.js +0 -0
- /package/react/{components → app-typescript/components}/ToastMessage.d.ts +0 -0
- /package/react/{components → app-typescript/components}/ToastMessage.js +0 -0
- /package/react/{components → app-typescript/components}/ToastText.d.ts +0 -0
- /package/react/{components → app-typescript/components}/ToastText.js +0 -0
- /package/react/{components → app-typescript/components}/ToastWrapper.d.ts +0 -0
- /package/react/{components → app-typescript/components}/ToastWrapper.js +0 -0
- /package/react/{components → app-typescript/components}/Togglebox.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Togglebox.js +0 -0
- /package/react/{components → app-typescript/components}/Tooltip.d.ts +0 -0
- /package/react/{components → app-typescript/components}/Tooltip.js +0 -0
- /package/react/{components → app-typescript/components}/TreeSelect/KeyboardNavigation.d.ts +0 -0
- /package/react/{components → app-typescript/components}/TreeSelect/KeyboardNavigation.js +0 -0
- /package/react/{components → app-typescript/components}/TreeSelect/TreeSelectItem.d.ts +0 -0
- /package/react/{components → app-typescript/components}/TreeSelect/TreeSelectItem.js +0 -0
- /package/react/{components → app-typescript/components}/TreeSelect/TreeSelectPill.d.ts +0 -0
- /package/react/{components → app-typescript/components}/TreeSelect/TreeSelectPill.js +0 -0
- /package/react/{components → app-typescript/components}/WithPagination.d.ts +0 -0
- /package/react/{components → app-typescript/components}/WithPagination.js +0 -0
- /package/react/{components → app-typescript/components}/WithPopover.d.ts +0 -0
- /package/react/{components → app-typescript/components}/WithPopover.js +0 -0
- /package/react/{components → app-typescript/components}/WithSizeObserver.d.ts +0 -0
- /package/react/{components → app-typescript/components}/WithSizeObserver.js +0 -0
- /package/react/{components → app-typescript/components}/_Positioner.d.ts +0 -0
- /package/react/{components → app-typescript/components}/_Positioner.js +0 -0
- /package/react/{components → app-typescript/components}/avatar/avatar-action-add.d.ts +0 -0
- /package/react/{components → app-typescript/components}/avatar/avatar-action-add.js +0 -0
- /package/react/{components → app-typescript/components}/avatar/avatar-group.d.ts +0 -0
- /package/react/{components → app-typescript/components}/avatar/avatar-group.js +0 -0
- /package/react/{components → app-typescript/components}/avatar/avatar-image.d.ts +0 -0
- /package/react/{components → app-typescript/components}/avatar/avatar-image.js +0 -0
- /package/react/{components → app-typescript/components}/avatar/avatar-number.d.ts +0 -0
- /package/react/{components → app-typescript/components}/avatar/avatar-number.js +0 -0
- /package/react/{components → app-typescript/components}/avatar/avatar-placeholder.d.ts +0 -0
- /package/react/{components → app-typescript/components}/avatar/avatar-placeholder.js +0 -0
- /package/react/{components → app-typescript/components}/avatar/avatar-text.d.ts +0 -0
- /package/react/{components → app-typescript/components}/avatar/avatar-text.js +0 -0
- /package/react/{components → app-typescript/components}/avatar/avatar-wrapper.d.ts +0 -0
- /package/react/{components → app-typescript/components}/avatar/avatar-wrapper.js +0 -0
- /package/react/{components → app-typescript/components}/avatar/avatar.d.ts +0 -0
- /package/react/{components → app-typescript/components}/avatar/interfaces.d.ts +0 -0
- /package/react/{components → app-typescript/components}/avatar/interfaces.js +0 -0
- /package/react/{helpers.d.ts → app-typescript/helpers.d.ts} +0 -0
- /package/react/{helpers.js → app-typescript/helpers.js} +0 -0
- /package/react/{index.d.ts → app-typescript/index.d.ts} +0 -0
- /package/react/{index.js → app-typescript/index.js} +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
import * as React from 'react';
|
2
2
|
import * as Components from './components/Index';
|
3
|
-
import { ButtonGroup, Button, NavButton, SubNav, Dropdown,
|
3
|
+
import { ButtonGroup, Button, NavButton, SubNav, Dropdown, RadioButtonGroup, Input, Select, Option, Label, Icon, IconButton, Checkbox, GridList, Badge } from '../../../../app-typescript/index';
|
4
4
|
import * as GridElements from '../../../../app-typescript/components/GridItem';
|
5
5
|
|
6
6
|
import dummy_items from '../dummy-data/items';
|
@@ -77,7 +77,9 @@ export class UiPlayground extends React.Component<IProps, IState> {
|
|
77
77
|
{ icon: 'spike', size: 'big' },
|
78
78
|
{ icon: 'personal', size: 'big' },
|
79
79
|
{ icon: 'global-search', size: 'big' },
|
80
|
-
{ icon: 'picture', size: 'big', active: true }
|
80
|
+
{ icon: 'picture', size: 'big', active: true }
|
81
|
+
]}
|
82
|
+
/>
|
81
83
|
|
82
84
|
<Components.LayoutContainer>
|
83
85
|
<Components.HeaderPanel>
|
@@ -93,7 +95,9 @@ export class UiPlayground extends React.Component<IProps, IState> {
|
|
93
95
|
{ label: 'File archive', onSelect: () => this.setState({ dropDownState: 'File archive' }) },
|
94
96
|
{ label: 'AP images', onSelect: () => this.setState({ dropDownState: 'AP archive' }) },
|
95
97
|
]
|
96
|
-
}
|
98
|
+
}
|
99
|
+
]}
|
100
|
+
>
|
97
101
|
<NavButton text={this.state.dropDownState ? this.state.dropDownState : 'All Archives'} onClick={() => false} />
|
98
102
|
</Dropdown>
|
99
103
|
</ButtonGroup>
|
@@ -107,11 +111,16 @@ export class UiPlayground extends React.Component<IProps, IState> {
|
|
107
111
|
<ButtonGroup align='inline'>
|
108
112
|
<NavButton icon='filter-large' onClick={this.handleFilter} />
|
109
113
|
</ButtonGroup>
|
110
|
-
<RadioButtonGroup
|
111
|
-
{
|
112
|
-
|
113
|
-
|
114
|
-
|
114
|
+
<RadioButtonGroup
|
115
|
+
options={[
|
116
|
+
{value:'test10', label:'Radio button with icon'},
|
117
|
+
{value:'test11', label:'I have an icon!'},
|
118
|
+
{value:'test12', label:'Yeah, me too!'},
|
119
|
+
]}
|
120
|
+
group={{padded:true}}
|
121
|
+
value={this.state.itemType}
|
122
|
+
onChange={(value) => this.setState({ itemType: value })}
|
123
|
+
/>
|
115
124
|
<ButtonGroup align='end' spaces='no-space'>
|
116
125
|
<Dropdown
|
117
126
|
items={[
|
@@ -123,7 +132,8 @@ export class UiPlayground extends React.Component<IProps, IState> {
|
|
123
132
|
{ label: 'Accessible Light', icon: 'adjust', onSelect: () => this.handleTheme('accessible-light-ui')},
|
124
133
|
]
|
125
134
|
},
|
126
|
-
]}
|
135
|
+
]}
|
136
|
+
>
|
127
137
|
<NavButton type='default' icon='adjust' onClick={()=> false} />
|
128
138
|
</Dropdown>
|
129
139
|
<NavButton icon='th-list' onClick={() => false} />
|
@@ -145,8 +155,8 @@ export class UiPlayground extends React.Component<IProps, IState> {
|
|
145
155
|
value='Title'
|
146
156
|
inlineLabel={false}
|
147
157
|
disabled={false}
|
148
|
-
|
149
|
-
|
158
|
+
onChange={() => false}
|
159
|
+
/>
|
150
160
|
</div>
|
151
161
|
</div>
|
152
162
|
<div className="form__group">
|
@@ -156,8 +166,8 @@ export class UiPlayground extends React.Component<IProps, IState> {
|
|
156
166
|
error='This is error message'
|
157
167
|
inlineLabel={false}
|
158
168
|
disabled={false}
|
159
|
-
|
160
|
-
|
169
|
+
onChange={() => false}
|
170
|
+
>
|
161
171
|
<Option value="option-1">Select ingest source...</Option>
|
162
172
|
<Option value="option-2">Associated Press</Option>
|
163
173
|
<Option value="option-3">Reuters</Option>
|
@@ -173,8 +183,8 @@ export class UiPlayground extends React.Component<IProps, IState> {
|
|
173
183
|
value='Keyword'
|
174
184
|
inlineLabel={false}
|
175
185
|
disabled={false}
|
176
|
-
|
177
|
-
|
186
|
+
onChange={() => false}
|
187
|
+
/>
|
178
188
|
</div>
|
179
189
|
</div>
|
180
190
|
|
@@ -186,8 +196,8 @@ export class UiPlayground extends React.Component<IProps, IState> {
|
|
186
196
|
info='Dolor in hendrerit.'
|
187
197
|
inlineLabel={false}
|
188
198
|
disabled={false}
|
189
|
-
|
190
|
-
|
199
|
+
onChange={() => false}
|
200
|
+
>
|
191
201
|
<Option value="">--- Not selected ---</Option>
|
192
202
|
<Option value="single">Single usage</Option>
|
193
203
|
<Option value="time">Time restricted</Option>
|
@@ -206,16 +216,19 @@ export class UiPlayground extends React.Component<IProps, IState> {
|
|
206
216
|
</Components.LeftPanel>
|
207
217
|
{/* FILTER PANEL*/}
|
208
218
|
|
209
|
-
<Components.MainPanel
|
210
|
-
|
219
|
+
<Components.MainPanel>
|
211
220
|
<GridList size="small" gap="medium" margin="3">
|
212
|
-
{dummy_items.map((item, index) =>
|
221
|
+
{dummy_items.map((item: any, index: any) =>
|
213
222
|
<GridElements.GridItem locked={item.locked} status={item.status} onClick={this.handlePreview} itemtype={item.type} key={index}>
|
214
223
|
<GridElements.GridItemCheckWrapper>
|
215
|
-
<Checkbox
|
216
|
-
item.selected
|
217
|
-
|
218
|
-
|
224
|
+
<Checkbox
|
225
|
+
checked={item.selected}
|
226
|
+
label={{text:''}}
|
227
|
+
onChange={(value) => {
|
228
|
+
item.selected = value;
|
229
|
+
this.changeStatus(item, 'selected');
|
230
|
+
}}
|
231
|
+
/>
|
219
232
|
</GridElements.GridItemCheckWrapper>
|
220
233
|
<GridElements.GridItemTopActions>
|
221
234
|
<IconButton icon='fullscreen' ariaValue='More actions' onClick={()=> false} />
|
@@ -265,7 +278,9 @@ export class UiPlayground extends React.Component<IProps, IState> {
|
|
265
278
|
{ label: 'Download', icon: 'download', onSelect: () => this.setState({ dropDownState: 'Download' }) },
|
266
279
|
{ label: 'Delete', icon: 'trash', onSelect: () => this.setState({ dropDownState: 'Delete' }) },
|
267
280
|
]
|
268
|
-
}
|
281
|
+
}
|
282
|
+
]}
|
283
|
+
>
|
269
284
|
<IconButton ariaValue='dropdown-more-options' icon='dots-vertical' onClick={() => false} />
|
270
285
|
</Dropdown>
|
271
286
|
</div>
|
@@ -1,5 +1,4 @@
|
|
1
1
|
import * as React from 'react';
|
2
|
-
import {Redirect} from 'react-router-dom';
|
3
2
|
|
4
3
|
interface IGraphicButton {
|
5
4
|
children?: never;
|
@@ -10,12 +9,14 @@ interface IGraphicButton {
|
|
10
9
|
}
|
11
10
|
|
12
11
|
export class GraphicButton extends React.PureComponent<IGraphicButton> {
|
13
|
-
constructor(props){
|
12
|
+
constructor(props: IGraphicButton){
|
14
13
|
super(props);
|
15
14
|
this.onSubmit=this.onSubmit.bind(this);
|
16
15
|
}
|
17
|
-
onSubmit=() =>{
|
18
|
-
|
16
|
+
onSubmit=() => {
|
17
|
+
if (this.props.link != null) {
|
18
|
+
window.location.href = this.props.link;
|
19
|
+
}
|
19
20
|
}
|
20
21
|
render() {
|
21
22
|
return (
|
@@ -30,4 +31,4 @@ export class GraphicButton extends React.PureComponent<IGraphicButton> {
|
|
30
31
|
</a>
|
31
32
|
);
|
32
33
|
}
|
33
|
-
}
|
34
|
+
}
|
@@ -20,7 +20,7 @@ interface IState {
|
|
20
20
|
|
21
21
|
export class SearchBar extends React.PureComponent<IProps, IState> {
|
22
22
|
private inputRef: any;
|
23
|
-
constructor(props) {
|
23
|
+
constructor(props: IProps) {
|
24
24
|
super(props);
|
25
25
|
this.state = {
|
26
26
|
inputValue: this.props.value ? this.props.value : '',
|
@@ -46,27 +46,34 @@ export class SearchBar extends React.PureComponent<IProps, IState> {
|
|
46
46
|
}
|
47
47
|
|
48
48
|
render() {
|
49
|
-
|
49
|
+
const classes = classNames('sd-searchbar', {
|
50
50
|
[`sd-searchbar--${this.state.type}`] : this.props.type,
|
51
51
|
'sd-searchbar--expanded': this.state.type === 'expanded' || this.props.type === undefined,
|
52
52
|
'sd-searchbar--focused' : this.state.focused,
|
53
53
|
'sd-searchbar--boxed': this.state.boxed,
|
54
54
|
});
|
55
|
+
|
55
56
|
return (
|
56
57
|
<div className={classes} ref={this.inputRef}>
|
57
58
|
<label className="sd-searchbar__icon"></label>
|
58
|
-
|
59
|
-
|
59
|
+
|
60
|
+
<input
|
61
|
+
id="search-input"
|
62
|
+
ref={(input: any) => (input && this.props.focused) && input.focus()}
|
60
63
|
className="sd-searchbar__input"
|
61
64
|
type="text"
|
62
65
|
placeholder={this.props.placeholder}
|
63
66
|
value={this.state.inputValue}
|
64
67
|
onChange={(e) => this.setState({inputValue: e.target.value})}
|
65
|
-
onFocus={() => this.setState({focused: true})}
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
68
|
+
onFocus={() => this.setState({focused: true})}
|
69
|
+
/>
|
70
|
+
|
71
|
+
{this.state.inputValue && (
|
72
|
+
<button className="sd-searchbar__cancel" onClick={() => this.setState({inputValue: ''})}>
|
73
|
+
<Icon name='remove-sign' />
|
74
|
+
</button>
|
75
|
+
)}
|
76
|
+
|
70
77
|
<button id="sd-searchbar__search-btn" className="sd-searchbar__search-btn" onSubmit={() => this.props.onSubmit}>
|
71
78
|
<Icon name='chevron-right-thin' />
|
72
79
|
</button>
|
@@ -17232,7 +17232,8 @@ h6 {
|
|
17232
17232
|
font-size: calc(var(--text-size--base) * 1.2);
|
17233
17233
|
font-weight: 500;
|
17234
17234
|
text-transform: uppercase;
|
17235
|
-
color: var(--color-text-light);
|
17235
|
+
color: var(--color-text-light);
|
17236
|
+
letter-spacing: 0.06em; }
|
17236
17237
|
|
17237
17238
|
.sd-text {
|
17238
17239
|
font-size: 1.4rem;
|
@@ -36089,11 +36090,14 @@ tags-input,
|
|
36089
36090
|
display: flex;
|
36090
36091
|
flex-direction: column;
|
36091
36092
|
align-self: stretch;
|
36092
|
-
gap:
|
36093
|
+
gap: 0.8rem;
|
36093
36094
|
margin-block-end: 1.6rem; }
|
36094
36095
|
|
36096
|
+
.boxed-list--compact {
|
36097
|
+
gap: 0.8rem; }
|
36098
|
+
|
36095
36099
|
.boxed-list--comfortable {
|
36096
|
-
gap: 1.
|
36100
|
+
gap: 1.2rem; }
|
36097
36101
|
|
36098
36102
|
.boxed-list__item {
|
36099
36103
|
display: grid;
|
@@ -36211,7 +36215,10 @@ tags-input,
|
|
36211
36215
|
|
36212
36216
|
.boxed-list__item--clickable:hover {
|
36213
36217
|
cursor: pointer;
|
36214
|
-
box-shadow: 0 1px
|
36218
|
+
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.16), 0 2px 6px rgba(0, 0, 0, 0.12), 0 0 1px rgba(0, 0, 0, 0.1); }
|
36219
|
+
|
36220
|
+
.boxed-list__item--clickable:active {
|
36221
|
+
box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.12); }
|
36215
36222
|
|
36216
36223
|
.boxed-list__item--blank {
|
36217
36224
|
background-color: transparent !important;
|
@@ -42314,34 +42321,44 @@ a.text-link {
|
|
42314
42321
|
color: var(--sd-colour-interactive); }
|
42315
42322
|
|
42316
42323
|
.sd-list-item-nested {
|
42317
|
-
|
42318
|
-
|
42324
|
+
--parent-item-height: 58px;
|
42325
|
+
display: grid;
|
42326
|
+
grid-template-rows: var(--parent-item-height) 0fr;
|
42327
|
+
transition: grid-template-rows 0.3s ease-out; }
|
42328
|
+
.sd-list-item-nested > .sd-list-item {
|
42329
|
+
max-height: var(--parent-item-height);
|
42330
|
+
height: var(--parent-item-height); }
|
42319
42331
|
|
42320
42332
|
.sd-list-item-nested__childs {
|
42321
42333
|
position: relative;
|
42322
42334
|
z-index: 0;
|
42323
|
-
|
42324
|
-
|
42325
|
-
|
42335
|
+
overflow: hidden !important;
|
42336
|
+
display: grid;
|
42337
|
+
grid-template-rows: 1fr;
|
42338
|
+
margin-inline-start: 1rem;
|
42339
|
+
transition: all 0.3s ease-out; }
|
42326
42340
|
.sd-list-item-nested__childs .sd-list-item {
|
42327
42341
|
margin-block-start: 0;
|
42328
42342
|
border-block-start: 1px solid var(--sd-colour-line--x-light); }
|
42343
|
+
.sd-list-item-nested__childs .sd-list-item-nested__childs-inner {
|
42344
|
+
overflow: hidden;
|
42345
|
+
opacity: 0;
|
42346
|
+
transition: opacity 0.2s ease-out; }
|
42329
42347
|
|
42330
42348
|
.sd-list-item-nested__parent {
|
42331
42349
|
position: relative;
|
42332
42350
|
z-index: 1; }
|
42333
42351
|
|
42334
42352
|
.sd-list-item-nested--collapsed .sd-list-item-nested__childs {
|
42335
|
-
|
42336
|
-
max-height: 0;
|
42337
|
-
opacity: 0;
|
42338
|
-
margin-block-end: 0;
|
42339
|
-
overflow: hidden; }
|
42353
|
+
opacity: 0; }
|
42340
42354
|
|
42341
|
-
.sd-list-item-nested--expanded
|
42342
|
-
|
42343
|
-
|
42344
|
-
|
42355
|
+
.sd-list-item-nested--expanded {
|
42356
|
+
grid-template-rows: var(--parent-item-height) 1fr; }
|
42357
|
+
.sd-list-item-nested--expanded .sd-list-item-nested__childs {
|
42358
|
+
grid-template-rows: 1fr;
|
42359
|
+
opacity: 1; }
|
42360
|
+
.sd-list-item-nested--expanded .sd-list-item-nested__childs .sd-list-item-nested__childs-inner {
|
42361
|
+
opacity: 1; }
|
42345
42362
|
|
42346
42363
|
.sd-list-item-group {
|
42347
42364
|
display: flex;
|
@@ -43393,7 +43410,7 @@ a.text-link {
|
|
43393
43410
|
border-radius: var(--b-radius--medium);
|
43394
43411
|
border: 1px solid var(--color-border-line--medium);
|
43395
43412
|
background-color: var(--sd-colour-bg__searchbar);
|
43396
|
-
box-shadow: inset 0
|
43413
|
+
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.14);
|
43397
43414
|
transition: box-shadow 0.2s ease-out; }
|
43398
43415
|
.sd-searchbar--boxed:hover {
|
43399
43416
|
border-color: rgba(123, 123, 123, 0.6); }
|
@@ -43411,6 +43428,18 @@ a.text-link {
|
|
43411
43428
|
cursor: not-allowed !important; }
|
43412
43429
|
.sd-searchbar--boxed.sd-searchbar--disabled:hover {
|
43413
43430
|
border-color: rgba(123, 123, 123, 0.4); }
|
43431
|
+
.sd-searchbar--boxed .dropdown {
|
43432
|
+
background-color: var(--sd-colour-bg__searchbar);
|
43433
|
+
border-radius: var(--b-radius--medium) 0 0 var(--b-radius--medium);
|
43434
|
+
border-inline-end: 1px solid var(--color-border-line--medium);
|
43435
|
+
margin-inline-end: 1px;
|
43436
|
+
transition: box-shadow 0.2s ease-out; }
|
43437
|
+
.sd-searchbar--boxed .dropdown .dropdown__toggle {
|
43438
|
+
height: 100%;
|
43439
|
+
padding-inline: var(--space--1-5); }
|
43440
|
+
.sd-searchbar--boxed.sd-searchbar--focused .dropdown, .sd-searchbar--boxed:focus-within .dropdown {
|
43441
|
+
border-inline-end-color: var(--sd-colour-interactive--alpha-50);
|
43442
|
+
box-shadow: inset 0 0 0 1px var(--sd-colour-interactive--alpha-50), 3px 0 0 var(--sd-colour-interactive--alpha-10); }
|
43414
43443
|
|
43415
43444
|
.sd-searchbar__input, input[type="text"].sd-searchbar__input, input[type="search"].sd-searchbar__input {
|
43416
43445
|
flex-grow: 1;
|
@@ -64251,7 +64280,6 @@ i.sd-sidetab-menu__helper-icon {
|
|
64251
64280
|
margin-inline-end: 0; }
|
64252
64281
|
|
64253
64282
|
.p-dialog .p-dialog-content {
|
64254
|
-
background-color: transparent;
|
64255
64283
|
font-size: 1.4rem; }
|
64256
64284
|
.p-dialog .p-dialog-content p {
|
64257
64285
|
line-height: 1.5; }
|
@@ -64297,8 +64325,11 @@ i.sd-sidetab-menu__helper-icon {
|
|
64297
64325
|
color: var(--sd-colour-interactive) !important;
|
64298
64326
|
opacity: 1; }
|
64299
64327
|
|
64300
|
-
.p-dialog-content
|
64301
|
-
|
64328
|
+
.p-dialog-content {
|
64329
|
+
padding: var(--dialog-content-padding);
|
64330
|
+
background-color: var(--dialog-content-bg); }
|
64331
|
+
.p-dialog-content .sd-main-content-grid {
|
64332
|
+
height: 100% !important; }
|
64302
64333
|
|
64303
64334
|
.p-dialog-content--small {
|
64304
64335
|
width: var(--width__modal--small); }
|
@@ -64314,26 +64345,41 @@ i.sd-sidetab-menu__helper-icon {
|
|
64314
64345
|
width: var(--width__modal--x-large);
|
64315
64346
|
height: calc(100vh - 200px); }
|
64316
64347
|
|
64317
|
-
.p-dialog-content--0-padding
|
64318
|
-
|
64348
|
+
.p-dialog-content--0-padding,
|
64349
|
+
.p-dialog-content--padding-none {
|
64350
|
+
--dialog-content-padding: 0 !important; }
|
64319
64351
|
|
64320
|
-
.p-dialog-content--s-padding
|
64321
|
-
|
64352
|
+
.p-dialog-content--s-padding,
|
64353
|
+
.p-dialog-content--padding-small {
|
64354
|
+
--dialog-content-padding: var(--space--2); }
|
64322
64355
|
|
64323
|
-
.p-dialog-content--m-padding
|
64324
|
-
|
64356
|
+
.p-dialog-content--m-padding,
|
64357
|
+
.p-dialog-content--padding-medium {
|
64358
|
+
--dialog-content-padding: var(--space--3); }
|
64325
64359
|
|
64326
|
-
.p-dialog-content--l-padding
|
64327
|
-
|
64360
|
+
.p-dialog-content--l-padding,
|
64361
|
+
.p-dialog-content--padding-large {
|
64362
|
+
--dialog-content-padding: var(--space--4); }
|
64328
64363
|
|
64329
64364
|
.p-dialog-content-bg--default {
|
64330
|
-
|
64365
|
+
--dialog-content-bg: var(--color-modal-Bg) !important; }
|
64331
64366
|
|
64332
64367
|
.p-dialog-content-bg--dark {
|
64333
|
-
|
64368
|
+
--dialog-content-bg: var(--sd-colour-panel-bg--200) !important; }
|
64334
64369
|
|
64335
64370
|
.p-dialog-content-bg--medium {
|
64336
|
-
|
64371
|
+
--dialog-content-bg: var(--sd-colour-panel-bg--100) !important; }
|
64372
|
+
|
64373
|
+
.modal__sticky-header {
|
64374
|
+
position: sticky;
|
64375
|
+
inset-block-start: calc(-1 * var(--dialog-content-padding));
|
64376
|
+
background-color: var(--dialog-content-bg);
|
64377
|
+
padding-inline: var(--dialog-content-padding);
|
64378
|
+
padding-block-start: var(--dialog-content-padding);
|
64379
|
+
padding-block-end: var(--space--1);
|
64380
|
+
z-index: 2;
|
64381
|
+
margin: calc(-1 * var(--dialog-content-padding));
|
64382
|
+
margin-block-end: 0; }
|
64337
64383
|
|
64338
64384
|
.p-tieredmenu, .p-tieredmenu .p-submenu-list {
|
64339
64385
|
padding-block-start: 0.8rem;
|