@univerjs/icons-vue 1.23.0 → 1.25.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,57 @@
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/checkbox-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": "rect",
19
+ "attrs": {
20
+ "width": 13,
21
+ "height": 13,
22
+ "x": 1.5,
23
+ "y": 1.5,
24
+ "stroke": "currentColor",
25
+ "stroke-width": 1.2,
26
+ "rx": 1.5
27
+ }
28
+ }, {
29
+ "tag": "path",
30
+ "attrs": {
31
+ "stroke": "currentColor",
32
+ "stroke-linecap": "round",
33
+ "stroke-linejoin": "round",
34
+ "stroke-width": 1.2,
35
+ "d": "M4.5 8L6.8 10.3L11.5 5.6"
36
+ }
37
+ }]
38
+ };
39
+ const CheckboxIcon = (0, vue.defineComponent)({
40
+ name: "CheckboxIcon",
41
+ inheritAttrs: false,
42
+ props: { extend: {
43
+ type: Object,
44
+ default: void 0
45
+ } },
46
+ setup(props, { attrs }) {
47
+ return () => (0, vue.h)(ts_base_js.IconBase, {
48
+ ...attrs,
49
+ extend: props.extend,
50
+ id: "checkbox-icon",
51
+ icon: element
52
+ });
53
+ }
54
+ });
55
+ //#endregion
56
+ exports.CheckboxIcon = CheckboxIcon;
57
+ exports.default = CheckboxIcon;
@@ -0,0 +1,54 @@
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/convert-to-number-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-linecap": "round",
22
+ "stroke-linejoin": "round",
23
+ "stroke-width": 1.2,
24
+ "d": "M2 3.5V6.2C2 7.2 2.8 8 3.8 8H6.4M4.8 6.2L6.6 8L4.8 9.8"
25
+ }
26
+ }, {
27
+ "tag": "path",
28
+ "attrs": {
29
+ "stroke": "currentColor",
30
+ "stroke-linecap": "round",
31
+ "stroke-width": 1.2,
32
+ "d": "M9.8 3.2L8.8 12.8M13.2 3.2L12.2 12.8M8 6.2H14M7.7 9.8H13.7"
33
+ }
34
+ }]
35
+ };
36
+ const ConvertToNumberIcon = (0, vue.defineComponent)({
37
+ name: "ConvertToNumberIcon",
38
+ inheritAttrs: false,
39
+ props: { extend: {
40
+ type: Object,
41
+ default: void 0
42
+ } },
43
+ setup(props, { attrs }) {
44
+ return () => (0, vue.h)(ts_base_js.IconBase, {
45
+ ...attrs,
46
+ extend: props.extend,
47
+ id: "convert-to-number-icon",
48
+ icon: element
49
+ });
50
+ }
51
+ });
52
+ //#endregion
53
+ exports.ConvertToNumberIcon = ConvertToNumberIcon;
54
+ exports.default = ConvertToNumberIcon;
@@ -0,0 +1,54 @@
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/delete-table-double-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-linecap": "round",
22
+ "stroke-linejoin": "round",
23
+ "stroke-width": 1.2,
24
+ "d": "M1.5 1.5H13.5M1.5 1.5V13.5M5.5 1.5V13.5M9.5 1.5V8M1.5 5.5H13.5M1.5 9.5H8M13.5 1.5V8M1.5 13.5H8"
25
+ }
26
+ }, {
27
+ "tag": "path",
28
+ "attrs": {
29
+ "stroke": "colorChannel1",
30
+ "stroke-linecap": "round",
31
+ "stroke-width": 1.3,
32
+ "d": "M9.7 9.7L14.5 14.5M14.5 9.7L9.7 14.5"
33
+ }
34
+ }]
35
+ };
36
+ const DeleteTableDoubleIcon = (0, vue.defineComponent)({
37
+ name: "DeleteTableDoubleIcon",
38
+ inheritAttrs: false,
39
+ props: { extend: {
40
+ type: Object,
41
+ default: void 0
42
+ } },
43
+ setup(props, { attrs }) {
44
+ return () => (0, vue.h)(ts_base_js.IconBase, {
45
+ ...attrs,
46
+ extend: props.extend,
47
+ id: "delete-table-double-icon",
48
+ icon: element
49
+ });
50
+ }
51
+ });
52
+ //#endregion
53
+ exports.DeleteTableDoubleIcon = DeleteTableDoubleIcon;
54
+ exports.default = DeleteTableDoubleIcon;
@@ -0,0 +1,76 @@
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/dropdown-list-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-linejoin": "round",
23
+ "stroke-width": 1.2,
24
+ "d": "M8 5.5H2C1.72386 5.5 1.5 5.27614 1.5 5V2C1.5 1.72386 1.72386 1.5 2 1.5H14C14.2761 1.5 14.5 1.72386 14.5 2V5C14.5 5.27614 14.2761 5.5 14 5.5H13"
25
+ }
26
+ },
27
+ {
28
+ "tag": "path",
29
+ "attrs": {
30
+ "stroke": "currentColor",
31
+ "stroke-linecap": "round",
32
+ "stroke-linejoin": "round",
33
+ "stroke-width": 1.2,
34
+ "d": "M8.5 3.5L10.5 5.5L12.5 3.5"
35
+ }
36
+ },
37
+ {
38
+ "tag": "path",
39
+ "attrs": {
40
+ "stroke": "currentColor",
41
+ "stroke-linejoin": "round",
42
+ "stroke-width": 1.2,
43
+ "d": "M2 7.5H14C14.2761 7.5 14.5 7.72386 14.5 8V14C14.5 14.2761 14.2761 14.5 14 14.5H2C1.72386 14.5 1.5 14.2761 1.5 14V8C1.5 7.72386 1.72386 7.5 2 7.5Z"
44
+ }
45
+ },
46
+ {
47
+ "tag": "path",
48
+ "attrs": {
49
+ "stroke": "currentColor",
50
+ "stroke-linecap": "round",
51
+ "stroke-linejoin": "round",
52
+ "stroke-width": 1.2,
53
+ "d": "M3.5 9.5H9.5M3.5 12.5H7.5"
54
+ }
55
+ }
56
+ ]
57
+ };
58
+ const DropdownListIcon = (0, vue.defineComponent)({
59
+ name: "DropdownListIcon",
60
+ inheritAttrs: false,
61
+ props: { extend: {
62
+ type: Object,
63
+ default: void 0
64
+ } },
65
+ setup(props, { attrs }) {
66
+ return () => (0, vue.h)(ts_base_js.IconBase, {
67
+ ...attrs,
68
+ extend: props.extend,
69
+ id: "dropdown-list-icon",
70
+ icon: element
71
+ });
72
+ }
73
+ });
74
+ //#endregion
75
+ exports.DropdownListIcon = DropdownListIcon;
76
+ exports.default = DropdownListIcon;
@@ -0,0 +1,46 @@
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/expand-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-linecap": "round",
22
+ "stroke-linejoin": "round",
23
+ "stroke-width": 1.2,
24
+ "d": "M10 10L14 14M10 6L14 2M14 10.6667V14H10.6667M14 5.33333V2H10.6667M2 10.6667V14H5.33333M2 14L6 10M2 5.33333V2H5.33333M6 6L2 2"
25
+ }
26
+ }]
27
+ };
28
+ const ExpandIcon = (0, vue.defineComponent)({
29
+ name: "ExpandIcon",
30
+ inheritAttrs: false,
31
+ props: { extend: {
32
+ type: Object,
33
+ default: void 0
34
+ } },
35
+ setup(props, { attrs }) {
36
+ return () => (0, vue.h)(ts_base_js.IconBase, {
37
+ ...attrs,
38
+ extend: props.extend,
39
+ id: "expand-icon",
40
+ icon: element
41
+ });
42
+ }
43
+ });
44
+ //#endregion
45
+ exports.ExpandIcon = ExpandIcon;
46
+ exports.default = ExpandIcon;
@@ -15,23 +15,14 @@ const element = {
15
15
  "height": "1em"
16
16
  },
17
17
  "children": [
18
- {
19
- "tag": "path",
20
- "attrs": {
21
- "stroke": "currentColor",
22
- "stroke-linecap": "round",
23
- "stroke-width": 1.35,
24
- "d": "M10.2663 2.33334L14.0663 6.13334"
25
- }
26
- },
27
18
  {
28
19
  "tag": "path",
29
20
  "attrs": {
30
21
  "stroke": "currentColor",
31
22
  "stroke-linecap": "round",
32
23
  "stroke-linejoin": "round",
33
- "stroke-width": 1.35,
34
- "d": "M6.06634 4.86667C7.96634 5.26667 9.69967 5.13334 11.3997 4.23334L12.3997 5.23334C11.433 6.73334 11.333 8.36667 11.7997 10.3667L3.19967 13L6.06634 4.86667Z"
24
+ "stroke-width": 1.2,
25
+ "d": "M9 3.5L4.00389 5.99805C4.00141 5.99929 3.99956 6.00151 3.99877 6.00418L1.50517 14.4824C1.50294 14.49 1.51 14.4971 1.51759 14.4948L9.99582 12.0012C9.99849 12.0004 10.0007 11.9986 10.0019 11.9961L12.5 7"
35
26
  }
36
27
  },
37
28
  {
@@ -39,27 +30,28 @@ const element = {
39
30
  "attrs": {
40
31
  "stroke": "currentColor",
41
32
  "stroke-linecap": "round",
42
- "stroke-width": 1.35,
43
- "d": "M3.19967 13L8.46634 7.73334"
33
+ "stroke-linejoin": "round",
34
+ "stroke-width": 1.2,
35
+ "d": "M1.5 14.5L4.5 11.5M1.5 14.5H14.5"
44
36
  }
45
37
  },
46
38
  {
47
39
  "tag": "circle",
48
40
  "attrs": {
49
- "cx": 4.33,
50
- "cy": 14.07,
51
- "r": .45,
52
- "fill": "currentColor"
41
+ "cx": 6.5,
42
+ "cy": 9.5,
43
+ "r": .5,
44
+ "stroke": "currentColor",
45
+ "stroke-width": 1.2
53
46
  }
54
47
  },
55
48
  {
56
49
  "tag": "path",
57
50
  "attrs": {
58
51
  "stroke": "currentColor",
59
- "stroke-linecap": "round",
60
52
  "stroke-linejoin": "round",
61
- "stroke-width": 1.35,
62
- "d": "M6.06634 14.2C6.63301 13.5667 7.19967 13.5667 7.76634 14.2C8.33301 14.8333 8.89967 14.8333 9.46634 14.2C10.033 13.5667 10.5997 13.5667 11.1663 14.2C11.733 14.8333 12.2997 14.8333 12.8663 14.2"
53
+ "stroke-width": 1.2,
54
+ "d": "M8.35355 2.85355C8.15829 2.65829 8.15829 2.34171 8.35355 2.14645L9.14645 1.35355C9.34171 1.15829 9.65829 1.15829 9.85355 1.35355L14.6464 6.14645C14.8417 6.34171 14.8417 6.65829 14.6464 6.85355L13.8536 7.64645C13.6583 7.84171 13.3417 7.84171 13.1464 7.64645L8.35355 2.85355Z"
63
55
  }
64
56
  }
65
57
  ]
@@ -36,6 +36,7 @@ let ts_cancel_merge_icon_js = require("./cancel-merge-icon.cjs");
36
36
  let ts_catalogue_icon_js = require("./catalogue-icon.cjs");
37
37
  let ts_chart_icon_js = require("./chart-icon.cjs");
38
38
  let ts_check_mark_icon_js = require("./check-mark-icon.cjs");
39
+ let ts_checkbox_icon_js = require("./checkbox-icon.cjs");
39
40
  let ts_class_diagram_class_icon_js = require("./class-diagram-class-icon.cjs");
40
41
  let ts_class_diagram_dashed_filled_arrow_connector_icon_js = require("./class-diagram-dashed-filled-arrow-connector-icon.cjs");
41
42
  let ts_class_diagram_dashed_open_arrow_connector_icon_js = require("./class-diagram-dashed-open-arrow-connector-icon.cjs");
@@ -80,6 +81,7 @@ let ts_connector_rounded_elbow_icon_js = require("./connector-rounded-elbow-icon
80
81
  let ts_connector_swap_markers_icon_js = require("./connector-swap-markers-icon.cjs");
81
82
  let ts_connector_x_marker_icon_js = require("./connector-x-marker-icon.cjs");
82
83
  let ts_convert_icon_js = require("./convert-icon.cjs");
84
+ let ts_convert_to_number_icon_js = require("./convert-to-number-icon.cjs");
83
85
  let ts_copy_icon_js = require("./copy-icon.cjs");
84
86
  let ts_create_copy_icon_js = require("./create-copy-icon.cjs");
85
87
  let ts_crop_icon_js = require("./crop-icon.cjs");
@@ -110,6 +112,7 @@ let ts_dollar_icon_js = require("./dollar-icon.cjs");
110
112
  let ts_down_icon_js = require("./down-icon.cjs");
111
113
  let ts_download_icon_js = require("./download-icon.cjs");
112
114
  let ts_download_image_icon_js = require("./download-image-icon.cjs");
115
+ let ts_dropdown_list_icon_js = require("./dropdown-list-icon.cjs");
113
116
  let ts_engineering_function_icon_js = require("./engineering-function-icon.cjs");
114
117
  let ts_entity_relationship_entity_icon_js = require("./entity-relationship-entity-icon.cjs");
115
118
  let ts_entity_relationship_field_type_icon_js = require("./entity-relationship-field-type-icon.cjs");
@@ -120,6 +123,7 @@ let ts_euro_icon_js = require("./euro-icon.cjs");
120
123
  let ts_exclamation_icon_js = require("./exclamation-icon.cjs");
121
124
  let ts_expand_ascending_icon_js = require("./expand-ascending-icon.cjs");
122
125
  let ts_expand_descending_icon_js = require("./expand-descending-icon.cjs");
126
+ let ts_expand_icon_js = require("./expand-icon.cjs");
123
127
  let ts_exponential_icon_js = require("./exponential-icon.cjs");
124
128
  let ts_export_icon_js = require("./export-icon.cjs");
125
129
  let ts_eye_icon_js = require("./eye-icon.cjs");
@@ -149,7 +153,6 @@ let ts_fountain_pen_icon_js = require("./fountain-pen-icon.cjs");
149
153
  let ts_freeze_column_icon_js = require("./freeze-column-icon.cjs");
150
154
  let ts_freeze_row_icon_js = require("./freeze-row-icon.cjs");
151
155
  let ts_freeze_to_selected_icon_js = require("./freeze-to-selected-icon.cjs");
152
- let ts_fullscreen_icon_js = require("./fullscreen-icon.cjs");
153
156
  let ts_function_icon_js = require("./function-icon.cjs");
154
157
  let ts_funnel_icon_js = require("./funnel-icon.cjs");
155
158
  let ts_fx_icon_js = require("./fx-icon.cjs");
@@ -479,6 +482,7 @@ let ts_sheets_app_icon_js = require("./sheets-app-icon.cjs");
479
482
  let ts_shortcut_icon_js = require("./shortcut-icon.cjs");
480
483
  let ts_show_dimensions_icon_js = require("./show-dimensions-icon.cjs");
481
484
  let ts_show_toolbar_icon_js = require("./show-toolbar-icon.cjs");
485
+ let ts_shrink_icon_js = require("./shrink-icon.cjs");
482
486
  let ts_shrink_to_fit_icon_js = require("./shrink-to-fit-icon.cjs");
483
487
  let ts_slides_app_icon_js = require("./slides-app-icon.cjs");
484
488
  let ts_slideshow_play_icon_js = require("./slideshow-play-icon.cjs");
@@ -562,6 +566,7 @@ let ts_delete_cell_shift_right_double_icon_js = require("./delete-cell-shift-rig
562
566
  let ts_delete_cell_shift_up_double_icon_js = require("./delete-cell-shift-up-double-icon.cjs");
563
567
  let ts_delete_column_double_icon_js = require("./delete-column-double-icon.cjs");
564
568
  let ts_delete_row_double_icon_js = require("./delete-row-double-icon.cjs");
569
+ let ts_delete_table_double_icon_js = require("./delete-table-double-icon.cjs");
565
570
  let ts_dissatisfied_double_icon_js = require("./dissatisfied-double-icon.cjs");
566
571
  let ts_down_border_double_icon_js = require("./down-border-double-icon.cjs");
567
572
  let ts_font_color_double_icon_js = require("./font-color-double-icon.cjs");
@@ -922,6 +927,12 @@ Object.defineProperty(exports, "CheckMarkIcon", {
922
927
  return ts_check_mark_icon_js.CheckMarkIcon;
923
928
  }
924
929
  });
930
+ Object.defineProperty(exports, "CheckboxIcon", {
931
+ enumerable: true,
932
+ get: function() {
933
+ return ts_checkbox_icon_js.CheckboxIcon;
934
+ }
935
+ });
925
936
  Object.defineProperty(exports, "ClassDiagramClassIcon", {
926
937
  enumerable: true,
927
938
  get: function() {
@@ -1204,6 +1215,12 @@ Object.defineProperty(exports, "ConvertIcon", {
1204
1215
  return ts_convert_icon_js.ConvertIcon;
1205
1216
  }
1206
1217
  });
1218
+ Object.defineProperty(exports, "ConvertToNumberIcon", {
1219
+ enumerable: true,
1220
+ get: function() {
1221
+ return ts_convert_to_number_icon_js.ConvertToNumberIcon;
1222
+ }
1223
+ });
1207
1224
  Object.defineProperty(exports, "CopyDoubleIcon", {
1208
1225
  enumerable: true,
1209
1226
  get: function() {
@@ -1378,6 +1395,12 @@ Object.defineProperty(exports, "DeleteRowDoubleIcon", {
1378
1395
  return ts_delete_row_double_icon_js.DeleteRowDoubleIcon;
1379
1396
  }
1380
1397
  });
1398
+ Object.defineProperty(exports, "DeleteTableDoubleIcon", {
1399
+ enumerable: true,
1400
+ get: function() {
1401
+ return ts_delete_table_double_icon_js.DeleteTableDoubleIcon;
1402
+ }
1403
+ });
1381
1404
  Object.defineProperty(exports, "DescendingIcon", {
1382
1405
  enumerable: true,
1383
1406
  get: function() {
@@ -1450,6 +1473,12 @@ Object.defineProperty(exports, "DownloadImageIcon", {
1450
1473
  return ts_download_image_icon_js.DownloadImageIcon;
1451
1474
  }
1452
1475
  });
1476
+ Object.defineProperty(exports, "DropdownListIcon", {
1477
+ enumerable: true,
1478
+ get: function() {
1479
+ return ts_dropdown_list_icon_js.DropdownListIcon;
1480
+ }
1481
+ });
1453
1482
  Object.defineProperty(exports, "EngineeringFunctionIcon", {
1454
1483
  enumerable: true,
1455
1484
  get: function() {
@@ -1510,6 +1539,12 @@ Object.defineProperty(exports, "ExpandDescendingIcon", {
1510
1539
  return ts_expand_descending_icon_js.ExpandDescendingIcon;
1511
1540
  }
1512
1541
  });
1542
+ Object.defineProperty(exports, "ExpandIcon", {
1543
+ enumerable: true,
1544
+ get: function() {
1545
+ return ts_expand_icon_js.ExpandIcon;
1546
+ }
1547
+ });
1513
1548
  Object.defineProperty(exports, "ExponentialIcon", {
1514
1549
  enumerable: true,
1515
1550
  get: function() {
@@ -1690,12 +1725,6 @@ Object.defineProperty(exports, "FreezeToSelectedIcon", {
1690
1725
  return ts_freeze_to_selected_icon_js.FreezeToSelectedIcon;
1691
1726
  }
1692
1727
  });
1693
- Object.defineProperty(exports, "FullscreenIcon", {
1694
- enumerable: true,
1695
- get: function() {
1696
- return ts_fullscreen_icon_js.FullscreenIcon;
1697
- }
1698
- });
1699
1728
  Object.defineProperty(exports, "FunctionIcon", {
1700
1729
  enumerable: true,
1701
1730
  get: function() {
@@ -3904,6 +3933,12 @@ Object.defineProperty(exports, "ShowToolbarIcon", {
3904
3933
  return ts_show_toolbar_icon_js.ShowToolbarIcon;
3905
3934
  }
3906
3935
  });
3936
+ Object.defineProperty(exports, "ShrinkIcon", {
3937
+ enumerable: true,
3938
+ get: function() {
3939
+ return ts_shrink_icon_js.ShrinkIcon;
3940
+ }
3941
+ });
3907
3942
  Object.defineProperty(exports, "ShrinkToFitIcon", {
3908
3943
  enumerable: true,
3909
3944
  get: function() {
@@ -0,0 +1,46 @@
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/shrink-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-linecap": "round",
22
+ "stroke-linejoin": "round",
23
+ "stroke-width": 1.2,
24
+ "d": "M10 10L14 14M10 10V13.2M10 10H13.2M6 13.2V10H2.8M6 10L2 14M10 2.8V6H13.2M10 6L14 2M6 2.8V6H2.8M6 6L2 2"
25
+ }
26
+ }]
27
+ };
28
+ const ShrinkIcon = (0, vue.defineComponent)({
29
+ name: "ShrinkIcon",
30
+ inheritAttrs: false,
31
+ props: { extend: {
32
+ type: Object,
33
+ default: void 0
34
+ } },
35
+ setup(props, { attrs }) {
36
+ return () => (0, vue.h)(ts_base_js.IconBase, {
37
+ ...attrs,
38
+ extend: props.extend,
39
+ id: "shrink-icon",
40
+ icon: element
41
+ });
42
+ }
43
+ });
44
+ //#endregion
45
+ exports.ShrinkIcon = ShrinkIcon;
46
+ exports.default = ShrinkIcon;
@@ -1,6 +1,6 @@
1
1
  import type { PropType } from 'vue';
2
2
  import type { IExtendProps } from './base.js';
3
- export declare const FullscreenIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
+ export declare const CheckboxIcon: 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 FullscreenIcon: import("vue").DefineComponent<import("vue")
15
15
  }>> & Readonly<{}>, {
16
16
  extend: IExtendProps;
17
17
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
18
- export default FullscreenIcon;
18
+ export default CheckboxIcon;
@@ -0,0 +1,52 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/checkbox-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
+ "tag": "rect",
15
+ "attrs": {
16
+ "width": 13,
17
+ "height": 13,
18
+ "x": 1.5,
19
+ "y": 1.5,
20
+ "stroke": "currentColor",
21
+ "stroke-width": 1.2,
22
+ "rx": 1.5
23
+ }
24
+ }, {
25
+ "tag": "path",
26
+ "attrs": {
27
+ "stroke": "currentColor",
28
+ "stroke-linecap": "round",
29
+ "stroke-linejoin": "round",
30
+ "stroke-width": 1.2,
31
+ "d": "M4.5 8L6.8 10.3L11.5 5.6"
32
+ }
33
+ }]
34
+ };
35
+ const CheckboxIcon = defineComponent({
36
+ name: "CheckboxIcon",
37
+ inheritAttrs: false,
38
+ props: { extend: {
39
+ type: Object,
40
+ default: void 0
41
+ } },
42
+ setup(props, { attrs }) {
43
+ return () => h(IconBase, {
44
+ ...attrs,
45
+ extend: props.extend,
46
+ id: "checkbox-icon",
47
+ icon: element
48
+ });
49
+ }
50
+ });
51
+ //#endregion
52
+ export { CheckboxIcon, CheckboxIcon as default };
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const ConvertToNumberIcon: 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 ConvertToNumberIcon;
@@ -0,0 +1,49 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/convert-to-number-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
+ "tag": "path",
15
+ "attrs": {
16
+ "stroke": "currentColor",
17
+ "stroke-linecap": "round",
18
+ "stroke-linejoin": "round",
19
+ "stroke-width": 1.2,
20
+ "d": "M2 3.5V6.2C2 7.2 2.8 8 3.8 8H6.4M4.8 6.2L6.6 8L4.8 9.8"
21
+ }
22
+ }, {
23
+ "tag": "path",
24
+ "attrs": {
25
+ "stroke": "currentColor",
26
+ "stroke-linecap": "round",
27
+ "stroke-width": 1.2,
28
+ "d": "M9.8 3.2L8.8 12.8M13.2 3.2L12.2 12.8M8 6.2H14M7.7 9.8H13.7"
29
+ }
30
+ }]
31
+ };
32
+ const ConvertToNumberIcon = defineComponent({
33
+ name: "ConvertToNumberIcon",
34
+ inheritAttrs: false,
35
+ props: { extend: {
36
+ type: Object,
37
+ default: void 0
38
+ } },
39
+ setup(props, { attrs }) {
40
+ return () => h(IconBase, {
41
+ ...attrs,
42
+ extend: props.extend,
43
+ id: "convert-to-number-icon",
44
+ icon: element
45
+ });
46
+ }
47
+ });
48
+ //#endregion
49
+ export { ConvertToNumberIcon, ConvertToNumberIcon as default };