@univerjs/icons-vue 1.9.0 → 1.11.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.
@@ -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;
@@ -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");
@@ -288,6 +290,7 @@ let ts_shape_flow_chart_sort_icon_js = require("./shape-flow-chart-sort-icon.cjs
288
290
  let ts_shape_flow_chart_summing_junction_icon_js = require("./shape-flow-chart-summing-junction-icon.cjs");
289
291
  let ts_shape_flow_chart_terminator_icon_js = require("./shape-flow-chart-terminator-icon.cjs");
290
292
  let ts_shape_folder_corner_icon_js = require("./shape-folder-corner-icon.cjs");
293
+ let ts_shape_format_setting_icon_js = require("./shape-format-setting-icon.cjs");
291
294
  let ts_shape_frame_icon_js = require("./shape-frame-icon.cjs");
292
295
  let ts_shape_funnel_icon_js = require("./shape-funnel-icon.cjs");
293
296
  let ts_shape_gear6_icon_js = require("./shape-gear6-icon.cjs");
@@ -399,6 +402,7 @@ let ts_symbols_icon_js = require("./symbols-icon.cjs");
399
402
  let ts_table_icon_js = require("./table-icon.cjs");
400
403
  let ts_text_icon_js = require("./text-icon.cjs");
401
404
  let ts_text_type_icon_js = require("./text-type-icon.cjs");
405
+ let ts_text_wrap_shape_icon_js = require("./text-wrap-shape-icon.cjs");
402
406
  let ts_topmost_icon_js = require("./topmost-icon.cjs");
403
407
  let ts_triangle_icon_js = require("./triangle-icon.cjs");
404
408
  let ts_truncation_icon_js = require("./truncation-icon.cjs");
@@ -889,6 +893,12 @@ Object.defineProperty(exports, "CreateCopyIcon", {
889
893
  return ts_create_copy_icon_js.CreateCopyIcon;
890
894
  }
891
895
  });
896
+ Object.defineProperty(exports, "CropIcon", {
897
+ enumerable: true,
898
+ get: function() {
899
+ return ts_crop_icon_js.CropIcon;
900
+ }
901
+ });
892
902
  Object.defineProperty(exports, "CrossHighlightingIcon", {
893
903
  enumerable: true,
894
904
  get: function() {
@@ -1219,6 +1229,12 @@ Object.defineProperty(exports, "GridOutlineIcon", {
1219
1229
  return ts_grid_outline_icon_js.GridOutlineIcon;
1220
1230
  }
1221
1231
  });
1232
+ Object.defineProperty(exports, "GripVerticalIcon", {
1233
+ enumerable: true,
1234
+ get: function() {
1235
+ return ts_grip_vertical_icon_js.GripVerticalIcon;
1236
+ }
1237
+ });
1222
1238
  Object.defineProperty(exports, "GroupIcon", {
1223
1239
  enumerable: true,
1224
1240
  get: function() {
@@ -2575,6 +2591,12 @@ Object.defineProperty(exports, "ShapeFolderCornerIcon", {
2575
2591
  return ts_shape_folder_corner_icon_js.ShapeFolderCornerIcon;
2576
2592
  }
2577
2593
  });
2594
+ Object.defineProperty(exports, "ShapeFormatSettingIcon", {
2595
+ enumerable: true,
2596
+ get: function() {
2597
+ return ts_shape_format_setting_icon_js.ShapeFormatSettingIcon;
2598
+ }
2599
+ });
2578
2600
  Object.defineProperty(exports, "ShapeFrameIcon", {
2579
2601
  enumerable: true,
2580
2602
  get: function() {
@@ -3313,6 +3335,12 @@ Object.defineProperty(exports, "TextTypeIcon", {
3313
3335
  return ts_text_type_icon_js.TextTypeIcon;
3314
3336
  }
3315
3337
  });
3338
+ Object.defineProperty(exports, "TextWrapShapeIcon", {
3339
+ enumerable: true,
3340
+ get: function() {
3341
+ return ts_text_wrap_shape_icon_js.TextWrapShapeIcon;
3342
+ }
3343
+ });
3316
3344
  Object.defineProperty(exports, "TodoListDoubleIcon", {
3317
3345
  enumerable: true,
3318
3346
  get: function() {
@@ -0,0 +1,85 @@
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/shape-format-setting-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 16 16",
14
+ "width": "1em",
15
+ "height": "1em"
16
+ },
17
+ "children": [
18
+ {
19
+ "tag": "path",
20
+ "attrs": {
21
+ "stroke": "currentColor",
22
+ "stroke-linecap": "round",
23
+ "stroke-linejoin": "round",
24
+ "stroke-width": 1.3,
25
+ "d": "M10.4 5.8V3.8C10.4 3.19249 9.90751 2.7 9.3 2.7H3.1C2.49249 2.7 2 3.19249 2 3.8V8.4C2 9.00751 2.49249 9.5 3.1 9.5H6.7"
26
+ }
27
+ },
28
+ {
29
+ "tag": "path",
30
+ "attrs": {
31
+ "stroke": "currentColor",
32
+ "stroke-linecap": "round",
33
+ "stroke-width": 1.3,
34
+ "d": "M4.2 5.1H8"
35
+ }
36
+ },
37
+ {
38
+ "tag": "path",
39
+ "attrs": {
40
+ "stroke": "currentColor",
41
+ "stroke-linecap": "round",
42
+ "stroke-width": 1.3,
43
+ "d": "M4.2 7.3H6.8"
44
+ }
45
+ },
46
+ {
47
+ "tag": "path",
48
+ "attrs": {
49
+ "stroke": "currentColor",
50
+ "stroke-linejoin": "round",
51
+ "stroke-width": 1.15,
52
+ "d": "M10.35 7.6H11.2L11.65 8.35L12.5 8.15L13.1 8.75L12.9 9.6L13.65 10.05V10.9L12.9 11.35L13.1 12.2L12.5 12.8L11.65 12.6L11.2 13.35H10.35L9.9 12.6L9.05 12.8L8.45 12.2L8.65 11.35L7.9 10.9V10.05L8.65 9.6L8.45 8.75L9.05 8.15L9.9 8.35L10.35 7.6Z"
53
+ }
54
+ },
55
+ {
56
+ "tag": "circle",
57
+ "attrs": {
58
+ "cx": 10.78,
59
+ "cy": 10.48,
60
+ "r": 1.05,
61
+ "stroke": "currentColor",
62
+ "stroke-width": 1.15
63
+ }
64
+ }
65
+ ]
66
+ };
67
+ const ShapeFormatSettingIcon = (0, vue.defineComponent)({
68
+ name: "ShapeFormatSettingIcon",
69
+ inheritAttrs: false,
70
+ props: { extend: {
71
+ type: Object,
72
+ default: void 0
73
+ } },
74
+ setup(props, { attrs }) {
75
+ return () => (0, vue.h)(ts_base_js.IconBase, {
76
+ ...attrs,
77
+ extend: props.extend,
78
+ id: "shape-format-setting-icon",
79
+ icon: element
80
+ });
81
+ }
82
+ });
83
+ //#endregion
84
+ exports.ShapeFormatSettingIcon = ShapeFormatSettingIcon;
85
+ exports.default = ShapeFormatSettingIcon;
@@ -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;
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const CropIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ extend: {
5
+ type: PropType<IExtendProps>;
6
+ default: undefined;
7
+ };
8
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
9
+ [key: string]: any;
10
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
11
+ extend: {
12
+ type: PropType<IExtendProps>;
13
+ default: undefined;
14
+ };
15
+ }>> & Readonly<{}>, {
16
+ extend: IExtendProps;
17
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
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 };
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const GripVerticalIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ extend: {
5
+ type: PropType<IExtendProps>;
6
+ default: undefined;
7
+ };
8
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
9
+ [key: string]: any;
10
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
11
+ extend: {
12
+ type: PropType<IExtendProps>;
13
+ default: undefined;
14
+ };
15
+ }>> & Readonly<{}>, {
16
+ extend: IExtendProps;
17
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
18
+ export default GripVerticalIcon;
@@ -0,0 +1,87 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/grip-vertical-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": "circle",
16
+ "attrs": {
17
+ "cx": 7,
18
+ "cy": 5,
19
+ "r": 1.1,
20
+ "fill": "currentColor"
21
+ }
22
+ },
23
+ {
24
+ "tag": "circle",
25
+ "attrs": {
26
+ "cx": 13,
27
+ "cy": 5,
28
+ "r": 1.1,
29
+ "fill": "currentColor"
30
+ }
31
+ },
32
+ {
33
+ "tag": "circle",
34
+ "attrs": {
35
+ "cx": 7,
36
+ "cy": 10,
37
+ "r": 1.1,
38
+ "fill": "currentColor"
39
+ }
40
+ },
41
+ {
42
+ "tag": "circle",
43
+ "attrs": {
44
+ "cx": 13,
45
+ "cy": 10,
46
+ "r": 1.1,
47
+ "fill": "currentColor"
48
+ }
49
+ },
50
+ {
51
+ "tag": "circle",
52
+ "attrs": {
53
+ "cx": 7,
54
+ "cy": 15,
55
+ "r": 1.1,
56
+ "fill": "currentColor"
57
+ }
58
+ },
59
+ {
60
+ "tag": "circle",
61
+ "attrs": {
62
+ "cx": 13,
63
+ "cy": 15,
64
+ "r": 1.1,
65
+ "fill": "currentColor"
66
+ }
67
+ }
68
+ ]
69
+ };
70
+ const GripVerticalIcon = defineComponent({
71
+ name: "GripVerticalIcon",
72
+ inheritAttrs: false,
73
+ props: { extend: {
74
+ type: Object,
75
+ default: void 0
76
+ } },
77
+ setup(props, { attrs }) {
78
+ return () => h(IconBase, {
79
+ ...attrs,
80
+ extend: props.extend,
81
+ id: "grip-vertical-icon",
82
+ icon: element
83
+ });
84
+ }
85
+ });
86
+ //#endregion
87
+ export { GripVerticalIcon, GripVerticalIcon as default };
@@ -48,6 +48,7 @@ export { ConvertIcon } from './convert-icon.js';
48
48
  export { CopyIcon } from './copy-icon.js';
49
49
  export { CorrectIcon } from './correct-icon.js';
50
50
  export { CreateCopyIcon } from './create-copy-icon.js';
51
+ export { CropIcon } from './crop-icon.js';
51
52
  export { CrossHighlightingIcon } from './cross-highlighting-icon.js';
52
53
  export { CrossIcon } from './cross-icon.js';
53
54
  export { CustomSortIcon } from './custom-sort-icon.js';
@@ -93,6 +94,7 @@ export { FxIcon } from './fx-icon.js';
93
94
  export { GraphIcon } from './graph-icon.js';
94
95
  export { GridIcon } from './grid-icon.js';
95
96
  export { GridOutlineIcon } from './grid-outline-icon.js';
97
+ export { GripVerticalIcon } from './grip-vertical-icon.js';
96
98
  export { GroupIcon } from './group-icon.js';
97
99
  export { GroupSparklineIcon } from './group-sparkline-icon.js';
98
100
  export { GuideIcon } from './guide-icon.js';
@@ -287,6 +289,7 @@ export { ShapeFlowChartSortIcon } from './shape-flow-chart-sort-icon.js';
287
289
  export { ShapeFlowChartSummingJunctionIcon } from './shape-flow-chart-summing-junction-icon.js';
288
290
  export { ShapeFlowChartTerminatorIcon } from './shape-flow-chart-terminator-icon.js';
289
291
  export { ShapeFolderCornerIcon } from './shape-folder-corner-icon.js';
292
+ export { ShapeFormatSettingIcon } from './shape-format-setting-icon.js';
290
293
  export { ShapeFrameIcon } from './shape-frame-icon.js';
291
294
  export { ShapeFunnelIcon } from './shape-funnel-icon.js';
292
295
  export { ShapeGear6Icon } from './shape-gear6-icon.js';
@@ -398,6 +401,7 @@ export { SymbolsIcon } from './symbols-icon.js';
398
401
  export { TableIcon } from './table-icon.js';
399
402
  export { TextIcon } from './text-icon.js';
400
403
  export { TextTypeIcon } from './text-type-icon.js';
404
+ export { TextWrapShapeIcon } from './text-wrap-shape-icon.js';
401
405
  export { TopmostIcon } from './topmost-icon.js';
402
406
  export { TriangleIcon } from './triangle-icon.js';
403
407
  export { TruncationIcon } from './truncation-icon.js';
package/dist/esm/index.js CHANGED
@@ -48,6 +48,7 @@ import { ConvertIcon } from "./convert-icon.js";
48
48
  import { CopyIcon } from "./copy-icon.js";
49
49
  import { CorrectIcon } from "./correct-icon.js";
50
50
  import { CreateCopyIcon } from "./create-copy-icon.js";
51
+ import { CropIcon } from "./crop-icon.js";
51
52
  import { CrossHighlightingIcon } from "./cross-highlighting-icon.js";
52
53
  import { CrossIcon } from "./cross-icon.js";
53
54
  import { CustomSortIcon } from "./custom-sort-icon.js";
@@ -93,6 +94,7 @@ import { FxIcon } from "./fx-icon.js";
93
94
  import { GraphIcon } from "./graph-icon.js";
94
95
  import { GridIcon } from "./grid-icon.js";
95
96
  import { GridOutlineIcon } from "./grid-outline-icon.js";
97
+ import { GripVerticalIcon } from "./grip-vertical-icon.js";
96
98
  import { GroupIcon } from "./group-icon.js";
97
99
  import { GroupSparklineIcon } from "./group-sparkline-icon.js";
98
100
  import { GuideIcon } from "./guide-icon.js";
@@ -287,6 +289,7 @@ import { ShapeFlowChartSortIcon } from "./shape-flow-chart-sort-icon.js";
287
289
  import { ShapeFlowChartSummingJunctionIcon } from "./shape-flow-chart-summing-junction-icon.js";
288
290
  import { ShapeFlowChartTerminatorIcon } from "./shape-flow-chart-terminator-icon.js";
289
291
  import { ShapeFolderCornerIcon } from "./shape-folder-corner-icon.js";
292
+ import { ShapeFormatSettingIcon } from "./shape-format-setting-icon.js";
290
293
  import { ShapeFrameIcon } from "./shape-frame-icon.js";
291
294
  import { ShapeFunnelIcon } from "./shape-funnel-icon.js";
292
295
  import { ShapeGear6Icon } from "./shape-gear6-icon.js";
@@ -398,6 +401,7 @@ import { SymbolsIcon } from "./symbols-icon.js";
398
401
  import { TableIcon } from "./table-icon.js";
399
402
  import { TextIcon } from "./text-icon.js";
400
403
  import { TextTypeIcon } from "./text-type-icon.js";
404
+ import { TextWrapShapeIcon } from "./text-wrap-shape-icon.js";
401
405
  import { TopmostIcon } from "./topmost-icon.js";
402
406
  import { TriangleIcon } from "./triangle-icon.js";
403
407
  import { TruncationIcon } from "./truncation-icon.js";
@@ -498,4 +502,4 @@ import { TodoListDoubleIcon } from "./todo-list-double-icon.js";
498
502
  import { UpBorderDoubleIcon } from "./up-border-double-icon.js";
499
503
  import { VerticalBorderDoubleIcon } from "./vertical-border-double-icon.js";
500
504
  import { WarnDoubleIcon } from "./warn-double-icon.js";
501
- export { AIcon, ActivityIcon, AddDigitsIcon, AddImageIcon, AddNoteIcon, AdditionAndSubtractionIcon, AdjustHeightDoubleIcon, AdjustWidthDoubleIcon, AlignBottomIcon, AlignTextBothIcon, AlignTopIcon, AllBorderIcon, AmplifyIcon, AreaChartIcon, ArrowDownIcon, ArrowRightIcon, ArrowTiltDownIcon, ArrowTiltUpIcon, ArrowUpIcon, AscendingIcon, AutoHeightDoubleIcon, AutoWidthDoubleIcon, AutofillDoubleIcon, AutowrapIcon, AvgIcon, BackIcon, BackSlashDoubleIcon, BanIcon, BarChartIcon, BoldIcon, BottomIcon, BoxplotIcon, BrushIcon, BubbleIcon, CalendarIcon, CalloutIcon, CancelFreezeIcon, CancelMergeIcon, CatalogueIcon, Cell0DoubleIcon, Cell100DoubleIcon, Cell25DoubleIcon, Cell50DoubleIcon, Cell75DoubleIcon, ChartIcon, CheckMarkIcon, ClearFormatDoubleIcon, ClockIcon, CloseIcon, CloudOutlineIcon, CntIcon, CodeBlockIcon, CodeIcon, ColumnChartIcon, ColumnIcon, ColumnSparklineIcon, ComboChartIcon, CommentIcon, ConditionsDoubleIcon, ConvertIcon, CopyDoubleIcon, CopyIcon, CorrectDoubleIcon, CorrectIcon, CreateCopyIcon, CrossHighlightingIcon, CrossIcon, CustomSortIcon, CutIcon, DataValidationIcon, DatabaseIcon, DeleteCellMoveDownDoubleIcon, DeleteCellShiftLeftDoubleIcon, DeleteCellShiftRightDoubleIcon, DeleteCellShiftUpDoubleIcon, DeleteColumnDoubleIcon, DeleteEmptyIcon, DeleteIcon, DeleteNoteIcon, DeleteRowDoubleIcon, DescendingIcon, DirectExportIcon, DissatisfiedDoubleIcon, DividerIcon, DocMultiIcon, DocSettingIcon, DollarIcon, DownBorderDoubleIcon, DownIcon, DownloadIcon, DownloadImageIcon, DropdownIcon, ErrorIcon, EuroIcon, ExpandAscendingIcon, ExpandDescendingIcon, ExponentialIcon, ExportIcon, EyeIcon, EyeOutlineIcon, EyelashIcon, FilterIcon, FlagIcon, FlipHorizontalIcon, FlipVerticalIcon, FolderIcon, FontColorDoubleIcon, FontSizeIncreaseIcon, FontSizeReduceIcon, FoodsIcon, FreezeColumnIcon, FreezeRowIcon, FreezeToSelectedIcon, FullscreenIcon, FunctionIcon, FunnelIcon, FxIcon, GraphIcon, GridIcon, GridOutlineIcon, GroupIcon, GroupSparklineIcon, GroupingDoubleIcon, GuffawDoubleIcon, GuideIcon, H1Icon, H2Icon, H3Icon, H4Icon, H5Icon, H6Icon, HeaderFooterIcon, HeatmapIcon, HelpIcon, HideDoubleIcon, HideGridlinesDoubleIcon, HideNoteIcon, HistoryIcon, HomeIcon, HorizontalBorderDoubleIcon, HorizontalMergeIcon, HorizontallyIcon, ImpatientDoubleIcon, IncreaseIcon, IndicateDoubleIcon, InfoIcon, InnerBorderDoubleIcon, InsertCellDownDoubleIcon, InsertCellShiftRightDoubleIcon, InsertCommentDoubleIcon, InsertDoubleIcon, InsertIcon, InsertLinkDoubleIcon, InsertRowAboveDoubleIcon, InsertRowBelowDoubleIcon, ItalicIcon, KeyboardIcon, LeftBorderDoubleIcon, LeftDoubleDiagonalDoubleIcon, LeftIcon, LeftInsertColumnDoubleIcon, LeftJustifyingIcon, LeftRotationFortyFiveDegreesIcon, LeftRotationNinetyDegreesIcon, LeftTridiagonalDoubleIcon, LineChartIcon, LineSparklineIcon, LinearIcon, LinkIcon, LiveShareIcon, LoadingMultiIcon, LockIcon, LogarithmicIcon, MaxIcon, MenuIcon, MergeAllIcon, MinIcon, MistakeDoubleIcon, MistakeIcon, MoreDownIcon, MoreFunctionIcon, MoreHorizontalIcon, MoreIcon, MoreLeftIcon, MoreRightIcon, MoreUpIcon, MoveDownIcon, MoveUpIcon, MovingAverageIcon, NatureIcon, NoBorderIcon, NoColorDoubleIcon, NoRotationIcon, NoninductiveDoubleIcon, NumberIcon, ObjectsIcon, OffLineIcon, OnLineIcon, OneToOneIcon, OrderIcon, OuterBorderDoubleIcon, OverflowIcon, PaintBucketDoubleIcon, PasteSpecialDoubleIcon, PenIcon, PeopleIcon, PercentIcon, PieChartIcon, PipingIcon, PivotTableIcon, PlacesIcon, PointColorDoubleIcon, PolynomialIcon, PowerLineIcon, PrintIcon, Progress0Icon, Progress100Icon, Progress25Icon, Progress50Icon, Progress75Icon, ProtectIcon, QuoteIcon, RadarChartIcon, RandomIcon, RecentIcon, RecordIcon, RedoIcon, ReduceDigitsIcon, ReduceDoubleIcon, ReduceIcon, RelationshipIcon, RenameIcon, ReplyToCommentIcon, ResolvedIcon, RestoreIcon, RhomboidIcon, RightBorderDoubleIcon, RightDoubleDiagonalDoubleIcon, RightInsertColumnDoubleIcon, RightJustifyingIcon, RightRotationFortyFiveDegreesIcon, RightRotationNinetyDegreesIcon, RmbIcon, RoubleIcon, RoundnessIcon, RowIcon, SankeyIcon, ScatterChartIcon, SearchIcon, SelectRangeIcon, SequenceIcon, ShapeAccentBorderCallout1Icon, ShapeAccentBorderCallout2Icon, ShapeAccentBorderCallout3Icon, ShapeAccentCallout1Icon, ShapeAccentCallout2Icon, ShapeAccentCallout3Icon, ShapeActionButtonBackPreviousIcon, ShapeActionButtonBeginningIcon, ShapeActionButtonBlankIcon, ShapeActionButtonDocumentIcon, ShapeActionButtonEndIcon, ShapeActionButtonForwardNextIcon, ShapeActionButtonHelpIcon, ShapeActionButtonHomeIcon, ShapeActionButtonInformationIcon, ShapeActionButtonMovieIcon, ShapeActionButtonReturnIcon, ShapeActionButtonSoundIcon, ShapeArcIcon, ShapeBackgroundColorDoubleIcon, ShapeBentArrowIcon, ShapeBentConnector3Arrow1Icon, ShapeBentConnector3Arrow2Icon, ShapeBentConnector3Icon, ShapeBentUpArrowIcon, ShapeBevelIcon, ShapeBlockArcIcon, ShapeBorderCallout1Icon, ShapeBorderCallout2Icon, ShapeBorderCallout3Icon, ShapeBracePairIcon, ShapeBracketPairIcon, ShapeCallout1Icon, ShapeCallout2Icon, ShapeCallout3Icon, ShapeCanIcon, ShapeChartPlusIcon, ShapeChartStarIcon, ShapeChartXIcon, ShapeChevronIcon, ShapeChordIcon, ShapeCircularArrowIcon, ShapeCloudCalloutIcon, ShapeCloudIcon, ShapeCornerIcon, ShapeCornerTabsIcon, ShapeCubeIcon, ShapeCurvedConnector3Arrow1Icon, ShapeCurvedConnector3Arrow2Icon, ShapeCurvedConnector3Icon, ShapeCurvedDownArrowIcon, ShapeCurvedLeftArrowIcon, ShapeCurvedRightArrowIcon, ShapeCurvedUpArrowIcon, ShapeDecagonIcon, ShapeDiagStripeIcon, ShapeDiamondIcon, ShapeDodecagonIcon, ShapeDonutIcon, ShapeDoubleWaveIcon, ShapeDownArrowCalloutIcon, ShapeDownArrowIcon, ShapeEllipseIcon, ShapeEllipseRibbon2Icon, ShapeEllipseRibbonIcon, ShapeFlowChartAlternateProcessIcon, ShapeFlowChartCollateIcon, ShapeFlowChartConnectorIcon, ShapeFlowChartDecisionIcon, ShapeFlowChartDelayIcon, ShapeFlowChartDisplayIcon, ShapeFlowChartDocumentIcon, ShapeFlowChartExtractIcon, ShapeFlowChartInputOutputIcon, ShapeFlowChartInternalStorageIcon, ShapeFlowChartMagneticDiskIcon, ShapeFlowChartMagneticDrumIcon, ShapeFlowChartMagneticTapeIcon, ShapeFlowChartManualInputIcon, ShapeFlowChartManualOperationIcon, ShapeFlowChartMergeIcon, ShapeFlowChartMultidocumentIcon, ShapeFlowChartOfflineStorageIcon, ShapeFlowChartOffpageConnectorIcon, ShapeFlowChartOnlineStorageIcon, ShapeFlowChartOrIcon, ShapeFlowChartPredefinedProcessIcon, ShapeFlowChartPreparationIcon, ShapeFlowChartProcessIcon, ShapeFlowChartPunchedCardIcon, ShapeFlowChartPunchedTapeIcon, ShapeFlowChartSortIcon, ShapeFlowChartSummingJunctionIcon, ShapeFlowChartTerminatorIcon, ShapeFolderCornerIcon, ShapeFrameIcon, ShapeFunnelIcon, ShapeGear6Icon, ShapeGear9Icon, ShapeHalfFrameIcon, ShapeHeartIcon, ShapeHeptagonIcon, ShapeHexagonIcon, ShapeHomePlateIcon, ShapeHorizontalScrollIcon, ShapeIcon, ShapeIrregularSeal1Icon, ShapeIrregularSeal2Icon, ShapeLeftArrowCalloutIcon, ShapeLeftArrowIcon, ShapeLeftBraceIcon, ShapeLeftBracketIcon, ShapeLeftCircularArrowIcon, ShapeLeftRightArrowCalloutIcon, ShapeLeftRightArrowIcon, ShapeLeftRightCircularArrowIcon, ShapeLeftRightRibbonIcon, ShapeLeftRightUpArrowIcon, ShapeLeftUpArrowIcon, ShapeLightningBoltIcon, ShapeLineIcon, ShapeLineInvIcon, ShapeMathDivideIcon, ShapeMathEqualIcon, ShapeMathMinusIcon, ShapeMathMultiplyIcon, ShapeMathNotEqualIcon, ShapeMathPlusIcon, ShapeMoonIcon, ShapeNoSmokingIcon, ShapeNonIsoscelesTrapezoidIcon, ShapeNotchedRightArrowIcon, ShapeOctagonIcon, ShapeParallelogramIcon, ShapePentagonIcon, ShapePieIcon, ShapePieWedgeIcon, ShapePlaqueIcon, ShapePlaqueTabsIcon, ShapePlusIcon, ShapeQuadArrowCalloutIcon, ShapeQuadArrowIcon, ShapeRectIcon, ShapeRectTextboxHorizontalIcon, ShapeRectTextboxVerticalIcon, ShapeRibbon2Icon, ShapeRibbonIcon, ShapeRightArrowCalloutIcon, ShapeRightArrowIcon, ShapeRightBraceIcon, ShapeRightBracketIcon, ShapeRound1RectIcon, ShapeRound2DiagRectIcon, ShapeRound2SameRectIcon, ShapeRoundRectIcon, ShapeRtTriangleIcon, ShapeSmileyFaceIcon, ShapeSnip1RectIcon, ShapeSnip2DiagRectIcon, ShapeSnip2SameRectIcon, ShapeSnipRoundRectIcon, ShapeSquareTabsIcon, ShapeStar10Icon, ShapeStar12Icon, ShapeStar16Icon, ShapeStar24Icon, ShapeStar32Icon, ShapeStar4Icon, ShapeStar5Icon, ShapeStar6Icon, ShapeStar7Icon, ShapeStar8Icon, ShapeStraightConnector1Icon, ShapeStraightConnector2Icon, ShapeStripedRightArrowIcon, ShapeStrokeColorDoubleIcon, ShapeSunIcon, ShapeSwooshArrowIcon, ShapeTeardropIcon, ShapeTrapezoidIcon, ShapeTriangleIcon, ShapeUpArrowCalloutIcon, ShapeUpArrowIcon, ShapeUpDownArrowCalloutIcon, ShapeUpDownArrowIcon, ShapeUturnArrowIcon, ShapeVerticalScrollIcon, ShapeWaveIcon, ShapeWedgeEllipseCalloutIcon, ShapeWedgeRectCalloutIcon, ShapeWedgeRoundRectCalloutIcon, ShareIcon, ShareRangeIcon, SheetIcon, ShortcutIcon, Signal0DoubleIcon, Signal100DoubleIcon, Signal25DoubleIcon, Signal50DoubleIcon, Signal75DoubleIcon, SlashDoubleIcon, SlideMultiIcon, SlideshowPlayIcon, SlideshowThemeIcon, SmileDoubleIcon, SolveIcon, StarEmptyDoubleIcon, StarFullDoubleIcon, StarIncompleteDoubleIcon, StrikethroughIcon, SubscriptIcon, SuccessIcon, SumIcon, SuperscriptIcon, SymbolsIcon, TableIcon, TextIcon, TextTypeIcon, TodoListDoubleIcon, TopmostIcon, TriangleIcon, TruncationIcon, TypographyIcon, UnderlineIcon, UndoIcon, UngroupIcon, UngroupSparklineIcon, UniverCliIcon, UniverSdkMultiIcon, UnlinkIcon, UnorderIcon, UpBorderDoubleIcon, UpIcon, VerticalBorderDoubleIcon, VerticalCenterIcon, VerticalIntegrationIcon, VerticalTextIcon, WarnDoubleIcon, WarnIcon, WarningIcon, WaterfallChartIcon, WinlossSparklineIcon, WriteIcon, XlsxMultiIcon, ZenIcon, ZoomInIcon, ZoomIncreaseIcon, ZoomOutIcon, ZoomReduceIcon };
505
+ export { AIcon, ActivityIcon, AddDigitsIcon, AddImageIcon, AddNoteIcon, AdditionAndSubtractionIcon, AdjustHeightDoubleIcon, AdjustWidthDoubleIcon, AlignBottomIcon, AlignTextBothIcon, AlignTopIcon, AllBorderIcon, AmplifyIcon, AreaChartIcon, ArrowDownIcon, ArrowRightIcon, ArrowTiltDownIcon, ArrowTiltUpIcon, ArrowUpIcon, AscendingIcon, AutoHeightDoubleIcon, AutoWidthDoubleIcon, AutofillDoubleIcon, AutowrapIcon, AvgIcon, BackIcon, BackSlashDoubleIcon, BanIcon, BarChartIcon, BoldIcon, BottomIcon, BoxplotIcon, BrushIcon, BubbleIcon, CalendarIcon, CalloutIcon, CancelFreezeIcon, CancelMergeIcon, CatalogueIcon, Cell0DoubleIcon, Cell100DoubleIcon, Cell25DoubleIcon, Cell50DoubleIcon, Cell75DoubleIcon, ChartIcon, CheckMarkIcon, ClearFormatDoubleIcon, ClockIcon, CloseIcon, CloudOutlineIcon, CntIcon, CodeBlockIcon, CodeIcon, ColumnChartIcon, ColumnIcon, ColumnSparklineIcon, ComboChartIcon, CommentIcon, ConditionsDoubleIcon, ConvertIcon, CopyDoubleIcon, CopyIcon, CorrectDoubleIcon, CorrectIcon, CreateCopyIcon, CropIcon, CrossHighlightingIcon, CrossIcon, CustomSortIcon, CutIcon, DataValidationIcon, DatabaseIcon, DeleteCellMoveDownDoubleIcon, DeleteCellShiftLeftDoubleIcon, DeleteCellShiftRightDoubleIcon, DeleteCellShiftUpDoubleIcon, DeleteColumnDoubleIcon, DeleteEmptyIcon, DeleteIcon, DeleteNoteIcon, DeleteRowDoubleIcon, DescendingIcon, DirectExportIcon, DissatisfiedDoubleIcon, DividerIcon, DocMultiIcon, DocSettingIcon, DollarIcon, DownBorderDoubleIcon, DownIcon, DownloadIcon, DownloadImageIcon, DropdownIcon, ErrorIcon, EuroIcon, ExpandAscendingIcon, ExpandDescendingIcon, ExponentialIcon, ExportIcon, EyeIcon, EyeOutlineIcon, EyelashIcon, FilterIcon, FlagIcon, FlipHorizontalIcon, FlipVerticalIcon, FolderIcon, FontColorDoubleIcon, FontSizeIncreaseIcon, FontSizeReduceIcon, FoodsIcon, FreezeColumnIcon, FreezeRowIcon, FreezeToSelectedIcon, FullscreenIcon, FunctionIcon, FunnelIcon, FxIcon, GraphIcon, GridIcon, GridOutlineIcon, GripVerticalIcon, GroupIcon, GroupSparklineIcon, GroupingDoubleIcon, GuffawDoubleIcon, GuideIcon, H1Icon, H2Icon, H3Icon, H4Icon, H5Icon, H6Icon, HeaderFooterIcon, HeatmapIcon, HelpIcon, HideDoubleIcon, HideGridlinesDoubleIcon, HideNoteIcon, HistoryIcon, HomeIcon, HorizontalBorderDoubleIcon, HorizontalMergeIcon, HorizontallyIcon, ImpatientDoubleIcon, IncreaseIcon, IndicateDoubleIcon, InfoIcon, InnerBorderDoubleIcon, InsertCellDownDoubleIcon, InsertCellShiftRightDoubleIcon, InsertCommentDoubleIcon, InsertDoubleIcon, InsertIcon, InsertLinkDoubleIcon, InsertRowAboveDoubleIcon, InsertRowBelowDoubleIcon, ItalicIcon, KeyboardIcon, LeftBorderDoubleIcon, LeftDoubleDiagonalDoubleIcon, LeftIcon, LeftInsertColumnDoubleIcon, LeftJustifyingIcon, LeftRotationFortyFiveDegreesIcon, LeftRotationNinetyDegreesIcon, LeftTridiagonalDoubleIcon, LineChartIcon, LineSparklineIcon, LinearIcon, LinkIcon, LiveShareIcon, LoadingMultiIcon, LockIcon, LogarithmicIcon, MaxIcon, MenuIcon, MergeAllIcon, MinIcon, MistakeDoubleIcon, MistakeIcon, MoreDownIcon, MoreFunctionIcon, MoreHorizontalIcon, MoreIcon, MoreLeftIcon, MoreRightIcon, MoreUpIcon, MoveDownIcon, MoveUpIcon, MovingAverageIcon, NatureIcon, NoBorderIcon, NoColorDoubleIcon, NoRotationIcon, NoninductiveDoubleIcon, NumberIcon, ObjectsIcon, OffLineIcon, OnLineIcon, OneToOneIcon, OrderIcon, OuterBorderDoubleIcon, OverflowIcon, PaintBucketDoubleIcon, PasteSpecialDoubleIcon, PenIcon, PeopleIcon, PercentIcon, PieChartIcon, PipingIcon, PivotTableIcon, PlacesIcon, PointColorDoubleIcon, PolynomialIcon, PowerLineIcon, PrintIcon, Progress0Icon, Progress100Icon, Progress25Icon, Progress50Icon, Progress75Icon, ProtectIcon, QuoteIcon, RadarChartIcon, RandomIcon, RecentIcon, RecordIcon, RedoIcon, ReduceDigitsIcon, ReduceDoubleIcon, ReduceIcon, RelationshipIcon, RenameIcon, ReplyToCommentIcon, ResolvedIcon, RestoreIcon, RhomboidIcon, RightBorderDoubleIcon, RightDoubleDiagonalDoubleIcon, RightInsertColumnDoubleIcon, RightJustifyingIcon, RightRotationFortyFiveDegreesIcon, RightRotationNinetyDegreesIcon, RmbIcon, RoubleIcon, RoundnessIcon, RowIcon, SankeyIcon, ScatterChartIcon, SearchIcon, SelectRangeIcon, SequenceIcon, ShapeAccentBorderCallout1Icon, ShapeAccentBorderCallout2Icon, ShapeAccentBorderCallout3Icon, ShapeAccentCallout1Icon, ShapeAccentCallout2Icon, ShapeAccentCallout3Icon, ShapeActionButtonBackPreviousIcon, ShapeActionButtonBeginningIcon, ShapeActionButtonBlankIcon, ShapeActionButtonDocumentIcon, ShapeActionButtonEndIcon, ShapeActionButtonForwardNextIcon, ShapeActionButtonHelpIcon, ShapeActionButtonHomeIcon, ShapeActionButtonInformationIcon, ShapeActionButtonMovieIcon, ShapeActionButtonReturnIcon, ShapeActionButtonSoundIcon, ShapeArcIcon, ShapeBackgroundColorDoubleIcon, ShapeBentArrowIcon, ShapeBentConnector3Arrow1Icon, ShapeBentConnector3Arrow2Icon, ShapeBentConnector3Icon, ShapeBentUpArrowIcon, ShapeBevelIcon, ShapeBlockArcIcon, ShapeBorderCallout1Icon, ShapeBorderCallout2Icon, ShapeBorderCallout3Icon, ShapeBracePairIcon, ShapeBracketPairIcon, ShapeCallout1Icon, ShapeCallout2Icon, ShapeCallout3Icon, ShapeCanIcon, ShapeChartPlusIcon, ShapeChartStarIcon, ShapeChartXIcon, ShapeChevronIcon, ShapeChordIcon, ShapeCircularArrowIcon, ShapeCloudCalloutIcon, ShapeCloudIcon, ShapeCornerIcon, ShapeCornerTabsIcon, ShapeCubeIcon, ShapeCurvedConnector3Arrow1Icon, ShapeCurvedConnector3Arrow2Icon, ShapeCurvedConnector3Icon, ShapeCurvedDownArrowIcon, ShapeCurvedLeftArrowIcon, ShapeCurvedRightArrowIcon, ShapeCurvedUpArrowIcon, ShapeDecagonIcon, ShapeDiagStripeIcon, ShapeDiamondIcon, ShapeDodecagonIcon, ShapeDonutIcon, ShapeDoubleWaveIcon, ShapeDownArrowCalloutIcon, ShapeDownArrowIcon, ShapeEllipseIcon, ShapeEllipseRibbon2Icon, ShapeEllipseRibbonIcon, ShapeFlowChartAlternateProcessIcon, ShapeFlowChartCollateIcon, ShapeFlowChartConnectorIcon, ShapeFlowChartDecisionIcon, ShapeFlowChartDelayIcon, ShapeFlowChartDisplayIcon, ShapeFlowChartDocumentIcon, ShapeFlowChartExtractIcon, ShapeFlowChartInputOutputIcon, ShapeFlowChartInternalStorageIcon, ShapeFlowChartMagneticDiskIcon, ShapeFlowChartMagneticDrumIcon, ShapeFlowChartMagneticTapeIcon, ShapeFlowChartManualInputIcon, ShapeFlowChartManualOperationIcon, ShapeFlowChartMergeIcon, ShapeFlowChartMultidocumentIcon, ShapeFlowChartOfflineStorageIcon, ShapeFlowChartOffpageConnectorIcon, ShapeFlowChartOnlineStorageIcon, ShapeFlowChartOrIcon, ShapeFlowChartPredefinedProcessIcon, ShapeFlowChartPreparationIcon, ShapeFlowChartProcessIcon, ShapeFlowChartPunchedCardIcon, ShapeFlowChartPunchedTapeIcon, ShapeFlowChartSortIcon, ShapeFlowChartSummingJunctionIcon, ShapeFlowChartTerminatorIcon, ShapeFolderCornerIcon, ShapeFormatSettingIcon, ShapeFrameIcon, ShapeFunnelIcon, ShapeGear6Icon, ShapeGear9Icon, ShapeHalfFrameIcon, ShapeHeartIcon, ShapeHeptagonIcon, ShapeHexagonIcon, ShapeHomePlateIcon, ShapeHorizontalScrollIcon, ShapeIcon, ShapeIrregularSeal1Icon, ShapeIrregularSeal2Icon, ShapeLeftArrowCalloutIcon, ShapeLeftArrowIcon, ShapeLeftBraceIcon, ShapeLeftBracketIcon, ShapeLeftCircularArrowIcon, ShapeLeftRightArrowCalloutIcon, ShapeLeftRightArrowIcon, ShapeLeftRightCircularArrowIcon, ShapeLeftRightRibbonIcon, ShapeLeftRightUpArrowIcon, ShapeLeftUpArrowIcon, ShapeLightningBoltIcon, ShapeLineIcon, ShapeLineInvIcon, ShapeMathDivideIcon, ShapeMathEqualIcon, ShapeMathMinusIcon, ShapeMathMultiplyIcon, ShapeMathNotEqualIcon, ShapeMathPlusIcon, ShapeMoonIcon, ShapeNoSmokingIcon, ShapeNonIsoscelesTrapezoidIcon, ShapeNotchedRightArrowIcon, ShapeOctagonIcon, ShapeParallelogramIcon, ShapePentagonIcon, ShapePieIcon, ShapePieWedgeIcon, ShapePlaqueIcon, ShapePlaqueTabsIcon, ShapePlusIcon, ShapeQuadArrowCalloutIcon, ShapeQuadArrowIcon, ShapeRectIcon, ShapeRectTextboxHorizontalIcon, ShapeRectTextboxVerticalIcon, ShapeRibbon2Icon, ShapeRibbonIcon, ShapeRightArrowCalloutIcon, ShapeRightArrowIcon, ShapeRightBraceIcon, ShapeRightBracketIcon, ShapeRound1RectIcon, ShapeRound2DiagRectIcon, ShapeRound2SameRectIcon, ShapeRoundRectIcon, ShapeRtTriangleIcon, ShapeSmileyFaceIcon, ShapeSnip1RectIcon, ShapeSnip2DiagRectIcon, ShapeSnip2SameRectIcon, ShapeSnipRoundRectIcon, ShapeSquareTabsIcon, ShapeStar10Icon, ShapeStar12Icon, ShapeStar16Icon, ShapeStar24Icon, ShapeStar32Icon, ShapeStar4Icon, ShapeStar5Icon, ShapeStar6Icon, ShapeStar7Icon, ShapeStar8Icon, ShapeStraightConnector1Icon, ShapeStraightConnector2Icon, ShapeStripedRightArrowIcon, ShapeStrokeColorDoubleIcon, ShapeSunIcon, ShapeSwooshArrowIcon, ShapeTeardropIcon, ShapeTrapezoidIcon, ShapeTriangleIcon, ShapeUpArrowCalloutIcon, ShapeUpArrowIcon, ShapeUpDownArrowCalloutIcon, ShapeUpDownArrowIcon, ShapeUturnArrowIcon, ShapeVerticalScrollIcon, ShapeWaveIcon, ShapeWedgeEllipseCalloutIcon, ShapeWedgeRectCalloutIcon, ShapeWedgeRoundRectCalloutIcon, ShareIcon, ShareRangeIcon, SheetIcon, ShortcutIcon, Signal0DoubleIcon, Signal100DoubleIcon, Signal25DoubleIcon, Signal50DoubleIcon, Signal75DoubleIcon, SlashDoubleIcon, SlideMultiIcon, SlideshowPlayIcon, SlideshowThemeIcon, SmileDoubleIcon, SolveIcon, StarEmptyDoubleIcon, StarFullDoubleIcon, StarIncompleteDoubleIcon, StrikethroughIcon, SubscriptIcon, SuccessIcon, SumIcon, SuperscriptIcon, SymbolsIcon, TableIcon, TextIcon, TextTypeIcon, TextWrapShapeIcon, TodoListDoubleIcon, TopmostIcon, TriangleIcon, TruncationIcon, TypographyIcon, UnderlineIcon, UndoIcon, UngroupIcon, UngroupSparklineIcon, UniverCliIcon, UniverSdkMultiIcon, UnlinkIcon, UnorderIcon, UpBorderDoubleIcon, UpIcon, VerticalBorderDoubleIcon, VerticalCenterIcon, VerticalIntegrationIcon, VerticalTextIcon, WarnDoubleIcon, WarnIcon, WarningIcon, WaterfallChartIcon, WinlossSparklineIcon, WriteIcon, XlsxMultiIcon, ZenIcon, ZoomInIcon, ZoomIncreaseIcon, ZoomOutIcon, ZoomReduceIcon };
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const ShapeFormatSettingIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ extend: {
5
+ type: PropType<IExtendProps>;
6
+ default: undefined;
7
+ };
8
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
9
+ [key: string]: any;
10
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
11
+ extend: {
12
+ type: PropType<IExtendProps>;
13
+ default: undefined;
14
+ };
15
+ }>> & Readonly<{}>, {
16
+ extend: IExtendProps;
17
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
18
+ export default ShapeFormatSettingIcon;
@@ -0,0 +1,80 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/shape-format-setting-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 16 16",
10
+ "width": "1em",
11
+ "height": "1em"
12
+ },
13
+ "children": [
14
+ {
15
+ "tag": "path",
16
+ "attrs": {
17
+ "stroke": "currentColor",
18
+ "stroke-linecap": "round",
19
+ "stroke-linejoin": "round",
20
+ "stroke-width": 1.3,
21
+ "d": "M10.4 5.8V3.8C10.4 3.19249 9.90751 2.7 9.3 2.7H3.1C2.49249 2.7 2 3.19249 2 3.8V8.4C2 9.00751 2.49249 9.5 3.1 9.5H6.7"
22
+ }
23
+ },
24
+ {
25
+ "tag": "path",
26
+ "attrs": {
27
+ "stroke": "currentColor",
28
+ "stroke-linecap": "round",
29
+ "stroke-width": 1.3,
30
+ "d": "M4.2 5.1H8"
31
+ }
32
+ },
33
+ {
34
+ "tag": "path",
35
+ "attrs": {
36
+ "stroke": "currentColor",
37
+ "stroke-linecap": "round",
38
+ "stroke-width": 1.3,
39
+ "d": "M4.2 7.3H6.8"
40
+ }
41
+ },
42
+ {
43
+ "tag": "path",
44
+ "attrs": {
45
+ "stroke": "currentColor",
46
+ "stroke-linejoin": "round",
47
+ "stroke-width": 1.15,
48
+ "d": "M10.35 7.6H11.2L11.65 8.35L12.5 8.15L13.1 8.75L12.9 9.6L13.65 10.05V10.9L12.9 11.35L13.1 12.2L12.5 12.8L11.65 12.6L11.2 13.35H10.35L9.9 12.6L9.05 12.8L8.45 12.2L8.65 11.35L7.9 10.9V10.05L8.65 9.6L8.45 8.75L9.05 8.15L9.9 8.35L10.35 7.6Z"
49
+ }
50
+ },
51
+ {
52
+ "tag": "circle",
53
+ "attrs": {
54
+ "cx": 10.78,
55
+ "cy": 10.48,
56
+ "r": 1.05,
57
+ "stroke": "currentColor",
58
+ "stroke-width": 1.15
59
+ }
60
+ }
61
+ ]
62
+ };
63
+ const ShapeFormatSettingIcon = defineComponent({
64
+ name: "ShapeFormatSettingIcon",
65
+ inheritAttrs: false,
66
+ props: { extend: {
67
+ type: Object,
68
+ default: void 0
69
+ } },
70
+ setup(props, { attrs }) {
71
+ return () => h(IconBase, {
72
+ ...attrs,
73
+ extend: props.extend,
74
+ id: "shape-format-setting-icon",
75
+ icon: element
76
+ });
77
+ }
78
+ });
79
+ //#endregion
80
+ export { ShapeFormatSettingIcon, ShapeFormatSettingIcon as default };
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const TextWrapShapeIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ extend: {
5
+ type: PropType<IExtendProps>;
6
+ default: undefined;
7
+ };
8
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
9
+ [key: string]: any;
10
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
11
+ extend: {
12
+ type: PropType<IExtendProps>;
13
+ default: undefined;
14
+ };
15
+ }>> & Readonly<{}>, {
16
+ extend: IExtendProps;
17
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
18
+ export default TextWrapShapeIcon;
@@ -0,0 +1,130 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/text-wrap-shape-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": "rect",
16
+ "attrs": {
17
+ "width": 17,
18
+ "height": 1.2,
19
+ "x": 1.5,
20
+ "y": 2.45,
21
+ "fill": "currentColor",
22
+ "rx": .6
23
+ }
24
+ },
25
+ {
26
+ "tag": "rect",
27
+ "attrs": {
28
+ "width": 3.25,
29
+ "height": 1.2,
30
+ "x": 1.5,
31
+ "y": 6.1,
32
+ "fill": "currentColor",
33
+ "rx": .6
34
+ }
35
+ },
36
+ {
37
+ "tag": "rect",
38
+ "attrs": {
39
+ "width": 3.25,
40
+ "height": 1.2,
41
+ "x": 15.25,
42
+ "y": 6.1,
43
+ "fill": "currentColor",
44
+ "rx": .6
45
+ }
46
+ },
47
+ {
48
+ "tag": "rect",
49
+ "attrs": {
50
+ "width": 3.25,
51
+ "height": 1.2,
52
+ "x": 1.5,
53
+ "y": 9.4,
54
+ "fill": "currentColor",
55
+ "rx": .6
56
+ }
57
+ },
58
+ {
59
+ "tag": "rect",
60
+ "attrs": {
61
+ "width": 3.25,
62
+ "height": 1.2,
63
+ "x": 15.25,
64
+ "y": 9.4,
65
+ "fill": "currentColor",
66
+ "rx": .6
67
+ }
68
+ },
69
+ {
70
+ "tag": "rect",
71
+ "attrs": {
72
+ "width": 3.25,
73
+ "height": 1.2,
74
+ "x": 1.5,
75
+ "y": 12.7,
76
+ "fill": "currentColor",
77
+ "rx": .6
78
+ }
79
+ },
80
+ {
81
+ "tag": "rect",
82
+ "attrs": {
83
+ "width": 3.25,
84
+ "height": 1.2,
85
+ "x": 15.25,
86
+ "y": 12.7,
87
+ "fill": "currentColor",
88
+ "rx": .6
89
+ }
90
+ },
91
+ {
92
+ "tag": "rect",
93
+ "attrs": {
94
+ "width": 17,
95
+ "height": 1.2,
96
+ "x": 1.5,
97
+ "y": 16.35,
98
+ "fill": "currentColor",
99
+ "rx": .6
100
+ }
101
+ },
102
+ {
103
+ "tag": "path",
104
+ "attrs": {
105
+ "fill": "currentColor",
106
+ "fill-rule": "evenodd",
107
+ "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",
108
+ "clip-rule": "evenodd"
109
+ }
110
+ }
111
+ ]
112
+ };
113
+ const TextWrapShapeIcon = defineComponent({
114
+ name: "TextWrapShapeIcon",
115
+ inheritAttrs: false,
116
+ props: { extend: {
117
+ type: Object,
118
+ default: void 0
119
+ } },
120
+ setup(props, { attrs }) {
121
+ return () => h(IconBase, {
122
+ ...attrs,
123
+ extend: props.extend,
124
+ id: "text-wrap-shape-icon",
125
+ icon: element
126
+ });
127
+ }
128
+ });
129
+ //#endregion
130
+ export { TextWrapShapeIcon, TextWrapShapeIcon as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@univerjs/icons-vue",
3
- "version": "1.9.0",
3
+ "version": "1.11.0",
4
4
  "description": "Vue icons for Univer.",
5
5
  "author": "DreamNum Co., Ltd. <developer@univer.ai>",
6
6
  "license": "MIT",
@@ -47,7 +47,7 @@
47
47
  "svgo": "^4.0.1",
48
48
  "typescript": "^6.0.3",
49
49
  "vue": "^3.5.35",
50
- "@univerjs/icons-svg": "1.9.0"
50
+ "@univerjs/icons-svg": "1.11.0"
51
51
  },
52
52
  "scripts": {
53
53
  "build": "node --experimental-strip-types ./scripts/build/index.ts && tsc"