@univerjs/icons-vue 1.22.0 → 1.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/database-function-icon.cjs +57 -0
- package/dist/cjs/date-function-icon.cjs +79 -0
- package/dist/cjs/engineering-function-icon.cjs +57 -0
- package/dist/cjs/financial-function-icon.cjs +57 -0
- package/dist/cjs/index.cjs +70 -0
- package/dist/cjs/information-function-icon.cjs +56 -0
- package/dist/cjs/logical-function-icon.cjs +57 -0
- package/dist/cjs/lookup-function-icon.cjs +78 -0
- package/dist/cjs/math-function-icon.cjs +57 -0
- package/dist/cjs/statistical-function-icon.cjs +57 -0
- package/dist/cjs/text-function-icon.cjs +57 -0
- package/dist/esm/database-function-icon.d.ts +18 -0
- package/dist/esm/database-function-icon.js +52 -0
- package/dist/esm/date-function-icon.d.ts +18 -0
- package/dist/esm/date-function-icon.js +74 -0
- package/dist/esm/engineering-function-icon.d.ts +18 -0
- package/dist/esm/engineering-function-icon.js +52 -0
- package/dist/esm/financial-function-icon.d.ts +18 -0
- package/dist/esm/financial-function-icon.js +52 -0
- package/dist/esm/index.d.ts +10 -0
- package/dist/esm/index.js +11 -1
- package/dist/esm/information-function-icon.d.ts +18 -0
- package/dist/esm/information-function-icon.js +51 -0
- package/dist/esm/logical-function-icon.d.ts +18 -0
- package/dist/esm/logical-function-icon.js +52 -0
- package/dist/esm/lookup-function-icon.d.ts +18 -0
- package/dist/esm/lookup-function-icon.js +73 -0
- package/dist/esm/math-function-icon.d.ts +18 -0
- package/dist/esm/math-function-icon.js +52 -0
- package/dist/esm/statistical-function-icon.d.ts +18 -0
- package/dist/esm/statistical-function-icon.js +52 -0
- package/dist/esm/text-function-icon.d.ts +18 -0
- package/dist/esm/text-function-icon.js +52 -0
- package/package.json +2 -2
|
@@ -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/database-function-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": 11.2,
|
|
21
|
+
"height": 13.2,
|
|
22
|
+
"x": 2.4,
|
|
23
|
+
"y": 1.4,
|
|
24
|
+
"stroke": "currentColor",
|
|
25
|
+
"stroke-width": 1.2,
|
|
26
|
+
"rx": 1.6
|
|
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": "M5 12H11M5.4 5.1C5.4 4.55 6.55 4.1 8 4.1C9.45 4.1 10.6 4.55 10.6 5.1C10.6 5.65 9.45 6.1 8 6.1C6.55 6.1 5.4 5.65 5.4 5.1ZM5.4 5.1V8.9C5.4 9.45 6.55 9.9 8 9.9C9.45 9.9 10.6 9.45 10.6 8.9V5.1M5.4 7C5.4 7.55 6.55 8 8 8C9.45 8 10.6 7.55 10.6 7"
|
|
36
|
+
}
|
|
37
|
+
}]
|
|
38
|
+
};
|
|
39
|
+
const DatabaseFunctionIcon = (0, vue.defineComponent)({
|
|
40
|
+
name: "DatabaseFunctionIcon",
|
|
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: "database-function-icon",
|
|
51
|
+
icon: element
|
|
52
|
+
});
|
|
53
|
+
}
|
|
54
|
+
});
|
|
55
|
+
//#endregion
|
|
56
|
+
exports.DatabaseFunctionIcon = DatabaseFunctionIcon;
|
|
57
|
+
exports.default = DatabaseFunctionIcon;
|
|
@@ -0,0 +1,79 @@
|
|
|
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-function-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": 11.2,
|
|
22
|
+
"height": 13.2,
|
|
23
|
+
"x": 2.4,
|
|
24
|
+
"y": 1.4,
|
|
25
|
+
"stroke": "currentColor",
|
|
26
|
+
"stroke-width": 1.2,
|
|
27
|
+
"rx": 1.6
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"tag": "path",
|
|
32
|
+
"attrs": {
|
|
33
|
+
"stroke": "currentColor",
|
|
34
|
+
"stroke-linecap": "round",
|
|
35
|
+
"stroke-width": 1.2,
|
|
36
|
+
"d": "M5 12H11"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"tag": "circle",
|
|
41
|
+
"attrs": {
|
|
42
|
+
"cx": 8,
|
|
43
|
+
"cy": 7.1,
|
|
44
|
+
"r": 2.65,
|
|
45
|
+
"stroke": "currentColor",
|
|
46
|
+
"stroke-width": 1.2
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"tag": "path",
|
|
51
|
+
"attrs": {
|
|
52
|
+
"stroke": "currentColor",
|
|
53
|
+
"stroke-linecap": "round",
|
|
54
|
+
"stroke-linejoin": "round",
|
|
55
|
+
"stroke-width": 1.2,
|
|
56
|
+
"d": "M8 5.5V7.35L9.25 8.2"
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
]
|
|
60
|
+
};
|
|
61
|
+
const DateFunctionIcon = (0, vue.defineComponent)({
|
|
62
|
+
name: "DateFunctionIcon",
|
|
63
|
+
inheritAttrs: false,
|
|
64
|
+
props: { extend: {
|
|
65
|
+
type: Object,
|
|
66
|
+
default: void 0
|
|
67
|
+
} },
|
|
68
|
+
setup(props, { attrs }) {
|
|
69
|
+
return () => (0, vue.h)(ts_base_js.IconBase, {
|
|
70
|
+
...attrs,
|
|
71
|
+
extend: props.extend,
|
|
72
|
+
id: "date-function-icon",
|
|
73
|
+
icon: element
|
|
74
|
+
});
|
|
75
|
+
}
|
|
76
|
+
});
|
|
77
|
+
//#endregion
|
|
78
|
+
exports.DateFunctionIcon = DateFunctionIcon;
|
|
79
|
+
exports.default = DateFunctionIcon;
|
|
@@ -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/engineering-function-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": 11.2,
|
|
21
|
+
"height": 13.2,
|
|
22
|
+
"x": 2.4,
|
|
23
|
+
"y": 1.4,
|
|
24
|
+
"stroke": "currentColor",
|
|
25
|
+
"stroke-width": 1.2,
|
|
26
|
+
"rx": 1.6
|
|
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": "M5 12H11M5.4 9.8L10.5 4.7V9.8H5.4ZM7.1 9.5V8.3M8.4 9.5V7"
|
|
36
|
+
}
|
|
37
|
+
}]
|
|
38
|
+
};
|
|
39
|
+
const EngineeringFunctionIcon = (0, vue.defineComponent)({
|
|
40
|
+
name: "EngineeringFunctionIcon",
|
|
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: "engineering-function-icon",
|
|
51
|
+
icon: element
|
|
52
|
+
});
|
|
53
|
+
}
|
|
54
|
+
});
|
|
55
|
+
//#endregion
|
|
56
|
+
exports.EngineeringFunctionIcon = EngineeringFunctionIcon;
|
|
57
|
+
exports.default = EngineeringFunctionIcon;
|
|
@@ -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/financial-function-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": 11.2,
|
|
21
|
+
"height": 13.2,
|
|
22
|
+
"x": 2.4,
|
|
23
|
+
"y": 1.4,
|
|
24
|
+
"stroke": "currentColor",
|
|
25
|
+
"stroke-width": 1.2,
|
|
26
|
+
"rx": 1.6
|
|
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": "M5 12H11M8 3.9V10M9.7 5.1C9.25 4.72 8.65 4.52 8 4.52C6.98 4.52 6.32 4.95 6.32 5.6C6.32 7.28 9.8 6.3 9.8 7.98C9.8 8.7 9.1 9.18 8 9.18C7.27 9.18 6.58 8.98 6.02 8.6"
|
|
36
|
+
}
|
|
37
|
+
}]
|
|
38
|
+
};
|
|
39
|
+
const FinancialFunctionIcon = (0, vue.defineComponent)({
|
|
40
|
+
name: "FinancialFunctionIcon",
|
|
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: "financial-function-icon",
|
|
51
|
+
icon: element
|
|
52
|
+
});
|
|
53
|
+
}
|
|
54
|
+
});
|
|
55
|
+
//#endregion
|
|
56
|
+
exports.FinancialFunctionIcon = FinancialFunctionIcon;
|
|
57
|
+
exports.default = FinancialFunctionIcon;
|
package/dist/cjs/index.cjs
CHANGED
|
@@ -95,7 +95,9 @@ let ts_data_flow_data_storage3_icon_js = require("./data-flow-data-storage3-icon
|
|
|
95
95
|
let ts_data_flow_rounded_rectangle_icon_js = require("./data-flow-rounded-rectangle-icon.cjs");
|
|
96
96
|
let ts_data_flow_rounded_square_icon_js = require("./data-flow-rounded-square-icon.cjs");
|
|
97
97
|
let ts_data_validation_icon_js = require("./data-validation-icon.cjs");
|
|
98
|
+
let ts_database_function_icon_js = require("./database-function-icon.cjs");
|
|
98
99
|
let ts_database_icon_js = require("./database-icon.cjs");
|
|
100
|
+
let ts_date_function_icon_js = require("./date-function-icon.cjs");
|
|
99
101
|
let ts_delete_empty_icon_js = require("./delete-empty-icon.cjs");
|
|
100
102
|
let ts_delete_icon_js = require("./delete-icon.cjs");
|
|
101
103
|
let ts_delete_note_icon_js = require("./delete-note-icon.cjs");
|
|
@@ -108,6 +110,7 @@ let ts_dollar_icon_js = require("./dollar-icon.cjs");
|
|
|
108
110
|
let ts_down_icon_js = require("./down-icon.cjs");
|
|
109
111
|
let ts_download_icon_js = require("./download-icon.cjs");
|
|
110
112
|
let ts_download_image_icon_js = require("./download-image-icon.cjs");
|
|
113
|
+
let ts_engineering_function_icon_js = require("./engineering-function-icon.cjs");
|
|
111
114
|
let ts_entity_relationship_entity_icon_js = require("./entity-relationship-entity-icon.cjs");
|
|
112
115
|
let ts_entity_relationship_field_type_icon_js = require("./entity-relationship-field-type-icon.cjs");
|
|
113
116
|
let ts_entity_relationship_full_icon_js = require("./entity-relationship-full-icon.cjs");
|
|
@@ -122,6 +125,7 @@ let ts_export_icon_js = require("./export-icon.cjs");
|
|
|
122
125
|
let ts_eye_icon_js = require("./eye-icon.cjs");
|
|
123
126
|
let ts_eyelash_icon_js = require("./eyelash-icon.cjs");
|
|
124
127
|
let ts_filter_icon_js = require("./filter-icon.cjs");
|
|
128
|
+
let ts_financial_function_icon_js = require("./financial-function-icon.cjs");
|
|
125
129
|
let ts_first_tab_icon_js = require("./first-tab-icon.cjs");
|
|
126
130
|
let ts_flag_icon_js = require("./flag-icon.cjs");
|
|
127
131
|
let ts_flip_horizontal_icon_js = require("./flip-horizontal-icon.cjs");
|
|
@@ -174,6 +178,7 @@ let ts_horizontally_icon_js = require("./horizontally-icon.cjs");
|
|
|
174
178
|
let ts_import_icon_js = require("./import-icon.cjs");
|
|
175
179
|
let ts_increase_icon_js = require("./increase-icon.cjs");
|
|
176
180
|
let ts_info_icon_js = require("./info-icon.cjs");
|
|
181
|
+
let ts_information_function_icon_js = require("./information-function-icon.cjs");
|
|
177
182
|
let ts_insert_icon_js = require("./insert-icon.cjs");
|
|
178
183
|
let ts_italic_icon_js = require("./italic-icon.cjs");
|
|
179
184
|
let ts_keyboard_icon_js = require("./keyboard-icon.cjs");
|
|
@@ -194,6 +199,9 @@ let ts_live_share_icon_js = require("./live-share-icon.cjs");
|
|
|
194
199
|
let ts_locate_fixed_icon_js = require("./locate-fixed-icon.cjs");
|
|
195
200
|
let ts_lock_icon_js = require("./lock-icon.cjs");
|
|
196
201
|
let ts_logarithmic_icon_js = require("./logarithmic-icon.cjs");
|
|
202
|
+
let ts_logical_function_icon_js = require("./logical-function-icon.cjs");
|
|
203
|
+
let ts_lookup_function_icon_js = require("./lookup-function-icon.cjs");
|
|
204
|
+
let ts_math_function_icon_js = require("./math-function-icon.cjs");
|
|
197
205
|
let ts_max_icon_js = require("./max-icon.cjs");
|
|
198
206
|
let ts_menu_icon_js = require("./menu-icon.cjs");
|
|
199
207
|
let ts_merge_all_icon_js = require("./merge-all-icon.cjs");
|
|
@@ -475,6 +483,7 @@ let ts_shrink_to_fit_icon_js = require("./shrink-to-fit-icon.cjs");
|
|
|
475
483
|
let ts_slides_app_icon_js = require("./slides-app-icon.cjs");
|
|
476
484
|
let ts_slideshow_play_icon_js = require("./slideshow-play-icon.cjs");
|
|
477
485
|
let ts_slideshow_theme_icon_js = require("./slideshow-theme-icon.cjs");
|
|
486
|
+
let ts_statistical_function_icon_js = require("./statistical-function-icon.cjs");
|
|
478
487
|
let ts_status_diagram_final_state_icon_js = require("./status-diagram-final-state-icon.cjs");
|
|
479
488
|
let ts_status_diagram_initial_state_icon_js = require("./status-diagram-initial-state-icon.cjs");
|
|
480
489
|
let ts_status_diagram_state_bar_icon_js = require("./status-diagram-state-bar-icon.cjs");
|
|
@@ -497,6 +506,7 @@ let ts_table_border_style_icon_js = require("./table-border-style-icon.cjs");
|
|
|
497
506
|
let ts_table_border_style_solid_icon_js = require("./table-border-style-solid-icon.cjs");
|
|
498
507
|
let ts_table_border_width_icon_js = require("./table-border-width-icon.cjs");
|
|
499
508
|
let ts_table_icon_js = require("./table-icon.cjs");
|
|
509
|
+
let ts_text_function_icon_js = require("./text-function-icon.cjs");
|
|
500
510
|
let ts_text_icon_js = require("./text-icon.cjs");
|
|
501
511
|
let ts_text_type_icon_js = require("./text-type-icon.cjs");
|
|
502
512
|
let ts_text_wrap_shape_icon_js = require("./text-wrap-shape-icon.cjs");
|
|
@@ -1296,12 +1306,24 @@ Object.defineProperty(exports, "DataValidationIcon", {
|
|
|
1296
1306
|
return ts_data_validation_icon_js.DataValidationIcon;
|
|
1297
1307
|
}
|
|
1298
1308
|
});
|
|
1309
|
+
Object.defineProperty(exports, "DatabaseFunctionIcon", {
|
|
1310
|
+
enumerable: true,
|
|
1311
|
+
get: function() {
|
|
1312
|
+
return ts_database_function_icon_js.DatabaseFunctionIcon;
|
|
1313
|
+
}
|
|
1314
|
+
});
|
|
1299
1315
|
Object.defineProperty(exports, "DatabaseIcon", {
|
|
1300
1316
|
enumerable: true,
|
|
1301
1317
|
get: function() {
|
|
1302
1318
|
return ts_database_icon_js.DatabaseIcon;
|
|
1303
1319
|
}
|
|
1304
1320
|
});
|
|
1321
|
+
Object.defineProperty(exports, "DateFunctionIcon", {
|
|
1322
|
+
enumerable: true,
|
|
1323
|
+
get: function() {
|
|
1324
|
+
return ts_date_function_icon_js.DateFunctionIcon;
|
|
1325
|
+
}
|
|
1326
|
+
});
|
|
1305
1327
|
Object.defineProperty(exports, "DeleteCellMoveDownDoubleIcon", {
|
|
1306
1328
|
enumerable: true,
|
|
1307
1329
|
get: function() {
|
|
@@ -1428,6 +1450,12 @@ Object.defineProperty(exports, "DownloadImageIcon", {
|
|
|
1428
1450
|
return ts_download_image_icon_js.DownloadImageIcon;
|
|
1429
1451
|
}
|
|
1430
1452
|
});
|
|
1453
|
+
Object.defineProperty(exports, "EngineeringFunctionIcon", {
|
|
1454
|
+
enumerable: true,
|
|
1455
|
+
get: function() {
|
|
1456
|
+
return ts_engineering_function_icon_js.EngineeringFunctionIcon;
|
|
1457
|
+
}
|
|
1458
|
+
});
|
|
1431
1459
|
Object.defineProperty(exports, "EntityRelationshipEntityIcon", {
|
|
1432
1460
|
enumerable: true,
|
|
1433
1461
|
get: function() {
|
|
@@ -1512,6 +1540,12 @@ Object.defineProperty(exports, "FilterIcon", {
|
|
|
1512
1540
|
return ts_filter_icon_js.FilterIcon;
|
|
1513
1541
|
}
|
|
1514
1542
|
});
|
|
1543
|
+
Object.defineProperty(exports, "FinancialFunctionIcon", {
|
|
1544
|
+
enumerable: true,
|
|
1545
|
+
get: function() {
|
|
1546
|
+
return ts_financial_function_icon_js.FinancialFunctionIcon;
|
|
1547
|
+
}
|
|
1548
|
+
});
|
|
1515
1549
|
Object.defineProperty(exports, "FirstTabIcon", {
|
|
1516
1550
|
enumerable: true,
|
|
1517
1551
|
get: function() {
|
|
@@ -1872,6 +1906,12 @@ Object.defineProperty(exports, "InfoIcon", {
|
|
|
1872
1906
|
return ts_info_icon_js.InfoIcon;
|
|
1873
1907
|
}
|
|
1874
1908
|
});
|
|
1909
|
+
Object.defineProperty(exports, "InformationFunctionIcon", {
|
|
1910
|
+
enumerable: true,
|
|
1911
|
+
get: function() {
|
|
1912
|
+
return ts_information_function_icon_js.InformationFunctionIcon;
|
|
1913
|
+
}
|
|
1914
|
+
});
|
|
1875
1915
|
Object.defineProperty(exports, "InnerBorderDoubleIcon", {
|
|
1876
1916
|
enumerable: true,
|
|
1877
1917
|
get: function() {
|
|
@@ -2070,6 +2110,24 @@ Object.defineProperty(exports, "LogarithmicIcon", {
|
|
|
2070
2110
|
return ts_logarithmic_icon_js.LogarithmicIcon;
|
|
2071
2111
|
}
|
|
2072
2112
|
});
|
|
2113
|
+
Object.defineProperty(exports, "LogicalFunctionIcon", {
|
|
2114
|
+
enumerable: true,
|
|
2115
|
+
get: function() {
|
|
2116
|
+
return ts_logical_function_icon_js.LogicalFunctionIcon;
|
|
2117
|
+
}
|
|
2118
|
+
});
|
|
2119
|
+
Object.defineProperty(exports, "LookupFunctionIcon", {
|
|
2120
|
+
enumerable: true,
|
|
2121
|
+
get: function() {
|
|
2122
|
+
return ts_lookup_function_icon_js.LookupFunctionIcon;
|
|
2123
|
+
}
|
|
2124
|
+
});
|
|
2125
|
+
Object.defineProperty(exports, "MathFunctionIcon", {
|
|
2126
|
+
enumerable: true,
|
|
2127
|
+
get: function() {
|
|
2128
|
+
return ts_math_function_icon_js.MathFunctionIcon;
|
|
2129
|
+
}
|
|
2130
|
+
});
|
|
2073
2131
|
Object.defineProperty(exports, "MaxIcon", {
|
|
2074
2132
|
enumerable: true,
|
|
2075
2133
|
get: function() {
|
|
@@ -3936,6 +3994,12 @@ Object.defineProperty(exports, "StarIncompleteDoubleIcon", {
|
|
|
3936
3994
|
return ts_star_incomplete_double_icon_js.StarIncompleteDoubleIcon;
|
|
3937
3995
|
}
|
|
3938
3996
|
});
|
|
3997
|
+
Object.defineProperty(exports, "StatisticalFunctionIcon", {
|
|
3998
|
+
enumerable: true,
|
|
3999
|
+
get: function() {
|
|
4000
|
+
return ts_statistical_function_icon_js.StatisticalFunctionIcon;
|
|
4001
|
+
}
|
|
4002
|
+
});
|
|
3939
4003
|
Object.defineProperty(exports, "StatusDiagramFinalStateIcon", {
|
|
3940
4004
|
enumerable: true,
|
|
3941
4005
|
get: function() {
|
|
@@ -4068,6 +4132,12 @@ Object.defineProperty(exports, "TableIcon", {
|
|
|
4068
4132
|
return ts_table_icon_js.TableIcon;
|
|
4069
4133
|
}
|
|
4070
4134
|
});
|
|
4135
|
+
Object.defineProperty(exports, "TextFunctionIcon", {
|
|
4136
|
+
enumerable: true,
|
|
4137
|
+
get: function() {
|
|
4138
|
+
return ts_text_function_icon_js.TextFunctionIcon;
|
|
4139
|
+
}
|
|
4140
|
+
});
|
|
4071
4141
|
Object.defineProperty(exports, "TextIcon", {
|
|
4072
4142
|
enumerable: true,
|
|
4073
4143
|
get: function() {
|
|
@@ -0,0 +1,56 @@
|
|
|
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/information-function-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": 11.2,
|
|
21
|
+
"height": 13.2,
|
|
22
|
+
"x": 2.4,
|
|
23
|
+
"y": 1.4,
|
|
24
|
+
"stroke": "currentColor",
|
|
25
|
+
"stroke-width": 1.2,
|
|
26
|
+
"rx": 1.6
|
|
27
|
+
}
|
|
28
|
+
}, {
|
|
29
|
+
"tag": "path",
|
|
30
|
+
"attrs": {
|
|
31
|
+
"stroke": "currentColor",
|
|
32
|
+
"stroke-linecap": "round",
|
|
33
|
+
"stroke-width": 1.2,
|
|
34
|
+
"d": "M5 12H11M8 6.5V9.5M8 4.7H8.01"
|
|
35
|
+
}
|
|
36
|
+
}]
|
|
37
|
+
};
|
|
38
|
+
const InformationFunctionIcon = (0, vue.defineComponent)({
|
|
39
|
+
name: "InformationFunctionIcon",
|
|
40
|
+
inheritAttrs: false,
|
|
41
|
+
props: { extend: {
|
|
42
|
+
type: Object,
|
|
43
|
+
default: void 0
|
|
44
|
+
} },
|
|
45
|
+
setup(props, { attrs }) {
|
|
46
|
+
return () => (0, vue.h)(ts_base_js.IconBase, {
|
|
47
|
+
...attrs,
|
|
48
|
+
extend: props.extend,
|
|
49
|
+
id: "information-function-icon",
|
|
50
|
+
icon: element
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
});
|
|
54
|
+
//#endregion
|
|
55
|
+
exports.InformationFunctionIcon = InformationFunctionIcon;
|
|
56
|
+
exports.default = InformationFunctionIcon;
|
|
@@ -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/logical-function-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": 11.2,
|
|
21
|
+
"height": 13.2,
|
|
22
|
+
"x": 2.4,
|
|
23
|
+
"y": 1.4,
|
|
24
|
+
"stroke": "currentColor",
|
|
25
|
+
"stroke-width": 1.2,
|
|
26
|
+
"rx": 1.6
|
|
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": "M5 12H11M6.35 5.45C6.35 4.4 7.05 3.78 8.05 3.78C9.05 3.78 9.75 4.4 9.75 5.3C9.75 6.08 9.28 6.48 8.68 6.88C8.2 7.2 8 7.6 8 8.18M8 9.75H8.01"
|
|
36
|
+
}
|
|
37
|
+
}]
|
|
38
|
+
};
|
|
39
|
+
const LogicalFunctionIcon = (0, vue.defineComponent)({
|
|
40
|
+
name: "LogicalFunctionIcon",
|
|
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: "logical-function-icon",
|
|
51
|
+
icon: element
|
|
52
|
+
});
|
|
53
|
+
}
|
|
54
|
+
});
|
|
55
|
+
//#endregion
|
|
56
|
+
exports.LogicalFunctionIcon = LogicalFunctionIcon;
|
|
57
|
+
exports.default = LogicalFunctionIcon;
|
|
@@ -0,0 +1,78 @@
|
|
|
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/lookup-function-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": 11.2,
|
|
22
|
+
"height": 13.2,
|
|
23
|
+
"x": 2.4,
|
|
24
|
+
"y": 1.4,
|
|
25
|
+
"stroke": "currentColor",
|
|
26
|
+
"stroke-width": 1.2,
|
|
27
|
+
"rx": 1.6
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"tag": "path",
|
|
32
|
+
"attrs": {
|
|
33
|
+
"stroke": "currentColor",
|
|
34
|
+
"stroke-linecap": "round",
|
|
35
|
+
"stroke-width": 1.2,
|
|
36
|
+
"d": "M5 12H11"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"tag": "circle",
|
|
41
|
+
"attrs": {
|
|
42
|
+
"cx": 7.35,
|
|
43
|
+
"cy": 6.8,
|
|
44
|
+
"r": 2.25,
|
|
45
|
+
"stroke": "currentColor",
|
|
46
|
+
"stroke-width": 1.2
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"tag": "path",
|
|
51
|
+
"attrs": {
|
|
52
|
+
"stroke": "currentColor",
|
|
53
|
+
"stroke-linecap": "round",
|
|
54
|
+
"stroke-width": 1.2,
|
|
55
|
+
"d": "M9 8.45L10.65 10.1"
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
]
|
|
59
|
+
};
|
|
60
|
+
const LookupFunctionIcon = (0, vue.defineComponent)({
|
|
61
|
+
name: "LookupFunctionIcon",
|
|
62
|
+
inheritAttrs: false,
|
|
63
|
+
props: { extend: {
|
|
64
|
+
type: Object,
|
|
65
|
+
default: void 0
|
|
66
|
+
} },
|
|
67
|
+
setup(props, { attrs }) {
|
|
68
|
+
return () => (0, vue.h)(ts_base_js.IconBase, {
|
|
69
|
+
...attrs,
|
|
70
|
+
extend: props.extend,
|
|
71
|
+
id: "lookup-function-icon",
|
|
72
|
+
icon: element
|
|
73
|
+
});
|
|
74
|
+
}
|
|
75
|
+
});
|
|
76
|
+
//#endregion
|
|
77
|
+
exports.LookupFunctionIcon = LookupFunctionIcon;
|
|
78
|
+
exports.default = LookupFunctionIcon;
|
|
@@ -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/math-function-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": 11.2,
|
|
21
|
+
"height": 13.2,
|
|
22
|
+
"x": 2.4,
|
|
23
|
+
"y": 1.4,
|
|
24
|
+
"stroke": "currentColor",
|
|
25
|
+
"stroke-width": 1.2,
|
|
26
|
+
"rx": 1.6
|
|
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": "M5 12H11M5.1 7.6H6.1L7 9.7L8.35 4.9H10.9"
|
|
36
|
+
}
|
|
37
|
+
}]
|
|
38
|
+
};
|
|
39
|
+
const MathFunctionIcon = (0, vue.defineComponent)({
|
|
40
|
+
name: "MathFunctionIcon",
|
|
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: "math-function-icon",
|
|
51
|
+
icon: element
|
|
52
|
+
});
|
|
53
|
+
}
|
|
54
|
+
});
|
|
55
|
+
//#endregion
|
|
56
|
+
exports.MathFunctionIcon = MathFunctionIcon;
|
|
57
|
+
exports.default = MathFunctionIcon;
|