@univerjs/icons-vue 1.24.0 → 1.26.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,58 @@
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/data-bar-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": 5,
22
+ "x": 1.5,
23
+ "y": 5.5,
24
+ "stroke": "currentColor",
25
+ "stroke-width": 1.2,
26
+ "rx": 2.5
27
+ }
28
+ }, {
29
+ "tag": "rect",
30
+ "attrs": {
31
+ "width": 6.4,
32
+ "height": 2.6,
33
+ "x": 2.7,
34
+ "y": 6.7,
35
+ "fill": "currentColor",
36
+ "rx": 1.3
37
+ }
38
+ }]
39
+ };
40
+ const DataBarIcon = (0, vue.defineComponent)({
41
+ name: "DataBarIcon",
42
+ inheritAttrs: false,
43
+ props: { extend: {
44
+ type: Object,
45
+ default: void 0
46
+ } },
47
+ setup(props, { attrs }) {
48
+ return () => (0, vue.h)(ts_base_js.IconBase, {
49
+ ...attrs,
50
+ extend: props.extend,
51
+ id: "data-bar-icon",
52
+ icon: element
53
+ });
54
+ }
55
+ });
56
+ //#endregion
57
+ exports.DataBarIcon = DataBarIcon;
58
+ exports.default = DataBarIcon;
@@ -0,0 +1,68 @@
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/date-picker-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": "rect",
20
+ "attrs": {
21
+ "width": 13,
22
+ "height": 12,
23
+ "x": 1.5,
24
+ "y": 2.5,
25
+ "stroke": "currentColor",
26
+ "stroke-width": 1.2,
27
+ "rx": 1.5
28
+ }
29
+ },
30
+ {
31
+ "tag": "path",
32
+ "attrs": {
33
+ "stroke": "currentColor",
34
+ "stroke-linecap": "round",
35
+ "stroke-width": 1.2,
36
+ "d": "M1.5 6.5H14.5M5 1.5V4M11 1.5V4"
37
+ }
38
+ },
39
+ {
40
+ "tag": "path",
41
+ "attrs": {
42
+ "stroke": "currentColor",
43
+ "stroke-linecap": "round",
44
+ "stroke-width": 1.2,
45
+ "d": "M4.5 9H6M8 9H9.5M11.5 9H12M4.5 12H6M8 12H9.5"
46
+ }
47
+ }
48
+ ]
49
+ };
50
+ const DatePickerIcon = (0, vue.defineComponent)({
51
+ name: "DatePickerIcon",
52
+ inheritAttrs: false,
53
+ props: { extend: {
54
+ type: Object,
55
+ default: void 0
56
+ } },
57
+ setup(props, { attrs }) {
58
+ return () => (0, vue.h)(ts_base_js.IconBase, {
59
+ ...attrs,
60
+ extend: props.extend,
61
+ id: "date-picker-icon",
62
+ icon: element
63
+ });
64
+ }
65
+ });
66
+ //#endregion
67
+ exports.DatePickerIcon = DatePickerIcon;
68
+ exports.default = DatePickerIcon;
@@ -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");
@@ -89,6 +90,7 @@ let ts_cross_icon_js = require("./cross-icon.cjs");
89
90
  let ts_cursors_icon_js = require("./cursors-icon.cjs");
90
91
  let ts_custom_sort_icon_js = require("./custom-sort-icon.cjs");
91
92
  let ts_cut_icon_js = require("./cut-icon.cjs");
93
+ let ts_data_bar_icon_js = require("./data-bar-icon.cjs");
92
94
  let ts_data_flow_circle_icon_js = require("./data-flow-circle-icon.cjs");
93
95
  let ts_data_flow_data_storage1_icon_js = require("./data-flow-data-storage1-icon.cjs");
94
96
  let ts_data_flow_data_storage2_icon_js = require("./data-flow-data-storage2-icon.cjs");
@@ -99,6 +101,7 @@ let ts_data_validation_icon_js = require("./data-validation-icon.cjs");
99
101
  let ts_database_function_icon_js = require("./database-function-icon.cjs");
100
102
  let ts_database_icon_js = require("./database-icon.cjs");
101
103
  let ts_date_function_icon_js = require("./date-function-icon.cjs");
104
+ let ts_date_picker_icon_js = require("./date-picker-icon.cjs");
102
105
  let ts_delete_empty_icon_js = require("./delete-empty-icon.cjs");
103
106
  let ts_delete_icon_js = require("./delete-icon.cjs");
104
107
  let ts_delete_note_icon_js = require("./delete-note-icon.cjs");
@@ -111,6 +114,7 @@ let ts_dollar_icon_js = require("./dollar-icon.cjs");
111
114
  let ts_down_icon_js = require("./down-icon.cjs");
112
115
  let ts_download_icon_js = require("./download-icon.cjs");
113
116
  let ts_download_image_icon_js = require("./download-image-icon.cjs");
117
+ let ts_dropdown_list_icon_js = require("./dropdown-list-icon.cjs");
114
118
  let ts_engineering_function_icon_js = require("./engineering-function-icon.cjs");
115
119
  let ts_entity_relationship_entity_icon_js = require("./entity-relationship-entity-icon.cjs");
116
120
  let ts_entity_relationship_field_type_icon_js = require("./entity-relationship-field-type-icon.cjs");
@@ -121,6 +125,7 @@ let ts_euro_icon_js = require("./euro-icon.cjs");
121
125
  let ts_exclamation_icon_js = require("./exclamation-icon.cjs");
122
126
  let ts_expand_ascending_icon_js = require("./expand-ascending-icon.cjs");
123
127
  let ts_expand_descending_icon_js = require("./expand-descending-icon.cjs");
128
+ let ts_expand_icon_js = require("./expand-icon.cjs");
124
129
  let ts_exponential_icon_js = require("./exponential-icon.cjs");
125
130
  let ts_export_icon_js = require("./export-icon.cjs");
126
131
  let ts_eye_icon_js = require("./eye-icon.cjs");
@@ -150,7 +155,6 @@ let ts_fountain_pen_icon_js = require("./fountain-pen-icon.cjs");
150
155
  let ts_freeze_column_icon_js = require("./freeze-column-icon.cjs");
151
156
  let ts_freeze_row_icon_js = require("./freeze-row-icon.cjs");
152
157
  let ts_freeze_to_selected_icon_js = require("./freeze-to-selected-icon.cjs");
153
- let ts_fullscreen_icon_js = require("./fullscreen-icon.cjs");
154
158
  let ts_function_icon_js = require("./function-icon.cjs");
155
159
  let ts_funnel_icon_js = require("./funnel-icon.cjs");
156
160
  let ts_fx_icon_js = require("./fx-icon.cjs");
@@ -245,6 +249,7 @@ let ts_quick_add_icon_js = require("./quick-add-icon.cjs");
245
249
  let ts_quote_icon_js = require("./quote-icon.cjs");
246
250
  let ts_radar_chart_icon_js = require("./radar-chart-icon.cjs");
247
251
  let ts_random_icon_js = require("./random-icon.cjs");
252
+ let ts_rating_icon_js = require("./rating-icon.cjs");
248
253
  let ts_recent_icon_js = require("./recent-icon.cjs");
249
254
  let ts_record_icon_js = require("./record-icon.cjs");
250
255
  let ts_redo_icon_js = require("./redo-icon.cjs");
@@ -480,6 +485,7 @@ let ts_sheets_app_icon_js = require("./sheets-app-icon.cjs");
480
485
  let ts_shortcut_icon_js = require("./shortcut-icon.cjs");
481
486
  let ts_show_dimensions_icon_js = require("./show-dimensions-icon.cjs");
482
487
  let ts_show_toolbar_icon_js = require("./show-toolbar-icon.cjs");
488
+ let ts_shrink_icon_js = require("./shrink-icon.cjs");
483
489
  let ts_shrink_to_fit_icon_js = require("./shrink-to-fit-icon.cjs");
484
490
  let ts_slides_app_icon_js = require("./slides-app-icon.cjs");
485
491
  let ts_slideshow_play_icon_js = require("./slideshow-play-icon.cjs");
@@ -924,6 +930,12 @@ Object.defineProperty(exports, "CheckMarkIcon", {
924
930
  return ts_check_mark_icon_js.CheckMarkIcon;
925
931
  }
926
932
  });
933
+ Object.defineProperty(exports, "CheckboxIcon", {
934
+ enumerable: true,
935
+ get: function() {
936
+ return ts_checkbox_icon_js.CheckboxIcon;
937
+ }
938
+ });
927
939
  Object.defineProperty(exports, "ClassDiagramClassIcon", {
928
940
  enumerable: true,
929
941
  get: function() {
@@ -1272,6 +1284,12 @@ Object.defineProperty(exports, "CutIcon", {
1272
1284
  return ts_cut_icon_js.CutIcon;
1273
1285
  }
1274
1286
  });
1287
+ Object.defineProperty(exports, "DataBarIcon", {
1288
+ enumerable: true,
1289
+ get: function() {
1290
+ return ts_data_bar_icon_js.DataBarIcon;
1291
+ }
1292
+ });
1275
1293
  Object.defineProperty(exports, "DataFlowCircleIcon", {
1276
1294
  enumerable: true,
1277
1295
  get: function() {
@@ -1332,6 +1350,12 @@ Object.defineProperty(exports, "DateFunctionIcon", {
1332
1350
  return ts_date_function_icon_js.DateFunctionIcon;
1333
1351
  }
1334
1352
  });
1353
+ Object.defineProperty(exports, "DatePickerIcon", {
1354
+ enumerable: true,
1355
+ get: function() {
1356
+ return ts_date_picker_icon_js.DatePickerIcon;
1357
+ }
1358
+ });
1335
1359
  Object.defineProperty(exports, "DeleteCellMoveDownDoubleIcon", {
1336
1360
  enumerable: true,
1337
1361
  get: function() {
@@ -1464,6 +1488,12 @@ Object.defineProperty(exports, "DownloadImageIcon", {
1464
1488
  return ts_download_image_icon_js.DownloadImageIcon;
1465
1489
  }
1466
1490
  });
1491
+ Object.defineProperty(exports, "DropdownListIcon", {
1492
+ enumerable: true,
1493
+ get: function() {
1494
+ return ts_dropdown_list_icon_js.DropdownListIcon;
1495
+ }
1496
+ });
1467
1497
  Object.defineProperty(exports, "EngineeringFunctionIcon", {
1468
1498
  enumerable: true,
1469
1499
  get: function() {
@@ -1524,6 +1554,12 @@ Object.defineProperty(exports, "ExpandDescendingIcon", {
1524
1554
  return ts_expand_descending_icon_js.ExpandDescendingIcon;
1525
1555
  }
1526
1556
  });
1557
+ Object.defineProperty(exports, "ExpandIcon", {
1558
+ enumerable: true,
1559
+ get: function() {
1560
+ return ts_expand_icon_js.ExpandIcon;
1561
+ }
1562
+ });
1527
1563
  Object.defineProperty(exports, "ExponentialIcon", {
1528
1564
  enumerable: true,
1529
1565
  get: function() {
@@ -1704,12 +1740,6 @@ Object.defineProperty(exports, "FreezeToSelectedIcon", {
1704
1740
  return ts_freeze_to_selected_icon_js.FreezeToSelectedIcon;
1705
1741
  }
1706
1742
  });
1707
- Object.defineProperty(exports, "FullscreenIcon", {
1708
- enumerable: true,
1709
- get: function() {
1710
- return ts_fullscreen_icon_js.FullscreenIcon;
1711
- }
1712
- });
1713
1743
  Object.defineProperty(exports, "FunctionIcon", {
1714
1744
  enumerable: true,
1715
1745
  get: function() {
@@ -2466,6 +2496,12 @@ Object.defineProperty(exports, "RandomIcon", {
2466
2496
  return ts_random_icon_js.RandomIcon;
2467
2497
  }
2468
2498
  });
2499
+ Object.defineProperty(exports, "RatingIcon", {
2500
+ enumerable: true,
2501
+ get: function() {
2502
+ return ts_rating_icon_js.RatingIcon;
2503
+ }
2504
+ });
2469
2505
  Object.defineProperty(exports, "RecentIcon", {
2470
2506
  enumerable: true,
2471
2507
  get: function() {
@@ -3918,6 +3954,12 @@ Object.defineProperty(exports, "ShowToolbarIcon", {
3918
3954
  return ts_show_toolbar_icon_js.ShowToolbarIcon;
3919
3955
  }
3920
3956
  });
3957
+ Object.defineProperty(exports, "ShrinkIcon", {
3958
+ enumerable: true,
3959
+ get: function() {
3960
+ return ts_shrink_icon_js.ShrinkIcon;
3961
+ }
3962
+ });
3921
3963
  Object.defineProperty(exports, "ShrinkToFitIcon", {
3922
3964
  enumerable: true,
3923
3965
  get: function() {
@@ -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/rating-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": "M8 4L9.19 6.42L11.85 6.81L9.93 8.68L10.38 11.33L8 10.08L5.62 11.33L6.07 8.68L4.15 6.81L6.81 6.42L8 4Z"
36
+ }
37
+ }]
38
+ };
39
+ const RatingIcon = (0, vue.defineComponent)({
40
+ name: "RatingIcon",
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: "rating-icon",
51
+ icon: element
52
+ });
53
+ }
54
+ });
55
+ //#endregion
56
+ exports.RatingIcon = RatingIcon;
57
+ exports.default = RatingIcon;
@@ -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;
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const CheckboxIcon: 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 CheckboxIcon;