@node-projects/web-component-designer 0.0.32 → 0.0.36
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/README.md +7 -0
- package/assets/images/chromeDevtools/LICENSE +27 -0
- package/assets/images/chromeDevtools/align-content-center-icon.svg +70 -0
- package/assets/images/chromeDevtools/align-content-flex-end-icon.svg +1 -0
- package/assets/images/chromeDevtools/align-content-flex-start-icon.svg +66 -0
- package/assets/images/chromeDevtools/align-content-space-around-icon.svg +1 -0
- package/assets/images/chromeDevtools/align-content-space-between-icon.svg +1 -0
- package/assets/images/chromeDevtools/align-content-space-evenly-icon.svg +1 -0
- package/assets/images/chromeDevtools/align-content-stretch-icon.svg +53 -0
- package/assets/images/chromeDevtools/align-items-baseline-icon.svg +1 -0
- package/assets/images/chromeDevtools/align-items-center-icon.svg +1 -0
- package/assets/images/chromeDevtools/align-items-end-icon.svg +1 -0
- package/assets/images/chromeDevtools/align-items-flex-end-icon.svg +1 -0
- package/assets/images/chromeDevtools/align-items-flex-start-icon.svg +57 -0
- package/assets/images/chromeDevtools/align-items-start-icon.svg +57 -0
- package/assets/images/chromeDevtools/align-items-stretch-icon.svg +1 -0
- package/assets/images/chromeDevtools/align-self-center-icon.svg +1 -0
- package/assets/images/chromeDevtools/align-self-flex-end-icon.svg +1 -0
- package/assets/images/chromeDevtools/align-self-flex-start-icon.svg +57 -0
- package/assets/images/chromeDevtools/align-self-stretch-icon.svg +1 -0
- package/assets/images/chromeDevtools/baseline-icon.svg +1 -0
- package/assets/images/chromeDevtools/flex-direction-column-icon.svg +1 -0
- package/assets/images/chromeDevtools/flex-direction-icon.svg +1 -0
- package/assets/images/chromeDevtools/flex-direction-row-icon.svg +1 -0
- package/assets/images/chromeDevtools/flex-nowrap-icon.svg +5 -0
- package/assets/images/chromeDevtools/flex-wrap-icon.svg +8 -0
- package/assets/images/chromeDevtools/info.txt +2 -0
- package/assets/images/chromeDevtools/justify-content-center-icon.svg +1 -0
- package/assets/images/chromeDevtools/justify-content-end-icon.svg +71 -0
- package/assets/images/chromeDevtools/justify-content-flex-end-icon.svg +71 -0
- package/assets/images/chromeDevtools/justify-content-flex-start-icon.svg +1 -0
- package/assets/images/chromeDevtools/justify-content-space-around-icon.svg +1 -0
- package/assets/images/chromeDevtools/justify-content-space-between-icon.svg +1 -0
- package/assets/images/chromeDevtools/justify-content-space-evenly-icon.svg +1 -0
- package/assets/images/chromeDevtools/justify-content-start-icon.svg +1 -0
- package/assets/images/chromeDevtools/justify-items-center-icon.svg +1 -0
- package/assets/images/chromeDevtools/justify-items-end-icon.svg +57 -0
- package/assets/images/chromeDevtools/justify-items-start-icon.svg +1 -0
- package/assets/images/chromeDevtools/justify-items-stretch-icon.svg +1 -0
- package/dist/commandHandling/CommandType.d.ts +1 -0
- package/dist/commandHandling/CommandType.js +1 -0
- package/dist/elements/controls/DesignerTabControl.js +94 -86
- package/dist/elements/controls/ImageButtonListSelector copy.d.ts +17 -0
- package/dist/elements/controls/ImageButtonListSelector copy.js +82 -0
- package/dist/elements/controls/ImageButtonListSelector.d.ts +17 -0
- package/dist/elements/controls/ImageButtonListSelector.js +81 -0
- package/dist/elements/controls/ThicknessEditor.d.ts +17 -0
- package/dist/elements/controls/ThicknessEditor.js +80 -0
- package/dist/elements/documentContainer.js +20 -13
- package/dist/elements/helper/CssAttributeParser.js +3 -3
- package/dist/elements/helper/CssCombiner.js +1 -1
- package/dist/elements/helper/IndentedTextWriter.js +3 -5
- package/dist/elements/helper/Screenshot.js +4 -0
- package/dist/elements/helper/contextMenu/ContextMenuHelper.js +59 -53
- package/dist/elements/helper/w3color.js +15 -17
- package/dist/elements/item/DesignItem.js +21 -15
- package/dist/elements/services/BaseServiceContainer.js +1 -3
- package/dist/elements/services/DefaultServiceBootstrap.js +2 -0
- package/dist/elements/services/GlobalContext.js +8 -6
- package/dist/elements/services/InstanceServiceContainer.js +1 -4
- package/dist/elements/services/ServiceContainer.d.ts +3 -0
- package/dist/elements/services/ServiceContainer.js +11 -10
- package/dist/elements/services/bindingsService/BaseCustomWebcomponentBindingsService.js +1 -1
- package/dist/elements/services/bindingsService/SpecialTagsBindingService.js +5 -5
- package/dist/elements/services/contentService/ContentService.js +2 -1
- package/dist/elements/services/copyPasteService/CopyPasteService.d.ts +8 -0
- package/dist/elements/services/copyPasteService/CopyPasteService.js +12 -0
- package/dist/elements/services/copyPasteService/ICopyPasteService copy.d.ts +0 -0
- package/dist/elements/services/copyPasteService/ICopyPasteService copy.js +1 -0
- package/dist/elements/services/copyPasteService/ICopyPasteService.d.ts +7 -0
- package/dist/elements/services/copyPasteService/ICopyPasteService.js +1 -0
- package/dist/elements/services/elementsService/JsonFileElementsService.js +14 -10
- package/dist/elements/services/elementsService/PreDefinedElementsService.js +6 -4
- package/dist/elements/services/htmlParserService/NodeHtmlParserService.js +2 -1
- package/dist/elements/services/htmlWriterService/IHtmlWriterOptions.js +3 -0
- package/dist/elements/services/placementService/DefaultPlacementService.d.ts +3 -4
- package/dist/elements/services/placementService/DefaultPlacementService.js +10 -10
- package/dist/elements/services/placementService/FlexBoxPlacementService.d.ts +3 -4
- package/dist/elements/services/placementService/FlexBoxPlacementService.js +3 -3
- package/dist/elements/services/placementService/GridPlacementService.d.ts +3 -4
- package/dist/elements/services/placementService/GridPlacementService.js +3 -3
- package/dist/elements/services/placementService/IPlacementService.d.ts +3 -4
- package/dist/elements/services/popupService/PopupService.js +3 -1
- package/dist/elements/services/propertiesService/DefaultEditorTypesService.js +10 -0
- package/dist/elements/services/propertiesService/propertyEditors/BasePropertyEditor.js +4 -1
- package/dist/elements/services/propertiesService/propertyEditors/ImageButtonListPropertyEditor copy.d.ts +8 -0
- package/dist/elements/services/propertiesService/propertyEditors/ImageButtonListPropertyEditor copy.js +40 -0
- package/dist/elements/services/propertiesService/propertyEditors/ImageButtonListPropertyEditor.d.ts +8 -0
- package/dist/elements/services/propertiesService/propertyEditors/ImageButtonListPropertyEditor.js +40 -0
- package/dist/elements/services/propertiesService/propertyEditors/JsonPropertyEditor.js +7 -6
- package/dist/elements/services/propertiesService/propertyEditors/JsonPropertyPopupEditor.js +6 -6
- package/dist/elements/services/propertiesService/propertyEditors/TextPropertyEditor.js +1 -2
- package/dist/elements/services/propertiesService/propertyEditors/ThicknessPropertyEditor.d.ts +8 -0
- package/dist/elements/services/propertiesService/propertyEditors/ThicknessPropertyEditor.js +14 -0
- package/dist/elements/services/propertiesService/services/AttributesPropertiesService.js +1 -3
- package/dist/elements/services/propertiesService/services/BaseCustomWebComponentPropertiesService.js +1 -4
- package/dist/elements/services/propertiesService/services/CommonPropertiesService.js +21 -23
- package/dist/elements/services/propertiesService/services/CssPropertiesService.d.ts +3 -2
- package/dist/elements/services/propertiesService/services/CssPropertiesService.js +194 -184
- package/dist/elements/services/propertiesService/services/ListPropertiesService.js +2 -2
- package/dist/elements/services/propertiesService/services/Lit2PropertiesService.js +1 -4
- package/dist/elements/services/propertiesService/services/LitElementPropertiesService.js +1 -4
- package/dist/elements/services/propertiesService/services/NativeElementsPropertiesService.js +72 -75
- package/dist/elements/services/propertiesService/services/PolymerPropertiesService.js +1 -4
- package/dist/elements/services/propertiesService/services/UnkownElementPropertiesService.js +1 -3
- package/dist/elements/services/selectionService/SelectionService.js +3 -4
- package/dist/elements/services/undoService/ChangeGroup.js +6 -2
- package/dist/elements/services/undoService/UndoService.js +3 -5
- package/dist/elements/services/undoService/transactionItems/AttributeChangeAction.js +5 -0
- package/dist/elements/services/undoService/transactionItems/CssStyleChangeAction.js +5 -0
- package/dist/elements/services/undoService/transactionItems/DeleteAction.js +5 -0
- package/dist/elements/services/undoService/transactionItems/InsertAction.js +4 -0
- package/dist/elements/services/undoService/transactionItems/MoveElementInDomAction.js +7 -0
- package/dist/elements/services/undoService/transactionItems/PropertyChangeAction.js +5 -0
- package/dist/elements/widgets/bindableObjectsBrowser/bindable-objects-browser.js +27 -24
- package/dist/elements/widgets/bindings/BindingsEditor.js +6 -6
- package/dist/elements/widgets/codeView/code-view-ace.js +12 -7
- package/dist/elements/widgets/codeView/code-view-code-mirror.js +18 -13
- package/dist/elements/widgets/codeView/code-view-monaco.js +16 -11
- package/dist/elements/widgets/demoView/demoView.js +24 -22
- package/dist/elements/widgets/designerView/DesignContext.js +1 -3
- package/dist/elements/widgets/designerView/IDesignerCanvas.d.ts +2 -2
- package/dist/elements/widgets/designerView/Snaplines.js +8 -5
- package/dist/elements/widgets/designerView/designerCanvas.d.ts +5 -4
- package/dist/elements/widgets/designerView/designerCanvas.js +131 -113
- package/dist/elements/widgets/designerView/designerView.d.ts +1 -0
- package/dist/elements/widgets/designerView/designerView.js +117 -81
- package/dist/elements/widgets/designerView/extensions/AbstractExtension.js +5 -1
- package/dist/elements/widgets/designerView/extensions/AltToEnterContainerExtension.js +2 -0
- package/dist/elements/widgets/designerView/extensions/AltToEnterContainerExtensionProvider.js +4 -6
- package/dist/elements/widgets/designerView/extensions/CanvasExtension copy.d.ts +10 -0
- package/dist/elements/widgets/designerView/extensions/CanvasExtension copy.js +29 -0
- package/dist/elements/widgets/designerView/extensions/CanvasExtensionProvider copy.d.ts +10 -0
- package/dist/elements/widgets/designerView/extensions/CanvasExtensionProvider copy.js +15 -0
- package/dist/elements/widgets/designerView/extensions/CanvasExtensionProvider.js +3 -5
- package/dist/elements/widgets/designerView/extensions/EditText/EditTextExtension.js +11 -8
- package/dist/elements/widgets/designerView/extensions/ExtensionManager.js +1 -0
- package/dist/elements/widgets/designerView/extensions/GrayOutExtension.js +1 -0
- package/dist/elements/widgets/designerView/extensions/GrayOutExtensionProvider.js +3 -5
- package/dist/elements/widgets/designerView/extensions/GridExtensionProvider.js +5 -7
- package/dist/elements/widgets/designerView/extensions/InvisibleDivExtension.js +1 -0
- package/dist/elements/widgets/designerView/extensions/InvisibleDivExtensionProvider.js +3 -5
- package/dist/elements/widgets/designerView/extensions/MouseOverExtension.js +1 -0
- package/dist/elements/widgets/designerView/extensions/MouseOverExtensionProvider.js +3 -5
- package/dist/elements/widgets/designerView/extensions/PathExtension.js +4 -0
- package/dist/elements/widgets/designerView/extensions/PermamentCursorExtension.d.ts +10 -0
- package/dist/elements/widgets/designerView/extensions/PermamentCursorExtension.js +29 -0
- package/dist/elements/widgets/designerView/extensions/PermamentCursorExtensionProvider copy.d.ts +10 -0
- package/dist/elements/widgets/designerView/extensions/PermamentCursorExtensionProvider copy.js +15 -0
- package/dist/elements/widgets/designerView/extensions/PermamentCursorExtensionProvider.d.ts +10 -0
- package/dist/elements/widgets/designerView/extensions/PermamentCursorExtensionProvider.js +15 -0
- package/dist/elements/widgets/designerView/extensions/PositionExtension.js +4 -0
- package/dist/elements/widgets/designerView/extensions/PrimarySelectionDefaultExtension.js +2 -0
- package/dist/elements/widgets/designerView/extensions/ResizeExtension.js +14 -4
- package/dist/elements/widgets/designerView/extensions/ResizeExtensionProvider.js +1 -0
- package/dist/elements/widgets/designerView/extensions/RotateExtensionProvider.js +3 -5
- package/dist/elements/widgets/designerView/extensions/SelectionDefaultExtension.js +1 -0
- package/dist/elements/widgets/designerView/extensions/SelectionDefaultExtensionProvider.js +3 -5
- package/dist/elements/widgets/designerView/extensions/TransformOriginExtension.js +3 -0
- package/dist/elements/widgets/designerView/extensions/TransformOriginExtensionProvider.js +3 -5
- package/dist/elements/widgets/designerView/extensions/contextMenu/MultipleItemsSelectedContextMenu.js +1 -3
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/AbstractDesignerPointerExtension.d.ts +22 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/AbstractDesignerPointerExtension.js +82 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/AbstractExtension.d.ts +22 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/AbstractExtension.js +78 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/CursorRectangleExtension.d.ts +7 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/CursorRectangleExtension.js +20 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/CursorRectanglePointerExtension copy.d.ts +7 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/CursorRectanglePointerExtension copy.js +20 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/CursorRectanglePointerExtension.d.ts +7 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/CursorRectanglePointerExtension.js +20 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/IDesignerExtension.d.ts +5 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/IDesignerExtension.js +1 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/IDesignerExtensionProvider.d.ts +9 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/IDesignerExtensionProvider.js +1 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/IDesignerPointerExtension.d.ts +5 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/IDesignerPointerExtension.js +1 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/IDesignerPointerExtensionProvider.d.ts +9 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/IDesignerPointerExtensionProvider.js +1 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/RulerExtension.d.ts +7 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/RulerExtension.js +20 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/RulerPointerExtension.d.ts +7 -0
- package/dist/elements/widgets/designerView/extensions/pointerExtensions/RulerPointerExtension.js +20 -0
- package/dist/elements/widgets/designerView/overlay/EditTextOverlay.js +3 -3
- package/dist/elements/widgets/designerView/overlayLayerView.js +28 -24
- package/dist/elements/widgets/designerView/tools/DrawElementTool.js +5 -1
- package/dist/elements/widgets/designerView/tools/DrawPathTool.d.ts +0 -1
- package/dist/elements/widgets/designerView/tools/DrawPathTool.js +4 -3
- package/dist/elements/widgets/designerView/tools/MagicWandSelectorTool.d.ts +0 -1
- package/dist/elements/widgets/designerView/tools/MagicWandSelectorTool.js +4 -5
- package/dist/elements/widgets/designerView/tools/PanTool.js +1 -3
- package/dist/elements/widgets/designerView/tools/PickColorTool.js +1 -3
- package/dist/elements/widgets/designerView/tools/PointerTool.d.ts +2 -1
- package/dist/elements/widgets/designerView/tools/PointerTool.js +75 -63
- package/dist/elements/widgets/designerView/tools/RectangleSelectorTool.js +10 -9
- package/dist/elements/widgets/designerView/tools/TextTool.js +1 -1
- package/dist/elements/widgets/designerView/tools/ZoomTool.js +1 -3
- package/dist/elements/widgets/miniatureView/html-2-canvas-miniature-view.js +5 -4
- package/dist/elements/widgets/paletteView/paletteElements.js +45 -45
- package/dist/elements/widgets/paletteView/paletteTreeView.js +53 -51
- package/dist/elements/widgets/paletteView/paletteView.js +9 -8
- package/dist/elements/widgets/propertyGrid/PropertyGrid.js +37 -18
- package/dist/elements/widgets/propertyGrid/PropertyGridPropertyList.js +14 -10
- package/dist/elements/widgets/treeView/treeView.js +102 -96
- package/dist/elements/widgets/treeView/treeViewExtended.js +72 -70
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1 -0
- package/dist/interfaces/IDesignerMousePoint.d.ts +2 -0
- package/package.json +1 -1
- package/tsconfig.json +1 -1
package/README.md
CHANGED
|
@@ -75,3 +75,10 @@ Your addition to your index.html should look like this:
|
|
|
75
75
|
<link rel="stylesheet" href="/node_modules/mobile-drag-drop/default.css">
|
|
76
76
|
<script src="/node_modules/mobile-drag-drop/index.js"></script>
|
|
77
77
|
<script src="/node_modules/@node-projects/web-component-designer/dist/polyfill/mobileDragDrop.js"></script>
|
|
78
|
+
|
|
79
|
+
## Copyright notice:
|
|
80
|
+
|
|
81
|
+
The Library uses Images from the Chrome Dev Tools, see
|
|
82
|
+
https://github.com/ChromeDevTools/devtools-frontend/tree/main/front_end/Images/src
|
|
83
|
+
and
|
|
84
|
+
https://github.com/ChromeDevTools/devtools-frontend/blob/main/LICENSE
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
// Copyright 2014 The Chromium Authors. All rights reserved.
|
|
2
|
+
//
|
|
3
|
+
// Redistribution and use in source and binary forms, with or without
|
|
4
|
+
// modification, are permitted provided that the following conditions are
|
|
5
|
+
// met:
|
|
6
|
+
//
|
|
7
|
+
// * Redistributions of source code must retain the above copyright
|
|
8
|
+
// notice, this list of conditions and the following disclaimer.
|
|
9
|
+
// * Redistributions in binary form must reproduce the above
|
|
10
|
+
// copyright notice, this list of conditions and the following disclaimer
|
|
11
|
+
// in the documentation and/or other materials provided with the
|
|
12
|
+
// distribution.
|
|
13
|
+
// * Neither the name of Google Inc. nor the names of its
|
|
14
|
+
// contributors may be used to endorse or promote products derived from
|
|
15
|
+
// this software without specific prior written permission.
|
|
16
|
+
//
|
|
17
|
+
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
18
|
+
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
19
|
+
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
20
|
+
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
21
|
+
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
22
|
+
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
23
|
+
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
24
|
+
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
25
|
+
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
26
|
+
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
27
|
+
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
10
|
+
inkscape:version="1.0 (4035a4f, 2020-05-01)"
|
|
11
|
+
sodipodi:docname="align-content-center-icon.svg"
|
|
12
|
+
id="svg16"
|
|
13
|
+
version="1.1"
|
|
14
|
+
viewBox="0 0 13 13"
|
|
15
|
+
fill="none">
|
|
16
|
+
<metadata
|
|
17
|
+
id="metadata22">
|
|
18
|
+
<rdf:RDF>
|
|
19
|
+
<cc:Work
|
|
20
|
+
rdf:about="">
|
|
21
|
+
<dc:format>image/svg+xml</dc:format>
|
|
22
|
+
<dc:type
|
|
23
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
24
|
+
</cc:Work>
|
|
25
|
+
</rdf:RDF>
|
|
26
|
+
</metadata>
|
|
27
|
+
<defs
|
|
28
|
+
id="defs20" />
|
|
29
|
+
<sodipodi:namedview
|
|
30
|
+
inkscape:current-layer="svg16"
|
|
31
|
+
inkscape:window-maximized="1"
|
|
32
|
+
inkscape:window-y="23"
|
|
33
|
+
inkscape:window-x="0"
|
|
34
|
+
inkscape:cy="6.5"
|
|
35
|
+
inkscape:cx="4.0173611"
|
|
36
|
+
inkscape:zoom="77.538462"
|
|
37
|
+
showgrid="false"
|
|
38
|
+
id="namedview18"
|
|
39
|
+
inkscape:window-height="1303"
|
|
40
|
+
inkscape:window-width="2560"
|
|
41
|
+
inkscape:pageshadow="2"
|
|
42
|
+
inkscape:pageopacity="0"
|
|
43
|
+
guidetolerance="10"
|
|
44
|
+
gridtolerance="10"
|
|
45
|
+
objecttolerance="10"
|
|
46
|
+
borderopacity="1"
|
|
47
|
+
bordercolor="#666666"
|
|
48
|
+
pagecolor="#ffffff" />
|
|
49
|
+
<rect
|
|
50
|
+
id="rect10"
|
|
51
|
+
transform="matrix(-1 0 0 1 10.5 2)"
|
|
52
|
+
rx="1"
|
|
53
|
+
fill="#000"
|
|
54
|
+
height="3"
|
|
55
|
+
width="8" />
|
|
56
|
+
<rect
|
|
57
|
+
id="rect12"
|
|
58
|
+
transform="matrix(-1 0 0 1 10.5 8)"
|
|
59
|
+
rx="1"
|
|
60
|
+
fill="#000"
|
|
61
|
+
height="3"
|
|
62
|
+
width="8" />
|
|
63
|
+
<rect
|
|
64
|
+
y="6.4854751"
|
|
65
|
+
x="1.46861"
|
|
66
|
+
height="0.054843348"
|
|
67
|
+
width="10.049883"
|
|
68
|
+
id="rect869"
|
|
69
|
+
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.97095;stroke-opacity:1" />
|
|
70
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 13 13"><rect width="8" height="3" fill="#000" rx="1" transform="matrix(-1 0 0 1 10.5 3.5)"/><path fill="#000" d="M10.5 8.5c0-.55228-.4477-1-1-1h-6c-.55228 0-1 .44772-1 1v2h8v-2z"/><path fill="#000" d="M1 10h11v1H1z"/></svg>
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
10
|
+
inkscape:version="1.0 (4035a4f, 2020-05-01)"
|
|
11
|
+
sodipodi:docname="align-content-start-icon.svg"
|
|
12
|
+
id="svg839"
|
|
13
|
+
version="1.1"
|
|
14
|
+
viewBox="0 0 13 13"
|
|
15
|
+
fill="none">
|
|
16
|
+
<metadata
|
|
17
|
+
id="metadata845">
|
|
18
|
+
<rdf:RDF>
|
|
19
|
+
<cc:Work
|
|
20
|
+
rdf:about="">
|
|
21
|
+
<dc:format>image/svg+xml</dc:format>
|
|
22
|
+
<dc:type
|
|
23
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
24
|
+
</cc:Work>
|
|
25
|
+
</rdf:RDF>
|
|
26
|
+
</metadata>
|
|
27
|
+
<defs
|
|
28
|
+
id="defs843" />
|
|
29
|
+
<sodipodi:namedview
|
|
30
|
+
inkscape:current-layer="svg839"
|
|
31
|
+
inkscape:window-maximized="1"
|
|
32
|
+
inkscape:window-y="23"
|
|
33
|
+
inkscape:window-x="0"
|
|
34
|
+
inkscape:cy="7.239521"
|
|
35
|
+
inkscape:cx="5.8188623"
|
|
36
|
+
inkscape:zoom="51.384615"
|
|
37
|
+
showgrid="false"
|
|
38
|
+
id="namedview841"
|
|
39
|
+
inkscape:window-height="1303"
|
|
40
|
+
inkscape:window-width="2560"
|
|
41
|
+
inkscape:pageshadow="2"
|
|
42
|
+
inkscape:pageopacity="0"
|
|
43
|
+
guidetolerance="10"
|
|
44
|
+
gridtolerance="10"
|
|
45
|
+
objecttolerance="10"
|
|
46
|
+
borderopacity="1"
|
|
47
|
+
bordercolor="#666666"
|
|
48
|
+
pagecolor="#ffffff" />
|
|
49
|
+
<rect
|
|
50
|
+
y="-9.5"
|
|
51
|
+
x="-10.5"
|
|
52
|
+
id="rect833"
|
|
53
|
+
transform="scale(-1)"
|
|
54
|
+
rx="1"
|
|
55
|
+
fill="#000"
|
|
56
|
+
height="3"
|
|
57
|
+
width="8" />
|
|
58
|
+
<path
|
|
59
|
+
id="path835"
|
|
60
|
+
d="m 10.5,4.5000002 c 0,0.55228 -0.4477,1 -1,1 h -6 c -0.55228,0 -1,-0.44772 -1,-1 v -2 h 8 z"
|
|
61
|
+
fill="#000" />
|
|
62
|
+
<path
|
|
63
|
+
id="path837"
|
|
64
|
+
d="m 1,3.0000002 h 11 v -1 H 1 Z"
|
|
65
|
+
fill="#000" />
|
|
66
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 13 13"><rect width="8" height="3" fill="#000" rx="1" transform="matrix(-1 0 0 1 10.5 2.75)"/><rect width="8" height="3" fill="#000" rx="1" transform="matrix(-1 0 0 1 10.5 7.25)"/><path fill="#000" d="M1 11h11v1H1zM1 1h11v1H1z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 13 13"><path fill="#000" d="M10.5 1.5h-8v2c0 .55228.44772 1 1 1h6c.5523 0 1-.44772 1-1v-2zM10.5 9.5c0-.55228-.4477-1-1-1h-6c-.55228 0-1 .44772-1 1v2h8v-2z"/><path fill="#000" d="M1 11h11v1H1zM1 1h11v1H1z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 13 13"><rect width="8" height="3" fill="#000" rx="1" transform="matrix(-1 0 0 1 10.5 3)"/><rect width="8" height="3" fill="#000" rx="1" transform="matrix(-1 0 0 1 10.5 7)"/><path fill="#000" d="M1 11h11v1H1zM1 1h11v1H1z"/></svg>
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
10
|
+
inkscape:version="1.0 (4035a4f, 2020-05-01)"
|
|
11
|
+
sodipodi:docname="align-content-stretch-icon.svg"
|
|
12
|
+
id="svg14"
|
|
13
|
+
version="1.1"
|
|
14
|
+
viewBox="0 0 13 13"
|
|
15
|
+
fill="none">
|
|
16
|
+
<metadata
|
|
17
|
+
id="metadata20">
|
|
18
|
+
<rdf:RDF>
|
|
19
|
+
<cc:Work
|
|
20
|
+
rdf:about="">
|
|
21
|
+
<dc:format>image/svg+xml</dc:format>
|
|
22
|
+
<dc:type
|
|
23
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
24
|
+
</cc:Work>
|
|
25
|
+
</rdf:RDF>
|
|
26
|
+
</metadata>
|
|
27
|
+
<defs
|
|
28
|
+
id="defs18" />
|
|
29
|
+
<sodipodi:namedview
|
|
30
|
+
inkscape:current-layer="svg14"
|
|
31
|
+
inkscape:window-maximized="1"
|
|
32
|
+
inkscape:window-y="23"
|
|
33
|
+
inkscape:window-x="0"
|
|
34
|
+
inkscape:cy="6.5"
|
|
35
|
+
inkscape:cx="6.5"
|
|
36
|
+
inkscape:zoom="77.538462"
|
|
37
|
+
showgrid="false"
|
|
38
|
+
id="namedview16"
|
|
39
|
+
inkscape:window-height="1303"
|
|
40
|
+
inkscape:window-width="2560"
|
|
41
|
+
inkscape:pageshadow="2"
|
|
42
|
+
inkscape:pageopacity="0"
|
|
43
|
+
guidetolerance="10"
|
|
44
|
+
gridtolerance="10"
|
|
45
|
+
objecttolerance="10"
|
|
46
|
+
borderopacity="1"
|
|
47
|
+
bordercolor="#666666"
|
|
48
|
+
pagecolor="#ffffff" />
|
|
49
|
+
<path
|
|
50
|
+
id="path12"
|
|
51
|
+
d="M10.5 2h-8v3c0 .55228.44772 1 1 1h6c.5523 0 1-.44772 1-1V2zM10.5 8c0-.55228-.4477-1-1-1h-6c-.55228 0-1 .44772-1 1v3h8V8zM1 11h11v1H1zM1 1h11v1H1z"
|
|
52
|
+
fill="#000" />
|
|
53
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 13 13"><path fill="#000" d="M1 11h11v1H1z"/><path fill="#000" fill-rule="evenodd" d="M7.27318 1H5.81552L2.5 9.80742h1.41l.93164-2.57812h3.26239l.87305 2.57812h1.49172L7.27318 1zM5.24841 6.08008l1.24283-3.40335 1.16941 3.40335H5.24841z" clip-rule="evenodd"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13"><rect x="7" y="2.5" width="3" height="8" rx="1" fill="#000"/><rect x="3" y="3.5" width="3" height="6" rx="1" fill="#000"/><path fill="#000" d="M1 6h11v1H1z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 13 13"><path fill="#000" d="M7 4.5c0-.55228.44772-1 1-1h1c.55228 0 1 .44772 1 1v7H7v-7zM3 6.5c0-.55228.44772-1 1-1h1c.55228 0 1 .44772 1 1v5H3v-5z"/><path fill="#000" d="M1 11h11v1H1z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 13 13"><path fill="#000" d="M7 4.5c0-.55228.44772-1 1-1h1c.55228 0 1 .44772 1 1v7H7v-7zM3 6.5c0-.55228.44772-1 1-1h1c.55228 0 1 .44772 1 1v5H3v-5z"/><path fill="#000" d="M1 11h11v1H1z"/></svg>
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
10
|
+
inkscape:version="1.0 (4035a4f, 2020-05-01)"
|
|
11
|
+
sodipodi:docname="align-items-flex-start-icon.svg"
|
|
12
|
+
id="svg837"
|
|
13
|
+
version="1.1"
|
|
14
|
+
viewBox="0 0 13 13"
|
|
15
|
+
fill="none">
|
|
16
|
+
<metadata
|
|
17
|
+
id="metadata843">
|
|
18
|
+
<rdf:RDF>
|
|
19
|
+
<cc:Work
|
|
20
|
+
rdf:about="">
|
|
21
|
+
<dc:format>image/svg+xml</dc:format>
|
|
22
|
+
<dc:type
|
|
23
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
24
|
+
</cc:Work>
|
|
25
|
+
</rdf:RDF>
|
|
26
|
+
</metadata>
|
|
27
|
+
<defs
|
|
28
|
+
id="defs841" />
|
|
29
|
+
<sodipodi:namedview
|
|
30
|
+
inkscape:current-layer="svg837"
|
|
31
|
+
inkscape:window-maximized="1"
|
|
32
|
+
inkscape:window-y="23"
|
|
33
|
+
inkscape:window-x="0"
|
|
34
|
+
inkscape:cy="6.5"
|
|
35
|
+
inkscape:cx="6.5"
|
|
36
|
+
inkscape:zoom="51.384615"
|
|
37
|
+
showgrid="false"
|
|
38
|
+
id="namedview839"
|
|
39
|
+
inkscape:window-height="1303"
|
|
40
|
+
inkscape:window-width="2560"
|
|
41
|
+
inkscape:pageshadow="2"
|
|
42
|
+
inkscape:pageopacity="0"
|
|
43
|
+
guidetolerance="10"
|
|
44
|
+
gridtolerance="10"
|
|
45
|
+
objecttolerance="10"
|
|
46
|
+
borderopacity="1"
|
|
47
|
+
bordercolor="#666666"
|
|
48
|
+
pagecolor="#ffffff" />
|
|
49
|
+
<path
|
|
50
|
+
id="path833"
|
|
51
|
+
d="m 7,8.5000021 c 0,0.55228 0.44772,1 1,1 h 1 c 0.55228,0 1,-0.44772 1,-1 v -7 H 7 Z m -4,-2 c 0,0.55228 0.44772,1 1,1 h 1 c 0.55228,0 1,-0.44772 1,-1 v -5 H 3 Z"
|
|
52
|
+
fill="#000000" />
|
|
53
|
+
<path
|
|
54
|
+
id="path835"
|
|
55
|
+
d="m 1,2.0000021 h 11 v -1 H 1 Z"
|
|
56
|
+
fill="#000000" />
|
|
57
|
+
</svg>
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
10
|
+
inkscape:version="1.0 (4035a4f, 2020-05-01)"
|
|
11
|
+
sodipodi:docname="align-items-flex-start-icon.svg"
|
|
12
|
+
id="svg837"
|
|
13
|
+
version="1.1"
|
|
14
|
+
viewBox="0 0 13 13"
|
|
15
|
+
fill="none">
|
|
16
|
+
<metadata
|
|
17
|
+
id="metadata843">
|
|
18
|
+
<rdf:RDF>
|
|
19
|
+
<cc:Work
|
|
20
|
+
rdf:about="">
|
|
21
|
+
<dc:format>image/svg+xml</dc:format>
|
|
22
|
+
<dc:type
|
|
23
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
24
|
+
</cc:Work>
|
|
25
|
+
</rdf:RDF>
|
|
26
|
+
</metadata>
|
|
27
|
+
<defs
|
|
28
|
+
id="defs841" />
|
|
29
|
+
<sodipodi:namedview
|
|
30
|
+
inkscape:current-layer="svg837"
|
|
31
|
+
inkscape:window-maximized="1"
|
|
32
|
+
inkscape:window-y="23"
|
|
33
|
+
inkscape:window-x="0"
|
|
34
|
+
inkscape:cy="6.5"
|
|
35
|
+
inkscape:cx="6.5"
|
|
36
|
+
inkscape:zoom="51.384615"
|
|
37
|
+
showgrid="false"
|
|
38
|
+
id="namedview839"
|
|
39
|
+
inkscape:window-height="1303"
|
|
40
|
+
inkscape:window-width="2560"
|
|
41
|
+
inkscape:pageshadow="2"
|
|
42
|
+
inkscape:pageopacity="0"
|
|
43
|
+
guidetolerance="10"
|
|
44
|
+
gridtolerance="10"
|
|
45
|
+
objecttolerance="10"
|
|
46
|
+
borderopacity="1"
|
|
47
|
+
bordercolor="#666666"
|
|
48
|
+
pagecolor="#ffffff" />
|
|
49
|
+
<path
|
|
50
|
+
id="path833"
|
|
51
|
+
d="m 7,8.5000021 c 0,0.55228 0.44772,1 1,1 h 1 c 0.55228,0 1,-0.44772 1,-1 v -7 H 7 Z m -4,-2 c 0,0.55228 0.44772,1 1,1 h 1 c 0.55228,0 1,-0.44772 1,-1 v -5 H 3 Z"
|
|
52
|
+
fill="#000000" />
|
|
53
|
+
<path
|
|
54
|
+
id="path835"
|
|
55
|
+
d="m 1,2.0000021 h 11 v -1 H 1 Z"
|
|
56
|
+
fill="#000000" />
|
|
57
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 13 13"><path fill="#000" d="M7 2h3v9H7zM3 2h3v9H3zM1 1h11v1H1zM1 11h11v1H1z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 13 13"><rect width="3" height="8" x="5" y="2.5" fill="#000" rx="1"/><path fill="#000" d="M1 6h11v1H1z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 13 13"><path fill="#000" d="M5 4.5c0-.55228.44772-1 1-1h1c.55228 0 1 .44772 1 1v7H5v-7z"/><path fill="#000" d="M1 11h11v1H1z"/></svg>
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
10
|
+
inkscape:version="1.0 (4035a4f, 2020-05-01)"
|
|
11
|
+
sodipodi:docname="align-self-flex-start-icon.svg"
|
|
12
|
+
id="svg837"
|
|
13
|
+
version="1.1"
|
|
14
|
+
viewBox="0 0 13 13"
|
|
15
|
+
fill="none">
|
|
16
|
+
<metadata
|
|
17
|
+
id="metadata843">
|
|
18
|
+
<rdf:RDF>
|
|
19
|
+
<cc:Work
|
|
20
|
+
rdf:about="">
|
|
21
|
+
<dc:format>image/svg+xml</dc:format>
|
|
22
|
+
<dc:type
|
|
23
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
24
|
+
</cc:Work>
|
|
25
|
+
</rdf:RDF>
|
|
26
|
+
</metadata>
|
|
27
|
+
<defs
|
|
28
|
+
id="defs841" />
|
|
29
|
+
<sodipodi:namedview
|
|
30
|
+
inkscape:current-layer="svg837"
|
|
31
|
+
inkscape:window-maximized="1"
|
|
32
|
+
inkscape:window-y="23"
|
|
33
|
+
inkscape:window-x="0"
|
|
34
|
+
inkscape:cy="6.5"
|
|
35
|
+
inkscape:cx="6.5"
|
|
36
|
+
inkscape:zoom="51.384615"
|
|
37
|
+
showgrid="false"
|
|
38
|
+
id="namedview839"
|
|
39
|
+
inkscape:window-height="1303"
|
|
40
|
+
inkscape:window-width="2560"
|
|
41
|
+
inkscape:pageshadow="2"
|
|
42
|
+
inkscape:pageopacity="0"
|
|
43
|
+
guidetolerance="10"
|
|
44
|
+
gridtolerance="10"
|
|
45
|
+
objecttolerance="10"
|
|
46
|
+
borderopacity="1"
|
|
47
|
+
bordercolor="#666666"
|
|
48
|
+
pagecolor="#ffffff" />
|
|
49
|
+
<path
|
|
50
|
+
id="path833"
|
|
51
|
+
d="m 5,8.499999 c 0,0.55228 0.44772,1 1,1 h 1 c 0.55228,0 1,-0.44772 1,-1 v -7 H 5 Z"
|
|
52
|
+
fill="#000000" />
|
|
53
|
+
<path
|
|
54
|
+
id="path835"
|
|
55
|
+
d="M 1,1.999999 H 12 V 0.99999905 H 1 Z"
|
|
56
|
+
fill="#000000" />
|
|
57
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 13 13"><path fill="#000" d="M5 2h3v9H5zM1 11h11v1H1zM1 1h11v1H1z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 13 13"><path fill="#000" d="M1 11h11v1H1z"/><path fill="#000" fill-rule="evenodd" d="M7.27318 1H5.81552L2.5 9.80742h1.41l.93164-2.57812h3.26239l.87305 2.57812h1.49172L7.27318 1zM5.24841 6.08008l1.24283-3.40335 1.16941 3.40335H5.24841z" clip-rule="evenodd"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13"><g clip-path="url(#clip0)"><rect x="2" y="2.816" width="4.607" height="2.738" rx=".5" stroke="#000"/><rect x="1.5" y="6.989" width="5.607" height="3.738" rx="1" fill="#000"/><path d="M9.461 1.5v7.63H8L10.002 12 12 9.13h-1.458V1.5h-1.08z" fill="#000"/></g><defs><clipPath id="clip0"><path fill="#fff" d="M0 0h13v13H0z"/></clipPath></defs></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13"><g clip-path="url(#clip0)"><rect x="2" y="2.816" width="4.607" height="2.738" rx=".5" stroke="#000"/><rect x="1.5" y="6.989" width="5.607" height="3.738" rx="1" fill="#000"/><path d="M9.461 1.5v7.63H8L10.002 12 12 9.13h-1.458V1.5h-1.08z" fill="#000"/></g><defs><clipPath id="clip0"><path fill="#fff" d="M0 0h13v13H0z"/></clipPath></defs></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13"><g clip-path="url(#clip0)"><rect x="2" y="2.816" width="4.607" height="2.738" rx=".5" stroke="#000"/><rect x="1.5" y="6.989" width="5.607" height="3.738" rx="1" fill="#000"/><path d="M9.461 1.5v7.63H8L10.002 12 12 9.13h-1.458V1.5h-1.08z" fill="#000"/></g><defs><clipPath id="clip0"><path fill="#fff" d="M0 0h13v13H0z"/></clipPath></defs></svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="13" height="13" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M3 5H2L2 8H3V5ZM2 4C1.44772 4 1 4.44772 1 5V8C1 8.55228 1.44772 9 2 9H3C3.55228 9 4 8.55228 4 8V5C4 4.44772 3.55228 4 3 4H2Z" fill="black"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M11 5H10L10 8H11V5ZM10 4C9.44772 4 9 4.44772 9 5V8C9 8.55228 9.44772 9 10 9H11C11.5523 9 12 8.55228 12 8V5C12 4.44772 11.5523 4 11 4H10Z" fill="black"/>
|
|
4
|
+
<path d="M5 5C5 4.44772 5.44772 4 6 4H7C7.55228 4 8 4.44772 8 5V8C8 8.55228 7.55228 9 7 9H6C5.44772 9 5 8.55228 5 8V5Z" fill="black"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg width="13" height="13" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M3 2H2L2 5H3V2ZM2 1C1.44772 1 1 1.44772 1 2V5C1 5.55228 1.44772 6 2 6H3C3.55228 6 4 5.55228 4 5V2C4 1.44772 3.55228 1 3 1H2Z" fill="black"/>
|
|
3
|
+
<path d="M1 8C1 7.44772 1.44772 7 2 7H3C3.55228 7 4 7.44772 4 8V11C4 11.5523 3.55228 12 3 12H2C1.44772 12 1 11.5523 1 11V8Z" fill="black"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M11 2H10L10 5H11V2ZM10 1C9.44772 1 9 1.44772 9 2V5C9 5.55228 9.44772 6 10 6H11C11.5523 6 12 5.55228 12 5V2C12 1.44772 11.5523 1 11 1H10Z" fill="black"/>
|
|
5
|
+
<path d="M9 8C9 7.44772 9.44772 7 10 7H11C11.5523 7 12 7.44772 12 8V11C12 11.5523 11.5523 12 11 12H10C9.44772 12 9 11.5523 9 11V8Z" fill="black"/>
|
|
6
|
+
<path d="M5 2C5 1.44772 5.44772 1 6 1H7C7.55228 1 8 1.44772 8 2V5C8 5.55228 7.55228 6 7 6H6C5.44772 6 5 5.55228 5 5V2Z" fill="black"/>
|
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M7 8H6L6 11H7V8ZM6 7C5.44772 7 5 7.44772 5 8V11C5 11.5523 5.44772 12 6 12H7C7.55228 12 8 11.5523 8 11V8C8 7.44772 7.55228 7 7 7H6Z" fill="black"/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 13 13"><rect width="3" height="6" x="2" y="3.5" fill="#000" rx="1"/><rect width="3" height="6" x="8" y="3.5" fill="#000" rx="1"/><path fill="#000" d="M6 1h1v11H6z"/></svg>
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
10
|
+
inkscape:version="1.0 (4035a4f, 2020-05-01)"
|
|
11
|
+
sodipodi:docname="flex-end.svg"
|
|
12
|
+
id="svg839"
|
|
13
|
+
version="1.1"
|
|
14
|
+
viewBox="0 0 13 13"
|
|
15
|
+
fill="none">
|
|
16
|
+
<metadata
|
|
17
|
+
id="metadata845">
|
|
18
|
+
<rdf:RDF>
|
|
19
|
+
<cc:Work
|
|
20
|
+
rdf:about="">
|
|
21
|
+
<dc:format>image/svg+xml</dc:format>
|
|
22
|
+
<dc:type
|
|
23
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
24
|
+
</cc:Work>
|
|
25
|
+
</rdf:RDF>
|
|
26
|
+
</metadata>
|
|
27
|
+
<defs
|
|
28
|
+
id="defs843" />
|
|
29
|
+
<sodipodi:namedview
|
|
30
|
+
inkscape:current-layer="svg839"
|
|
31
|
+
inkscape:window-maximized="1"
|
|
32
|
+
inkscape:window-y="23"
|
|
33
|
+
inkscape:window-x="0"
|
|
34
|
+
inkscape:cy="6.8113772"
|
|
35
|
+
inkscape:cx="6.5"
|
|
36
|
+
inkscape:zoom="51.384615"
|
|
37
|
+
showgrid="false"
|
|
38
|
+
id="namedview841"
|
|
39
|
+
inkscape:window-height="1303"
|
|
40
|
+
inkscape:window-width="2560"
|
|
41
|
+
inkscape:pageshadow="2"
|
|
42
|
+
inkscape:pageopacity="0"
|
|
43
|
+
guidetolerance="10"
|
|
44
|
+
gridtolerance="10"
|
|
45
|
+
objecttolerance="10"
|
|
46
|
+
borderopacity="1"
|
|
47
|
+
bordercolor="#666666"
|
|
48
|
+
pagecolor="#ffffff" />
|
|
49
|
+
<rect
|
|
50
|
+
transform="scale(-1,1)"
|
|
51
|
+
id="rect833"
|
|
52
|
+
rx="1"
|
|
53
|
+
fill="#000000"
|
|
54
|
+
y="3.5"
|
|
55
|
+
x="-7"
|
|
56
|
+
height="6"
|
|
57
|
+
width="3" />
|
|
58
|
+
<rect
|
|
59
|
+
transform="scale(-1,1)"
|
|
60
|
+
id="rect835"
|
|
61
|
+
rx="1"
|
|
62
|
+
fill="#000000"
|
|
63
|
+
y="3.5"
|
|
64
|
+
x="-11"
|
|
65
|
+
height="6"
|
|
66
|
+
width="3" />
|
|
67
|
+
<path
|
|
68
|
+
id="path837"
|
|
69
|
+
d="m 12,1 h -1 v 11 h 1 z"
|
|
70
|
+
fill="#000000" />
|
|
71
|
+
</svg>
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
10
|
+
inkscape:version="1.0 (4035a4f, 2020-05-01)"
|
|
11
|
+
sodipodi:docname="flex-end.svg"
|
|
12
|
+
id="svg839"
|
|
13
|
+
version="1.1"
|
|
14
|
+
viewBox="0 0 13 13"
|
|
15
|
+
fill="none">
|
|
16
|
+
<metadata
|
|
17
|
+
id="metadata845">
|
|
18
|
+
<rdf:RDF>
|
|
19
|
+
<cc:Work
|
|
20
|
+
rdf:about="">
|
|
21
|
+
<dc:format>image/svg+xml</dc:format>
|
|
22
|
+
<dc:type
|
|
23
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
24
|
+
</cc:Work>
|
|
25
|
+
</rdf:RDF>
|
|
26
|
+
</metadata>
|
|
27
|
+
<defs
|
|
28
|
+
id="defs843" />
|
|
29
|
+
<sodipodi:namedview
|
|
30
|
+
inkscape:current-layer="svg839"
|
|
31
|
+
inkscape:window-maximized="1"
|
|
32
|
+
inkscape:window-y="23"
|
|
33
|
+
inkscape:window-x="0"
|
|
34
|
+
inkscape:cy="6.8113772"
|
|
35
|
+
inkscape:cx="6.5"
|
|
36
|
+
inkscape:zoom="51.384615"
|
|
37
|
+
showgrid="false"
|
|
38
|
+
id="namedview841"
|
|
39
|
+
inkscape:window-height="1303"
|
|
40
|
+
inkscape:window-width="2560"
|
|
41
|
+
inkscape:pageshadow="2"
|
|
42
|
+
inkscape:pageopacity="0"
|
|
43
|
+
guidetolerance="10"
|
|
44
|
+
gridtolerance="10"
|
|
45
|
+
objecttolerance="10"
|
|
46
|
+
borderopacity="1"
|
|
47
|
+
bordercolor="#666666"
|
|
48
|
+
pagecolor="#ffffff" />
|
|
49
|
+
<rect
|
|
50
|
+
transform="scale(-1,1)"
|
|
51
|
+
id="rect833"
|
|
52
|
+
rx="1"
|
|
53
|
+
fill="#000000"
|
|
54
|
+
y="3.5"
|
|
55
|
+
x="-7"
|
|
56
|
+
height="6"
|
|
57
|
+
width="3" />
|
|
58
|
+
<rect
|
|
59
|
+
transform="scale(-1,1)"
|
|
60
|
+
id="rect835"
|
|
61
|
+
rx="1"
|
|
62
|
+
fill="#000000"
|
|
63
|
+
y="3.5"
|
|
64
|
+
x="-11"
|
|
65
|
+
height="6"
|
|
66
|
+
width="3" />
|
|
67
|
+
<path
|
|
68
|
+
id="path837"
|
|
69
|
+
d="m 12,1 h -1 v 11 h 1 z"
|
|
70
|
+
fill="#000000" />
|
|
71
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 13 13"><rect width="3" height="6" x="6" y="3.5" fill="#000" rx="1"/><rect width="3" height="6" x="2" y="3.5" fill="#000" rx="1"/><path fill="#000" d="M1 1h1v11H1z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 13 13"><rect width="3" height="6" x="7.25" y="3.5" fill="#000" rx="1"/><rect width="3" height="6" x="2.75" y="3.5" fill="#000" rx="1"/><path fill="#000" d="M1 1h1v11H1zM11 1h1v11h-1z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 13 13"><rect width="3" height="6" x="8" y="3.5" fill="#000" rx="1"/><rect width="3" height="6" x="2" y="3.5" fill="#000" rx="1"/><path fill="#000" d="M1 1h1v11H1zM11 1h1v11h-1z"/></svg>
|