superdesk-ui-framework 4.0.46 → 4.0.48
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/.eslintrc.js +0 -1
- package/.eslintrc.json +2 -5
- package/.github/workflows/test.yml +22 -26
- package/.prettierignore +3 -0
- package/.prettierrc.js +9 -0
- package/.travis.yml +4 -4
- package/README.md +14 -1
- package/app/styles/form-elements/_forms-general.scss +0 -4
- package/app-typescript/components/Alert.tsx +12 -16
- package/app-typescript/components/Autocomplete.tsx +53 -42
- package/app-typescript/components/Badge.tsx +1 -1
- package/app-typescript/components/Button.tsx +5 -11
- package/app-typescript/components/ButtonGroup.tsx +15 -10
- package/app-typescript/components/Carousel.tsx +25 -26
- package/app-typescript/components/CheckButtonGroup.tsx +6 -10
- package/app-typescript/components/Checkbox.tsx +16 -10
- package/app-typescript/components/CheckboxButton.tsx +22 -13
- package/app-typescript/components/ContentDivider.tsx +6 -7
- package/app-typescript/components/CreateButton.tsx +8 -6
- package/app-typescript/components/DatePicker.tsx +59 -55
- package/app-typescript/components/DateTimePicker.tsx +175 -117
- package/app-typescript/components/Divider.tsx +2 -4
- package/app-typescript/components/DonutChart.tsx +11 -6
- package/app-typescript/components/DragHandle.tsx +10 -6
- package/app-typescript/components/DragHandleDots.tsx +1 -3
- package/app-typescript/components/DropZone.tsx +27 -25
- package/app-typescript/components/Dropdown.tsx +61 -102
- package/app-typescript/components/DropdownFirst.tsx +57 -69
- package/app-typescript/components/DurationInput.tsx +64 -54
- package/app-typescript/components/Editor/EditorButton.tsx +4 -3
- package/app-typescript/components/EmptyState.tsx +10 -14
- package/app-typescript/components/Form/FormGroup.tsx +9 -16
- package/app-typescript/components/Form/FormItem.tsx +1 -5
- package/app-typescript/components/Form/FormLabel.tsx +0 -1
- package/app-typescript/components/Form/FormRow.tsx +12 -19
- package/app-typescript/components/Form/FormRowNew.tsx +9 -16
- package/app-typescript/components/Form/FormText.tsx +1 -5
- package/app-typescript/components/Form/InputBase.tsx +12 -11
- package/app-typescript/components/Form/InputNew.tsx +11 -12
- package/app-typescript/components/Form/InputWrapper.tsx +9 -18
- package/app-typescript/components/Form/index.tsx +9 -9
- package/app-typescript/components/FormLabel.tsx +1 -5
- package/app-typescript/components/GridItem.tsx +38 -69
- package/app-typescript/components/GridList.tsx +2 -6
- package/app-typescript/components/HeadingText.tsx +4 -5
- package/app-typescript/components/IconButton.tsx +4 -10
- package/app-typescript/components/IconLabel.tsx +5 -5
- package/app-typescript/components/IconPicker.tsx +128 -126
- package/app-typescript/components/IllustrationButton.tsx +2 -8
- package/app-typescript/components/Input.tsx +2 -2
- package/app-typescript/components/Label.tsx +11 -7
- package/app-typescript/components/Layouts/AuthorinInnerSideBar.tsx +1 -5
- package/app-typescript/components/Layouts/AuthoringContainer.tsx +4 -6
- package/app-typescript/components/Layouts/AuthoringFrame.tsx +4 -20
- package/app-typescript/components/Layouts/AuthoringFrameContainer.tsx +1 -5
- package/app-typescript/components/Layouts/AuthoringFrameLeftBar.tsx +1 -5
- package/app-typescript/components/Layouts/AuthoringFrameMain.tsx +1 -5
- package/app-typescript/components/Layouts/AuthoringFrameNavBar.tsx +1 -5
- package/app-typescript/components/Layouts/AuthoringFrameOverlay.tsx +1 -5
- package/app-typescript/components/Layouts/AuthoringFrameRightBar.tsx +1 -5
- package/app-typescript/components/Layouts/AuthoringFrameSidePanel.tsx +1 -5
- package/app-typescript/components/Layouts/AuthoringFrameSidePanelOverlay.tsx +1 -3
- package/app-typescript/components/Layouts/AuthoringInnerBody.tsx +3 -6
- package/app-typescript/components/Layouts/AuthoringInnerHeader.tsx +5 -5
- package/app-typescript/components/Layouts/AuthoringMain.tsx +3 -4
- package/app-typescript/components/Layouts/AuthoringMainContainer.tsx +1 -5
- package/app-typescript/components/Layouts/AuthoringMainContent.tsx +1 -5
- package/app-typescript/components/Layouts/AuthoringMainToolBar.tsx +1 -6
- package/app-typescript/components/Layouts/BottomBarAction.tsx +8 -10
- package/app-typescript/components/Layouts/Container.tsx +13 -8
- package/app-typescript/components/Layouts/ContentSplitter.tsx +2 -6
- package/app-typescript/components/Layouts/CoreLayout.tsx +5 -12
- package/app-typescript/components/Layouts/CoreLayoutContainer.tsx +1 -1
- package/app-typescript/components/Layouts/CoreLayoutFooter.tsx +1 -5
- package/app-typescript/components/Layouts/CoreLayoutMain.tsx +4 -4
- package/app-typescript/components/Layouts/CoreLayoutOverlay.tsx +1 -5
- package/app-typescript/components/Layouts/CoreLayoutSlideInMenu.tsx +2 -4
- package/app-typescript/components/Layouts/CoreLayoutTopMenu.tsx +8 -9
- package/app-typescript/components/Layouts/HamburgerButton.tsx +13 -14
- package/app-typescript/components/Layouts/HeaderPanel.tsx +1 -5
- package/app-typescript/components/Layouts/Layout.tsx +10 -16
- package/app-typescript/components/Layouts/LayoutContainer.tsx +2 -7
- package/app-typescript/components/Layouts/LeftPanel.tsx +4 -11
- package/app-typescript/components/Layouts/MainMenu.tsx +18 -32
- package/app-typescript/components/Layouts/MainPanel.tsx +10 -11
- package/app-typescript/components/Layouts/NotificationPanel.tsx +20 -29
- package/app-typescript/components/Layouts/OverlayPanel.tsx +3 -5
- package/app-typescript/components/Layouts/PageLayout.tsx +4 -21
- package/app-typescript/components/Layouts/Panel.tsx +45 -81
- package/app-typescript/components/Layouts/index.tsx +39 -39
- package/app-typescript/components/LeftMenu.tsx +51 -53
- package/app-typescript/components/ListItemLoader.tsx +1 -1
- package/app-typescript/components/Lists/BoxedList.tsx +16 -41
- package/app-typescript/components/Lists/CalendarWeekDayItem.tsx +2 -10
- package/app-typescript/components/Lists/ContentList.tsx +68 -62
- package/app-typescript/components/Lists/SimpleList.tsx +13 -12
- package/app-typescript/components/Lists/TableList.tsx +169 -217
- package/app-typescript/components/Lists/index.tsx +2 -2
- package/app-typescript/components/Loader.tsx +1 -3
- package/app-typescript/components/Menu.tsx +2 -4
- package/app-typescript/components/Modal.tsx +21 -21
- package/app-typescript/components/MultiSelect.tsx +6 -6
- package/app-typescript/components/NavButton.tsx +10 -8
- package/app-typescript/components/Navigation/BottomNav.tsx +21 -17
- package/app-typescript/components/Navigation/QuickNavBar.tsx +40 -37
- package/app-typescript/components/Navigation/SideBarMenu.tsx +21 -17
- package/app-typescript/components/Navigation/SideBarTabs.tsx +13 -19
- package/app-typescript/components/Navigation/index.tsx +3 -3
- package/app-typescript/components/Popover.tsx +19 -21
- package/app-typescript/components/PropsList.tsx +2 -4
- package/app-typescript/components/RadioButtonGroup.tsx +48 -45
- package/app-typescript/components/RadioGroup.tsx +9 -8
- package/app-typescript/components/ResizablePanels.tsx +2 -3
- package/app-typescript/components/ResizeObserverComponent.tsx +1 -5
- package/app-typescript/components/SearchBar.tsx +53 -45
- package/app-typescript/components/Select.tsx +6 -8
- package/app-typescript/components/SelectGrid.tsx +32 -40
- package/app-typescript/components/SelectPreview.tsx +31 -25
- package/app-typescript/components/SelectWithTemplate.tsx +10 -11
- package/app-typescript/components/ShowPopup.tsx +30 -46
- package/app-typescript/components/SidebarMenu.tsx +19 -18
- package/app-typescript/components/Skeleton.tsx +12 -11
- package/app-typescript/components/SlidingToolbar.tsx +1 -6
- package/app-typescript/components/Spinner.tsx +2 -6
- package/app-typescript/components/StrechBar.tsx +1 -5
- package/app-typescript/components/SubNav.tsx +10 -8
- package/app-typescript/components/SvgIconIllustration.tsx +477 -105
- package/app-typescript/components/Switch.tsx +14 -12
- package/app-typescript/components/SwitchGroup.tsx +10 -10
- package/app-typescript/components/TabCustom.tsx +28 -35
- package/app-typescript/components/TabList.tsx +13 -10
- package/app-typescript/components/Tag.tsx +21 -24
- package/app-typescript/components/TagInput.tsx +4 -11
- package/app-typescript/components/Text/Heading.tsx +21 -41
- package/app-typescript/components/Text/Text.tsx +16 -12
- package/app-typescript/components/Text/Time.tsx +14 -10
- package/app-typescript/components/ThemeSelector.tsx +15 -14
- package/app-typescript/components/TimePicker.tsx +2 -2
- package/app-typescript/components/TimePickerV2.tsx +20 -20
- package/app-typescript/components/Toast.tsx +11 -7
- package/app-typescript/components/ToastMessage.tsx +3 -14
- package/app-typescript/components/ToastText.tsx +30 -32
- package/app-typescript/components/ToastWrapper.tsx +76 -74
- package/app-typescript/components/ToggleBox/CustomHeaderToggleBox.tsx +30 -45
- package/app-typescript/components/ToggleBox/SimpleToggleBox.tsx +31 -33
- package/app-typescript/components/ToggleBox/index.tsx +3 -7
- package/app-typescript/components/Tooltip.tsx +1 -1
- package/app-typescript/components/TreeMenu.tsx +72 -81
- package/app-typescript/components/TreeSelect/KeyboardNavigation.tsx +1 -5
- package/app-typescript/components/TreeSelect/TreeSelect.tsx +221 -238
- package/app-typescript/components/TreeSelect/TreeSelectItem.tsx +20 -24
- package/app-typescript/components/TreeSelect/TreeSelectPill.tsx +12 -15
- package/app-typescript/components/WithPagination.tsx +34 -39
- package/app-typescript/components/WithPopover.tsx +0 -1
- package/app-typescript/components/WithPortal.tsx +4 -7
- package/app-typescript/components/WithSizeObserver.tsx +2 -6
- package/app-typescript/components/_Positioner.tsx +26 -26
- package/app-typescript/components/avatar/avatar-action-add.tsx +1 -6
- package/app-typescript/components/avatar/avatar-group.tsx +49 -68
- package/app-typescript/components/avatar/avatar-image.tsx +18 -12
- package/app-typescript/components/avatar/avatar-placeholder.tsx +3 -15
- package/app-typescript/components/avatar/avatar-text.tsx +1 -4
- package/app-typescript/components/avatar/avatar-wrapper.tsx +18 -30
- package/app-typescript/components/avatar/avatar.tsx +5 -8
- package/app-typescript/components/with-pagination.spec.tsx +8 -27
- package/app-typescript/helpers.tsx +2 -2
- package/app-typescript/index.ts +111 -100
- package/declarations.d.ts +1 -1
- package/dist/components/Alerts.tsx +171 -78
- package/dist/components/Autocomplete.tsx +187 -78
- package/dist/components/Avatar.tsx +52 -112
- package/dist/components/Badges.tsx +111 -67
- package/dist/components/BigIconFont.tsx +29 -17
- package/dist/components/BoxedList.tsx +244 -114
- package/dist/components/ButtonGroups.tsx +213 -147
- package/dist/components/Buttons.tsx +409 -137
- package/dist/components/Card.tsx +6 -7
- package/dist/components/Carousel.tsx +126 -39
- package/dist/components/Checkboxs.tsx +446 -105
- package/dist/components/Container.tsx +95 -48
- package/dist/components/ContentDivider.tsx +110 -63
- package/dist/components/ContentList.tsx +577 -253
- package/dist/components/CreateButton.tsx +71 -21
- package/dist/components/DatePicker.tsx +102 -26
- package/dist/components/DateTimePicker.tsx +46 -10
- package/dist/components/DragHandleDocs.tsx +56 -26
- package/dist/components/DropZone.tsx +67 -29
- package/dist/components/Dropdowns.tsx +220 -131
- package/dist/components/DurationInput.tsx +92 -32
- package/dist/components/EmptyStates.tsx +61 -26
- package/dist/components/GridItem.tsx +190 -91
- package/dist/components/GridList.tsx +37 -17
- package/dist/components/Heading.tsx +81 -35
- package/dist/components/IconButtons.tsx +125 -32
- package/dist/components/IconFont.tsx +24 -12
- package/dist/components/IconLabels.tsx +146 -39
- package/dist/components/IconPicker.tsx +30 -13
- package/dist/components/IllustrationButton.tsx +40 -20
- package/dist/components/Index.tsx +128 -114
- package/dist/components/Inputs.tsx +153 -51
- package/dist/components/Labels.tsx +191 -117
- package/dist/components/LeftNavigations.tsx +327 -100
- package/dist/components/ListItems.tsx +8 -9
- package/dist/components/Loader.tsx +5 -4
- package/dist/components/Menu.tsx +48 -26
- package/dist/components/Modal.tsx +298 -104
- package/dist/components/MultiSelect.tsx +189 -53
- package/dist/components/NavButtons.tsx +86 -30
- package/dist/components/Panel.tsx +367 -120
- package/dist/components/Popover.tsx +37 -17
- package/dist/components/QuickNavigationBar.tsx +222 -86
- package/dist/components/RadioGroup.tsx +375 -137
- package/dist/components/ResizablePanels.tsx +8 -14
- package/dist/components/SelectGrid.tsx +79 -38
- package/dist/components/SelectWithTemplate.tsx +23 -14
- package/dist/components/Selects.tsx +94 -29
- package/dist/components/SimpleList.tsx +91 -41
- package/dist/components/SubNav.tsx +57 -37
- package/dist/components/Switch.tsx +168 -42
- package/dist/components/TableList.tsx +220 -66
- package/dist/components/Tabs.tsx +149 -64
- package/dist/components/TagInputDocs.tsx +73 -17
- package/dist/components/Tags.tsx +104 -73
- package/dist/components/Text.tsx +108 -58
- package/dist/components/TimePicker.tsx +74 -20
- package/dist/components/Toasts.tsx +162 -80
- package/dist/components/Togglebox.tsx +164 -62
- package/dist/components/Tooltips.tsx +27 -15
- package/dist/components/TreeMenu.tsx +95 -59
- package/dist/components/TreeSelect.tsx +297 -162
- package/dist/components/WithPaginationDocs.tsx +15 -16
- package/dist/components/WithSizeObserver.tsx +9 -9
- package/dist/components/tree-select/TreeSelect.tsx +126 -77
- package/dist/components/tree-select/example-1.tsx +8 -12
- package/dist/components/tree-select/example-2.tsx +2 -5
- package/dist/components/utilities/BorderRadiusUtilities.tsx +28 -13
- package/dist/components/utilities/BorderUtilities.tsx +31 -32
- package/dist/components/utilities/DisplayUtilities.tsx +4 -5
- package/dist/components/utilities/FlexAndGridUtilities.tsx +38 -38
- package/dist/components/utilities/ObjectFitUtilities.tsx +4 -6
- package/dist/components/utilities/ObjectPositionUtilities.tsx +3 -4
- package/dist/components/utilities/OpacityUtilities.tsx +4 -7
- package/dist/components/utilities/OverflowUtilities.tsx +4 -5
- package/dist/components/utilities/PositionUtilities.tsx +4 -5
- package/dist/components/utilities/ShadowUtilities.tsx +15 -16
- package/dist/components/utilities/SpacingUtilities.tsx +483 -178
- package/dist/components/utilities/TextUtilities.tsx +109 -60
- package/dist/design-patterns/Index.tsx +8 -11
- package/dist/design-patterns/ThreePaneLayoutPattern.tsx +92 -76
- package/dist/examples.bundle.css +1257 -1155
- package/dist/examples.bundle.js +6246 -5620
- package/dist/playgrounds/dummy-data/items.ts +9 -8
- package/dist/playgrounds/react-playgrounds/CoreLayout.tsx +559 -277
- package/dist/playgrounds/react-playgrounds/EditorTest.tsx +387 -204
- package/dist/playgrounds/react-playgrounds/FirstPlayground.tsx +74 -52
- package/dist/playgrounds/react-playgrounds/Index.tsx +11 -11
- package/dist/playgrounds/react-playgrounds/Multiedit.tsx +294 -218
- package/dist/playgrounds/react-playgrounds/PageLayoutTest.tsx +151 -105
- package/dist/playgrounds/react-playgrounds/PersonalProfile.tsx +481 -261
- package/dist/playgrounds/react-playgrounds/RundownEditor.tsx +261 -149
- package/dist/playgrounds/react-playgrounds/Rundowns.tsx +757 -395
- package/dist/playgrounds/react-playgrounds/SamsPlayground.tsx +173 -91
- package/dist/playgrounds/react-playgrounds/TestGround.tsx +1364 -818
- package/dist/playgrounds/react-playgrounds/UiPlayground.tsx +178 -86
- package/dist/playgrounds/react-playgrounds/components/AuthoringContainer.tsx +6 -7
- package/dist/playgrounds/react-playgrounds/components/AuthoringContent.tsx +42 -42
- package/dist/playgrounds/react-playgrounds/components/ContentSplitter.tsx +5 -8
- package/dist/playgrounds/react-playgrounds/components/GraphicButton.tsx +11 -11
- package/dist/playgrounds/react-playgrounds/components/GraphicButtonsGroup.tsx +2 -6
- package/dist/playgrounds/react-playgrounds/components/HeaderPanel.tsx +1 -5
- package/dist/playgrounds/react-playgrounds/components/Index.tsx +19 -21
- package/dist/playgrounds/react-playgrounds/components/Layout.tsx +11 -17
- package/dist/playgrounds/react-playgrounds/components/LayoutContainer.tsx +1 -1
- package/dist/playgrounds/react-playgrounds/components/MainPanel.tsx +11 -12
- package/dist/playgrounds/react-playgrounds/components/OverlayPanel.tsx +3 -5
- package/dist/playgrounds/react-playgrounds/components/Panel.tsx +6 -7
- package/dist/playgrounds/react-playgrounds/components/PanelContent.tsx +1 -5
- package/dist/playgrounds/react-playgrounds/components/PanelContentBlock.tsx +1 -6
- package/dist/playgrounds/react-playgrounds/components/PanelHeader.tsx +3 -3
- package/dist/playgrounds/react-playgrounds/components/SearchBar.tsx +16 -12
- package/dist/playgrounds/react-playgrounds/components/SidebarMenu.tsx +23 -14
- package/dist/playgrounds/react-playgrounds/components/SubNav.tsx +1 -5
- package/dist/playgrounds/react-playgrounds/components/ThemeDropdown.tsx +14 -11
- package/dist/playgrounds/react-playgrounds/tsconfig.json +1 -1
- package/dist/superdesk-ui.bundle.css +0 -3
- package/dist/superdesk-ui.bundle.js +1791 -1865
- package/dist/vendor.bundle.js +2 -2
- package/examples/css/docs-page.css +1135 -1116
- package/examples/css/reset.css +124 -43
- package/examples/css/vendor.css +125 -125
- package/examples/index.js +138 -139
- package/examples/js/doc.js +41 -40
- package/examples/js/react.js +82 -48
- package/examples/pages/components/Alerts.tsx +171 -78
- package/examples/pages/components/Autocomplete.tsx +187 -78
- package/examples/pages/components/Avatar.tsx +52 -112
- package/examples/pages/components/Badges.tsx +111 -67
- package/examples/pages/components/BigIconFont.tsx +29 -17
- package/examples/pages/components/BoxedList.tsx +244 -114
- package/examples/pages/components/ButtonGroups.tsx +213 -147
- package/examples/pages/components/Buttons.tsx +409 -137
- package/examples/pages/components/Card.tsx +6 -7
- package/examples/pages/components/Carousel.tsx +126 -39
- package/examples/pages/components/Checkboxs.tsx +446 -105
- package/examples/pages/components/Container.tsx +95 -48
- package/examples/pages/components/ContentDivider.tsx +110 -63
- package/examples/pages/components/ContentList.tsx +577 -253
- package/examples/pages/components/CreateButton.tsx +71 -21
- package/examples/pages/components/DatePicker.tsx +102 -26
- package/examples/pages/components/DateTimePicker.tsx +46 -10
- package/examples/pages/components/DragHandleDocs.tsx +56 -26
- package/examples/pages/components/DropZone.tsx +67 -29
- package/examples/pages/components/Dropdowns.tsx +220 -131
- package/examples/pages/components/DurationInput.tsx +92 -32
- package/examples/pages/components/EmptyStates.tsx +61 -26
- package/examples/pages/components/GridItem.tsx +190 -91
- package/examples/pages/components/GridList.tsx +37 -17
- package/examples/pages/components/Heading.tsx +81 -35
- package/examples/pages/components/IconButtons.tsx +125 -32
- package/examples/pages/components/IconFont.tsx +24 -12
- package/examples/pages/components/IconLabels.tsx +146 -39
- package/examples/pages/components/IconPicker.tsx +30 -13
- package/examples/pages/components/IllustrationButton.tsx +40 -20
- package/examples/pages/components/Index.tsx +128 -114
- package/examples/pages/components/Inputs.tsx +153 -51
- package/examples/pages/components/Labels.tsx +191 -117
- package/examples/pages/components/LeftNavigations.tsx +327 -100
- package/examples/pages/components/ListItems.tsx +8 -9
- package/examples/pages/components/Loader.tsx +5 -4
- package/examples/pages/components/Menu.tsx +48 -26
- package/examples/pages/components/Modal.tsx +298 -104
- package/examples/pages/components/MultiSelect.tsx +189 -53
- package/examples/pages/components/NavButtons.tsx +86 -30
- package/examples/pages/components/Panel.tsx +367 -120
- package/examples/pages/components/Popover.tsx +37 -17
- package/examples/pages/components/QuickNavigationBar.tsx +222 -86
- package/examples/pages/components/RadioGroup.tsx +375 -137
- package/examples/pages/components/ResizablePanels.tsx +8 -14
- package/examples/pages/components/SelectGrid.tsx +79 -38
- package/examples/pages/components/SelectWithTemplate.tsx +23 -14
- package/examples/pages/components/Selects.tsx +94 -29
- package/examples/pages/components/SimpleList.tsx +91 -41
- package/examples/pages/components/SubNav.tsx +57 -37
- package/examples/pages/components/Switch.tsx +168 -42
- package/examples/pages/components/TableList.tsx +220 -66
- package/examples/pages/components/Tabs.tsx +149 -64
- package/examples/pages/components/TagInputDocs.tsx +73 -17
- package/examples/pages/components/Tags.tsx +104 -73
- package/examples/pages/components/Text.tsx +108 -58
- package/examples/pages/components/TimePicker.tsx +74 -20
- package/examples/pages/components/Toasts.tsx +162 -80
- package/examples/pages/components/Togglebox.tsx +164 -62
- package/examples/pages/components/Tooltips.tsx +27 -15
- package/examples/pages/components/TreeMenu.tsx +95 -59
- package/examples/pages/components/TreeSelect.tsx +297 -162
- package/examples/pages/components/WithPaginationDocs.tsx +15 -16
- package/examples/pages/components/WithSizeObserver.tsx +9 -9
- package/examples/pages/components/tree-select/TreeSelect.tsx +126 -77
- package/examples/pages/components/tree-select/example-1.tsx +8 -12
- package/examples/pages/components/tree-select/example-2.tsx +2 -5
- package/examples/pages/components/utilities/BorderRadiusUtilities.tsx +28 -13
- package/examples/pages/components/utilities/BorderUtilities.tsx +31 -32
- package/examples/pages/components/utilities/DisplayUtilities.tsx +4 -5
- package/examples/pages/components/utilities/FlexAndGridUtilities.tsx +38 -38
- package/examples/pages/components/utilities/ObjectFitUtilities.tsx +4 -6
- package/examples/pages/components/utilities/ObjectPositionUtilities.tsx +3 -4
- package/examples/pages/components/utilities/OpacityUtilities.tsx +4 -7
- package/examples/pages/components/utilities/OverflowUtilities.tsx +4 -5
- package/examples/pages/components/utilities/PositionUtilities.tsx +4 -5
- package/examples/pages/components/utilities/ShadowUtilities.tsx +15 -16
- package/examples/pages/components/utilities/SpacingUtilities.tsx +483 -178
- package/examples/pages/components/utilities/TextUtilities.tsx +109 -60
- package/examples/pages/design-patterns/Index.tsx +8 -11
- package/examples/pages/design-patterns/ThreePaneLayoutPattern.tsx +92 -76
- package/examples/pages/playgrounds/dummy-data/items.ts +9 -8
- package/examples/pages/playgrounds/react-playgrounds/CoreLayout.tsx +559 -277
- package/examples/pages/playgrounds/react-playgrounds/EditorTest.tsx +387 -204
- package/examples/pages/playgrounds/react-playgrounds/FirstPlayground.tsx +74 -52
- package/examples/pages/playgrounds/react-playgrounds/Index.tsx +11 -11
- package/examples/pages/playgrounds/react-playgrounds/Multiedit.tsx +294 -218
- package/examples/pages/playgrounds/react-playgrounds/PageLayoutTest.tsx +151 -105
- package/examples/pages/playgrounds/react-playgrounds/PersonalProfile.tsx +481 -261
- package/examples/pages/playgrounds/react-playgrounds/RundownEditor.tsx +261 -149
- package/examples/pages/playgrounds/react-playgrounds/Rundowns.tsx +757 -395
- package/examples/pages/playgrounds/react-playgrounds/SamsPlayground.tsx +173 -91
- package/examples/pages/playgrounds/react-playgrounds/TestGround.tsx +1364 -818
- package/examples/pages/playgrounds/react-playgrounds/UiPlayground.tsx +178 -86
- package/examples/pages/playgrounds/react-playgrounds/components/AuthoringContainer.tsx +6 -7
- package/examples/pages/playgrounds/react-playgrounds/components/AuthoringContent.tsx +42 -42
- package/examples/pages/playgrounds/react-playgrounds/components/ContentSplitter.tsx +5 -8
- package/examples/pages/playgrounds/react-playgrounds/components/GraphicButton.tsx +11 -11
- package/examples/pages/playgrounds/react-playgrounds/components/GraphicButtonsGroup.tsx +2 -6
- package/examples/pages/playgrounds/react-playgrounds/components/HeaderPanel.tsx +1 -5
- package/examples/pages/playgrounds/react-playgrounds/components/Index.tsx +19 -21
- package/examples/pages/playgrounds/react-playgrounds/components/Layout.tsx +11 -17
- package/examples/pages/playgrounds/react-playgrounds/components/LayoutContainer.tsx +1 -1
- package/examples/pages/playgrounds/react-playgrounds/components/MainPanel.tsx +11 -12
- package/examples/pages/playgrounds/react-playgrounds/components/OverlayPanel.tsx +3 -5
- package/examples/pages/playgrounds/react-playgrounds/components/Panel.tsx +6 -7
- package/examples/pages/playgrounds/react-playgrounds/components/PanelContent.tsx +1 -5
- package/examples/pages/playgrounds/react-playgrounds/components/PanelContentBlock.tsx +1 -6
- package/examples/pages/playgrounds/react-playgrounds/components/PanelHeader.tsx +3 -3
- package/examples/pages/playgrounds/react-playgrounds/components/SearchBar.tsx +16 -12
- package/examples/pages/playgrounds/react-playgrounds/components/SidebarMenu.tsx +23 -14
- package/examples/pages/playgrounds/react-playgrounds/components/SubNav.tsx +1 -5
- package/examples/pages/playgrounds/react-playgrounds/components/ThemeDropdown.tsx +14 -11
- package/examples/pages/playgrounds/react-playgrounds/tsconfig.json +1 -1
- package/globals.d.ts +1 -1
- package/mocha-setup.ts +3 -3
- package/package.json +119 -117
- package/react/components/Alert.js +6 -9
- package/react/components/Autocomplete.js +15 -23
- package/react/components/Badge.js +1 -1
- package/react/components/Button.js +4 -6
- package/react/components/ButtonGroup.js +1 -1
- package/react/components/Carousel.js +3 -3
- package/react/components/CheckButtonGroup.js +3 -6
- package/react/components/CheckboxButton.js +2 -4
- package/react/components/ContentDivider.js +1 -1
- package/react/components/DatePicker.js +29 -26
- package/react/components/DateTimePicker.d.ts +26 -4
- package/react/components/DateTimePicker.js +82 -27
- package/react/components/Divider.js +1 -1
- package/react/components/DonutChart.js +1 -1
- package/react/components/DragHandle.js +1 -1
- package/react/components/DragHandleDots.js +1 -1
- package/react/components/DropZone.js +6 -8
- package/react/components/Dropdown.d.ts +1 -1
- package/react/components/Dropdown.js +34 -38
- package/react/components/DropdownFirst.d.ts +11 -11
- package/react/components/DropdownFirst.js +20 -24
- package/react/components/DurationInput.js +37 -34
- package/react/components/EmptyState.js +5 -5
- package/react/components/Form/FormGroup.js +1 -1
- package/react/components/Form/FormItem.js +1 -1
- package/react/components/Form/FormRow.js +1 -1
- package/react/components/Form/FormRowNew.js +3 -3
- package/react/components/Form/FormText.js +1 -1
- package/react/components/Form/InputNew.js +3 -3
- package/react/components/Form/InputWrapper.js +7 -10
- package/react/components/GridItem.d.ts +1 -1
- package/react/components/GridItem.js +16 -16
- package/react/components/GridList.js +1 -1
- package/react/components/HeadingText.js +4 -5
- package/react/components/IconLabel.js +3 -5
- package/react/components/IconPicker.d.ts +1 -1
- package/react/components/IconPicker.js +111 -104
- package/react/components/IllustrationButton.js +1 -1
- package/react/components/Input.js +1 -1
- package/react/components/Layouts/AuthorinInnerSideBar.js +1 -1
- package/react/components/Layouts/AuthoringContainer.js +1 -1
- package/react/components/Layouts/AuthoringFrame.js +4 -4
- package/react/components/Layouts/AuthoringFrameContainer.js +1 -1
- package/react/components/Layouts/AuthoringFrameLeftBar.js +1 -1
- package/react/components/Layouts/AuthoringFrameMain.js +1 -1
- package/react/components/Layouts/AuthoringFrameNavBar.js +1 -1
- package/react/components/Layouts/AuthoringFrameOverlay.js +1 -1
- package/react/components/Layouts/AuthoringFrameRightBar.js +1 -1
- package/react/components/Layouts/AuthoringFrameSidePanel.js +1 -1
- package/react/components/Layouts/AuthoringFrameSidePanelOverlay.js +1 -1
- package/react/components/Layouts/AuthoringMainContainer.js +1 -1
- package/react/components/Layouts/AuthoringMainContent.js +1 -1
- package/react/components/Layouts/AuthoringMainToolBar.js +1 -1
- package/react/components/Layouts/BottomBarAction.js +2 -2
- package/react/components/Layouts/ContentSplitter.js +1 -1
- package/react/components/Layouts/CoreLayout.js +2 -2
- package/react/components/Layouts/CoreLayoutContainer.js +1 -1
- package/react/components/Layouts/CoreLayoutFooter.js +1 -1
- package/react/components/Layouts/CoreLayoutOverlay.js +1 -1
- package/react/components/Layouts/CoreLayoutSlideInMenu.js +2 -2
- package/react/components/Layouts/CoreLayoutTopMenu.js +3 -3
- package/react/components/Layouts/HamburgerButton.js +1 -1
- package/react/components/Layouts/HeaderPanel.js +1 -1
- package/react/components/Layouts/Layout.d.ts +1 -1
- package/react/components/Layouts/Layout.js +9 -9
- package/react/components/Layouts/LayoutContainer.js +1 -1
- package/react/components/Layouts/LeftPanel.js +1 -1
- package/react/components/Layouts/MainMenu.js +8 -10
- package/react/components/Layouts/MainPanel.js +1 -1
- package/react/components/Layouts/NotificationPanel.d.ts +1 -1
- package/react/components/Layouts/NotificationPanel.js +7 -7
- package/react/components/Layouts/OverlayPanel.js +3 -3
- package/react/components/Layouts/PageLayout.js +2 -2
- package/react/components/Layouts/Panel.d.ts +1 -1
- package/react/components/Layouts/Panel.js +12 -18
- package/react/components/LeftMenu.d.ts +3 -3
- package/react/components/LeftMenu.js +11 -13
- package/react/components/Lists/BoxedList.js +6 -6
- package/react/components/Lists/CalendarWeekDayItem.js +2 -2
- package/react/components/Lists/ContentList.js +24 -26
- package/react/components/Lists/TableList.d.ts +1 -1
- package/react/components/Lists/TableList.js +59 -79
- package/react/components/Loader.js +1 -1
- package/react/components/Menu.js +1 -1
- package/react/components/Modal.d.ts +1 -1
- package/react/components/MultiSelect.d.ts +1 -1
- package/react/components/MultiSelect.js +2 -2
- package/react/components/NavButton.js +2 -4
- package/react/components/Navigation/BottomNav.js +9 -8
- package/react/components/Navigation/QuickNavBar.js +17 -20
- package/react/components/Navigation/SideBarMenu.js +11 -9
- package/react/components/Navigation/SideBarTabs.js +9 -8
- package/react/components/Popover.js +1 -1
- package/react/components/RadioButtonGroup.js +15 -23
- package/react/components/ResizablePanels.js +1 -3
- package/react/components/ResizeObserverComponent.js +1 -3
- package/react/components/SearchBar.js +14 -16
- package/react/components/Select.js +3 -3
- package/react/components/SelectGrid.js +15 -20
- package/react/components/SelectPreview.js +13 -13
- package/react/components/SelectWithTemplate.js +3 -5
- package/react/components/ShowPopup.js +7 -10
- package/react/components/Skeleton.js +1 -1
- package/react/components/SlidingToolbar.js +1 -1
- package/react/components/Spinner.js +1 -1
- package/react/components/StrechBar.js +1 -1
- package/react/components/SubNav.js +1 -1
- package/react/components/Switch.js +4 -6
- package/react/components/SwitchGroup.js +1 -1
- package/react/components/TabCustom.js +6 -4
- package/react/components/TabList.js +4 -8
- package/react/components/Tag.js +13 -17
- package/react/components/TagInput.js +1 -1
- package/react/components/Text/Heading.js +6 -6
- package/react/components/ThemeSelector.js +1 -1
- package/react/components/TimePickerV2.js +17 -17
- package/react/components/Toast.js +3 -3
- package/react/components/ToastMessage.d.ts +1 -1
- package/react/components/ToastMessage.js +1 -1
- package/react/components/ToastText.js +5 -8
- package/react/components/ToastWrapper.js +3 -5
- package/react/components/ToggleBox/CustomHeaderToggleBox.d.ts +1 -1
- package/react/components/ToggleBox/CustomHeaderToggleBox.js +7 -7
- package/react/components/ToggleBox/SimpleToggleBox.d.ts +1 -1
- package/react/components/ToggleBox/SimpleToggleBox.js +5 -5
- package/react/components/ToggleBox/index.js +3 -3
- package/react/components/TreeMenu.d.ts +1 -1
- package/react/components/TreeMenu.js +38 -44
- package/react/components/TreeSelect/TreeSelect.d.ts +2 -2
- package/react/components/TreeSelect/TreeSelect.js +105 -127
- package/react/components/TreeSelect/TreeSelectItem.d.ts +1 -1
- package/react/components/TreeSelect/TreeSelectItem.js +10 -13
- package/react/components/TreeSelect/TreeSelectPill.d.ts +1 -1
- package/react/components/TreeSelect/TreeSelectPill.js +8 -9
- package/react/components/WithPagination.js +18 -21
- package/react/components/WithPortal.d.ts +1 -1
- package/react/components/WithPortal.js +2 -1
- package/react/components/WithSizeObserver.js +1 -3
- package/react/components/_Positioner.js +11 -11
- package/react/components/avatar/avatar-action-add.js +1 -1
- package/react/components/avatar/avatar-group.js +11 -14
- package/react/components/avatar/avatar-image.js +6 -4
- package/react/components/avatar/avatar-placeholder.js +1 -1
- package/react/components/avatar/avatar-wrapper.js +2 -4
- package/react/components/avatar/avatar.js +4 -3
- package/react/helpers.js +2 -2
- package/react/index.d.ts +1 -1
- package/tasks/webpack.dev.js +1 -1
- package/tasks/webpack.js +5 -5
- package/tasks/webpack.prod.js +1 -5
- package/tsconfig.json +2 -5
- package/tslint.json +6 -12
- package/webpack.config.js +2 -5
@@ -70,8 +70,10 @@ var IconPicker = /** @class */ (function (_super) {
|
|
70
70
|
return new Promise(function (resolve) {
|
71
71
|
var icons = __spreadArray([], _this.state.icons, true);
|
72
72
|
if (searchString) {
|
73
|
-
icons = icons.filter(function (icon) {
|
74
|
-
icon.
|
73
|
+
icons = icons.filter(function (icon) {
|
74
|
+
return icon.value.toLowerCase().includes(searchString) ||
|
75
|
+
icon.label.toLowerCase().includes(searchString);
|
76
|
+
});
|
75
77
|
}
|
76
78
|
resolve(icons);
|
77
79
|
});
|
@@ -79,7 +81,9 @@ var IconPicker = /** @class */ (function (_super) {
|
|
79
81
|
_this.onChange = function (item) {
|
80
82
|
_this.props.onChange(item.value);
|
81
83
|
};
|
82
|
-
_this.triggerTemplate = function (props) { return (React.createElement(Button_1.Button, { icon: _this.props.value, text: _this.props.value, onClick: function (e) {
|
84
|
+
_this.triggerTemplate = function (props) { return (React.createElement(Button_1.Button, { icon: _this.props.value, text: _this.props.value, onClick: function (e) {
|
85
|
+
props.onClick(e);
|
86
|
+
}, iconOnly: true })); };
|
83
87
|
_this.itemTemplate = function (_a) {
|
84
88
|
var item = _a.item;
|
85
89
|
return item && (React.createElement(React.Fragment, null,
|
@@ -90,15 +94,16 @@ var IconPicker = /** @class */ (function (_super) {
|
|
90
94
|
return _this;
|
91
95
|
}
|
92
96
|
IconPicker.prototype.componentDidMount = function () {
|
93
|
-
var translateFunction = this.props.translateFunction
|
94
|
-
this.props.translateFunction
|
97
|
+
var translateFunction = this.props.translateFunction
|
98
|
+
? this.props.translateFunction
|
99
|
+
: function (text) { return text; };
|
95
100
|
this.setState({
|
96
101
|
icons: getIcons(translateFunction),
|
97
102
|
});
|
98
103
|
};
|
99
104
|
IconPicker.prototype.render = function () {
|
100
105
|
var _a, _b;
|
101
|
-
return (React.createElement(SelectGrid_1.SelectGrid, { label: (_a = this.props.label) !== null && _a !== void 0 ? _a :
|
106
|
+
return (React.createElement(SelectGrid_1.SelectGrid, { label: (_a = this.props.label) !== null && _a !== void 0 ? _a : 'Icon', filterPlaceholder: (_b = this.props.filterPlaceholder) !== null && _b !== void 0 ? _b : 'Search...', getItems: this.getItems, onChange: this.onChange, itemTemplate: this.itemTemplate, triggerTemplate: this.triggerTemplate }));
|
102
107
|
};
|
103
108
|
return IconPicker;
|
104
109
|
}(React.PureComponent));
|
@@ -107,30 +112,30 @@ var getIcons = function (translateFunction) {
|
|
107
112
|
var translatedIconNameMap = {
|
108
113
|
'add-gallery': 'Add Gallery',
|
109
114
|
'add-image': 'Add Image',
|
110
|
-
|
115
|
+
adjust: 'Adjust',
|
111
116
|
'align-center': 'Align Center',
|
112
117
|
'align-justify': 'Align Justify',
|
113
118
|
'align-left': 'Align Left',
|
114
119
|
'align-right': 'Align Right',
|
115
|
-
|
116
|
-
|
117
|
-
|
120
|
+
amp: 'AMP',
|
121
|
+
analytics: 'Analytics',
|
122
|
+
archive: 'Archive',
|
118
123
|
'arrow-left': 'Arrow Left',
|
119
124
|
'arrow-right': 'Arrow Right',
|
120
125
|
'arrow-small': 'Arrow Small',
|
121
|
-
|
122
|
-
|
123
|
-
|
126
|
+
ascending: 'Ascending',
|
127
|
+
assign: 'Assign',
|
128
|
+
attachment: 'Attachment',
|
124
129
|
'attachment-large': 'Attachment Large',
|
125
|
-
|
130
|
+
audio: 'Audio',
|
126
131
|
'backward-thin': 'Backward Thin',
|
127
132
|
'ban-circle': 'Ban Circle',
|
128
|
-
|
129
|
-
|
130
|
-
|
133
|
+
bell: 'Bell',
|
134
|
+
bold: 'Bold',
|
135
|
+
broadcast: 'Broadcast',
|
131
136
|
'broadcast-create': 'Broadcast Create',
|
132
|
-
|
133
|
-
|
137
|
+
business: 'Business',
|
138
|
+
calendar: 'Calendar',
|
134
139
|
'calendar-list': 'Calendar List',
|
135
140
|
'chevron-down-thin': 'Chevron Down Thin',
|
136
141
|
'chevron-left-thin': 'Chevron Left Thin',
|
@@ -140,42 +145,42 @@ var getIcons = function (translateFunction) {
|
|
140
145
|
'clear-format': 'Clear Format',
|
141
146
|
'close-small': 'Close Small',
|
142
147
|
'close-thick': 'Close Thick',
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
148
|
+
code: 'Code',
|
149
|
+
collapse: 'Collapse',
|
150
|
+
comment: 'Comment',
|
151
|
+
composite: 'Composite',
|
152
|
+
copy: 'Copy',
|
153
|
+
crop: 'Crop',
|
154
|
+
cut: 'Cut',
|
155
|
+
descending: 'Descending',
|
156
|
+
dots: 'Dots',
|
152
157
|
'dots-vertical': 'Dots Vertical',
|
153
|
-
|
158
|
+
download: 'Download',
|
154
159
|
'download-alt': 'Download Alternate',
|
155
160
|
'edit-line': 'Edit Line',
|
156
|
-
|
157
|
-
|
161
|
+
envelope: 'Envelope',
|
162
|
+
event: 'Event',
|
158
163
|
'exclamation-sign': 'Exclamation Sign',
|
159
|
-
|
164
|
+
expand: 'Expand',
|
160
165
|
'expand-thin': 'Expand Thin',
|
161
|
-
|
166
|
+
external: 'External',
|
162
167
|
'eye-open': 'Eye Open',
|
163
|
-
|
168
|
+
facebook: 'Facebook',
|
164
169
|
'facebook-circle': 'Facebook Circle',
|
165
|
-
|
166
|
-
|
170
|
+
fast_forward: 'Fast Forward',
|
171
|
+
fast_rewind: 'Fast Rewind',
|
167
172
|
'fetch-as': 'Fetch As',
|
168
|
-
|
173
|
+
file: 'File',
|
169
174
|
'filter-large': 'Filter Large',
|
170
175
|
'flip-horizontal': 'Flip Horizontal',
|
171
176
|
'flip-vertical': 'Flip Vertical',
|
172
177
|
'folder-close': 'Folder Close',
|
173
178
|
'folder-open': 'Folder Open',
|
174
|
-
|
179
|
+
font: 'Font',
|
175
180
|
'forward-thin': 'Forward Thin',
|
176
|
-
|
177
|
-
|
178
|
-
|
181
|
+
fullscreen: 'Fullscreen',
|
182
|
+
globe: 'Globe',
|
183
|
+
graphic: 'Graphic',
|
179
184
|
'grid-view': 'Grid View',
|
180
185
|
'grid-view-large': 'Grid View Large',
|
181
186
|
'heading-1': 'Heading 1',
|
@@ -184,112 +189,114 @@ var getIcons = function (translateFunction) {
|
|
184
189
|
'heading-4': 'Heading 4',
|
185
190
|
'heading-5': 'Heading 5',
|
186
191
|
'heading-6': 'Heading 6',
|
187
|
-
|
192
|
+
heart: 'Heart',
|
188
193
|
'help-large': 'Help Large',
|
189
194
|
'highlight-package': 'Highlight Package',
|
190
|
-
|
195
|
+
home: 'Home',
|
191
196
|
'indent-left': 'Indent Left',
|
192
197
|
'indent-right': 'Indent Right',
|
193
198
|
'info-large': 'Info Large',
|
194
199
|
'info-sign': 'Info Sign',
|
195
|
-
|
196
|
-
|
197
|
-
|
200
|
+
ingest: 'Ingest',
|
201
|
+
instagram: 'Instagram',
|
202
|
+
italic: 'Italic',
|
198
203
|
'kanban-view': 'Kanban View',
|
199
|
-
|
200
|
-
|
204
|
+
kill: 'Kill',
|
205
|
+
link: 'Link',
|
201
206
|
'linked-in': 'LinkedIn',
|
202
207
|
'linked-in-circle': 'LinkedIn Circle',
|
203
208
|
'list-alt': 'List Alternate',
|
204
209
|
'list-menu': 'List Menu',
|
205
210
|
'list-plus': 'List Plus',
|
206
211
|
'list-view': 'List View',
|
207
|
-
|
212
|
+
lock: 'Lock',
|
208
213
|
'map-marker': 'Map Marker',
|
209
214
|
'minus-sign': 'Minus Sign',
|
210
215
|
'minus-small': 'Minus Small',
|
211
|
-
|
212
|
-
|
216
|
+
mobile: 'Mobile',
|
217
|
+
move: 'Move',
|
213
218
|
'multi-star': 'Multi Start',
|
214
|
-
|
219
|
+
multiedit: 'Multi Edit',
|
215
220
|
'new-doc': 'New Document',
|
216
|
-
|
221
|
+
ok: 'Okay',
|
217
222
|
'ordered-list': 'Ordered List',
|
218
223
|
'package-create': 'Package Create',
|
219
224
|
'package-plus': 'Package Plus',
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
225
|
+
paragraph: 'Paragraph',
|
226
|
+
paste: 'Paste',
|
227
|
+
pause: 'Pause',
|
228
|
+
paywall: 'Paywall',
|
229
|
+
pencil: 'Pencil',
|
230
|
+
phone: 'Phone',
|
231
|
+
photo: 'Photo',
|
232
|
+
pick: 'Pick',
|
233
|
+
picture: 'Picture',
|
234
|
+
pin: 'Pin',
|
235
|
+
play: 'Play',
|
231
236
|
'plus-large': 'Plus Large',
|
232
237
|
'plus-sign': 'Plus Sign',
|
233
238
|
'plus-small': 'Plus Small',
|
234
|
-
|
235
|
-
|
239
|
+
post: 'Post',
|
240
|
+
preformatted: 'Preformatted',
|
236
241
|
'preview-mode': 'Preview Mode',
|
237
|
-
|
242
|
+
print: 'Print',
|
238
243
|
'question-sign': 'Question Sign',
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
+
quote: 'Quote',
|
245
|
+
random: 'Random',
|
246
|
+
recurring: 'Recurring',
|
247
|
+
redo: 'Redo',
|
248
|
+
refresh: 'Refresh',
|
244
249
|
'remove-sign': 'Remove Sign',
|
245
|
-
|
246
|
-
|
247
|
-
|
250
|
+
repeat: 'Repeat',
|
251
|
+
retweet: 'Retweet',
|
252
|
+
revert: 'Revert',
|
248
253
|
'rotate-left': 'Rotate Left',
|
249
254
|
'rotate-right': 'Rotate Right',
|
250
|
-
|
251
|
-
|
255
|
+
search: 'Search',
|
256
|
+
settings: 'Settings',
|
252
257
|
'share-alt': 'Share Alternate',
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
+
signal: 'Signal',
|
259
|
+
skip_next: 'Skip Next',
|
260
|
+
skip_previous: 'Skip Previous',
|
261
|
+
slideshow: 'Slideshow',
|
262
|
+
star: 'Star',
|
258
263
|
'star-empty': 'Star Empty',
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
264
|
+
stop: 'Stop',
|
265
|
+
stream: 'Stream',
|
266
|
+
strikethrough: 'Strikethrough',
|
267
|
+
subscript: 'Subscript',
|
268
|
+
suggestion: 'Suggestion',
|
269
|
+
superscript: 'Superscript',
|
270
|
+
switches: 'Switches',
|
271
|
+
table: 'Table',
|
267
272
|
'takes-package': 'Takes Package',
|
268
|
-
|
269
|
-
|
273
|
+
tasks: 'Tasks',
|
274
|
+
text: 'Text',
|
270
275
|
'text-format': 'Text Format',
|
271
|
-
|
276
|
+
th: 'Table Header',
|
272
277
|
'th-large': 'Table Header Large',
|
273
278
|
'th-list': 'Table Header List',
|
274
|
-
|
279
|
+
time: 'Time',
|
275
280
|
'to-lowercase': 'To Lowercase',
|
276
281
|
'to-uppercase': 'To Uppercase',
|
277
|
-
|
278
|
-
|
282
|
+
trash: 'Trash',
|
283
|
+
twitter: 'Twitter',
|
279
284
|
'twitter-circle': 'Twitter Circle',
|
280
|
-
|
281
|
-
|
282
|
-
|
285
|
+
underline: 'Underline',
|
286
|
+
undo: 'Undo',
|
287
|
+
unlocked: 'Unlocked',
|
283
288
|
'unordered-list': 'Unordered List',
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
289
|
+
unspike: 'Unspike',
|
290
|
+
upload: 'Upload',
|
291
|
+
user: 'User',
|
292
|
+
video: 'Video',
|
288
293
|
'warning-sign': 'Warning Sign',
|
289
294
|
'zoom-in': 'Zoom In',
|
290
295
|
'zoom-out': 'Zoom Out',
|
291
296
|
};
|
292
|
-
return Object.keys(translatedIconNameMap)
|
297
|
+
return Object.keys(translatedIconNameMap)
|
298
|
+
.sort()
|
299
|
+
.map(function (icon) { return ({
|
293
300
|
value: icon,
|
294
301
|
label: translateFunction(translatedIconNameMap[icon]),
|
295
302
|
}); });
|
@@ -65,7 +65,7 @@ var IllustrationButton = /** @class */ (function (_super) {
|
|
65
65
|
});
|
66
66
|
return (React.createElement("button", { className: classes, tabIndex: 0, onClick: this.props.onClick },
|
67
67
|
this.props.children,
|
68
|
-
React.createElement("span", { className:
|
68
|
+
React.createElement("span", { className: "illustration-button__text-label" }, this.props.text)));
|
69
69
|
};
|
70
70
|
return IllustrationButton;
|
71
71
|
}(React.PureComponent));
|
@@ -78,7 +78,7 @@ var Input = /** @class */ (function (_super) {
|
|
78
78
|
React.createElement("span", null, this.props.value)));
|
79
79
|
}
|
80
80
|
return (React.createElement(InputWrapper_1.InputWrapper, { label: this.props.label, required: this.props.required, disabled: this.props.disabled, value: this.props.value, error: this.props.error, invalid: this.props.error != null, info: this.props.info, maxLength: this.props.maxLength, inlineLabel: this.props.inlineLabel, labelHidden: this.props.labelHidden, size: (_a = this.props.size) !== null && _a !== void 0 ? _a : 'medium', fullWidth: this.props.fullWidth, htmlId: this.htmlId, boxedStyle: this.props.boxedStyle, boxedLable: this.props.boxedLable, tabindex: this.props.tabindex, inputWrapper: this.props.inputWrapper },
|
81
|
-
React.createElement("input", { className:
|
81
|
+
React.createElement("input", { className: "sd-input__input", type: (_b = this.props.type) !== null && _b !== void 0 ? _b : 'text', id: this.htmlId, value: this.props.value, "aria-describedby": this.htmlId + 'label', tabIndex: this.props.tabindex, onChange: this.handleChange, placeholder: this.props.placeholder, disabled: this.props.disabled, "data-test-id": this.props['data-test-id'] })));
|
82
82
|
};
|
83
83
|
return Input;
|
84
84
|
}(React.Component));
|
@@ -56,7 +56,7 @@ var AuthorinInnerSideBar = /** @class */ (function (_super) {
|
|
56
56
|
return _super !== null && _super.apply(this, arguments) || this;
|
57
57
|
}
|
58
58
|
AuthorinInnerSideBar.prototype.render = function () {
|
59
|
-
return
|
59
|
+
return React.createElement("div", { className: "sd-editor-content__authoring-bookmark-bar " }, this.props.children);
|
60
60
|
};
|
61
61
|
return AuthorinInnerSideBar;
|
62
62
|
}(React.PureComponent));
|
@@ -70,7 +70,7 @@ var AuthoringContainer = /** @class */ (function (_super) {
|
|
70
70
|
_b["sd-editor__container--large"] = this.props.large,
|
71
71
|
_b));
|
72
72
|
return (React.createElement("div", { className: classes },
|
73
|
-
React.createElement("div", { className:
|
73
|
+
React.createElement("div", { className: "sd-editor__container-wrapper" },
|
74
74
|
React.createElement("div", { className: classesContainerInner }, this.props.children))));
|
75
75
|
};
|
76
76
|
return AuthoringContainer;
|
@@ -59,13 +59,13 @@ var AuthoringFrame = /** @class */ (function (_super) {
|
|
59
59
|
}
|
60
60
|
AuthoringFrame.prototype.render = function () {
|
61
61
|
return (React.createElement(_1.AuthoringFrameContainer, null,
|
62
|
-
this.props.header &&
|
63
|
-
this.props.leftPanel &&
|
64
|
-
this.props.main &&
|
62
|
+
this.props.header && React.createElement(_1.AuthoringFrameNavBar, null, this.props.header),
|
63
|
+
this.props.leftPanel && React.createElement(_1.AuthoringFrameLeftBar, null, this.props.leftPanel),
|
64
|
+
this.props.main && React.createElement(_1.AuthoringFrameMain, null, this.props.main),
|
65
65
|
this.props.sidePanel && (React.createElement(_1.AuthoringFrameSidePanel, { opened: this.props.sidePanelOpen, pinned: this.props.sidePanelPinned }, this.props.sidePanel)),
|
66
66
|
this.props.sideOverlay && (React.createElement(_1.AuthoringFrameSidePanelOverlay, { opened: this.props.sideOverlayOpen }, this.props.sideOverlay)),
|
67
67
|
this.props.sideBar && (React.createElement(_1.AuthoringFrameRightBar, { closed: this.props.sideBarClosed }, this.props.sideBar)),
|
68
|
-
this.props.overlayPanel &&
|
68
|
+
this.props.overlayPanel && React.createElement(_1.AuthoringFrameOverlay, null, this.props.overlayPanel)));
|
69
69
|
};
|
70
70
|
return AuthoringFrame;
|
71
71
|
}(React.PureComponent));
|
@@ -56,7 +56,7 @@ var AuthoringFrameContainer = /** @class */ (function (_super) {
|
|
56
56
|
return _super !== null && _super.apply(this, arguments) || this;
|
57
57
|
}
|
58
58
|
AuthoringFrameContainer.prototype.render = function () {
|
59
|
-
return
|
59
|
+
return React.createElement("div", { className: "sd-editor-grid" }, this.props.children);
|
60
60
|
};
|
61
61
|
return AuthoringFrameContainer;
|
62
62
|
}(React.PureComponent));
|
@@ -56,7 +56,7 @@ var AuthoringFrameLeftBar = /** @class */ (function (_super) {
|
|
56
56
|
return _super !== null && _super.apply(this, arguments) || this;
|
57
57
|
}
|
58
58
|
AuthoringFrameLeftBar.prototype.render = function () {
|
59
|
-
return
|
59
|
+
return React.createElement("div", { className: "sd-editor-grid__sidebar-left" }, this.props.children);
|
60
60
|
};
|
61
61
|
return AuthoringFrameLeftBar;
|
62
62
|
}(React.PureComponent));
|
@@ -56,7 +56,7 @@ var AuthoringFrameMain = /** @class */ (function (_super) {
|
|
56
56
|
return _super !== null && _super.apply(this, arguments) || this;
|
57
57
|
}
|
58
58
|
AuthoringFrameMain.prototype.render = function () {
|
59
|
-
return
|
59
|
+
return React.createElement("div", { className: "sd-editor-grid__editor-content" }, this.props.children);
|
60
60
|
};
|
61
61
|
return AuthoringFrameMain;
|
62
62
|
}(React.PureComponent));
|
@@ -56,7 +56,7 @@ var AuthoringFrameNavBar = /** @class */ (function (_super) {
|
|
56
56
|
return _super !== null && _super.apply(this, arguments) || this;
|
57
57
|
}
|
58
58
|
AuthoringFrameNavBar.prototype.render = function () {
|
59
|
-
return
|
59
|
+
return React.createElement("div", { className: "sd-editor-grid__editor-subnav" }, this.props.children);
|
60
60
|
};
|
61
61
|
return AuthoringFrameNavBar;
|
62
62
|
}(React.PureComponent));
|
@@ -56,7 +56,7 @@ var AuthoringFrameOverlay = /** @class */ (function (_super) {
|
|
56
56
|
return _super !== null && _super.apply(this, arguments) || this;
|
57
57
|
}
|
58
58
|
AuthoringFrameOverlay.prototype.render = function () {
|
59
|
-
return
|
59
|
+
return React.createElement("div", { className: "sd-editor-grid__editor-overlay" }, this.props.children);
|
60
60
|
};
|
61
61
|
return AuthoringFrameOverlay;
|
62
62
|
}(React.PureComponent));
|
@@ -67,7 +67,7 @@ var AuthoringFrameRightBar = /** @class */ (function (_super) {
|
|
67
67
|
}
|
68
68
|
};
|
69
69
|
AuthoringFrameRightBar.prototype.render = function () {
|
70
|
-
return
|
70
|
+
return !this.state.closed && React.createElement("div", { className: "sd-editor-grid__sidetabs-bar" }, this.props.children);
|
71
71
|
};
|
72
72
|
return AuthoringFrameRightBar;
|
73
73
|
}(React.PureComponent));
|
@@ -65,7 +65,7 @@ var AuthoringFrameSidePanel = /** @class */ (function (_super) {
|
|
65
65
|
_a["sidetab-content-pinned--pinned"] = this.props.pinned,
|
66
66
|
_a["sidetab-content-pinned--open"] = this.props.opened,
|
67
67
|
_a));
|
68
|
-
return
|
68
|
+
return React.createElement("div", { className: classes }, this.props.children);
|
69
69
|
};
|
70
70
|
return AuthoringFrameSidePanel;
|
71
71
|
}(React.PureComponent));
|
@@ -65,7 +65,7 @@ var AuthoringFrameSidePanelOverlay = /** @class */ (function (_super) {
|
|
65
65
|
_a["sidetab-content-overlay--open"] = this.props.opened,
|
66
66
|
_a));
|
67
67
|
return (React.createElement("div", { className: classes },
|
68
|
-
React.createElement("div", { className:
|
68
|
+
React.createElement("div", { className: "sidetabs-content-overlay__inner" }, this.props.children)));
|
69
69
|
};
|
70
70
|
return AuthoringFrameSidePanelOverlay;
|
71
71
|
}(React.PureComponent));
|
@@ -56,7 +56,7 @@ var AuthoringMainContainer = /** @class */ (function (_super) {
|
|
56
56
|
return _super !== null && _super.apply(this, arguments) || this;
|
57
57
|
}
|
58
58
|
AuthoringMainContainer.prototype.render = function () {
|
59
|
-
return
|
59
|
+
return React.createElement("div", { className: "sd-editor-content" }, this.props.children);
|
60
60
|
};
|
61
61
|
return AuthoringMainContainer;
|
62
62
|
}(React.PureComponent));
|
@@ -56,7 +56,7 @@ var AuthoringMainContent = /** @class */ (function (_super) {
|
|
56
56
|
return _super !== null && _super.apply(this, arguments) || this;
|
57
57
|
}
|
58
58
|
AuthoringMainContent.prototype.render = function () {
|
59
|
-
return
|
59
|
+
return React.createElement("div", { className: "sd-editor-content__main-container" }, this.props.children);
|
60
60
|
};
|
61
61
|
return AuthoringMainContent;
|
62
62
|
}(React.PureComponent));
|
@@ -63,7 +63,7 @@ var AuthoringMainToolBar = /** @class */ (function (_super) {
|
|
63
63
|
var classes = (0, classnames_1.default)('sd-editor-content__toolbar', {
|
64
64
|
'sd-editor-content__toolbar--custom': this.props.toolbarCustom,
|
65
65
|
});
|
66
|
-
return
|
66
|
+
return React.createElement("div", { className: classes }, this.props.children);
|
67
67
|
};
|
68
68
|
return AuthoringMainToolBar;
|
69
69
|
}(React.PureComponent));
|
@@ -65,8 +65,8 @@ var BottomBarAction = /** @class */ (function (_super) {
|
|
65
65
|
'sd-bottom-bar__action--active': this.props.active,
|
66
66
|
'sd-bottom-bar__action--disabled': this.props.disabled,
|
67
67
|
});
|
68
|
-
return (React.createElement("button", { type:
|
69
|
-
React.createElement(Icon_1.Icon, { type:
|
68
|
+
return (React.createElement("button", { type: "button", className: classes, tabIndex: 0, onClick: this.props.onClick, "aria-label": this.props.arialabel, "aria-controls": this.props.ariaControls, "aria-expanded": this.props.active },
|
69
|
+
React.createElement(Icon_1.Icon, { type: "white", name: "th-large" })));
|
70
70
|
};
|
71
71
|
return BottomBarAction;
|
72
72
|
}(React.PureComponent));
|
@@ -66,7 +66,7 @@ var ContentSplitter = /** @class */ (function (_super) {
|
|
66
66
|
_a['content-splitter--visible'] = this.props.visible,
|
67
67
|
_a['content-splitter--disabled'] = this.props.disabled,
|
68
68
|
_a));
|
69
|
-
return
|
69
|
+
return React.createElement("div", { className: classes }, this.props.children);
|
70
70
|
};
|
71
71
|
return ContentSplitter;
|
72
72
|
}(React.PureComponent));
|
@@ -61,8 +61,8 @@ var CoreLayout = /** @class */ (function (_super) {
|
|
61
61
|
this.props.slideInMenu && (React.createElement(_1.CoreLayoutSlideInMenu, { menuId: this.props.menuId, menuOpen: this.props.menuOpen }, this.props.slideInMenu)),
|
62
62
|
this.props.topMenu && (React.createElement(_1.CoreLayoutTopMenu, { buttonAnimation: this.props.buttonAnimation, heading: this.props.heading, onClick: this.props.onClick, active: this.props.active, ariaControls: this.props.ariaControls }, this.props.topMenu)),
|
63
63
|
React.createElement(_1.CoreLayoutMain, { editorFullWidth: this.props.editorFullWidth, openPanel: this.props.openPanel }, this.props.children),
|
64
|
-
this.props.footer &&
|
65
|
-
this.props.overlay &&
|
64
|
+
this.props.footer && React.createElement(_1.CoreLayoutFooter, null, this.props.footer),
|
65
|
+
this.props.overlay && React.createElement(_1.CoreLayoutOverlay, null, this.props.overlay)));
|
66
66
|
};
|
67
67
|
return CoreLayout;
|
68
68
|
}(React.PureComponent));
|
@@ -56,7 +56,7 @@ var CoreLayoutContainer = /** @class */ (function (_super) {
|
|
56
56
|
return _super !== null && _super.apply(this, arguments) || this;
|
57
57
|
}
|
58
58
|
CoreLayoutContainer.prototype.render = function () {
|
59
|
-
return (React.createElement("div", { className:
|
59
|
+
return (React.createElement("div", { className: "sd-page-grid--test docs-page__full-width-helper", "data-theme": this.props.theme }, this.props.children));
|
60
60
|
};
|
61
61
|
return CoreLayoutContainer;
|
62
62
|
}(React.PureComponent));
|
@@ -56,7 +56,7 @@ var CoreLayoutFooter = /** @class */ (function (_super) {
|
|
56
56
|
return _super !== null && _super.apply(this, arguments) || this;
|
57
57
|
}
|
58
58
|
CoreLayoutFooter.prototype.render = function () {
|
59
|
-
return
|
59
|
+
return React.createElement("footer", { className: "sd-bottom-bar" }, this.props.children);
|
60
60
|
};
|
61
61
|
return CoreLayoutFooter;
|
62
62
|
}(React.PureComponent));
|
@@ -56,7 +56,7 @@ var CoreLayoutOverlay = /** @class */ (function (_super) {
|
|
56
56
|
return _super !== null && _super.apply(this, arguments) || this;
|
57
57
|
}
|
58
58
|
CoreLayoutOverlay.prototype.render = function () {
|
59
|
-
return
|
59
|
+
return React.createElement("footer", { className: "sd-notifications-slot" }, this.props.children);
|
60
60
|
};
|
61
61
|
return CoreLayoutOverlay;
|
62
62
|
}(React.PureComponent));
|
@@ -64,8 +64,8 @@ var CoreLayoutSlideInMenu = /** @class */ (function (_super) {
|
|
64
64
|
var classes = (0, classnames_1.default)('sd-main-menu', (_a = {},
|
65
65
|
_a["sd-main-menu--open"] = this.props.menuOpen,
|
66
66
|
_a));
|
67
|
-
return (React.createElement("div", { id: this.props.menuId, className: classes, "data-theme":
|
68
|
-
React.createElement("div", { className:
|
67
|
+
return (React.createElement("div", { id: this.props.menuId, className: classes, "data-theme": "dark-ui" },
|
68
|
+
React.createElement("div", { className: "sd-main-menu__inner" }, this.props.children)));
|
69
69
|
};
|
70
70
|
return CoreLayoutSlideInMenu;
|
71
71
|
}(React.PureComponent));
|
@@ -58,9 +58,9 @@ var CoreLayoutTopMenu = /** @class */ (function (_super) {
|
|
58
58
|
return _super !== null && _super.apply(this, arguments) || this;
|
59
59
|
}
|
60
60
|
CoreLayoutTopMenu.prototype.render = function () {
|
61
|
-
return (React.createElement("header", { className:
|
62
|
-
React.createElement(_1.HamburgerButton, { buttonAnimation: this.props.buttonAnimation, arialabel:
|
63
|
-
React.createElement(_2.Container, { className:
|
61
|
+
return (React.createElement("header", { className: "sd-top-menu", "data-theme": "dark-ui" },
|
62
|
+
React.createElement(_1.HamburgerButton, { buttonAnimation: this.props.buttonAnimation, arialabel: "Toggle main menu", ariaControls: this.props.ariaControls, onClick: this.props.onClick, active: this.props.active }),
|
63
|
+
React.createElement(_2.Container, { className: "sd-margin-e--auto" }, this.props.heading && React.createElement("p", { className: "sd-top-menu__header" }, this.props.heading)),
|
64
64
|
this.props.children));
|
65
65
|
};
|
66
66
|
return CoreLayoutTopMenu;
|
@@ -68,7 +68,7 @@ var HamburgerButton = /** @class */ (function (_super) {
|
|
68
68
|
_a["hamburger--".concat(this.props.buttonAnimation)] = this.props.buttonAnimation || this.props.buttonAnimation !== undefined,
|
69
69
|
_a['sd-top-menu__collapse-nav--disabled'] = this.props.disabled,
|
70
70
|
_a));
|
71
|
-
return (React.createElement("button", { type:
|
71
|
+
return (React.createElement("button", { type: "button", className: classes, tabIndex: 0, onClick: this.props.onClick, "aria-label": this.props.arialabel, "aria-controls": this.props.ariaControls, "aria-expanded": this.props.active, id: this.props.id },
|
72
72
|
React.createElement("span", { className: "hamburger__box" },
|
73
73
|
React.createElement("span", { className: "hamburger__inner" }))));
|
74
74
|
};
|
@@ -56,7 +56,7 @@ var HeaderPanel = /** @class */ (function (_super) {
|
|
56
56
|
return _super !== null && _super.apply(this, arguments) || this;
|
57
57
|
}
|
58
58
|
HeaderPanel.prototype.render = function () {
|
59
|
-
return
|
59
|
+
return React.createElement("div", { className: "sd-main-content-grid__header" }, this.props.children);
|
60
60
|
};
|
61
61
|
return HeaderPanel;
|
62
62
|
}(React.PureComponent));
|