superdesk-ui-framework 3.0.1-beta.2 → 3.0.1-beta.20
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/.vscode/settings.json +5 -0
- package/app/fonts/sd_icons.eot +0 -0
- package/app/fonts/sd_icons.svg +14 -7
- package/app/fonts/sd_icons.ttf +0 -0
- package/app/fonts/sd_icons.woff +0 -0
- package/app/img/SD-logo.svg +52 -0
- package/app/scripts/toggleBoxNext.js +1 -1
- package/app/styles/_accessibility.scss +1 -0
- package/app/styles/_big-icon-font.scss +3 -0
- package/app/styles/_boxed-list.scss +3 -0
- package/app/styles/_buttons.scss +1 -1
- package/app/styles/_content-divider.scss +63 -8
- package/app/styles/_hamburger.scss +160 -0
- package/app/styles/_helpers.scss +35 -5
- package/app/styles/_icon-font.scss +19 -9
- package/app/styles/_master-desk.scss +3 -2
- package/app/styles/_modals.scss +6 -3
- package/app/styles/_normalize.scss +4 -0
- package/app/styles/_sd-tag-input.scss +221 -296
- package/app/styles/_simple-list.scss +1 -0
- package/app/styles/_table-list.scss +115 -12
- package/app/styles/app.scss +4 -0
- package/app/styles/components/_list-item.scss +36 -17
- package/app/styles/components/_sd-collapse-box.scss +6 -6
- package/app/styles/components/_sd-grid-item.scss +30 -16
- package/app/styles/components/_sd-notification-panel.scss +48 -0
- package/app/styles/components/_sd-photo-preview.scss +3 -3
- package/app/styles/components/_sd-searchbar.scss +7 -0
- package/app/styles/design-tokens/_design-tokens-general.scss +3 -6
- package/app/styles/design-tokens/_new-colors.scss +16 -6
- package/app/styles/dropdowns/_basic-dropdown.scss +6 -0
- package/app/styles/form-elements/_forms-general.scss +81 -7
- package/app/styles/form-elements/_input-wrap.scss +138 -0
- package/app/styles/form-elements/_inputs.scss +577 -102
- package/app/styles/grids/_grid-layout.scss +147 -40
- package/app/styles/interface-elements/_side-panel.scss +1 -1
- package/app/styles/layout/_basic-layout.scss +2 -2
- package/app/styles/layout/_editor.scss +10 -4
- package/app/styles/menus/_sd-bottom-tabs.scss +70 -0
- package/app/styles/menus/_sd-left-navigation.scss +24 -1
- package/app/styles/menus/_sd-sidebar-menu.scss +10 -14
- package/app/styles/menus/_sd-top-menu.scss +19 -5
- package/app/styles/primereact/_pr-dialog.scss +1 -0
- package/app/styles/primereact/_pr-dropdown.scss +17 -3
- package/app/styles/primereact/_pr-menu.scss +6 -5
- package/app-typescript/components/Badge.tsx +3 -2
- package/app-typescript/components/ContentDivider.tsx +3 -0
- package/app-typescript/components/DatePicker.tsx +71 -36
- package/app-typescript/components/DonutChart.tsx +1 -1
- package/app-typescript/components/Dropdown.tsx +127 -82
- package/app-typescript/components/DurationInput.tsx +400 -0
- package/app-typescript/components/EmptyState.tsx +2 -1
- package/app-typescript/components/Form/FormLabel.tsx +8 -1
- package/app-typescript/components/Form/FormRowNew.tsx +41 -0
- package/app-typescript/components/Form/InputBase.tsx +95 -0
- package/app-typescript/components/Form/InputNew.tsx +107 -0
- package/app-typescript/components/Form/InputWrapper.tsx +79 -0
- package/app-typescript/components/Form/index.tsx +4 -0
- package/app-typescript/components/Icon.tsx +1 -1
- package/app-typescript/components/IconButton.tsx +5 -1
- package/app-typescript/components/Input.tsx +39 -42
- package/app-typescript/components/Label.tsx +49 -10
- package/app-typescript/components/Layouts/AuthoringContainer.tsx +2 -1
- package/app-typescript/components/Layouts/AuthoringInnerHeader.tsx +1 -1
- package/app-typescript/components/Layouts/AuthoringMain.tsx +4 -2
- package/app-typescript/components/Layouts/BottomBarAction.tsx +35 -0
- package/app-typescript/components/Layouts/CoreLayout.tsx +63 -0
- package/app-typescript/components/Layouts/CoreLayoutContainer.tsx +16 -0
- package/app-typescript/components/Layouts/CoreLayoutFooter.tsx +15 -0
- package/app-typescript/components/Layouts/CoreLayoutMain.tsx +22 -0
- package/app-typescript/components/Layouts/CoreLayoutOverlay.tsx +15 -0
- package/app-typescript/components/Layouts/CoreLayoutSlideInMenu.tsx +24 -0
- package/app-typescript/components/Layouts/CoreLayoutTopMenu.tsx +35 -0
- package/app-typescript/components/Layouts/HamburgerButton.tsx +41 -0
- package/app-typescript/components/Layouts/Layout.tsx +2 -2
- package/app-typescript/components/Layouts/MainMenu.tsx +101 -0
- package/app-typescript/components/Layouts/NotificationPanel.tsx +109 -0
- package/app-typescript/components/Layouts/index.tsx +12 -0
- package/app-typescript/components/LeftMenu.tsx +127 -116
- package/app-typescript/components/Lists/BoxedList.tsx +36 -4
- package/app-typescript/components/Lists/ContentList.tsx +38 -10
- package/app-typescript/components/Lists/TableList.tsx +283 -151
- package/app-typescript/components/Menu.tsx +31 -7
- package/app-typescript/components/Modal.tsx +5 -2
- package/app-typescript/components/MultiSelect.tsx +35 -5
- package/app-typescript/components/NavButton.tsx +4 -0
- package/app-typescript/components/Navigation/BottomNav.tsx +83 -0
- package/app-typescript/components/SearchBar.tsx +39 -12
- package/app-typescript/components/Select.tsx +27 -37
- package/app-typescript/components/SelectGrid.tsx +1 -1
- package/app-typescript/components/SelectWithTemplate.tsx +32 -7
- package/app-typescript/components/Skeleton.tsx +1 -1
- package/app-typescript/components/Spacer.tsx +87 -0
- package/app-typescript/components/Text/Time.tsx +34 -0
- package/app-typescript/components/TimePicker.tsx +38 -15
- package/app-typescript/components/Togglebox.tsx +1 -1
- package/app-typescript/components/Tooltip.tsx +7 -5
- package/app-typescript/components/TreeSelect.tsx +490 -208
- package/app-typescript/components/WithSizeObserver.tsx +88 -0
- package/app-typescript/dist/components/Alert.d.ts +16 -0
- package/app-typescript/dist/components/Autocomplete.d.ts +48 -0
- package/app-typescript/dist/components/Avatar.d.ts +33 -0
- package/app-typescript/dist/components/Badge.d.ts +13 -0
- package/app-typescript/dist/components/Button.d.ts +23 -0
- package/app-typescript/dist/components/ButtonGroup.d.ts +12 -0
- package/app-typescript/dist/components/CheckButtonGroup.d.ts +11 -0
- package/app-typescript/dist/components/CheckGroup.d.ts +9 -0
- package/app-typescript/dist/components/Checkbox.d.ts +19 -0
- package/app-typescript/dist/components/CheckboxButton.d.ts +19 -0
- package/app-typescript/dist/components/DatePicker.d.ts +37 -0
- package/app-typescript/dist/components/Divider.d.ts +9 -0
- package/app-typescript/dist/components/DonutChart.d.ts +12 -0
- package/app-typescript/dist/components/Dropdown.d.ts +28 -0
- package/app-typescript/dist/components/DropdownFirst.d.ts +42 -0
- package/app-typescript/dist/components/EmptyState.d.ts +11 -0
- package/app-typescript/dist/components/FormLabel.d.ts +9 -0
- package/app-typescript/dist/components/Genie.d.ts +13 -0
- package/app-typescript/dist/components/GridItem.d.ts +69 -0
- package/app-typescript/dist/components/GridList.d.ts +14 -0
- package/app-typescript/dist/components/HeadingText.d.ts +10 -0
- package/app-typescript/dist/components/HelloWorld.d.ts +8 -0
- package/app-typescript/dist/components/Icon.d.ts +12 -0
- package/app-typescript/dist/components/IconButton.d.ts +12 -0
- package/app-typescript/dist/components/IconLabel.d.ts +11 -0
- package/app-typescript/dist/components/Input.d.ts +24 -0
- package/app-typescript/dist/components/Label.d.ts +15 -0
- package/app-typescript/dist/components/LeftMenu.d.ts +26 -0
- package/app-typescript/dist/components/Loader.d.ts +8 -0
- package/app-typescript/dist/components/NavButton.d.ts +15 -0
- package/app-typescript/dist/components/Popover.d.ts +13 -0
- package/app-typescript/dist/components/PropsList.d.ts +15 -0
- package/app-typescript/dist/components/Radio.d.ts +19 -0
- package/app-typescript/dist/components/RadioButton.d.ts +20 -0
- package/app-typescript/dist/components/Select.d.ts +29 -0
- package/app-typescript/dist/components/SelectWithTemplate.d.ts +32 -0
- package/app-typescript/dist/components/SlidingToolbar.d.ts +8 -0
- package/app-typescript/dist/components/StrechBar.d.ts +4 -0
- package/app-typescript/dist/components/SubNav.d.ts +10 -0
- package/app-typescript/dist/components/Switch.d.ts +12 -0
- package/app-typescript/dist/components/TabCustom.d.ts +25 -0
- package/app-typescript/dist/components/TabList.d.ts +22 -0
- package/app-typescript/dist/components/Tag.d.ts +9 -0
- package/app-typescript/dist/components/TagInput.d.ts +7 -0
- package/app-typescript/dist/components/TagInputTest.d.ts +18 -0
- package/app-typescript/dist/components/TimePicker.d.ts +11 -0
- package/app-typescript/dist/components/Tooltip.d.ts +11 -0
- package/app-typescript/dist/components/_Positioner.d.ts +27 -0
- package/app-typescript/dist/index.d.ts +56 -0
- package/app-typescript/helpers.tsx +3 -0
- package/app-typescript/index.ts +8 -1
- package/dist/SD-logo.svg +52 -0
- package/dist/examples.bundle.css +941 -8
- package/dist/examples.bundle.js +71435 -66878
- package/dist/playgrounds/accessible-theme-test.html +1 -1
- package/dist/playgrounds/layout-test-2.html +1 -1
- package/dist/playgrounds/list-item-test.html +1 -1
- package/dist/playgrounds/master-desk.html +1 -1
- package/dist/playgrounds/media-carousel.html +1 -1
- package/dist/playgrounds/photo-desk.html +1 -1
- package/dist/playgrounds/planning.html +1 -1
- package/dist/playgrounds/publish.html +1 -1
- package/dist/playgrounds/publisher-content-analytics.html +1 -1
- package/dist/playgrounds/publisher-content-list-automatic.html +1 -1
- package/dist/playgrounds/publisher-content-list-manual.html +1 -1
- package/dist/playgrounds/publisher-content-lists.html +1 -1
- package/dist/playgrounds/publisher-dashboard.html +1 -1
- package/dist/playgrounds/publisher-output-control.html +1 -1
- package/dist/playgrounds/react-playgrounds/CoreLayout.tsx +156 -0
- package/dist/playgrounds/react-playgrounds/Index.tsx +1 -0
- package/dist/playgrounds/react-playgrounds/RundownEditor.tsx +26 -23
- package/dist/playgrounds/react-playgrounds/Rundowns.tsx +20 -21
- package/dist/playgrounds/react-playgrounds/SamsPlayground.tsx +12 -3
- package/dist/playgrounds/react-playgrounds/TestGround.tsx +415 -25
- package/dist/playgrounds/react-playgrounds/components/Layout.tsx +2 -2
- package/dist/playgrounds/swimlane-view.html +1 -1
- package/dist/playgrounds/toasts.html +1 -1
- package/dist/playgrounds/video-editor.html +1 -1
- package/dist/react/Badges.tsx +18 -0
- package/dist/react/ContentDivider.tsx +22 -18
- package/dist/react/ContentList.tsx +200 -18
- package/dist/react/DatePicker.tsx +31 -6
- package/dist/react/Dropdowns.tsx +580 -48
- package/dist/react/DurationInput.tsx +108 -0
- package/dist/react/Index.tsx +10 -0
- package/dist/react/Inputs.tsx +256 -8
- package/dist/react/Labels.tsx +51 -1
- package/dist/react/LeftNavigations.tsx +71 -44
- package/dist/react/MultiSelect.tsx +10 -2
- package/dist/react/SelectWithTemplate.tsx +6 -1
- package/dist/react/Selects.tsx +55 -0
- package/dist/react/TableList.tsx +77 -186
- package/dist/react/TimePicker.tsx +22 -12
- package/dist/react/Togglebox.tsx +1 -1
- package/dist/react/TreeSelect.tsx +270 -48
- package/dist/react/WithSizeObserver.tsx +44 -0
- package/dist/react/tree-select/TreeSelect.tsx +273 -0
- package/dist/react/tree-select/example-1.tsx +71 -0
- package/dist/react/tree-select/example-2.tsx +59 -0
- package/dist/sd_icons.eot +0 -0
- package/dist/sd_icons.svg +14 -7
- package/dist/sd_icons.ttf +0 -0
- package/dist/sd_icons.woff +0 -0
- package/dist/superdesk-ui.bundle.css +4313 -629
- package/dist/superdesk-ui.bundle.js +75364 -60124
- package/dist/vendor.bundle.js +25027 -25027
- package/examples/index.js +4 -0
- package/examples/pages/playgrounds/accessible-theme-test.html +1 -1
- package/examples/pages/playgrounds/layout-test-2.html +1 -1
- package/examples/pages/playgrounds/list-item-test.html +1 -1
- package/examples/pages/playgrounds/master-desk.html +1 -1
- package/examples/pages/playgrounds/media-carousel.html +1 -1
- package/examples/pages/playgrounds/photo-desk.html +1 -1
- package/examples/pages/playgrounds/planning.html +1 -1
- package/examples/pages/playgrounds/publish.html +1 -1
- package/examples/pages/playgrounds/publisher-content-analytics.html +1 -1
- package/examples/pages/playgrounds/publisher-content-list-automatic.html +1 -1
- package/examples/pages/playgrounds/publisher-content-list-manual.html +1 -1
- package/examples/pages/playgrounds/publisher-content-lists.html +1 -1
- package/examples/pages/playgrounds/publisher-dashboard.html +1 -1
- package/examples/pages/playgrounds/publisher-output-control.html +1 -1
- package/examples/pages/playgrounds/react-playgrounds/CoreLayout.tsx +156 -0
- package/examples/pages/playgrounds/react-playgrounds/Index.tsx +1 -0
- package/examples/pages/playgrounds/react-playgrounds/RundownEditor.tsx +26 -23
- package/examples/pages/playgrounds/react-playgrounds/Rundowns.tsx +20 -21
- package/examples/pages/playgrounds/react-playgrounds/SamsPlayground.tsx +12 -3
- package/examples/pages/playgrounds/react-playgrounds/TestGround.tsx +415 -25
- package/examples/pages/playgrounds/react-playgrounds/components/Layout.tsx +2 -2
- package/examples/pages/playgrounds/swimlane-view.html +1 -1
- package/examples/pages/playgrounds/toasts.html +1 -1
- package/examples/pages/playgrounds/video-editor.html +1 -1
- package/examples/pages/react/Badges.tsx +18 -0
- package/examples/pages/react/ContentDivider.tsx +22 -18
- package/examples/pages/react/ContentList.tsx +200 -18
- package/examples/pages/react/DatePicker.tsx +31 -6
- package/examples/pages/react/Dropdowns.tsx +580 -48
- package/examples/pages/react/DurationInput.tsx +108 -0
- package/examples/pages/react/Index.tsx +10 -0
- package/examples/pages/react/Inputs.tsx +256 -8
- package/examples/pages/react/Labels.tsx +51 -1
- package/examples/pages/react/LeftNavigations.tsx +71 -44
- package/examples/pages/react/MultiSelect.tsx +10 -2
- package/examples/pages/react/SelectWithTemplate.tsx +6 -1
- package/examples/pages/react/Selects.tsx +55 -0
- package/examples/pages/react/TableList.tsx +77 -186
- package/examples/pages/react/TimePicker.tsx +22 -12
- package/examples/pages/react/Togglebox.tsx +1 -1
- package/examples/pages/react/TreeSelect.tsx +270 -48
- package/examples/pages/react/WithSizeObserver.tsx +44 -0
- package/examples/pages/react/tree-select/TreeSelect.tsx +273 -0
- package/examples/pages/react/tree-select/example-1.tsx +71 -0
- package/examples/pages/react/tree-select/example-2.tsx +59 -0
- package/package.json +8 -8
- package/react/components/Alert.js +10 -8
- package/react/components/Autocomplete.js +16 -12
- package/react/components/Avatar.js +8 -6
- package/react/components/Badge.d.ts +1 -0
- package/react/components/Badge.js +9 -7
- package/react/components/Button.js +8 -6
- package/react/components/ButtonGroup.js +7 -5
- package/react/components/Carousel.js +4 -2
- package/react/components/CheckButtonGroup.js +6 -4
- package/react/components/CheckGroup.js +5 -3
- package/react/components/Checkbox.js +5 -3
- package/react/components/CheckboxButton.js +6 -4
- package/react/components/ContentDivider.d.ts +1 -0
- package/react/components/ContentDivider.js +10 -6
- package/react/components/CreateButton.js +6 -4
- package/react/components/DatePicker.d.ts +11 -0
- package/react/components/DatePicker.js +44 -35
- package/react/components/Divider.js +6 -4
- package/react/components/DonutChart.d.ts +1 -1
- package/react/components/DonutChart.js +24 -6
- package/react/components/DropZone.js +6 -4
- package/react/components/Dropdown.d.ts +6 -5
- package/react/components/Dropdown.js +63 -35
- package/react/components/DropdownFirst.js +18 -11
- package/react/components/DurationInput.d.ts +42 -0
- package/react/components/DurationInput.js +364 -0
- package/react/components/EmptyState.d.ts +1 -0
- package/react/components/EmptyState.js +8 -6
- package/react/components/Form/FormGroup.js +7 -5
- package/react/components/Form/FormItem.js +5 -3
- package/react/components/Form/FormLabel.d.ts +4 -1
- package/react/components/Form/FormLabel.js +13 -5
- package/react/components/Form/FormRow.js +5 -3
- package/react/components/Form/FormRowNew.d.ts +12 -0
- package/react/components/Form/FormRowNew.js +67 -0
- package/react/components/Form/FormText.js +4 -2
- package/react/components/Form/InputBase.d.ts +41 -0
- package/react/components/Form/InputBase.js +86 -0
- package/react/components/Form/InputNew.d.ts +45 -0
- package/react/components/Form/InputNew.js +75 -0
- package/react/components/Form/InputWrapper.d.ts +28 -0
- package/react/components/Form/InputWrapper.js +91 -0
- package/react/components/Form/index.d.ts +4 -0
- package/react/components/Form/index.js +9 -0
- package/react/components/FormLabel.js +5 -3
- package/react/components/GridItem.js +9 -7
- package/react/components/GridList.js +8 -6
- package/react/components/HeadingText.js +4 -2
- package/react/components/HelloWorld.js +4 -2
- package/react/components/Icon.d.ts +1 -1
- package/react/components/Icon.js +9 -7
- package/react/components/IconButton.js +8 -6
- package/react/components/IconLabel.js +7 -5
- package/react/components/IconPicker.js +13 -9
- package/react/components/Input.d.ts +6 -2
- package/react/components/Input.js +16 -31
- package/react/components/Label.d.ts +1 -0
- package/react/components/Label.js +28 -10
- package/react/components/Layouts/AuthorinInnerSideBar.js +4 -2
- package/react/components/Layouts/AuthoringContainer.d.ts +1 -0
- package/react/components/Layouts/AuthoringContainer.js +8 -6
- package/react/components/Layouts/AuthoringFrame.js +4 -2
- package/react/components/Layouts/AuthoringFrameContainer.js +4 -2
- package/react/components/Layouts/AuthoringFrameLeftBar.js +4 -2
- package/react/components/Layouts/AuthoringFrameMain.js +4 -2
- package/react/components/Layouts/AuthoringFrameNavBar.js +4 -2
- package/react/components/Layouts/AuthoringFrameOverlay.js +4 -2
- package/react/components/Layouts/AuthoringFrameRightBar.js +4 -2
- package/react/components/Layouts/AuthoringFrameSidePanel.js +5 -3
- package/react/components/Layouts/AuthoringFrameSidePanelOverlay.js +5 -3
- package/react/components/Layouts/AuthoringInnerBody.js +4 -2
- package/react/components/Layouts/AuthoringInnerHeader.js +7 -5
- package/react/components/Layouts/AuthoringMain.js +5 -3
- package/react/components/Layouts/AuthoringMainContainer.js +4 -2
- package/react/components/Layouts/AuthoringMainContent.js +4 -2
- package/react/components/Layouts/AuthoringMainToolBar.js +5 -3
- package/react/components/Layouts/BottomBarAction.d.ts +12 -0
- package/react/components/Layouts/BottomBarAction.js +59 -0
- package/react/components/Layouts/Container.js +9 -7
- package/react/components/Layouts/ContentSplitter.js +6 -4
- package/react/components/Layouts/CoreLayout.d.ts +20 -0
- package/react/components/Layouts/CoreLayout.js +55 -0
- package/react/components/Layouts/CoreLayoutContainer.d.ts +9 -0
- package/react/components/Layouts/CoreLayoutContainer.js +49 -0
- package/react/components/Layouts/CoreLayoutFooter.d.ts +8 -0
- package/react/components/Layouts/CoreLayoutFooter.js +49 -0
- package/react/components/Layouts/CoreLayoutMain.d.ts +10 -0
- package/react/components/Layouts/CoreLayoutMain.js +56 -0
- package/react/components/Layouts/CoreLayoutOverlay.d.ts +8 -0
- package/react/components/Layouts/CoreLayoutOverlay.js +49 -0
- package/react/components/Layouts/CoreLayoutSlideInMenu.d.ts +11 -0
- package/react/components/Layouts/CoreLayoutSlideInMenu.js +58 -0
- package/react/components/Layouts/CoreLayoutTopMenu.d.ts +14 -0
- package/react/components/Layouts/CoreLayoutTopMenu.js +54 -0
- package/react/components/Layouts/HamburgerButton.d.ts +14 -0
- package/react/components/Layouts/HamburgerButton.js +63 -0
- package/react/components/Layouts/HeaderPanel.js +4 -2
- package/react/components/Layouts/Layout.js +4 -3
- package/react/components/Layouts/LayoutContainer.js +4 -2
- package/react/components/Layouts/LeftPanel.js +5 -3
- package/react/components/Layouts/MainMenu.d.ts +41 -0
- package/react/components/Layouts/MainMenu.js +103 -0
- package/react/components/Layouts/MainPanel.js +5 -3
- package/react/components/Layouts/NotificationPanel.d.ts +45 -0
- package/react/components/Layouts/NotificationPanel.js +110 -0
- package/react/components/Layouts/OverlayPanel.js +4 -2
- package/react/components/Layouts/PageLayout.js +4 -2
- package/react/components/Layouts/Panel.js +16 -14
- package/react/components/Layouts/RightPanel.js +4 -2
- package/react/components/Layouts/index.d.ts +11 -0
- package/react/components/Layouts/index.js +23 -0
- package/react/components/LeftMenu.d.ts +5 -1
- package/react/components/LeftMenu.js +27 -13
- package/react/components/ListItemLoader.js +4 -2
- package/react/components/Lists/BoxedList.d.ts +6 -0
- package/react/components/Lists/BoxedList.js +36 -15
- package/react/components/Lists/ContentList.d.ts +50 -0
- package/react/components/Lists/ContentList.js +106 -0
- package/react/components/Lists/SimpleList.js +9 -7
- package/react/components/Lists/TableList.d.ts +62 -0
- package/react/components/Lists/TableList.js +208 -0
- package/react/components/Lists/index.js +1 -0
- package/react/components/Loader.js +4 -2
- package/react/components/Menu.d.ts +2 -1
- package/react/components/Menu.js +48 -12
- package/react/components/Modal.d.ts +2 -1
- package/react/components/Modal.js +30 -9
- package/react/components/NavButton.d.ts +1 -0
- package/react/components/NavButton.js +9 -4
- package/react/components/Navigation/BottomNav.d.ts +24 -0
- package/react/components/Navigation/BottomNav.js +88 -0
- package/react/components/Navigation/QuickNavBar.js +13 -9
- package/react/components/Navigation/SideBarMenu.js +4 -2
- package/react/components/Navigation/SideBarTabs.js +4 -2
- package/react/components/Navigation/index.js +1 -0
- package/react/components/Popover.js +4 -2
- package/react/components/PropsList.js +4 -2
- package/react/components/RadioButtonGroup.js +9 -7
- package/react/components/RadioGroup.js +6 -4
- package/react/components/SearchBar.d.ts +3 -2
- package/react/components/SearchBar.js +34 -8
- package/react/components/Select.d.ts +5 -1
- package/react/components/Select.js +9 -23
- package/react/components/SelectGrid.d.ts +1 -1
- package/react/components/SelectGrid.js +44 -23
- package/react/components/SelectWithTemplate.d.ts +11 -1
- package/react/components/SelectWithTemplate.js +23 -12
- package/react/components/Skeleton.d.ts +1 -1
- package/react/components/Skeleton.js +26 -5
- package/react/components/SlidingToolbar.js +6 -4
- package/react/components/Spinner.js +6 -4
- package/react/components/StrechBar.js +4 -2
- package/react/components/SubNav.js +9 -7
- package/react/components/Switch.js +6 -4
- package/react/components/SwitchGroup.js +5 -3
- package/react/components/TabCustom.js +11 -7
- package/react/components/TabList.js +6 -4
- package/react/components/Tag.js +5 -4
- package/react/components/TagInput.js +7 -6
- package/react/components/TagInputTest.js +13 -9
- package/react/components/Text/Heading.js +10 -8
- package/react/components/Text/Text.js +10 -8
- package/react/components/Text/Time.d.ts +15 -0
- package/react/components/Text/Time.js +65 -0
- package/react/components/ThemeSelector.js +7 -5
- package/react/components/TimePicker.d.ts +11 -1
- package/react/components/TimePicker.js +14 -5
- package/react/components/Toast.js +1 -1
- package/react/components/ToastMessage.js +6 -5
- package/react/components/ToastText.js +1 -1
- package/react/components/ToastWrapper.d.ts +2 -2
- package/react/components/ToastWrapper.js +14 -10
- package/react/components/Togglebox.d.ts +1 -1
- package/react/components/Togglebox.js +36 -15
- package/react/components/Tooltip.d.ts +1 -0
- package/react/components/Tooltip.js +14 -10
- package/react/components/TreeSelect.d.ts +80 -0
- package/react/components/TreeSelect.js +494 -0
- package/react/components/WithSizeObserver.d.ts +25 -0
- package/react/components/WithSizeObserver.js +95 -0
- package/react/components/_Positioner.js +4 -2
- package/react/helpers.d.ts +1 -0
- package/react/helpers.js +7 -0
- package/react/index.d.ts +8 -0
- package/react/index.js +20 -2
- package/yarn-error.log +111 -0
- package/patches/@superdesk+primereact+5.0.2-4.patch +0 -13
- package/sd_icons.eot +0 -0
- package/sd_icons.svg +0 -189
- package/sd_icons.ttf +0 -0
- package/sd_icons.woff +0 -0
@@ -0,0 +1,26 @@
|
|
1
|
+
import * as React from 'react';
|
2
|
+
interface IMenuItem {
|
3
|
+
id: string;
|
4
|
+
label: string;
|
5
|
+
route?: string;
|
6
|
+
}
|
7
|
+
interface IMenuGroup {
|
8
|
+
label: string;
|
9
|
+
items: Array<IMenuItem>;
|
10
|
+
}
|
11
|
+
interface IMenu {
|
12
|
+
navClass?: string;
|
13
|
+
groups: Array<IMenuGroup>;
|
14
|
+
activeItemId: string;
|
15
|
+
ariaLabel?: string;
|
16
|
+
onSelect(id: string, route: string): void;
|
17
|
+
}
|
18
|
+
interface IState {
|
19
|
+
active: string;
|
20
|
+
}
|
21
|
+
export declare class LeftMenu extends React.PureComponent<IMenu, IState> {
|
22
|
+
constructor(props: IMenu);
|
23
|
+
handleClick(id: string, route: string): void;
|
24
|
+
render(): JSX.Element;
|
25
|
+
}
|
26
|
+
export {};
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import * as React from 'react';
|
2
|
+
interface IProps {
|
3
|
+
id?: string;
|
4
|
+
icon?: string;
|
5
|
+
text?: string;
|
6
|
+
iconSize?: 'small' | 'big';
|
7
|
+
theme?: 'light' | 'dark';
|
8
|
+
type?: 'default' | 'primary' | 'highlight' | 'darker';
|
9
|
+
value?: 'button' | 'submit' | 'reset';
|
10
|
+
onClick(): void;
|
11
|
+
}
|
12
|
+
export declare class NavButton extends React.PureComponent<IProps> {
|
13
|
+
render(): JSX.Element;
|
14
|
+
}
|
15
|
+
export {};
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { PopperOptions } from 'popper.js';
|
2
|
+
import * as React from 'react';
|
3
|
+
interface IProps {
|
4
|
+
title: string;
|
5
|
+
triggerSelector: string;
|
6
|
+
displayCloseButton?: boolean;
|
7
|
+
placement?: PopperOptions['placement'];
|
8
|
+
zIndex?: number;
|
9
|
+
}
|
10
|
+
export declare class Popover extends React.Component<IProps> {
|
11
|
+
render(): JSX.Element;
|
12
|
+
}
|
13
|
+
export {};
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import * as React from 'react';
|
2
|
+
interface IProps {
|
3
|
+
name: string;
|
4
|
+
isRequered: boolean;
|
5
|
+
type: string;
|
6
|
+
default: string;
|
7
|
+
description: string;
|
8
|
+
}
|
9
|
+
declare class Prop extends React.PureComponent<IProps> {
|
10
|
+
render(): JSX.Element;
|
11
|
+
}
|
12
|
+
declare class PropsList extends React.PureComponent {
|
13
|
+
render(): JSX.Element;
|
14
|
+
}
|
15
|
+
export { Prop, PropsList };
|
@@ -0,0 +1,19 @@
|
|
1
|
+
import * as React from 'react';
|
2
|
+
interface IProps {
|
3
|
+
value?: string;
|
4
|
+
options: Array<{
|
5
|
+
label: string;
|
6
|
+
value: string;
|
7
|
+
disabled?: boolean;
|
8
|
+
}>;
|
9
|
+
labelSide?: 'left' | 'right';
|
10
|
+
required?: boolean;
|
11
|
+
onChange(nextValue: string): void;
|
12
|
+
}
|
13
|
+
export declare class Radio extends React.Component<IProps> {
|
14
|
+
htmlId: string;
|
15
|
+
constructor(props: IProps);
|
16
|
+
handleChange(item: any): void;
|
17
|
+
render(): JSX.Element[];
|
18
|
+
}
|
19
|
+
export {};
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import * as React from 'react';
|
2
|
+
interface IProps {
|
3
|
+
value?: string;
|
4
|
+
options: Array<{
|
5
|
+
label: string;
|
6
|
+
value: string;
|
7
|
+
icon?: string;
|
8
|
+
labelHidden?: boolean;
|
9
|
+
disabled?: boolean;
|
10
|
+
}>;
|
11
|
+
required?: boolean;
|
12
|
+
onChange(nextValue: string): void;
|
13
|
+
}
|
14
|
+
export declare class RadioButton extends React.Component<IProps> {
|
15
|
+
htmlId: string;
|
16
|
+
constructor(props: IProps);
|
17
|
+
handleChange(item: any): void;
|
18
|
+
render(): JSX.Element;
|
19
|
+
}
|
20
|
+
export {};
|
@@ -0,0 +1,29 @@
|
|
1
|
+
import * as React from 'react';
|
2
|
+
interface ISelect {
|
3
|
+
value?: string;
|
4
|
+
label?: string;
|
5
|
+
info?: string;
|
6
|
+
error?: string;
|
7
|
+
required?: boolean;
|
8
|
+
disabled?: boolean;
|
9
|
+
invalid?: boolean;
|
10
|
+
inlineLabel?: boolean;
|
11
|
+
onChange(newValue: string): void;
|
12
|
+
}
|
13
|
+
interface IState {
|
14
|
+
value: string;
|
15
|
+
invalid: boolean;
|
16
|
+
}
|
17
|
+
declare class Select extends React.Component<ISelect, IState> {
|
18
|
+
constructor(props: ISelect);
|
19
|
+
htmlId: string;
|
20
|
+
handleChange(event: React.ChangeEvent<HTMLSelectElement>): void;
|
21
|
+
render(): JSX.Element;
|
22
|
+
}
|
23
|
+
interface IOption {
|
24
|
+
value?: string;
|
25
|
+
}
|
26
|
+
declare class Option extends React.PureComponent<IOption> {
|
27
|
+
render(): JSX.Element;
|
28
|
+
}
|
29
|
+
export { Select, Option };
|
@@ -0,0 +1,32 @@
|
|
1
|
+
import * as React from 'react';
|
2
|
+
import { Dropdown } from '@superdesk/primereact/dropdown';
|
3
|
+
interface IProps<T> {
|
4
|
+
getItems(searchString: string | null): Promise<Array<T>>;
|
5
|
+
value: T;
|
6
|
+
getLabel(option: T): string;
|
7
|
+
onChange(value: T): void;
|
8
|
+
areEqual(a: T, b: T): boolean;
|
9
|
+
itemTemplate: React.ComponentType<{
|
10
|
+
option: T | null;
|
11
|
+
}>;
|
12
|
+
noResultsFoundMessage: string;
|
13
|
+
filterPlaceholder?: string;
|
14
|
+
disabled?: boolean;
|
15
|
+
required?: boolean;
|
16
|
+
autoFocus?: boolean;
|
17
|
+
autoOpen?: boolean;
|
18
|
+
width?: 'min' | '100%';
|
19
|
+
zIndex?: number;
|
20
|
+
'data-test-id'?: string;
|
21
|
+
}
|
22
|
+
interface IState<T> {
|
23
|
+
options: Array<T>;
|
24
|
+
loading: boolean;
|
25
|
+
}
|
26
|
+
export declare class SelectWithTemplate<T> extends React.Component<IProps<T>, IState<T>> {
|
27
|
+
componentRef: Dropdown | null;
|
28
|
+
constructor(props: IProps<T>);
|
29
|
+
componentDidMount(): void;
|
30
|
+
render(): JSX.Element;
|
31
|
+
}
|
32
|
+
export {};
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import * as React from 'react';
|
2
|
+
interface IProps {
|
3
|
+
color?: 'light' | 'darker' | 'blueGrey' | 'blueGreyDarker' | 'darkUi';
|
4
|
+
zIndex?: number;
|
5
|
+
theme?: 'light' | 'dark';
|
6
|
+
}
|
7
|
+
export declare class SubNav extends React.PureComponent<IProps> {
|
8
|
+
render(): JSX.Element;
|
9
|
+
}
|
10
|
+
export {};
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import * as React from 'react';
|
2
|
+
interface IProps {
|
3
|
+
value: boolean;
|
4
|
+
disabled?: boolean;
|
5
|
+
onChange(nextValue: boolean): void;
|
6
|
+
}
|
7
|
+
export declare class Switch extends React.PureComponent<IProps> {
|
8
|
+
constructor(props: IProps);
|
9
|
+
onClick(): void;
|
10
|
+
render(): JSX.Element;
|
11
|
+
}
|
12
|
+
export {};
|
@@ -0,0 +1,25 @@
|
|
1
|
+
interface ITabs {
|
2
|
+
size?: 'normal' | 'large' | 'small';
|
3
|
+
theme?: 'light' | 'dark';
|
4
|
+
ariaLabel?: string;
|
5
|
+
children: Array<any>;
|
6
|
+
onClick(i: number): void;
|
7
|
+
}
|
8
|
+
interface ITabLabel {
|
9
|
+
label: string;
|
10
|
+
indexValue: number;
|
11
|
+
}
|
12
|
+
interface ITabContent {
|
13
|
+
theme?: 'light' | 'dark';
|
14
|
+
children: any;
|
15
|
+
activePanel: number;
|
16
|
+
}
|
17
|
+
interface ITabPanel {
|
18
|
+
indexValue: number;
|
19
|
+
children: any;
|
20
|
+
}
|
21
|
+
export declare const TabLabel: ({ label }: ITabLabel) => JSX.Element;
|
22
|
+
export declare const Tabs: ({ size, theme, ariaLabel, children, onClick }: ITabs) => JSX.Element;
|
23
|
+
export declare const TabContent: ({ theme, children, activePanel }: ITabContent) => JSX.Element;
|
24
|
+
export declare const TabPanel: ({ children, indexValue }: ITabPanel) => JSX.Element;
|
25
|
+
export {};
|
@@ -0,0 +1,22 @@
|
|
1
|
+
import * as React from 'react';
|
2
|
+
interface ITabList {
|
3
|
+
size?: 'normal' | 'large' | 'small';
|
4
|
+
theme?: 'light' | 'dark';
|
5
|
+
children: Array<any>;
|
6
|
+
}
|
7
|
+
interface IState {
|
8
|
+
index: number;
|
9
|
+
}
|
10
|
+
interface ITab {
|
11
|
+
label: string;
|
12
|
+
}
|
13
|
+
declare class Tab extends React.PureComponent<ITab> {
|
14
|
+
render(): JSX.Element;
|
15
|
+
}
|
16
|
+
declare class TabList extends React.PureComponent<ITabList, IState> {
|
17
|
+
constructor(props: ITabList);
|
18
|
+
private handleChange;
|
19
|
+
goTo(label: string): void;
|
20
|
+
render(): JSX.Element;
|
21
|
+
}
|
22
|
+
export { Tab, TabList };
|
@@ -0,0 +1,9 @@
|
|
1
|
+
interface IProps {
|
2
|
+
text: string;
|
3
|
+
keyValue?: number;
|
4
|
+
shade?: 'light' | 'darker' | 'highlight1' | 'highlight2';
|
5
|
+
shape?: 'round' | 'square';
|
6
|
+
onClick(): void;
|
7
|
+
}
|
8
|
+
export declare const Tag: ({ text, keyValue, shade, shape, onClick }: IProps) => JSX.Element;
|
9
|
+
export {};
|
@@ -0,0 +1,18 @@
|
|
1
|
+
import * as React from 'react';
|
2
|
+
interface IProps {
|
3
|
+
items: Array<any>;
|
4
|
+
keyValue: string;
|
5
|
+
minLength?: number;
|
6
|
+
}
|
7
|
+
interface IState {
|
8
|
+
selectedItem: any;
|
9
|
+
filteredItems: any;
|
10
|
+
}
|
11
|
+
export declare class TagInputTest extends React.Component<IProps, IState> {
|
12
|
+
constructor(props: IProps);
|
13
|
+
searchItem(event: any): void;
|
14
|
+
itemTemplate(item: any): JSX.Element;
|
15
|
+
handleItem(e: any): void;
|
16
|
+
render(): JSX.Element;
|
17
|
+
}
|
18
|
+
export {};
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import * as React from 'react';
|
2
|
+
interface IProps {
|
3
|
+
value: string;
|
4
|
+
onChange(valueNext: string): void;
|
5
|
+
required?: boolean;
|
6
|
+
disabled?: boolean;
|
7
|
+
}
|
8
|
+
export declare class TimePicker extends React.PureComponent<IProps> {
|
9
|
+
render(): JSX.Element;
|
10
|
+
}
|
11
|
+
export {};
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import * as React from 'react';
|
2
|
+
interface IProps {
|
3
|
+
text: string;
|
4
|
+
flow?: 'top' | 'left' | 'right' | 'down';
|
5
|
+
}
|
6
|
+
export declare class Tooltip extends React.PureComponent<IProps> {
|
7
|
+
htmlId: string;
|
8
|
+
componentDidMount(): void;
|
9
|
+
render(): JSX.Element;
|
10
|
+
}
|
11
|
+
export {};
|
@@ -0,0 +1,27 @@
|
|
1
|
+
import * as React from 'react';
|
2
|
+
import { PopperOptions } from 'popper.js';
|
3
|
+
declare type ICloseOthersEvent = CustomEvent<{
|
4
|
+
triggerElement: HTMLElement;
|
5
|
+
}>;
|
6
|
+
interface IPropsPositioner {
|
7
|
+
triggerSelector: string;
|
8
|
+
placement: PopperOptions['placement'];
|
9
|
+
zIndex?: number;
|
10
|
+
className?: string;
|
11
|
+
}
|
12
|
+
interface IStatePositioner {
|
13
|
+
open: boolean;
|
14
|
+
}
|
15
|
+
export declare class Positioner extends React.Component<IPropsPositioner, IStatePositioner> {
|
16
|
+
elementForPositioner: HTMLDivElement;
|
17
|
+
triggerElement: HTMLElement;
|
18
|
+
constructor(props: IPropsPositioner);
|
19
|
+
handleCloseOthers(event: ICloseOthersEvent): void;
|
20
|
+
componentDidMount(): void;
|
21
|
+
componentWillUnmount(): void;
|
22
|
+
toggleDropdown(e: MouseEvent): void;
|
23
|
+
closeDropdownOnOutsideClick(wrapper: HTMLElement, event: MouseEvent): void;
|
24
|
+
componentDidUpdate(): void;
|
25
|
+
render(): null;
|
26
|
+
}
|
27
|
+
export {};
|
@@ -0,0 +1,56 @@
|
|
1
|
+
export { HelloWorld } from './components/HelloWorld';
|
2
|
+
export { Button } from './components/Button';
|
3
|
+
export { Input } from './components/Input';
|
4
|
+
export { Select, Option } from './components/Select';
|
5
|
+
export { SelectWithTemplate } from './components/SelectWithTemplate';
|
6
|
+
export { Popover } from './components/Popover';
|
7
|
+
export { Label } from './components/Label';
|
8
|
+
export { Badge } from './components/Badge';
|
9
|
+
export { Alert } from './components/Alert';
|
10
|
+
export { AvatarWrapper } from './components/Avatar';
|
11
|
+
export { AvatarContentText } from './components/Avatar';
|
12
|
+
export { AvatarContentImage } from './components/Avatar';
|
13
|
+
export { IconButton } from './components/IconButton';
|
14
|
+
export { IconLabel } from './components/IconLabel';
|
15
|
+
export { Tooltip } from './components/Tooltip';
|
16
|
+
export { DatePicker } from './components/DatePicker';
|
17
|
+
export { DatePickerISO } from './components/DatePicker';
|
18
|
+
export { DatePickerLocaleSettings } from './components/DatePicker';
|
19
|
+
export { TimePicker } from './components/TimePicker';
|
20
|
+
export { FormLabel } from './components/FormLabel';
|
21
|
+
export { Switch } from './components/Switch';
|
22
|
+
export { ButtonGroup } from './components/ButtonGroup';
|
23
|
+
export { Loader } from './components/Loader';
|
24
|
+
export { Radio } from './components/Radio';
|
25
|
+
export { Checkbox } from './components/Checkbox';
|
26
|
+
export { RadioButton } from './components/RadioButton';
|
27
|
+
export { CheckboxButton } from './components/CheckboxButton';
|
28
|
+
export { CheckGroup } from './components/CheckGroup';
|
29
|
+
export { CheckButtonGroup } from './components/CheckButtonGroup';
|
30
|
+
export { NavButton } from './components/NavButton';
|
31
|
+
export { Tab, TabList } from './components/TabList';
|
32
|
+
export { LeftMenu } from './components/LeftMenu';
|
33
|
+
export { SubNav } from './components/SubNav';
|
34
|
+
export { SlidingToolbar } from './components/SlidingToolbar';
|
35
|
+
export { StrechBar } from './components/StrechBar';
|
36
|
+
export { PropsList, Prop } from './components/PropsList';
|
37
|
+
export { Icon } from './components/Icon';
|
38
|
+
export { Divider } from './components/Divider';
|
39
|
+
export { HeadingText } from './components/HeadingText';
|
40
|
+
export { DropdownFirst } from './components/DropdownFirst';
|
41
|
+
export { DropdownItem } from './components/DropdownFirst';
|
42
|
+
export { DropdownLabel } from './components/DropdownFirst';
|
43
|
+
export { DropdownDivider } from './components/DropdownFirst';
|
44
|
+
export { Dropdown } from './components/Dropdown';
|
45
|
+
export { Tag } from './components/Tag';
|
46
|
+
export { TabLabel, TabPanel, TabContent, Tabs } from './components/TabCustom';
|
47
|
+
export { EmptyState } from './components/EmptyState';
|
48
|
+
export { Autocomplete } from './components/Autocomplete';
|
49
|
+
export { DonutChart } from './components/DonutChart';
|
50
|
+
export { TagInput } from './components/TagInput';
|
51
|
+
export { TagInputTest } from './components/TagInputTest';
|
52
|
+
export { Genie } from './components/Genie';
|
53
|
+
export { GridList } from './components/GridList';
|
54
|
+
export { GridItem, GridItemContent, GridItemMedia, GridItemFooter, GridItemContentBlock, GridItemTime, GridItemTitle, GridItemText, GridItemSlug, GridItemFooterBlock, GridItemFooterActions, GridItemTopActions, GridItemCheckWrapper } from './components/GridItem';
|
55
|
+
export declare const ToggleBoxNext: any;
|
56
|
+
export declare const reactToAngular1: any;
|
package/app-typescript/index.ts
CHANGED
@@ -17,6 +17,8 @@ export { AvatarGroup } from './components/Avatar';
|
|
17
17
|
export { IconButton } from './components/IconButton';
|
18
18
|
export { IconLabel } from './components/IconLabel';
|
19
19
|
export { Tooltip } from './components/Tooltip';
|
20
|
+
export { DurationInput } from './components/DurationInput';
|
21
|
+
export { getDurationString } from './components/DurationInput';
|
20
22
|
export { DatePicker } from './components/DatePicker';
|
21
23
|
export { DatePickerISO } from './components/DatePicker';
|
22
24
|
export { DatePickerLocaleSettings } from './components/DatePicker';
|
@@ -70,8 +72,8 @@ export { IconPicker } from './components/IconPicker';
|
|
70
72
|
export { ThemeSelector } from './components/ThemeSelector';
|
71
73
|
export { DropZone } from './components/DropZone';
|
72
74
|
export { CreateButton } from './components/CreateButton';
|
73
|
-
// export { TreeSelect } from './components/TreeSelect';
|
74
75
|
export { SearchBar } from './components/SearchBar';
|
76
|
+
export { WithSizeObserver } from './components/WithSizeObserver';
|
75
77
|
|
76
78
|
export * from './components/Layouts';
|
77
79
|
export * from './components/Form';
|
@@ -82,7 +84,12 @@ export { Skeleton } from './components/Skeleton';
|
|
82
84
|
export { ListItemLoader } from './components/ListItemLoader';
|
83
85
|
export { Spinner, LoadingOverlay } from './components/Spinner';
|
84
86
|
export { Text } from './components/Text/Text';
|
87
|
+
export { Time } from './components/Text/Time';
|
85
88
|
export { Heading } from './components/Text/Heading';
|
89
|
+
export { BottomNav } from './components/Navigation/BottomNav';
|
90
|
+
export { TreeSelect } from './components/TreeSelect';
|
91
|
+
export { TableList, TableListItem } from './components/Lists/TableList';
|
92
|
+
export { ContentListItem } from './components/Lists/ContentList';
|
86
93
|
|
87
94
|
// declare non-typescript exports to prevent errors
|
88
95
|
export declare const ToggleBoxNext: any;
|
package/dist/SD-logo.svg
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
2
|
+
width="154px" height="48px" viewBox="0 0 154 48" enable-background="new 0 0 154 48" xml:space="preserve">
|
3
|
+
<path fill="#1EB06C" d="M80.711,16.993h-0.057c-0.707-0.933-2.375-1.641-3.564-1.641c-3.79,0-5.883,3.62-5.883,7.241
|
4
|
+
c0,4.582,1.98,8.034,5.883,8.034c1.584,0,2.743-0.65,3.988-1.867l0.17,1.584h2.97V9.922h-3.507V16.993z M80.711,26.497
|
5
|
+
c-0.736,0.565-1.217,1.301-2.715,1.301c-2.093,0-3.28-1.698-3.28-4.809c0-3.112,1.187-4.809,3.28-4.809
|
6
|
+
c1.131,0,2.008,0.594,2.715,1.245V26.497z M59.814,27.629l-2.546-1.585c-0.876,1.019-1.64,1.755-3.281,1.755
|
7
|
+
c-1.641,0-2.999-1.188-3.056-4.243h8.882v-1.443c0-3.536-2.15-6.788-5.996-6.76c-3.988,0-6.393,2.97-6.393,7.638
|
8
|
+
c0,4.667,2.404,7.637,6.222,7.637C56.476,30.628,58.456,29.722,59.814,27.629z M53.761,17.955c1.697,0,2.772,1.188,2.828,3.225
|
9
|
+
h-5.658C50.988,19.144,52.063,17.955,53.761,17.955z M65.75,18.153h-0.057v-2.517H62.47v14.708h3.507v-8.939
|
10
|
+
c0-0.367,1.527-2.375,3.281-2.375c0.254,0,0.453,0,0.622,0.028v-3.706C67.787,15.41,66.6,16.4,65.75,18.153z M126.495,15.636h-4.016
|
11
|
+
l-4.327,5.685h-0.113V9.922h-3.507v20.423h3.507v-4.527l1.782-2.065l3.253,6.592h3.733l-4.639-9.221L126.495,15.636z M92.927,30.628
|
12
|
+
c2.828,0,4.808-0.906,6.165-2.999l-2.545-1.585c-0.877,1.019-1.641,1.755-3.281,1.755c-1.641,0-2.998-1.188-3.055-4.243h8.881
|
13
|
+
v-1.443c0-3.536-2.149-6.788-5.996-6.76c-3.988,0-6.392,2.97-6.392,7.638C86.705,27.657,89.109,30.628,92.927,30.628z M93.04,17.955
|
14
|
+
c1.697,0,2.772,1.188,2.828,3.225h-5.657C90.268,19.144,91.343,17.955,93.04,17.955z M4.272,14.957c0-1.584,1.215-2.262,2.912-2.262
|
15
|
+
c1.838,0,3.055,1.075,3.649,2.658l3.564-1.102C13.18,11.28,10.465,9.64,7.184,9.64c-3.536,0-6.589,2.065-6.589,5.713
|
16
|
+
c0,6.28,10.521,5.488,10.521,9.504c0,1.98-1.499,2.715-3.451,2.715c-2.291,0-3.507-1.272-4.441-3.196L0,25.79
|
17
|
+
c1.16,2.971,4.3,4.838,7.637,4.838c4.525,0,7.156-2.093,7.156-6.281C14.793,17.729,4.272,18.464,4.272,14.957z M25.707,26.242
|
18
|
+
c-0.594,0.68-1.754,1.557-3.281,1.557c-1.188,0-1.81-0.623-1.81-2.603v-9.56h-3.507v10.068c0,3,1.414,4.923,4.356,4.923
|
19
|
+
c1.725,0,3.225-0.962,4.525-1.867v1.584h3.224V15.636h-3.507V26.242z M39.96,15.353c-1.584,0-2.743,0.651-3.762,1.641v-1.357h-3.366
|
20
|
+
v20.082h3.507v-6.732h0.057c0.707,0.934,2.376,1.641,3.564,1.641c3.79,0,5.883-3.621,5.883-7.242
|
21
|
+
C45.843,18.803,43.863,15.353,39.96,15.353z M39.055,27.799c-1.132,0-2.009-0.595-2.716-1.245v-7.071
|
22
|
+
c0.735-0.566,1.217-1.301,2.716-1.301c2.093,0,3.281,1.697,3.281,4.809C42.336,26.1,41.148,27.799,39.055,27.799z M111.762,26.214
|
23
|
+
c0-5.373-7.354-4.299-7.354-6.815c0-0.877,0.623-1.443,1.98-1.443c1.103,0,2.036,0.791,2.743,1.556l2.206-1.923
|
24
|
+
c-1.273-1.499-3.224-2.235-5.176-2.235c-2.545,0-4.865,1.527-4.865,4.272c0,5.12,7.354,4.214,7.354,6.732
|
25
|
+
c0,0.989-0.849,1.669-2.093,1.669c-1.499,0-2.602-0.99-3.422-2.122l-2.348,1.754c1.301,1.924,3.225,2.971,5.572,2.971
|
26
|
+
C109.442,30.628,111.762,29.27,111.762,26.214z M140.611,0l-11.523,3.955l14.217,5.386l-5.218,14.094l9.686-5.538L154,5.063
|
27
|
+
L140.611,0z M51.918,42.583c0-0.549,0.42-0.783,1.007-0.783c0.636,0,1.057,0.372,1.262,0.92l1.232-0.382
|
28
|
+
c-0.42-1.027-1.359-1.595-2.494-1.595c-1.222,0-2.279,0.714-2.279,1.976c0,2.171,3.639,1.897,3.639,3.286
|
29
|
+
c0,0.684-0.518,0.939-1.194,0.939c-0.792,0-1.212-0.439-1.535-1.105l-1.115,0.489c0.4,1.027,1.486,1.672,2.64,1.672
|
30
|
+
c1.565,0,2.475-0.723,2.475-2.171C55.557,43.54,51.918,43.794,51.918,42.583z M97.907,40.831l-2.034,7.071h1.34l0.42-1.525h2.23
|
31
|
+
l0.392,1.525h1.34l-2.005-7.071H97.907z M97.927,45.262l0.831-3.071h0.02l0.792,3.071H97.927z M107.042,44.176
|
32
|
+
c0.773-0.303,1.076-0.87,1.076-1.604c-0.078-1.261-0.988-1.731-2.397-1.731h-2.621v7.062h2.602c1.8,0,2.573-0.763,2.573-1.858
|
33
|
+
C108.275,44.969,107.962,44.548,107.042,44.176z M104.451,41.936h1.35c0.646,0,0.969,0.372,0.969,0.861
|
34
|
+
c0,0.489-0.323,0.861-0.969,0.861h-1.35V41.936z M105.8,46.807h-1.35v-2.054h1.35c0.783,0,1.125,0.352,1.125,1.027
|
35
|
+
C106.926,46.455,106.583,46.807,105.8,46.807z M115.19,42.934c-0.009-1.164-0.655-2.093-2.259-2.093h-2.817v7.062h1.35v-2.875h1.164
|
36
|
+
l1.331,2.875h1.496l-1.555-3.149C114.76,44.509,115.2,43.805,115.19,42.934z M112.461,43.932h-0.998v-1.996h1.232
|
37
|
+
c0.743,0,1.144,0.333,1.144,0.998C113.84,43.599,113.517,43.932,112.461,43.932z M117.195,47.902h1.35v-7.062h-1.35V47.902z
|
38
|
+
M59.811,40.743c-1.927,0-2.963,1.32-2.963,3.628c0,2.308,1.036,3.629,2.963,3.629c1.927,0,2.964-1.32,2.964-3.629
|
39
|
+
C62.775,42.063,61.738,40.743,59.811,40.743z M59.811,46.866c-1.115,0-1.633-0.841-1.613-2.494c0-1.652,0.509-2.493,1.613-2.493
|
40
|
+
c1.106,0,1.614,0.841,1.614,2.493C61.425,46.025,60.917,46.866,59.811,46.866z M91.129,47.902h1.35v-3.11h2.358v-1.134h-2.358
|
41
|
+
v-1.682h3.15v-1.135h-4.499V47.902z M123.112,46.866c-1.017,0-1.506-0.841-1.486-2.494c0-1.652,0.548-2.493,1.447-2.493
|
42
|
+
c0.665,0,1.086,0.42,1.281,1.016l1.222-0.293c-0.332-1.252-1.115-1.858-2.465-1.858c-1.8,0-2.836,1.32-2.836,3.628
|
43
|
+
c0,2.308,1.036,3.629,2.836,3.629c1.291,0,2.211-0.625,2.631-1.848l-1.252-0.333C124.091,46.65,123.719,46.866,123.112,46.866z
|
44
|
+
M76.488,42.934c-0.01-1.164-0.655-2.093-2.259-2.093h-2.816v7.062h1.35v-2.875h1.164l1.33,2.875h1.496l-1.555-3.149
|
45
|
+
C76.057,44.509,76.497,43.805,76.488,42.934z M73.759,43.932h-0.998v-1.996h1.232c0.743,0,1.145,0.333,1.145,0.998
|
46
|
+
C75.138,43.599,74.815,43.932,73.759,43.932z M68.262,45.321c0,1.144-0.45,1.545-1.36,1.545c-0.909,0-1.359-0.402-1.359-1.545v-4.48
|
47
|
+
h-1.35v4.421c0,2.063,1.271,2.738,2.709,2.738c1.438,0,2.71-0.675,2.71-2.738v-4.421h-1.35V45.321z M86.112,44.792h2.415v-1.134
|
48
|
+
h-2.415v-1.682h3.325v-1.135h-4.675v7.062h4.783v-1.134h-3.433V44.792z M80.684,46.866c-1.018,0-1.506-0.841-1.487-2.494
|
49
|
+
c0-1.652,0.548-2.493,1.447-2.493c0.665,0,1.085,0.42,1.281,1.016l1.223-0.293c-0.333-1.252-1.115-1.858-2.464-1.858
|
50
|
+
c-1.799,0-2.837,1.32-2.837,3.628c0,2.308,1.037,3.629,2.837,3.629c1.291,0,2.21-0.625,2.631-1.848l-1.252-0.333
|
51
|
+
C81.661,46.65,81.29,46.866,80.684,46.866z"/>
|
52
|
+
</svg>
|