superdesk-ui-framework 3.0.1-beta.2 → 3.0.1-beta.5
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/img/SD-logo.svg +52 -0
- 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/_hamburger.scss +160 -0
- package/app/styles/_helpers.scss +11 -4
- package/app/styles/_icon-font.scss +3 -0
- package/app/styles/_sd-tag-input.scss +201 -296
- package/app/styles/app.scss +3 -0
- package/app/styles/components/_list-item.scss +13 -1
- package/app/styles/components/_sd-notification-panel.scss +48 -0
- package/app/styles/components/_sd-photo-preview.scss +1 -1
- package/app/styles/design-tokens/_design-tokens-general.scss +2 -5
- package/app/styles/design-tokens/_new-colors.scss +6 -1
- package/app/styles/form-elements/_forms-general.scss +22 -7
- package/app/styles/form-elements/_inputs.scss +356 -62
- package/app/styles/grids/_grid-layout.scss +119 -39
- 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-dropdown.scss +0 -2
- package/app-typescript/components/Badge.tsx +3 -2
- package/app-typescript/components/DatePicker.tsx +71 -36
- package/app-typescript/components/DonutChart.tsx +1 -1
- package/app-typescript/components/DurationInput.tsx +328 -0
- package/app-typescript/components/Form/InputBase.tsx +85 -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 +3 -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/BottomBarAction.tsx +35 -0
- package/app-typescript/components/Layouts/CoreLayout.tsx +62 -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 +16 -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 +6 -0
- package/app-typescript/components/Lists/BoxedList.tsx +36 -4
- package/app-typescript/components/Lists/ContentList.tsx +4 -4
- 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/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/Text/Time.tsx +34 -0
- package/app-typescript/components/TimePicker.tsx +48 -16
- package/app-typescript/components/Togglebox.tsx +1 -1
- package/app-typescript/components/Tooltip.tsx +7 -5
- package/app-typescript/components/TreeSelect.tsx +423 -195
- 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 +6 -1
- package/dist/SD-logo.svg +52 -0
- package/dist/examples.bundle.css +660 -0
- package/dist/examples.bundle.js +44468 -41459
- 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 +155 -0
- package/dist/playgrounds/react-playgrounds/Index.tsx +1 -0
- package/dist/playgrounds/react-playgrounds/RundownEditor.tsx +24 -16
- package/dist/playgrounds/react-playgrounds/TestGround.tsx +112 -1
- 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/ContentList.tsx +15 -9
- package/dist/react/DatePicker.tsx +31 -6
- package/dist/react/DurationInput.tsx +104 -0
- package/dist/react/Index.tsx +10 -0
- package/dist/react/Inputs.tsx +262 -8
- package/dist/react/Labels.tsx +51 -1
- package/dist/react/MultiSelect.tsx +9 -1
- package/dist/react/SelectWithTemplate.tsx +6 -1
- package/dist/react/Selects.tsx +55 -0
- package/dist/react/TableList.tsx +22 -44
- package/dist/react/TimePicker.tsx +16 -8
- package/dist/react/TreeSelect.tsx +301 -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/superdesk-ui.bundle.css +2761 -450
- package/dist/superdesk-ui.bundle.js +42992 -40401
- 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 +155 -0
- package/examples/pages/playgrounds/react-playgrounds/Index.tsx +1 -0
- package/examples/pages/playgrounds/react-playgrounds/RundownEditor.tsx +24 -16
- package/examples/pages/playgrounds/react-playgrounds/TestGround.tsx +112 -1
- 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/ContentList.tsx +15 -9
- package/examples/pages/react/DatePicker.tsx +31 -6
- package/examples/pages/react/DurationInput.tsx +104 -0
- package/examples/pages/react/Index.tsx +10 -0
- package/examples/pages/react/Inputs.tsx +262 -8
- package/examples/pages/react/Labels.tsx +51 -1
- package/examples/pages/react/MultiSelect.tsx +9 -1
- package/examples/pages/react/SelectWithTemplate.tsx +6 -1
- package/examples/pages/react/Selects.tsx +55 -0
- package/examples/pages/react/TableList.tsx +22 -44
- package/examples/pages/react/TimePicker.tsx +16 -8
- package/examples/pages/react/TreeSelect.tsx +301 -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 +5 -4
- package/patches/@superdesk+primereact+5.0.2-4.patch +53 -0
- 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.js +8 -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.js +7 -6
- package/react/components/DropdownFirst.js +18 -11
- package/react/components/DurationInput.d.ts +41 -0
- package/react/components/DurationInput.js +289 -0
- package/react/components/EmptyState.js +7 -5
- package/react/components/Form/FormGroup.js +7 -5
- package/react/components/Form/FormItem.js +5 -3
- package/react/components/Form/FormLabel.js +5 -3
- package/react/components/Form/FormRow.js +5 -3
- package/react/components/Form/FormText.js +4 -2
- package/react/components/Form/InputBase.d.ts +42 -0
- package/react/components/Form/InputBase.js +72 -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 +3 -0
- package/react/components/Form/index.js +7 -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.js +7 -5
- 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 +6 -4
- package/react/components/Layouts/AuthoringMain.js +4 -2
- 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 +19 -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 +9 -0
- package/react/components/Layouts/CoreLayoutMain.js +49 -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 +2 -0
- package/react/components/LeftMenu.js +19 -12
- 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 +45 -0
- package/react/components/Lists/ContentList.js +85 -0
- package/react/components/Lists/SimpleList.js +9 -7
- 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.js +6 -4
- 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 +15 -2
- package/react/components/TimePicker.js +19 -6
- 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 +75 -0
- package/react/components/TreeSelect.js +448 -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 +6 -0
- package/react/index.js +15 -2
- package/yarn-error.log +111 -0
- package/sd_icons.eot +0 -0
- package/sd_icons.svg +0 -189
- package/sd_icons.ttf +0 -0
- package/sd_icons.woff +0 -0
package/react/index.js
CHANGED
@@ -9,9 +9,11 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (functi
|
|
9
9
|
o[k2] = m[k];
|
10
10
|
}));
|
11
11
|
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
12
|
-
for (var p in m) if (p !== "default" && !
|
12
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
13
13
|
};
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
15
|
+
exports.DropdownDivider = exports.DropdownLabel = exports.DropdownItem = exports.DropdownFirst = exports.HeadingText = exports.ContentDivider = exports.Divider = exports.Icon = exports.Prop = exports.PropsList = exports.StrechBar = exports.SlidingToolbar = exports.SubNavDivider = exports.SubNav = exports.LeftMenu = exports.TabList = exports.Tab = exports.NavButton = exports.CheckButtonGroup = exports.CheckGroup = exports.CheckboxButton = exports.RadioButtonGroup = exports.Checkbox = exports.RadioGroup = exports.Loader = exports.ButtonGroup = exports.SwitchGroup = exports.Switch = exports.FormLabel = exports.TimePicker = exports.DatePickerISO = exports.DatePicker = exports.DurationInput = exports.Tooltip = exports.IconLabel = exports.IconButton = exports.AvatarGroup = exports.AvatarContentImage = exports.AvatarContentText = exports.AvatarWrapper = exports.Alert = exports.Badge = exports.Label = exports.Popover = exports.SelectWithTemplate = exports.Option = exports.Select = exports.Input = exports.Button = exports.HelloWorld = void 0;
|
16
|
+
exports.ContentListItem = exports.TreeSelect = exports.BottomNav = exports.Heading = exports.Time = exports.Text = exports.LoadingOverlay = exports.Spinner = exports.ListItemLoader = exports.Skeleton = exports.WithSizeObserver = exports.SearchBar = exports.CreateButton = exports.DropZone = exports.ThemeSelector = exports.IconPicker = exports.SelectGrid = exports.ToggleBox = exports.Menu = exports.toasted = exports.GridItemCheckWrapper = exports.GridItemTopActions = exports.GridItemFooterActions = exports.GridItemFooterBlock = exports.GridItemSlug = exports.GridItemText = exports.GridItemTitle = exports.GridItemTime = exports.GridItemContentBlock = exports.GridItemFooter = exports.GridItemMedia = exports.GridItemContent = exports.GridItem = exports.GridList = exports.TagInputTest = exports.TagInput = exports.Modal = exports.Carousel = exports.DonutChart = exports.Autocomplete = exports.EmptyState = exports.Tabs = exports.TabContent = exports.TabPanel = exports.TabLabel = exports.Tag = exports.Dropdown = void 0;
|
15
17
|
var HelloWorld_1 = require("./components/HelloWorld");
|
16
18
|
Object.defineProperty(exports, "HelloWorld", { enumerable: true, get: function () { return HelloWorld_1.HelloWorld; } });
|
17
19
|
var Button_1 = require("./components/Button");
|
@@ -45,6 +47,8 @@ var IconLabel_1 = require("./components/IconLabel");
|
|
45
47
|
Object.defineProperty(exports, "IconLabel", { enumerable: true, get: function () { return IconLabel_1.IconLabel; } });
|
46
48
|
var Tooltip_1 = require("./components/Tooltip");
|
47
49
|
Object.defineProperty(exports, "Tooltip", { enumerable: true, get: function () { return Tooltip_1.Tooltip; } });
|
50
|
+
var DurationInput_1 = require("./components/DurationInput");
|
51
|
+
Object.defineProperty(exports, "DurationInput", { enumerable: true, get: function () { return DurationInput_1.DurationInput; } });
|
48
52
|
var DatePicker_1 = require("./components/DatePicker");
|
49
53
|
Object.defineProperty(exports, "DatePicker", { enumerable: true, get: function () { return DatePicker_1.DatePicker; } });
|
50
54
|
var DatePicker_2 = require("./components/DatePicker");
|
@@ -161,9 +165,10 @@ var DropZone_1 = require("./components/DropZone");
|
|
161
165
|
Object.defineProperty(exports, "DropZone", { enumerable: true, get: function () { return DropZone_1.DropZone; } });
|
162
166
|
var CreateButton_1 = require("./components/CreateButton");
|
163
167
|
Object.defineProperty(exports, "CreateButton", { enumerable: true, get: function () { return CreateButton_1.CreateButton; } });
|
164
|
-
// export { TreeSelect } from './components/TreeSelect';
|
165
168
|
var SearchBar_1 = require("./components/SearchBar");
|
166
169
|
Object.defineProperty(exports, "SearchBar", { enumerable: true, get: function () { return SearchBar_1.SearchBar; } });
|
170
|
+
var WithSizeObserver_1 = require("./components/WithSizeObserver");
|
171
|
+
Object.defineProperty(exports, "WithSizeObserver", { enumerable: true, get: function () { return WithSizeObserver_1.WithSizeObserver; } });
|
167
172
|
__exportStar(require("./components/Layouts"), exports);
|
168
173
|
__exportStar(require("./components/Form"), exports);
|
169
174
|
__exportStar(require("./components/Navigation"), exports);
|
@@ -177,5 +182,13 @@ Object.defineProperty(exports, "Spinner", { enumerable: true, get: function () {
|
|
177
182
|
Object.defineProperty(exports, "LoadingOverlay", { enumerable: true, get: function () { return Spinner_1.LoadingOverlay; } });
|
178
183
|
var Text_1 = require("./components/Text/Text");
|
179
184
|
Object.defineProperty(exports, "Text", { enumerable: true, get: function () { return Text_1.Text; } });
|
185
|
+
var Time_1 = require("./components/Text/Time");
|
186
|
+
Object.defineProperty(exports, "Time", { enumerable: true, get: function () { return Time_1.Time; } });
|
180
187
|
var Heading_1 = require("./components/Text/Heading");
|
181
188
|
Object.defineProperty(exports, "Heading", { enumerable: true, get: function () { return Heading_1.Heading; } });
|
189
|
+
var BottomNav_1 = require("./components/Navigation/BottomNav");
|
190
|
+
Object.defineProperty(exports, "BottomNav", { enumerable: true, get: function () { return BottomNav_1.BottomNav; } });
|
191
|
+
var TreeSelect_1 = require("./components/TreeSelect");
|
192
|
+
Object.defineProperty(exports, "TreeSelect", { enumerable: true, get: function () { return TreeSelect_1.TreeSelect; } });
|
193
|
+
var ContentList_1 = require("./components/Lists/ContentList");
|
194
|
+
Object.defineProperty(exports, "ContentListItem", { enumerable: true, get: function () { return ContentList_1.ContentListItem; } });
|
package/yarn-error.log
ADDED
@@ -0,0 +1,111 @@
|
|
1
|
+
Arguments:
|
2
|
+
/usr/local/bin/node /usr/local/bin/yarn install
|
3
|
+
|
4
|
+
PATH:
|
5
|
+
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin
|
6
|
+
|
7
|
+
Yarn version:
|
8
|
+
1.21.1
|
9
|
+
|
10
|
+
Node version:
|
11
|
+
12.14.1
|
12
|
+
|
13
|
+
Platform:
|
14
|
+
linux x64
|
15
|
+
|
16
|
+
Trace:
|
17
|
+
Error: getaddrinfo EAI_AGAIN registry.yarnpkg.com
|
18
|
+
at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:60:26)
|
19
|
+
|
20
|
+
npm manifest:
|
21
|
+
{
|
22
|
+
"name": "superdesk-ui-framework",
|
23
|
+
"version": "2.1.11",
|
24
|
+
"license": "AGPL-3.0",
|
25
|
+
"repository": {
|
26
|
+
"type": "git",
|
27
|
+
"url": "https://github.com/superdesk/superdesk-ui-framework.git"
|
28
|
+
},
|
29
|
+
"main": "dist/superdesk-ui.bundle.js",
|
30
|
+
"types": "app-typescript/dist/index.d.ts",
|
31
|
+
"contributors": [
|
32
|
+
"Nemanja Pavlovic",
|
33
|
+
"Vladimir Stefanovic",
|
34
|
+
"Darko Tomic",
|
35
|
+
"Aleksandar Jelicic",
|
36
|
+
"Tomas Kikutis"
|
37
|
+
],
|
38
|
+
"scripts": {
|
39
|
+
"start": "webpack-dev-server --config tasks/webpack.dev.js",
|
40
|
+
"server": "webpack --watch",
|
41
|
+
"build": "webpack && npm run lint && tsc",
|
42
|
+
"lint": "eslint app && tslint -c tslint.json 'app-typescript/**/*.{ts,tsx}'",
|
43
|
+
"prepublishOnly": "npm run build",
|
44
|
+
"prepublish": "patch-package"
|
45
|
+
},
|
46
|
+
"devDependencies": {
|
47
|
+
"@types/classnames": "^2.2.9",
|
48
|
+
"@types/lodash": "4.14.149",
|
49
|
+
"@types/react": "16.8.23",
|
50
|
+
"@types/react-dom": "16.8.0",
|
51
|
+
"@types/react-router-dom": "^5.1.2",
|
52
|
+
"angular": "^1.7.9",
|
53
|
+
"angular-animate": "^1.7.9",
|
54
|
+
"angular-route": "^1.7.9",
|
55
|
+
"babel-core": "^6.26.0",
|
56
|
+
"babel-loader": "^7.1.2",
|
57
|
+
"babel-plugin-transform-object-rest-spread": "^6.26.0",
|
58
|
+
"babel-preset-es2015": "^6.24.1",
|
59
|
+
"babel-preset-react": "^6.24.1",
|
60
|
+
"classnames": "^2.2.5",
|
61
|
+
"clean-webpack-plugin": "^1.0.0",
|
62
|
+
"code-prettify": "^0.1.0",
|
63
|
+
"copy-webpack-plugin": "^4.6.0",
|
64
|
+
"css-loader": "^2.1.1",
|
65
|
+
"eslint": "^4.6.1",
|
66
|
+
"eslint-loader": "^1.9.0",
|
67
|
+
"eslint-plugin-angular": "^3.1.1",
|
68
|
+
"eslint-plugin-react": "^7.3.0",
|
69
|
+
"extract-text-webpack-plugin": "^3.0.2",
|
70
|
+
"file-loader": "^0.11.2",
|
71
|
+
"html-loader": "^0.5.1",
|
72
|
+
"html-webpack-plugin": "^2.30.1",
|
73
|
+
"jquery": "^3.1.1",
|
74
|
+
"jquery-ui": "^1.12.1",
|
75
|
+
"lodash": "4.17.15",
|
76
|
+
"node-sass": "^4.5.3",
|
77
|
+
"patch-package": "6.2.0",
|
78
|
+
"prismjs": "^1.17.1",
|
79
|
+
"prop-types": "^15.6.0",
|
80
|
+
"react": "16.8.6",
|
81
|
+
"react-bootstrap": "^0.31.2",
|
82
|
+
"react-dom": "16.8.6",
|
83
|
+
"react-redux": "^5.0.6",
|
84
|
+
"react-router-dom": "^5.1.2",
|
85
|
+
"redux": "^3.7.2",
|
86
|
+
"redux-form": "^7.0.4",
|
87
|
+
"sass-loader": "^6.0.6",
|
88
|
+
"style-loader": "^0.18.2",
|
89
|
+
"superdesk-code-style": "^1.1.2",
|
90
|
+
"ts-loader": "^6.0.2",
|
91
|
+
"tslint": "^5.18.0",
|
92
|
+
"typescript": "^3.5.1",
|
93
|
+
"url-loader": "^1.1.2",
|
94
|
+
"webpack": "^3.5.5",
|
95
|
+
"webpack-cli": "3.3.10",
|
96
|
+
"webpack-dev-server": "2.11.1",
|
97
|
+
"webpack-merge": "^4.2.1"
|
98
|
+
},
|
99
|
+
"dependencies": {
|
100
|
+
"date-fns": "2.7.0",
|
101
|
+
"popper.js": "1.14.4",
|
102
|
+
"primeicons": "2.0.0",
|
103
|
+
"primereact": "3.3.2"
|
104
|
+
}
|
105
|
+
}
|
106
|
+
|
107
|
+
yarn manifest:
|
108
|
+
No manifest
|
109
|
+
|
110
|
+
Lockfile:
|
111
|
+
No lockfile
|
package/sd_icons.eot
DELETED
Binary file
|
package/sd_icons.svg
DELETED
@@ -1,189 +0,0 @@
|
|
1
|
-
<?xml version="1.0" standalone="no"?>
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3
|
-
<svg xmlns="http://www.w3.org/2000/svg">
|
4
|
-
<metadata>Generated by IcoMoon</metadata>
|
5
|
-
<defs>
|
6
|
-
<font id="sd_icons" horiz-adv-x="1024">
|
7
|
-
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
8
|
-
<missing-glyph horiz-adv-x="1024" />
|
9
|
-
<glyph unicode=" " horiz-adv-x="512" d="" />
|
10
|
-
<glyph unicode="" glyph-name="photo" d="M656 421.394c0-79.171-64.181-143.352-143.352-143.352s-143.352 64.181-143.352 143.352c0 79.171 64.181 143.352 143.352 143.352s143.352-64.181 143.352-143.352zM860 768h-140l-112 128h-192l-112-128h-140c-55.228 0-100-44.772-100-100v-504c0-55.228 44.772-100 100-100h696c55.228 0 100 44.772 100 100v504c0 55.228-44.772 100-100 100zM512 197.408c-123.64 0-223.986 100.346-223.986 223.986 0 123.642 100.346 223.988 223.986 223.988s223.986-100.346 223.986-223.988c0-123.64-100.346-223.986-223.986-223.986z" />
|
11
|
-
<glyph unicode="" glyph-name="video" d="M768 576v192c0 31.318-32.682 64-64 64h-640c-31.318 0-64-32.682-64-64v-576c0-31.318 32.682-64 64-64h640c31.318 0 64 32.682 64 64v192l256-192v575.854l-256-191.854z" />
|
12
|
-
<glyph unicode="" glyph-name="map-marker" d="M512 896c-173.828 0-314.416-140.59-314.416-314.416 0-235.814 314.416-581.584 314.416-581.584s314.416 345.77 314.416 581.584c0 173.826-140.588 314.416-314.416 314.416zM512 469.292c-61.986 0-112.292 50.306-112.292 112.292s50.306 112.292 112.292 112.292 112.292-50.306 112.292-112.292-50.308-112.292-112.292-112.292z" />
|
13
|
-
<glyph unicode="" glyph-name="slideshow" d="M64 617.91l-34-13.366c-11.238-4.506-19.029-15.308-19.029-27.93 0-3.953 0.764-7.727 2.153-11.184l-0.072 0.202 50.948-129.576v181.854zM931.498 576h-772.898c-16.9 0-30.6-13.7-30.6-30.6v0-578.8c0-16.9 13.7-30.6 30.6-30.6h772.896c16.9 0 30.6 13.7 30.6 30.6v0 578.8c0 16.899-13.699 30.599-30.598 30.6v0zM192 64l192 256 128-176 176 272 208-352h-704zM655.272 720l101.186-80h206.28l-101.8 258.926c-4.515 11.259-15.337 19.065-27.982 19.065-3.96 0-7.741-0.766-11.204-2.157l0.202 0.072-701.766-275.906h518.348z" />
|
14
|
-
<glyph unicode="" glyph-name="text" d="M831.6 896h-639.2c-35.4 0-64.4-29-64.4-64.4v-703c0-35.4 29-64.4 64.4-64.4h639c35.4 0 64.4 29 64.4 64.4v703c0.2 35.4-28.8 64.4-64.2 64.4zM704 256h-384v64h384v-64zM704 384h-384v64h384v-64zM704 512h-384v64h384v-64zM704 640h-384v64h384v-64z" />
|
15
|
-
<glyph unicode="" glyph-name="file" d="M896 576l-320 320h-320.666c-34.936-0.105-63.229-28.398-63.334-63.324v-769.342c0.105-34.936 28.398-63.229 63.324-63.334h577.342c34.936 0.105 63.229 28.398 63.334 63.324v512.676zM832 576h-256v256z" />
|
16
|
-
<glyph unicode="" glyph-name="calender" d="M256 512h256v-256h-256zM896 832h-64v64h-128v-64h-384v64h-128v-64h-64c-43.316 0-64-20.684-64-64v-704c0-43.316 20.684-64 64-64h768c43.316 0 64 20.684 64 64v704c0 43.316-20.684 64-64 64zM896 64h-768v576h768v-576z" />
|
17
|
-
<glyph unicode="" glyph-name="composite" d="M64 896h896v-192h-896zM128 640v-512c0-35.346 28.654-64 64-64h640c35.346 0 64 28.654 64 64v512h-768zM704 448h-384v128h384v-128z" />
|
18
|
-
<glyph unicode="" glyph-name="audio" d="M0 640v-320h192l320-256v832l-320-256h-192zM710.152 478.396c0 94.98-54.734 176.544-134.152 216.252v-431.968c79.418 39.174 134.152 120.738 134.152 215.716zM576 949v-110.54c155.078-46.148 268.302-189.958 268.302-360.062s-113.224-313.916-268.302-360.064v-110.54c215.178 48.832 375.624 240.936 375.624 470.604s-160.446 421.77-375.624 470.602z" />
|
19
|
-
<glyph unicode="" glyph-name="stream" d="M832 768h-640c-35.346 0-64-28.654-64-64v-64c0-35.346 28.654-64 64-64h640c35.346 0 64 28.654 64 64v64c0 35.346-28.654 64-64 64zM256 640h-64v64h64v-64zM832 512h-640c-35.346 0-64-28.652-64-64v-64c0-35.348 28.654-64 64-64h640c35.346 0 64 28.652 64 64v64c0 35.348-28.654 64-64 64zM256 384h-64v64h64v-64zM832 256h-640c-35.346 0-64-28.652-64-64v-64c0-35.348 28.654-64 64-64h640c35.346 0 64 28.652 64 64v64c0 35.348-28.654 64-64 64zM256 128h-64v64h64v-64z" />
|
20
|
-
<glyph unicode="" glyph-name="ingest" d="M832 384v-256h-640v256h-128v-384h896v384zM770 512h-190v256h-132v-256h-192l256-256zM384 256h-128v-64h192zM768 192v64h-128l-64-64z" />
|
21
|
-
<glyph unicode="" glyph-name="archive" d="M960 768h-320v-320h128l-224-256-224 256h128v320h-320c-35.346 0-64-28.654-64-64v-192h64v-448c0-35.346 28.654-64 64-64h704c35.346 0 64 28.654 64 64v448h64v192c0 35.346-28.654 64-64 64z" />
|
22
|
-
<glyph unicode="" glyph-name="time" d="M544 730.666c173.784 0 314.666-140.882 314.666-314.666s-140.882-314.666-314.666-314.666c-173.786 0-314.666 140.882-314.666 314.666s140.88 314.666 314.666 314.666zM544 832c-56.13 0-110.616-11.010-161.948-32.72-49.544-20.956-94.028-50.942-132.208-89.124-38.182-38.18-68.168-82.664-89.124-132.208-21.712-51.33-32.72-105.818-32.72-161.948s11.008-110.618 32.72-161.948c20.956-49.544 50.942-94.026 89.124-132.208 38.18-38.182 82.664-68.168 132.208-89.122 51.332-21.712 105.818-32.722 161.948-32.722 56.128 0 110.618 11.010 161.948 32.72 49.544 20.954 94.026 50.942 132.208 89.122 38.182 38.184 68.168 82.664 89.122 132.208 21.712 51.332 32.722 105.82 32.722 161.95s-11.010 110.618-32.72 161.948c-20.956 49.544-50.942 94.030-89.122 132.208-38.184 38.182-82.664 68.168-132.208 89.124-51.332 21.71-105.822 32.72-161.95 32.72zM576 448v192h-64v-256h192v64z" />
|
23
|
-
<glyph unicode="" glyph-name="pin" d="M640 512v256l-128-64h-319.834c-35.438 0-64.166-28.728-64.166-64.166v-319.666c0-35.44 28.728-64.168 64.166-64.168h319.834l128-64v256h320v64h-320z" />
|
24
|
-
<glyph unicode="" glyph-name="expand" d="M0 831.666v-767.666c0-70.91 57.728-128 128-128h768c70.272 0 128 56.118 128 127.028v192.972h-128v-192h-640l-0.466 768.234 640.466-0.234v-192h128v192c0 70.272-57.728 128-128 128h-768c-70.272 0-128-57.422-128-128.334zM1024 448l-256 192v-128h-320v-128.334l320 0.334v-128z" />
|
25
|
-
<glyph unicode="" glyph-name="ascending" d="M0 64.662h1024v-128.662h-1024zM128 320.662h768v-128.662h-768zM256 576.662h512v-128.662h-512zM384 832h256v-128.662h-256z" />
|
26
|
-
<glyph unicode="" glyph-name="th" d="M64 832h256v-320h-256v320zM64 128h256v320h-256v-320zM384 512h256v320h-256v-320zM384 128h256v320h-256v-320zM704 832v-320h256v320h-256zM704 128h256v320h-256v-320z" />
|
27
|
-
<glyph unicode="" glyph-name="th-list" d="M64 832h192v-192h-192v192zM64 384h192v192h-192v-192zM64 128h192v192h-192v-192zM320 640h640v192h-640v-192zM320 384h640v192h-640v-192zM320 128h640v192h-640v-192z" />
|
28
|
-
<glyph unicode="" glyph-name="pencil" d="M128.472 176.892v-176.886h176.886l521.932 521.932-176.886 176.886-521.932-521.932zM963.61 658.256c18.396 18.396 18.396 48.348 0 66.744l-110.14 110.14c-18.396 18.396-48.348 18.396-66.744 0l-86.32-86.32 176.886-176.886 86.318 86.322z" />
|
29
|
-
<glyph unicode="" glyph-name="lock" d="M832 512h-64v160c0 112-109 224-224 224h-65c-127 0-223-112-223-224v-160h-64c-35.346 0-64-28.654-64-64v-448c0-35.346 28.654-64 64-64h640c35.346 0 64 28.654 64 64v448c0 35.346-28.654 64-64 64zM512 128c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96zM640 512h-256v160c0 48 64 96 112 96h32c48 0 112-48 112-96v-160z" />
|
30
|
-
<glyph unicode="" glyph-name="retweet" d="M256 256v256h128l-192 192-192-192h128v-384h576l-128 128zM768 576v-256h-128l192-192 192 192h-128v384h-576l128-128z" />
|
31
|
-
<glyph unicode="" glyph-name="unspike" d="M117.034 849.558l-68.060-68.058 146.5-146.5v-571c0-34.978 28.356-63.334 63.334-63.334h449.334c33.36 0 60.678 25.8 63.134 58.532l109.494-109.494 66.526 69.592-830.262 830.262zM771.476 640h-314.408l314.408-314.408zM835.476 704v128h-128l-64 64h-320l-61.204-61.204 130.796-130.796z" />
|
32
|
-
<glyph unicode="" glyph-name="fullscreen" d="M448 320v64h-64l-192-192v192h-128v-384h384v128h-192zM576 576v-64h64l192 192v-192h128v384h-384v-128h192z" />
|
33
|
-
<glyph unicode="" glyph-name="fetch-as" d="M850.306 314.438l84.906 39.766c17.764 8.32 36.138-10.268 27.616-27.934l-40.734-84.446 88.158-31.918c18.444-6.678 18.294-32.814-0.224-39.28l-88.516-30.908 39.766-84.906c8.32-17.764-10.268-36.138-27.934-27.616l-84.446 40.734-31.918-88.158c-6.678-18.444-32.814-18.294-39.28 0.224l-30.908 88.516-84.906-39.766c-17.764-8.32-36.138 10.268-27.616 27.934l40.734 84.446-88.158 31.918c-18.444 6.678-18.294 32.814 0.224 39.28l88.516 30.908-39.766 84.906c-8.32 17.764 10.268 36.138 27.934 27.616l84.446-40.734 31.918 88.158c6.678 18.444 32.814 18.294 39.28-0.224l30.908-88.516zM528 192c0 150.222 121.778 272 272 272 11.281-0.004 22.398-0.689 33.317-2.014l-1.317 0.13v113.884h64v192c0 35.346-28.654 64-64 64h-320v-320h128l-192-256-192 256h128v320h-320c-35.346 0-64-28.654-64-64v-192h64v-448c0-35.346 28.654-64 64-64h431.958c-20.386 38.15-31.958 81.722-31.958 128z" />
|
34
|
-
<glyph unicode="" glyph-name="search" d="M702.358 362.324c41.124 61.124 65.13 134.722 65.13 213.932 0 211.938-171.808 383.744-383.744 383.744s-383.744-171.806-383.744-383.744c0-211.934 171.806-383.744 383.744-383.744 77.214 0 149.086 22.824 209.282 62.066l278.776-278.776 108.54 108.54-277.984 277.982zM383.744 319.696c-141.694 0-256.56 114.868-256.56 256.56 0 141.694 114.866 256.56 256.56 256.56 141.692 0 256.56-114.866 256.56-256.56 0-141.692-114.868-256.56-256.56-256.56z" />
|
35
|
-
<glyph unicode="" glyph-name="star" d="M509.14 816.158l98.84-304.196h319.854l-258.768-188.008 98.84-304.196-258.766 188.002-258.766-188.002 98.84 304.196-258.768 188.008h319.854z" />
|
36
|
-
<glyph unicode="" glyph-name="star-empty" d="M933.492 511.954h-319.852l-98.84 304.196-98.84-304.198h-319.854l258.766-188.006-98.84-304.198 258.768 188.006 258.766-188.004-98.84 304.198 258.766 188.006zM610.752 248.962l-95.952 69.714-95.954-69.714 36.652 112.798-95.954 69.712h118.604l36.652 112.8 36.65-112.8h118.604l-95.952-69.712 36.65-112.798z" />
|
37
|
-
<glyph unicode="" glyph-name="multi-star" d="M605.306 816.158l98.84-304.196h319.854l-258.768-188.008 98.84-304.196-258.766 188.002-258.766-188.002 98.84 304.196-258.768 188.008h319.854zM480 692.518l-40.174 123.64-79.674-241.266h80.346zM266.236 96.17l74.010 227.784-258.766 188.008h-80.348l258.768-188.008-98.84-304.196z" />
|
38
|
-
<glyph unicode="" glyph-name="th-large" d="M64 832h384v-320h-384v320zM512 512h384v320h-384v-320zM64 128h384v320h-384v-320zM512 128h384v320h-384v-320z" />
|
39
|
-
<glyph unicode="" glyph-name="ok" d="M386 301l-186.618 186.618-87.382-87.384 272.234-272.234 583.36 583.36-85.618 85.618-495.976-495.978z" />
|
40
|
-
<glyph unicode="" glyph-name="zoom-in" d="M512 704h-128v-128h-128v-128h128v-128h128v128h128v128h-128zM766.626 298.308c41.124 61.124 65.13 134.722 65.13 213.932 0 211.938-171.806 383.744-383.744 383.744s-383.744-171.806-383.744-383.744c0-211.934 171.806-383.744 383.744-383.744 77.214 0 149.086 22.824 209.282 62.066l215.562-215.562 108.54 108.54-214.77 214.768zM448.012 255.682c-141.694 0-256.56 114.868-256.56 256.56 0 141.694 114.866 256.56 256.56 256.56 141.692 0 256.56-114.866 256.56-256.56s-114.868-256.56-256.56-256.56z" />
|
41
|
-
<glyph unicode="" glyph-name="zoom-out" d="M256 576h384v-128h-384v128zM766.626 298.308c41.124 61.124 65.13 134.722 65.13 213.932 0 211.938-171.806 383.744-383.744 383.744s-383.744-171.806-383.744-383.744c0-211.934 171.806-383.744 383.744-383.744 77.214 0 149.086 22.824 209.282 62.066l215.562-215.562 108.54 108.54-214.77 214.768zM448.012 255.682c-141.694 0-256.56 114.868-256.56 256.56 0 141.694 114.866 256.56 256.56 256.56 141.692 0 256.56-114.866 256.56-256.56s-114.868-256.56-256.56-256.56z" />
|
42
|
-
<glyph unicode="" glyph-name="signal" d="M768 832h128v-768h-128v768zM576 576h128v-512h-128v512zM384 384h128v-320h-128v320zM192 256h128v-192h-128v192z" />
|
43
|
-
<glyph unicode="" glyph-name="filter-large" d="M0 896v-134.082l384-377.918v-448l193.714 192.002v255.998l382.286 384v128z" />
|
44
|
-
<glyph unicode="" glyph-name="trash" d="M768 832l-64 64h-320l-64-64h-128v-128h704v128zM256 64c0-34.978 28.356-63.334 63.334-63.334h449.334c34.976 0 63.332 28.356 63.332 63.334v576h-576v-576z" />
|
45
|
-
<glyph unicode="" glyph-name="user" d="M128 64h768v128l-256 128v128c0 0 64 15 64 192 0 126-80 192-144 192h-96c-62 0-144-66-144-192 0-176 64-192 64-192v-128l-256-128v-128z" />
|
46
|
-
<glyph unicode="" glyph-name="download" d="M960 576h-256v384h-320v-384h-256l416-384 416 384zM128 64v-128h832v128h-832z" />
|
47
|
-
<glyph unicode="" glyph-name="upload" d="M544 704l-416-384h256v-384h320v384h256l-416 384zM960 832v128h-832v-128h832z" />
|
48
|
-
<glyph unicode="" glyph-name="repeat" d="M511.408 119.25c-182.558 0-330.48 148.006-330.48 330.478s147.922 330.48 330.48 330.48c146.956 0 202.996-64.658 202.996-64.658l-122.404-139.55h304v336l-102.712-110.676c0 0-98.958 87.77-281.88 87.77-242.24 0-439.376-197.050-439.376-439.3 0-242.226 197.136-439.28 439.376-439.28 242.238 0.002 439.592 195.26 439.592 437.486h-103c0-182.538-154.044-328.75-336.592-328.75z" />
|
49
|
-
<glyph unicode="" glyph-name="refresh" d="M180.95 448c-0.002 0.576-0.022 1.15-0.022 1.728 0 182.472 147.922 330.48 330.48 330.48 146.956 0 202.996-64.658 202.996-64.658l-122.404-139.55h304v336l-102.712-110.676c0 0-98.958 87.77-281.88 87.77-242.24 0-439.376-197.050-439.376-439.3 0-0.6 0.020-1.196 0.022-1.796h108.896zM843.050 448c0.002-0.576 0.022-1.15 0.022-1.728 0-182.472-147.922-330.48-330.48-330.48-146.956 0-202.996 64.658-202.996 64.658l122.404 139.55h-304v-336l102.712 110.676c0 0 98.958-87.77 281.88-87.77 242.24 0 439.376 197.050 439.376 439.3 0 0.6-0.020 1.196-0.022 1.796h-108.896z" />
|
50
|
-
<glyph unicode="" glyph-name="list-alt" d="M836.694 896h-649.388c-32.754 0-59.306-26.552-59.306-59.306v-777.388c0-32.754 26.552-59.306 59.306-59.306v0h649.388c32.754 0 59.306 26.552 59.306 59.306v0 777.388c0 32.754-26.552 59.306-59.306 59.306v0zM320 256h-64v64h64v-64zM320 384h-64v64h64v-64zM320 512h-64v64h64v-64zM320 640h-64v64h64v-64zM768 256h-384v64h384v-64zM768 384h-384v64h384v-64zM768 512h-384v64h384v-64zM768 640h-384v64h384v-64z" />
|
51
|
-
<glyph unicode="" glyph-name="plus-large" d="M896 512h-320v320h-128v-320h-320v-128h320v-320h128v320h320z" />
|
52
|
-
<glyph unicode="" glyph-name="picture" d="M960 128.284v639.432c0 35.503-28.781 64.284-64.284 64.284v0h-767.432c-35.503 0-64.284-28.781-64.284-64.284v0-639.432c0-35.503 28.781-64.284 64.284-64.284v0h767.432c35.503 0 64.284 28.781 64.284 64.284v0zM336 432l128-144.556 176 272.556 256-368h-752z" />
|
53
|
-
<glyph unicode="" glyph-name="question-sign" d="M512 895.998c-247.424 0-448-200.578-448-448s200.576-448 448-448 448 200.578 448 448-200.576 448-448 448zM576 128h-128v128h128v-128zM512 320c-54.666 0-64 0-64 0v112c0 0 178.666-35.334 178.666 101.334 0 54.666-27.334 109.334-109.334 109.334-109.332-0.002-109.332-109.334-109.332-109.334h-109.334c0 0 0 218.666 218.666 218.666 109.334 0 218.668-54.666 218.668-218.666 0-136.668-87.334-213.334-224-213.334z" />
|
54
|
-
<glyph unicode="" glyph-name="info-sign" d="M512 895.998c-247.424 0-448-200.578-448-448s200.576-448 448-448 448 200.578 448 448-200.576 448-448 448zM448 704h128v-128h-128v128zM640 192h-256v64h64v192h-64v64h192v-256h64v-64z" />
|
55
|
-
<glyph unicode="" glyph-name="plus-sign" d="M512 895.998c-247.424 0-448-200.578-448-448s200.576-448 448-448 448 200.578 448 448-200.576 448-448 448zM768 383.998h-192v-191.998h-128v191.998h-192v128h192v192.002h128v-192.002h192v-128z" />
|
56
|
-
<glyph unicode="" glyph-name="minus-sign" d="M512 895.998c-247.424 0-448-200.578-448-448s200.576-448 448-448 448 200.578 448 448-200.576 448-448 448zM768 383.998h-512v128h512v-128z" />
|
57
|
-
<glyph unicode="" glyph-name="remove-sign" d="M828.784 764.782c-174.954 174.954-458.614 174.954-633.568 0s-174.954-458.612 0-633.568 458.614-174.954 633.568 0 174.954 458.614 0 633.568zM647.764 221.724l-135.764 135.764-135.764-135.764-90.51 90.51 135.764 135.764-135.764 135.764 90.51 90.51 135.764-135.764 135.766 135.766 90.51-90.51-135.766-135.766 135.764-135.764-90.51-90.51z" />
|
58
|
-
<glyph unicode="" glyph-name="share-alt" d="M106.666 128c106.666 149.334 256 217.6 469.334 217.6v-174.934l298.666 298.666-298.666 298.668v-170.666c-298.666-42.668-426.666-256-469.334-469.334z" />
|
59
|
-
<glyph unicode="" glyph-name="exclamation-sign" d="M512 895.998c-247.424 0-448-200.578-448-448s200.576-448 448-448 448 200.578 448 448-200.576 448-448 448zM576 192h-128v128h128v-128zM576 384h-128v320h128v-320z" />
|
60
|
-
<glyph unicode="" glyph-name="eye-open" d="M511.604 772.956c-217.428 0-403.11-135.24-478.34-326.14 75.23-190.902 260.912-326.14 478.34-326.14s403.11 135.24 478.34 326.14c-75.23 190.902-260.914 326.14-478.34 326.14zM511.604 229.388c-120.020 0-217.428 97.408-217.428 217.428s97.408 217.428 217.428 217.428 217.428-97.408 217.428-217.428-97.408-217.428-217.428-217.428zM511.604 577.272c-72.186 0-130.456-58.27-130.456-130.456s58.27-130.456 130.456-130.456 130.456 58.27 130.456 130.456-58.27 130.456-130.456 130.456z" />
|
61
|
-
<glyph unicode="" glyph-name="copy" d="M256 769.748c0.104 34.339 27.913 62.148 62.242 62.252h321.758l-128.668 128h-321.080c-34.339-0.104-62.148-27.913-62.252-62.242v-771.506c0.104-34.339 27.913-62.148 62.242-62.252h65.758v705.748zM960 512l-256 256h-321.748c-34.339-0.104-62.148-27.913-62.252-62.242v-707.506c0.104-34.339 27.913-62.148 62.242-62.252h515.506c34.339 0.104 62.148 27.913 62.252 62.242v513.758zM704 512v192l192-192h-192z" />
|
62
|
-
<glyph unicode="" glyph-name="comment" d="M64 768v-704l192 192h640c33 0 64 31 64 64v448c0 31-31 64-64 64h-768c-32 0-64-35-64-64z" />
|
63
|
-
<glyph unicode="" glyph-name="warning-sign" d="M473.494 828.614l-435.578-762.26c-16.894-29.566 4.454-66.354 38.506-66.354h871.156c34.052 0 55.402 36.788 38.506 66.354l-435.578 762.26c-17.026 29.794-59.986 29.794-77.012 0zM576 128h-128v112h128v-112zM448 320v256h128v-256h-128z" />
|
64
|
-
<glyph unicode="" glyph-name="adjust" d="M247.346 807.484c-242.096-180.558-242.094-538.412 0-718.97 156.556-116.76 372.754-116.76 529.308 0.002 242.096 180.56 242.094 538.412-0.002 718.97-156.554 116.76-372.752 116.76-529.306-0.002zM285.334 668.288c47.196 48.532 109.686 95.788 226.666 95.788v-632.152c-90.64 0-179.468 47.256-226.666 95.786-118.712 122.070-118.714 318.508 0 440.578z" />
|
65
|
-
<glyph unicode="" glyph-name="folder-close" d="M576 704l-128 128h-320c-35.346 0-64-28.654-64-64v0-640c0-35.346 28.654-64 64-64v0h768c35.346 0 64 28.654 64 64v0 512c0 35.346-28.654 64-64 64v0h-320z" />
|
66
|
-
<glyph unicode="" glyph-name="folder-open" d="M127.69 64h665.39c0 0 0 0 0 0 24.196 0 44.991 14.559 54.104 35.394l0.148 0.38 145.6 339.742c2.658 6.040 4.205 13.081 4.205 20.484 0 28.718-23.279 51.998-51.996 52h-642.8c0 0 0 0 0 0-28.811 0-53.574-17.337-64.423-42.148l-0.176-0.452-148.65-346.858c-2.146-4.878-3.395-10.564-3.395-16.542 0-23.194 18.801-41.997 41.995-42v0zM512 704l-128 128h-256c-35.346 0-64-28.654-64-64v0-512l109.65 274.128c11.056 27.111 37.212 45.87 67.75 45.872h654.6v64c0 35.346-28.654 64-64 64v0h-320z" />
|
67
|
-
<glyph unicode="" glyph-name="download-alt" d="M608 320l160 192-128-0.008v320.008h-192v-320.008l-128 0.008 160-192h-288v-256h704v256h-288zM832 192h-128v64h128v-64z" />
|
68
|
-
<glyph unicode="" glyph-name="tasks" d="M128 768v-192h768v192h-768zM832 640h-640v64h640v-64zM192 704h512v-64h-512v64zM128 512v-192h768v192h-768zM832 384h-640v64h640v-64zM192 448h320v-64h-320v64zM128 256v-192h768v192h-768zM832 128h-640v64h640v-64zM192 192h448v-64h-448v64z" />
|
69
|
-
<glyph unicode="" glyph-name="globe" d="M512 896c-247.424 0-448-200.578-448-448s200.576-448 448-448 448 200.578 448 448-200.576 448-448 448zM458.334 816.666h144.666v-46.666h-144.666v46.666zM568 742v-37.334h-95.666v37.334h95.666zM605.334 93.334c-46.078 0-102.378 87.072-119.002 153.758-53.52 11.090-156.8 62.394-189.202 143.484-20.466 51.188-48.726 137.256-50.978 194.996-2.252 57.582 59.978 189.006 143.23 186.758 54.008-1.48 78.754-39.732 87.756-111.74 2.040-16.38 149.986 45.856 189.014 46.486 48.802 0.77-68.982-118.492-68.982-118.492s-39.026-123.038-111.028-123.038c-110.262 0-157.194-40.562-142.142-73.546 9.76-21.388 89.396-66.144 138-101.090 2.198 18.826 11.692 31.090 31.14 31.090h275.99c72.006 0-111.77-228.666-183.796-228.666z" />
|
70
|
-
<glyph unicode="" glyph-name="link" d="M128 384c0 92.666 63.6 192 192 192h128v128h-128c-254.16 0-320-196.872-320-320s61.694-320 320-320h128v128h-128c-131.164 0-192 91.334-192 192zM704 192h-128v-128h128c258.306 0 320 196.872 320 320s-65.84 320-320 320h-128v-128h128c128.4 0 192-99.334 192-192 0-100.666-60.836-192-192-192zM320 448h384v-128h-384v128z" />
|
71
|
-
<glyph unicode="" glyph-name="expand-thin" d="M191.412 896h385.174c70.716 0 127.414-57.336 127.414-127.414v-128.586h-128v128h-384v-640h384v128h128v-128c0-70.078-56.698-128-127.412-128h-385.176c-70.714 0-127.412 57.336-127.412 127.414v640.586c0 70.078 56.698 128 127.412 128zM1024 448l-256 192v-128h-384v-128.334l384 0.334v-128z" />
|
72
|
-
<glyph unicode="" glyph-name="assign" d="M416 384c48 0 96 64 96 128v128c0 64-64 128-128 128h-64c-64 0-128-64-128-128v-128c0-64 48-128 96-128 0 0-224-128-224-192s0-128 0-128h576c0 0 0 64 0 128s-224 192-224 192zM1024 448l-256 192v-128h-192v-128.334l192 0.334v-128z" />
|
73
|
-
<glyph unicode="" glyph-name="dots" d="M320 448c0-70.692-57.308-128-128-128v0 0c-70.692 0-128 57.308-128 128v0 0c0 70.692 57.308 128 128 128v0 0c70.692 0 128-57.308 128-128v0 0zM640 448c0 70.692-57.308 128-128 128v0 0c-70.692 0-128-57.308-128-128v0 0c0-70.692 57.308-128 128-128v0 0c70.692 0 128 57.308 128 128v0 0zM960 448c0 70.692-57.308 128-128 128v0 0c-70.692 0-128-57.308-128-128v0 0c0-70.692 57.308-128 128-128v0 0c70.692 0 128 57.308 128 128v0 0z" />
|
74
|
-
<glyph unicode="" glyph-name="backward-thin" d="M496.354 83.816l-354.858 345.204 358.162 338.98 70.562-74.562-280.518-265.484 278.21-270.562zM821.366 83.816l-354.852 345.204 358.162 338.98 70.562-74.562-280.52-265.484 278.216-270.562z" />
|
75
|
-
<glyph unicode="" glyph-name="forward-thin" d="M543.020 768l354.858-345.204-358.162-338.98-70.562 74.564 280.518 265.484-278.212 270.56zM218.006 768l354.852-345.204-358.16-338.98-70.564 74.564 280.52 265.484-278.214 270.56z" />
|
76
|
-
<glyph unicode="" glyph-name="chevron-left-thin" d="M609.754 768l-354.852-345.204 358.16-338.98 70.564 74.564-280.52 265.484 278.214 270.56z" />
|
77
|
-
<glyph unicode="" glyph-name="chevron-right-thin" d="M415.714 768l354.852-345.204-358.162-338.98-70.562 74.564 280.52 265.484-278.216 270.56z" />
|
78
|
-
<glyph unicode="" glyph-name="switches" d="M512 384h64v-384h-64v384zM576 576v256h-64v-256h-64v-128h192v128zM832 512h64v-512h-64v512zM896 704v128h-64v-128h-63.998v-128h191.998v128zM192 192h64v-192h-64v192zM256 384v448h-64v-448h-64v-128h192v128z" />
|
79
|
-
<glyph unicode="" glyph-name="plus-small" d="M768 512h-192v192h-128v-192h-192v-128h192v-192h128v192h192z" />
|
80
|
-
<glyph unicode="" glyph-name="minus-small" d="M256 512h512v-128h-512v128z" />
|
81
|
-
<glyph unicode="" glyph-name="close-small" d="M835.672 203.3l-244.004 243.878 241.518 241.594-77.296 77.098-243.812-243.824-243.75 243.694-77.17-77.36 242.092-242.032-243.75-243.67 79.72-79.588 241.966 242.086 243.238-243.176z" />
|
82
|
-
<glyph unicode="" glyph-name="post" d="M896 832h-768c-33 0-64-33-64-64v-704l192 192h640c32 0 64 30 64 64v448c0 31-30 64-64 64zM640 384h-384v64h384v-64zM768 512h-512v64h512v-64zM768 640h-512v64h512v-64z" />
|
83
|
-
<glyph unicode="" glyph-name="external" d="M832 128l-640.588-0.586 0.588 640.586h192v128h-192.588c-70.714 0-127.412-57.336-127.412-127.414v-640.586c0-70.078 56.698-128 127.412-128h641.174c70.078 0 127.414 57.336 127.414 127.414v192.586h-127.412l-0.588-192zM512 896v-128h224l-424-424 96-96 424 424v-224l128-0.126v448.126z" />
|
84
|
-
<glyph unicode="" glyph-name="chevron-up-thin" d="M857.518 349.148l-345.204 354.852-338.98-358.16 74.562-70.562 265.484 280.518 270.562-278.214z" />
|
85
|
-
<glyph unicode="" glyph-name="chevron-down-thin" d="M167.282 630.128l345.204-354.85 338.98 358.16-74.562 70.562-265.484-280.52-270.562 278.216z" />
|
86
|
-
<glyph unicode="" glyph-name="pick" d="M416 386c48 0 96 64 96 128v128c0 64-64 128-128 128h-64c-64 0-128-64-128-128v-128c0-64 48-128 96-128 0 0-224-128-224-192s0-128 0-128h576c0 0 0 64 0 128s-224 192-224 192zM576 448l256-192v128h192v128.334l-192-0.334v128z" />
|
87
|
-
<glyph unicode="" glyph-name="revert" d="M448.666 597.334v170.666l-298.666-298.666 298.666-298.666v174.932c213.334 0 362.668-68.266 469.334-217.6-42.666 213.334-170.666 426.666-469.334 469.334z" />
|
88
|
-
<glyph unicode="" glyph-name="package-plus" d="M0 960h704v-192h-704v192zM640 704h-576v-448h384v128l192-0.008v320.008zM448 512h-192v128h192v-128zM1024 320h-192v192h-128v-192h-192v-128h192v-192h128v192h192z" />
|
89
|
-
<glyph unicode="" glyph-name="list-plus" d="M0 832h832v-128h-832v128zM0 640h832v-128h-832v128zM0 448h640v-128h-640v128zM0 256h448v-128h-448v128zM512 256h512v-128h-512v128zM704 448h128v-512h-128v512z" />
|
90
|
-
<glyph unicode="" glyph-name="envelope" d="M864 768h-704c-49.208 0-96-46.792-96-96v-512c0-49.208 40.4-96 89.61-96h715.76c49.208 0 90.63 46.792 90.63 96v512c0 49.208-46.792 96-96 96zM869.368 584.82l-357.88-223.674-357.878 223.674v89.47l357.88-223.674 357.88 223.674v-89.47z" />
|
91
|
-
<glyph unicode="" glyph-name="heart" d="M512 64c0 0-386.702 368-386.702 497.032 0 143.428 97.048 206.968 194.702 206.968 97.652 0 192-128 192-128s72.606 128 192 128 192-77.092 192-208c0-146.048-384-496-384-496z" />
|
92
|
-
<glyph unicode="" glyph-name="home" d="M256 0v384h-128l416 448 416-448h-128v-384h-192v256h-192v-256z" />
|
93
|
-
<glyph unicode="" glyph-name="print" d="M256 832h512v-192h-512v192zM767.8 576h-511.76c-70.715 0-128.040-57.325-128.040-128.040v0-255.96h128v-192h512v192c0-0.488 127.118 0 127.118 0 0.488 0 0.882 255.8 0.882 255.8 0 70.803-57.397 128.2-128.2 128.2v0zM704 64h-384v191.946c97.954-0.088 285.514-0.282 384-0.522v-191.424zM760 384c-30.928 0-56 25.072-56 56s25.072 56 56 56c30.928 0 56-25.072 56-56v0c0-30.928-25.072-56-56-56v0z" />
|
94
|
-
<glyph unicode="" glyph-name="font" d="M752 64h144l-332 768h-104l-332-768h144l48.762 128h382.476zM369.524 320l142.476 374 142.476-374h-284.952z" />
|
95
|
-
<glyph unicode="" glyph-name="bold" d="M688 464c52.938 37.028 80 87.772 80 144 0 123.702-97.334 224-233.142 224h-342.858v-768h386.2c114.926 0 220.588 93.264 221.8 207.908 1 94.092-44 155.092-112 192.092zM384 704h112c60.666 0 96-50.468 96-96s-38-96-96-96h-112v192zM528 192h-144v192h144c56 0 96-50.468 96-96s-38-96-96-96z" />
|
96
|
-
<glyph unicode="" glyph-name="italic" d="M192 64h448v128h-144l192 512h144v128h-448v-128h144l-192-512h-144v-128z" />
|
97
|
-
<glyph unicode="" glyph-name="underline" d="M512 192c143.5 0 256 128.5 256 272v368h-128v-352c0-80-45.44-160-128-160s-128 64.666-128 160v352h-128v-368c0-144 112-272 256-272zM192 128h640v-128h-640v128z" />
|
98
|
-
<glyph unicode="" glyph-name="striketrough" d="M832 704v128h-640v-128h256v-256h-320v-64h768v64h-320v256h256zM448 320h128v-256h-128v256z" />
|
99
|
-
<glyph unicode="" glyph-name="align-left" d="M128 384h768v-128h-768v128zM128 128h512v-128h-512v128zM128 896h768v-128h-768v128zM128 640h512v-128h-512v128z" />
|
100
|
-
<glyph unicode="" glyph-name="align-center" d="M128 384h768v-128h-768v128zM256 128h512v-128h-512v128zM128 896h768v-128h-768v128zM256 640h512v-128h-512v128z" />
|
101
|
-
<glyph unicode="" glyph-name="align-right" d="M128 384h768v-128h-768v128zM384 128h512v-128h-512v128zM128 896h768v-128h-768v128zM384 640h512v-128h-512v128z" />
|
102
|
-
<glyph unicode="" glyph-name="align-justify" d="M128 384h768v-128h-768v128zM128 128h768v-128h-768v128zM128 896h768v-128h-768v128zM128 640h768v-128h-768v128z" />
|
103
|
-
<glyph unicode="" glyph-name="unordered-list" d="M384 832h576v-128h-576v128zM384 192h576v-128h-576v128zM384 512h576v-128h-576v128zM128 832h128v-128h-128v128zM128 192h128v-128h-128v128zM128 512h128v-128h-128v128z" />
|
104
|
-
<glyph unicode="" glyph-name="indent-left" d="M448 256h512v128h-512v-128zM288 448l-224 224v-448zM64 0h896v128h-896v-128zM64 896v-128h896v128h-896zM448 512h512v128h-512v-128z" />
|
105
|
-
<glyph unicode="" glyph-name="indent-right" d="M576 384h-512v-128h512v128zM960 224v448l-224-224zM960 128h-896v-128h896v128zM64 896v-128h896v128h-896zM576 640h-512v-128h512v128z" />
|
106
|
-
<glyph unicode="" glyph-name="ban-circle" d="M512 832c-212.078 0-384-171.922-384-384s171.922-384 384-384 384 171.922 384 384-171.922 384-384 384zM512 720c56.772 0 109.474-17.402 153.084-47.152l-377.932-377.932c-29.75 43.61-47.152 96.312-47.152 153.084 0 150.222 121.778 272 272 272zM512 176c-58.772 0-113.19 18.642-157.666 50.334l379.332 379.332c31.692-44.476 50.334-98.894 50.334-157.666 0-150.222-121.778-272-272-272z" />
|
107
|
-
<glyph unicode="" glyph-name="bell" d="M512-27.918c50.81 0 91.92 41.11 91.92 91.918h-183.84c0-50.81 41.11-91.918 91.92-91.918zM768 320v187c0 150.12-42.138 265.042-182.558 298.3v17.256c0 40.65-32.794 73.444-73.442 73.444s-73.442-32.794-73.442-73.442v-17.256c-140.42-33.26-182.558-148.182-182.558-298.302v-187l-128-112v-80h768v80l-128 112z" />
|
108
|
-
<glyph unicode="" glyph-name="random" d="M768 832v-128h-162.076l-335.924-384h-208v-128h256l306 384h144v-128l192 192zM334 512l80 80-96 112h-256v-128h208zM768 320h-144l-60.51 67.168-63.182-83.622 107.692-111.546h160v-128l192 192-192 192z" />
|
109
|
-
<glyph unicode="" glyph-name="settings" d="M580.488 903.272c-46.076 4.188-87.964 4.188-134.040 0l-8.378-121.474c-37.698-8.378-75.398-20.944-108.908-41.888l-92.152 75.398c-33.51-25.132-67.020-58.642-92.152-92.152l75.398-92.152c-20.944-33.51-33.51-71.21-41.888-108.908l-121.474-8.378c-8.378-46.076-8.378-92.152 0-134.040l121.474-8.378c8.378-37.698 25.132-75.398 41.888-104.72l-79.586-92.152c25.132-37.698 58.642-67.020 96.342-96.342l92.152 75.398c33.51-20.944 67.020-33.51 104.72-41.888l8.378-121.474c46.076-8.378 92.152-8.378 134.040 0l8.378 121.474c37.698 8.378 75.398 25.132 104.72 41.888l92.152-79.586c37.698 25.132 67.020 58.642 96.342 96.342l-71.208 92.152c20.944 33.51 33.51 67.020 41.888 104.72l121.474 8.378c8.378 46.076 8.378 92.152 0 134.040l-121.474 12.566c-8.378 37.698-25.132 75.398-41.888 104.72l79.586 92.152c-25.132 37.698-58.642 67.020-96.342 96.342l-92.152-75.398c-33.51 20.944-67.020 33.51-104.72 41.888l-12.57 121.472zM513.468 698.022c138.23 0 251.326-113.096 251.326-251.326s-113.096-251.326-251.326-251.326-251.326 113.096-251.326 251.326 113.096 251.326 251.326 251.326z" />
|
110
|
-
<glyph unicode="" glyph-name="package-create" d="M64 832h704v-192h-704zM949.158 240.978l-88.158 31.918 40.734 84.446c8.522 17.666-9.854 36.254-27.616 27.934l-84.906-39.766-30.908 88.516c-6.466 18.518-32.602 18.668-39.28 0.224l-31.918-88.158-84.446 40.734c-17.668 8.522-36.254-9.854-27.934-27.616l39.766-84.906-88.516-30.908c-18.518-6.466-18.668-32.602-0.224-39.28l88.158-31.918-40.734-84.446c-8.522-17.668 9.854-36.254 27.616-27.934l84.906 39.766 30.908-88.516c6.466-18.518 32.602-18.668 39.28-0.224l31.918 88.156 84.446-40.734c17.668-8.522 36.254 9.854 27.934 27.616l-39.766 84.906 88.516 30.908c18.518 6.468 18.666 32.604 0.224 39.282zM704 505.116v70.884h-576v-448h340.734c-1.741 13.211-2.734 28.487-2.734 43.996 0 0.002 0 0.003 0 0.005v-0.001c0 154.504 99.548 285.746 238 333.116zM320 512h192v-128h-192v128z" />
|
111
|
-
<glyph unicode="" glyph-name="list-menu" d="M192 768h640v-128h-640v128zM192 512h640v-128h-640v128zM192 256h640v-128h-640v128z" />
|
112
|
-
<glyph unicode="" glyph-name="new-doc" d="M832 256v192h-128v-192h-192v-128h192v-192h128v192h192v128h-192zM640 704l-256 256h-315.666c-37.694-0.113-68.221-30.64-68.334-68.323v-695.343c0.113-37.694 30.64-68.221 68.323-68.334h379.677v192h192v384zM384 704v192l192-192h-192z" />
|
113
|
-
<glyph unicode="" glyph-name="edit-line" d="M128.056 240.826v-176.886h176.886l521.932 521.932-176.886 176.886-521.932-521.932zM963.194 722.192c18.396 18.396 18.396 48.348 0 66.744l-110.142 110.14c-18.396 18.396-48.348 18.396-66.744 0l-86.32-86.32 176.886-176.886 86.32 86.322zM64 0h896v-32h-896v32z" />
|
114
|
-
<glyph unicode="" glyph-name="calendar-list" d="M256 384h512v-64h-512v64zM896 832h-64v64h-128v-64h-384v64h-128v-64h-64c-43.316 0-64-20.684-64-64v-704c0-43.316 20.684-64 64-64h768c43.316 0 64 20.684 64 64v704c0 43.316-20.684 64-64 64zM896 64h-768v576h768v-576zM256 512h512v-64h-512v64zM256 256h320v-64h-320v64z" />
|
115
|
-
<glyph unicode="" glyph-name="collapse" d="M0 896h1024v-192h-1024v192zM0 512h1024v-192h-1024v192zM0 128h1024v-192h-1024v192z" />
|
116
|
-
<glyph unicode="" glyph-name="broadcast" d="M831.5 896h-639c-35.476 0-64.5-29.026-64.5-64.5v-97.892c368.030-2.246 665.716-301.112 665.986-669.608h37.514c35.476 0 64.5 29.026 64.5 64.5v703c0 35.474-29.024 64.5-64.5 64.5zM128 217.788v-153.788h153.788c0 85.252-68.536 153.788-153.788 153.788zM128 421.724v-101.968c140.416 0 255.756-115.342 255.756-255.756h101.968c0 198.086-159.638 357.724-357.724 357.724zM128 625.662v-101.968c253.25 0 459.692-206.444 459.692-459.694h101.968c0.002 310.92-250.74 561.662-561.66 561.662z" />
|
117
|
-
<glyph unicode="" glyph-name="broadcast-create" d="M0 281.788v-153.788h153.788c0 85.252-68.536 153.788-153.788 153.788zM703.5 960h-639c-35.476 0-64.5-29.026-64.5-64.5v-97.892c274.022-1.672 509.008-167.806 611.308-404.662 43.688 38.912 97.354 66.844 156.692 79.482v423.072c0 35.474-29.024 64.5-64.5 64.5zM0 485.724v-101.968c140.416 0 255.756-115.342 255.756-255.756h101.968c0 198.086-159.638 357.724-357.724 357.724zM0 689.662v-101.968c253.25 0 459.692-206.444 459.692-459.694h36.408c-0.060 2.66-0.102 5.326-0.102 8 0 58.158 14.452 112.932 39.93 160.96-71.47 227.974-283.924 392.702-535.928 392.702zM981.158 192.978l-88.158 31.918 40.734 84.446c8.522 17.666-9.854 36.254-27.616 27.934l-84.906-39.766-30.908 88.516c-6.466 18.518-32.602 18.668-39.28 0.224l-31.918-88.158-84.446 40.734c-17.668 8.522-36.254-9.854-27.934-27.616l39.766-84.906-88.516-30.908c-18.518-6.466-18.668-32.602-0.224-39.28l88.158-31.918-40.734-84.446c-8.522-17.668 9.854-36.254 27.616-27.934l84.906 39.766 30.908-88.516c6.466-18.518 32.602-18.668 39.28-0.224l31.918 88.156 84.446-40.734c17.668-8.522 36.254 9.854 27.934 27.616l-39.766 84.906 88.516 30.908c18.518 6.468 18.666 32.604 0.224 39.282z" />
|
118
|
-
<glyph unicode="" glyph-name="kill" d="M960 561.568c0 222.984-183.812 398.432-448.006 398.432-264.17 0-447.994-175.448-447.994-398.432 0-103.086 23.22-170.224 92.41-241.568-75.744-143.334 4.256-256 163.59-256v-90.1c0 0 0 0 0 0 0-5.496 3.76-10.113 8.848-11.42l0.082-0.018 40.42-10.104c7.442-1.86 14.65 3.768 14.65 11.438v35.384c5.645-1.44 16.471-3.609 27.378-5.547l4.622-0.681v-40.674c0.002-8.934 7.245-16.176 16.18-16.176 0.037 0 0.074 0 0.112 0l47.624 0.298c8.893 0.054 16.082 7.275 16.084 16.176v0 31.72c5.326-0.19 10.666-0.294 16-0.294s10.674 0.106 16 0.294v-32.668c0-8.436 6.778-15.286 15.164-15.324l49.53-0.23c8.442-0.040 15.306 6.834 15.306 15.324v41.556c15.529 2.619 26.355 4.788 37.097 7.182l-5.097-0.954v-34.774c0-8.066 7.58-13.984 15.406-12.028l39.204 9.8c5.437 1.392 9.392 6.248 9.392 12.028v0 89.792c159.334 0 238 112.666 164.234 256 69.188 71.34 91.764 138.484 91.764 241.568zM214.706 355.956c0 65.238 57.146 92.044 127.638 92.044s127.638-26.806 127.638-92.044-67.232-128.212-137.726-128.212c-70.492 0-117.55 62.974-117.55 128.212zM512 159.524c-13.38-27.144-31.5-43.786-44.77-38.752-16.396 6.222-19.060 42.764-6.006 81.648 12.448 36.942 34.558 62.356 50.774 59.476 16.224 2.878 38.34-22.534 50.752-59.476 13.084-38.886 10.418-75.428-5.96-81.648-13.286-5.034-31.412 11.608-44.79 38.752zM691.744 227.744c-70.492 0-137.726 62.974-137.726 128.212s57.146 92.044 127.638 92.044 127.638-26.806 127.638-92.044-47.058-128.212-117.55-128.212z" />
|
119
|
-
<glyph unicode="" glyph-name="graphic" d="M256 960v-249.562c29.686 6.256 60.456 9.57 92.002 9.57 245.216 0 444.004-198.786 444.004-444.004 0-28.724-2.76-56.798-7.97-84.004h239.964v768h-768zM672.96 272.004c0-186.096-150.86-336.956-336.956-336.956s-336.956 150.86-336.956 336.956c0 186.096 150.86 336.956 336.956 336.956s336.956-150.86 336.956-336.956z" />
|
120
|
-
<glyph unicode="" glyph-name="close-thick" d="M896 696.902l-135.764 135.764-248.902-248.902-248.902 248.902-135.764-135.764 248.902-248.902-248.902-248.902 135.764-135.764 248.902 248.902 248.902-248.902 135.764 135.764-248.902 248.902z" />
|
121
|
-
<glyph unicode="" glyph-name="move" d="M768 640v-128h-192v192h128l-192 192-192-192h128v-192h-192v128l-192-192 192-192v128h192v-192h-128l192-192 192 192h-128v192h192v-128l192 192-192 192z" />
|
122
|
-
<glyph unicode="" glyph-name="takes-package" d="M575.5 896h-447c-35.474 0-64.5-29.026-64.5-64.5v-703c0-35.474 29.026-64.5 64.5-64.5h447c35.474 0 64.5 29.026 64.5 64.5v703c0 35.474-29.026 64.5-64.5 64.5zM512 256h-320v64h320v-64zM512 384h-320v64h320v-64zM512 512h-320v64h320v-64zM512 640h-320v64h320v-64zM768 896h-96c35.476 0 32-28.526 32-64v-704c0-35.474 3.476-64-32-64h96c35.346 0 64 28.654 64 64v704c0 35.2-28.8 64-64 64zM960 896h-96c35.476 0 32-28.526 32-64v-704c0-35.474 3.476-64-32-64h96c35.346 0 64 28.654 64 64v704c0 35.2-28.8 64-64 64z" />
|
123
|
-
<glyph unicode="" glyph-name="highlight-package" d="M0 832h768v-128h-768v128zM552.246 640h-552.246v-128h510.656zM656 640l96-256h272l-224-160 96-272-240 176-240-176 96 272-224 160h272zM384 176l-104 80h-280v-128h360zM232 320h-232v128h168c0 0-39.334-30.666-8-64 18.826-20.028 72-64 72-64z" />
|
124
|
-
<glyph unicode="" glyph-name="preview-mode" d="M326.408 256h-198.408v64h192c0 21.918 2.21 43.32 6.408 64h-198.408v64h218.652c9.982 22.846 22.54 44.308 37.334 64h-255.986v64h319.982c53.486 40.182 119.97 64 192.018 64v128c0 35.474-28.524 64-64 64h-512c-35.476 0-64-28.526-64-64v-576c0-35.474 28.524-64 64-64h319.986c-27.952 37.21-47.98 80.71-57.578 128zM128 704h384v-64h-384v64zM1024 0l-173.828 173.828c28.88 41.446 45.828 91.826 45.828 146.172 0 141.384-114.616 256-256 256s-256-114.616-256-256 114.616-256 256-256c54.346 0 104.726 16.948 146.172 45.828l173.828-173.828 64 64zM640 176c-79.53 0-144 64.472-144 144 0 79.53 64.47 144 144 144s144-64.47 144-144c0-79.528-64.47-144-144-144z" />
|
125
|
-
<glyph unicode="" glyph-name="unlocked" d="M832 512h-448v160c0 48 64 96 112 96h32c29.328 0 64.6-17.934 87.634-42.824l95.296 88.084c-42.474 48.98-103.796 82.74-166.93 82.74h-65c-127 0-223-112-223-224v-160h-64c-35.346 0-64-28.654-64-64v0-448c0-35.346 28.654-64 64-64v0h640c35.346 0 64 28.654 64 64v0 448c0 35.346-28.654 64-64 64v0zM512 128c-53.019 0-96 42.981-96 96s42.981 96 96 96c53.019 0 96-42.981 96-96v0c0-53.019-42.981-96-96-96v0z" />
|
126
|
-
<glyph unicode="" glyph-name="code" d="M384 832l-384-384 384-384 64 64-320 320 320 320-64 64zM640 832l384-384-384-384-64 64 320 320-320 320 64 64z" />
|
127
|
-
<glyph unicode="" glyph-name="cut" d="M768 768l-208-208 96-96 240 240v64h-128zM448 704c-0.089 105.885-85.946 191.688-191.844 191.688-105.953 0-191.844-85.891-191.844-191.844s85.891-191.844 191.844-191.844c19.836 0 38.969 3.011 56.967 8.6l-1.359-0.364 104.236-104.236-104.236-104.236c-16.679 5.247-35.859 8.271-55.746 8.271-106.039 0-192-85.961-192-192s85.961-192 192-192c106.039 0 192 85.961 192 192 0 36.953-10.439 71.467-28.529 100.755l0.475-0.826 92.036 92.036 256-256h128v64l-476.044 476.044c17.608 28.374 28.044 62.798 28.044 99.659 0 0.104 0 0.209 0 0.313v-0.016zM256 592c-61.856 0-112 50.144-112 112s50.144 112 112 112c61.856 0 112-50.144 112-112v0c-0.072-61.827-50.173-111.928-111.993-112h-0.007zM256 16c-61.856 0-112 50.144-112 112s50.144 112 112 112c61.856 0 112-50.144 112-112v0c-0.072-61.827-50.173-111.928-111.993-112h-0.007zM512 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32v0c0 17.673 14.327 32 32 32v0z" />
|
128
|
-
<glyph unicode="" glyph-name="paste" d="M896 704v-704c0-43.316-20.684-64-64-64h-640c-43.316 0-64 20.684-64 64v704c0 43.316 20.684 64 64 64h64v-160c0-17.673 14.327-32 32-32v0h448c17.673 0 32 14.327 32 32v0 160h64c43.316 0 64-20.684 64-64zM320 656v144c0 17.673 14.327 32 32 32v0h32c0 70.692 57.308 128 128 128s128-57.308 128-128v0h32c17.673 0 32-14.327 32-32v0-144c0-8.837-7.163-16-16-16v0h-352c-8.837 0-16 7.163-16 16v0zM448.132 836.158c-0.086-1.242-0.135-2.692-0.135-4.153 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64-1.461 0-2.911-0.049-4.348-0.145l0.195 0.010c-32.074-2.154-57.558-27.637-59.701-59.517l-0.011-0.195z" />
|
129
|
-
<glyph unicode="" glyph-name="arrow-left" d="M896 512h-640l304.5 304.5c12.284 12.284 19.882 29.255 19.882 48s-7.598 35.716-19.882 48v0c-12.284 12.284-29.255 19.882-48 19.882s-35.716-7.598-48-19.882l-464.5-464.5 463-463c12.284-12.284 29.255-19.882 48-19.882s35.716 7.598 48 19.882v0c12.284 12.284 19.882 29.255 19.882 48s-7.598 35.716-19.882 48l-303 303h640c35.346 0 64 28.654 64 64v0c0 35.346-28.654 64-64 64v0z" />
|
130
|
-
<glyph unicode="" glyph-name="arrow-right" d="M561 912.5c-12.284 12.284-29.255 19.882-48 19.882s-35.716-7.598-48-19.882v0c-12.283-12.238-19.883-29.169-19.883-47.875s7.6-35.637 19.881-47.873l303.002-302.752h-640c-35.346 0-64-28.654-64-64v0c0-35.346 28.654-64 64-64v0h640l-304.25-304.75c-26.51-26.51-27.75-69.616 0.25-96.124v-0.062c12.24-12.292 29.177-19.899 47.891-19.899 18.698 0 35.622 7.594 47.857 19.865l464.376 464.486z" />
|
131
|
-
<glyph unicode="" glyph-name="info-large" d="M378.346 549.42l8.526 45.294 207.328 27.708 28.242-12.788-68.622-488.3q-1.074-10.666-1.066-14.92 0-25.578 16.518-25.578 9.054 0 21.048 6.662t31.706 23.178l15.454-34.644q-9.066-12.788-28.508-30.374t-50.090-31.964c-20.432-9.6-59.826-14.388-83.98-14.388q-43.162 0-66.076 16.786t-22.914 48.748c-0.006 0.341-0.009 0.744-0.009 1.148 0 3.164 0.197 6.281 0.578 9.342l-0.037-0.365q7.456 60.746 30.374 219.54l30.264 224zM485.288 843.18c8.868 15.573 21.238 28.222 36.092 37.165l0.456 0.255c14.318 8.748 31.643 13.928 50.179 13.928 0.307 0 0.614-0.001 0.92-0.004h-0.047c0.518 0.011 1.128 0.017 1.739 0.017 15.946 0 30.938-4.089 43.982-11.277l-0.472 0.238c12.718-6.984 23.035-16.929 30.262-28.944l0.2-0.358c6.742-11.128 10.732-24.575 10.732-38.955 0-0.072 0-0.143 0-0.215v0.011c0.005-0.387 0.007-0.845 0.007-1.303 0-18.902-4.614-36.725-12.778-52.407l0.298 0.63c-8.453-16.131-20.921-29.157-36.104-38.048l-0.444-0.24q-24.080-14.224-56.562-14.214c-0.029 0-0.064 0-0.099 0-14.913 0-28.817 4.322-40.527 11.782l0.306-0.182c-12.497 7.717-22.666 18.068-29.948 30.333l-0.224 0.407c-7.051 11.405-11.252 25.219-11.312 40.011v0.017c-0.002 0.26-0.004 0.567-0.004 0.874 0 18.564 4.953 35.971 13.608 50.972l-0.263-0.494z" />
|
132
|
-
<glyph unicode="" glyph-name="help-large" d="M499.748 190.46c-54.518 0-95.092-43.108-95.092-93.824 0-0.042 0-0.091 0-0.14 0-52.441 42.511-94.952 94.952-94.952 0.049 0 0.099 0 0.148 0h-0.008c54.52 0 96.362 44.378 96.362 95.092s-41.842 93.824-96.362 93.824zM513.8 895.666c-75.562 0-140.074-16.034-193.8-34.026v-103.64h103.152l12.088 51.82c14.4 1.2 30.094 1.6 48.084 1.6 97.15 0 130.724-49.6 130.724-138.36 0-67.164-32.384-103.078-83.956-148.654-65.966-58.77-98.35-88.458-98.35-158.022 0-37.2 8.902-68.384 18.268-88.384h82.71c-5.5 26-7.426 44.678-7.426 59.634 0 52.772 37.18 75.43 100.746 118.6 95.96 63.566 152.574 110.286 152.574 224.226 0 157.12-113.692 215.206-264.814 215.206z" />
|
133
|
-
<glyph unicode="" glyph-name="attachment" d="M704 192h-384c-141.385 0-256 114.615-256 256s114.615 256 256 256v0h447.958c106.062 0 192.043-85.981 192.043-192.043s-85.981-192.043-192.043-192.043v0h-383.958c-70.716 0-128.043 57.327-128.043 128.043s57.327 128.043 128.043 128.043v0h384v-64h-384c-35.37 0-64.043-28.673-64.043-64.043s28.673-64.043 64.043-64.043h383.958c70.716 0 128.043 57.327 128.043 128.043s-57.327 128.043-128.043 128.043v0h-447.958c-106.039 0-192-85.961-192-192s85.961-192 192-192v0h384v-64z" />
|
134
|
-
<glyph unicode="" glyph-name="attachment-large" d="M894.2 375.056l-342.732-342.732c-125.988-125.988-330.988-125.988-456.976 0s-125.988 330.986 0 456.976l399.816 399.816c43.959 44.44 104.945 71.959 172.359 71.959 133.874 0 242.4-108.526 242.4-242.4 0-67.414-27.52-128.4-71.938-172.338l-342.707-342.723c-29.21-29.027-69.466-46.968-113.912-46.968-89.26 0-161.62 72.36-161.62 161.62 0 44.446 17.941 84.702 46.976 113.921l342.724 342.724 57.122-57.122-342.732-342.732c-14.629-14.629-23.676-34.838-23.676-57.16 0-44.645 36.192-80.836 80.836-80.836 22.322 0 42.531 9.048 57.16 23.676l342.7 342.694c29.248 29.248 47.338 69.654 47.338 114.285 0 89.262-72.361 161.623-161.623 161.623-44.631 0-85.037-18.090-114.285-47.338l-399.816-399.822c-43.856-43.856-70.982-104.443-70.982-171.366 0-133.845 108.503-242.348 242.348-242.348 66.923 0 127.51 27.126 171.366 70.982l342.732 342.732z" />
|
135
|
-
<glyph unicode="" glyph-name="table" d="M64 896v-896h896v896h-896zM832 768v-256h-256v256h256zM192 768h256v-256h-256v256zM192 384h256v-256h-256v256zM576 128v256h256v-256h-256z" />
|
136
|
-
<glyph unicode="" glyph-name="ordered-list" d="M64 192h128v-32h-64v-64h64v-32h-128v-64h192v256h-192v-64zM64 512h115.2l-115.2-134.4v-57.6h192v64h-115.2l115.2 134.4v57.6h-192v-64zM128 640h64v256h-128v-64h64v-192zM384 832v-128h576v128h-576zM384 64h576v128h-576v-128zM384 384h576v128h-576v-128z" />
|
137
|
-
<glyph unicode="" glyph-name="heading-1" d="M384 768v-256h-192v256h-128v-640h128v256h192v-256h128v640h-128zM767.186 128h127.186l1.628 640h-256v-128h128l-0.814-512z" />
|
138
|
-
<glyph unicode="" glyph-name="heading-2" d="M384 768v-256h-192v256h-128v-640h128v256h192v-256h128v640h-128zM1024 256h-256v128h128c0.011 0 0.023 0 0.036 0 70.673 0 127.964 57.291 127.964 127.964 0 0.013 0 0.025 0 0.038v-0.002 128c0 0.011 0 0.023 0 0.036 0 70.673-57.291 127.964-127.964 127.964-0.013 0-0.025 0-0.038 0h-255.998v-128h256v-128h-128c-0.011 0-0.023 0-0.036 0-70.673 0-127.964-57.291-127.964-127.964 0-0.013 0-0.025 0-0.038v0.002-256h384v128z" />
|
139
|
-
<glyph unicode="" glyph-name="heading-3" d="M384 768v-256h-192v256h-128v-640h128v256h192v-256h128v640h-128zM1024 256v96c0 0.038 0 0.083 0 0.128 0 52.949-42.923 95.872-95.872 95.872-0.045 0-0.090 0-0.135 0h0.007c0.038 0 0.083 0 0.128 0 52.949 0 95.872 42.923 95.872 95.872 0 0.045 0 0.090 0 0.135v-0.007 96c0 0.011 0 0.023 0 0.036 0 70.673-57.291 127.964-127.964 127.964-0.013 0-0.025 0-0.038 0h-255.998v-128h256v-128h-128v-128h128v-128h-256v-128h256c0.011 0 0.023 0 0.036 0 70.673 0 127.964 57.291 127.964 127.964 0 0.013 0 0.025 0 0.038v-0.002z" />
|
140
|
-
<glyph unicode="" glyph-name="heading-4" d="M384 768v-256h-192v256h-128v-640h128v256h192v-256h128v640h-128zM896 128h128v640h-128v-256h-128v256h-128v-384h256v-256z" />
|
141
|
-
<glyph unicode="" glyph-name="heading-5" d="M384 768v-256h-192v256h-128v-640h128v256h192v-256h128v640h-128zM1024 256v128c0 0.011 0 0.023 0 0.036 0 70.673-57.291 127.964-127.964 127.964-0.013 0-0.025 0-0.038 0h-127.998v128h256v128h-384v-384h256v-128h-256v-128h256c0.011 0 0.023 0 0.036 0 70.673 0 127.964 57.291 127.964 127.964 0 0.013 0 0.025 0 0.038v-0.002z" />
|
142
|
-
<glyph unicode="" glyph-name="heading-6" d="M384 768v-256h-192v256h-128v-640h128v256h192v-256h128v640h-128zM1024 640v128h-256c-0.011 0-0.023 0-0.036 0-70.673 0-127.964-57.291-127.964-127.964 0-0.013 0-0.025 0-0.038v0.002-384c0-0.010 0-0.022 0-0.034 0-70.674 57.292-127.966 127.966-127.966 0.012 0 0.024 0 0.036 0h127.998c0.010 0 0.022 0 0.034 0 70.674 0 127.966 57.292 127.966 127.966 0 0.012 0 0.024 0 0.036v-0.002 128c0 0.011 0 0.023 0 0.036 0 70.673-57.291 127.964-127.964 127.964-0.013 0-0.025 0-0.038 0h-127.998v128h256zM896 384v-128h-128v128h128z" />
|
143
|
-
<glyph unicode="" glyph-name="quote" d="M576 704v-320h176l-112-192 145 1 111 191v320h-320zM128 384h176l-112-192h144l112 192v320h-320v-320z" />
|
144
|
-
<glyph unicode="" glyph-name="multiedit" d="M448 832h-448v-704h448v704zM384 640h-320v64h320v-64zM384 512h-320v64h320v-64zM384 384h-320v64h320v-64zM256 256h-192v64h192v-64zM1024 832h-448v-704h448v704zM960 640h-320v64h320v-64zM960 512h-320v64h320v-64zM960 384h-320v64h320v-64zM832 256h-192v64h192v-64z" />
|
145
|
-
<glyph unicode="" glyph-name="phone" d="M205.938 516.836c84.054-162.006 212.893-290.845 370.12-372.636l4.778-2.262 125.164 125.156c10.239 10.253 24.391 16.595 40.024 16.595 6.441 0 12.631-1.077 18.4-3.060l-0.398 0.119c60.476-20.56 130.139-32.428 202.573-32.428 0.18 0 0.361 0 0.541 0h-0.028c31.381-0.095 56.794-25.509 56.888-56.881v-198.551c-0.095-31.38-25.508-56.793-56.879-56.888h-0.009c-534.188 0-967.112 432.924-967.112 967.112 0.095 31.38 25.508 56.793 56.879 56.888h199.121c31.38-0.095 56.793-25.508 56.888-56.879v-0.009c0-0.282-0.001-0.617-0.001-0.951 0-72.286 11.868-141.8 33.761-206.7l-1.334 4.557c1.728-5.206 2.725-11.2 2.725-17.426 0-15.876-6.48-30.238-16.94-40.587l-0.005-0.005z" />
|
146
|
-
<glyph unicode="" glyph-name="mobile" d="M768 960h-512c-35.346 0-64-28.654-64-64v0-896c0-35.346 28.654-64 64-64v0h512c35.346 0 64 28.654 64 64v0 896c0 35.346-28.654 64-64 64v0zM544 0h-64c-17.673 0-32 14.327-32 32v0c0 17.673 14.327 32 32 32v0h64c17.673 0 32-14.327 32-32v0c0-17.673-14.327-32-32-32v0zM768 128h-512v704h512v-704z" />
|
147
|
-
<glyph unicode="" glyph-name="twitter" d="M1024 765.512c-35.135-16-75.892-27.645-118.633-32.87l-2.027-0.202c43.437 26.304 76.095 66.686 91.946 114.711l0.426 1.489c-38.399-23.186-83.091-40.869-130.7-50.511l-2.7-0.457c-38.443 40.81-92.842 66.222-153.176 66.222-116.127 0-210.266-94.139-210.266-210.266 0-16.857 1.984-33.251 5.73-48.96l-0.288 1.431c-175.006 9.019-328.947 92.163-432.174 218.395l-0.844 1.065c-17.881-30.269-28.446-66.701-28.446-105.601 0-72.579 36.779-136.568 92.715-174.347l0.745-0.474c-35.097 1.129-67.719 10.728-96.199 26.806l1.045-0.542c-0.020-0.876-0.020-1.756-0.020-2.642 0.030-101.311 71.734-185.866 167.158-205.717l1.364-0.237c-16.557-4.68-35.571-7.371-55.213-7.371-14.029 0-27.738 1.373-40.999 3.991l1.336-0.22c27.655-84.113 104.721-144.096 196.045-145.861l0.207-0.003c-70.916-56.049-161.619-89.907-260.229-89.907-0.242 0-0.483 0-0.725 0.001h0.038c-0.042 0-0.092 0-0.142 0-17.611 0-34.973 1.068-52.025 3.143l2.050-0.203c90.865-59.179 202.059-94.374 321.474-94.374 0.2 0 0.399 0 0.599 0h-0.031c386.422 0 597.736 320.054 597.736 597.614q0 13.66-0.6 27.174c41.28 30.060 76.062 66.084 103.861 107.215l0.961 1.509z" />
|
148
|
-
<glyph unicode="" glyph-name="facebook" d="M896 960h-768c-70.692 0-128-57.308-128-128v0-768c0-70.692 57.308-128 128-128v0h448v448l-129-1 1 129h128l-1 83.8c0 132.262 60.014 204.28 178 204.28 56.516 0 97.8-4.2 111.964-6.088v-122l-84.372-0.038c-64.168 0-76.6-30.492-76.6-75.236v-85.718l160 1-32-128h-127.992v-448h192c70.692 0 128 57.308 128 128v0 768c0 70.692-57.308 128-128 128v0z" />
|
149
|
-
<glyph unicode="" glyph-name="linked-in" d="M896 960h-768c-70.607-0.213-127.787-57.394-128-127.98v-768.020c0.213-70.607 57.394-127.787 127.98-128h768.020c70.607 0.213 127.787 57.394 128 127.98v768.020c-0.213 70.607-57.394 127.787-127.98 128h-0.020zM384 128h-128v448h128v-448zM362.422 653.91c-65.846-44.612-137.124 26.668-92.512 92.512 2.079 3.039 4.627 5.587 7.568 7.602l0.098 0.064c65.846 44.612 137.124-26.668 92.512-92.512-2.079-3.039-4.627-5.587-7.568-7.602l-0.098-0.064zM832 128h-128v275.042c-0.001 8.42-3.592 16.001-9.326 21.296l-0.020 0.018c-54.682 50.33-118.654 12.458-118.654-40.356v-256h-128v448h128v-79.472c26.4 36.272 66.752 79.472 112 79.472 79.53 0 144-71.634 144-160v-288z" />
|
150
|
-
<glyph unicode="" glyph-name="twitter-circle" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM784.43 574.522q0.4-8.966 0.4-18.030c0-184.15-136.2-396.494-385.258-396.494-77.331 0.004-149.199 23.388-208.923 63.47l1.351-0.854c9.673-1.242 20.863-1.95 32.219-1.95 63.996 0 122.735 22.506 168.733 60.036l-0.482-0.381c-59.252 1.122-109.258 41.416-126.49 96.776 7.687-1.591 16.521-2.502 25.568-2.502 12.667 0 24.917 1.786 36.513 5.119l-0.931-0.229c-61.942 12.8-108.618 69.126-108.618 136.644 0 0.588 0 1.17 0.012 1.752 17.622-10.289 38.654-16.662 61.11-17.424l0.22-0.006c-36.632 26.072-60.239 68.381-60.239 116.203 0 25.67 6.802 49.752 18.702 70.54l-0.367-0.696c66.784-84.312 166.558-139.788 279.092-145.6-2.229 9.483-3.506 20.371-3.506 31.557 0 0.071 0 0.141 0 0.212v-0.011c0 76.958 60.628 139.348 135.4 139.348 39.161-0.063 74.359-16.982 98.735-43.887l0.101-0.113c32.475 6.727 61.272 18.45 87.124 34.473l-1.138-0.657c-10.31-32.652-31.375-59.412-58.958-76.759l-0.578-0.339c28.886 3.611 55.146 11.33 79.41 22.618l-1.632-0.682c-18.482-28.244-40.917-52.132-66.85-71.616l-0.72-0.518z" />
|
151
|
-
<glyph unicode="" glyph-name="facebook-circle" d="M512 960c-282.77 0-512-229.23-512-512 0-261.094 195.438-476.528 448-508.024v380.024h-128v128h128v83.718c0 132.262 58.014 204.282 176 204.282 39.524-0.014 78.356-2.922 116.312-8.523l-4.312 0.523v-120.088l-84.4-0.038c-64.168 0-75.6-31.13-75.6-75.874v-84h160l-32-128h-128v-380.024c252.562 31.496 448 246.93 448 508.024 0 282.77-229.23 512-512 512z" />
|
152
|
-
<glyph unicode="" glyph-name="linked-in-circle" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM386 192h-128v448h128v-448zM322 704c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64v0c0-35.346-28.654-64-64-64v0zM834 192h-128v275.042c0 8.42-3.592 16.002-9.326 21.296l-0.020 0.018c-54.682 50.33-118.654 12.458-118.654-40.356v-256h-128v448h128v-79.472c26.4 36.272 66.752 79.472 112 79.472 79.53 0 144-71.634 144-160v-288z" />
|
153
|
-
<glyph unicode="" glyph-name="recurring" d="M640 256c43.316 0 64 20.684 64 64v384c0 43.316-20.684 64-64 64h-384c-43.316 0-64-20.684-64-64v-384c0-43.316 20.684-64 64-64h384zM256 640h384v-320h-384v320zM320 576h256v-64h-256zM320 448h192v-64h-192zM768 640v-448h-512c0-43.316 20.684-64 64-64h448c43.316 0 64 20.684 64 64v384c0 43.316-20.684 64-64 64z" />
|
154
|
-
<glyph unicode="" glyph-name="paragraph" d="M896 768v64h-512c-141.385 0-256-114.615-256-256s114.615-256 256-256v0-256h128v640h128v-640h128v608c0 48 32 96 128 96z" />
|
155
|
-
<glyph unicode="" glyph-name="suggestion" d="M811.987 896h-599.944c-46.416 0-84.043-37.627-84.043-84.043v0-599.911c0 0 0 0 0 0 0-46.417 37.628-84.045 84.045-84.045 0 0 0 0 0 0h123.954l176-192 176 192h123.971c46.408 0 84.028 37.621 84.029 84.028v0 599.958c0 46.399-37.614 84.013-84.013 84.013v0zM426.667 298.667l-170.667 170.667 59.733 59.733 110.933-110.933 281.6 281.6 59.733-59.733z" />
|
156
|
-
<glyph unicode="" glyph-name="event" d="M896 832h-64v64h-128v-64h-384v64h-128v-64h-64c-43.316 0-64-20.684-64-64v-704c0-43.316 20.684-64 64-64h768c43.316 0 64 20.684 64 64v704c0 43.316-20.684 64-64 64zM660.328 200l-148.328 90.498-148.328-90.498 40.328 168.876-132 112.948 173.252 13.874 66.748 160.302 66.748-160.302 173.252-13.874-132-112.948z" />
|
157
|
-
<glyph unicode="" glyph-name="kanban-view" d="M64 832h256v-704h-256v704zM384 832h256v-704h-256v704zM704 832h256v-704h-256v704z" />
|
158
|
-
<glyph unicode="" glyph-name="subscript" d="M1024 64h-255.5v64h127.5c0.062 0 0.136 0 0.21 0 70.576 0 127.79 57.214 127.79 127.79 0 0.074 0 0.148 0 0.222v-0.012 64c0 0.062 0 0.136 0 0.21 0 70.576-57.214 127.79-127.79 127.79-0.074 0-0.148 0-0.222 0h-255.988v-128h256v-64h-127.5c-0.084 0-0.184 0-0.284 0-70.736 0-128.093-57.281-128.216-127.989v-192.012h384zM576 640v128h-128.686c-22.337 0-41.949-11.669-53.072-29.243l-0.152-0.257-101.674-162.68c-0.936-1.479-2.563-2.447-4.416-2.447s-3.48 0.968-4.403 2.426l-0.013 0.021-101.674 162.68c-11.276 17.831-30.887 29.5-53.224 29.5h-128.686v-128h92.528l116.458-186.332c1.020-1.609 1.626-3.568 1.626-5.668s-0.606-4.059-1.652-5.712l0.026 0.044-116.46-186.332h-92.526v-128h128.686c22.337 0 41.949 11.669 53.072 29.243l0.152 0.257 101.674 162.68c0.936 1.479 2.563 2.447 4.416 2.447s3.48-0.968 4.403-2.426l0.013-0.021 101.674-162.68c11.276-17.831 30.887-29.5 53.224-29.5h128.686v128h-92.528l-116.458 186.332c-1.020 1.609-1.626 3.568-1.626 5.668s0.606 4.059 1.652 5.712l-0.026-0.044 116.46 186.332z" />
|
159
|
-
<glyph unicode="" glyph-name="superscript" d="M1024 576h-255.5v64h127.5c0.062 0 0.136 0 0.21 0 70.576 0 127.79 57.214 127.79 127.79 0 0.074 0 0.148 0 0.222v-0.012 64c0 0.062 0 0.136 0 0.21 0 70.576-57.214 127.79-127.79 127.79-0.074 0-0.148 0-0.222 0h-255.988v-128h256v-64h-127.5c-0.084 0-0.184 0-0.284 0-70.736 0-128.093-57.281-128.216-127.989v-192.012h384zM576 640v128h-128.686c-22.337 0-41.949-11.669-53.072-29.243l-0.152-0.257-101.674-162.68c-0.936-1.479-2.563-2.447-4.416-2.447s-3.48 0.968-4.403 2.426l-0.013 0.021-101.674 162.68c-11.276 17.831-30.887 29.5-53.224 29.5h-128.686v-128h92.528l116.458-186.332c1.020-1.609 1.626-3.568 1.626-5.668s-0.606-4.059-1.652-5.712l0.026 0.044-116.46-186.332h-92.526v-128h128.686c22.337 0 41.949 11.669 53.072 29.243l0.152 0.257 101.674 162.68c0.936 1.479 2.563 2.447 4.416 2.447s3.48-0.968 4.403-2.426l0.013-0.021 101.674-162.68c11.276-17.831 30.887-29.5 53.224-29.5h128.686v128h-92.528l-116.458 186.332c-1.020 1.609-1.626 3.568-1.626 5.668s0.606 4.059 1.652 5.712l-0.026-0.044 116.46 186.332z" />
|
160
|
-
<glyph unicode="" glyph-name="clear-format" d="M896 832v-128h-256l-48.326-161.086-98.46 98.462 18.786 62.624h-81l-128 128zM918.628 86.626l-768 768-67.94-67.734 349.344-349.456-112.032-373.436h128l82.486 274.952 320.18-320.284z" />
|
161
|
-
<glyph unicode="" glyph-name="preformatted" d="M64 384h576v-128h-576zM320 0h640v128h-640zM64 896v-128h576v128zM960 640h-640v-128h640z" />
|
162
|
-
<glyph unicode="" glyph-name="crop" d="M960 128h-128v-128h-128v128h-448c-35.346 0-64 28.654-64 64v0 448h-128v128h128v128h128v-640h640zM704 320h128v384c0 35.346-28.654 64-64 64v0h-384v-128h320z" />
|
163
|
-
<glyph unicode="" glyph-name="flip-horizontal" d="M528 0h-32v896h32zM88.024 148.020l307.109 255.925c12.648 10.593 20.634 26.391 20.634 44.055s-7.986 33.463-20.545 43.982l-0.090 0.073-307.109 255.925c-2.521 2.112-5.799 3.395-9.377 3.395-8.089 0-14.647-6.558-14.647-14.647 0 0 0 0 0 0v0-577.455c0 0 0 0 0 0 0-8.089 6.558-14.647 14.647-14.647 3.578 0 6.856 1.283 9.4 3.414l-0.023-0.019zM896 631.357l-220.030-183.357 220.030-183.357v366.715zM945.277 751.402c0.021 0 0.047 0 0.072 0 8.092 0 14.651-6.559 14.651-14.651 0-0.008 0-0.017 0-0.025v0.001-577.455c0-0.007 0-0.014 0-0.022 0-8.093-6.56-14.653-14.653-14.653-0.025 0-0.049 0-0.074 0h0.004c-3.557 0.006-6.81 1.299-9.32 3.44l0.020-0.017-307.11 255.924c-12.648 10.593-20.635 26.392-20.635 44.056s7.986 33.463 20.545 43.983l0.090 0.073 307.109 255.924c2.49 2.124 5.743 3.417 9.299 3.423h0.001z" />
|
164
|
-
<glyph unicode="" glyph-name="flip-vertical" d="M64 432v32h896v-32zM212.020 871.976l255.925-307.109c10.593-12.648 26.391-20.634 44.055-20.634s33.463 7.986 43.982 20.545l0.073 0.090 255.925 307.109c2.112 2.521 3.395 5.799 3.395 9.377 0 8.089-6.558 14.647-14.647 14.647 0 0 0 0 0 0h-577.455c0 0 0 0 0 0-8.089 0-14.647-6.558-14.647-14.647 0-3.578 1.283-6.856 3.414-9.4l-0.019 0.023zM695.357 64l-183.357 220.030-183.357-220.030h366.715zM815.402 14.723c0-0.021 0-0.047 0-0.072 0-8.092-6.559-14.651-14.651-14.651-0.008 0-0.017 0-0.025 0h-577.454c-0.007 0-0.014 0-0.022 0-8.093 0-14.653 6.56-14.653 14.653 0 0.025 0 0.049 0 0.074v-0.004c0.006 3.557 1.299 6.81 3.44 9.32l-0.017-0.020 255.924 307.11c10.593 12.648 26.392 20.635 44.056 20.635s33.463-7.986 43.983-20.545l0.073-0.090 255.924-307.109c2.124-2.49 3.417-5.743 3.423-9.299v-0.001z" />
|
165
|
-
<glyph unicode="" glyph-name="rotate-right" d="M843.84 396.532l103.38-6.070c-6.46-47.99-19.823-91.469-39.174-131.514l1.126 2.584-91.264 51.14c11.676 24.272 20.707 52.442 25.671 81.991l0.259 1.869zM690.62 170.386l49.676-95.914c39.448 24.218 73.262 52.808 102.242 85.754l0.424 0.492-85.542 63.802c-19.548-20.41-41.464-38.299-65.374-53.302l-1.422-0.832zM511.408 119.25c-1.056 0-2.104 0.030-3.16 0.040l-11.358-108.508c4.824-0.158 9.658-0.266 14.518-0.266 0.092 0 0.202 0 0.311 0 42.003 0 82.636 5.861 121.128 16.81l-3.115-0.758-37.172 102.536c-24.367-6.26-52.34-9.854-81.152-9.854v0zM258.488 90.836c34.364-24.582 74.047-44.848 116.599-58.776l3.099-0.878 25.332 106.1c-28.992 10.155-54.1 22.943-77.124 38.57l1.152-0.738zM102.712 288.596c17.777-44.223 40.586-82.382 68.369-116.311l-0.619 0.779 79.428 74.628c-16.555 21.209-30.953 45.371-42.136 71.247l-0.824 2.141zM793.288 801.326s-98.96 87.768-281.88 87.768c-242.24 0-439.376-197.050-439.376-439.3 0-14.868 0.77-29.558 2.22-44.050l107.648 18.71c-0.613 7.557-0.965 16.37-0.97 25.263v0.011c0.002 182.518 147.962 330.478 330.48 330.48v0c146.956 0 202.994-64.66 202.994-64.66l-122.404-139.548h304v336z" />
|
166
|
-
<glyph unicode="" glyph-name="rotate-left" d="M179.914 396.532l-103.38-6.070c6.46-47.99 19.822-91.469 39.172-131.514l-1.126 2.584 91.264 51.14c-11.676 24.272-20.707 52.442-25.671 81.991l-0.259 1.869zM333.132 170.386l-49.676-95.914c-39.448 24.218-73.262 52.808-102.242 85.754l-0.424 0.492 85.546 63.802c19.549-20.41 41.464-38.299 65.374-53.302l1.422-0.832zM512.344 119.25c1.058 0 2.106 0.030 3.16 0.040l11.36-108.508c-4.824-0.158-9.66-0.266-14.52-0.266-0.092 0-0.201 0-0.309 0-42.003 0-82.636 5.861-121.128 16.81l3.115-0.758 37.172 102.536c24.367-6.26 52.34-9.854 81.152-9.854v0zM765.266 90.836c-34.365-24.582-74.048-44.848-116.601-58.776l-3.099-0.878-25.33 106.1c28.992 10.156 54.1 22.943 77.124 38.57l-1.152-0.738zM921.040 288.596c-17.777-44.223-40.585-82.382-68.367-116.311l0.619 0.779-79.428 74.628c16.555 21.209 30.953 45.371 42.136 71.247l0.824 2.141zM230.466 801.326s98.958 87.768 281.88 87.768c242.24 0 439.374-197.050 439.374-439.3 0-14.868-0.768-29.558-2.22-44.050l-107.646 18.71c0.632 8.342 0.97 16.768 0.97 25.272-0.002 182.518-147.962 330.478-330.48 330.48v0c-146.956 0-202.994-64.658-202.994-64.658l122.404-139.548h-303.754v336z" />
|
167
|
-
<glyph unicode="" glyph-name="business" d="M448 640v256h-384v-896h896v640zM832 384h-128v128h128zM576 512v-128h-128v128zM320 384h-128v128h128zM320 768v-128h-128v128zM192 128v128h128v-128zM448 256h128v-128h-128zM704 128v128h128v-128z" />
|
168
|
-
<glyph unicode="" glyph-name="paywall" d="M960.008 384h-0.008v96c-0.266 88.258-71.742 159.734-159.975 160h-0.025c-88.258-0.266-159.734-71.742-160-159.975v-96.025h-0.008c-35.299-0.107-63.885-28.693-63.992-63.982v-256.026c0.107-35.299 28.693-63.885 63.982-63.992h320.026c35.299 0.107 63.885 28.693 63.992 63.982v256.026c-0.107 35.299-28.693 63.885-63.982 63.992h-0.010zM800 128c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64v0c0-35.346-28.654-64-64-64v0zM896 384h-192v96c0 53.019 42.981 96 96 96s96-42.981 96-96v0zM621.050 633.44c0.684 0.696 1.107 1.652 1.107 2.706 0 2.133-1.729 3.862-3.862 3.862-0.002 0-0.003 0-0.005 0v0l-554.29 0.492v63.5c0 0.035 0 0.077 0 0.119 0 35.239 28.458 63.831 63.645 64.049l704.355-0.168c35.302-0.109 63.891-28.698 64-63.99v-5.23c0-0.002 0-0.005 0-0.008 0-0.856 0.503-1.595 1.229-1.937l0.013-0.006c19.236-8.95 44.448-25.582 60.42-42.306 0.248-0.256 0.594-0.415 0.978-0.415 0.751 0 1.36 0.609 1.36 1.36 0 0.002 0 0.005 0 0.007v0 48.524c-0.347 70.553-57.447 127.653-127.967 128h-704.033c-70.607-0.213-127.787-57.394-128-127.98v-448.020c0.213-70.607 57.394-127.787 127.98-128h372.020v64h-372c-35.303 0.107-63.893 28.697-64 63.99v256.010h494.068c0.004 0 0.008 0 0.013 0 3.36 0 6.139 2.49 6.591 5.725l0.004 0.035c5.494 40.73 26.52 85.696 56.374 115.68z" />
|
169
|
-
<glyph unicode="" glyph-name="analytics" d="M128 448h192v-384h-192v384zM384 832h192v-768h-192v768zM640 640h192v-576h-192v576z" />
|
170
|
-
<glyph unicode="" glyph-name="amp" d="M512 960c-282.768 0-512-229.228-512-512 0-282.768 229.232-512 512-512s512 229.232 512 512c0 282.772-229.232 512-512 512zM352 64l128 320h-224l416 448-128-320h224z" />
|
171
|
-
<glyph unicode="" glyph-name="undo" d="M523.6 670.034c-115.994 0-221.045-43.317-302.022-113.761l-157.578 157.727v-394h394l-158.51 158.391c60.842 50.755 138.317 82.258 224.109 82.258 154.951 0 286.702-101.072 332.662-240.649l103.738 34.448c-60.842 183.331-232.864 315.586-436.4 315.586z" />
|
172
|
-
<glyph unicode="" glyph-name="redo" d="M64 354.448l103.738-34.448c45.96 139.576 177.712 240.649 332.662 240.649 85.792 0 163.267-31.503 224.109-82.258l-158.51-158.391h394v394l-157.577-157.727c-80.977 70.444-186.028 113.761-302.023 113.761-203.536 0-375.558-132.256-436.4-315.586z" />
|
173
|
-
<glyph unicode="" glyph-name="instagram" d="M512 867.748c136.71 0 152.902-0.52 206.892-2.984 49.92-2.28 77.030-10.62 95.070-17.63 23.086-8.664 42.751-21.715 58.836-38.263l0.036-0.037c16.585-16.121 29.636-35.786 37.938-57.78l0.362-1.092c7.010-18.040 15.352-45.152 17.628-95.070 2.464-53.99 2.986-70.182 2.986-206.892s-0.52-152.904-2.986-206.892c-2.276-49.92-10.618-77.030-17.628-95.072-17.606-44.783-52.388-79.565-96.022-96.77l-1.15-0.4c-18.040-7.012-45.152-15.352-95.070-17.63-53.98-2.464-70.172-2.984-206.892-2.984s-152.91 0.52-206.892 2.984c-49.92 2.278-77.030 10.62-95.072 17.63-23.085 8.665-42.749 21.715-58.834 38.263l-0.036 0.037c-16.585 16.121-29.635 35.785-37.938 57.778l-0.362 1.092c-7.012 18.042-15.352 45.154-17.63 95.072-2.462 53.99-2.984 70.18-2.984 206.892s0.52 152.902 2.984 206.892c2.28 49.92 10.62 77.030 17.63 95.072 8.665 23.085 21.715 42.749 38.263 58.834l0.037 0.036c16.121 16.585 35.786 29.636 57.78 37.938l1.092 0.362c18.040 7.010 45.152 15.352 95.070 17.63 53.988 2.462 70.182 2.984 206.892 2.984zM512 960c-139.050 0-156.486-0.588-211.096-3.080-54.5-2.486-91.716-11.142-124.284-23.8-35.489-13.577-65.741-33.663-90.65-59.017l-0.036-0.037c-25.391-24.945-45.477-55.197-58.473-88.969l-0.581-1.717c-12.658-32.568-21.312-69.786-23.8-124.284-2.492-54.61-3.080-72.044-3.080-211.096s0.588-156.486 3.080-211.096c2.486-54.5 11.142-91.716 23.8-124.284 13.577-35.489 33.663-65.741 59.017-90.65l0.037-0.036c24.944-25.391 55.197-45.477 88.969-58.473l1.717-0.581c32.568-12.658 69.786-21.312 124.284-23.8 54.61-2.49 72.046-3.080 211.096-3.080s156.486 0.588 211.096 3.080c54.5 2.486 91.716 11.14 124.284 23.8 68.976 27.187 122.553 80.764 149.122 147.967l0.618 1.773c12.658 32.568 21.312 69.784 23.8 124.282 2.488 54.612 3.080 72.046 3.080 211.098s-0.588 156.486-3.080 211.096c-2.486 54.5-11.14 91.716-23.8 124.284-13.577 35.489-33.663 65.742-59.017 90.65l-0.037 0.036c-24.945 25.391-55.197 45.477-88.969 58.473l-1.717 0.581c-32.568 12.658-69.786 21.312-124.284 23.8-54.61 2.492-72.044 3.080-211.096 3.080zM512 710.92c-145.207 0-262.92-117.713-262.92-262.92s117.713-262.92 262.92-262.92c145.207 0 262.92 117.713 262.92 262.92v0c0 145.207-117.713 262.92-262.92 262.92v0zM512 277.334c-94.256 0-170.666 76.41-170.666 170.666s76.41 170.666 170.666 170.666c94.256 0 170.666-76.41 170.666-170.666v0c0-94.256-76.41-170.666-170.666-170.666v0zM846.748 721.306c0-33.932-27.508-61.44-61.44-61.44s-61.44 27.508-61.44 61.44c0 33.932 27.508 61.44 61.44 61.44s61.44-27.508 61.44-61.44z" />
|
174
|
-
<glyph unicode="" glyph-name="play" d="M229.262 810.208l568.52-341.646c7.013-4.267 11.625-11.868 11.625-20.546 0-8.683-4.617-16.288-11.531-20.494l-0.106-0.060-569.412-341.648c-3.52-2.145-7.778-3.416-12.332-3.416-13.238 0-23.97 10.732-23.97 23.97 0 0.011 0 0.022 0 0.033v-0.002l0.89 683.294c0.018 13.225 10.743 23.938 23.97 23.938 4.56 0 8.823-1.273 12.452-3.484l-0.106 0.060z" />
|
175
|
-
<glyph unicode="" glyph-name="stop" d="M224 768h576c17.673 0 32-14.327 32-32v-576c0-17.673-14.327-32-32-32h-576c-17.673 0-32 14.327-32 32v576c0 17.673 14.327 32 32 32z" />
|
176
|
-
<glyph unicode="" glyph-name="pause" d="M416.010 128h-128.020c-17.668 0-31.99 14.322-31.99 31.99v0 576.020c0 17.668 14.322 31.99 31.99 31.99v0h128.020c17.668 0 31.99-14.322 31.99-31.99v0-576.020c0-17.668-14.322-31.99-31.99-31.99v0zM800.010 768h-128.020c-17.668 0-31.99-14.322-31.99-31.99v0-576.020c0-17.668 14.322-31.99 31.99-31.99v0h128.020c17.668 0 31.99 14.322 31.99 31.99v0 576.020c0 17.668-14.322 31.99-31.99 31.99v0z" />
|
177
|
-
<glyph unicode="" glyph-name="fast_rewind" d="M922.014 154.4l-382.812 274.122c-6.096 4.403-10.017 11.491-10.017 19.494 0 7.996 3.914 15.078 9.931 19.434l0.070 0.048 382.216 274.122c3.877 2.808 8.728 4.492 13.972 4.492 13.232 0 23.96-10.718 23.976-23.946v-0.002l0.6-548.244c0-0.008 0-0.018 0-0.027 0-13.242-10.734-23.976-23.976-23.976-5.239 0-10.086 1.68-14.030 4.532l0.070-0.048zM473.402 741.62l-382.216-274.12c-6.088-4.404-10.003-11.486-10.003-19.483 0-8.004 3.922-15.091 9.948-19.446l0.070-0.048 382.812-274.122c3.874-2.802 8.72-4.482 13.958-4.482 13.242 0 23.976 10.734 23.976 23.976 0 0.009 0 0.018 0 0.027v-0.001l-0.598 548.244c-0.016 13.229-10.744 23.948-23.976 23.948-5.244 0-10.095-1.684-14.042-4.54l0.070 0.048z" />
|
178
|
-
<glyph unicode="" glyph-name="fast_forward" d="M102.606 741.614l382.2-274.112c6.090-4.405 10.006-11.489 10.006-19.488 0-8.004-3.921-15.092-9.948-19.448l-0.070-0.048-382.8-274.112c-3.875-2.803-8.722-4.484-13.962-4.484-13.244 0-23.98 10.736-23.98 23.98 0 0.010 0 0.020 0 0.029v-0.001l0.598 548.224c0.015 13.233 10.745 23.954 23.98 23.954 5.246 0 10.098-1.684 14.046-4.542l-0.070 0.048zM549.992 154.406l382.8 274.112c6.098 4.404 10.020 11.493 10.020 19.498 0 7.998-3.915 15.081-9.934 19.438l-0.070 0.048-382.202 274.112c-3.878 2.809-8.73 4.494-13.976 4.494-13.235 0-23.965-10.721-23.98-23.952v-0.001l-0.6-548.224c0-0.008 0-0.018 0-0.028 0-13.244 10.736-23.98 23.98-23.98 5.24 0 10.087 1.681 14.032 4.532l-0.070-0.048z" />
|
179
|
-
<glyph unicode="" glyph-name="skip_previous" d="M859.634 85.82l-569.394 341.638c-7.021 4.266-11.639 11.873-11.639 20.558 0 8.679 4.612 16.282 11.519 20.49l0.106 0.060 568.506 341.64c3.524 2.151 7.787 3.424 12.348 3.424 13.23 0 23.958-10.716 23.976-23.943v-0.002l0.89-683.278c0-0.008 0-0.018 0-0.028 0-13.242-10.734-23.976-23.976-23.976-4.555 0-8.813 1.27-12.44 3.476l0.106-0.060zM152 64h80c0.001 0 0.001 0 0.002 0 13.254 0 23.998 10.744 23.998 23.998v720.002c0 0.001 0 0.001 0 0.002 0 13.254-10.744 23.998-23.998 23.998h-80.002c-0.001 0-0.001 0-0.002 0-13.254 0-23.998-10.744-23.998-23.998v0-720.002c0-0.001 0-0.001 0-0.002 0-13.254 10.744-23.998 23.998-23.998v0z" />
|
180
|
-
<glyph unicode="" glyph-name="skip_next" d="M165.314 810.176l568.42-341.584c7.022-4.273 11.64-11.885 11.64-20.576 0-8.696-4.624-16.313-11.548-20.524l-0.106-0.060-569.31-341.586c-3.525-2.148-7.788-3.419-12.348-3.419-13.258 0-24.006 10.748-24.006 24.006 0 0.010 0 0.021 0 0.031v-0.002l0.888 683.17c0.019 13.244 10.759 23.973 24.006 23.973 4.567 0 8.836-1.275 12.47-3.489l-0.106 0.060zM871.994 832h-79.988c-0.001 0-0.001 0-0.002 0-13.257 0-24.004-10.747-24.004-24.004 0-0.001 0-0.001 0-0.002v0-719.988c0-0.001 0-0.001 0-0.002 0-13.257 10.747-24.004 24.004-24.004 0.001 0 0.001 0 0.002 0h79.988c0.001 0 0.001 0 0.002 0 13.257 0 24.004 10.747 24.004 24.004 0 0.001 0 0.001 0 0.002v0 719.988c0 0.001 0 0.001 0 0.002 0 13.257-10.747 24.004-24.004 24.004-0.001 0-0.001 0-0.002 0v0z" />
|
181
|
-
<glyph unicode="" glyph-name="add_image" d="M863.304 768h-767.274c-17.69 0-32.030-14.34-32.030-32.030v-639.94c0-17.69 14.34-32.030 32.030-32.030v0h479.97v128h-442.516l178.416 222.174 118.946-133.82 163.55 269.646 110.306-166h190.632v351.97c0 17.69-14.34 32.030-32.030 32.030v0zM1024 192h-128v128h-128v-128h-128v-128h128v-128h128v128h128v128z" />
|
182
|
-
<glyph unicode="" glyph-name="add_gallery" d="M896 608.002v-224.002h-177.454l-74.456 126-159-245.728-115.636 159-173.454-231.272h380v-128h-416.002c-17.672 0.001-31.997 14.326-31.998 31.998v0 512.004c0.001 17.672 14.326 31.997 31.998 31.998h704.004c17.672-0.001 31.997-14.326 31.998-31.998v0zM1024 192h-128v128h-128v-128h-128v-128h128v-128h128v128h128zM64 497.004l-52.090 132.24c-1.391 3.46-2.198 7.471-2.198 11.671 0 13.45 8.278 24.967 20.018 29.732l0.215 0.077 34.056 13.41zM528.014 767.194l81.114-63.194h198.77l-81.428 206.716c-4.842 11.955-16.359 20.234-29.81 20.234-4.199 0-8.21-0.807-11.886-2.274l0.216 0.076-570.56-224.752h400.838z" />
|
183
|
-
<glyph unicode="" glyph-name="text-format" d="M0 832v-128h256v-640h128v640h256v128h-640zM512 576v-128h192v-384h128v384h192v128h-512z" />
|
184
|
-
<glyph unicode="" glyph-name="to_uppercase" d="M32 768v-128h160v-512h128v512h160v128h-448zM544 768v-128h160v-512h128v512h160v128h-448z" />
|
185
|
-
<glyph unicode="" glyph-name="to_lowercase" d="M448 576v64h-128v128h-96l-32-128-64-16v-48h64v-352c0-64 47.984-96 127.992-96s128.008 32 128.008 32l-22.834 56.864s-21.166-14.198-46.492-14.198c-22 0-58.674 1.988-58.674 37.334v336zM832 576v64h-128v128h-96l-32-128-64-16v-48h64v-352c0-64 47.984-96 127.992-96s128.008 32 128.008 32l-22.834 56.864s-21.166-14.198-46.492-14.198c-22 0-58.674 1.988-58.674 37.334v336z" />
|
186
|
-
<glyph unicode="" glyph-name="arrow_small" d="M320 320v-64h64l256 256v-192h128v384h-384v-128h192z" />
|
187
|
-
<glyph unicode="" glyph-name="clean_all" d="M769.032 480c-0.594 25.87-1.032 52.57-1.032 80 0 48-35.818 80-80 80h-112l16 176c0 44.182-35.818 80-80 80s-80-35.818-80-80l16-176h-112c-44.182 0-80-32-80-80 0-12.182-0.824-41.216-4.972-80h518.004zM247.082 448c-16.21-116.3-61.060-289.664-183.082-384 8.212 0 112.528 0 220.346 0 48.088 48.254 71.068 91.66 96 159.25 0.452 1.226 2.272 0.86 2.25-0.446-1.38-76.748-25.394-132.882-39.074-158.802 61.704 0 125.992 0 182.998 0 21.324 28.882 34.74 62.266 46.144 95.41 0.37 1.074 1.77 0.564 1.686-0.582-3.252-44.010-7.996-74.162-12.97-94.828 10.592 0 20.838 0 30.62 0 193.734 0 184.006 155.668 177.84 384h-522.758z" />
|
188
|
-
<glyph unicode="" glyph-name="broascast" d="M896 704h-293.786l210.586 210.586-44.8 45.414-256-256-256 256-45.414-45.414 211.2-210.586h-293.786c-70.4 0-128-56.986-128-128v-512c0-70.4 57.6-128 128-128h768c70.4 0 128 57.6 128 128v512c0 71.014-57.6 128-128 128zM128 64v512h768v-512zM704 320l-320-192v384z" />
|
189
|
-
</font></defs></svg>
|
package/sd_icons.ttf
DELETED
Binary file
|
package/sd_icons.woff
DELETED
Binary file
|