npmapps 1.1.4 → 1.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app/wujie-vue2-child/.eslintrc.js +19 -0
- package/app/wujie-vue2-child/README.md +24 -0
- package/app/wujie-vue2-child/babel.config.js +5 -0
- package/app/wujie-vue2-child/docs/superpowers/plans/2026-05-29-quill-editor.md +836 -0
- package/app/wujie-vue2-child/docs/superpowers/specs/2026-05-29-quill-editor-design.md +210 -0
- package/app/wujie-vue2-child/jsconfig.json +19 -0
- package/app/wujie-vue2-child/package-lock.json +21333 -0
- package/app/wujie-vue2-child/package.json +63 -0
- package/app/wujie-vue2-child/postcss.config.js +10 -0
- package/app/wujie-vue2-child/public/favicon.ico +0 -0
- package/app/wujie-vue2-child/public/index.html +17 -0
- package/app/wujie-vue2-child/public/rili.jpg +0 -0
- package/app/wujie-vue2-child/public//344/270/200/351/224/256/351/273/221/346/232/227.html +136 -0
- package/app/wujie-vue2-child/src/App.vue +110 -0
- package/app/wujie-vue2-child/src/assets/bpmn-camunda.jpg +0 -0
- package/app/wujie-vue2-child/src/assets/css/diagram.less +17 -0
- package/app/wujie-vue2-child/src/assets/icon/Icon.less +31 -0
- package/app/wujie-vue2-child/src/assets/icon/font/app-codes.css +26 -0
- package/app/wujie-vue2-child/src/assets/icon/font/app.eot +0 -0
- package/app/wujie-vue2-child/src/assets/icon/font/app.svg +60 -0
- package/app/wujie-vue2-child/src/assets/icon/font/app.ttf +0 -0
- package/app/wujie-vue2-child/src/assets/icon/font/app.woff +0 -0
- package/app/wujie-vue2-child/src/assets/icon/font/app.woff2 +0 -0
- package/app/wujie-vue2-child/src/assets/icon/font/config.json +248 -0
- package/app/wujie-vue2-child/src/assets/icon/font/source/raw/align-bottom-tool.svg +30 -0
- package/app/wujie-vue2-child/src/assets/icon/font/source/raw/align-horizontal-center-tool.svg +85 -0
- package/app/wujie-vue2-child/src/assets/icon/font/source/raw/align-left-tool.svg +84 -0
- package/app/wujie-vue2-child/src/assets/icon/font/source/raw/align-right-tool.svg +80 -0
- package/app/wujie-vue2-child/src/assets/icon/font/source/raw/align-top-tool.svg +84 -0
- package/app/wujie-vue2-child/src/assets/icon/font/source/raw/align-vertical-center-tool.svg +89 -0
- package/app/wujie-vue2-child/src/assets/icon/font/source/raw/distribute-horizontally-tool.svg +95 -0
- package/app/wujie-vue2-child/src/assets/icon/font/source/raw/distribute-vertically-tool.svg +99 -0
- package/app/wujie-vue2-child/src/assets/icon/font/source/raw/set-color-tool.svg +111 -0
- package/app/wujie-vue2-child/src/assets/icon/font/source/symbols/align-bottom-tool.svg +30 -0
- package/app/wujie-vue2-child/src/assets/icon/font/source/symbols/align-horizontal-center-tool.svg +30 -0
- package/app/wujie-vue2-child/src/assets/icon/font/source/symbols/align-left-tool.svg +30 -0
- package/app/wujie-vue2-child/src/assets/icon/font/source/symbols/align-right-tool.svg +30 -0
- package/app/wujie-vue2-child/src/assets/icon/font/source/symbols/align-top-tool.svg +30 -0
- package/app/wujie-vue2-child/src/assets/icon/font/source/symbols/align-vertical-center-tool.svg +30 -0
- package/app/wujie-vue2-child/src/assets/icon/font/source/symbols/distribute-horizontally-tool.svg +30 -0
- package/app/wujie-vue2-child/src/assets/icon/font/source/symbols/distribute-vertically-tool.svg +30 -0
- package/app/wujie-vue2-child/src/assets/icon/font/source/symbols/set-color-tool.svg +63 -0
- package/app/wujie-vue2-child/src/assets/logo.png +0 -0
- package/app/wujie-vue2-child/src/components/EllTable/README.md +70 -0
- package/app/wujie-vue2-child/src/components/EllTable/article.md +184 -0
- package/app/wujie-vue2-child/src/components/EllTable/index.js +213 -0
- package/app/wujie-vue2-child/src/components/EventCalendar/CalendarSkeleton.vue +147 -0
- package/app/wujie-vue2-child/src/components/EventCalendar/CodeBlock.vue +199 -0
- package/app/wujie-vue2-child/src/components/EventCalendar/MonthSelect.vue +376 -0
- package/app/wujie-vue2-child/src/components/EventCalendar/README.md +368 -0
- package/app/wujie-vue2-child/src/components/EventCalendar/example.vue +1551 -0
- package/app/wujie-vue2-child/src/components/EventCalendar/index.vue +1646 -0
- package/app/wujie-vue2-child/src/components/EventCalendar/mockData.js +349 -0
- package/app/wujie-vue2-child/src/components/EventCalendar/utils.js +201 -0
- package/app/wujie-vue2-child/src/components/FormulaEditor/FunctionSelector.vue +123 -0
- package/app/wujie-vue2-child/src/components/FormulaEditor/OperatorSelector.vue +184 -0
- package/app/wujie-vue2-child/src/components/FormulaEditor/ParameterSelector.vue +123 -0
- package/app/wujie-vue2-child/src/components/FormulaEditor/api.js +69 -0
- package/app/wujie-vue2-child/src/components/FormulaEditor/index.vue +435 -0
- package/app/wujie-vue2-child/src/components/HelloWorld.vue +58 -0
- package/app/wujie-vue2-child/src/components/PageHeader/index.vue +158 -0
- package/app/wujie-vue2-child/src/components/Splitter/README.md +144 -0
- package/app/wujie-vue2-child/src/components/Splitter/example.vue +84 -0
- package/app/wujie-vue2-child/src/components/Splitter/index.vue +203 -0
- package/app/wujie-vue2-child/src/components/diagram/ToolBar.vue +357 -0
- package/app/wujie-vue2-child/src/components/diagram/customTranslate/customTranslate.js +12 -0
- package/app/wujie-vue2-child/src/components/diagram/customTranslate/translationsGerman.js +241 -0
- package/app/wujie-vue2-child/src/components/diagram/index.vue +261 -0
- package/app/wujie-vue2-child/src/components/diagram/xmlData.js +29 -0
- package/app/wujie-vue2-child/src/directives/filldown.js +155 -0
- package/app/wujie-vue2-child/src/directives/filldownTable.js +291 -0
- package/app/wujie-vue2-child/src/main.js +40 -0
- package/app/wujie-vue2-child/src/router/index.js +72 -0
- package/app/wujie-vue2-child/src/store/index.js +23 -0
- package/app/wujie-vue2-child/src/utils/winBox.js +23 -0
- package/app/wujie-vue2-child/src/views/Extend/A.vue +12 -0
- package/app/wujie-vue2-child/src/views/Extend/B.vue +10 -0
- package/app/wujie-vue2-child/src/views/Extend/MagicalComponentsForELFormItem.vue +78 -0
- package/app/wujie-vue2-child/src/views/Extend/index.vue +59 -0
- package/app/wujie-vue2-child/src/views/Extend/tableMouseHorizontalWheel.vue +184 -0
- package/app/wujie-vue2-child/src/views/Home.vue +27 -0
- package/app/wujie-vue2-child/src/views/RouterJump.vue +145 -0
- package/app/wujie-vue2-child/src/views/calendar/index.vue +19 -0
- package/app/wujie-vue2-child/src/views/css.vue +57 -0
- package/app/wujie-vue2-child/src/views/cssComponents/EllipsisText.vue +73 -0
- package/app/wujie-vue2-child/src/views/cssComponents/HoverCard.vue +69 -0
- package/app/wujie-vue2-child/src/views/cssComponents/TableHover.vue +130 -0
- package/app/wujie-vue2-child/src/views/cssComponents/inputSlo.vue +42 -0
- package/app/wujie-vue2-child/src/views/cssComponents/tableFixed.vue +148 -0
- package/app/wujie-vue2-child/src/views/echarts/echart-dome.vue +73 -0
- package/app/wujie-vue2-child/src/views/echarts/index.vue +118 -0
- package/app/wujie-vue2-child/src/views/echarts/pei3d.vue +658 -0
- package/app/wujie-vue2-child/src/views/element/bpmn/index.vue +15 -0
- package/app/wujie-vue2-child/src/views/element/components/attendanceCycle/index.vue +131 -0
- package/app/wujie-vue2-child/src/views/element/components/attendanceGroup/index.vue +147 -0
- package/app/wujie-vue2-child/src/views/element/components/attendancePersonnel/index.vue +158 -0
- package/app/wujie-vue2-child/src/views/element/components/companyCalendar/index.vue +147 -0
- package/app/wujie-vue2-child/src/views/element/components/shift/index.vue +147 -0
- package/app/wujie-vue2-child/src/views/element/components/shiftRotationSystem/index.vue +147 -0
- package/app/wujie-vue2-child/src/views/element/elTableJsx/columnManagement.vue +340 -0
- package/app/wujie-vue2-child/src/views/element/elTableJsx/dialogInput.vue +71 -0
- package/app/wujie-vue2-child/src/views/element/elTableJsx/elTableJsx.vue +1826 -0
- package/app/wujie-vue2-child/src/views/element/elTableJsx/formTable.vue +595 -0
- package/app/wujie-vue2-child/src/views/element/elTableJsx/index.vue +29 -0
- package/app/wujie-vue2-child/src/views/element/elTableJsx/simpleTable.vue +189 -0
- package/app/wujie-vue2-child/src/views/element/elTableJsx.zip +0 -0
- package/app/wujie-vue2-child/src/views/element/index.vue +39 -0
- package/app/wujie-vue2-child/src/views/element/quillEditor/README.md +163 -0
- package/app/wujie-vue2-child/src/views/element/quillEditor/example.vue +307 -0
- package/app/wujie-vue2-child/src/views/element/quillEditor/index.vue +409 -0
- package/app/wujie-vue2-child/src/views/element/quillEditor/toolbar.js +122 -0
- package/app/wujie-vue2-child/vue.config.js +15 -0
- package/package.json +1 -1
- package/app/check-import-case.js +0 -344
|
@@ -0,0 +1,89 @@
|
|
|
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
|
+
version="1.1"
|
|
11
|
+
id="svg3891"
|
|
12
|
+
height="2048"
|
|
13
|
+
width="2048"
|
|
14
|
+
inkscape:version="0.91 r13725"
|
|
15
|
+
sodipodi:docname="align-vertical-center-tool.svg">
|
|
16
|
+
<sodipodi:namedview
|
|
17
|
+
pagecolor="#ffffff"
|
|
18
|
+
bordercolor="#666666"
|
|
19
|
+
borderopacity="1"
|
|
20
|
+
objecttolerance="10"
|
|
21
|
+
gridtolerance="10"
|
|
22
|
+
guidetolerance="10"
|
|
23
|
+
inkscape:pageopacity="0"
|
|
24
|
+
inkscape:pageshadow="2"
|
|
25
|
+
inkscape:window-width="1600"
|
|
26
|
+
inkscape:window-height="847"
|
|
27
|
+
id="namedview8"
|
|
28
|
+
showgrid="true"
|
|
29
|
+
inkscape:snap-bbox="true"
|
|
30
|
+
inkscape:bbox-paths="true"
|
|
31
|
+
inkscape:snap-bbox-edge-midpoints="true"
|
|
32
|
+
inkscape:bbox-nodes="true"
|
|
33
|
+
inkscape:snap-bbox-midpoints="false"
|
|
34
|
+
inkscape:zoom="0.23046875"
|
|
35
|
+
inkscape:cx="-263.10357"
|
|
36
|
+
inkscape:cy="1024"
|
|
37
|
+
inkscape:window-x="-8"
|
|
38
|
+
inkscape:window-y="-8"
|
|
39
|
+
inkscape:window-maximized="1"
|
|
40
|
+
inkscape:current-layer="svg3891">
|
|
41
|
+
<inkscape:grid
|
|
42
|
+
type="xygrid"
|
|
43
|
+
id="grid4137"
|
|
44
|
+
empspacing="146" />
|
|
45
|
+
</sodipodi:namedview>
|
|
46
|
+
<defs
|
|
47
|
+
id="defs3893" />
|
|
48
|
+
<metadata
|
|
49
|
+
id="metadata3896">
|
|
50
|
+
<rdf:RDF>
|
|
51
|
+
<cc:Work
|
|
52
|
+
rdf:about="">
|
|
53
|
+
<dc:format>image/svg+xml</dc:format>
|
|
54
|
+
<dc:type
|
|
55
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
56
|
+
<dc:title></dc:title>
|
|
57
|
+
</cc:Work>
|
|
58
|
+
</rdf:RDF>
|
|
59
|
+
</metadata>
|
|
60
|
+
<g
|
|
61
|
+
id="g4138"
|
|
62
|
+
transform="matrix(0,1,-1,0,2048,4.0000065)">
|
|
63
|
+
<path
|
|
64
|
+
style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
65
|
+
d="m 1027.9727,1318 c 0,146 0,146 0,146"
|
|
66
|
+
id="path4363-4-2-8-5-8-0-8"
|
|
67
|
+
inkscape:connector-curvature="0" />
|
|
68
|
+
<path
|
|
69
|
+
inkscape:connector-curvature="0"
|
|
70
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
71
|
+
d="M 364.99999,515 1679,515 l 0,-437.999997 -1314.00001,0 0,437.999997 z"
|
|
72
|
+
id="rect4338-7-82-22-4" />
|
|
73
|
+
<path
|
|
74
|
+
inkscape:connector-curvature="0"
|
|
75
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
76
|
+
d="m 657,1245 730,0 0,-438 -730,0 0,438 z"
|
|
77
|
+
id="rect4338-7-82-22-4-9" />
|
|
78
|
+
<path
|
|
79
|
+
style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
80
|
+
d="m 1022,588 c 0,145.99998 0,145.99998 0,145.99998"
|
|
81
|
+
id="path4363-4-2-8-5-8-0-8-4"
|
|
82
|
+
inkscape:connector-curvature="0" />
|
|
83
|
+
<path
|
|
84
|
+
inkscape:connector-curvature="0"
|
|
85
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
86
|
+
d="m 365,1975 1314,0 0,-438 -1314,0 0,438 z"
|
|
87
|
+
id="rect4338-7-82-22-4-7" />
|
|
88
|
+
</g>
|
|
89
|
+
</svg>
|
|
@@ -0,0 +1,95 @@
|
|
|
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
|
+
version="1.1"
|
|
11
|
+
id="svg3891"
|
|
12
|
+
height="2048"
|
|
13
|
+
width="2048"
|
|
14
|
+
inkscape:version="0.91 r13725"
|
|
15
|
+
sodipodi:docname="distribute-horizontally-tool.svg">
|
|
16
|
+
<sodipodi:namedview
|
|
17
|
+
pagecolor="#ffffff"
|
|
18
|
+
bordercolor="#666666"
|
|
19
|
+
borderopacity="1"
|
|
20
|
+
objecttolerance="10"
|
|
21
|
+
gridtolerance="10"
|
|
22
|
+
guidetolerance="10"
|
|
23
|
+
inkscape:pageopacity="0"
|
|
24
|
+
inkscape:pageshadow="2"
|
|
25
|
+
inkscape:window-width="1600"
|
|
26
|
+
inkscape:window-height="847"
|
|
27
|
+
id="namedview8"
|
|
28
|
+
showgrid="true"
|
|
29
|
+
inkscape:snap-bbox="true"
|
|
30
|
+
inkscape:bbox-paths="true"
|
|
31
|
+
inkscape:snap-bbox-edge-midpoints="true"
|
|
32
|
+
inkscape:bbox-nodes="true"
|
|
33
|
+
inkscape:snap-bbox-midpoints="false"
|
|
34
|
+
inkscape:zoom="0.23046875"
|
|
35
|
+
inkscape:cx="799.73227"
|
|
36
|
+
inkscape:cy="1024"
|
|
37
|
+
inkscape:window-x="-8"
|
|
38
|
+
inkscape:window-y="-8"
|
|
39
|
+
inkscape:window-maximized="1"
|
|
40
|
+
inkscape:current-layer="svg3891">
|
|
41
|
+
<inkscape:grid
|
|
42
|
+
type="xygrid"
|
|
43
|
+
id="grid4140"
|
|
44
|
+
empspacing="146" />
|
|
45
|
+
</sodipodi:namedview>
|
|
46
|
+
<defs
|
|
47
|
+
id="defs3893" />
|
|
48
|
+
<metadata
|
|
49
|
+
id="metadata3896">
|
|
50
|
+
<rdf:RDF>
|
|
51
|
+
<cc:Work
|
|
52
|
+
rdf:about="">
|
|
53
|
+
<dc:format>image/svg+xml</dc:format>
|
|
54
|
+
<dc:type
|
|
55
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
56
|
+
<dc:title></dc:title>
|
|
57
|
+
</cc:Work>
|
|
58
|
+
</rdf:RDF>
|
|
59
|
+
</metadata>
|
|
60
|
+
<path
|
|
61
|
+
id="rect4338-7-82-22"
|
|
62
|
+
d="m 73.000002,661 0,1022 438.000008,0 0,-1022 -438.000008,0 z"
|
|
63
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
64
|
+
inkscape:connector-curvature="0" />
|
|
65
|
+
<path
|
|
66
|
+
inkscape:connector-curvature="0"
|
|
67
|
+
id="path4363-4-2-8-5-8-0-8-1-5-5"
|
|
68
|
+
d="m 438,369 c 1168,0 1168,0 1168,0"
|
|
69
|
+
style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
70
|
+
<path
|
|
71
|
+
id="rect4338-7-82-22-9"
|
|
72
|
+
d="m 802.99999,660.99999 0,730.00001 438.00001,0 0,-730.00001 -438,0 z"
|
|
73
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
74
|
+
inkscape:connector-curvature="0" />
|
|
75
|
+
<path
|
|
76
|
+
id="rect4338-7-82-22-3"
|
|
77
|
+
d="m 1533,661 0,1022 438,0 0,-1022 -438,0 z"
|
|
78
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
79
|
+
inkscape:connector-curvature="0" />
|
|
80
|
+
<path
|
|
81
|
+
inkscape:connector-curvature="0"
|
|
82
|
+
id="path4363-4-2-8-5-8-0-8-1-5-5-1"
|
|
83
|
+
d="m 511,442 c 0,146 0,146 0,146"
|
|
84
|
+
style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
85
|
+
<path
|
|
86
|
+
inkscape:connector-curvature="0"
|
|
87
|
+
id="path4363-4-2-8-5-8-0-8-1-5-5-1-9"
|
|
88
|
+
d="m 1022,442 c 0,146 0,146 0,146"
|
|
89
|
+
style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
90
|
+
<path
|
|
91
|
+
inkscape:connector-curvature="0"
|
|
92
|
+
id="path4363-4-2-8-5-8-0-8-1-5-5-1-4"
|
|
93
|
+
d="m 1533,442 c 0,146 0,146 0,146"
|
|
94
|
+
style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
95
|
+
</svg>
|
|
@@ -0,0 +1,99 @@
|
|
|
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
|
+
version="1.1"
|
|
11
|
+
id="svg3891"
|
|
12
|
+
height="2048"
|
|
13
|
+
width="2048"
|
|
14
|
+
inkscape:version="0.91 r13725"
|
|
15
|
+
sodipodi:docname="distribute-vertically-tool.svg">
|
|
16
|
+
<sodipodi:namedview
|
|
17
|
+
pagecolor="#ffffff"
|
|
18
|
+
bordercolor="#666666"
|
|
19
|
+
borderopacity="1"
|
|
20
|
+
objecttolerance="10"
|
|
21
|
+
gridtolerance="10"
|
|
22
|
+
guidetolerance="10"
|
|
23
|
+
inkscape:pageopacity="0"
|
|
24
|
+
inkscape:pageshadow="2"
|
|
25
|
+
inkscape:window-width="1600"
|
|
26
|
+
inkscape:window-height="847"
|
|
27
|
+
id="namedview8"
|
|
28
|
+
showgrid="true"
|
|
29
|
+
inkscape:snap-bbox="true"
|
|
30
|
+
inkscape:bbox-paths="true"
|
|
31
|
+
inkscape:snap-bbox-edge-midpoints="true"
|
|
32
|
+
inkscape:bbox-nodes="true"
|
|
33
|
+
inkscape:snap-bbox-midpoints="false"
|
|
34
|
+
inkscape:zoom="0.23046875"
|
|
35
|
+
inkscape:cx="799.73227"
|
|
36
|
+
inkscape:cy="1024"
|
|
37
|
+
inkscape:window-x="-8"
|
|
38
|
+
inkscape:window-y="-8"
|
|
39
|
+
inkscape:window-maximized="1"
|
|
40
|
+
inkscape:current-layer="svg3891">
|
|
41
|
+
<inkscape:grid
|
|
42
|
+
type="xygrid"
|
|
43
|
+
id="grid4140"
|
|
44
|
+
empspacing="146" />
|
|
45
|
+
</sodipodi:namedview>
|
|
46
|
+
<defs
|
|
47
|
+
id="defs3893" />
|
|
48
|
+
<metadata
|
|
49
|
+
id="metadata3896">
|
|
50
|
+
<rdf:RDF>
|
|
51
|
+
<cc:Work
|
|
52
|
+
rdf:about="">
|
|
53
|
+
<dc:format>image/svg+xml</dc:format>
|
|
54
|
+
<dc:type
|
|
55
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
56
|
+
<dc:title></dc:title>
|
|
57
|
+
</cc:Work>
|
|
58
|
+
</rdf:RDF>
|
|
59
|
+
</metadata>
|
|
60
|
+
<g
|
|
61
|
+
id="g4206"
|
|
62
|
+
transform="matrix(0,-1,1,0,-3.999999,2048)">
|
|
63
|
+
<path
|
|
64
|
+
inkscape:connector-curvature="0"
|
|
65
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
66
|
+
d="m 73.000002,661 0,1022 438.000008,0 0,-1022 -438.000008,0 z"
|
|
67
|
+
id="rect4338-7-82-22" />
|
|
68
|
+
<path
|
|
69
|
+
style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
70
|
+
d="m 438,369 c 1168,0 1168,0 1168,0"
|
|
71
|
+
id="path4363-4-2-8-5-8-0-8-1-5-5"
|
|
72
|
+
inkscape:connector-curvature="0" />
|
|
73
|
+
<path
|
|
74
|
+
inkscape:connector-curvature="0"
|
|
75
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
76
|
+
d="m 802.99999,660.99999 0,730.00001 438.00001,0 0,-730.00001 -438,0 z"
|
|
77
|
+
id="rect4338-7-82-22-9" />
|
|
78
|
+
<path
|
|
79
|
+
inkscape:connector-curvature="0"
|
|
80
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
81
|
+
d="m 1533,661 0,1022 438,0 0,-1022 -438,0 z"
|
|
82
|
+
id="rect4338-7-82-22-3" />
|
|
83
|
+
<path
|
|
84
|
+
style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
85
|
+
d="m 511,442 c 0,146 0,146 0,146"
|
|
86
|
+
id="path4363-4-2-8-5-8-0-8-1-5-5-1"
|
|
87
|
+
inkscape:connector-curvature="0" />
|
|
88
|
+
<path
|
|
89
|
+
style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
90
|
+
d="m 1022,442 c 0,146 0,146 0,146"
|
|
91
|
+
id="path4363-4-2-8-5-8-0-8-1-5-5-1-9"
|
|
92
|
+
inkscape:connector-curvature="0" />
|
|
93
|
+
<path
|
|
94
|
+
style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
95
|
+
d="m 1533,442 c 0,146 0,146 0,146"
|
|
96
|
+
id="path4363-4-2-8-5-8-0-8-1-5-5-1-4"
|
|
97
|
+
inkscape:connector-curvature="0" />
|
|
98
|
+
</g>
|
|
99
|
+
</svg>
|
|
@@ -0,0 +1,111 @@
|
|
|
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
|
+
width="2048"
|
|
11
|
+
height="2048"
|
|
12
|
+
id="svg3891"
|
|
13
|
+
version="1.1"
|
|
14
|
+
inkscape:version="0.91 r13725"
|
|
15
|
+
sodipodi:docname="set-color.svg"
|
|
16
|
+
inkscape:export-filename="C:\Users\Philipp\Desktop\align-bottom-tool.png"
|
|
17
|
+
inkscape:export-xdpi="0.69999999"
|
|
18
|
+
inkscape:export-ydpi="0.69999999">
|
|
19
|
+
<sodipodi:namedview
|
|
20
|
+
pagecolor="#ffffff"
|
|
21
|
+
bordercolor="#666666"
|
|
22
|
+
borderopacity="1"
|
|
23
|
+
objecttolerance="10"
|
|
24
|
+
gridtolerance="10"
|
|
25
|
+
guidetolerance="10"
|
|
26
|
+
inkscape:pageopacity="0"
|
|
27
|
+
inkscape:pageshadow="2"
|
|
28
|
+
inkscape:window-width="1920"
|
|
29
|
+
inkscape:window-height="1027"
|
|
30
|
+
id="namedview6"
|
|
31
|
+
showgrid="false"
|
|
32
|
+
inkscape:snap-bbox="true"
|
|
33
|
+
inkscape:bbox-paths="true"
|
|
34
|
+
inkscape:bbox-nodes="true"
|
|
35
|
+
inkscape:snap-bbox-edge-midpoints="true"
|
|
36
|
+
inkscape:snap-bbox-midpoints="true"
|
|
37
|
+
inkscape:snap-center="false"
|
|
38
|
+
inkscape:zoom="0.16"
|
|
39
|
+
inkscape:cx="1019.5806"
|
|
40
|
+
inkscape:cy="976.38444"
|
|
41
|
+
inkscape:window-x="1592"
|
|
42
|
+
inkscape:window-y="-8"
|
|
43
|
+
inkscape:window-maximized="1"
|
|
44
|
+
inkscape:current-layer="svg3891" />
|
|
45
|
+
<defs
|
|
46
|
+
id="defs3893" />
|
|
47
|
+
<metadata
|
|
48
|
+
id="metadata3896">
|
|
49
|
+
<rdf:RDF>
|
|
50
|
+
<cc:Work
|
|
51
|
+
rdf:about="">
|
|
52
|
+
<dc:format>image/svg+xml</dc:format>
|
|
53
|
+
<dc:type
|
|
54
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
55
|
+
<dc:title></dc:title>
|
|
56
|
+
</cc:Work>
|
|
57
|
+
</rdf:RDF>
|
|
58
|
+
</metadata>
|
|
59
|
+
<g
|
|
60
|
+
id="g4247"
|
|
61
|
+
transform="matrix(0.86657935,0.86656601,-0.8706519,0.8706385,1241.9444,-973.98574)">
|
|
62
|
+
<rect
|
|
63
|
+
transform="matrix(0,1,-1,0,0,0)"
|
|
64
|
+
ry="7.2573023e-008"
|
|
65
|
+
rx="66287.227"
|
|
66
|
+
y="-1204"
|
|
67
|
+
x="300.12634"
|
|
68
|
+
height="360"
|
|
69
|
+
width="1000"
|
|
70
|
+
id="rect4136-7"
|
|
71
|
+
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
72
|
+
<rect
|
|
73
|
+
ry="7.2234677e-008"
|
|
74
|
+
rx="66597.734"
|
|
75
|
+
y="1542.1864"
|
|
76
|
+
x="603.13623"
|
|
77
|
+
height="338.4407"
|
|
78
|
+
width="854.00006"
|
|
79
|
+
id="rect4134"
|
|
80
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:118.85426331;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
81
|
+
<rect
|
|
82
|
+
ry="7.2234677e-008"
|
|
83
|
+
rx="66597.719"
|
|
84
|
+
y="1122.6344"
|
|
85
|
+
x="517.86371"
|
|
86
|
+
height="208.27118"
|
|
87
|
+
width="1000"
|
|
88
|
+
id="rect4136"
|
|
89
|
+
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
90
|
+
<rect
|
|
91
|
+
transform="matrix(0.87315759,0.48743802,-0.12756037,0.99183081,0,0)"
|
|
92
|
+
ry="6.9755927e-008"
|
|
93
|
+
rx="52748.914"
|
|
94
|
+
y="254.76707"
|
|
95
|
+
x="1395.241"
|
|
96
|
+
height="199.95149"
|
|
97
|
+
width="380.33994"
|
|
98
|
+
id="rect4136-3"
|
|
99
|
+
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
100
|
+
<rect
|
|
101
|
+
transform="matrix(-0.87315759,0.48743802,0.12756037,0.99183081,0,0)"
|
|
102
|
+
ry="6.9755927e-008"
|
|
103
|
+
rx="52748.914"
|
|
104
|
+
y="1323.813"
|
|
105
|
+
x="-780.03601"
|
|
106
|
+
height="199.95149"
|
|
107
|
+
width="380.33994"
|
|
108
|
+
id="rect4136-3-0"
|
|
109
|
+
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
110
|
+
</g>
|
|
111
|
+
</svg>
|
|
@@ -0,0 +1,30 @@
|
|
|
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
|
+
version="1.1"
|
|
9
|
+
id="svg3891"
|
|
10
|
+
height="2048"
|
|
11
|
+
width="2048">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs3893" />
|
|
14
|
+
<metadata
|
|
15
|
+
id="metadata3896">
|
|
16
|
+
<rdf:RDF>
|
|
17
|
+
<cc:Work
|
|
18
|
+
rdf:about="">
|
|
19
|
+
<dc:format>image/svg+xml</dc:format>
|
|
20
|
+
<dc:type
|
|
21
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
22
|
+
<dc:title></dc:title>
|
|
23
|
+
</cc:Work>
|
|
24
|
+
</rdf:RDF>
|
|
25
|
+
</metadata>
|
|
26
|
+
<path
|
|
27
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#282828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:146.00001526;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
|
28
|
+
d="M 0 296 L 0 1464 L 0 1610 L 584 1610 L 730 1610 L 1314 1610 L 1460 1610 L 2044 1610 L 2044 1464 L 2044 296 L 1971 296 L 1460 296 L 1460 1464 L 1314 1464 L 1314 734 L 1241 734 L 730 734 L 730 1464 L 584 1464 L 584 296 L 511 296 L 0 296 z M 146 442 L 438 442 L 438 1464 L 146 1464 L 146 442 z M 1606 442 L 1898 442 L 1898 1464 L 1606 1464 L 1606 442 z M 876 880 L 1168 880 L 1168 1464 L 876 1464 L 876 880 z "
|
|
29
|
+
id="path4363-4-2-8-5-8-0-8" />
|
|
30
|
+
</svg>
|
package/app/wujie-vue2-child/src/assets/icon/font/source/symbols/align-horizontal-center-tool.svg
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
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
|
+
width="2048"
|
|
9
|
+
height="2048"
|
|
10
|
+
id="svg3891"
|
|
11
|
+
version="1.1">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs3893" />
|
|
14
|
+
<metadata
|
|
15
|
+
id="metadata3896">
|
|
16
|
+
<rdf:RDF>
|
|
17
|
+
<cc:Work
|
|
18
|
+
rdf:about="">
|
|
19
|
+
<dc:format>image/svg+xml</dc:format>
|
|
20
|
+
<dc:type
|
|
21
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
22
|
+
<dc:title></dc:title>
|
|
23
|
+
</cc:Work>
|
|
24
|
+
</rdf:RDF>
|
|
25
|
+
</metadata>
|
|
26
|
+
<path
|
|
27
|
+
id="path4363-4-2-8-5-8-0-8"
|
|
28
|
+
d="M 292 4 L 292 588 L 365 588 L 949 588 L 949 734 L 584 734 L 584 1318 L 657 1318 L 954.97266 1318 L 954.97266 1464 L 292 1464 L 292 2048 L 365 2048 L 1752 2048 L 1752 1464 L 1100.9727 1464 L 1100.9727 1318 L 1460 1318 L 1460 734 L 1095 734 L 1095 588 L 1752 588 L 1752 4 L 292 4 z M 438 150 L 1606 150 L 1606 442 L 438 442 L 438 150 z M 730 880 L 1314 880 L 1314 1172 L 730 1172 L 730 880 z M 438 1610 L 1606 1610 L 1606 1902 L 438 1902 L 438 1610 z "
|
|
29
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#282828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
|
30
|
+
</svg>
|
|
@@ -0,0 +1,30 @@
|
|
|
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
|
+
width="2048"
|
|
9
|
+
height="2048"
|
|
10
|
+
id="svg3891"
|
|
11
|
+
version="1.1">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs3893" />
|
|
14
|
+
<metadata
|
|
15
|
+
id="metadata3896">
|
|
16
|
+
<rdf:RDF>
|
|
17
|
+
<cc:Work
|
|
18
|
+
rdf:about="">
|
|
19
|
+
<dc:format>image/svg+xml</dc:format>
|
|
20
|
+
<dc:type
|
|
21
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
22
|
+
<dc:title></dc:title>
|
|
23
|
+
</cc:Work>
|
|
24
|
+
</rdf:RDF>
|
|
25
|
+
</metadata>
|
|
26
|
+
<path
|
|
27
|
+
id="path4363-4-2-8-5-8-0-8"
|
|
28
|
+
d="M 292 4 L 292 588 L 292 734 L 292 1318 L 292 1464 L 292 2048 L 438 2048 L 1606 2048 L 1606 1975 L 1606 1464 L 438 1464 L 438 1318 L 1168 1318 L 1168 1245 L 1168 734 L 438 734 L 438 588 L 1606 588 L 1606 515 L 1606 4 L 438 4 L 292 4 z M 438 150 L 1460 150 L 1460 442 L 438 442 L 438 150 z M 438 880 L 1022 880 L 1022 1172 L 438 1172 L 438 880 z M 438 1610 L 1460 1610 L 1460 1902 L 438 1902 L 438 1610 z "
|
|
29
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#282828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:146.00001526;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
|
30
|
+
</svg>
|
|
@@ -0,0 +1,30 @@
|
|
|
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
|
+
width="2048"
|
|
9
|
+
height="2048"
|
|
10
|
+
id="svg3891"
|
|
11
|
+
version="1.1">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs3893" />
|
|
14
|
+
<metadata
|
|
15
|
+
id="metadata3896">
|
|
16
|
+
<rdf:RDF>
|
|
17
|
+
<cc:Work
|
|
18
|
+
rdf:about="">
|
|
19
|
+
<dc:format>image/svg+xml</dc:format>
|
|
20
|
+
<dc:type
|
|
21
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
22
|
+
<dc:title></dc:title>
|
|
23
|
+
</cc:Work>
|
|
24
|
+
</rdf:RDF>
|
|
25
|
+
</metadata>
|
|
26
|
+
<path
|
|
27
|
+
id="path4363-4-2-8-5-8-0-8"
|
|
28
|
+
d="M 438 4 L 438 588 L 511 588 L 1606 588 L 1606 734 L 876 734 L 876 1318 L 949 1318 L 1606 1318 L 1606 1464 L 438 1464 L 438 2048 L 511 2048 L 1606 2048 L 1752 2048 L 1752 1464 L 1752 1318 L 1752 734 L 1752 588 L 1752 4 L 1606 4 L 438 4 z M 584 150 L 1606 150 L 1606 442 L 584 442 L 584 150 z M 1022 880 L 1606 880 L 1606 1172 L 1022 1172 L 1022 880 z M 584 1610 L 1606 1610 L 1606 1902 L 584 1902 L 584 1610 z "
|
|
29
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#282828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:146.00001526;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
|
30
|
+
</svg>
|
|
@@ -0,0 +1,30 @@
|
|
|
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
|
+
width="2048"
|
|
9
|
+
height="2048"
|
|
10
|
+
id="svg3891"
|
|
11
|
+
version="1.1">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs3893" />
|
|
14
|
+
<metadata
|
|
15
|
+
id="metadata3896">
|
|
16
|
+
<rdf:RDF>
|
|
17
|
+
<cc:Work
|
|
18
|
+
rdf:about="">
|
|
19
|
+
<dc:format>image/svg+xml</dc:format>
|
|
20
|
+
<dc:type
|
|
21
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
22
|
+
<dc:title></dc:title>
|
|
23
|
+
</cc:Work>
|
|
24
|
+
</rdf:RDF>
|
|
25
|
+
</metadata>
|
|
26
|
+
<path
|
|
27
|
+
id="path4363-4-2-8-5-8-0-8"
|
|
28
|
+
d="M 0 296 L 0 442 L 0 1610 L 584 1610 L 584 1537 L 584 442 L 730 442 L 730 1172 L 1314 1172 L 1314 1099 L 1314 442 L 1460 442 L 1460 1610 L 2044 1610 L 2044 1537 L 2044 442 L 2044 296 L 1460 296 L 0 296 z M 146 442 L 438 442 L 438 1464 L 146 1464 L 146 442 z M 876 442 L 1168 442 L 1168 1026 L 876 1026 L 876 442 z M 1606 442 L 1898 442 L 1898 1464 L 1606 1464 L 1606 442 z "
|
|
29
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#282828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:146.00001526;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
|
30
|
+
</svg>
|
package/app/wujie-vue2-child/src/assets/icon/font/source/symbols/align-vertical-center-tool.svg
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
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
|
+
width="2048"
|
|
9
|
+
height="2048"
|
|
10
|
+
id="svg3891"
|
|
11
|
+
version="1.1">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs3893" />
|
|
14
|
+
<metadata
|
|
15
|
+
id="metadata3896">
|
|
16
|
+
<rdf:RDF>
|
|
17
|
+
<cc:Work
|
|
18
|
+
rdf:about="">
|
|
19
|
+
<dc:format>image/svg+xml</dc:format>
|
|
20
|
+
<dc:type
|
|
21
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
22
|
+
<dc:title></dc:title>
|
|
23
|
+
</cc:Work>
|
|
24
|
+
</rdf:RDF>
|
|
25
|
+
</metadata>
|
|
26
|
+
<path
|
|
27
|
+
id="path4363-4-2-8-5-8-0-8"
|
|
28
|
+
d="M 0 296 L 0 369 L 0 1756 L 584 1756 L 584 1104.9727 L 730 1104.9727 L 730 1464 L 1314 1464 L 1314 1099 L 1460 1099 L 1460 1756 L 2044 1756 L 2044 296 L 1460 296 L 1460 369 L 1460 953 L 1314 953 L 1314 588 L 730 588 L 730 661 L 730 958.97266 L 584 958.97266 L 584 296 L 0 296 z M 146 442 L 438 442 L 438 1610 L 146 1610 L 146 442 z M 1606 442 L 1898 442 L 1898 1610 L 1606 1610 L 1606 442 z M 876 734 L 1168 734 L 1168 1318 L 876 1318 L 876 734 z "
|
|
29
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#282828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
|
30
|
+
</svg>
|
package/app/wujie-vue2-child/src/assets/icon/font/source/symbols/distribute-horizontally-tool.svg
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
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
|
+
width="2048"
|
|
9
|
+
height="2048"
|
|
10
|
+
id="svg3891"
|
|
11
|
+
version="1.1">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs3893" />
|
|
14
|
+
<metadata
|
|
15
|
+
id="metadata3896">
|
|
16
|
+
<rdf:RDF>
|
|
17
|
+
<cc:Work
|
|
18
|
+
rdf:about="">
|
|
19
|
+
<dc:format>image/svg+xml</dc:format>
|
|
20
|
+
<dc:type
|
|
21
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
22
|
+
<dc:title></dc:title>
|
|
23
|
+
</cc:Work>
|
|
24
|
+
</rdf:RDF>
|
|
25
|
+
</metadata>
|
|
26
|
+
<path
|
|
27
|
+
id="rect4338-7-82-22"
|
|
28
|
+
d="M 438 296 L 438 442 L 438 588 L 0 588 L 0 661 L 0 1756 L 584 1756 L 584 588 L 584 442 L 949 442 L 949 588 L 730 588 L 730 661 L 730 1464 L 1314 1464 L 1314 588 L 1095 588 L 1095 442 L 1460 442 L 1460 588 L 1460 661 L 1460 1756 L 2044 1756 L 2044 588 L 1606 588 L 1606 442 L 1606 296 L 438 296 z M 146 734 L 438 734 L 438 1610 L 146 1610 L 146 734 z M 876 734 L 1168 734 L 1168 1318 L 876 1318 L 876 734 z M 1606 734 L 1898 734 L 1898 1610 L 1606 1610 L 1606 734 z "
|
|
29
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#282828;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
|
30
|
+
</svg>
|
package/app/wujie-vue2-child/src/assets/icon/font/source/symbols/distribute-vertically-tool.svg
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
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
|
+
width="2048"
|
|
9
|
+
height="2048"
|
|
10
|
+
id="svg3891"
|
|
11
|
+
version="1.1">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs3893" />
|
|
14
|
+
<metadata
|
|
15
|
+
id="metadata3896">
|
|
16
|
+
<rdf:RDF>
|
|
17
|
+
<cc:Work
|
|
18
|
+
rdf:about="">
|
|
19
|
+
<dc:format>image/svg+xml</dc:format>
|
|
20
|
+
<dc:type
|
|
21
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
22
|
+
<dc:title></dc:title>
|
|
23
|
+
</cc:Work>
|
|
24
|
+
</rdf:RDF>
|
|
25
|
+
</metadata>
|
|
26
|
+
<path
|
|
27
|
+
id="rect4338-7-82-22"
|
|
28
|
+
d="M 584 4 L 584 442 L 438 442 L 292 442 L 292 1610 L 438 1610 L 584 1610 L 584 2048 L 657 2048 L 1752 2048 L 1752 1464 L 584 1464 L 438 1464 L 438 1099 L 584 1099 L 584 1318 L 657 1318 L 1460 1318 L 1460 734 L 584 734 L 584 953 L 438 953 L 438 588 L 584 588 L 657 588 L 1752 588 L 1752 4 L 584 4 z M 730 150 L 1606 150 L 1606 442 L 730 442 L 730 150 z M 730 880 L 1314 880 L 1314 1172 L 730 1172 L 730 880 z M 730 1610 L 1606 1610 L 1606 1902 L 730 1902 L 730 1610 z "
|
|
29
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#282828;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
|
30
|
+
</svg>
|