@univerjs/icons-vue 1.10.0 → 1.12.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/dist/cjs/crop-icon.cjs +64 -0
- package/dist/cjs/grip-vertical-icon.cjs +92 -0
- package/dist/cjs/index.cjs +36 -22
- package/dist/cjs/{progress-0-icon.cjs → progress-0-double-icon.cjs} +6 -6
- package/dist/cjs/{progress-100-icon.cjs → progress-100-double-icon.cjs} +6 -6
- package/dist/cjs/{progress-25-icon.cjs → progress-25-double-icon.cjs} +6 -6
- package/dist/cjs/{progress-50-icon.cjs → progress-50-double-icon.cjs} +6 -6
- package/dist/cjs/{progress-75-icon.cjs → progress-75-double-icon.cjs} +6 -6
- package/dist/cjs/text-wrap-shape-icon.cjs +135 -0
- package/dist/esm/{sequence-icon.d.ts → crop-icon.d.ts} +2 -2
- package/dist/esm/crop-icon.js +59 -0
- package/dist/esm/{progress-0-icon.d.ts → grip-vertical-icon.d.ts} +2 -2
- package/dist/esm/grip-vertical-icon.js +87 -0
- package/dist/esm/index.d.ts +8 -6
- package/dist/esm/index.js +9 -7
- package/dist/esm/{progress-25-icon.d.ts → progress-0-double-icon.d.ts} +2 -2
- package/dist/esm/{progress-0-icon.js → progress-0-double-icon.js} +5 -5
- package/dist/esm/progress-100-double-icon.d.ts +18 -0
- package/dist/esm/{progress-100-icon.js → progress-100-double-icon.js} +5 -5
- package/dist/esm/{progress-50-icon.d.ts → progress-25-double-icon.d.ts} +2 -2
- package/dist/esm/{progress-25-icon.js → progress-25-double-icon.js} +5 -5
- package/dist/esm/progress-50-double-icon.d.ts +18 -0
- package/dist/esm/{progress-50-icon.js → progress-50-double-icon.js} +5 -5
- package/dist/esm/progress-75-double-icon.d.ts +18 -0
- package/dist/esm/{progress-75-icon.js → progress-75-double-icon.js} +5 -5
- package/dist/esm/{progress-100-icon.d.ts → text-wrap-shape-icon.d.ts} +2 -2
- package/dist/esm/text-wrap-shape-icon.js +130 -0
- package/package.json +2 -2
- package/dist/cjs/sequence-icon.cjs +0 -80
- package/dist/esm/progress-75-icon.d.ts +0 -18
- package/dist/esm/sequence-icon.js +0 -75
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
Object.defineProperties(exports, {
|
|
2
|
+
__esModule: { value: true },
|
|
3
|
+
[Symbol.toStringTag]: { value: "Module" }
|
|
4
|
+
});
|
|
5
|
+
let vue = require("vue");
|
|
6
|
+
let ts_base_js = require("./base.cjs");
|
|
7
|
+
//#region ts/crop-icon.ts
|
|
8
|
+
const element = {
|
|
9
|
+
"tag": "svg",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
12
|
+
"fill": "none",
|
|
13
|
+
"viewBox": "0 0 20 20",
|
|
14
|
+
"width": "1em",
|
|
15
|
+
"height": "1em"
|
|
16
|
+
},
|
|
17
|
+
"children": [
|
|
18
|
+
{
|
|
19
|
+
"tag": "path",
|
|
20
|
+
"attrs": {
|
|
21
|
+
"stroke": "currentColor",
|
|
22
|
+
"stroke-linecap": "round",
|
|
23
|
+
"stroke-width": 1.5,
|
|
24
|
+
"d": "M5 2.8V12.5C5 13.9 6.1 15 7.5 15H17.2"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"tag": "path",
|
|
29
|
+
"attrs": {
|
|
30
|
+
"stroke": "currentColor",
|
|
31
|
+
"stroke-linecap": "round",
|
|
32
|
+
"stroke-width": 1.5,
|
|
33
|
+
"d": "M2.8 5H12.5C13.9 5 15 6.1 15 7.5V17.2"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"tag": "path",
|
|
38
|
+
"attrs": {
|
|
39
|
+
"stroke": "currentColor",
|
|
40
|
+
"stroke-width": 1.2,
|
|
41
|
+
"d": "M8.3 8.3H11.7V11.7H8.3V8.3Z"
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
]
|
|
45
|
+
};
|
|
46
|
+
const CropIcon = (0, vue.defineComponent)({
|
|
47
|
+
name: "CropIcon",
|
|
48
|
+
inheritAttrs: false,
|
|
49
|
+
props: { extend: {
|
|
50
|
+
type: Object,
|
|
51
|
+
default: void 0
|
|
52
|
+
} },
|
|
53
|
+
setup(props, { attrs }) {
|
|
54
|
+
return () => (0, vue.h)(ts_base_js.IconBase, {
|
|
55
|
+
...attrs,
|
|
56
|
+
extend: props.extend,
|
|
57
|
+
id: "crop-icon",
|
|
58
|
+
icon: element
|
|
59
|
+
});
|
|
60
|
+
}
|
|
61
|
+
});
|
|
62
|
+
//#endregion
|
|
63
|
+
exports.CropIcon = CropIcon;
|
|
64
|
+
exports.default = CropIcon;
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
Object.defineProperties(exports, {
|
|
2
|
+
__esModule: { value: true },
|
|
3
|
+
[Symbol.toStringTag]: { value: "Module" }
|
|
4
|
+
});
|
|
5
|
+
let vue = require("vue");
|
|
6
|
+
let ts_base_js = require("./base.cjs");
|
|
7
|
+
//#region ts/grip-vertical-icon.ts
|
|
8
|
+
const element = {
|
|
9
|
+
"tag": "svg",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
12
|
+
"fill": "none",
|
|
13
|
+
"viewBox": "0 0 20 20",
|
|
14
|
+
"width": "1em",
|
|
15
|
+
"height": "1em"
|
|
16
|
+
},
|
|
17
|
+
"children": [
|
|
18
|
+
{
|
|
19
|
+
"tag": "circle",
|
|
20
|
+
"attrs": {
|
|
21
|
+
"cx": 7,
|
|
22
|
+
"cy": 5,
|
|
23
|
+
"r": 1.1,
|
|
24
|
+
"fill": "currentColor"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"tag": "circle",
|
|
29
|
+
"attrs": {
|
|
30
|
+
"cx": 13,
|
|
31
|
+
"cy": 5,
|
|
32
|
+
"r": 1.1,
|
|
33
|
+
"fill": "currentColor"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"tag": "circle",
|
|
38
|
+
"attrs": {
|
|
39
|
+
"cx": 7,
|
|
40
|
+
"cy": 10,
|
|
41
|
+
"r": 1.1,
|
|
42
|
+
"fill": "currentColor"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"tag": "circle",
|
|
47
|
+
"attrs": {
|
|
48
|
+
"cx": 13,
|
|
49
|
+
"cy": 10,
|
|
50
|
+
"r": 1.1,
|
|
51
|
+
"fill": "currentColor"
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"tag": "circle",
|
|
56
|
+
"attrs": {
|
|
57
|
+
"cx": 7,
|
|
58
|
+
"cy": 15,
|
|
59
|
+
"r": 1.1,
|
|
60
|
+
"fill": "currentColor"
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"tag": "circle",
|
|
65
|
+
"attrs": {
|
|
66
|
+
"cx": 13,
|
|
67
|
+
"cy": 15,
|
|
68
|
+
"r": 1.1,
|
|
69
|
+
"fill": "currentColor"
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
]
|
|
73
|
+
};
|
|
74
|
+
const GripVerticalIcon = (0, vue.defineComponent)({
|
|
75
|
+
name: "GripVerticalIcon",
|
|
76
|
+
inheritAttrs: false,
|
|
77
|
+
props: { extend: {
|
|
78
|
+
type: Object,
|
|
79
|
+
default: void 0
|
|
80
|
+
} },
|
|
81
|
+
setup(props, { attrs }) {
|
|
82
|
+
return () => (0, vue.h)(ts_base_js.IconBase, {
|
|
83
|
+
...attrs,
|
|
84
|
+
extend: props.extend,
|
|
85
|
+
id: "grip-vertical-icon",
|
|
86
|
+
icon: element
|
|
87
|
+
});
|
|
88
|
+
}
|
|
89
|
+
});
|
|
90
|
+
//#endregion
|
|
91
|
+
exports.GripVerticalIcon = GripVerticalIcon;
|
|
92
|
+
exports.default = GripVerticalIcon;
|
package/dist/cjs/index.cjs
CHANGED
|
@@ -49,6 +49,7 @@ let ts_convert_icon_js = require("./convert-icon.cjs");
|
|
|
49
49
|
let ts_copy_icon_js = require("./copy-icon.cjs");
|
|
50
50
|
let ts_correct_icon_js = require("./correct-icon.cjs");
|
|
51
51
|
let ts_create_copy_icon_js = require("./create-copy-icon.cjs");
|
|
52
|
+
let ts_crop_icon_js = require("./crop-icon.cjs");
|
|
52
53
|
let ts_cross_highlighting_icon_js = require("./cross-highlighting-icon.cjs");
|
|
53
54
|
let ts_cross_icon_js = require("./cross-icon.cjs");
|
|
54
55
|
let ts_custom_sort_icon_js = require("./custom-sort-icon.cjs");
|
|
@@ -94,6 +95,7 @@ let ts_fx_icon_js = require("./fx-icon.cjs");
|
|
|
94
95
|
let ts_graph_icon_js = require("./graph-icon.cjs");
|
|
95
96
|
let ts_grid_icon_js = require("./grid-icon.cjs");
|
|
96
97
|
let ts_grid_outline_icon_js = require("./grid-outline-icon.cjs");
|
|
98
|
+
let ts_grip_vertical_icon_js = require("./grip-vertical-icon.cjs");
|
|
97
99
|
let ts_group_icon_js = require("./group-icon.cjs");
|
|
98
100
|
let ts_group_sparkline_icon_js = require("./group-sparkline-icon.cjs");
|
|
99
101
|
let ts_guide_icon_js = require("./guide-icon.cjs");
|
|
@@ -162,11 +164,6 @@ let ts_places_icon_js = require("./places-icon.cjs");
|
|
|
162
164
|
let ts_polynomial_icon_js = require("./polynomial-icon.cjs");
|
|
163
165
|
let ts_power_line_icon_js = require("./power-line-icon.cjs");
|
|
164
166
|
let ts_print_icon_js = require("./print-icon.cjs");
|
|
165
|
-
let ts_progress_0_icon_js = require("./progress-0-icon.cjs");
|
|
166
|
-
let ts_progress_100_icon_js = require("./progress-100-icon.cjs");
|
|
167
|
-
let ts_progress_25_icon_js = require("./progress-25-icon.cjs");
|
|
168
|
-
let ts_progress_50_icon_js = require("./progress-50-icon.cjs");
|
|
169
|
-
let ts_progress_75_icon_js = require("./progress-75-icon.cjs");
|
|
170
167
|
let ts_protect_icon_js = require("./protect-icon.cjs");
|
|
171
168
|
let ts_quote_icon_js = require("./quote-icon.cjs");
|
|
172
169
|
let ts_radar_chart_icon_js = require("./radar-chart-icon.cjs");
|
|
@@ -193,7 +190,6 @@ let ts_sankey_icon_js = require("./sankey-icon.cjs");
|
|
|
193
190
|
let ts_scatter_chart_icon_js = require("./scatter-chart-icon.cjs");
|
|
194
191
|
let ts_search_icon_js = require("./search-icon.cjs");
|
|
195
192
|
let ts_select_range_icon_js = require("./select-range-icon.cjs");
|
|
196
|
-
let ts_sequence_icon_js = require("./sequence-icon.cjs");
|
|
197
193
|
let ts_shape_accent_border_callout1_icon_js = require("./shape-accent-border-callout1-icon.cjs");
|
|
198
194
|
let ts_shape_accent_border_callout2_icon_js = require("./shape-accent-border-callout2-icon.cjs");
|
|
199
195
|
let ts_shape_accent_border_callout3_icon_js = require("./shape-accent-border-callout3-icon.cjs");
|
|
@@ -400,6 +396,7 @@ let ts_symbols_icon_js = require("./symbols-icon.cjs");
|
|
|
400
396
|
let ts_table_icon_js = require("./table-icon.cjs");
|
|
401
397
|
let ts_text_icon_js = require("./text-icon.cjs");
|
|
402
398
|
let ts_text_type_icon_js = require("./text-type-icon.cjs");
|
|
399
|
+
let ts_text_wrap_shape_icon_js = require("./text-wrap-shape-icon.cjs");
|
|
403
400
|
let ts_topmost_icon_js = require("./topmost-icon.cjs");
|
|
404
401
|
let ts_triangle_icon_js = require("./triangle-icon.cjs");
|
|
405
402
|
let ts_truncation_icon_js = require("./truncation-icon.cjs");
|
|
@@ -480,6 +477,11 @@ let ts_outer_border_double_icon_js = require("./outer-border-double-icon.cjs");
|
|
|
480
477
|
let ts_paint_bucket_double_icon_js = require("./paint-bucket-double-icon.cjs");
|
|
481
478
|
let ts_paste_special_double_icon_js = require("./paste-special-double-icon.cjs");
|
|
482
479
|
let ts_point_color_double_icon_js = require("./point-color-double-icon.cjs");
|
|
480
|
+
let ts_progress_0_double_icon_js = require("./progress-0-double-icon.cjs");
|
|
481
|
+
let ts_progress_100_double_icon_js = require("./progress-100-double-icon.cjs");
|
|
482
|
+
let ts_progress_25_double_icon_js = require("./progress-25-double-icon.cjs");
|
|
483
|
+
let ts_progress_50_double_icon_js = require("./progress-50-double-icon.cjs");
|
|
484
|
+
let ts_progress_75_double_icon_js = require("./progress-75-double-icon.cjs");
|
|
483
485
|
let ts_reduce_double_icon_js = require("./reduce-double-icon.cjs");
|
|
484
486
|
let ts_right_border_double_icon_js = require("./right-border-double-icon.cjs");
|
|
485
487
|
let ts_right_double_diagonal_double_icon_js = require("./right-double-diagonal-double-icon.cjs");
|
|
@@ -890,6 +892,12 @@ Object.defineProperty(exports, "CreateCopyIcon", {
|
|
|
890
892
|
return ts_create_copy_icon_js.CreateCopyIcon;
|
|
891
893
|
}
|
|
892
894
|
});
|
|
895
|
+
Object.defineProperty(exports, "CropIcon", {
|
|
896
|
+
enumerable: true,
|
|
897
|
+
get: function() {
|
|
898
|
+
return ts_crop_icon_js.CropIcon;
|
|
899
|
+
}
|
|
900
|
+
});
|
|
893
901
|
Object.defineProperty(exports, "CrossHighlightingIcon", {
|
|
894
902
|
enumerable: true,
|
|
895
903
|
get: function() {
|
|
@@ -1220,6 +1228,12 @@ Object.defineProperty(exports, "GridOutlineIcon", {
|
|
|
1220
1228
|
return ts_grid_outline_icon_js.GridOutlineIcon;
|
|
1221
1229
|
}
|
|
1222
1230
|
});
|
|
1231
|
+
Object.defineProperty(exports, "GripVerticalIcon", {
|
|
1232
|
+
enumerable: true,
|
|
1233
|
+
get: function() {
|
|
1234
|
+
return ts_grip_vertical_icon_js.GripVerticalIcon;
|
|
1235
|
+
}
|
|
1236
|
+
});
|
|
1223
1237
|
Object.defineProperty(exports, "GroupIcon", {
|
|
1224
1238
|
enumerable: true,
|
|
1225
1239
|
get: function() {
|
|
@@ -1790,34 +1804,34 @@ Object.defineProperty(exports, "PrintIcon", {
|
|
|
1790
1804
|
return ts_print_icon_js.PrintIcon;
|
|
1791
1805
|
}
|
|
1792
1806
|
});
|
|
1793
|
-
Object.defineProperty(exports, "
|
|
1807
|
+
Object.defineProperty(exports, "Progress0DoubleIcon", {
|
|
1794
1808
|
enumerable: true,
|
|
1795
1809
|
get: function() {
|
|
1796
|
-
return
|
|
1810
|
+
return ts_progress_0_double_icon_js.Progress0DoubleIcon;
|
|
1797
1811
|
}
|
|
1798
1812
|
});
|
|
1799
|
-
Object.defineProperty(exports, "
|
|
1813
|
+
Object.defineProperty(exports, "Progress100DoubleIcon", {
|
|
1800
1814
|
enumerable: true,
|
|
1801
1815
|
get: function() {
|
|
1802
|
-
return
|
|
1816
|
+
return ts_progress_100_double_icon_js.Progress100DoubleIcon;
|
|
1803
1817
|
}
|
|
1804
1818
|
});
|
|
1805
|
-
Object.defineProperty(exports, "
|
|
1819
|
+
Object.defineProperty(exports, "Progress25DoubleIcon", {
|
|
1806
1820
|
enumerable: true,
|
|
1807
1821
|
get: function() {
|
|
1808
|
-
return
|
|
1822
|
+
return ts_progress_25_double_icon_js.Progress25DoubleIcon;
|
|
1809
1823
|
}
|
|
1810
1824
|
});
|
|
1811
|
-
Object.defineProperty(exports, "
|
|
1825
|
+
Object.defineProperty(exports, "Progress50DoubleIcon", {
|
|
1812
1826
|
enumerable: true,
|
|
1813
1827
|
get: function() {
|
|
1814
|
-
return
|
|
1828
|
+
return ts_progress_50_double_icon_js.Progress50DoubleIcon;
|
|
1815
1829
|
}
|
|
1816
1830
|
});
|
|
1817
|
-
Object.defineProperty(exports, "
|
|
1831
|
+
Object.defineProperty(exports, "Progress75DoubleIcon", {
|
|
1818
1832
|
enumerable: true,
|
|
1819
1833
|
get: function() {
|
|
1820
|
-
return
|
|
1834
|
+
return ts_progress_75_double_icon_js.Progress75DoubleIcon;
|
|
1821
1835
|
}
|
|
1822
1836
|
});
|
|
1823
1837
|
Object.defineProperty(exports, "ProtectIcon", {
|
|
@@ -2000,12 +2014,6 @@ Object.defineProperty(exports, "SelectRangeIcon", {
|
|
|
2000
2014
|
return ts_select_range_icon_js.SelectRangeIcon;
|
|
2001
2015
|
}
|
|
2002
2016
|
});
|
|
2003
|
-
Object.defineProperty(exports, "SequenceIcon", {
|
|
2004
|
-
enumerable: true,
|
|
2005
|
-
get: function() {
|
|
2006
|
-
return ts_sequence_icon_js.SequenceIcon;
|
|
2007
|
-
}
|
|
2008
|
-
});
|
|
2009
2017
|
Object.defineProperty(exports, "ShapeAccentBorderCallout1Icon", {
|
|
2010
2018
|
enumerable: true,
|
|
2011
2019
|
get: function() {
|
|
@@ -3320,6 +3328,12 @@ Object.defineProperty(exports, "TextTypeIcon", {
|
|
|
3320
3328
|
return ts_text_type_icon_js.TextTypeIcon;
|
|
3321
3329
|
}
|
|
3322
3330
|
});
|
|
3331
|
+
Object.defineProperty(exports, "TextWrapShapeIcon", {
|
|
3332
|
+
enumerable: true,
|
|
3333
|
+
get: function() {
|
|
3334
|
+
return ts_text_wrap_shape_icon_js.TextWrapShapeIcon;
|
|
3335
|
+
}
|
|
3336
|
+
});
|
|
3323
3337
|
Object.defineProperty(exports, "TodoListDoubleIcon", {
|
|
3324
3338
|
enumerable: true,
|
|
3325
3339
|
get: function() {
|
|
@@ -4,7 +4,7 @@ Object.defineProperties(exports, {
|
|
|
4
4
|
});
|
|
5
5
|
let vue = require("vue");
|
|
6
6
|
let ts_base_js = require("./base.cjs");
|
|
7
|
-
//#region ts/progress-0-icon.ts
|
|
7
|
+
//#region ts/progress-0-double-icon.ts
|
|
8
8
|
const element = {
|
|
9
9
|
"tag": "svg",
|
|
10
10
|
"attrs": {
|
|
@@ -33,8 +33,8 @@ const element = {
|
|
|
33
33
|
}
|
|
34
34
|
}]
|
|
35
35
|
};
|
|
36
|
-
const
|
|
37
|
-
name: "
|
|
36
|
+
const Progress0DoubleIcon = (0, vue.defineComponent)({
|
|
37
|
+
name: "Progress0DoubleIcon",
|
|
38
38
|
inheritAttrs: false,
|
|
39
39
|
props: { extend: {
|
|
40
40
|
type: Object,
|
|
@@ -44,11 +44,11 @@ const Progress0Icon = (0, vue.defineComponent)({
|
|
|
44
44
|
return () => (0, vue.h)(ts_base_js.IconBase, {
|
|
45
45
|
...attrs,
|
|
46
46
|
extend: props.extend,
|
|
47
|
-
id: "progress-0-icon",
|
|
47
|
+
id: "progress-0-double-icon",
|
|
48
48
|
icon: element
|
|
49
49
|
});
|
|
50
50
|
}
|
|
51
51
|
});
|
|
52
52
|
//#endregion
|
|
53
|
-
exports.
|
|
54
|
-
exports.default =
|
|
53
|
+
exports.Progress0DoubleIcon = Progress0DoubleIcon;
|
|
54
|
+
exports.default = Progress0DoubleIcon;
|
|
@@ -4,7 +4,7 @@ Object.defineProperties(exports, {
|
|
|
4
4
|
});
|
|
5
5
|
let vue = require("vue");
|
|
6
6
|
let ts_base_js = require("./base.cjs");
|
|
7
|
-
//#region ts/progress-100-icon.ts
|
|
7
|
+
//#region ts/progress-100-double-icon.ts
|
|
8
8
|
const element = {
|
|
9
9
|
"tag": "svg",
|
|
10
10
|
"attrs": {
|
|
@@ -33,8 +33,8 @@ const element = {
|
|
|
33
33
|
}
|
|
34
34
|
}]
|
|
35
35
|
};
|
|
36
|
-
const
|
|
37
|
-
name: "
|
|
36
|
+
const Progress100DoubleIcon = (0, vue.defineComponent)({
|
|
37
|
+
name: "Progress100DoubleIcon",
|
|
38
38
|
inheritAttrs: false,
|
|
39
39
|
props: { extend: {
|
|
40
40
|
type: Object,
|
|
@@ -44,11 +44,11 @@ const Progress100Icon = (0, vue.defineComponent)({
|
|
|
44
44
|
return () => (0, vue.h)(ts_base_js.IconBase, {
|
|
45
45
|
...attrs,
|
|
46
46
|
extend: props.extend,
|
|
47
|
-
id: "progress-100-icon",
|
|
47
|
+
id: "progress-100-double-icon",
|
|
48
48
|
icon: element
|
|
49
49
|
});
|
|
50
50
|
}
|
|
51
51
|
});
|
|
52
52
|
//#endregion
|
|
53
|
-
exports.
|
|
54
|
-
exports.default =
|
|
53
|
+
exports.Progress100DoubleIcon = Progress100DoubleIcon;
|
|
54
|
+
exports.default = Progress100DoubleIcon;
|
|
@@ -4,7 +4,7 @@ Object.defineProperties(exports, {
|
|
|
4
4
|
});
|
|
5
5
|
let vue = require("vue");
|
|
6
6
|
let ts_base_js = require("./base.cjs");
|
|
7
|
-
//#region ts/progress-25-icon.ts
|
|
7
|
+
//#region ts/progress-25-double-icon.ts
|
|
8
8
|
const element = {
|
|
9
9
|
"tag": "svg",
|
|
10
10
|
"attrs": {
|
|
@@ -43,8 +43,8 @@ const element = {
|
|
|
43
43
|
}
|
|
44
44
|
]
|
|
45
45
|
};
|
|
46
|
-
const
|
|
47
|
-
name: "
|
|
46
|
+
const Progress25DoubleIcon = (0, vue.defineComponent)({
|
|
47
|
+
name: "Progress25DoubleIcon",
|
|
48
48
|
inheritAttrs: false,
|
|
49
49
|
props: { extend: {
|
|
50
50
|
type: Object,
|
|
@@ -54,11 +54,11 @@ const Progress25Icon = (0, vue.defineComponent)({
|
|
|
54
54
|
return () => (0, vue.h)(ts_base_js.IconBase, {
|
|
55
55
|
...attrs,
|
|
56
56
|
extend: props.extend,
|
|
57
|
-
id: "progress-25-icon",
|
|
57
|
+
id: "progress-25-double-icon",
|
|
58
58
|
icon: element
|
|
59
59
|
});
|
|
60
60
|
}
|
|
61
61
|
});
|
|
62
62
|
//#endregion
|
|
63
|
-
exports.
|
|
64
|
-
exports.default =
|
|
63
|
+
exports.Progress25DoubleIcon = Progress25DoubleIcon;
|
|
64
|
+
exports.default = Progress25DoubleIcon;
|
|
@@ -4,7 +4,7 @@ Object.defineProperties(exports, {
|
|
|
4
4
|
});
|
|
5
5
|
let vue = require("vue");
|
|
6
6
|
let ts_base_js = require("./base.cjs");
|
|
7
|
-
//#region ts/progress-50-icon.ts
|
|
7
|
+
//#region ts/progress-50-double-icon.ts
|
|
8
8
|
const element = {
|
|
9
9
|
"tag": "svg",
|
|
10
10
|
"attrs": {
|
|
@@ -43,8 +43,8 @@ const element = {
|
|
|
43
43
|
}
|
|
44
44
|
]
|
|
45
45
|
};
|
|
46
|
-
const
|
|
47
|
-
name: "
|
|
46
|
+
const Progress50DoubleIcon = (0, vue.defineComponent)({
|
|
47
|
+
name: "Progress50DoubleIcon",
|
|
48
48
|
inheritAttrs: false,
|
|
49
49
|
props: { extend: {
|
|
50
50
|
type: Object,
|
|
@@ -54,11 +54,11 @@ const Progress50Icon = (0, vue.defineComponent)({
|
|
|
54
54
|
return () => (0, vue.h)(ts_base_js.IconBase, {
|
|
55
55
|
...attrs,
|
|
56
56
|
extend: props.extend,
|
|
57
|
-
id: "progress-50-icon",
|
|
57
|
+
id: "progress-50-double-icon",
|
|
58
58
|
icon: element
|
|
59
59
|
});
|
|
60
60
|
}
|
|
61
61
|
});
|
|
62
62
|
//#endregion
|
|
63
|
-
exports.
|
|
64
|
-
exports.default =
|
|
63
|
+
exports.Progress50DoubleIcon = Progress50DoubleIcon;
|
|
64
|
+
exports.default = Progress50DoubleIcon;
|
|
@@ -4,7 +4,7 @@ Object.defineProperties(exports, {
|
|
|
4
4
|
});
|
|
5
5
|
let vue = require("vue");
|
|
6
6
|
let ts_base_js = require("./base.cjs");
|
|
7
|
-
//#region ts/progress-75-icon.ts
|
|
7
|
+
//#region ts/progress-75-double-icon.ts
|
|
8
8
|
const element = {
|
|
9
9
|
"tag": "svg",
|
|
10
10
|
"attrs": {
|
|
@@ -43,8 +43,8 @@ const element = {
|
|
|
43
43
|
}
|
|
44
44
|
]
|
|
45
45
|
};
|
|
46
|
-
const
|
|
47
|
-
name: "
|
|
46
|
+
const Progress75DoubleIcon = (0, vue.defineComponent)({
|
|
47
|
+
name: "Progress75DoubleIcon",
|
|
48
48
|
inheritAttrs: false,
|
|
49
49
|
props: { extend: {
|
|
50
50
|
type: Object,
|
|
@@ -54,11 +54,11 @@ const Progress75Icon = (0, vue.defineComponent)({
|
|
|
54
54
|
return () => (0, vue.h)(ts_base_js.IconBase, {
|
|
55
55
|
...attrs,
|
|
56
56
|
extend: props.extend,
|
|
57
|
-
id: "progress-75-icon",
|
|
57
|
+
id: "progress-75-double-icon",
|
|
58
58
|
icon: element
|
|
59
59
|
});
|
|
60
60
|
}
|
|
61
61
|
});
|
|
62
62
|
//#endregion
|
|
63
|
-
exports.
|
|
64
|
-
exports.default =
|
|
63
|
+
exports.Progress75DoubleIcon = Progress75DoubleIcon;
|
|
64
|
+
exports.default = Progress75DoubleIcon;
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
Object.defineProperties(exports, {
|
|
2
|
+
__esModule: { value: true },
|
|
3
|
+
[Symbol.toStringTag]: { value: "Module" }
|
|
4
|
+
});
|
|
5
|
+
let vue = require("vue");
|
|
6
|
+
let ts_base_js = require("./base.cjs");
|
|
7
|
+
//#region ts/text-wrap-shape-icon.ts
|
|
8
|
+
const element = {
|
|
9
|
+
"tag": "svg",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
12
|
+
"fill": "none",
|
|
13
|
+
"viewBox": "0 0 20 20",
|
|
14
|
+
"width": "1em",
|
|
15
|
+
"height": "1em"
|
|
16
|
+
},
|
|
17
|
+
"children": [
|
|
18
|
+
{
|
|
19
|
+
"tag": "rect",
|
|
20
|
+
"attrs": {
|
|
21
|
+
"width": 17,
|
|
22
|
+
"height": 1.2,
|
|
23
|
+
"x": 1.5,
|
|
24
|
+
"y": 2.45,
|
|
25
|
+
"fill": "currentColor",
|
|
26
|
+
"rx": .6
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"tag": "rect",
|
|
31
|
+
"attrs": {
|
|
32
|
+
"width": 3.25,
|
|
33
|
+
"height": 1.2,
|
|
34
|
+
"x": 1.5,
|
|
35
|
+
"y": 6.1,
|
|
36
|
+
"fill": "currentColor",
|
|
37
|
+
"rx": .6
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"tag": "rect",
|
|
42
|
+
"attrs": {
|
|
43
|
+
"width": 3.25,
|
|
44
|
+
"height": 1.2,
|
|
45
|
+
"x": 15.25,
|
|
46
|
+
"y": 6.1,
|
|
47
|
+
"fill": "currentColor",
|
|
48
|
+
"rx": .6
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"tag": "rect",
|
|
53
|
+
"attrs": {
|
|
54
|
+
"width": 3.25,
|
|
55
|
+
"height": 1.2,
|
|
56
|
+
"x": 1.5,
|
|
57
|
+
"y": 9.4,
|
|
58
|
+
"fill": "currentColor",
|
|
59
|
+
"rx": .6
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"tag": "rect",
|
|
64
|
+
"attrs": {
|
|
65
|
+
"width": 3.25,
|
|
66
|
+
"height": 1.2,
|
|
67
|
+
"x": 15.25,
|
|
68
|
+
"y": 9.4,
|
|
69
|
+
"fill": "currentColor",
|
|
70
|
+
"rx": .6
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"tag": "rect",
|
|
75
|
+
"attrs": {
|
|
76
|
+
"width": 3.25,
|
|
77
|
+
"height": 1.2,
|
|
78
|
+
"x": 1.5,
|
|
79
|
+
"y": 12.7,
|
|
80
|
+
"fill": "currentColor",
|
|
81
|
+
"rx": .6
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"tag": "rect",
|
|
86
|
+
"attrs": {
|
|
87
|
+
"width": 3.25,
|
|
88
|
+
"height": 1.2,
|
|
89
|
+
"x": 15.25,
|
|
90
|
+
"y": 12.7,
|
|
91
|
+
"fill": "currentColor",
|
|
92
|
+
"rx": .6
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"tag": "rect",
|
|
97
|
+
"attrs": {
|
|
98
|
+
"width": 17,
|
|
99
|
+
"height": 1.2,
|
|
100
|
+
"x": 1.5,
|
|
101
|
+
"y": 16.35,
|
|
102
|
+
"fill": "currentColor",
|
|
103
|
+
"rx": .6
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"tag": "path",
|
|
108
|
+
"attrs": {
|
|
109
|
+
"fill": "currentColor",
|
|
110
|
+
"fill-rule": "evenodd",
|
|
111
|
+
"d": "M7.55 5.45C6.50066 5.45 5.65 6.30066 5.65 7.35V12.65C5.65 13.6993 6.50066 14.55 7.55 14.55H12.45C13.4993 14.55 14.35 13.6993 14.35 12.65V7.35C14.35 6.30066 13.4993 5.45 12.45 5.45H7.55ZM7.8 6.75C7.24772 6.75 6.8 7.19772 6.8 7.75V12.25C6.8 12.8023 7.24772 13.25 7.8 13.25H12.2C12.7523 13.25 13.2 12.8023 13.2 12.25V7.75C13.2 7.19772 12.7523 6.75 12.2 6.75H7.8Z",
|
|
112
|
+
"clip-rule": "evenodd"
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
]
|
|
116
|
+
};
|
|
117
|
+
const TextWrapShapeIcon = (0, vue.defineComponent)({
|
|
118
|
+
name: "TextWrapShapeIcon",
|
|
119
|
+
inheritAttrs: false,
|
|
120
|
+
props: { extend: {
|
|
121
|
+
type: Object,
|
|
122
|
+
default: void 0
|
|
123
|
+
} },
|
|
124
|
+
setup(props, { attrs }) {
|
|
125
|
+
return () => (0, vue.h)(ts_base_js.IconBase, {
|
|
126
|
+
...attrs,
|
|
127
|
+
extend: props.extend,
|
|
128
|
+
id: "text-wrap-shape-icon",
|
|
129
|
+
icon: element
|
|
130
|
+
});
|
|
131
|
+
}
|
|
132
|
+
});
|
|
133
|
+
//#endregion
|
|
134
|
+
exports.TextWrapShapeIcon = TextWrapShapeIcon;
|
|
135
|
+
exports.default = TextWrapShapeIcon;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { PropType } from 'vue';
|
|
2
2
|
import type { IExtendProps } from './base.js';
|
|
3
|
-
export declare const
|
|
3
|
+
export declare const CropIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
4
|
extend: {
|
|
5
5
|
type: PropType<IExtendProps>;
|
|
6
6
|
default: undefined;
|
|
@@ -15,4 +15,4 @@ export declare const SequenceIcon: import("vue").DefineComponent<import("vue").E
|
|
|
15
15
|
}>> & Readonly<{}>, {
|
|
16
16
|
extend: IExtendProps;
|
|
17
17
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
18
|
-
export default
|
|
18
|
+
export default CropIcon;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/crop-icon.ts
|
|
4
|
+
const element = {
|
|
5
|
+
"tag": "svg",
|
|
6
|
+
"attrs": {
|
|
7
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"viewBox": "0 0 20 20",
|
|
10
|
+
"width": "1em",
|
|
11
|
+
"height": "1em"
|
|
12
|
+
},
|
|
13
|
+
"children": [
|
|
14
|
+
{
|
|
15
|
+
"tag": "path",
|
|
16
|
+
"attrs": {
|
|
17
|
+
"stroke": "currentColor",
|
|
18
|
+
"stroke-linecap": "round",
|
|
19
|
+
"stroke-width": 1.5,
|
|
20
|
+
"d": "M5 2.8V12.5C5 13.9 6.1 15 7.5 15H17.2"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"tag": "path",
|
|
25
|
+
"attrs": {
|
|
26
|
+
"stroke": "currentColor",
|
|
27
|
+
"stroke-linecap": "round",
|
|
28
|
+
"stroke-width": 1.5,
|
|
29
|
+
"d": "M2.8 5H12.5C13.9 5 15 6.1 15 7.5V17.2"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"tag": "path",
|
|
34
|
+
"attrs": {
|
|
35
|
+
"stroke": "currentColor",
|
|
36
|
+
"stroke-width": 1.2,
|
|
37
|
+
"d": "M8.3 8.3H11.7V11.7H8.3V8.3Z"
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
]
|
|
41
|
+
};
|
|
42
|
+
const CropIcon = defineComponent({
|
|
43
|
+
name: "CropIcon",
|
|
44
|
+
inheritAttrs: false,
|
|
45
|
+
props: { extend: {
|
|
46
|
+
type: Object,
|
|
47
|
+
default: void 0
|
|
48
|
+
} },
|
|
49
|
+
setup(props, { attrs }) {
|
|
50
|
+
return () => h(IconBase, {
|
|
51
|
+
...attrs,
|
|
52
|
+
extend: props.extend,
|
|
53
|
+
id: "crop-icon",
|
|
54
|
+
icon: element
|
|
55
|
+
});
|
|
56
|
+
}
|
|
57
|
+
});
|
|
58
|
+
//#endregion
|
|
59
|
+
export { CropIcon, CropIcon as default };
|