@univerjs/icons-vue 1.11.0 → 1.13.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.
Files changed (49) hide show
  1. package/dist/cjs/cursors-icon.cjs +45 -0
  2. package/dist/cjs/export-icon.cjs +2 -2
  3. package/dist/cjs/grip-horizontal-icon.cjs +92 -0
  4. package/dist/cjs/import-icon.cjs +49 -0
  5. package/dist/cjs/index.cjs +71 -29
  6. package/dist/cjs/mermaid-diagram-icon.cjs +96 -0
  7. package/dist/cjs/paint-icon.cjs +84 -0
  8. package/dist/cjs/precise-selection-icon.cjs +49 -0
  9. package/dist/cjs/{progress-0-icon.cjs → progress-0-double-icon.cjs} +6 -6
  10. package/dist/cjs/{progress-100-icon.cjs → progress-100-double-icon.cjs} +6 -6
  11. package/dist/cjs/{progress-25-icon.cjs → progress-25-double-icon.cjs} +6 -6
  12. package/dist/cjs/{progress-50-icon.cjs → progress-50-double-icon.cjs} +6 -6
  13. package/dist/cjs/{progress-75-icon.cjs → progress-75-double-icon.cjs} +6 -6
  14. package/dist/cjs/show-dimensions-icon.cjs +119 -0
  15. package/dist/cjs/{more-icon.cjs → show-toolbar-icon.cjs} +13 -7
  16. package/dist/esm/{sequence-icon.d.ts → cursors-icon.d.ts} +2 -2
  17. package/dist/esm/cursors-icon.js +40 -0
  18. package/dist/esm/export-icon.js +2 -2
  19. package/dist/esm/{progress-25-icon.d.ts → grip-horizontal-icon.d.ts} +2 -2
  20. package/dist/esm/grip-horizontal-icon.js +87 -0
  21. package/dist/esm/{progress-0-icon.d.ts → import-icon.d.ts} +2 -2
  22. package/dist/esm/import-icon.js +44 -0
  23. package/dist/esm/index.d.ts +13 -7
  24. package/dist/esm/index.js +14 -8
  25. package/dist/esm/mermaid-diagram-icon.d.ts +18 -0
  26. package/dist/esm/mermaid-diagram-icon.js +91 -0
  27. package/dist/esm/{more-icon.d.ts → paint-icon.d.ts} +2 -2
  28. package/dist/esm/paint-icon.js +79 -0
  29. package/dist/esm/precise-selection-icon.d.ts +18 -0
  30. package/dist/esm/precise-selection-icon.js +44 -0
  31. package/dist/esm/progress-0-double-icon.d.ts +18 -0
  32. package/dist/esm/{progress-0-icon.js → progress-0-double-icon.js} +5 -5
  33. package/dist/esm/progress-100-double-icon.d.ts +18 -0
  34. package/dist/esm/{progress-100-icon.js → progress-100-double-icon.js} +5 -5
  35. package/dist/esm/progress-25-double-icon.d.ts +18 -0
  36. package/dist/esm/{progress-25-icon.js → progress-25-double-icon.js} +5 -5
  37. package/dist/esm/progress-50-double-icon.d.ts +18 -0
  38. package/dist/esm/{progress-50-icon.js → progress-50-double-icon.js} +5 -5
  39. package/dist/esm/progress-75-double-icon.d.ts +18 -0
  40. package/dist/esm/{progress-75-icon.js → progress-75-double-icon.js} +5 -5
  41. package/dist/esm/show-dimensions-icon.d.ts +18 -0
  42. package/dist/esm/show-dimensions-icon.js +114 -0
  43. package/dist/esm/{progress-100-icon.d.ts → show-toolbar-icon.d.ts} +2 -2
  44. package/dist/esm/{more-icon.js → show-toolbar-icon.js} +12 -6
  45. package/package.json +7 -7
  46. package/dist/cjs/sequence-icon.cjs +0 -80
  47. package/dist/esm/progress-50-icon.d.ts +0 -18
  48. package/dist/esm/progress-75-icon.d.ts +0 -18
  49. package/dist/esm/sequence-icon.js +0 -75
@@ -0,0 +1,45 @@
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/cursors-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
+ "tag": "path",
19
+ "attrs": {
20
+ "stroke": "currentColor",
21
+ "stroke-linejoin": "round",
22
+ "stroke-width": 1.3,
23
+ "d": "M2.16434 1.85401C1.87594 1.73369 1.58459 2.02503 1.70492 2.31343L6.63002 14.1206C6.7519 14.4127 7.16877 14.3979 7.26964 14.098L8.69811 9.85023C8.73242 9.7482 8.81299 9.66763 8.91502 9.63332L13.9494 7.94055C14.2554 7.83766 14.2641 7.4082 13.9625 7.28235L2.16434 1.85401Z"
24
+ }
25
+ }]
26
+ };
27
+ const CursorsIcon = (0, vue.defineComponent)({
28
+ name: "CursorsIcon",
29
+ inheritAttrs: false,
30
+ props: { extend: {
31
+ type: Object,
32
+ default: void 0
33
+ } },
34
+ setup(props, { attrs }) {
35
+ return () => (0, vue.h)(ts_base_js.IconBase, {
36
+ ...attrs,
37
+ extend: props.extend,
38
+ id: "cursors-icon",
39
+ icon: element
40
+ });
41
+ }
42
+ });
43
+ //#endregion
44
+ exports.CursorsIcon = CursorsIcon;
45
+ exports.default = CursorsIcon;
@@ -18,13 +18,13 @@ const element = {
18
18
  "tag": "path",
19
19
  "attrs": {
20
20
  "fill": "currentColor",
21
- "d": "M3.65005 1.05005C2.21411 1.05005 1.05005 2.21411 1.05005 3.65005V12.35C1.05005 13.7859 2.21411 14.95 3.65005 14.95H14.35C14.6813 14.95 14.95 14.6813 14.95 14.35C14.95 14.0186 14.6813 13.75 14.35 13.75H3.65005C2.87685 13.75 2.25005 13.1232 2.25005 12.35V3.65005C2.25005 2.87685 2.87685 2.25005 3.65005 2.25005H14.35C14.6813 2.25005 14.95 1.98142 14.95 1.65005C14.95 1.31868 14.6813 1.05005 14.35 1.05005H3.65005Z"
21
+ "d": "M8.66203 1.99996C8.66203 1.63269 8.3643 1.33496 7.99703 1.33496C7.62976 1.33496 7.33203 1.63269 7.33203 1.99996V9.05833L5.47019 7.19648C5.21049 6.93678 4.78943 6.93678 4.52973 7.19648C4.27004 7.45618 4.27004 7.87724 4.52973 8.13694L7.49155 11.0988C7.61015 11.2373 7.78475 11.3266 7.9803 11.3314C8.15698 11.3366 8.33534 11.2718 8.47019 11.1369L11.4702 8.13694C11.7299 7.87724 11.7299 7.45618 11.4702 7.19648C11.2105 6.93678 10.7894 6.93678 10.5297 7.19648L8.66203 9.06419V1.99996Z"
22
22
  }
23
23
  }, {
24
24
  "tag": "path",
25
25
  "attrs": {
26
26
  "fill": "currentColor",
27
- "d": "M11.6167 5.26668C11.851 5.03236 12.2309 5.03236 12.4652 5.26668L14.7743 7.57575C15.0086 7.81007 15.0086 8.18997 14.7743 8.42428L12.4652 10.7334C12.2309 10.9677 11.851 10.9677 11.6167 10.7334C11.3823 10.499 11.3823 10.1191 11.6167 9.88483L12.9015 8.60002H6.63784C6.30647 8.60002 6.03784 8.3314 6.03784 8.00002C6.03784 7.66865 6.30647 7.40002 6.63784 7.40002H12.9015L11.6167 6.11521C11.3823 5.88089 11.3823 5.50099 11.6167 5.26668Z"
27
+ "d": "M14 7.33496C14.3672 7.33496 14.665 7.63269 14.665 7.99996V11C14.665 13.0241 13.0241 14.665 11 14.665H4.99996C2.97584 14.665 1.33496 13.0241 1.33496 11V8.00273C1.33496 7.63546 1.63269 7.33773 1.99996 7.33773C2.36723 7.33773 2.66496 7.63546 2.66496 8.00273V11C2.66496 12.2895 3.71038 13.335 4.99996 13.335H11C12.2895 13.335 13.335 12.2895 13.335 11V7.99996C13.335 7.63269 13.6327 7.33496 14 7.33496Z"
28
28
  }
29
29
  }]
30
30
  };
@@ -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-horizontal-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": 5,
22
+ "cy": 7,
23
+ "r": 1.1,
24
+ "fill": "currentColor"
25
+ }
26
+ },
27
+ {
28
+ "tag": "circle",
29
+ "attrs": {
30
+ "cx": 10,
31
+ "cy": 7,
32
+ "r": 1.1,
33
+ "fill": "currentColor"
34
+ }
35
+ },
36
+ {
37
+ "tag": "circle",
38
+ "attrs": {
39
+ "cx": 15,
40
+ "cy": 7,
41
+ "r": 1.1,
42
+ "fill": "currentColor"
43
+ }
44
+ },
45
+ {
46
+ "tag": "circle",
47
+ "attrs": {
48
+ "cx": 5,
49
+ "cy": 13,
50
+ "r": 1.1,
51
+ "fill": "currentColor"
52
+ }
53
+ },
54
+ {
55
+ "tag": "circle",
56
+ "attrs": {
57
+ "cx": 10,
58
+ "cy": 13,
59
+ "r": 1.1,
60
+ "fill": "currentColor"
61
+ }
62
+ },
63
+ {
64
+ "tag": "circle",
65
+ "attrs": {
66
+ "cx": 15,
67
+ "cy": 13,
68
+ "r": 1.1,
69
+ "fill": "currentColor"
70
+ }
71
+ }
72
+ ]
73
+ };
74
+ const GripHorizontalIcon = (0, vue.defineComponent)({
75
+ name: "GripHorizontalIcon",
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-horizontal-icon",
86
+ icon: element
87
+ });
88
+ }
89
+ });
90
+ //#endregion
91
+ exports.GripHorizontalIcon = GripHorizontalIcon;
92
+ exports.default = GripHorizontalIcon;
@@ -0,0 +1,49 @@
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/import-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
+ "tag": "path",
19
+ "attrs": {
20
+ "fill": "currentColor",
21
+ "d": "M8.66203 10C8.66203 10.3673 8.3643 10.665 7.99703 10.665C7.62976 10.665 7.33203 10.3673 7.33203 10V2.94159L5.47019 4.80343C5.21049 5.06313 4.78943 5.06313 4.52973 4.80343C4.27004 4.54373 4.27004 4.12267 4.52973 3.86298L7.49155 0.901153C7.61015 0.762628 7.78475 0.673322 7.9803 0.668506C8.15698 0.663335 8.33534 0.728097 8.47019 0.862978L11.4702 3.86298C11.7299 4.12267 11.7299 4.54373 11.4702 4.80343C11.2105 5.06313 10.7894 5.06313 10.5297 4.80343L8.66203 2.93572V10Z"
22
+ }
23
+ }, {
24
+ "tag": "path",
25
+ "attrs": {
26
+ "fill": "currentColor",
27
+ "d": "M14 7.33496C14.3672 7.33496 14.665 7.63269 14.665 7.99996V11C14.665 13.0241 13.0241 14.665 11 14.665H4.99996C2.97584 14.665 1.33496 13.0241 1.33496 11V8.00273C1.33496 7.63546 1.63269 7.33773 1.99996 7.33773C2.36723 7.33773 2.66496 7.63546 2.66496 8.00273V11C2.66496 12.2895 3.71038 13.335 4.99996 13.335H11C12.2895 13.335 13.335 12.2895 13.335 11V7.99996C13.335 7.63269 13.6327 7.33496 14 7.33496Z"
28
+ }
29
+ }]
30
+ };
31
+ const ImportIcon = (0, vue.defineComponent)({
32
+ name: "ImportIcon",
33
+ inheritAttrs: false,
34
+ props: { extend: {
35
+ type: Object,
36
+ default: void 0
37
+ } },
38
+ setup(props, { attrs }) {
39
+ return () => (0, vue.h)(ts_base_js.IconBase, {
40
+ ...attrs,
41
+ extend: props.extend,
42
+ id: "import-icon",
43
+ icon: element
44
+ });
45
+ }
46
+ });
47
+ //#endregion
48
+ exports.ImportIcon = ImportIcon;
49
+ exports.default = ImportIcon;
@@ -52,6 +52,7 @@ let ts_create_copy_icon_js = require("./create-copy-icon.cjs");
52
52
  let ts_crop_icon_js = require("./crop-icon.cjs");
53
53
  let ts_cross_highlighting_icon_js = require("./cross-highlighting-icon.cjs");
54
54
  let ts_cross_icon_js = require("./cross-icon.cjs");
55
+ let ts_cursors_icon_js = require("./cursors-icon.cjs");
55
56
  let ts_custom_sort_icon_js = require("./custom-sort-icon.cjs");
56
57
  let ts_cut_icon_js = require("./cut-icon.cjs");
57
58
  let ts_data_validation_icon_js = require("./data-validation-icon.cjs");
@@ -95,6 +96,7 @@ let ts_fx_icon_js = require("./fx-icon.cjs");
95
96
  let ts_graph_icon_js = require("./graph-icon.cjs");
96
97
  let ts_grid_icon_js = require("./grid-icon.cjs");
97
98
  let ts_grid_outline_icon_js = require("./grid-outline-icon.cjs");
99
+ let ts_grip_horizontal_icon_js = require("./grip-horizontal-icon.cjs");
98
100
  let ts_grip_vertical_icon_js = require("./grip-vertical-icon.cjs");
99
101
  let ts_group_icon_js = require("./group-icon.cjs");
100
102
  let ts_group_sparkline_icon_js = require("./group-sparkline-icon.cjs");
@@ -113,6 +115,7 @@ let ts_history_icon_js = require("./history-icon.cjs");
113
115
  let ts_home_icon_js = require("./home-icon.cjs");
114
116
  let ts_horizontal_merge_icon_js = require("./horizontal-merge-icon.cjs");
115
117
  let ts_horizontally_icon_js = require("./horizontally-icon.cjs");
118
+ let ts_import_icon_js = require("./import-icon.cjs");
116
119
  let ts_increase_icon_js = require("./increase-icon.cjs");
117
120
  let ts_info_icon_js = require("./info-icon.cjs");
118
121
  let ts_insert_icon_js = require("./insert-icon.cjs");
@@ -132,12 +135,12 @@ let ts_logarithmic_icon_js = require("./logarithmic-icon.cjs");
132
135
  let ts_max_icon_js = require("./max-icon.cjs");
133
136
  let ts_menu_icon_js = require("./menu-icon.cjs");
134
137
  let ts_merge_all_icon_js = require("./merge-all-icon.cjs");
138
+ let ts_mermaid_diagram_icon_js = require("./mermaid-diagram-icon.cjs");
135
139
  let ts_min_icon_js = require("./min-icon.cjs");
136
140
  let ts_mistake_icon_js = require("./mistake-icon.cjs");
137
141
  let ts_more_down_icon_js = require("./more-down-icon.cjs");
138
142
  let ts_more_function_icon_js = require("./more-function-icon.cjs");
139
143
  let ts_more_horizontal_icon_js = require("./more-horizontal-icon.cjs");
140
- let ts_more_icon_js = require("./more-icon.cjs");
141
144
  let ts_more_left_icon_js = require("./more-left-icon.cjs");
142
145
  let ts_more_right_icon_js = require("./more-right-icon.cjs");
143
146
  let ts_more_up_icon_js = require("./more-up-icon.cjs");
@@ -154,6 +157,7 @@ let ts_on_line_icon_js = require("./on-line-icon.cjs");
154
157
  let ts_one_to_one_icon_js = require("./one-to-one-icon.cjs");
155
158
  let ts_order_icon_js = require("./order-icon.cjs");
156
159
  let ts_overflow_icon_js = require("./overflow-icon.cjs");
160
+ let ts_paint_icon_js = require("./paint-icon.cjs");
157
161
  let ts_pen_icon_js = require("./pen-icon.cjs");
158
162
  let ts_people_icon_js = require("./people-icon.cjs");
159
163
  let ts_percent_icon_js = require("./percent-icon.cjs");
@@ -163,12 +167,8 @@ let ts_pivot_table_icon_js = require("./pivot-table-icon.cjs");
163
167
  let ts_places_icon_js = require("./places-icon.cjs");
164
168
  let ts_polynomial_icon_js = require("./polynomial-icon.cjs");
165
169
  let ts_power_line_icon_js = require("./power-line-icon.cjs");
170
+ let ts_precise_selection_icon_js = require("./precise-selection-icon.cjs");
166
171
  let ts_print_icon_js = require("./print-icon.cjs");
167
- let ts_progress_0_icon_js = require("./progress-0-icon.cjs");
168
- let ts_progress_100_icon_js = require("./progress-100-icon.cjs");
169
- let ts_progress_25_icon_js = require("./progress-25-icon.cjs");
170
- let ts_progress_50_icon_js = require("./progress-50-icon.cjs");
171
- let ts_progress_75_icon_js = require("./progress-75-icon.cjs");
172
172
  let ts_protect_icon_js = require("./protect-icon.cjs");
173
173
  let ts_quote_icon_js = require("./quote-icon.cjs");
174
174
  let ts_radar_chart_icon_js = require("./radar-chart-icon.cjs");
@@ -195,7 +195,6 @@ let ts_sankey_icon_js = require("./sankey-icon.cjs");
195
195
  let ts_scatter_chart_icon_js = require("./scatter-chart-icon.cjs");
196
196
  let ts_search_icon_js = require("./search-icon.cjs");
197
197
  let ts_select_range_icon_js = require("./select-range-icon.cjs");
198
- let ts_sequence_icon_js = require("./sequence-icon.cjs");
199
198
  let ts_shape_accent_border_callout1_icon_js = require("./shape-accent-border-callout1-icon.cjs");
200
199
  let ts_shape_accent_border_callout2_icon_js = require("./shape-accent-border-callout2-icon.cjs");
201
200
  let ts_shape_accent_border_callout3_icon_js = require("./shape-accent-border-callout3-icon.cjs");
@@ -390,6 +389,8 @@ let ts_share_icon_js = require("./share-icon.cjs");
390
389
  let ts_share_range_icon_js = require("./share-range-icon.cjs");
391
390
  let ts_sheet_icon_js = require("./sheet-icon.cjs");
392
391
  let ts_shortcut_icon_js = require("./shortcut-icon.cjs");
392
+ let ts_show_dimensions_icon_js = require("./show-dimensions-icon.cjs");
393
+ let ts_show_toolbar_icon_js = require("./show-toolbar-icon.cjs");
393
394
  let ts_slideshow_play_icon_js = require("./slideshow-play-icon.cjs");
394
395
  let ts_slideshow_theme_icon_js = require("./slideshow-theme-icon.cjs");
395
396
  let ts_solve_icon_js = require("./solve-icon.cjs");
@@ -483,6 +484,11 @@ let ts_outer_border_double_icon_js = require("./outer-border-double-icon.cjs");
483
484
  let ts_paint_bucket_double_icon_js = require("./paint-bucket-double-icon.cjs");
484
485
  let ts_paste_special_double_icon_js = require("./paste-special-double-icon.cjs");
485
486
  let ts_point_color_double_icon_js = require("./point-color-double-icon.cjs");
487
+ let ts_progress_0_double_icon_js = require("./progress-0-double-icon.cjs");
488
+ let ts_progress_100_double_icon_js = require("./progress-100-double-icon.cjs");
489
+ let ts_progress_25_double_icon_js = require("./progress-25-double-icon.cjs");
490
+ let ts_progress_50_double_icon_js = require("./progress-50-double-icon.cjs");
491
+ let ts_progress_75_double_icon_js = require("./progress-75-double-icon.cjs");
486
492
  let ts_reduce_double_icon_js = require("./reduce-double-icon.cjs");
487
493
  let ts_right_border_double_icon_js = require("./right-border-double-icon.cjs");
488
494
  let ts_right_double_diagonal_double_icon_js = require("./right-double-diagonal-double-icon.cjs");
@@ -911,6 +917,12 @@ Object.defineProperty(exports, "CrossIcon", {
911
917
  return ts_cross_icon_js.CrossIcon;
912
918
  }
913
919
  });
920
+ Object.defineProperty(exports, "CursorsIcon", {
921
+ enumerable: true,
922
+ get: function() {
923
+ return ts_cursors_icon_js.CursorsIcon;
924
+ }
925
+ });
914
926
  Object.defineProperty(exports, "CustomSortIcon", {
915
927
  enumerable: true,
916
928
  get: function() {
@@ -1229,6 +1241,12 @@ Object.defineProperty(exports, "GridOutlineIcon", {
1229
1241
  return ts_grid_outline_icon_js.GridOutlineIcon;
1230
1242
  }
1231
1243
  });
1244
+ Object.defineProperty(exports, "GripHorizontalIcon", {
1245
+ enumerable: true,
1246
+ get: function() {
1247
+ return ts_grip_horizontal_icon_js.GripHorizontalIcon;
1248
+ }
1249
+ });
1232
1250
  Object.defineProperty(exports, "GripVerticalIcon", {
1233
1251
  enumerable: true,
1234
1252
  get: function() {
@@ -1373,6 +1391,12 @@ Object.defineProperty(exports, "ImpatientDoubleIcon", {
1373
1391
  return ts_impatient_double_icon_js.ImpatientDoubleIcon;
1374
1392
  }
1375
1393
  });
1394
+ Object.defineProperty(exports, "ImportIcon", {
1395
+ enumerable: true,
1396
+ get: function() {
1397
+ return ts_import_icon_js.ImportIcon;
1398
+ }
1399
+ });
1376
1400
  Object.defineProperty(exports, "IncreaseIcon", {
1377
1401
  enumerable: true,
1378
1402
  get: function() {
@@ -1571,6 +1595,12 @@ Object.defineProperty(exports, "MergeAllIcon", {
1571
1595
  return ts_merge_all_icon_js.MergeAllIcon;
1572
1596
  }
1573
1597
  });
1598
+ Object.defineProperty(exports, "MermaidDiagramIcon", {
1599
+ enumerable: true,
1600
+ get: function() {
1601
+ return ts_mermaid_diagram_icon_js.MermaidDiagramIcon;
1602
+ }
1603
+ });
1574
1604
  Object.defineProperty(exports, "MinIcon", {
1575
1605
  enumerable: true,
1576
1606
  get: function() {
@@ -1607,12 +1637,6 @@ Object.defineProperty(exports, "MoreHorizontalIcon", {
1607
1637
  return ts_more_horizontal_icon_js.MoreHorizontalIcon;
1608
1638
  }
1609
1639
  });
1610
- Object.defineProperty(exports, "MoreIcon", {
1611
- enumerable: true,
1612
- get: function() {
1613
- return ts_more_icon_js.MoreIcon;
1614
- }
1615
- });
1616
1640
  Object.defineProperty(exports, "MoreLeftIcon", {
1617
1641
  enumerable: true,
1618
1642
  get: function() {
@@ -1733,6 +1757,12 @@ Object.defineProperty(exports, "PaintBucketDoubleIcon", {
1733
1757
  return ts_paint_bucket_double_icon_js.PaintBucketDoubleIcon;
1734
1758
  }
1735
1759
  });
1760
+ Object.defineProperty(exports, "PaintIcon", {
1761
+ enumerable: true,
1762
+ get: function() {
1763
+ return ts_paint_icon_js.PaintIcon;
1764
+ }
1765
+ });
1736
1766
  Object.defineProperty(exports, "PasteSpecialDoubleIcon", {
1737
1767
  enumerable: true,
1738
1768
  get: function() {
@@ -1799,40 +1829,46 @@ Object.defineProperty(exports, "PowerLineIcon", {
1799
1829
  return ts_power_line_icon_js.PowerLineIcon;
1800
1830
  }
1801
1831
  });
1832
+ Object.defineProperty(exports, "PreciseSelectionIcon", {
1833
+ enumerable: true,
1834
+ get: function() {
1835
+ return ts_precise_selection_icon_js.PreciseSelectionIcon;
1836
+ }
1837
+ });
1802
1838
  Object.defineProperty(exports, "PrintIcon", {
1803
1839
  enumerable: true,
1804
1840
  get: function() {
1805
1841
  return ts_print_icon_js.PrintIcon;
1806
1842
  }
1807
1843
  });
1808
- Object.defineProperty(exports, "Progress0Icon", {
1844
+ Object.defineProperty(exports, "Progress0DoubleIcon", {
1809
1845
  enumerable: true,
1810
1846
  get: function() {
1811
- return ts_progress_0_icon_js.Progress0Icon;
1847
+ return ts_progress_0_double_icon_js.Progress0DoubleIcon;
1812
1848
  }
1813
1849
  });
1814
- Object.defineProperty(exports, "Progress100Icon", {
1850
+ Object.defineProperty(exports, "Progress100DoubleIcon", {
1815
1851
  enumerable: true,
1816
1852
  get: function() {
1817
- return ts_progress_100_icon_js.Progress100Icon;
1853
+ return ts_progress_100_double_icon_js.Progress100DoubleIcon;
1818
1854
  }
1819
1855
  });
1820
- Object.defineProperty(exports, "Progress25Icon", {
1856
+ Object.defineProperty(exports, "Progress25DoubleIcon", {
1821
1857
  enumerable: true,
1822
1858
  get: function() {
1823
- return ts_progress_25_icon_js.Progress25Icon;
1859
+ return ts_progress_25_double_icon_js.Progress25DoubleIcon;
1824
1860
  }
1825
1861
  });
1826
- Object.defineProperty(exports, "Progress50Icon", {
1862
+ Object.defineProperty(exports, "Progress50DoubleIcon", {
1827
1863
  enumerable: true,
1828
1864
  get: function() {
1829
- return ts_progress_50_icon_js.Progress50Icon;
1865
+ return ts_progress_50_double_icon_js.Progress50DoubleIcon;
1830
1866
  }
1831
1867
  });
1832
- Object.defineProperty(exports, "Progress75Icon", {
1868
+ Object.defineProperty(exports, "Progress75DoubleIcon", {
1833
1869
  enumerable: true,
1834
1870
  get: function() {
1835
- return ts_progress_75_icon_js.Progress75Icon;
1871
+ return ts_progress_75_double_icon_js.Progress75DoubleIcon;
1836
1872
  }
1837
1873
  });
1838
1874
  Object.defineProperty(exports, "ProtectIcon", {
@@ -2015,12 +2051,6 @@ Object.defineProperty(exports, "SelectRangeIcon", {
2015
2051
  return ts_select_range_icon_js.SelectRangeIcon;
2016
2052
  }
2017
2053
  });
2018
- Object.defineProperty(exports, "SequenceIcon", {
2019
- enumerable: true,
2020
- get: function() {
2021
- return ts_sequence_icon_js.SequenceIcon;
2022
- }
2023
- });
2024
2054
  Object.defineProperty(exports, "ShapeAccentBorderCallout1Icon", {
2025
2055
  enumerable: true,
2026
2056
  get: function() {
@@ -3197,6 +3227,18 @@ Object.defineProperty(exports, "ShortcutIcon", {
3197
3227
  return ts_shortcut_icon_js.ShortcutIcon;
3198
3228
  }
3199
3229
  });
3230
+ Object.defineProperty(exports, "ShowDimensionsIcon", {
3231
+ enumerable: true,
3232
+ get: function() {
3233
+ return ts_show_dimensions_icon_js.ShowDimensionsIcon;
3234
+ }
3235
+ });
3236
+ Object.defineProperty(exports, "ShowToolbarIcon", {
3237
+ enumerable: true,
3238
+ get: function() {
3239
+ return ts_show_toolbar_icon_js.ShowToolbarIcon;
3240
+ }
3241
+ });
3200
3242
  Object.defineProperty(exports, "Signal0DoubleIcon", {
3201
3243
  enumerable: true,
3202
3244
  get: function() {
@@ -0,0 +1,96 @@
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/mermaid-diagram-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": 4.6,
22
+ "height": 3.4,
23
+ "x": 7.7,
24
+ "y": 2.6,
25
+ "stroke": "currentColor",
26
+ "stroke-linejoin": "round",
27
+ "stroke-width": 1.6,
28
+ "rx": .6
29
+ }
30
+ },
31
+ {
32
+ "tag": "rect",
33
+ "attrs": {
34
+ "width": 4.6,
35
+ "height": 3.4,
36
+ "x": 2.6,
37
+ "y": 14,
38
+ "stroke": "currentColor",
39
+ "stroke-linejoin": "round",
40
+ "stroke-width": 1.6,
41
+ "rx": .6
42
+ }
43
+ },
44
+ {
45
+ "tag": "rect",
46
+ "attrs": {
47
+ "width": 4.6,
48
+ "height": 3.4,
49
+ "x": 12.8,
50
+ "y": 14,
51
+ "stroke": "currentColor",
52
+ "stroke-linejoin": "round",
53
+ "stroke-width": 1.6,
54
+ "rx": .6
55
+ }
56
+ },
57
+ {
58
+ "tag": "path",
59
+ "attrs": {
60
+ "stroke": "currentColor",
61
+ "stroke-linecap": "round",
62
+ "stroke-width": 1.6,
63
+ "d": "M10 6V10.2"
64
+ }
65
+ },
66
+ {
67
+ "tag": "path",
68
+ "attrs": {
69
+ "stroke": "currentColor",
70
+ "stroke-linecap": "round",
71
+ "stroke-linejoin": "round",
72
+ "stroke-width": 1.6,
73
+ "d": "M4.9 14V10.2H15.1V14"
74
+ }
75
+ }
76
+ ]
77
+ };
78
+ const MermaidDiagramIcon = (0, vue.defineComponent)({
79
+ name: "MermaidDiagramIcon",
80
+ inheritAttrs: false,
81
+ props: { extend: {
82
+ type: Object,
83
+ default: void 0
84
+ } },
85
+ setup(props, { attrs }) {
86
+ return () => (0, vue.h)(ts_base_js.IconBase, {
87
+ ...attrs,
88
+ extend: props.extend,
89
+ id: "mermaid-diagram-icon",
90
+ icon: element
91
+ });
92
+ }
93
+ });
94
+ //#endregion
95
+ exports.MermaidDiagramIcon = MermaidDiagramIcon;
96
+ exports.default = MermaidDiagramIcon;
@@ -0,0 +1,84 @@
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/paint-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-linejoin": "round",
24
+ "stroke-width": 1.7,
25
+ "d": "M12.1 3.4C11.4 3.2 10.7 3.1 10 3.1C5.9 3.1 2.6 6.3 2.6 10.2C2.6 14.1 5.8 17.2 9.8 17.2H11.5C12.4 17.2 13.1 16.5 13.1 15.7V14.8C13.1 14.1 13.7 13.5 14.4 13.5H15.2C16.4 13.5 17.3 12.5 17.3 11.3C17.3 10.2 16.7 9.2 15.8 8.8"
26
+ }
27
+ },
28
+ {
29
+ "tag": "path",
30
+ "attrs": {
31
+ "stroke": "currentColor",
32
+ "stroke-linecap": "round",
33
+ "stroke-width": 1.7,
34
+ "d": "M17.5 2.7L9.5 13.6"
35
+ }
36
+ },
37
+ {
38
+ "tag": "circle",
39
+ "attrs": {
40
+ "cx": 6.3,
41
+ "cy": 7.5,
42
+ "r": 1,
43
+ "fill": "currentColor"
44
+ }
45
+ },
46
+ {
47
+ "tag": "circle",
48
+ "attrs": {
49
+ "cx": 9.3,
50
+ "cy": 6,
51
+ "r": 1,
52
+ "fill": "currentColor"
53
+ }
54
+ },
55
+ {
56
+ "tag": "circle",
57
+ "attrs": {
58
+ "cx": 6.1,
59
+ "cy": 11.2,
60
+ "r": 1,
61
+ "fill": "currentColor"
62
+ }
63
+ }
64
+ ]
65
+ };
66
+ const PaintIcon = (0, vue.defineComponent)({
67
+ name: "PaintIcon",
68
+ inheritAttrs: false,
69
+ props: { extend: {
70
+ type: Object,
71
+ default: void 0
72
+ } },
73
+ setup(props, { attrs }) {
74
+ return () => (0, vue.h)(ts_base_js.IconBase, {
75
+ ...attrs,
76
+ extend: props.extend,
77
+ id: "paint-icon",
78
+ icon: element
79
+ });
80
+ }
81
+ });
82
+ //#endregion
83
+ exports.PaintIcon = PaintIcon;
84
+ exports.default = PaintIcon;