@alpaca-editor/core 1.0.0
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/.prettierrc +3 -0
- package/eslint.config.mjs +4 -0
- package/images/bg-shape-black.webp +0 -0
- package/package.json +52 -0
- package/src/client-components/api.ts +6 -0
- package/src/client-components/index.ts +19 -0
- package/src/components/ActionButton.tsx +43 -0
- package/src/components/Error.tsx +57 -0
- package/src/config/config.tsx +737 -0
- package/src/config/types.ts +263 -0
- package/src/editor/ComponentInfo.tsx +77 -0
- package/src/editor/ConfirmationDialog.tsx +103 -0
- package/src/editor/ContentTree.tsx +654 -0
- package/src/editor/ContextMenu.tsx +155 -0
- package/src/editor/Editor.tsx +91 -0
- package/src/editor/EditorWarning.tsx +34 -0
- package/src/editor/EditorWarnings.tsx +33 -0
- package/src/editor/FieldEditorPopup.tsx +65 -0
- package/src/editor/FieldHistory.tsx +74 -0
- package/src/editor/FieldList.tsx +190 -0
- package/src/editor/FieldListField.tsx +387 -0
- package/src/editor/FieldListFieldWithFallbacks.tsx +211 -0
- package/src/editor/FloatingToolbar.tsx +163 -0
- package/src/editor/ImageEditor.tsx +129 -0
- package/src/editor/InsertMenu.tsx +332 -0
- package/src/editor/ItemInfo.tsx +90 -0
- package/src/editor/LinkEditorDialog.tsx +192 -0
- package/src/editor/MainLayout.tsx +94 -0
- package/src/editor/NewEditorClient.tsx +11 -0
- package/src/editor/PictureCropper.tsx +505 -0
- package/src/editor/PictureEditor.tsx +206 -0
- package/src/editor/PictureEditorDialog.tsx +381 -0
- package/src/editor/PublishDialog.ignore +74 -0
- package/src/editor/ScrollingContentTree.tsx +47 -0
- package/src/editor/Terminal.tsx +215 -0
- package/src/editor/Titlebar.tsx +23 -0
- package/src/editor/ai/AiPopup.tsx +59 -0
- package/src/editor/ai/AiResponseMessage.tsx +82 -0
- package/src/editor/ai/AiTerminal.tsx +450 -0
- package/src/editor/ai/AiToolCall.tsx +46 -0
- package/src/editor/ai/EditorAiTerminal.tsx +20 -0
- package/src/editor/ai/editorAiContext.ts +18 -0
- package/src/editor/client/DialogContext.tsx +49 -0
- package/src/editor/client/EditorClient.tsx +1831 -0
- package/src/editor/client/GenericDialog.tsx +50 -0
- package/src/editor/client/editContext.ts +330 -0
- package/src/editor/client/helpers.ts +44 -0
- package/src/editor/client/itemsRepository.ts +391 -0
- package/src/editor/client/operations.ts +610 -0
- package/src/editor/client/pageModelBuilder.ts +182 -0
- package/src/editor/commands/commands.ts +23 -0
- package/src/editor/commands/componentCommands.tsx +408 -0
- package/src/editor/commands/createVersionCommand.ts +33 -0
- package/src/editor/commands/deleteVersionCommand.ts +71 -0
- package/src/editor/commands/itemCommands.tsx +186 -0
- package/src/editor/commands/localizeItem/LocalizeItemDialog.tsx +201 -0
- package/src/editor/commands/undo.ts +39 -0
- package/src/editor/component-designer/ComponentDesigner.tsx +70 -0
- package/src/editor/component-designer/ComponentDesignerAiTerminal.tsx +11 -0
- package/src/editor/component-designer/ComponentDesignerMenu.tsx +91 -0
- package/src/editor/component-designer/ComponentEditor.tsx +97 -0
- package/src/editor/component-designer/ComponentRenderingCodeEditor.tsx +31 -0
- package/src/editor/component-designer/ComponentRenderingEditor.tsx +104 -0
- package/src/editor/component-designer/ComponentsDropdown.tsx +39 -0
- package/src/editor/component-designer/PlaceholdersEditor.tsx +183 -0
- package/src/editor/component-designer/RenderingsDropdown.tsx +36 -0
- package/src/editor/component-designer/TemplateEditor.tsx +236 -0
- package/src/editor/component-designer/aiContext.ts +23 -0
- package/src/editor/componentTreeHelper.tsx +114 -0
- package/src/editor/control-center/ControlCenterMenu.tsx +71 -0
- package/src/editor/control-center/IndexOverview.tsx +50 -0
- package/src/editor/control-center/IndexSettings.tsx +266 -0
- package/src/editor/control-center/Status.tsx +7 -0
- package/src/editor/editor-warnings/ItemLocked.tsx +63 -0
- package/src/editor/editor-warnings/NoLanguageWriteAccess.tsx +22 -0
- package/src/editor/editor-warnings/NoWorkflowWriteAccess.tsx +23 -0
- package/src/editor/editor-warnings/NoWriteAccess.tsx +15 -0
- package/src/editor/editor-warnings/ValidationErrors.tsx +54 -0
- package/src/editor/field-types/AttachmentEditor.tsx +9 -0
- package/src/editor/field-types/CheckboxEditor.tsx +47 -0
- package/src/editor/field-types/DropLinkEditor.tsx +75 -0
- package/src/editor/field-types/DropListEditor.tsx +84 -0
- package/src/editor/field-types/ImageFieldEditor.tsx +65 -0
- package/src/editor/field-types/InternalLinkFieldEditor.tsx +112 -0
- package/src/editor/field-types/LinkFieldEditor.tsx +85 -0
- package/src/editor/field-types/MultiLineText.tsx +63 -0
- package/src/editor/field-types/PictureFieldEditor.tsx +121 -0
- package/src/editor/field-types/RawEditor.tsx +53 -0
- package/src/editor/field-types/ReactQuill.tsx +580 -0
- package/src/editor/field-types/RichTextEditor.tsx +22 -0
- package/src/editor/field-types/RichTextEditorComponent.tsx +108 -0
- package/src/editor/field-types/SingleLineText.tsx +150 -0
- package/src/editor/field-types/TreeListEditor.tsx +261 -0
- package/src/editor/fieldTypes.ts +140 -0
- package/src/editor/media-selector/AiImageSearch.tsx +186 -0
- package/src/editor/media-selector/AiImageSearchPrompt.tsx +95 -0
- package/src/editor/media-selector/MediaSelector.tsx +42 -0
- package/src/editor/media-selector/Preview.tsx +14 -0
- package/src/editor/media-selector/Thumbnails.tsx +48 -0
- package/src/editor/media-selector/TreeSelector.tsx +292 -0
- package/src/editor/media-selector/UploadZone.tsx +137 -0
- package/src/editor/menubar/ActionsMenu.tsx +47 -0
- package/src/editor/menubar/ActiveUsers.tsx +17 -0
- package/src/editor/menubar/ApproveAndPublish.tsx +18 -0
- package/src/editor/menubar/BrowseHistory.tsx +37 -0
- package/src/editor/menubar/ItemLanguageVersion.tsx +52 -0
- package/src/editor/menubar/LanguageSelector.tsx +152 -0
- package/src/editor/menubar/Menu.tsx +83 -0
- package/src/editor/menubar/NavButtons.tsx +74 -0
- package/src/editor/menubar/PageSelector.tsx +139 -0
- package/src/editor/menubar/PageViewerControls.tsx +99 -0
- package/src/editor/menubar/Separator.tsx +12 -0
- package/src/editor/menubar/SiteInfo.tsx +53 -0
- package/src/editor/menubar/User.tsx +27 -0
- package/src/editor/menubar/VersionSelector.tsx +143 -0
- package/src/editor/page-editor-chrome/CommentHighlighting.tsx +287 -0
- package/src/editor/page-editor-chrome/CommentHighlightings.tsx +35 -0
- package/src/editor/page-editor-chrome/FieldActionIndicator.tsx +44 -0
- package/src/editor/page-editor-chrome/FieldActionIndicators.tsx +23 -0
- package/src/editor/page-editor-chrome/FieldEditedIndicator.tsx +64 -0
- package/src/editor/page-editor-chrome/FieldEditedIndicators.tsx +35 -0
- package/src/editor/page-editor-chrome/FrameMenu.tsx +263 -0
- package/src/editor/page-editor-chrome/FrameMenus.tsx +48 -0
- package/src/editor/page-editor-chrome/InlineEditor.tsx +147 -0
- package/src/editor/page-editor-chrome/LockedFieldIndicator.tsx +61 -0
- package/src/editor/page-editor-chrome/NoLayout.tsx +36 -0
- package/src/editor/page-editor-chrome/PageEditorChrome.tsx +119 -0
- package/src/editor/page-editor-chrome/PictureEditorOverlay.tsx +154 -0
- package/src/editor/page-editor-chrome/PlaceholderDropZone.tsx +171 -0
- package/src/editor/page-editor-chrome/PlaceholderDropZones.tsx +233 -0
- package/src/editor/page-viewer/DeviceToolbar.tsx +70 -0
- package/src/editor/page-viewer/EditorForm.tsx +247 -0
- package/src/editor/page-viewer/MiniMap.tsx +351 -0
- package/src/editor/page-viewer/PageViewer.tsx +127 -0
- package/src/editor/page-viewer/PageViewerFrame.tsx +1030 -0
- package/src/editor/page-viewer/pageViewContext.ts +186 -0
- package/src/editor/pageModel.ts +191 -0
- package/src/editor/picture-shared.tsx +53 -0
- package/src/editor/reviews/Comment.tsx +265 -0
- package/src/editor/reviews/Comments.tsx +50 -0
- package/src/editor/reviews/PreviewInfo.tsx +35 -0
- package/src/editor/reviews/Reviews.tsx +280 -0
- package/src/editor/reviews/reviewCommands.tsx +47 -0
- package/src/editor/reviews/useReviews.tsx +70 -0
- package/src/editor/services/aiService.ts +155 -0
- package/src/editor/services/componentDesignerService.ts +151 -0
- package/src/editor/services/contentService.ts +159 -0
- package/src/editor/services/editService.ts +462 -0
- package/src/editor/services/indexService.ts +24 -0
- package/src/editor/services/reviewsService.ts +45 -0
- package/src/editor/services/serviceHelper.ts +95 -0
- package/src/editor/services/systemService.ts +5 -0
- package/src/editor/services/translationService.ts +21 -0
- package/src/editor/services-server/api.ts +150 -0
- package/src/editor/services-server/graphQL.ts +106 -0
- package/src/editor/sidebar/ComponentPalette.tsx +146 -0
- package/src/editor/sidebar/ComponentTree.tsx +512 -0
- package/src/editor/sidebar/ComponentTree2.tsxx +490 -0
- package/src/editor/sidebar/Debug.tsx +105 -0
- package/src/editor/sidebar/DictionaryEditor.tsx +261 -0
- package/src/editor/sidebar/EditHistory.tsx +134 -0
- package/src/editor/sidebar/GraphQL.tsx +164 -0
- package/src/editor/sidebar/Insert.tsx +35 -0
- package/src/editor/sidebar/MainContentTree.tsx +95 -0
- package/src/editor/sidebar/Performance.tsx +53 -0
- package/src/editor/sidebar/Sessions.tsx +35 -0
- package/src/editor/sidebar/Sidebar.tsx +20 -0
- package/src/editor/sidebar/SidebarView.tsx +150 -0
- package/src/editor/sidebar/Translations.tsx +276 -0
- package/src/editor/sidebar/Validation.tsx +102 -0
- package/src/editor/sidebar/ViewSelector.tsx +49 -0
- package/src/editor/sidebar/Workbox.tsx +209 -0
- package/src/editor/ui/CenteredMessage.tsx +7 -0
- package/src/editor/ui/CopyToClipboardButton.tsx +23 -0
- package/src/editor/ui/DialogButtons.tsx +11 -0
- package/src/editor/ui/Icons.tsx +585 -0
- package/src/editor/ui/ItemNameDialog.tsx +94 -0
- package/src/editor/ui/ItemNameDialogNew.tsx +118 -0
- package/src/editor/ui/ItemSearch.tsx +173 -0
- package/src/editor/ui/PerfectTree.tsx +550 -0
- package/src/editor/ui/Section.tsx +35 -0
- package/src/editor/ui/SimpleIconButton.tsx +43 -0
- package/src/editor/ui/SimpleMenu.tsx +48 -0
- package/src/editor/ui/SimpleTable.tsx +63 -0
- package/src/editor/ui/SimpleTabs.tsx +55 -0
- package/src/editor/ui/SimpleToolbar.tsx +7 -0
- package/src/editor/ui/Spinner.tsx +7 -0
- package/src/editor/ui/Splitter.tsx +247 -0
- package/src/editor/ui/StackedPanels.tsx +134 -0
- package/src/editor/ui/Toolbar.tsx +7 -0
- package/src/editor/utils/id-helper.ts +3 -0
- package/src/editor/utils/insertOptions.ts +69 -0
- package/src/editor/utils/itemutils.ts +29 -0
- package/src/editor/utils/useMemoDebug.ts +28 -0
- package/src/editor/utils.ts +435 -0
- package/src/editor/views/CompareView.tsx +256 -0
- package/src/editor/views/EditView.tsx +27 -0
- package/src/editor/views/ItemEditor.tsx +58 -0
- package/src/editor/views/SingleEditView.tsx +44 -0
- package/src/fonts/Geist-Black.woff2 +0 -0
- package/src/fonts/Geist-Bold.woff2 +0 -0
- package/src/fonts/Geist-ExtraBold.woff2 +0 -0
- package/src/fonts/Geist-ExtraLight.woff2 +0 -0
- package/src/fonts/Geist-Light.woff2 +0 -0
- package/src/fonts/Geist-Medium.woff2 +0 -0
- package/src/fonts/Geist-Regular.woff2 +0 -0
- package/src/fonts/Geist-SemiBold.woff2 +0 -0
- package/src/fonts/Geist-Thin.woff2 +0 -0
- package/src/fonts/Geist[wght].woff2 +0 -0
- package/src/index.ts +7 -0
- package/src/page-wizard/PageWizard.tsx +163 -0
- package/src/page-wizard/SelectWizard.tsx +109 -0
- package/src/page-wizard/WizardSteps.tsx +207 -0
- package/src/page-wizard/service.ts +35 -0
- package/src/page-wizard/startPageWizardCommand.ts +27 -0
- package/src/page-wizard/steps/BuildPageStep.tsx +266 -0
- package/src/page-wizard/steps/CollectStep.tsx +233 -0
- package/src/page-wizard/steps/ComponentTypesSelector.tsx +443 -0
- package/src/page-wizard/steps/Components.tsx +193 -0
- package/src/page-wizard/steps/CreatePage.tsx +285 -0
- package/src/page-wizard/steps/CreatePageAndLayoutStep.tsx +384 -0
- package/src/page-wizard/steps/EditButton.tsx +34 -0
- package/src/page-wizard/steps/FieldEditor.tsx +102 -0
- package/src/page-wizard/steps/Generate.tsx +32 -0
- package/src/page-wizard/steps/ImagesStep.tsx +318 -0
- package/src/page-wizard/steps/LayoutStep.tsx +228 -0
- package/src/page-wizard/steps/SelectStep.tsx +256 -0
- package/src/page-wizard/steps/schema.ts +180 -0
- package/src/page-wizard/steps/usePageCreator.ts +279 -0
- package/src/splash-screen/NewPage.tsx +232 -0
- package/src/splash-screen/SectionHeadline.tsx +21 -0
- package/src/splash-screen/SplashScreen.tsx +156 -0
- package/src/tour/Tour.tsx +558 -0
- package/src/tour/default-tour.tsx +300 -0
- package/src/tour/preview-tour.tsx +127 -0
- package/src/types.ts +302 -0
- package/styles.css +476 -0
- package/tsconfig.build.json +21 -0
- package/tsconfig.json +11 -0
|
@@ -0,0 +1,585 @@
|
|
|
1
|
+
export function WizardIcon({ className }: { className?: string }) {
|
|
2
|
+
return (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
fill="none"
|
|
6
|
+
viewBox="0 0 24 24"
|
|
7
|
+
strokeWidth="1.5"
|
|
8
|
+
stroke="currentColor"
|
|
9
|
+
className={className}
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
strokeLinecap="round"
|
|
13
|
+
strokeLinejoin="round"
|
|
14
|
+
d="M9.813 15.904 9 18.75l-.813-2.846a4.5 4.5 0 0 0-3.09-3.09L2.25 12l2.846-.813a4.5 4.5 0 0 0 3.09-3.09L9 5.25l.813 2.846a4.5 4.5 0 0 0 3.09 3.09L15.75 12l-2.846.813a4.5 4.5 0 0 0-3.09 3.09ZM18.259 8.715 18 9.75l-.259-1.035a3.375 3.375 0 0 0-2.455-2.456L14.25 6l1.036-.259a3.375 3.375 0 0 0 2.455-2.456L18 2.25l.259 1.035a3.375 3.375 0 0 0 2.456 2.456L21.75 6l-1.035.259a3.375 3.375 0 0 0-2.456 2.456ZM16.894 20.567 16.5 21.75l-.394-1.183a2.25 2.25 0 0 0-1.423-1.423L13.5 18.75l1.183-.394a2.25 2.25 0 0 0 1.423-1.423l.394-1.183.394 1.183a2.25 2.25 0 0 0 1.423 1.423l1.183.394-1.183.394a2.25 2.25 0 0 0-1.423 1.423Z"
|
|
15
|
+
/>
|
|
16
|
+
</svg>
|
|
17
|
+
);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export function BugIcon({ className }: { className?: string }) {
|
|
21
|
+
return (
|
|
22
|
+
<svg
|
|
23
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
24
|
+
fill="none"
|
|
25
|
+
viewBox="0 0 24 24"
|
|
26
|
+
strokeWidth={1.5}
|
|
27
|
+
stroke="currentColor"
|
|
28
|
+
className={className}
|
|
29
|
+
>
|
|
30
|
+
<path
|
|
31
|
+
strokeLinecap="round"
|
|
32
|
+
strokeLinejoin="round"
|
|
33
|
+
d="M12 12.75c1.148 0 2.278.08 3.383.237 1.037.146 1.866.966 1.866 2.013 0 3.728-2.35 6.75-5.25 6.75S6.75 18.728 6.75 15c0-1.046.83-1.867 1.866-2.013A24.204 24.204 0 0 1 12 12.75Zm0 0c2.883 0 5.647.508 8.207 1.44a23.91 23.91 0 0 1-1.152 6.06M12 12.75c-2.883 0-5.647.508-8.208 1.44.125 2.104.52 4.136 1.153 6.06M12 12.75a2.25 2.25 0 0 0 2.248-2.354M12 12.75a2.25 2.25 0 0 1-2.248-2.354M12 8.25c.995 0 1.971-.08 2.922-.236.403-.066.74-.358.795-.762a3.778 3.778 0 0 0-.399-2.25M12 8.25c-.995 0-1.97-.08-2.922-.236-.402-.066-.74-.358-.795-.762a3.734 3.734 0 0 1 .4-2.253M12 8.25a2.25 2.25 0 0 0-2.248 2.146M12 8.25a2.25 2.25 0 0 1 2.248 2.146M8.683 5a6.032 6.032 0 0 1-1.155-1.002c.07-.63.27-1.222.574-1.747m.581 2.749A3.75 3.75 0 0 1 15.318 5m0 0c.427-.283.815-.62 1.155-.999a4.471 4.471 0 0 0-.575-1.752M4.921 6a24.048 24.048 0 0 0-.392 3.314c1.668.546 3.416.914 5.223 1.082M19.08 6c.205 1.08.337 2.187.392 3.314a23.882 23.882 0 0 1-5.223 1.082"
|
|
34
|
+
/>
|
|
35
|
+
</svg>
|
|
36
|
+
);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export function EditIcon({ className }: { className?: string }) {
|
|
40
|
+
return (
|
|
41
|
+
<svg
|
|
42
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
43
|
+
fill="none"
|
|
44
|
+
viewBox="0 0 24 24"
|
|
45
|
+
strokeWidth={1.5}
|
|
46
|
+
stroke="currentColor"
|
|
47
|
+
className={className}
|
|
48
|
+
>
|
|
49
|
+
<path
|
|
50
|
+
strokeLinecap="round"
|
|
51
|
+
strokeLinejoin="round"
|
|
52
|
+
d="m16.862 4.487 1.687-1.688a1.875 1.875 0 1 1 2.652 2.652L10.582 16.07a4.5 4.5 0 0 1-1.897 1.13L6 18l.8-2.685a4.5 4.5 0 0 1 1.13-1.897l8.932-8.931Zm0 0L19.5 7.125M18 14v4.75A2.25 2.25 0 0 1 15.75 21H5.25A2.25 2.25 0 0 1 3 18.75V8.25A2.25 2.25 0 0 1 5.25 6H10"
|
|
53
|
+
/>
|
|
54
|
+
</svg>
|
|
55
|
+
);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export function JsonIcon({ className }: { className?: string }) {
|
|
59
|
+
return (
|
|
60
|
+
<svg
|
|
61
|
+
fill="#000000"
|
|
62
|
+
version="1.1"
|
|
63
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
64
|
+
viewBox="0 0 58 58"
|
|
65
|
+
className={className}
|
|
66
|
+
>
|
|
67
|
+
<g>
|
|
68
|
+
<path
|
|
69
|
+
d="M50.949,12.187l-1.361-1.361l-9.504-9.505c-0.001-0.001-0.001-0.001-0.002-0.001l-0.77-0.771
|
|
70
|
+
C38.957,0.195,38.486,0,37.985,0H8.963C7.776,0,6.5,0.916,6.5,2.926V39v16.537V56c0,0.837,0.841,1.652,1.836,1.909
|
|
71
|
+
c0.051,0.014,0.1,0.033,0.152,0.043C8.644,57.983,8.803,58,8.963,58h40.074c0.16,0,0.319-0.017,0.475-0.048
|
|
72
|
+
c0.052-0.01,0.101-0.029,0.152-0.043C50.659,57.652,51.5,56.837,51.5,56v-0.463V39V13.978C51.5,13.211,51.407,12.644,50.949,12.187
|
|
73
|
+
z M39.5,3.565L47.935,12H39.5V3.565z M8.963,56c-0.071,0-0.135-0.025-0.198-0.049C8.61,55.877,8.5,55.721,8.5,55.537V41h41v14.537
|
|
74
|
+
c0,0.184-0.11,0.34-0.265,0.414C49.172,55.975,49.108,56,49.037,56H8.963z M8.5,39V2.926C8.5,2.709,8.533,2,8.963,2h28.595
|
|
75
|
+
C37.525,2.126,37.5,2.256,37.5,2.391V13.78c-0.532-0.48-1.229-0.78-2-0.78c-0.553,0-1,0.448-1,1s0.447,1,1,1c0.552,0,1,0.449,1,1v4
|
|
76
|
+
c0,1.2,0.542,2.266,1.382,3c-0.84,0.734-1.382,1.8-1.382,3v4c0,0.551-0.448,1-1,1c-0.553,0-1,0.448-1,1s0.447,1,1,1
|
|
77
|
+
c1.654,0,3-1.346,3-3v-4c0-1.103,0.897-2,2-2c0.553,0,1-0.448,1-1s-0.447-1-1-1c-1.103,0-2-0.897-2-2v-4
|
|
78
|
+
c0-0.771-0.301-1.468-0.78-2h11.389c0.135,0,0.265-0.025,0.391-0.058c0,0.015,0.001,0.021,0.001,0.036V39H8.5z"
|
|
79
|
+
/>
|
|
80
|
+
<path
|
|
81
|
+
d="M16.354,51.43c-0.019,0.446-0.171,0.764-0.458,0.95s-0.672,0.28-1.155,0.28c-0.191,0-0.396-0.022-0.615-0.068
|
|
82
|
+
s-0.429-0.098-0.629-0.157s-0.385-0.123-0.554-0.191s-0.299-0.135-0.39-0.198l-0.697,1.107c0.183,0.137,0.405,0.26,0.67,0.369
|
|
83
|
+
s0.54,0.207,0.827,0.294s0.565,0.15,0.834,0.191s0.504,0.062,0.704,0.062c0.401,0,0.791-0.039,1.169-0.116
|
|
84
|
+
c0.378-0.077,0.713-0.214,1.005-0.41s0.524-0.456,0.697-0.779s0.26-0.723,0.26-1.196v-7.848h-1.668V51.43z"
|
|
85
|
+
/>
|
|
86
|
+
<path
|
|
87
|
+
d="M25.083,49.064c-0.314-0.228-0.654-0.422-1.019-0.581s-0.702-0.323-1.012-0.492s-0.569-0.364-0.779-0.588
|
|
88
|
+
s-0.314-0.518-0.314-0.882c0-0.146,0.036-0.299,0.109-0.458s0.173-0.303,0.301-0.431s0.273-0.234,0.438-0.321
|
|
89
|
+
s0.337-0.139,0.52-0.157c0.328-0.027,0.597-0.032,0.807-0.014s0.378,0.05,0.506,0.096s0.226,0.091,0.294,0.137
|
|
90
|
+
s0.13,0.082,0.185,0.109c0.009-0.009,0.036-0.055,0.082-0.137s0.101-0.185,0.164-0.308s0.132-0.255,0.205-0.396
|
|
91
|
+
s0.137-0.271,0.191-0.39c-0.265-0.173-0.61-0.299-1.039-0.376s-0.853-0.116-1.271-0.116c-0.41,0-0.8,0.063-1.169,0.191
|
|
92
|
+
s-0.692,0.313-0.971,0.554s-0.499,0.535-0.663,0.882S20.4,46.13,20.4,46.576c0,0.492,0.104,0.902,0.314,1.23
|
|
93
|
+
s0.474,0.613,0.793,0.854s0.661,0.451,1.025,0.629s0.704,0.355,1.019,0.533s0.576,0.376,0.786,0.595s0.314,0.483,0.314,0.793
|
|
94
|
+
c0,0.511-0.148,0.896-0.444,1.155s-0.723,0.39-1.278,0.39c-0.183,0-0.378-0.019-0.588-0.055s-0.419-0.084-0.629-0.144
|
|
95
|
+
s-0.412-0.123-0.608-0.191s-0.357-0.139-0.485-0.212l-0.287,1.176c0.155,0.137,0.34,0.253,0.554,0.349s0.439,0.171,0.677,0.226
|
|
96
|
+
c0.237,0.055,0.472,0.094,0.704,0.116s0.458,0.034,0.677,0.034c0.511,0,0.966-0.077,1.367-0.232s0.738-0.362,1.012-0.622
|
|
97
|
+
s0.485-0.561,0.636-0.902s0.226-0.695,0.226-1.06c0-0.538-0.104-0.978-0.314-1.319S25.397,49.292,25.083,49.064z"
|
|
98
|
+
/>
|
|
99
|
+
<path
|
|
100
|
+
d="M34.872,45.072c-0.378-0.429-0.82-0.754-1.326-0.978s-1.06-0.335-1.661-0.335s-1.155,0.111-1.661,0.335
|
|
101
|
+
s-0.948,0.549-1.326,0.978s-0.675,0.964-0.889,1.606s-0.321,1.388-0.321,2.235s0.107,1.595,0.321,2.242s0.511,1.185,0.889,1.613
|
|
102
|
+
s0.82,0.752,1.326,0.971s1.06,0.328,1.661,0.328s1.155-0.109,1.661-0.328s0.948-0.542,1.326-0.971s0.675-0.966,0.889-1.613
|
|
103
|
+
s0.321-1.395,0.321-2.242s-0.107-1.593-0.321-2.235S35.25,45.501,34.872,45.072z M34.195,50.698
|
|
104
|
+
c-0.137,0.487-0.326,0.882-0.567,1.183s-0.515,0.518-0.82,0.649s-0.627,0.198-0.964,0.198c-0.328,0-0.641-0.07-0.937-0.212
|
|
105
|
+
s-0.561-0.364-0.793-0.67s-0.415-0.699-0.547-1.183s-0.203-1.066-0.212-1.75c0.009-0.702,0.082-1.294,0.219-1.777
|
|
106
|
+
c0.137-0.483,0.326-0.877,0.567-1.183s0.515-0.521,0.82-0.649s0.627-0.191,0.964-0.191c0.328,0,0.641,0.068,0.937,0.205
|
|
107
|
+
s0.561,0.36,0.793,0.67s0.415,0.704,0.547,1.183s0.203,1.06,0.212,1.743C34.405,49.616,34.332,50.211,34.195,50.698z"
|
|
108
|
+
/>
|
|
109
|
+
<polygon
|
|
110
|
+
points="44.012,50.869 40.061,43.924 38.393,43.924 38.393,54 40.061,54 40.061,47.055 44.012,54 45.68,54 45.68,43.924
|
|
111
|
+
44.012,43.924 "
|
|
112
|
+
/>
|
|
113
|
+
<path
|
|
114
|
+
d="M20.5,20v-4c0-0.551,0.448-1,1-1c0.553,0,1-0.448,1-1s-0.447-1-1-1c-1.654,0-3,1.346-3,3v4c0,1.103-0.897,2-2,2
|
|
115
|
+
c-0.553,0-1,0.448-1,1s0.447,1,1,1c1.103,0,2,0.897,2,2v4c0,1.654,1.346,3,3,3c0.553,0,1-0.448,1-1s-0.447-1-1-1
|
|
116
|
+
c-0.552,0-1-0.449-1-1v-4c0-1.2-0.542-2.266-1.382-3C19.958,22.266,20.5,21.2,20.5,20z"
|
|
117
|
+
/>
|
|
118
|
+
<circle cx="28.5" cy="19.5" r="1.5" />
|
|
119
|
+
<path d="M28.5,25c-0.553,0-1,0.448-1,1v3c0,0.552,0.447,1,1,1s1-0.448,1-1v-3C29.5,25.448,29.053,25,28.5,25z" />
|
|
120
|
+
</g>
|
|
121
|
+
</svg>
|
|
122
|
+
);
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
export function GraphQLIcon({ className }: { className?: string }) {
|
|
126
|
+
return (
|
|
127
|
+
<svg
|
|
128
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
129
|
+
version="1.1"
|
|
130
|
+
id="GraphQL_Logo"
|
|
131
|
+
x="0px"
|
|
132
|
+
y="0px"
|
|
133
|
+
viewBox="0 0 400 400"
|
|
134
|
+
enableBackground="new 0 0 400 400"
|
|
135
|
+
className={className}
|
|
136
|
+
>
|
|
137
|
+
<g>
|
|
138
|
+
<g>
|
|
139
|
+
<g>
|
|
140
|
+
<rect
|
|
141
|
+
x="122"
|
|
142
|
+
y="-0.4"
|
|
143
|
+
transform="matrix(-0.866 -0.5 0.5 -0.866 163.3196 363.3136)"
|
|
144
|
+
fill="#E535AB"
|
|
145
|
+
width="16.6"
|
|
146
|
+
height="320.3"
|
|
147
|
+
/>
|
|
148
|
+
</g>
|
|
149
|
+
</g>
|
|
150
|
+
<g>
|
|
151
|
+
<g>
|
|
152
|
+
<rect
|
|
153
|
+
x="39.8"
|
|
154
|
+
y="272.2"
|
|
155
|
+
fill="#E535AB"
|
|
156
|
+
width="320.3"
|
|
157
|
+
height="16.6"
|
|
158
|
+
/>
|
|
159
|
+
</g>
|
|
160
|
+
</g>
|
|
161
|
+
<g>
|
|
162
|
+
<g>
|
|
163
|
+
<rect
|
|
164
|
+
x="37.9"
|
|
165
|
+
y="312.2"
|
|
166
|
+
transform="matrix(-0.866 -0.5 0.5 -0.866 83.0693 663.3409)"
|
|
167
|
+
fill="#E535AB"
|
|
168
|
+
width="185"
|
|
169
|
+
height="16.6"
|
|
170
|
+
/>
|
|
171
|
+
</g>
|
|
172
|
+
</g>
|
|
173
|
+
<g>
|
|
174
|
+
<g>
|
|
175
|
+
<rect
|
|
176
|
+
x="177.1"
|
|
177
|
+
y="71.1"
|
|
178
|
+
transform="matrix(-0.866 -0.5 0.5 -0.866 463.3409 283.0693)"
|
|
179
|
+
fill="#E535AB"
|
|
180
|
+
width="185"
|
|
181
|
+
height="16.6"
|
|
182
|
+
/>
|
|
183
|
+
</g>
|
|
184
|
+
</g>
|
|
185
|
+
<g>
|
|
186
|
+
<g>
|
|
187
|
+
<rect
|
|
188
|
+
x="122.1"
|
|
189
|
+
y="-13"
|
|
190
|
+
transform="matrix(-0.5 -0.866 0.866 -0.5 126.7903 232.1221)"
|
|
191
|
+
fill="#E535AB"
|
|
192
|
+
width="16.6"
|
|
193
|
+
height="185"
|
|
194
|
+
/>
|
|
195
|
+
</g>
|
|
196
|
+
</g>
|
|
197
|
+
<g>
|
|
198
|
+
<g>
|
|
199
|
+
<rect
|
|
200
|
+
x="109.6"
|
|
201
|
+
y="151.6"
|
|
202
|
+
transform="matrix(-0.5 -0.866 0.866 -0.5 266.0828 473.3766)"
|
|
203
|
+
fill="#E535AB"
|
|
204
|
+
width="320.3"
|
|
205
|
+
height="16.6"
|
|
206
|
+
/>
|
|
207
|
+
</g>
|
|
208
|
+
</g>
|
|
209
|
+
<g>
|
|
210
|
+
<g>
|
|
211
|
+
<rect x="52.5" y="107.5" fill="#E535AB" width="16.6" height="185" />
|
|
212
|
+
</g>
|
|
213
|
+
</g>
|
|
214
|
+
<g>
|
|
215
|
+
<g>
|
|
216
|
+
<rect
|
|
217
|
+
x="330.9"
|
|
218
|
+
y="107.5"
|
|
219
|
+
fill="#E535AB"
|
|
220
|
+
width="16.6"
|
|
221
|
+
height="185"
|
|
222
|
+
/>
|
|
223
|
+
</g>
|
|
224
|
+
</g>
|
|
225
|
+
<g>
|
|
226
|
+
<g>
|
|
227
|
+
<rect
|
|
228
|
+
x="262.4"
|
|
229
|
+
y="240.1"
|
|
230
|
+
transform="matrix(-0.5 -0.866 0.866 -0.5 126.7953 714.2875)"
|
|
231
|
+
fill="#E535AB"
|
|
232
|
+
width="14.5"
|
|
233
|
+
height="160.9"
|
|
234
|
+
/>
|
|
235
|
+
</g>
|
|
236
|
+
</g>
|
|
237
|
+
<path
|
|
238
|
+
fill="#E535AB"
|
|
239
|
+
d="M369.5,297.9c-9.6,16.7-31,22.4-47.7,12.8c-16.7-9.6-22.4-31-12.8-47.7c9.6-16.7,31-22.4,47.7-12.8 C373.5,259.9,379.2,281.2,369.5,297.9"
|
|
240
|
+
/>
|
|
241
|
+
<path
|
|
242
|
+
fill="#E535AB"
|
|
243
|
+
d="M90.9,137c-9.6,16.7-31,22.4-47.7,12.8c-16.7-9.6-22.4-31-12.8-47.7c9.6-16.7,31-22.4,47.7-12.8 C94.8,99,100.5,120.3,90.9,137"
|
|
244
|
+
/>
|
|
245
|
+
<path
|
|
246
|
+
fill="#E535AB"
|
|
247
|
+
d="M30.5,297.9c-9.6-16.7-3.9-38,12.8-47.7c16.7-9.6,38-3.9,47.7,12.8c9.6,16.7,3.9,38-12.8,47.7 C61.4,320.3,40.1,314.6,30.5,297.9"
|
|
248
|
+
/>
|
|
249
|
+
<path
|
|
250
|
+
fill="#E535AB"
|
|
251
|
+
d="M309.1,137c-9.6-16.7-3.9-38,12.8-47.7c16.7-9.6,38-3.9,47.7,12.8c9.6,16.7,3.9,38-12.8,47.7 C340.1,159.4,318.7,153.7,309.1,137"
|
|
252
|
+
/>
|
|
253
|
+
<path
|
|
254
|
+
fill="#E535AB"
|
|
255
|
+
d="M200,395.8c-19.3,0-34.9-15.6-34.9-34.9c0-19.3,15.6-34.9,34.9-34.9c19.3,0,34.9,15.6,34.9,34.9 C234.9,380.1,219.3,395.8,200,395.8"
|
|
256
|
+
/>
|
|
257
|
+
<path
|
|
258
|
+
fill="#E535AB"
|
|
259
|
+
d="M200,74c-19.3,0-34.9-15.6-34.9-34.9c0-19.3,15.6-34.9,34.9-34.9c19.3,0,34.9,15.6,34.9,34.9 C234.9,58.4,219.3,74,200,74"
|
|
260
|
+
/>
|
|
261
|
+
</g>
|
|
262
|
+
</svg>
|
|
263
|
+
);
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
export function ArrowDownIcon() {
|
|
267
|
+
return (
|
|
268
|
+
<svg
|
|
269
|
+
width="10"
|
|
270
|
+
height="5"
|
|
271
|
+
viewBox="0 0 10 5"
|
|
272
|
+
fill="currentColor"
|
|
273
|
+
stroke="currentColor"
|
|
274
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
275
|
+
>
|
|
276
|
+
<path d="M5 5L9.33013 0.5H0.669873L5 5Z" />
|
|
277
|
+
</svg>
|
|
278
|
+
);
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
export function ArrowRightIcon() {
|
|
282
|
+
return (
|
|
283
|
+
<svg
|
|
284
|
+
width="5"
|
|
285
|
+
height="10"
|
|
286
|
+
viewBox="0 0 5 10"
|
|
287
|
+
fill="currentColor"
|
|
288
|
+
stroke="currentColor"
|
|
289
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
290
|
+
>
|
|
291
|
+
<path d="M5 5L0.669873 9.33013V0.669873L5 5Z" />
|
|
292
|
+
</svg>
|
|
293
|
+
);
|
|
294
|
+
}
|
|
295
|
+
export function PuzzleIcon() {
|
|
296
|
+
return (
|
|
297
|
+
<svg
|
|
298
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
299
|
+
fill="none"
|
|
300
|
+
viewBox="0 0 24 24"
|
|
301
|
+
strokeWidth="1.5"
|
|
302
|
+
stroke="currentColor"
|
|
303
|
+
>
|
|
304
|
+
<path
|
|
305
|
+
strokeLinecap="round"
|
|
306
|
+
strokeLinejoin="round"
|
|
307
|
+
d="M14.25 6.087c0-.355.186-.676.401-.959.221-.29.349-.634.349-1.003 0-1.036-1.007-1.875-2.25-1.875s-2.25.84-2.25 1.875c0 .369.128.713.349 1.003.215.283.401.604.401.959v0a.64.64 0 0 1-.657.643 48.39 48.39 0 0 1-4.163-.3c.186 1.613.293 3.25.315 4.907a.656.656 0 0 1-.658.663v0c-.355 0-.676-.186-.959-.401a1.647 1.647 0 0 0-1.003-.349c-1.036 0-1.875 1.007-1.875 2.25s.84 2.25 1.875 2.25c.369 0 .713-.128 1.003-.349.283-.215.604-.401.959-.401v0c.31 0 .555.26.532.57a48.039 48.039 0 0 1-.642 5.056c1.518.19 3.058.309 4.616.354a.64.64 0 0 0 .657-.643v0c0-.355-.186-.676-.401-.959a1.647 1.647 0 0 1-.349-1.003c0-1.035 1.008-1.875 2.25-1.875 1.243 0 2.25.84 2.25 1.875 0 .369-.128.713-.349 1.003-.215.283-.4.604-.4.959v0c0 .333.277.599.61.58a48.1 48.1 0 0 0 5.427-.63 48.05 48.05 0 0 0 .582-4.717.532.532 0 0 0-.533-.57v0c-.355 0-.676.186-.959.401-.29.221-.634.349-1.003.349-1.035 0-1.875-1.007-1.875-2.25s.84-2.25 1.875-2.25c.37 0 .713.128 1.003.349.283.215.604.401.96.401v0a.656.656 0 0 0 .658-.663 48.422 48.422 0 0 0-.37-5.36c-1.886.342-3.81.574-5.766.689a.578.578 0 0 1-.61-.58v0Z"
|
|
308
|
+
/>
|
|
309
|
+
</svg>
|
|
310
|
+
);
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
export function NavigatorIcon() {
|
|
314
|
+
return (
|
|
315
|
+
<svg
|
|
316
|
+
width="18"
|
|
317
|
+
height="16"
|
|
318
|
+
viewBox="0 0 16 14"
|
|
319
|
+
fill="none"
|
|
320
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
321
|
+
stroke="currentColor"
|
|
322
|
+
>
|
|
323
|
+
<path
|
|
324
|
+
d="M8.27572 8.58057L0.942383 4.58057L8.27572 0.580566L15.609 4.58057L8.27572 8.58057ZM8.27572 11.2472L1.32572 7.4639L2.72572 6.69723L8.27572 9.73057L13.8257 6.69723L15.2257 7.4639L8.27572 11.2472ZM8.27572 13.9139L1.32572 10.1306L2.72572 9.3639L8.27572 12.3972L13.8257 9.3639L15.2257 10.1306L8.27572 13.9139ZM8.27572 7.0639L12.8257 4.58057L8.27572 2.09723L3.72572 4.58057L8.27572 7.0639Z"
|
|
325
|
+
fill="#6b7280"
|
|
326
|
+
/>
|
|
327
|
+
</svg>
|
|
328
|
+
);
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
export function FormEditIcon({ className }: { className?: string }) {
|
|
332
|
+
return (
|
|
333
|
+
<svg
|
|
334
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
335
|
+
fill="none"
|
|
336
|
+
viewBox="0 0 24 24"
|
|
337
|
+
strokeWidth={1.5}
|
|
338
|
+
stroke="currentColor"
|
|
339
|
+
className={className}
|
|
340
|
+
>
|
|
341
|
+
<path
|
|
342
|
+
strokeLinecap="round"
|
|
343
|
+
strokeLinejoin="round"
|
|
344
|
+
d="M3.375 19.5h17.25m-17.25 0a1.125 1.125 0 0 1-1.125-1.125M3.375 19.5h7.5c.621 0 1.125-.504 1.125-1.125m-9.75 0V5.625m0 12.75v-1.5c0-.621.504-1.125 1.125-1.125m18.375 2.625V5.625m0 12.75c0 .621-.504 1.125-1.125 1.125m1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125m0 3.75h-7.5A1.125 1.125 0 0 1 12 18.375m9.75-12.75c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125m19.5 0v1.5c0 .621-.504 1.125-1.125 1.125M2.25 5.625v1.5c0 .621.504 1.125 1.125 1.125m0 0h17.25m-17.25 0h7.5c.621 0 1.125.504 1.125 1.125M3.375 8.25c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125m17.25-3.75h-7.5c-.621 0-1.125.504-1.125 1.125m8.625-1.125c.621 0 1.125.504 1.125 1.125v1.5c0 .621-.504 1.125-1.125 1.125m-17.25 0h7.5m-7.5 0c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125M12 10.875v-1.5m0 1.5c0 .621-.504 1.125-1.125 1.125M12 10.875c0 .621.504 1.125 1.125 1.125m-2.25 0c.621 0 1.125.504 1.125 1.125M13.125 12h7.5m-7.5 0c-.621 0-1.125.504-1.125 1.125M20.625 12c.621 0 1.125.504 1.125 1.125v1.5c0 .621-.504 1.125-1.125 1.125m-17.25 0h7.5M12 14.625v-1.5m0 1.5c0 .621-.504 1.125-1.125 1.125M12 14.625c0 .621.504 1.125 1.125 1.125m-2.25 0c.621 0 1.125.504 1.125 1.125m0 1.5v-1.5m0 0c0-.621.504-1.125 1.125-1.125m0 0h7.5"
|
|
345
|
+
/>
|
|
346
|
+
</svg>
|
|
347
|
+
);
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
export function RotateDeviceIcon({ className }: { className?: string }) {
|
|
351
|
+
return (
|
|
352
|
+
<svg
|
|
353
|
+
viewBox="0 0 24 24"
|
|
354
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
355
|
+
className={className}
|
|
356
|
+
stroke="currentColor"
|
|
357
|
+
fill="currentColor"
|
|
358
|
+
>
|
|
359
|
+
<path d="M21.323 8.616l-4.94-4.94a1.251 1.251 0 0 0-1.767 0l-10.94 10.94a1.251 1.251 0 0 0 0 1.768l4.94 4.94a1.25 1.25 0 0 0 1.768 0l10.94-10.94a1.251 1.251 0 0 0 0-1.768zM14 5.707L19.293 11 11.5 18.793 6.207 13.5zm-4.323 14.91a.25.25 0 0 1-.354 0l-1.47-1.47.5-.5-2-2-.5.5-1.47-1.47a.25.25 0 0 1 0-.354L5.5 14.207l5.293 5.293zm10.94-10.94l-.617.616L14.707 5l.616-.616a.25.25 0 0 1 .354 0l4.94 4.94a.25.25 0 0 1 0 .353zm1.394 6.265V18a3.003 3.003 0 0 1-3 3h-3.292l1.635 1.634-.707.707-2.848-2.847 2.848-2.848.707.707L15.707 20h3.304a2.002 2.002 0 0 0 2-2v-2.058zM4 9H3V7a3.003 3.003 0 0 1 3-3h3.293L7.646 2.354l.707-.707 2.848 2.847L8.354 7.34l-.707-.707L9.28 5H6a2.002 2.002 0 0 0-2 2z" />
|
|
360
|
+
<path fill="none" d="M0 0h24v24H0z" />
|
|
361
|
+
</svg>
|
|
362
|
+
);
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
export function CompareIcon({ className }: { className?: string }) {
|
|
366
|
+
return (
|
|
367
|
+
<svg
|
|
368
|
+
viewBox="0 0 24 24"
|
|
369
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
370
|
+
className={className}
|
|
371
|
+
stroke="currentColor"
|
|
372
|
+
fill="currentColor"
|
|
373
|
+
>
|
|
374
|
+
<path d="M2 4h9v1H3v15h8v1H2zm10 19h1V2h-1zM8.283 10.283l-.566-.566L4.934 12.5l2.783 2.783.566-.566L6.566 13H11v-1H6.566zM14 12h4.08l-1.54-1.54.92-.92 2.96 2.96-2.96 2.96-.92-.92L18.08 13H14v8h9V4h-9z" />
|
|
375
|
+
<path fill="none" d="M0 0h24v24H0z" />
|
|
376
|
+
</svg>
|
|
377
|
+
);
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
export function CommentIcon({ className }: { className?: string }) {
|
|
381
|
+
return (
|
|
382
|
+
<svg
|
|
383
|
+
version="1.1"
|
|
384
|
+
id="Capa_1"
|
|
385
|
+
className={className}
|
|
386
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
387
|
+
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
388
|
+
viewBox="0 0 529.668 529.668"
|
|
389
|
+
xmlSpace="preserve"
|
|
390
|
+
stroke="currentColor"
|
|
391
|
+
fill="currentColor"
|
|
392
|
+
>
|
|
393
|
+
<g id="SVGRepo_bgCarrier" strokeWidth="0"></g>
|
|
394
|
+
<g
|
|
395
|
+
id="SVGRepo_tracerCarrier"
|
|
396
|
+
strokeLinecap="round"
|
|
397
|
+
strokeLinejoin="round"
|
|
398
|
+
></g>
|
|
399
|
+
<g id="SVGRepo_iconCarrier">
|
|
400
|
+
<g>
|
|
401
|
+
<g>
|
|
402
|
+
<path d="M45.175,529.668l108.887-117.085h330.431V0H45.894L45.175,529.668z M383.896,173.016c20.527,0,37.164,16.64,37.164,37.164 c0,20.527-16.641,37.164-37.164,37.164s-37.164-16.641-37.164-37.164C346.731,189.653,363.372,173.016,383.896,173.016z M265.192,173.016c20.526,0,37.165,16.64,37.165,37.164c0,20.527-16.641,37.164-37.165,37.164 c-20.523,0-37.164-16.641-37.164-37.164C228.028,189.653,244.668,173.016,265.192,173.016z M146.488,173.016 c20.527,0,37.164,16.64,37.164,37.164c0,20.527-16.641,37.164-37.164,37.164c-20.526,0-37.164-16.641-37.164-37.164 C109.325,189.653,125.965,173.016,146.488,173.016z"></path>{" "}
|
|
403
|
+
</g>
|
|
404
|
+
</g>
|
|
405
|
+
</g>
|
|
406
|
+
</svg>
|
|
407
|
+
);
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
export function PageWizardIcon({ className }: { className?: string }) {
|
|
411
|
+
return (
|
|
412
|
+
<svg
|
|
413
|
+
version="1.1"
|
|
414
|
+
id="Layer_1"
|
|
415
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
416
|
+
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
417
|
+
viewBox="0 0 512 512"
|
|
418
|
+
xmlSpace="preserve"
|
|
419
|
+
className={className}
|
|
420
|
+
stroke="currentColor"
|
|
421
|
+
fill="currentColor"
|
|
422
|
+
>
|
|
423
|
+
<g>
|
|
424
|
+
<g>
|
|
425
|
+
<path
|
|
426
|
+
d="M454.32,219.727l-38.766-51.947l20.815-61.385c2.046-6.032,0.489-12.704-4.015-17.208
|
|
427
|
+
c-4.504-4.504-11.175-6.061-17.208-4.015l-61.384,20.815l-51.949-38.766c-5.103-3.81-11.929-4.392-17.605-1.499
|
|
428
|
+
c-5.676,2.893-9.217,8.755-9.136,15.125l0.829,64.815l-52.923,37.426c-5.201,3.678-7.863,9.989-6.867,16.282
|
|
429
|
+
c0.996,6.291,5.479,11.471,11.561,13.363l43.843,13.629L14.443,483.432c-6.535,6.534-6.535,17.131,0,23.666s17.131,6.535,23.666,0
|
|
430
|
+
l257.072-257.073l13.629,43.844c1.891,6.082,7.071,10.565,13.363,11.561c0.876,0.138,1.75,0.206,2.622,0.206
|
|
431
|
+
c5.375,0,10.494-2.595,13.66-7.072l37.426-52.923l64.815,0.828c0.071,0.001,0.143,0.001,0.214,0.001
|
|
432
|
+
c6.287,0,12.051-3.525,14.909-9.137C458.711,231.658,458.129,224.833,454.32,219.727z M367.51,212.063
|
|
433
|
+
c-5.516-0.077-10.697,2.574-13.876,7.071l-22.929,32.421c-12.767-41.075-12.097-40.949-15.933-44.786
|
|
434
|
+
c-4.112-4.112-4.736-3.485-44.786-15.934l32.423-22.928c4.496-3.181,7.14-8.37,7.071-13.876l-0.508-39.706l31.825,23.748
|
|
435
|
+
c4.415,3.294,10.167,4.206,15.382,2.437l37.606-12.753l-12.753,37.607c-1.769,5.217-0.859,10.969,2.437,15.382l23.748,31.825
|
|
436
|
+
L367.51,212.063z"
|
|
437
|
+
/>
|
|
438
|
+
</g>
|
|
439
|
+
</g>
|
|
440
|
+
<g>
|
|
441
|
+
<g>
|
|
442
|
+
<polygon
|
|
443
|
+
points="173.373,67.274 160.014,42.848 146.656,67.274 122.23,80.632 146.656,93.992 160.014,118.417 173.373,93.992
|
|
444
|
+
197.799,80.632 "
|
|
445
|
+
/>
|
|
446
|
+
</g>
|
|
447
|
+
</g>
|
|
448
|
+
<g>
|
|
449
|
+
<g>
|
|
450
|
+
<polygon
|
|
451
|
+
points="362.946,384.489 352.14,364.731 341.335,384.489 321.577,395.294 341.335,406.1 352.14,425.856 362.946,406.1
|
|
452
|
+
382.703,395.294 "
|
|
453
|
+
/>
|
|
454
|
+
</g>
|
|
455
|
+
</g>
|
|
456
|
+
<g>
|
|
457
|
+
<g>
|
|
458
|
+
<polygon
|
|
459
|
+
points="378.142,19.757 367.337,0 356.531,19.757 336.774,30.563 356.531,41.369 367.337,61.126 378.142,41.369
|
|
460
|
+
397.9,30.563 "
|
|
461
|
+
/>
|
|
462
|
+
</g>
|
|
463
|
+
</g>
|
|
464
|
+
<g>
|
|
465
|
+
<g>
|
|
466
|
+
<polygon
|
|
467
|
+
points="490.635,142.513 484.167,130.689 477.701,142.513 465.876,148.979 477.701,155.446 484.167,167.27
|
|
468
|
+
490.635,155.446 502.458,148.979 "
|
|
469
|
+
/>
|
|
470
|
+
</g>
|
|
471
|
+
</g>
|
|
472
|
+
<g>
|
|
473
|
+
<g>
|
|
474
|
+
<polygon
|
|
475
|
+
points="492.626,294.117 465.876,301.951 439.128,294.117 446.962,320.865 439.128,347.615 465.876,339.781
|
|
476
|
+
492.626,347.615 484.791,320.865 "
|
|
477
|
+
/>
|
|
478
|
+
</g>
|
|
479
|
+
</g>
|
|
480
|
+
</svg>
|
|
481
|
+
);
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
export function PageWizardLogo() {
|
|
485
|
+
return (
|
|
486
|
+
<svg
|
|
487
|
+
width="60"
|
|
488
|
+
height="60"
|
|
489
|
+
fill="white"
|
|
490
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
491
|
+
viewBox="0 0 46.05 48.36"
|
|
492
|
+
className="transition-all duration-300 ease-linear"
|
|
493
|
+
>
|
|
494
|
+
<g>
|
|
495
|
+
<path d="M45.4,18.34h-1.53c-.3,0-.55.25-.55.55s.25.55.55.55h1.53c.3,0,.55-.25.55-.55s-.25-.55-.55-.55Z"></path>
|
|
496
|
+
<path d="M45.4,20.96h-1.53c-.3,0-.55.25-.55.55s.25.55.55.55h1.53c.3,0,.55-.25.55-.55s-.25-.55-.55-.55Z"></path>
|
|
497
|
+
<path d="M31.05,43.46h-1.83c-.3,0-.55.25-.55.55s.25.55.55.55h1.83c.3,0,.55-.25.55-.55s-.25-.55-.55-.55Z"></path>
|
|
498
|
+
<path d="M31.05,45.36h-1.83c-.3,0-.55.25-.55.55s.25.55.55.55h1.83c.3,0,.55-.25.55-.55s-.25-.55-.55-.55Z"></path>
|
|
499
|
+
<path d="M31.05,47.26h-1.83c-.3,0-.55.25-.55.55s.25.55.55.55h1.83c.3,0,.55-.25.55-.55s-.25-.55-.55-.55Z"></path>
|
|
500
|
+
<path d="M17.48,43.46h-1.83c-.3,0-.55.25-.55.55s.25.55.55.55h1.83c.3,0,.55-.25.55-.55s-.25-.55-.55-.55Z"></path>
|
|
501
|
+
<path d="M17.48,45.36h-1.83c-.3,0-.55.25-.55.55s.25.55.55.55h1.83c.3,0,.55-.25.55-.55s-.25-.55-.55-.55Z"></path>
|
|
502
|
+
<path d="M17.48,47.26h-1.83c-.3,0-.55.25-.55.55s.25.55.55.55h1.83c.3,0,.55-.25.55-.55s-.25-.55-.55-.55Z"></path>
|
|
503
|
+
<path d="M44.5,25.33h-1.53c-.3,0-.55.25-.55.55s.25.55.55.55h1.53c.3,0,.55-.25.55-.55s-.25-.55-.55-.55Z"></path>
|
|
504
|
+
<path d="M44.5,27.95h-1.53c-.3,0-.55.25-.55.55s.25.55.55.55h1.53c.3,0,.55-.25.55-.55s-.25-.55-.55-.55Z"></path>
|
|
505
|
+
<path d="M10.28,31.16c0-.63-.51-1.14-1.14-1.14s-1.14.51-1.14,1.14.51,1.14,1.14,1.14,1.14-.51,1.14-1.14Z"></path>
|
|
506
|
+
<ellipse cx="1.39" cy="23.4" rx="1.14" ry="1.14"></ellipse>
|
|
507
|
+
<ellipse cx="1.14" cy="18.37" rx="1.14" ry="1.14"></ellipse>
|
|
508
|
+
<path d="M5.49,34.6c-.63,0-1.14.51-1.14,1.14s.51,1.14,1.14,1.14,1.14-.51,1.14-1.14-.51-1.14-1.14-1.14Z"></path>
|
|
509
|
+
<ellipse cx="16.56" cy="10.01" rx="1.14" ry="1.14"></ellipse>
|
|
510
|
+
<ellipse cx="14.51" cy="3.52" rx="1.14" ry="1.14"></ellipse>
|
|
511
|
+
<path d="M7.82,8.7c.06,0,.11-.01.15-.03.01,0,.03,0,.04-.01l1.78,1.97c-.05.13-.07.25-.07.36,0,.63.51,1.14,1.14,1.14s1.14-.51,1.14-1.14-.51-1.14-1.14-1.14c-.08,0-.15.02-.21.04,0,0-.02,0-.03,0l-1.74-1.93c.05-.13.08-.27.08-.42,0-.63-.51-1.14-1.14-1.14s-1.14.51-1.14,1.14.51,1.14,1.14,1.14Z"></path>
|
|
512
|
+
<path d="M8.12,16c0-.17-.08-.33-.21-.43l-3.13-2.43s0-.02,0-.02c0-.03.02-.06.02-.09,0-.63-.51-1.14-1.14-1.14s-1.14.51-1.14,1.14.51,1.14,1.14,1.14c.16,0,.31-.04.48-.12l2.88,2.23v8.98l-3.5,3.05s-.03,0-.04-.01c-.06-.02-.13-.04-.2-.04-.63,0-1.14.51-1.14,1.14s.51,1.14,1.14,1.14,1.14-.51,1.14-1.14c0-.11-.02-.23-.07-.36l3.58-3.12c.12-.11.19-.26.19-.41v-9.5Z"></path>
|
|
513
|
+
<path d="M29.14,37.09v-4.15c1.03-.63,1.96-1.41,2.75-2.32h4.19c.16,0,.3-.07.41-.18l3.89-4.32c.09-.1.14-.24.14-.38l-.11-6.71c.36-.21.58-.58.58-.98,0-.63-.51-1.14-1.14-1.14s-1.14.51-1.14,1.14c0,.41.23.78.59.99l.11,6.5-3.59,3.98h-3.08c1.38-2.01,2.11-4.35,2.11-6.78,0-6.59-5.32-11.95-11.86-11.95-.31,0-.61.02-.9.04V3.31c.37-.2.6-.58.6-.99,0-.63-.51-1.14-1.14-1.14s-1.14.51-1.14,1.14c0,.4.21.76.57.97v7.68c-2.72.47-5.21,1.89-7.02,4.01-1.84,2.16-2.85,4.91-2.85,7.75,0,3.04,1.15,5.94,3.23,8.17,0,0,0,0,0,0,0,.03-.01.05-.01.09v3.4l-3.91,3.32c-.15-.06-.29-.09-.44-.09-.63,0-1.14.51-1.14,1.14s.51,1.14,1.14,1.14,1.14-.51,1.14-1.14c0-.05-.01-.09-.02-.13,0-.01,0-.02,0-.04l4.15-3.53c.12-.1.19-.26.19-.42v-2.71c.95.79,2.02,1.43,3.19,1.9v5.31l-2.23,2.46c-.2.22-.19.57.04.78.1.09.23.14.37.14.15,0,.3-.07.41-.18l2.37-2.61c.09-.1.14-.23.14-.37v-5.14c1.08.31,2.17.47,3.27.47.02,0,.03,0,.05,0v13.12c0,.3.25.55.55.55s.55-.25.55-.55v-13.18c1.34-.13,2.66-.5,3.9-1.09v3.56c0,.3.25.55.55.55s.55-.25.55-.55ZM33.75,22.74c0,5.98-4.83,10.85-10.76,10.85s-10.76-4.87-10.76-10.85,4.83-10.85,10.76-10.85,10.76,4.87,10.76,10.85Z"></path>
|
|
514
|
+
<path d="M42.45,32.42l-5.81,6.04h-3.46c-.14,0-.28.06-.39.16l-1.19,1.17s-.03,0-.04-.01c-.06-.02-.11-.03-.18-.03-.63,0-1.14.51-1.14,1.14s.51,1.14,1.14,1.14,1.14-.51,1.14-1.14c0-.12-.02-.25-.07-.38l.96-.94h3.47c.15,0,.29-.06.4-.17l5.97-6.21c.1-.11.16-.25.15-.39s-.06-.28-.17-.39c-.22-.21-.56-.2-.78.01Z"></path>
|
|
515
|
+
<path d="M26.92,5.8c.3,0,.55-.25.55-.55v-2.82c0-.3-.25-.55-.55-.55s-.55.25-.55.55v2.82c0,.3.25.55.55.55Z"></path>
|
|
516
|
+
<rect x="26.61" y="17.46" width="2.63" height="9.29"></rect>
|
|
517
|
+
<path d="M19.17,17.46l-4.1,9.29h2.68l.72-1.8h3.94l.72,1.8h2.73l-4.11-9.29h-2.59ZM19.25,23l1.19-2.97,1.19,2.97h-2.38Z"></path>
|
|
518
|
+
<path d="M41.16,3.12c.87.24,1.45.79,1.71,1.65.1.31.17.62.25.94,0,.02.02.03.02.05.09-.31.17-.62.26-.93.22-.8.73-1.35,1.52-1.63.27-.09.55-.15.83-.22.11-.03.21-.05.32-.08-.03-.01-.04-.02-.05-.02-.3-.08-.6-.15-.89-.23-.83-.23-1.4-.75-1.67-1.56-.1-.3-.17-.61-.25-.92-.02-.05-.03-.1-.04-.15-.02.01-.02.02-.02.03-.08.29-.15.58-.23.88-.21.81-.71,1.36-1.51,1.66-.2.07-.42.12-.63.17-.17.05-.35.09-.54.14h0s.04.03.05.03c.3.08.59.15.89.23Z"></path>
|
|
519
|
+
<path d="M31.32,8.28c2.09.57,3.47,1.9,4.1,3.96.23.75.4,1.51.6,2.26.01.04.02.08.03.11.21-.76.4-1.5.61-2.25.54-1.93,1.75-3.25,3.64-3.93.64-.23,1.32-.36,1.99-.54.25-.07.5-.13.77-.2-.06-.02-.09-.03-.12-.04-.71-.19-1.43-.36-2.15-.56-2-.55-3.36-1.79-4.02-3.75-.25-.72-.4-1.47-.6-2.22-.03-.12-.07-.24-.1-.36-.03.02-.03.04-.04.06-.18.7-.37,1.41-.56,2.11-.52,1.94-1.73,3.28-3.63,3.98-.49.18-1.01.28-1.51.42-.42.11-.84.22-1.29.33h0c.07.03.1.03.13.04.71.18,1.43.36,2.14.55Z"></path>
|
|
520
|
+
<path d="M45.1,12.83c-.83-.23-1.4-.75-1.67-1.56-.1-.3-.17-.61-.25-.92-.02-.05-.03-.1-.04-.15-.02.01-.02.02-.02.03-.08.29-.15.58-.23.88-.21.81-.71,1.36-1.51,1.66-.2.07-.42.12-.63.17-.17.05-.35.09-.54.14h0s.04.03.05.03c.3.08.59.15.89.23.87.24,1.45.79,1.71,1.65.1.31.17.62.25.94,0,.02.02.03.02.05.09-.31.17-.62.26-.93.22-.8.73-1.35,1.52-1.63.27-.09.55-.15.83-.22.11-.03.21-.05.32-.08-.03-.01-.04-.02-.05-.02-.3-.08-.6-.15-.89-.23Z"></path>
|
|
521
|
+
</g>
|
|
522
|
+
</svg>
|
|
523
|
+
);
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
export function UploadCloudIcon() {
|
|
527
|
+
return (
|
|
528
|
+
<svg
|
|
529
|
+
width="42"
|
|
530
|
+
height="42"
|
|
531
|
+
viewBox="0 0 42 42"
|
|
532
|
+
fill="none"
|
|
533
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
534
|
+
>
|
|
535
|
+
<g clipPath="url(#clip0_237_1224)">
|
|
536
|
+
<path
|
|
537
|
+
fillRule="evenodd"
|
|
538
|
+
clipRule="evenodd"
|
|
539
|
+
d="M11.5658 3.52275C14.1894 1.26035 17.5356 0.0108636 21 0C28.0613 0 33.9229 5.25 34.5608 12.0199C38.7397 12.6105 42 16.1096 42 20.4041C42 25.1186 38.0677 28.875 33.3034 28.875H26.25C25.9019 28.875 25.5681 28.7367 25.3219 28.4906C25.0758 28.2444 24.9375 27.9106 24.9375 27.5625C24.9375 27.2144 25.0758 26.8806 25.3219 26.6344C25.5681 26.3883 25.9019 26.25 26.25 26.25H33.306C36.6949 26.25 39.375 23.5935 39.375 20.4041C39.375 17.2121 36.6975 14.5556 33.3034 14.5556H31.9909V13.2431C31.9935 7.41563 27.111 2.625 21 2.625C18.1647 2.63633 15.4267 3.66039 13.2799 5.5125C11.2928 7.224 10.2533 9.28725 10.2533 10.9069V12.0829L9.08512 12.2115C5.418 12.6131 2.625 15.624 2.625 19.2097C2.625 23.0606 5.85375 26.25 9.92513 26.25H15.75C16.0981 26.25 16.4319 26.3883 16.6781 26.6344C16.9242 26.8806 17.0625 27.2144 17.0625 27.5625C17.0625 27.9106 16.9242 28.2444 16.6781 28.4906C16.4319 28.7367 16.0981 28.875 15.75 28.875H9.92513C4.4835 28.875 0 24.5858 0 19.2097C0 14.5819 3.32325 10.7494 7.72275 9.77812C8.09812 7.51275 9.555 5.25525 11.5658 3.52275Z"
|
|
540
|
+
fill="#69635F"
|
|
541
|
+
/>
|
|
542
|
+
<path
|
|
543
|
+
fillRule="evenodd"
|
|
544
|
+
clipRule="evenodd"
|
|
545
|
+
d="M20.0699 10.8827C20.1918 10.7604 20.3366 10.6635 20.4961 10.5973C20.6555 10.5311 20.8265 10.4971 20.9991 10.4971C21.1718 10.4971 21.3427 10.5311 21.5022 10.5973C21.6616 10.6635 21.8065 10.7604 21.9284 10.8827L29.8034 18.7577C30.0498 19.0041 30.1883 19.3384 30.1883 19.6869C30.1883 20.0355 30.0498 20.3697 29.8034 20.6162C29.5569 20.8626 29.2227 21.0011 28.8741 21.0011C28.5256 21.0011 28.1913 20.8626 27.9449 20.6162L22.3116 14.9803V38.0619C22.3116 38.41 22.1733 38.7439 21.9272 38.99C21.6811 39.2361 21.3472 39.3744 20.9991 39.3744C20.651 39.3744 20.3172 39.2361 20.071 38.99C19.8249 38.7439 19.6866 38.41 19.6866 38.0619V14.9803L14.0534 20.6162C13.8069 20.8626 13.4727 21.0011 13.1241 21.0011C12.7756 21.0011 12.4413 20.8626 12.1949 20.6162C11.9484 20.3697 11.81 20.0355 11.81 19.6869C11.81 19.3384 11.9484 19.0041 12.1949 18.7577L20.0699 10.8827Z"
|
|
546
|
+
fill="#69635F"
|
|
547
|
+
/>
|
|
548
|
+
</g>
|
|
549
|
+
<defs>
|
|
550
|
+
<clipPath id="clip0_237_1224">
|
|
551
|
+
<rect width="42" height="42" fill="white" />
|
|
552
|
+
</clipPath>
|
|
553
|
+
</defs>
|
|
554
|
+
</svg>
|
|
555
|
+
);
|
|
556
|
+
}
|
|
557
|
+
export function SparkleIconBig() {
|
|
558
|
+
return (
|
|
559
|
+
<svg
|
|
560
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
561
|
+
width="80"
|
|
562
|
+
height="75"
|
|
563
|
+
viewBox="10 20 50 50"
|
|
564
|
+
stroke="currentColor"
|
|
565
|
+
fill="currentColor"
|
|
566
|
+
>
|
|
567
|
+
<path d="M32.4918 26.0411L33.5 21L34.5082 26.0411C36.3703 35.3518 43.6482 42.6297 52.9589 44.4918L58 45.5L52.9589 46.5082C43.6482 48.3703 36.3703 55.6482 34.5082 64.9589L33.5 70L32.4918 64.9589C30.6297 55.6482 23.3518 48.3703 14.0411 46.5082L9 45.5L14.0411 44.4918C23.3518 42.6297 30.6297 35.3518 32.4918 26.0411Z" />
|
|
568
|
+
</svg>
|
|
569
|
+
);
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
export function SparkleIconSmall() {
|
|
573
|
+
return (
|
|
574
|
+
<svg
|
|
575
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
576
|
+
width="40"
|
|
577
|
+
height="35"
|
|
578
|
+
viewBox="15 20 40 50"
|
|
579
|
+
stroke="currentColor"
|
|
580
|
+
fill="currentColor"
|
|
581
|
+
>
|
|
582
|
+
<path d="M32.4918 26.0411L33.5 21L34.5082 26.0411C36.3703 35.3518 43.6482 42.6297 52.9589 44.4918L58 45.5L52.9589 46.5082C43.6482 48.3703 36.3703 55.6482 34.5082 64.9589L33.5 70L32.4918 64.9589C30.6297 55.6482 23.3518 48.3703 14.0411 46.5082L9 45.5L14.0411 44.4918C23.3518 42.6297 30.6297 35.3518 32.4918 26.0411Z" />
|
|
583
|
+
</svg>
|
|
584
|
+
);
|
|
585
|
+
}
|