@webiny/app-admin 0.0.0-ee-vpcs.549378cf03
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/LICENSE +21 -0
- package/README.md +21 -0
- package/assets/icons/add-18px.svg +3 -0
- package/assets/icons/arrow_drop_down-24px.svg +4 -0
- package/assets/icons/attach_file_black_24dp.svg +1 -0
- package/assets/icons/baseline-menu-24px.svg +4 -0
- package/assets/icons/baseline-notification_important-24px.svg +4 -0
- package/assets/icons/baseline-security-24px.svg +4 -0
- package/assets/icons/filter-24px.svg +8 -0
- package/assets/icons/github-brands.svg +1 -0
- package/assets/icons/highlight-24px.svg +1 -0
- package/assets/icons/icon-community.svg +16 -0
- package/assets/icons/icon-documentation.svg +16 -0
- package/assets/icons/info.svg +1 -0
- package/assets/icons/insert_drive_file-24px.svg +1 -0
- package/assets/icons/insert_photo-24px.svg +1 -0
- package/assets/icons/label-24px.svg +1 -0
- package/assets/icons/round-account_circle-24px.svg +1 -0
- package/assets/icons/round-add-24px.svg +16 -0
- package/assets/icons/round-arrow_drop_down-24px.svg +1 -0
- package/assets/icons/round-chevron_right-24px.svg +12 -0
- package/assets/icons/round-feedback-24px.svg +54 -0
- package/assets/icons/round-help-24px.svg +1 -0
- package/assets/icons/round-invert_colors-24px.svg +52 -0
- package/assets/icons/round-keyboard_arrow_down-24px.svg +16 -0
- package/assets/icons/round-keyboard_arrow_up-24px.svg +16 -0
- package/assets/icons/round-lock_open-24px.svg +60 -0
- package/assets/icons/round-more_vert-24px.svg +12 -0
- package/assets/icons/round-open_in_new-24px.svg +44 -0
- package/assets/icons/round-settings-24px.svg +4 -0
- package/assets/icons/search-24px.svg +20 -0
- package/assets/icons/slack-logo.svg +1 -0
- package/assets/icons/today-24px.svg +1 -0
- package/assets/icons/touch_app.svg +1 -0
- package/assets/images/arr.png +0 -0
- package/assets/images/arr_2.png +0 -0
- package/assets/images/header_bg.jpg +0 -0
- package/assets/images/icons.png +0 -0
- package/assets/images/icons_retina.png +0 -0
- package/assets/images/logo.png +0 -0
- package/assets/images/logo_orange.png +0 -0
- package/assets/images/public/bg-login.png +0 -0
- package/assets/images/public/favicon.ico +0 -0
- package/assets/images/public/logo_orange.png +0 -0
- package/assets/images/public/preloader_2.png +0 -0
- package/assets/images/swich.png +0 -0
- package/assets/images/table_img.jpg +0 -0
- package/assets/images/webiny-logo.svg +20 -0
- package/assets/images/webiny-orange-logo.svg +20 -0
- package/base/Admin.d.ts +7 -0
- package/base/Admin.js +55 -0
- package/base/Admin.js.map +1 -0
- package/base/Base.d.ts +2 -0
- package/base/Base.js +110 -0
- package/base/Base.js.map +1 -0
- package/base/plugins/AddGraphQLQuerySelection.d.ts +9 -0
- package/base/plugins/AddGraphQLQuerySelection.js +31 -0
- package/base/plugins/AddGraphQLQuerySelection.js.map +1 -0
- package/base/providers/ApolloProvider.d.ts +10 -0
- package/base/providers/ApolloProvider.js +26 -0
- package/base/providers/ApolloProvider.js.map +1 -0
- package/base/providers/TelemetryProvider.d.ts +2 -0
- package/base/providers/TelemetryProvider.js +37 -0
- package/base/providers/TelemetryProvider.js.map +1 -0
- package/base/providers/UiStateProvider.d.ts +2 -0
- package/base/providers/UiStateProvider.js +23 -0
- package/base/providers/UiStateProvider.js.map +1 -0
- package/base/providers/ViewCompositionProvider.d.ts +17 -0
- package/base/providers/ViewCompositionProvider.js +70 -0
- package/base/providers/ViewCompositionProvider.js.map +1 -0
- package/base/ui/Brand.d.ts +2 -0
- package/base/ui/Brand.js +19 -0
- package/base/ui/Brand.js.map +1 -0
- package/base/ui/CenteredView.d.ts +4 -0
- package/base/ui/CenteredView.js +40 -0
- package/base/ui/CenteredView.js.map +1 -0
- package/base/ui/Dashboard.d.ts +2 -0
- package/base/ui/Dashboard.js +19 -0
- package/base/ui/Dashboard.js.map +1 -0
- package/base/ui/Layout.d.ts +7 -0
- package/base/ui/Layout.js +24 -0
- package/base/ui/Layout.js.map +1 -0
- package/base/ui/LocaleSelector.d.ts +2 -0
- package/base/ui/LocaleSelector.js +19 -0
- package/base/ui/LocaleSelector.js.map +1 -0
- package/base/ui/LoginScreen.d.ts +6 -0
- package/base/ui/LoginScreen.js +27 -0
- package/base/ui/LoginScreen.js.map +1 -0
- package/base/ui/Logo.d.ts +8 -0
- package/base/ui/Logo.js +36 -0
- package/base/ui/Logo.js.map +1 -0
- package/base/ui/Menu.d.ts +31 -0
- package/base/ui/Menu.js +166 -0
- package/base/ui/Menu.js.map +1 -0
- package/base/ui/Navigation.d.ts +24 -0
- package/base/ui/Navigation.js +184 -0
- package/base/ui/Navigation.js.map +1 -0
- package/base/ui/NotFound.d.ts +2 -0
- package/base/ui/NotFound.js +19 -0
- package/base/ui/NotFound.js.map +1 -0
- package/base/ui/Search.d.ts +19 -0
- package/base/ui/Search.js +81 -0
- package/base/ui/Search.js.map +1 -0
- package/base/ui/Tags.d.ts +10 -0
- package/base/ui/Tags.js +29 -0
- package/base/ui/Tags.js.map +1 -0
- package/base/ui/UserMenu.d.ts +30 -0
- package/base/ui/UserMenu.js +137 -0
- package/base/ui/UserMenu.js.map +1 -0
- package/components/AdminLayout.d.ts +6 -0
- package/components/AdminLayout.js +22 -0
- package/components/AdminLayout.js.map +1 -0
- package/components/AppInstaller/AppInstaller.d.ts +7 -0
- package/components/AppInstaller/AppInstaller.js +183 -0
- package/components/AppInstaller/AppInstaller.js.map +1 -0
- package/components/AppInstaller/Sidebar.d.ts +9 -0
- package/components/AppInstaller/Sidebar.js +178 -0
- package/components/AppInstaller/Sidebar.js.map +1 -0
- package/components/AppInstaller/assets/sign-in-divider.svg +19 -0
- package/components/AppInstaller/index.d.ts +2 -0
- package/components/AppInstaller/index.js +29 -0
- package/components/AppInstaller/index.js.map +1 -0
- package/components/AppInstaller/styled.d.ts +9 -0
- package/components/AppInstaller/styled.js +91 -0
- package/components/AppInstaller/styled.js.map +1 -0
- package/components/AppInstaller/useInstaller.d.ts +31 -0
- package/components/AppInstaller/useInstaller.js +321 -0
- package/components/AppInstaller/useInstaller.js.map +1 -0
- package/components/EmptyView.d.ts +8 -0
- package/components/EmptyView.js +70 -0
- package/components/EmptyView.js.map +1 -0
- package/components/FileManager/BottomInfoBar/SupportedFileTypes.d.ts +6 -0
- package/components/FileManager/BottomInfoBar/SupportedFileTypes.js +55 -0
- package/components/FileManager/BottomInfoBar/SupportedFileTypes.js.map +1 -0
- package/components/FileManager/BottomInfoBar/UploadStatus.d.ts +6 -0
- package/components/FileManager/BottomInfoBar/UploadStatus.js +60 -0
- package/components/FileManager/BottomInfoBar/UploadStatus.js.map +1 -0
- package/components/FileManager/BottomInfoBar.d.ts +5 -0
- package/components/FileManager/BottomInfoBar.js +60 -0
- package/components/FileManager/BottomInfoBar.js.map +1 -0
- package/components/FileManager/DropFilesHere.d.ts +10 -0
- package/components/FileManager/DropFilesHere.js +76 -0
- package/components/FileManager/DropFilesHere.js.map +1 -0
- package/components/FileManager/File.d.ts +17 -0
- package/components/FileManager/File.js +155 -0
- package/components/FileManager/File.js.map +1 -0
- package/components/FileManager/FileDetails/Name.d.ts +8 -0
- package/components/FileManager/FileDetails/Name.js +138 -0
- package/components/FileManager/FileDetails/Name.js.map +1 -0
- package/components/FileManager/FileDetails/Tags.d.ts +10 -0
- package/components/FileManager/FileDetails/Tags.js +339 -0
- package/components/FileManager/FileDetails/Tags.js.map +1 -0
- package/components/FileManager/FileDetails.d.ts +24 -0
- package/components/FileManager/FileDetails.js +474 -0
- package/components/FileManager/FileDetails.js.map +1 -0
- package/components/FileManager/FileManagerContext.d.ts +42 -0
- package/components/FileManager/FileManagerContext.js +224 -0
- package/components/FileManager/FileManagerContext.js.map +1 -0
- package/components/FileManager/FileManagerView.d.ts +18 -0
- package/components/FileManager/FileManagerView.js +728 -0
- package/components/FileManager/FileManagerView.js.map +1 -0
- package/components/FileManager/LeftSidebar.d.ts +10 -0
- package/components/FileManager/LeftSidebar.js +127 -0
- package/components/FileManager/LeftSidebar.js.map +1 -0
- package/components/FileManager/NoPermissionView.d.ts +3 -0
- package/components/FileManager/NoPermissionView.js +87 -0
- package/components/FileManager/NoPermissionView.js.map +1 -0
- package/components/FileManager/NoResults.d.ts +3 -0
- package/components/FileManager/NoResults.js +28 -0
- package/components/FileManager/NoResults.js.map +1 -0
- package/components/FileManager/getFileTypePlugin.d.ts +4 -0
- package/components/FileManager/getFileTypePlugin.js +57 -0
- package/components/FileManager/getFileTypePlugin.js.map +1 -0
- package/components/FileManager/getFileUploader.d.ts +3 -0
- package/components/FileManager/getFileUploader.js +20 -0
- package/components/FileManager/getFileUploader.js.map +1 -0
- package/components/FileManager/graphql.d.ts +96 -0
- package/components/FileManager/graphql.js +58 -0
- package/components/FileManager/graphql.js.map +1 -0
- package/components/FileManager/icons/content_copy-black-24px.svg +1 -0
- package/components/FileManager/icons/delete.svg +12 -0
- package/components/FileManager/icons/privacy_tip-24px.svg +10 -0
- package/components/FileManager/icons/round-check_box-24px.svg +4 -0
- package/components/FileManager/icons/round-check_box_outline_blank-24px.svg +4 -0
- package/components/FileManager/icons/round-cloud_download-24px.svg +4 -0
- package/components/FileManager/icons/round-cloud_upload-24px.svg +4 -0
- package/components/FileManager/icons/round-description-24px.svg +4 -0
- package/components/FileManager/icons/round-edit-24px.svg +4 -0
- package/components/FileManager/icons/round-info-24px.svg +4 -0
- package/components/FileManager/icons/round-label-24px.svg +4 -0
- package/components/FileManager/icons/round-more_vert-24px.svg +4 -0
- package/components/FileManager/icons/round-search-24px.svg +20 -0
- package/components/FileManager/outputFileSelectionError.d.ts +7 -0
- package/components/FileManager/outputFileSelectionError.js +54 -0
- package/components/FileManager/outputFileSelectionError.js.map +1 -0
- package/components/FileManager/types.d.ts +21 -0
- package/components/FileManager/types.js +5 -0
- package/components/FileManager/types.js.map +1 -0
- package/components/FileManager.d.ts +67 -0
- package/components/FileManager.js +144 -0
- package/components/FileManager.js.map +1 -0
- package/components/FloatingActionButton.d.ts +3 -0
- package/components/FloatingActionButton.js +29 -0
- package/components/FloatingActionButton.js.map +1 -0
- package/components/MultiImageUpload.d.ts +13 -0
- package/components/MultiImageUpload.js +43 -0
- package/components/MultiImageUpload.js.map +1 -0
- package/components/OverlayLayout/OverlayLayout.d.ts +23 -0
- package/components/OverlayLayout/OverlayLayout.js +184 -0
- package/components/OverlayLayout/OverlayLayout.js.map +1 -0
- package/components/OverlayLayout/icons/close.svg +13 -0
- package/components/OverlayLayout/icons/navigate_before.svg +16 -0
- package/components/OverlayLayout/index.d.ts +1 -0
- package/components/OverlayLayout/index.js +18 -0
- package/components/OverlayLayout/index.js.map +1 -0
- package/components/Permissions/Permissions.d.ts +7 -0
- package/components/Permissions/Permissions.js +54 -0
- package/components/Permissions/Permissions.js.map +1 -0
- package/components/Permissions/StyledComponents.d.ts +8 -0
- package/components/Permissions/StyledComponents.js +36 -0
- package/components/Permissions/StyledComponents.js.map +1 -0
- package/components/Permissions/index.d.ts +2 -0
- package/components/Permissions/index.js +30 -0
- package/components/Permissions/index.js.map +1 -0
- package/components/RichTextEditor/RichTextEditor.d.ts +3 -0
- package/components/RichTextEditor/RichTextEditor.js +30 -0
- package/components/RichTextEditor/RichTextEditor.js.map +1 -0
- package/components/RichTextEditor/index.d.ts +2 -0
- package/components/RichTextEditor/index.js +21 -0
- package/components/RichTextEditor/index.js.map +1 -0
- package/components/RichTextEditor/styles.scss +96 -0
- package/components/RichTextEditor/tools/header/index.d.ts +229 -0
- package/components/RichTextEditor/tools/header/index.js +731 -0
- package/components/RichTextEditor/tools/header/index.js.map +1 -0
- package/components/RichTextEditor/tools/header/styles.scss +48 -0
- package/components/RichTextEditor/tools/image/index.d.ts +124 -0
- package/components/RichTextEditor/tools/image/index.js +265 -0
- package/components/RichTextEditor/tools/image/index.js.map +1 -0
- package/components/RichTextEditor/tools/image/styles.scss +90 -0
- package/components/RichTextEditor/tools/image/svgs.d.ts +6 -0
- package/components/RichTextEditor/tools/image/svgs.js +12 -0
- package/components/RichTextEditor/tools/image/svgs.js.map +1 -0
- package/components/RichTextEditor/tools/image/tunes.d.ts +57 -0
- package/components/RichTextEditor/tools/image/tunes.js +146 -0
- package/components/RichTextEditor/tools/image/tunes.js.map +1 -0
- package/components/RichTextEditor/tools/image/types.d.ts +29 -0
- package/components/RichTextEditor/tools/image/types.js +5 -0
- package/components/RichTextEditor/tools/image/types.js.map +1 -0
- package/components/RichTextEditor/tools/image/ui.d.ts +122 -0
- package/components/RichTextEditor/tools/image/ui.js +301 -0
- package/components/RichTextEditor/tools/image/ui.js.map +1 -0
- package/components/RichTextEditor/tools/paragraph/index.d.ts +209 -0
- package/components/RichTextEditor/tools/paragraph/index.js +514 -0
- package/components/RichTextEditor/tools/paragraph/index.js.map +1 -0
- package/components/RichTextEditor/tools/paragraph/styles.scss +29 -0
- package/components/RichTextEditor/tools/textColor/index.d.ts +64 -0
- package/components/RichTextEditor/tools/textColor/index.js +271 -0
- package/components/RichTextEditor/tools/textColor/index.js.map +1 -0
- package/components/RichTextEditor/tools/textColor/styles.scss +21 -0
- package/components/RichTextEditor/tools/utils.d.ts +19 -0
- package/components/RichTextEditor/tools/utils.js +33 -0
- package/components/RichTextEditor/tools/utils.js.map +1 -0
- package/components/Routes.d.ts +6 -0
- package/components/Routes.js +49 -0
- package/components/Routes.js.map +1 -0
- package/components/SearchUI.d.ts +8 -0
- package/components/SearchUI.js +73 -0
- package/components/SearchUI.js.map +1 -0
- package/components/SimpleForm/SimpleForm.d.ts +21 -0
- package/components/SimpleForm/SimpleForm.js +106 -0
- package/components/SimpleForm/SimpleForm.js.map +1 -0
- package/components/SimpleForm/index.d.ts +1 -0
- package/components/SimpleForm/index.js +31 -0
- package/components/SimpleForm/index.js.map +1 -0
- package/components/SimpleUI/InputField.d.ts +10 -0
- package/components/SimpleUI/InputField.js +116 -0
- package/components/SimpleUI/InputField.js.map +1 -0
- package/components/SingleImageUpload.d.ts +55 -0
- package/components/SingleImageUpload.js +114 -0
- package/components/SingleImageUpload.js.map +1 -0
- package/components/SplitView/SplitView.d.ts +11 -0
- package/components/SplitView/SplitView.js +95 -0
- package/components/SplitView/SplitView.js.map +1 -0
- package/components/SplitView/index.d.ts +1 -0
- package/components/SplitView/index.js +25 -0
- package/components/SplitView/index.js.map +1 -0
- package/components/index.d.ts +1 -0
- package/components/index.js +13 -0
- package/components/index.js.map +1 -0
- package/hooks/useConfirmationDialog.d.ts +13 -0
- package/hooks/useConfirmationDialog.js +63 -0
- package/hooks/useConfirmationDialog.js.map +1 -0
- package/hooks/useDialog.d.ts +10 -0
- package/hooks/useDialog.js +37 -0
- package/hooks/useDialog.js.map +1 -0
- package/hooks/useSnackbar.d.ts +7 -0
- package/hooks/useSnackbar.js +38 -0
- package/hooks/useSnackbar.js.map +1 -0
- package/index.d.ts +35 -0
- package/index.js +373 -0
- package/index.js.map +1 -0
- package/package.json +102 -0
- package/plugins/FileManagerFileTypePlugin.d.ts +33 -0
- package/plugins/FileManagerFileTypePlugin.js +63 -0
- package/plugins/FileManagerFileTypePlugin.js.map +1 -0
- package/plugins/MenuPlugin.d.ts +37 -0
- package/plugins/MenuPlugin.js +58 -0
- package/plugins/MenuPlugin.js.map +1 -0
- package/plugins/PermissionRendererPlugin.d.ts +22 -0
- package/plugins/PermissionRendererPlugin.js +58 -0
- package/plugins/PermissionRendererPlugin.js.map +1 -0
- package/plugins/fileManager/fileDefault.d.ts +2 -0
- package/plugins/fileManager/fileDefault.js +34 -0
- package/plugins/fileManager/fileDefault.js.map +1 -0
- package/plugins/fileManager/fileImage/DeleteAction.d.ts +7 -0
- package/plugins/fileManager/fileImage/DeleteAction.js +83 -0
- package/plugins/fileManager/fileImage/DeleteAction.js.map +1 -0
- package/plugins/fileManager/fileImage/EditAction.d.ts +10 -0
- package/plugins/fileManager/fileImage/EditAction.js +179 -0
- package/plugins/fileManager/fileImage/EditAction.js.map +1 -0
- package/plugins/fileManager/fileImage/index.d.ts +2 -0
- package/plugins/fileManager/fileImage/index.js +46 -0
- package/plugins/fileManager/fileImage/index.js.map +1 -0
- package/plugins/fileManager/icons/edit.svg +17 -0
- package/plugins/fileManager/icons/round-description-24px.svg +1 -0
- package/plugins/fileManager/index.d.ts +2 -0
- package/plugins/fileManager/index.js +21 -0
- package/plugins/fileManager/index.js.map +1 -0
- package/plugins/globalSearch/SearchBar.d.ts +15 -0
- package/plugins/globalSearch/SearchBar.js +273 -0
- package/plugins/globalSearch/SearchBar.js.map +1 -0
- package/plugins/globalSearch/SearchBarDropdown.d.ts +23 -0
- package/plugins/globalSearch/SearchBarDropdown.js +101 -0
- package/plugins/globalSearch/SearchBarDropdown.js.map +1 -0
- package/plugins/globalSearch/icons/round-search-24px.svg +20 -0
- package/plugins/globalSearch/index.d.ts +7 -0
- package/plugins/globalSearch/index.js +16 -0
- package/plugins/globalSearch/index.js.map +1 -0
- package/plugins/globalSearch/styled.d.ts +11 -0
- package/plugins/globalSearch/styled.js +135 -0
- package/plugins/globalSearch/styled.js.map +1 -0
- package/plugins/uiLayoutRenderer/index.d.ts +2 -0
- package/plugins/uiLayoutRenderer/index.js +75 -0
- package/plugins/uiLayoutRenderer/index.js.map +1 -0
- package/styles/material-theme-assignments.scss +350 -0
- package/styles/material.scss +43 -0
- package/styles/theme.scss +46 -0
- package/styles.scss +2 -0
- package/types.d.ts +93 -0
- package/types.js +5 -0
- package/types.js.map +1 -0
- package/ui/UIElement.d.ts +2 -0
- package/ui/UIElement.js +19 -0
- package/ui/UIElement.js.map +1 -0
- package/ui/UILayout.d.ts +1 -0
- package/ui/UILayout.js +19 -0
- package/ui/UILayout.js.map +1 -0
- package/ui/UIRenderer.d.ts +2 -0
- package/ui/UIRenderer.js +13 -0
- package/ui/UIRenderer.js.map +1 -0
- package/ui/UIView.d.ts +2 -0
- package/ui/UIView.js +25 -0
- package/ui/UIView.js.map +1 -0
- package/ui/elements/AccordionElement.d.ts +27 -0
- package/ui/elements/AccordionElement.js +110 -0
- package/ui/elements/AccordionElement.js.map +1 -0
- package/ui/elements/ButtonElement.d.ts +24 -0
- package/ui/elements/ButtonElement.js +105 -0
- package/ui/elements/ButtonElement.js.map +1 -0
- package/ui/elements/ButtonGroupElement.d.ts +6 -0
- package/ui/elements/ButtonGroupElement.js +67 -0
- package/ui/elements/ButtonGroupElement.js.map +1 -0
- package/ui/elements/GenericElement.d.ts +1 -0
- package/ui/elements/GenericElement.js +18 -0
- package/ui/elements/GenericElement.js.map +1 -0
- package/ui/elements/LabelElement.d.ts +16 -0
- package/ui/elements/LabelElement.js +60 -0
- package/ui/elements/LabelElement.js.map +1 -0
- package/ui/elements/NavigationMenuElement.d.ts +33 -0
- package/ui/elements/NavigationMenuElement.js +177 -0
- package/ui/elements/NavigationMenuElement.js.map +1 -0
- package/ui/elements/PanelElement.d.ts +3 -0
- package/ui/elements/PanelElement.js +33 -0
- package/ui/elements/PanelElement.js.map +1 -0
- package/ui/elements/PlaceholderElement.d.ts +6 -0
- package/ui/elements/PlaceholderElement.js +44 -0
- package/ui/elements/PlaceholderElement.js.map +1 -0
- package/ui/elements/SmallButtonElement.d.ts +6 -0
- package/ui/elements/SmallButtonElement.js +64 -0
- package/ui/elements/SmallButtonElement.js.map +1 -0
- package/ui/elements/TypographyElement.d.ts +13 -0
- package/ui/elements/TypographyElement.js +67 -0
- package/ui/elements/TypographyElement.js.map +1 -0
- package/ui/elements/ViewElement.d.ts +1 -0
- package/ui/elements/ViewElement.js +18 -0
- package/ui/elements/ViewElement.js.map +1 -0
- package/ui/elements/form/DynamicFieldsetElement/DynamicFieldsetRowElement.d.ts +6 -0
- package/ui/elements/form/DynamicFieldsetElement/DynamicFieldsetRowElement.js +60 -0
- package/ui/elements/form/DynamicFieldsetElement/DynamicFieldsetRowElement.js.map +1 -0
- package/ui/elements/form/DynamicFieldsetElement.d.ts +43 -0
- package/ui/elements/form/DynamicFieldsetElement.js +158 -0
- package/ui/elements/form/DynamicFieldsetElement.js.map +1 -0
- package/ui/elements/form/FileManagerElement/EmptyStateElement.d.ts +4 -0
- package/ui/elements/form/FileManagerElement/EmptyStateElement.js +41 -0
- package/ui/elements/form/FileManagerElement/EmptyStateElement.js.map +1 -0
- package/ui/elements/form/FileManagerElement/EmptyStateElementRenderer.d.ts +7 -0
- package/ui/elements/form/FileManagerElement/EmptyStateElementRenderer.js +95 -0
- package/ui/elements/form/FileManagerElement/EmptyStateElementRenderer.js.map +1 -0
- package/ui/elements/form/FileManagerElement/FileManagerElementRenderer.d.ts +13 -0
- package/ui/elements/form/FileManagerElement/FileManagerElementRenderer.js +123 -0
- package/ui/elements/form/FileManagerElement/FileManagerElementRenderer.js.map +1 -0
- package/ui/elements/form/FileManagerElement/styled.d.ts +20 -0
- package/ui/elements/form/FileManagerElement/styled.js +120 -0
- package/ui/elements/form/FileManagerElement/styled.js.map +1 -0
- package/ui/elements/form/FileManagerElement.d.ts +24 -0
- package/ui/elements/form/FileManagerElement.js +108 -0
- package/ui/elements/form/FileManagerElement.js.map +1 -0
- package/ui/elements/form/FormElement.d.ts +21 -0
- package/ui/elements/form/FormElement.js +66 -0
- package/ui/elements/form/FormElement.js.map +1 -0
- package/ui/elements/form/FormFieldElement.d.ts +56 -0
- package/ui/elements/form/FormFieldElement.js +206 -0
- package/ui/elements/form/FormFieldElement.js.map +1 -0
- package/ui/elements/form/HiddenElement.d.ts +6 -0
- package/ui/elements/form/HiddenElement.js +64 -0
- package/ui/elements/form/HiddenElement.js.map +1 -0
- package/ui/elements/form/InputElement.d.ts +7 -0
- package/ui/elements/form/InputElement.js +72 -0
- package/ui/elements/form/InputElement.js.map +1 -0
- package/ui/elements/form/PasswordElement.d.ts +6 -0
- package/ui/elements/form/PasswordElement.js +66 -0
- package/ui/elements/form/PasswordElement.js.map +1 -0
- package/ui/elements/form/README.md +2 -0
- package/ui/elements/form/SelectElement.d.ts +15 -0
- package/ui/elements/form/SelectElement.js +87 -0
- package/ui/elements/form/SelectElement.js.map +1 -0
- package/ui/elements/form/TextareaElement.d.ts +15 -0
- package/ui/elements/form/TextareaElement.js +72 -0
- package/ui/elements/form/TextareaElement.js.map +1 -0
- package/ui/views/AdminView/ContentElement.d.ts +4 -0
- package/ui/views/AdminView/ContentElement.js +78 -0
- package/ui/views/AdminView/ContentElement.js.map +1 -0
- package/ui/views/AdminView/HeaderElement.d.ts +13 -0
- package/ui/views/AdminView/HeaderElement.js +144 -0
- package/ui/views/AdminView/HeaderElement.js.map +1 -0
- package/ui/views/AdminView/HeaderSectionCenterElement.d.ts +6 -0
- package/ui/views/AdminView/HeaderSectionCenterElement.js +62 -0
- package/ui/views/AdminView/HeaderSectionCenterElement.js.map +1 -0
- package/ui/views/AdminView/HeaderSectionLeftElement.d.ts +6 -0
- package/ui/views/AdminView/HeaderSectionLeftElement.js +62 -0
- package/ui/views/AdminView/HeaderSectionLeftElement.js.map +1 -0
- package/ui/views/AdminView/HeaderSectionRightElement.d.ts +6 -0
- package/ui/views/AdminView/HeaderSectionRightElement.js +62 -0
- package/ui/views/AdminView/HeaderSectionRightElement.js.map +1 -0
- package/ui/views/AdminView/components/Dialog.d.ts +2 -0
- package/ui/views/AdminView/components/Dialog.js +57 -0
- package/ui/views/AdminView/components/Dialog.js.map +1 -0
- package/ui/views/AdminView/components/Hamburger.d.ts +3 -0
- package/ui/views/AdminView/components/Hamburger.js +39 -0
- package/ui/views/AdminView/components/Hamburger.js.map +1 -0
- package/ui/views/AdminView/components/Snackbar.d.ts +3 -0
- package/ui/views/AdminView/components/Snackbar.js +41 -0
- package/ui/views/AdminView/components/Snackbar.js.map +1 -0
- package/ui/views/FormView/FormContainerElement.d.ts +12 -0
- package/ui/views/FormView/FormContainerElement.js +71 -0
- package/ui/views/FormView/FormContainerElement.js.map +1 -0
- package/ui/views/FormView/FormContentElement.d.ts +3 -0
- package/ui/views/FormView/FormContentElement.js +33 -0
- package/ui/views/FormView/FormContentElement.js.map +1 -0
- package/ui/views/FormView/FormFooterElement.d.ts +6 -0
- package/ui/views/FormView/FormFooterElement.js +68 -0
- package/ui/views/FormView/FormFooterElement.js.map +1 -0
- package/ui/views/FormView/FormHeaderElement.d.ts +14 -0
- package/ui/views/FormView/FormHeaderElement.js +103 -0
- package/ui/views/FormView/FormHeaderElement.js.map +1 -0
- package/ui/views/FormView.d.ts +40 -0
- package/ui/views/FormView.js +208 -0
- package/ui/views/FormView.js.map +1 -0
- package/ui/views/OverlayView/ContentElement.d.ts +6 -0
- package/ui/views/OverlayView/ContentElement.js +61 -0
- package/ui/views/OverlayView/ContentElement.js.map +1 -0
- package/ui/views/OverlayView/HeaderElement.d.ts +24 -0
- package/ui/views/OverlayView/HeaderElement.js +134 -0
- package/ui/views/OverlayView/HeaderElement.js.map +1 -0
- package/ui/views/OverlayView/HeaderTitleElement.d.ts +13 -0
- package/ui/views/OverlayView/HeaderTitleElement.js +73 -0
- package/ui/views/OverlayView/HeaderTitleElement.js.map +1 -0
- package/ui/views/OverlayView/useOverlayView.d.ts +5 -0
- package/ui/views/OverlayView/useOverlayView.js +54 -0
- package/ui/views/OverlayView/useOverlayView.js.map +1 -0
- package/ui/views/OverlayView.d.ts +29 -0
- package/ui/views/OverlayView.js +199 -0
- package/ui/views/OverlayView.js.map +1 -0
- package/ui/views/SplitView/SplitViewPanelElement.d.ts +11 -0
- package/ui/views/SplitView/SplitViewPanelElement.js +91 -0
- package/ui/views/SplitView/SplitViewPanelElement.js.map +1 -0
- package/ui/views/SplitView.d.ts +21 -0
- package/ui/views/SplitView.js +162 -0
- package/ui/views/SplitView.js.map +1 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) Webiny
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# @webiny/app-admin
|
|
2
|
+
[](https://www.npmjs.com/package/@webiny/app-admin)
|
|
3
|
+
[](https://www.npmjs.com/package/@webiny/app-admin)
|
|
4
|
+
[](https://github.com/prettier/prettier)
|
|
5
|
+
[](http://makeapullrequest.com)
|
|
6
|
+
|
|
7
|
+
A collection of plugins that together form a complete admin interface,
|
|
8
|
+
customizable and extensible with Webiny apps and plugins.
|
|
9
|
+
|
|
10
|
+
For more information, please visit
|
|
11
|
+
[the official docs](https://docs.webiny.com/docs/developer-tutorials/admin-app-overview).
|
|
12
|
+
|
|
13
|
+
## Install
|
|
14
|
+
```
|
|
15
|
+
npm install --save @webiny/app-admin
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
Or if you prefer yarn:
|
|
19
|
+
```
|
|
20
|
+
yarn add @webiny/app-admin
|
|
21
|
+
```
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" width="18px" height="18px">
|
|
2
|
+
<path d="M0 0h24v24H0V0z" fill="none"/><path d="M18 13h-5v5c0 .55-.45 1-1 1s-1-.45-1-1v-5H6c-.55 0-1-.45-1-1s.45-1 1-1h5V6c0-.55.45-1 1-1s1 .45 1 1v5h5c.55 0 1 .45 1 1s-.45 1-1 1z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" width="24px" height="24px">
|
|
2
|
+
<path d="M0 0h24v24H0V0z" fill="none"/>
|
|
3
|
+
<path d="M8.71 11.71l2.59 2.59c.39.39 1.02.39 1.41 0l2.59-2.59c.63-.63.18-1.71-.71-1.71H9.41c-.89 0-1.33 1.08-.7 1.71z"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M16.5 6.75v10.58c0 2.09-1.53 3.95-3.61 4.15-2.39.23-4.39-1.64-4.39-3.98V5.14c0-1.31.94-2.5 2.24-2.63 1.5-.15 2.76 1.02 2.76 2.49v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6.75c0-.41-.34-.75-.75-.75s-.75.34-.75.75v8.61c0 1.31.94 2.5 2.24 2.63 1.5.15 2.76-1.02 2.76-2.49V5.17c0-2.09-1.53-3.95-3.61-4.15C9.01.79 7 2.66 7 5v12.27c0 2.87 2.1 5.44 4.96 5.71 3.29.3 6.04-2.26 6.04-5.48V6.75c0-.41-.34-.75-.75-.75s-.75.34-.75.75z"/></svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
2
|
+
<path d="M18 16v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-5 0h-2v-2h2v2zm0-4h-2V8h2v4zm-1 10c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2z"/>
|
|
3
|
+
<path fill="none" d="M0 0h24v24H0V0z"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg"
|
|
2
|
+
viewBox="0 0 24 24"
|
|
3
|
+
fill="currentColor"
|
|
4
|
+
width="24px"
|
|
5
|
+
height="24px"
|
|
6
|
+
>
|
|
7
|
+
<g><path d="M0,0h24 M24,24H0" fill="none"/><path d="M4.25,5.61C6.57,8.59,10,13,10,13v5c0,1.1,0.9,2,2,2h0c1.1,0,2-0.9,2-2v-5c0,0,3.43-4.41,5.75-7.39 C20.26,4.95,19.79,4,18.95,4H5.04C4.21,4,3.74,4.95,4.25,5.61z"/><path d="M0,0h24v24H0V0z" fill="none"/></g>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg aria-hidden="true" data-prefix="fab" data-icon="github" class="svg-inline--fa fa-github fa-w-16" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path fill="currentColor" d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" height="24" viewBox="0 0 24 24" width="24"><g><rect fill="none" height="24" width="24"/></g><g><g><g><path d="M6,14l3,3v5h6v-5l3-3V9H6V14z M11,2h2v3h-2V2z M3.5,5.88l1.41-1.41l2.12,2.12L5.62,8L3.5,5.88z M16.96,6.59l2.12-2.12 l1.41,1.41L18.38,8L16.96,6.59z"/></g></g></g></svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="21px" height="21px" viewBox="0 0 21 21" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<!-- Generator: Sketch 51.1 (57501) - http://www.bohemiancoding.com/sketch -->
|
|
4
|
+
<title>discourse-brands</title>
|
|
5
|
+
<desc>Created with Sketch.</desc>
|
|
6
|
+
<defs></defs>
|
|
7
|
+
<g id="Webiny---Navigation" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
8
|
+
<g id="Navigation---Opened" transform="translate(-17.000000, -638.000000)" fill="#757575" fill-rule="nonzero">
|
|
9
|
+
<g id="Community" transform="translate(17.000000, 638.000000)">
|
|
10
|
+
<g id="discourse-brands">
|
|
11
|
+
<path d="M10.5890625,0 C4.8421875,0 0,4.6171875 0,10.3171875 C0,10.5 0.0046875,21 0.0046875,21 L10.5890625,20.990625 C16.340625,20.990625 21,16.1953125 21,10.4953125 C21,4.7953125 16.340625,0 10.5890625,0 Z M10.5,16.5 C9.590625,16.5 8.7234375,16.2984375 7.95,15.9328125 L4.1484375,16.875 L5.221875,13.359375 C4.7625,12.5109375 4.5,11.5359375 4.5,10.5 C4.5,7.1859375 7.1859375,4.5 10.5,4.5 C13.8140625,4.5 16.5,7.1859375 16.5,10.5 C16.5,13.8140625 13.8140625,16.5 10.5,16.5 Z" id="Shape"></path>
|
|
12
|
+
</g>
|
|
13
|
+
</g>
|
|
14
|
+
</g>
|
|
15
|
+
</g>
|
|
16
|
+
</svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="20px" height="22px" viewBox="0 0 20 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<!-- Generator: Sketch 51.1 (57501) - http://www.bohemiancoding.com/sketch -->
|
|
4
|
+
<title>Shape</title>
|
|
5
|
+
<desc>Created with Sketch.</desc>
|
|
6
|
+
<defs></defs>
|
|
7
|
+
<g id="Webiny---Navigation" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
8
|
+
<g id="Navigation---Opened" transform="translate(-18.000000, -602.000000)" fill="#757575" fill-rule="nonzero">
|
|
9
|
+
<g id="Docs" transform="translate(18.000000, 602.000000)">
|
|
10
|
+
<g id="book-solid">
|
|
11
|
+
<path d="M20,15.46875 L20,1.03125 C20,0.459765625 19.5223214,0 18.9285714,0 L4.28571429,0 C1.91964286,0 0,1.84765625 0,4.125 L0,17.875 C0,20.1523438 1.91964286,22 4.28571429,22 L18.9285714,22 C19.5223214,22 20,21.5402344 20,20.96875 L20,20.28125 C20,19.9589844 19.84375,19.6667969 19.6026786,19.4777344 C19.4151786,18.8160156 19.4151786,16.9296875 19.6026786,16.2679688 C19.84375,16.0832031 20,15.7910156 20,15.46875 Z M5.71428571,5.7578125 C5.71428571,5.61601563 5.83482143,5.5 5.98214286,5.5 L15.4464286,5.5 C15.59375,5.5 15.7142857,5.61601563 15.7142857,5.7578125 L15.7142857,6.6171875 C15.7142857,6.75898438 15.59375,6.875 15.4464286,6.875 L5.98214286,6.875 C5.83482143,6.875 5.71428571,6.75898438 5.71428571,6.6171875 L5.71428571,5.7578125 Z M5.71428571,8.5078125 C5.71428571,8.36601563 5.83482143,8.25 5.98214286,8.25 L15.4464286,8.25 C15.59375,8.25 15.7142857,8.36601563 15.7142857,8.5078125 L15.7142857,9.3671875 C15.7142857,9.50898438 15.59375,9.625 15.4464286,9.625 L5.98214286,9.625 C5.83482143,9.625 5.71428571,9.50898438 5.71428571,9.3671875 L5.71428571,8.5078125 Z M17.0267857,19.25 L4.28571429,19.25 C3.49553571,19.25 2.85714286,18.6355469 2.85714286,17.875 C2.85714286,17.11875 3.5,16.5 4.28571429,16.5 L17.0267857,16.5 C16.9419643,17.2347656 16.9419643,18.5152344 17.0267857,19.25 Z" id="Shape"></path>
|
|
12
|
+
</g>
|
|
13
|
+
</g>
|
|
14
|
+
</g>
|
|
15
|
+
</g>
|
|
16
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black" width="24px" height="24px"><path d="M0 0h24v24H0z" fill="none"/><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black" width="24px" height="24px"><path d="M0 0h24v24H0z" fill="none"/><path d="M6 2c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6H6zm7 7V3.5L18.5 9H13z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black" width="24px" height="24px"><path d="M0 0h24v24H0z" fill="none"/><path d="M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0z" fill="none"/><path d="M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84L22 12l-4.37-6.16z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0V0z"/><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z"/></svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
|
4
|
+
height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
|
5
|
+
<g id="Bounding_Boxes">
|
|
6
|
+
<g id="ui_x5F_spec_x5F_header_copy_3" display="none">
|
|
7
|
+
</g>
|
|
8
|
+
<path fill="none" d="M0,0h24v24H0V0z"/>
|
|
9
|
+
</g>
|
|
10
|
+
<g id="Rounded_1_">
|
|
11
|
+
<g id="ui_x5F_spec_x5F_header_copy_6" display="none">
|
|
12
|
+
</g>
|
|
13
|
+
<path d="M18,13h-5v5c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1v-5H6c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h5V6c0-0.55,0.45-1,1-1h0
|
|
14
|
+
c0.55,0,1,0.45,1,1v5h5c0.55,0,1,0.45,1,1v0C19,12.55,18.55,13,18,13z"/>
|
|
15
|
+
</g>
|
|
16
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0V0z"/><path d="M8.71 11.71l2.59 2.59c.39.39 1.02.39 1.41 0l2.59-2.59c.63-.63.18-1.71-.71-1.71H9.41c-.89 0-1.33 1.08-.7 1.71z"/></svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
|
4
|
+
height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
|
5
|
+
<g id="Bounding_Boxes">
|
|
6
|
+
<path fill="none" d="M0,0h24v24H0V0z"/>
|
|
7
|
+
</g>
|
|
8
|
+
<g id="Rounded">
|
|
9
|
+
<path d="M9.29,6.71L9.29,6.71c-0.39,0.39-0.39,1.02,0,1.41L13.17,12l-3.88,3.88c-0.39,0.39-0.39,1.02,0,1.41l0,0
|
|
10
|
+
c0.39,0.39,1.02,0.39,1.41,0l4.59-4.59c0.39-0.39,0.39-1.02,0-1.41l-4.59-4.59C10.32,6.32,9.68,6.32,9.29,6.71z"/>
|
|
11
|
+
</g>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
|
4
|
+
height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
|
5
|
+
<g id="Header_x2F_BG" display="none">
|
|
6
|
+
<rect x="-402" y="-358" display="inline" fill="#F1F1F2" width="520" height="520"/>
|
|
7
|
+
</g>
|
|
8
|
+
<g id="Bounding_Boxes">
|
|
9
|
+
<g id="ui_x5F_spec_x5F_header_copy_3">
|
|
10
|
+
</g>
|
|
11
|
+
<path fill="none" d="M0,0h24v24H0V0z"/>
|
|
12
|
+
</g>
|
|
13
|
+
<g id="Rounded">
|
|
14
|
+
<g id="ui_x5F_spec_x5F_header_copy_5">
|
|
15
|
+
</g>
|
|
16
|
+
<path d="M20,2H4.01c-1.1,0-2,0.9-2,2v18L6,18h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M13,14h-2v-2h2V14z M13,9
|
|
17
|
+
c0,0.55-0.45,1-1,1s-1-0.45-1-1V7c0-0.55,0.45-1,1-1s1,0.45,1,1V9z"/>
|
|
18
|
+
</g>
|
|
19
|
+
<g id="Sharp" display="none">
|
|
20
|
+
<g id="ui_x5F_spec_x5F_header_copy_4" display="inline">
|
|
21
|
+
</g>
|
|
22
|
+
<path display="inline" d="M22,2H2.01L2,22l4-4h16V2z M13,14h-2v-2h2V14z M13,10h-2V6h2V10z"/>
|
|
23
|
+
</g>
|
|
24
|
+
<g id="Outline" display="none">
|
|
25
|
+
<g id="ui_x5F_spec_x5F_header" display="inline">
|
|
26
|
+
</g>
|
|
27
|
+
<g display="inline">
|
|
28
|
+
<path d="M20,2H4C2.9,2,2.01,2.9,2.01,4L2,22l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H6H5.17l-0.59,0.59L4,17.17V4h16
|
|
29
|
+
V16z"/>
|
|
30
|
+
<rect x="11" y="12" width="2" height="2"/>
|
|
31
|
+
<rect x="11" y="6" width="2" height="4"/>
|
|
32
|
+
</g>
|
|
33
|
+
</g>
|
|
34
|
+
<g id="Duotone" display="none">
|
|
35
|
+
<g id="ui_x5F_spec_x5F_header_copy_2" display="inline">
|
|
36
|
+
</g>
|
|
37
|
+
<g display="inline">
|
|
38
|
+
<path opacity="0.3" d="M4,17.17L5.17,16H6h14V4H4V17.17z M11,6h2v4h-2V6z M11,12h2v2h-2V12z"/>
|
|
39
|
+
<g>
|
|
40
|
+
<path d="M20,2H4C2.9,2,2.01,2.9,2.01,4L2,22l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H6H5.17L4,17.17V4h16V16z"/>
|
|
41
|
+
<rect x="11" y="12" width="2" height="2"/>
|
|
42
|
+
<rect x="11" y="6" width="2" height="4"/>
|
|
43
|
+
</g>
|
|
44
|
+
</g>
|
|
45
|
+
</g>
|
|
46
|
+
<g id="Fill" display="none">
|
|
47
|
+
<g id="ui_x5F_spec_x5F_header_copy" display="inline">
|
|
48
|
+
</g>
|
|
49
|
+
<path display="inline" d="M20,2H4C2.9,2,2.01,2.9,2.01,4L2,22l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M13,14h-2v-2h2V14z
|
|
50
|
+
M13,10h-2V6h2V10z"/>
|
|
51
|
+
</g>
|
|
52
|
+
<g id="nyt_x5F_exporter_x5F_info" display="none">
|
|
53
|
+
</g>
|
|
54
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black" width="24px" height="24px"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-4h2v2h-2zm1.61-9.96c-2.06-.3-3.88.97-4.43 2.79-.18.58.26 1.17.87 1.17h.2c.41 0 .74-.29.88-.67.32-.89 1.27-1.5 2.3-1.28.95.2 1.65 1.13 1.57 2.1-.1 1.34-1.62 1.63-2.45 2.88 0 .01-.01.01-.01.02-.01.02-.02.03-.03.05-.09.15-.18.32-.25.5-.01.03-.03.05-.04.08-.01.02-.01.04-.02.07-.12.34-.2.75-.2 1.25h2c0-.42.11-.77.28-1.07.02-.03.03-.06.05-.09.08-.14.18-.27.28-.39.01-.01.02-.03.03-.04.1-.12.21-.23.33-.34.96-.91 2.26-1.65 1.99-3.56-.24-1.74-1.61-3.21-3.35-3.47z"/></svg>
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
|
4
|
+
height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
|
5
|
+
<g id="Header_x2F_BG" display="none">
|
|
6
|
+
<rect x="-314" y="-50" display="inline" fill="#F1F1F2" width="520" height="520"/>
|
|
7
|
+
</g>
|
|
8
|
+
<g id="Bounding_Boxes">
|
|
9
|
+
<g id="ui_x5F_spec_x5F_header_copy_3" display="none">
|
|
10
|
+
</g>
|
|
11
|
+
<path fill="none" d="M24,0H0v24h24V0z"/>
|
|
12
|
+
</g>
|
|
13
|
+
<g id="Rounded">
|
|
14
|
+
<g id="ui_x5F_spec_x5F_header_copy_5" display="none">
|
|
15
|
+
</g>
|
|
16
|
+
<path d="M6.34,7.93c-3.12,3.12-3.12,8.19,0,11.31C7.9,20.8,9.95,21.58,12,21.58s4.1-0.78,5.66-2.34c3.12-3.12,3.12-8.19,0-11.31
|
|
17
|
+
l-4.95-4.95c-0.39-0.39-1.02-0.39-1.41,0L6.34,7.93z M12,19.59c-1.6,0-3.11-0.62-4.24-1.76C6.62,16.69,6,15.19,6,13.59
|
|
18
|
+
s0.62-3.11,1.76-4.24L12,5.1V19.59z"/>
|
|
19
|
+
</g>
|
|
20
|
+
<g id="Sharp" display="none">
|
|
21
|
+
<g id="ui_x5F_spec_x5F_header_copy_4">
|
|
22
|
+
</g>
|
|
23
|
+
<path display="inline" d="M17.66,7.93L12,2.27L6.34,7.93c-3.12,3.12-3.12,8.19,0,11.31C7.9,20.8,9.95,21.58,12,21.58
|
|
24
|
+
s4.1-0.78,5.66-2.34C20.78,16.12,20.78,11.05,17.66,7.93z M12,19.59c-1.6,0-3.11-0.62-4.24-1.76C6.62,16.69,6,15.19,6,13.59
|
|
25
|
+
s0.62-3.11,1.76-4.24L12,5.1V19.59z"/>
|
|
26
|
+
</g>
|
|
27
|
+
<g id="Outline" display="none">
|
|
28
|
+
<g id="ui_x5F_spec_x5F_header">
|
|
29
|
+
</g>
|
|
30
|
+
<path display="inline" d="M17.66,7.93L12,2.27L6.34,7.93c-3.12,3.12-3.12,8.19,0,11.31C7.9,20.8,9.95,21.58,12,21.58
|
|
31
|
+
s4.1-0.78,5.66-2.34C20.78,16.12,20.78,11.05,17.66,7.93z M12,19.59c-1.6,0-3.11-0.62-4.24-1.76C6.62,16.69,6,15.19,6,13.59
|
|
32
|
+
s0.62-3.11,1.76-4.24L12,5.1V19.59z"/>
|
|
33
|
+
</g>
|
|
34
|
+
<g id="Duotone" display="none">
|
|
35
|
+
<g id="ui_x5F_spec_x5F_header_copy_2">
|
|
36
|
+
</g>
|
|
37
|
+
<g display="inline">
|
|
38
|
+
<path opacity="0.3" d="M6,13.59c0,1.6,0.62,3.1,1.76,4.24c1.13,1.14,2.64,1.76,4.24,1.76V5.1L7.76,9.35
|
|
39
|
+
C6.62,10.48,6,11.99,6,13.59z"/>
|
|
40
|
+
<path d="M17.66,7.93L12,2.27L6.34,7.93c-3.12,3.12-3.12,8.19,0,11.31C7.9,20.8,9.95,21.58,12,21.58s4.1-0.78,5.66-2.34
|
|
41
|
+
C20.78,16.12,20.78,11.05,17.66,7.93z M12,19.59c-1.6,0-3.11-0.62-4.24-1.76C6.62,16.69,6,15.19,6,13.59
|
|
42
|
+
c0-1.6,0.62-3.11,1.76-4.24L12,5.1V19.59z"/>
|
|
43
|
+
</g>
|
|
44
|
+
</g>
|
|
45
|
+
<g id="Material" display="none">
|
|
46
|
+
<g id="ui_x5F_spec_x5F_header_copy">
|
|
47
|
+
</g>
|
|
48
|
+
<path display="inline" d="M17.66,7.93L12,2.27L6.34,7.93c-3.12,3.12-3.12,8.19,0,11.31C7.9,20.8,9.95,21.58,12,21.58
|
|
49
|
+
s4.1-0.78,5.66-2.34C20.78,16.12,20.78,11.05,17.66,7.93z M12,19.59c-1.6,0-3.11-0.62-4.24-1.76C6.62,16.69,6,15.19,6,13.59
|
|
50
|
+
s0.62-3.11,1.76-4.24L12,5.1V19.59z"/>
|
|
51
|
+
</g>
|
|
52
|
+
</svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
|
4
|
+
height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
|
5
|
+
<g id="Bounding_Boxes" display="none">
|
|
6
|
+
<g id="ui_x5F_spec_x5F_header_copy_3" display="inline">
|
|
7
|
+
</g>
|
|
8
|
+
<path display="inline" fill="none" d="M0,0h24v24H0V0z"/>
|
|
9
|
+
</g>
|
|
10
|
+
<g id="Rounded">
|
|
11
|
+
<g id="ui_x5F_spec_x5F_header_copy_6">
|
|
12
|
+
</g>
|
|
13
|
+
<path d="M8.12,9.29L12,13.17l3.88-3.88c0.39-0.39,1.02-0.39,1.41,0l0,0c0.39,0.39,0.39,1.02,0,1.41l-4.59,4.59
|
|
14
|
+
c-0.39,0.39-1.02,0.39-1.41,0l-4.59-4.59c-0.39-0.39-0.39-1.02,0-1.41l0,0C7.09,8.91,7.73,8.9,8.12,9.29z"/>
|
|
15
|
+
</g>
|
|
16
|
+
</svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
|
4
|
+
height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
|
5
|
+
<g id="Bounding_Boxes" display="none">
|
|
6
|
+
<g id="ui_x5F_spec_x5F_header_copy_3" display="inline">
|
|
7
|
+
</g>
|
|
8
|
+
<path display="inline" fill="none" d="M0,0h24v24H0V0z"/>
|
|
9
|
+
</g>
|
|
10
|
+
<g id="Rounded">
|
|
11
|
+
<g id="ui_x5F_spec_x5F_header_copy_6">
|
|
12
|
+
</g>
|
|
13
|
+
<path d="M8.12,14.71L12,10.83l3.88,3.88c0.39,0.39,1.02,0.39,1.41,0l0,0c0.39-0.39,0.39-1.02,0-1.41l-4.59-4.59
|
|
14
|
+
c-0.39-0.39-1.02-0.39-1.41,0l-4.59,4.59c-0.39,0.39-0.39,1.02,0,1.41l0,0C7.09,15.09,7.73,15.1,8.12,14.71z"/>
|
|
15
|
+
</g>
|
|
16
|
+
</svg>
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
|
4
|
+
height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
|
5
|
+
<g id="Header_x2F_BG" display="none">
|
|
6
|
+
<rect x="-446" y="-94" display="inline" fill="#F1F1F2" width="520" height="520"/>
|
|
7
|
+
</g>
|
|
8
|
+
<g id="Bounding_Boxes">
|
|
9
|
+
<g id="ui_x5F_spec_x5F_header_copy_3" display="none">
|
|
10
|
+
</g>
|
|
11
|
+
<path fill="none" d="M0,0h24v24H0V0z"/>
|
|
12
|
+
</g>
|
|
13
|
+
<g id="Rounded">
|
|
14
|
+
<g id="ui_x5F_spec_x5F_header_copy_5" display="none">
|
|
15
|
+
</g>
|
|
16
|
+
<g>
|
|
17
|
+
<path d="M12,13c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2c1.1,0,2-0.9,2-2C14,13.9,13.1,13,12,13z"/>
|
|
18
|
+
<path d="M18,8h-1V6c0-2.76-2.24-5-5-5C9.72,1,7.73,2.54,7.16,4.75C7.02,5.29,7.34,5.83,7.88,5.97c0.53,0.14,1.08-0.18,1.22-0.72
|
|
19
|
+
C9.44,3.93,10.63,3,12,3c1.65,0,3,1.35,3,3v2H6c-1.1,0-2,0.9-2,2v10c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V10C20,8.9,19.1,8,18,8z
|
|
20
|
+
M18,19c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1v-8c0-0.55,0.45-1,1-1h10c0.55,0,1,0.45,1,1V19z"/>
|
|
21
|
+
</g>
|
|
22
|
+
</g>
|
|
23
|
+
<g id="Sharp" display="none">
|
|
24
|
+
<g id="ui_x5F_spec_x5F_header_copy_4">
|
|
25
|
+
</g>
|
|
26
|
+
<g display="inline">
|
|
27
|
+
<path d="M20,8h-3l0-1.79c0-2.61-1.91-4.94-4.51-5.19C9.51,0.74,7,3.08,7,6v0h2v0c0-1.13,0.6-2.24,1.64-2.7C12.85,2.31,15,3.9,15,6
|
|
28
|
+
v2H4v14h16V8z M18,20H6V10h12V20z"/>
|
|
29
|
+
<path d="M12,17c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2c-1.1,0-2,0.9-2,2C10,16.1,10.9,17,12,17z"/>
|
|
30
|
+
</g>
|
|
31
|
+
</g>
|
|
32
|
+
<g id="Outline" display="none">
|
|
33
|
+
<g id="ui_x5F_spec_x5F_header">
|
|
34
|
+
</g>
|
|
35
|
+
<g display="inline">
|
|
36
|
+
<path d="M18,8h-1V6c0-2.76-2.24-5-5-5S7,3.24,7,6v0h2v0c0-1.66,1.34-3,3-3s3,1.34,3,3v2H6c-1.1,0-2,0.9-2,2v10c0,1.1,0.9,2,2,2h12
|
|
37
|
+
c1.1,0,2-0.9,2-2V10C20,8.9,19.1,8,18,8z M18,20H6V10h12V20z"/>
|
|
38
|
+
<path d="M12,17c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2c-1.1,0-2,0.9-2,2C10,16.1,10.9,17,12,17z"/>
|
|
39
|
+
</g>
|
|
40
|
+
</g>
|
|
41
|
+
<g id="Duotone" display="none">
|
|
42
|
+
<g id="ui_x5F_spec_x5F_header_copy_2">
|
|
43
|
+
</g>
|
|
44
|
+
<g display="inline">
|
|
45
|
+
<path opacity="0.3" d="M6,20h12V10H6V20z M12,13c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2C10,13.9,10.9,13,12,13z"/>
|
|
46
|
+
<path d="M18,8h-1V6c0-2.76-2.24-5-5-5S7,3.24,7,6v0h2v0c0-1.66,1.34-3,3-3s3,1.34,3,3v2H6c-1.1,0-2,0.9-2,2v10c0,1.1,0.9,2,2,2h12
|
|
47
|
+
c1.1,0,2-0.9,2-2V10C20,8.9,19.1,8,18,8z M18,20H6V10h12V20z"/>
|
|
48
|
+
<path d="M12,17c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2c-1.1,0-2,0.9-2,2C10,16.1,10.9,17,12,17z"/>
|
|
49
|
+
</g>
|
|
50
|
+
</g>
|
|
51
|
+
<g id="Material" display="none">
|
|
52
|
+
<g id="ui_x5F_spec_x5F_header_copy">
|
|
53
|
+
</g>
|
|
54
|
+
<g display="inline">
|
|
55
|
+
<path d="M18,8h-1V6c0-2.76-2.24-5-5-5S7,3.24,7,6v0h2v0c0-1.66,1.34-3,3-3s3,1.34,3,3v2H6c-1.1,0-2,0.9-2,2v10c0,1.1,0.9,2,2,2h12
|
|
56
|
+
c1.1,0,2-0.9,2-2V10C20,8.9,19.1,8,18,8z M18,20H6V10h12V20z"/>
|
|
57
|
+
<path d="M12,17c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2c-1.1,0-2,0.9-2,2C10,16.1,10.9,17,12,17z"/>
|
|
58
|
+
</g>
|
|
59
|
+
</g>
|
|
60
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
|
4
|
+
height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
|
5
|
+
<g id="Bounding_Boxes">
|
|
6
|
+
<path fill="none" d="M0,0h24v24H0V0z"/>
|
|
7
|
+
</g>
|
|
8
|
+
<g id="Rounded">
|
|
9
|
+
<path d="M12,8c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S10.9,8,12,8z M12,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S13.1,10,12,10z
|
|
10
|
+
M12,16c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S13.1,16,12,16z"/>
|
|
11
|
+
</g>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
|
4
|
+
height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
|
5
|
+
<g id="Header_x2F_BG" display="none">
|
|
6
|
+
<rect x="-94" y="-182" display="inline" fill="#F1F1F2" width="520" height="520"/>
|
|
7
|
+
</g>
|
|
8
|
+
<g id="Bounding_Boxes">
|
|
9
|
+
<g id="ui_x5F_spec_x5F_header_copy_3" display="none">
|
|
10
|
+
</g>
|
|
11
|
+
<path fill="none" d="M0,0h24v24H0V0z"/>
|
|
12
|
+
</g>
|
|
13
|
+
<g id="Rounded">
|
|
14
|
+
<g id="ui_x5F_spec_x5F_header_copy_5" display="none">
|
|
15
|
+
</g>
|
|
16
|
+
<path d="M18,19H6c-0.55,0-1-0.45-1-1V6c0-0.55,0.45-1,1-1h5c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H5C3.89,3,3,3.9,3,5v14
|
|
17
|
+
c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v5C19,18.55,18.55,19,18,19z M14,4L14,4
|
|
18
|
+
c0,0.55,0.45,1,1,1h2.59l-9.13,9.13c-0.39,0.39-0.39,1.02,0,1.41l0,0c0.39,0.39,1.02,0.39,1.41,0L19,6.41V9c0,0.55,0.45,1,1,1h0
|
|
19
|
+
c0.55,0,1-0.45,1-1V4c0-0.55-0.45-1-1-1h-5C14.45,3,14,3.45,14,4z"/>
|
|
20
|
+
</g>
|
|
21
|
+
<g id="Sharp" display="none">
|
|
22
|
+
<g id="ui_x5F_spec_x5F_header_copy_4">
|
|
23
|
+
</g>
|
|
24
|
+
<path display="inline" d="M19,19H5V5h7V3H3v18h18v-9h-2V19z M14,3v2h3.59l-9.83,9.83l1.41,1.41L19,6.41V10h2V3H14z"/>
|
|
25
|
+
</g>
|
|
26
|
+
<g id="Outline" display="none">
|
|
27
|
+
<g id="ui_x5F_spec_x5F_header">
|
|
28
|
+
</g>
|
|
29
|
+
<path display="inline" d="M19,19H5V5h7V3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2v-7h-2V19z M14,3v2h3.59
|
|
30
|
+
l-9.83,9.83l1.41,1.41L19,6.41V10h2V3H14z"/>
|
|
31
|
+
</g>
|
|
32
|
+
<g id="Duotone" display="none">
|
|
33
|
+
<g id="ui_x5F_spec_x5F_header_copy_2">
|
|
34
|
+
</g>
|
|
35
|
+
<path display="inline" d="M19,19H5V5h7V3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2v-7h-2V19z M14,3v2h3.59
|
|
36
|
+
l-9.83,9.83l1.41,1.41L19,6.41V10h2V3H14z"/>
|
|
37
|
+
</g>
|
|
38
|
+
<g id="Material" display="none">
|
|
39
|
+
<g id="ui_x5F_spec_x5F_header_copy">
|
|
40
|
+
</g>
|
|
41
|
+
<path display="inline" d="M19,19H5V5h7V3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2v-7h-2V19z M14,3v2h3.59
|
|
42
|
+
l-9.83,9.83l1.41,1.41L19,6.41V10h2V3H14z"/>
|
|
43
|
+
</g>
|
|
44
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
2
|
+
<path fill="none" d="M0 0h24v24H0V0z"/>
|
|
3
|
+
<path fill="currentColor" d="M19.43 12.98c.04-.32.07-.64.07-.98s-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.12-.22-.39-.3-.61-.22l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.23-.09-.49 0-.61.22l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98s.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.12.22.39.3.61.22l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.23.09.49 0 .61-.22l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zM12 15.5c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
|
4
|
+
height="24px" viewBox="0 0 24 24" xml:space="preserve">
|
|
5
|
+
<g id="Header_x2F_BG" display="none">
|
|
6
|
+
<rect x="-358" y="-314" display="inline" fill="#F1F1F2" width="520" height="520"/>
|
|
7
|
+
</g>
|
|
8
|
+
<g id="Bounding_Boxes">
|
|
9
|
+
<g id="ui_x5F_spec_x5F_header_copy_3" display="none">
|
|
10
|
+
</g>
|
|
11
|
+
<path fill="none" d="M0,0h24v24H0V0z"/>
|
|
12
|
+
</g>
|
|
13
|
+
<g id="Rounded">
|
|
14
|
+
<g id="ui_x5F_spec_x5F_header_copy_5" display="none">
|
|
15
|
+
</g>
|
|
16
|
+
<path fill="currentColor" d="M15.5,14h-0.79l-0.28-0.27c1.2-1.4,1.82-3.31,1.48-5.34c-0.47-2.78-2.79-5-5.59-5.34c-4.23-0.52-7.79,3.04-7.27,7.27
|
|
17
|
+
c0.34,2.8,2.56,5.12,5.34,5.59c2.03,0.34,3.94-0.28,5.34-1.48L14,14.71v0.79l4.25,4.25c0.41,0.41,1.08,0.41,1.49,0l0,0
|
|
18
|
+
c0.41-0.41,0.41-1.08,0-1.49L15.5,14z M9.5,14C7.01,14,5,11.99,5,9.5S7.01,5,9.5,5S14,7.01,14,9.5S11.99,14,9.5,14z"/>
|
|
19
|
+
</g>
|
|
20
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Bold" enable-background="new 0 0 24 24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m8.843 12.651c-1.392 0-2.521 1.129-2.521 2.521v6.306c0 1.392 1.129 2.521 2.521 2.521s2.521-1.129 2.521-2.521v-6.306c-.001-1.392-1.13-2.521-2.521-2.521z"/><path d="m.019 15.172c0 1.393 1.13 2.523 2.523 2.523s2.523-1.13 2.523-2.523v-2.523h-2.521c-.001 0-.001 0-.002 0-1.393 0-2.523 1.13-2.523 2.523z"/><path d="m8.846-.001c-.001 0-.002 0-.003 0-1.393 0-2.523 1.13-2.523 2.523s1.13 2.523 2.523 2.523h2.521c0-1.431 0-1.083 0-2.528-.001-1.391-1.128-2.518-2.518-2.518z"/><path d="m2.525 11.37h6.318c1.393 0 2.523-1.13 2.523-2.523s-1.13-2.523-2.523-2.523h-6.318c-1.393 0-2.523 1.13-2.523 2.523s1.13 2.523 2.523 2.523z"/><path d="m21.457 6.323c-1.391 0-2.518 1.127-2.518 2.518v.005 2.523h2.521c1.393 0 2.523-1.13 2.523-2.523s-1.13-2.523-2.523-2.523c-.001 0-.002 0-.003 0z"/><path d="m12.641 2.522v6.325c0 1.392 1.129 2.521 2.521 2.521s2.521-1.129 2.521-2.521v-6.325c0-1.392-1.129-2.521-2.521-2.521-1.392 0-2.521 1.129-2.521 2.521z"/><path d="m17.682 21.476c0-1.392-1.129-2.521-2.521-2.521h-2.521v2.523c.001 1.391 1.129 2.519 2.521 2.519s2.521-1.129 2.521-2.521z"/><path d="m21.479 12.649h-6.318c-1.393 0-2.523 1.13-2.523 2.523s1.13 2.523 2.523 2.523h6.318c1.393 0 2.523-1.13 2.523-2.523s-1.13-2.523-2.523-2.523z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0z" fill="none"/><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" width="24px" height="24px"><g><rect fill="none" height="24" width="24"/></g><g><g><path d="M8.79,9.24V5.5c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5v3.74c1.21-0.81,2-2.18,2-3.74c0-2.49-2.01-4.5-4.5-4.5 s-4.5,2.01-4.5,4.5C6.79,7.06,7.58,8.43,8.79,9.24z M14.29,11.71c-0.28-0.14-0.58-0.21-0.89-0.21h-0.61v-6 c0-0.83-0.67-1.5-1.5-1.5s-1.5,0.67-1.5,1.5v10.74l-3.44-0.72c-0.37-0.08-0.76,0.04-1.03,0.31c-0.43,0.44-0.43,1.14,0,1.58 l4.01,4.01C9.71,21.79,10.22,22,10.75,22h6.1c1,0,1.84-0.73,1.98-1.72l0.63-4.47c0.12-0.85-0.32-1.69-1.09-2.07L14.29,11.71z"/></g></g></svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="413px" height="126px" viewBox="0 0 413 126" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<defs>
|
|
4
|
+
<path d="M106.337016,98.7997963 L63.0899545,123.570655 C58.9970198,125.91444 53.9546983,125.91444 49.861857,123.570655 L6.61395537,98.7997963 C2.52111405,96.4552699 -5.07221701e-15,92.1236493 -4.78514071e-15,87.4353375 L-1.75158541e-15,37.8936199 C-1.46450911e-15,33.2053081 2.52111405,28.873039 6.61395537,26.5292537 L49.861857,1.75839485 C53.9546983,-0.586131618 58.9970198,-0.586131618 63.0899545,1.75839485 L106.337016,26.5292537 C110.42995,28.873039 112.951064,33.2053081 112.951064,37.8936199 L112.951064,87.4353375 C112.951064,92.1236493 110.42995,96.4552699 106.337016,98.7997963 Z M82.6150471,41.7683515 C79.3715736,50.8470221 76.1049397,59.9486691 72.8391463,69.0602294 L71.8026281,69.0602294 C68.5476678,59.9265265 65.281781,50.8027368 62.0268207,41.6911765 L51.872043,41.6911765 C48.5723496,50.9027956 45.3065562,60.0257515 42.0407628,69.1602882 L41.0927769,69.1602882 C37.7823438,59.9371809 34.4719107,50.7148147 31.2722364,41.8126368 L19.1446281,41.8126368 C25.0417339,58.5659118 30.7933405,74.8990324 36.5448537,91.2321529 L46.554786,91.2321529 L56.4646992,63.5972029 L57.4680645,63.5972029 C60.7784975,72.8645956 64.0781909,82.1427353 67.3216645,91.2099176 L77.3540099,91.2099176 C83.127843,74.8103691 88.8794496,58.4665941 94.7542355,41.7683515 L82.6150471,41.7683515 Z" id="path-1"></path>
|
|
5
|
+
</defs>
|
|
6
|
+
<g id="Page-4" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
7
|
+
<g id="Webiny-Logo-Icon" transform="translate(-95.000000, -227.000000)">
|
|
8
|
+
<g id="Group-27" transform="translate(301.500000, 290.500000) rotate(-90.000000) translate(-301.500000, -290.500000) translate(238.000000, 84.000000)">
|
|
9
|
+
<path d="M38.9886,294.4019 L38.9886,303.1704 L78.6828,303.1704 L78.6828,294.4019 L38.9886,294.4019 Z M78.7273,391.1846 L78.7273,382.0161 C70.8914,382.0161 63.4463,382.0343 56.0012,382.0071 C51.053,381.9807 47.5708,378.463 47.6153,373.6211 C47.6508,368.7347 50.1294,366.4688 55.6376,366.4333 C62.1493,366.3888 68.67,366.4333 75.1825,366.4069 C76.3641,366.3979 77.5457,366.2024 78.6737,366.0961 L78.6737,357.5321 C78.3183,357.3812 78.132,357.2294 77.9456,357.2294 C68.6436,357.203 59.3243,357.0522 50.0231,357.2294 C45.492,357.3185 41.9472,359.4508 40.0457,363.9192 C43.0934,368.4948 42.8262,373.5585 42.2045,378.6312 C41.6891,382.7714 41.9736,386.8226 42.8707,391.2736 C54.8641,391.2382 66.7693,391.3709 78.7273,391.1846 L78.7273,391.1846 Z M69.3634,348.63 C73.2192,348.5236 76.0532,346.054 77.6875,342.5091 C79.3754,338.8489 80.1043,334.9486 79.18,331.0393 C78.4164,327.8053 77.0213,324.7231 75.866,321.48 C77.0839,320.0766 78.4692,318.4687 80.0062,316.7099 C78.0338,314.5149 76.3369,312.6142 74.6407,310.7218 C69.5589,314.773 69.5589,314.773 62.94,314.773 C56.1175,314.773 49.2851,314.773 42.4626,314.782 C41.3609,314.782 40.2502,314.8793 39.0068,314.942 L39.0068,323.9859 L61.243,323.9859 C66.0759,323.9859 69.3189,326.5091 70.536,331.2174 C71.9576,336.7256 69.7807,339.6042 64.1126,339.6215 C56.8811,339.6479 49.6405,339.6215 42.3999,339.6396 C41.2983,339.6396 40.1966,339.746 39.0777,339.8078 L39.0777,348.7099 C49.3296,348.7099 59.3506,348.888 69.3634,348.63 L69.3634,348.63 Z M70.9978,230.0101 C70.696,234.3985 68.919,236.0954 64.468,235.7936 C59.9996,231.3517 61.892,225.8344 61.5894,220.6371 C67.1066,221.0107 71.3177,225.3372 70.9978,230.0101 L70.9978,230.0101 Z M50.8575,242.7852 C49.8804,240.5374 48.9742,238.5741 48.1834,236.5663 C46.9309,233.4213 46.5665,230.161 47.2418,226.8206 C47.908,223.4984 49.4986,221.8987 53.008,221.2679 C53.008,223.1603 53.0163,224.9909 53.008,226.8116 C52.9635,231.1117 53.5671,235.2874 55.6104,239.1249 C59.7951,246.9699 70.625,247.938 75.8133,240.84 C81.3214,233.315 80.8506,222.0851 73.112,215.5825 C67.3111,210.7142 60.524,209.7635 53.2562,210.927 C47.3218,211.8868 42.8353,214.9517 40.1612,220.2908 C36.3591,227.8777 38.376,240.6265 44.3632,247.2544 C46.5137,245.7702 48.6897,244.2686 50.8575,242.7852 L50.8575,242.7852 Z M55.6549,410.8713 C61.5011,408.3398 65.4014,401.3037 64.4952,394.8539 C64.4152,394.2759 64.0507,393.7432 63.7662,393.086 L54.7223,393.086 C54.9177,394.3031 55.1577,395.3066 55.2195,396.3192 C55.3795,398.8605 54.0025,401.3483 52.0218,402.2545 C49.8004,403.2761 46.6291,402.6898 44.914,400.7348 C44.0523,399.7486 43.1816,398.576 42.8534,397.3416 C42.0626,394.374 41.21,391.3355 41.0855,388.2887 C40.8456,382.7178 41.21,377.1215 41.041,371.5424 C40.8983,367.0287 38.5887,362.7821 34.733,360.437 C28.035,356.3678 18.742,358.2783 14.2292,364.4255 C9.849,370.3962 10.6307,379.2975 16.068,384.5838 C19.9855,388.395 24.8719,390.0384 30.4864,390.9001 L30.4864,381.5807 C29.4739,381.2608 28.2741,380.9772 27.1461,380.5146 C25.9117,380.0083 24.6501,379.4847 23.5567,378.7384 C20.8562,376.8897 19.9682,373.5675 21.2735,370.8044 C22.3042,368.6193 25.2982,367.1796 27.8124,367.6595 C30.8954,368.2457 31.988,369.8273 31.9971,373.8429 C32.0144,379.5284 31.819,385.2146 32.0061,390.8918 C32.2016,396.5773 33.8359,401.89 37.4252,406.4293 C41.6536,411.7865 49.3123,413.6171 55.6549,410.8713 L55.6549,410.8713 Z M50.8312,276.8821 C47.7126,274.5107 46.9136,271.1695 46.9309,267.5364 C46.94,265.7859 47.2154,264.0361 47.4108,261.7702 C53.6207,261.7702 59.6087,261.5393 65.5696,261.8683 C68.5282,262.0283 70.1715,264.6042 70.9359,267.2783 C71.833,270.3969 71.5758,273.4618 69.0344,275.905 C64.6906,280.0625 55.6376,280.5334 50.8312,276.8821 L50.8312,276.8821 Z M64.2461,288.3157 C74.5162,286.8323 80.6906,279.059 80.0862,268.7626 C79.9534,266.5321 79.2336,264.3379 78.7001,261.7529 L95.5,261.7529 L95.5,252.3626 L40.4275,252.3626 C38.9622,256.5737 37.8961,265.1105 38.2424,269.3843 C39.0686,279.6008 44.2304,286.0687 53.7988,288.0675 C57.1655,288.7783 60.8349,288.8137 64.2461,288.3157 L64.2461,288.3157 Z M78.6919,200.586 C71.3977,198.001 64.0862,195.3978 56.7656,192.7946 L56.7656,191.9684 C64.1035,189.3743 71.4331,186.7711 78.7537,184.177 L78.7537,176.0838 C71.3531,173.4542 64.0243,170.851 56.6856,168.2479 L56.6856,167.4925 C64.0952,164.8547 71.504,162.2161 78.6556,159.6657 L78.6556,150 C65.1969,154.7001 52.0746,159.2839 38.9532,163.8685 L38.9532,171.8463 L61.1548,179.7441 L61.1548,180.5439 C53.7097,183.1825 46.2556,185.8121 38.9713,188.3971 L38.9713,196.393 C52.1463,200.995 65.2769,205.5788 78.6919,210.2607 L78.6919,200.586 Z" id="Fill-23" fill="currentColor"></path>
|
|
10
|
+
<g id="Webiny-Icon-White" transform="translate(63.500000, 56.500000) rotate(90.000000) translate(-63.500000, -56.500000) translate(7.000000, -6.500000)">
|
|
11
|
+
<mask id="mask-2" fill="currentColor">
|
|
12
|
+
<use xlink:href="#path-1"></use>
|
|
13
|
+
</mask>
|
|
14
|
+
<use id="Mask" fill="currentColor" fill-rule="evenodd" xlink:href="#path-1"></use>
|
|
15
|
+
<g id="White" mask="url(#mask-2)"></g>
|
|
16
|
+
</g>
|
|
17
|
+
</g>
|
|
18
|
+
</g>
|
|
19
|
+
</g>
|
|
20
|
+
</svg>
|