@univerjs/icons-vue 1.38.0 → 1.40.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/doc-paste-options-icon.cjs +88 -0
- package/dist/cjs/index.cjs +21 -0
- package/dist/cjs/paragraph-setting-icon.cjs +73 -0
- package/dist/cjs/section-setting-icon.cjs +82 -0
- package/dist/esm/doc-paste-options-icon.d.ts +27 -0
- package/dist/esm/doc-paste-options-icon.js +83 -0
- package/dist/esm/index.d.ts +3 -0
- package/dist/esm/index.js +4 -1
- package/dist/esm/paragraph-setting-icon.d.ts +27 -0
- package/dist/esm/paragraph-setting-icon.js +68 -0
- package/dist/esm/section-setting-icon.d.ts +27 -0
- package/dist/esm/section-setting-icon.js +77 -0
- package/package.json +7 -7
|
@@ -0,0 +1,88 @@
|
|
|
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/doc-paste-options-icon.ts
|
|
8
|
+
const element = {
|
|
9
|
+
"tag": "svg",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
12
|
+
"fill": "none",
|
|
13
|
+
"viewBox": "0 0 16 16",
|
|
14
|
+
"width": "1em",
|
|
15
|
+
"height": "1em"
|
|
16
|
+
},
|
|
17
|
+
"children": [
|
|
18
|
+
{
|
|
19
|
+
"tag": "path",
|
|
20
|
+
"attrs": {
|
|
21
|
+
"stroke": "currentColor",
|
|
22
|
+
"stroke-linecap": "round",
|
|
23
|
+
"stroke-linejoin": "round",
|
|
24
|
+
"stroke-width": 1.33,
|
|
25
|
+
"d": "M4.5 2.75H3.25C2.56 2.75 2 3.31 2 4V12.75C2 13.44 2.56 14 3.25 14H5.5M8.5 2.75H9.75C10.44 2.75 11 3.31 11 4V5"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"tag": "rect",
|
|
30
|
+
"attrs": {
|
|
31
|
+
"width": 4,
|
|
32
|
+
"height": 2.5,
|
|
33
|
+
"x": 4.5,
|
|
34
|
+
"y": 1.5,
|
|
35
|
+
"stroke": "currentColor",
|
|
36
|
+
"stroke-width": 1.33,
|
|
37
|
+
"rx": .75
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"tag": "rect",
|
|
42
|
+
"attrs": {
|
|
43
|
+
"width": 7,
|
|
44
|
+
"height": 7,
|
|
45
|
+
"x": 7.5,
|
|
46
|
+
"y": 7,
|
|
47
|
+
"stroke": "currentColor",
|
|
48
|
+
"stroke-width": 1.33,
|
|
49
|
+
"rx": 1.25
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"tag": "path",
|
|
54
|
+
"attrs": {
|
|
55
|
+
"stroke": "currentColor",
|
|
56
|
+
"stroke-linecap": "round",
|
|
57
|
+
"stroke-width": 1.33,
|
|
58
|
+
"d": "M9.25 9.25H12.75M9.25 11.75H12.75M10.25 8.5V10M11.75 11V12.5"
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
]
|
|
62
|
+
};
|
|
63
|
+
const DocPasteOptionsIcon = (0, vue.defineComponent)({
|
|
64
|
+
name: "DocPasteOptionsIcon",
|
|
65
|
+
inheritAttrs: false,
|
|
66
|
+
props: {
|
|
67
|
+
preserveStrokeWidth: {
|
|
68
|
+
type: Boolean,
|
|
69
|
+
default: false
|
|
70
|
+
},
|
|
71
|
+
extend: {
|
|
72
|
+
type: Object,
|
|
73
|
+
default: void 0
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
setup(props, { attrs }) {
|
|
77
|
+
return () => (0, vue.h)(ts_base_js.IconBase, {
|
|
78
|
+
...attrs,
|
|
79
|
+
preserveStrokeWidth: props.preserveStrokeWidth,
|
|
80
|
+
extend: props.extend,
|
|
81
|
+
id: "doc-paste-options-icon",
|
|
82
|
+
icon: element
|
|
83
|
+
});
|
|
84
|
+
}
|
|
85
|
+
});
|
|
86
|
+
//#endregion
|
|
87
|
+
exports.DocPasteOptionsIcon = DocPasteOptionsIcon;
|
|
88
|
+
exports.default = DocPasteOptionsIcon;
|
package/dist/cjs/index.cjs
CHANGED
|
@@ -108,6 +108,7 @@ let ts_delete_note_icon_js = require("./delete-note-icon.cjs");
|
|
|
108
108
|
let ts_descending_icon_js = require("./descending-icon.cjs");
|
|
109
109
|
let ts_direct_export_icon_js = require("./direct-export-icon.cjs");
|
|
110
110
|
let ts_divider_icon_js = require("./divider-icon.cjs");
|
|
111
|
+
let ts_doc_paste_options_icon_js = require("./doc-paste-options-icon.cjs");
|
|
111
112
|
let ts_doc_setting_icon_js = require("./doc-setting-icon.cjs");
|
|
112
113
|
let ts_docs_app_icon_js = require("./docs-app-icon.cjs");
|
|
113
114
|
let ts_dollar_icon_js = require("./dollar-icon.cjs");
|
|
@@ -237,6 +238,7 @@ let ts_one_to_one_icon_js = require("./one-to-one-icon.cjs");
|
|
|
237
238
|
let ts_order_icon_js = require("./order-icon.cjs");
|
|
238
239
|
let ts_overflow_icon_js = require("./overflow-icon.cjs");
|
|
239
240
|
let ts_paint_icon_js = require("./paint-icon.cjs");
|
|
241
|
+
let ts_paragraph_setting_icon_js = require("./paragraph-setting-icon.cjs");
|
|
240
242
|
let ts_pdf_app_icon_js = require("./pdf-app-icon.cjs");
|
|
241
243
|
let ts_pdf_highlight_icon_js = require("./pdf-highlight-icon.cjs");
|
|
242
244
|
let ts_pen_icon_js = require("./pen-icon.cjs");
|
|
@@ -284,6 +286,7 @@ let ts_rupiah_icon_js = require("./rupiah-icon.cjs");
|
|
|
284
286
|
let ts_sankey_icon_js = require("./sankey-icon.cjs");
|
|
285
287
|
let ts_scatter_chart_icon_js = require("./scatter-chart-icon.cjs");
|
|
286
288
|
let ts_search_icon_js = require("./search-icon.cjs");
|
|
289
|
+
let ts_section_setting_icon_js = require("./section-setting-icon.cjs");
|
|
287
290
|
let ts_select_range_icon_js = require("./select-range-icon.cjs");
|
|
288
291
|
let ts_sequence_activation_bar_icon_js = require("./sequence-activation-bar-icon.cjs");
|
|
289
292
|
let ts_sequence_actor_lifeline_icon_js = require("./sequence-actor-lifeline-icon.cjs");
|
|
@@ -1454,6 +1457,12 @@ Object.defineProperty(exports, "DividerIcon", {
|
|
|
1454
1457
|
return ts_divider_icon_js.DividerIcon;
|
|
1455
1458
|
}
|
|
1456
1459
|
});
|
|
1460
|
+
Object.defineProperty(exports, "DocPasteOptionsIcon", {
|
|
1461
|
+
enumerable: true,
|
|
1462
|
+
get: function() {
|
|
1463
|
+
return ts_doc_paste_options_icon_js.DocPasteOptionsIcon;
|
|
1464
|
+
}
|
|
1465
|
+
});
|
|
1457
1466
|
Object.defineProperty(exports, "DocSettingIcon", {
|
|
1458
1467
|
enumerable: true,
|
|
1459
1468
|
get: function() {
|
|
@@ -2390,6 +2399,12 @@ Object.defineProperty(exports, "PaintIcon", {
|
|
|
2390
2399
|
return ts_paint_icon_js.PaintIcon;
|
|
2391
2400
|
}
|
|
2392
2401
|
});
|
|
2402
|
+
Object.defineProperty(exports, "ParagraphSettingIcon", {
|
|
2403
|
+
enumerable: true,
|
|
2404
|
+
get: function() {
|
|
2405
|
+
return ts_paragraph_setting_icon_js.ParagraphSettingIcon;
|
|
2406
|
+
}
|
|
2407
|
+
});
|
|
2393
2408
|
Object.defineProperty(exports, "PasteSpecialDoubleIcon", {
|
|
2394
2409
|
enumerable: true,
|
|
2395
2410
|
get: function() {
|
|
@@ -2744,6 +2759,12 @@ Object.defineProperty(exports, "SearchIcon", {
|
|
|
2744
2759
|
return ts_search_icon_js.SearchIcon;
|
|
2745
2760
|
}
|
|
2746
2761
|
});
|
|
2762
|
+
Object.defineProperty(exports, "SectionSettingIcon", {
|
|
2763
|
+
enumerable: true,
|
|
2764
|
+
get: function() {
|
|
2765
|
+
return ts_section_setting_icon_js.SectionSettingIcon;
|
|
2766
|
+
}
|
|
2767
|
+
});
|
|
2747
2768
|
Object.defineProperty(exports, "SelectRangeIcon", {
|
|
2748
2769
|
enumerable: true,
|
|
2749
2770
|
get: function() {
|
|
@@ -0,0 +1,73 @@
|
|
|
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/paragraph-setting-icon.ts
|
|
8
|
+
const element = {
|
|
9
|
+
"tag": "svg",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
12
|
+
"fill": "none",
|
|
13
|
+
"viewBox": "0 0 16 16",
|
|
14
|
+
"width": "1em",
|
|
15
|
+
"height": "1em"
|
|
16
|
+
},
|
|
17
|
+
"children": [
|
|
18
|
+
{
|
|
19
|
+
"tag": "path",
|
|
20
|
+
"attrs": {
|
|
21
|
+
"stroke": "currentColor",
|
|
22
|
+
"stroke-linecap": "round",
|
|
23
|
+
"stroke-linejoin": "round",
|
|
24
|
+
"stroke-width": 1.3,
|
|
25
|
+
"d": "M7.5 2H4.5C2.84315 2 1.5 3.34315 1.5 5C1.5 6.65685 2.84315 8 4.5 8H5M5 2V13.5M7.5 2V13.5"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"tag": "path",
|
|
30
|
+
"attrs": {
|
|
31
|
+
"stroke": "currentColor",
|
|
32
|
+
"stroke-linejoin": "round",
|
|
33
|
+
"stroke-width": 1.3,
|
|
34
|
+
"d": "M10.8 9H12.7L14.5 11.5L12.7 14H10.8L9 11.5L10.8 9Z"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"tag": "path",
|
|
39
|
+
"attrs": {
|
|
40
|
+
"stroke": "currentColor",
|
|
41
|
+
"stroke-linecap": "round",
|
|
42
|
+
"stroke-width": 1.8,
|
|
43
|
+
"d": "M11.75 11.5H11.7501"
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
]
|
|
47
|
+
};
|
|
48
|
+
const ParagraphSettingIcon = (0, vue.defineComponent)({
|
|
49
|
+
name: "ParagraphSettingIcon",
|
|
50
|
+
inheritAttrs: false,
|
|
51
|
+
props: {
|
|
52
|
+
preserveStrokeWidth: {
|
|
53
|
+
type: Boolean,
|
|
54
|
+
default: false
|
|
55
|
+
},
|
|
56
|
+
extend: {
|
|
57
|
+
type: Object,
|
|
58
|
+
default: void 0
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
setup(props, { attrs }) {
|
|
62
|
+
return () => (0, vue.h)(ts_base_js.IconBase, {
|
|
63
|
+
...attrs,
|
|
64
|
+
preserveStrokeWidth: props.preserveStrokeWidth,
|
|
65
|
+
extend: props.extend,
|
|
66
|
+
id: "paragraph-setting-icon",
|
|
67
|
+
icon: element
|
|
68
|
+
});
|
|
69
|
+
}
|
|
70
|
+
});
|
|
71
|
+
//#endregion
|
|
72
|
+
exports.ParagraphSettingIcon = ParagraphSettingIcon;
|
|
73
|
+
exports.default = ParagraphSettingIcon;
|
|
@@ -0,0 +1,82 @@
|
|
|
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/section-setting-icon.ts
|
|
8
|
+
const element = {
|
|
9
|
+
"tag": "svg",
|
|
10
|
+
"attrs": {
|
|
11
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
12
|
+
"fill": "none",
|
|
13
|
+
"viewBox": "0 0 16 16",
|
|
14
|
+
"width": "1em",
|
|
15
|
+
"height": "1em"
|
|
16
|
+
},
|
|
17
|
+
"children": [
|
|
18
|
+
{
|
|
19
|
+
"tag": "path",
|
|
20
|
+
"attrs": {
|
|
21
|
+
"stroke": "currentColor",
|
|
22
|
+
"stroke-linecap": "round",
|
|
23
|
+
"stroke-linejoin": "round",
|
|
24
|
+
"stroke-width": 1.3,
|
|
25
|
+
"d": "M6.5 14H3.5C2.67157 14 2 13.3284 2 12.5V3C2 2.17157 2.67157 1.5 3.5 1.5H11C11.8284 1.5 12.5 2.17157 12.5 3V6.5"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"tag": "path",
|
|
30
|
+
"attrs": {
|
|
31
|
+
"stroke": "currentColor",
|
|
32
|
+
"stroke-linecap": "round",
|
|
33
|
+
"stroke-width": 1.3,
|
|
34
|
+
"d": "M4.5 4H10M4.5 10H6.5M2 7H3M5.25 7H6.25M8.5 7H9.5M11.75 7H12.5"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"tag": "path",
|
|
39
|
+
"attrs": {
|
|
40
|
+
"stroke": "currentColor",
|
|
41
|
+
"stroke-linejoin": "round",
|
|
42
|
+
"stroke-width": 1.3,
|
|
43
|
+
"d": "M10.8 9H12.7L14.5 11.5L12.7 14H10.8L9 11.5L10.8 9Z"
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"tag": "path",
|
|
48
|
+
"attrs": {
|
|
49
|
+
"stroke": "currentColor",
|
|
50
|
+
"stroke-linecap": "round",
|
|
51
|
+
"stroke-width": 1.8,
|
|
52
|
+
"d": "M11.75 11.5H11.7501"
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
]
|
|
56
|
+
};
|
|
57
|
+
const SectionSettingIcon = (0, vue.defineComponent)({
|
|
58
|
+
name: "SectionSettingIcon",
|
|
59
|
+
inheritAttrs: false,
|
|
60
|
+
props: {
|
|
61
|
+
preserveStrokeWidth: {
|
|
62
|
+
type: Boolean,
|
|
63
|
+
default: false
|
|
64
|
+
},
|
|
65
|
+
extend: {
|
|
66
|
+
type: Object,
|
|
67
|
+
default: void 0
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
setup(props, { attrs }) {
|
|
71
|
+
return () => (0, vue.h)(ts_base_js.IconBase, {
|
|
72
|
+
...attrs,
|
|
73
|
+
preserveStrokeWidth: props.preserveStrokeWidth,
|
|
74
|
+
extend: props.extend,
|
|
75
|
+
id: "section-setting-icon",
|
|
76
|
+
icon: element
|
|
77
|
+
});
|
|
78
|
+
}
|
|
79
|
+
});
|
|
80
|
+
//#endregion
|
|
81
|
+
exports.SectionSettingIcon = SectionSettingIcon;
|
|
82
|
+
exports.default = SectionSettingIcon;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { PropType } from 'vue';
|
|
2
|
+
import type { IExtendProps } from './base.js';
|
|
3
|
+
export declare const DocPasteOptionsIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
preserveStrokeWidth: {
|
|
5
|
+
type: BooleanConstructor;
|
|
6
|
+
default: boolean;
|
|
7
|
+
};
|
|
8
|
+
extend: {
|
|
9
|
+
type: PropType<IExtendProps>;
|
|
10
|
+
default: undefined;
|
|
11
|
+
};
|
|
12
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
13
|
+
[key: string]: any;
|
|
14
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
+
preserveStrokeWidth: {
|
|
16
|
+
type: BooleanConstructor;
|
|
17
|
+
default: boolean;
|
|
18
|
+
};
|
|
19
|
+
extend: {
|
|
20
|
+
type: PropType<IExtendProps>;
|
|
21
|
+
default: undefined;
|
|
22
|
+
};
|
|
23
|
+
}>> & Readonly<{}>, {
|
|
24
|
+
preserveStrokeWidth: boolean;
|
|
25
|
+
extend: IExtendProps;
|
|
26
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
27
|
+
export default DocPasteOptionsIcon;
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/doc-paste-options-icon.ts
|
|
4
|
+
const element = {
|
|
5
|
+
"tag": "svg",
|
|
6
|
+
"attrs": {
|
|
7
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"viewBox": "0 0 16 16",
|
|
10
|
+
"width": "1em",
|
|
11
|
+
"height": "1em"
|
|
12
|
+
},
|
|
13
|
+
"children": [
|
|
14
|
+
{
|
|
15
|
+
"tag": "path",
|
|
16
|
+
"attrs": {
|
|
17
|
+
"stroke": "currentColor",
|
|
18
|
+
"stroke-linecap": "round",
|
|
19
|
+
"stroke-linejoin": "round",
|
|
20
|
+
"stroke-width": 1.33,
|
|
21
|
+
"d": "M4.5 2.75H3.25C2.56 2.75 2 3.31 2 4V12.75C2 13.44 2.56 14 3.25 14H5.5M8.5 2.75H9.75C10.44 2.75 11 3.31 11 4V5"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"tag": "rect",
|
|
26
|
+
"attrs": {
|
|
27
|
+
"width": 4,
|
|
28
|
+
"height": 2.5,
|
|
29
|
+
"x": 4.5,
|
|
30
|
+
"y": 1.5,
|
|
31
|
+
"stroke": "currentColor",
|
|
32
|
+
"stroke-width": 1.33,
|
|
33
|
+
"rx": .75
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"tag": "rect",
|
|
38
|
+
"attrs": {
|
|
39
|
+
"width": 7,
|
|
40
|
+
"height": 7,
|
|
41
|
+
"x": 7.5,
|
|
42
|
+
"y": 7,
|
|
43
|
+
"stroke": "currentColor",
|
|
44
|
+
"stroke-width": 1.33,
|
|
45
|
+
"rx": 1.25
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"tag": "path",
|
|
50
|
+
"attrs": {
|
|
51
|
+
"stroke": "currentColor",
|
|
52
|
+
"stroke-linecap": "round",
|
|
53
|
+
"stroke-width": 1.33,
|
|
54
|
+
"d": "M9.25 9.25H12.75M9.25 11.75H12.75M10.25 8.5V10M11.75 11V12.5"
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
]
|
|
58
|
+
};
|
|
59
|
+
const DocPasteOptionsIcon = defineComponent({
|
|
60
|
+
name: "DocPasteOptionsIcon",
|
|
61
|
+
inheritAttrs: false,
|
|
62
|
+
props: {
|
|
63
|
+
preserveStrokeWidth: {
|
|
64
|
+
type: Boolean,
|
|
65
|
+
default: false
|
|
66
|
+
},
|
|
67
|
+
extend: {
|
|
68
|
+
type: Object,
|
|
69
|
+
default: void 0
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
setup(props, { attrs }) {
|
|
73
|
+
return () => h(IconBase, {
|
|
74
|
+
...attrs,
|
|
75
|
+
preserveStrokeWidth: props.preserveStrokeWidth,
|
|
76
|
+
extend: props.extend,
|
|
77
|
+
id: "doc-paste-options-icon",
|
|
78
|
+
icon: element
|
|
79
|
+
});
|
|
80
|
+
}
|
|
81
|
+
});
|
|
82
|
+
//#endregion
|
|
83
|
+
export { DocPasteOptionsIcon, DocPasteOptionsIcon as default };
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -107,6 +107,7 @@ export { DeleteNoteIcon } from './delete-note-icon.js';
|
|
|
107
107
|
export { DescendingIcon } from './descending-icon.js';
|
|
108
108
|
export { DirectExportIcon } from './direct-export-icon.js';
|
|
109
109
|
export { DividerIcon } from './divider-icon.js';
|
|
110
|
+
export { DocPasteOptionsIcon } from './doc-paste-options-icon.js';
|
|
110
111
|
export { DocSettingIcon } from './doc-setting-icon.js';
|
|
111
112
|
export { DocsAppIcon } from './docs-app-icon.js';
|
|
112
113
|
export { DollarIcon } from './dollar-icon.js';
|
|
@@ -236,6 +237,7 @@ export { OneToOneIcon } from './one-to-one-icon.js';
|
|
|
236
237
|
export { OrderIcon } from './order-icon.js';
|
|
237
238
|
export { OverflowIcon } from './overflow-icon.js';
|
|
238
239
|
export { PaintIcon } from './paint-icon.js';
|
|
240
|
+
export { ParagraphSettingIcon } from './paragraph-setting-icon.js';
|
|
239
241
|
export { PdfAppIcon } from './pdf-app-icon.js';
|
|
240
242
|
export { PdfHighlightIcon } from './pdf-highlight-icon.js';
|
|
241
243
|
export { PenIcon } from './pen-icon.js';
|
|
@@ -283,6 +285,7 @@ export { RupiahIcon } from './rupiah-icon.js';
|
|
|
283
285
|
export { SankeyIcon } from './sankey-icon.js';
|
|
284
286
|
export { ScatterChartIcon } from './scatter-chart-icon.js';
|
|
285
287
|
export { SearchIcon } from './search-icon.js';
|
|
288
|
+
export { SectionSettingIcon } from './section-setting-icon.js';
|
|
286
289
|
export { SelectRangeIcon } from './select-range-icon.js';
|
|
287
290
|
export { SequenceActivationBarIcon } from './sequence-activation-bar-icon.js';
|
|
288
291
|
export { SequenceActorLifelineIcon } from './sequence-actor-lifeline-icon.js';
|
package/dist/esm/index.js
CHANGED
|
@@ -107,6 +107,7 @@ import { DeleteNoteIcon } from "./delete-note-icon.js";
|
|
|
107
107
|
import { DescendingIcon } from "./descending-icon.js";
|
|
108
108
|
import { DirectExportIcon } from "./direct-export-icon.js";
|
|
109
109
|
import { DividerIcon } from "./divider-icon.js";
|
|
110
|
+
import { DocPasteOptionsIcon } from "./doc-paste-options-icon.js";
|
|
110
111
|
import { DocSettingIcon } from "./doc-setting-icon.js";
|
|
111
112
|
import { DocsAppIcon } from "./docs-app-icon.js";
|
|
112
113
|
import { DollarIcon } from "./dollar-icon.js";
|
|
@@ -236,6 +237,7 @@ import { OneToOneIcon } from "./one-to-one-icon.js";
|
|
|
236
237
|
import { OrderIcon } from "./order-icon.js";
|
|
237
238
|
import { OverflowIcon } from "./overflow-icon.js";
|
|
238
239
|
import { PaintIcon } from "./paint-icon.js";
|
|
240
|
+
import { ParagraphSettingIcon } from "./paragraph-setting-icon.js";
|
|
239
241
|
import { PdfAppIcon } from "./pdf-app-icon.js";
|
|
240
242
|
import { PdfHighlightIcon } from "./pdf-highlight-icon.js";
|
|
241
243
|
import { PenIcon } from "./pen-icon.js";
|
|
@@ -283,6 +285,7 @@ import { RupiahIcon } from "./rupiah-icon.js";
|
|
|
283
285
|
import { SankeyIcon } from "./sankey-icon.js";
|
|
284
286
|
import { ScatterChartIcon } from "./scatter-chart-icon.js";
|
|
285
287
|
import { SearchIcon } from "./search-icon.js";
|
|
288
|
+
import { SectionSettingIcon } from "./section-setting-icon.js";
|
|
286
289
|
import { SelectRangeIcon } from "./select-range-icon.js";
|
|
287
290
|
import { SequenceActivationBarIcon } from "./sequence-activation-bar-icon.js";
|
|
288
291
|
import { SequenceActorLifelineIcon } from "./sequence-actor-lifeline-icon.js";
|
|
@@ -637,4 +640,4 @@ import { TodoListDoubleIcon } from "./todo-list-double-icon.js";
|
|
|
637
640
|
import { UpBorderDoubleIcon } from "./up-border-double-icon.js";
|
|
638
641
|
import { VerticalBorderDoubleIcon } from "./vertical-border-double-icon.js";
|
|
639
642
|
import { WarnDoubleIcon } from "./warn-double-icon.js";
|
|
640
|
-
export { AIcon, ActivityIcon, AddDigitsIcon, AddImageIcon, AddNoteIcon, AdditionAndSubtractionIcon, AdjustHeightDoubleIcon, AdjustWidthDoubleIcon, AiAssistantMultiIcon, AlignBottomIcon, AlignTextBothIcon, AlignTopIcon, AllBorderIcon, AmplifyIcon, AreaChartIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowTiltDownIcon, ArrowTiltUpIcon, ArrowUpIcon, AscendingIcon, AutoHeightDoubleIcon, AutoWidthDoubleIcon, AutofillDoubleIcon, AutowrapIcon, BackSlashDoubleIcon, BanIcon, BarChartIcon, BasesAppIcon, BasesMultiIcon, BoardsAppIcon, BoardsMultiIcon, BoldIcon, BottomIcon, BoxplotIcon, BrushIcon, BubbleIcon, CalendarIcon, CalloutIcon, CancelFreezeIcon, CancelMergeIcon, CandlestickChartIcon, CatalogueIcon, Cell0DoubleIcon, Cell100DoubleIcon, Cell25DoubleIcon, Cell50DoubleIcon, Cell75DoubleIcon, ChartIcon, CheckMarkIcon, CheckboxIcon, ChordChartIcon, ClassDiagramClassIcon, ClassDiagramDashedFilledArrowConnectorIcon, ClassDiagramDashedOpenArrowConnectorIcon, ClassDiagramFilledArrowConnectorIcon, ClassDiagramFilledDiamondConnectorIcon, ClassDiagramHollowDiamondConnectorIcon, ClassDiagramInterfaceIcon, ClearFormatDoubleIcon, ClockIcon, CloseIcon, CloudOutlineIcon, CodeBlockIcon, CodeIcon, ColorWheelMultiIcon, ColumnChartIcon, ColumnIcon, ColumnSparklineIcon, ComboChartIcon, CommentIcon, ComponentDiagramAssemblyConnectorIcon, ComponentDiagramComponentBoxIcon, ComponentDiagramComponentIcon, ComponentDiagramProvidedInterfaceIcon, ComponentDiagramRequiredInterfaceIcon, ConditionalColorIcon, ConditionsDoubleIcon, ConfigureTabIcon, ConnectionLineIcon, ConnectorBarCrowsFootMarkerIcon, ConnectorBarMarkerIcon, ConnectorCircleBarMarkerIcon, ConnectorCircleCrowsFootMarkerIcon, ConnectorCircleMarkerIcon, ConnectorCrossMarkerIcon, ConnectorCrowsFootMarkerIcon, ConnectorFilledArrowMarkerIcon, ConnectorFilledCircleMarkerIcon, ConnectorFilledDiamondMarkerIcon, ConnectorHollowDiamondMarkerIcon, ConnectorHollowTriangleMarkerIcon, ConnectorNoneMarkerIcon, ConnectorOpenArrowMarkerIcon, ConnectorRoundedElbowIcon, ConnectorSwapMarkersIcon, ConnectorXMarkerIcon, ConvertIcon, ConvertToNumberIcon, CopyDoubleIcon, CopyIcon, CorrectDoubleIcon, CreateCopyIcon, CropIcon, CrossHighlightingIcon, CrossIcon, CursorsIcon, CustomSortIcon, CutIcon, DataBarIcon, DataFlowCircleIcon, DataFlowDataStorage1Icon, DataFlowDataStorage2Icon, DataFlowDataStorage3Icon, DataFlowRoundedRectangleIcon, DataFlowRoundedSquareIcon, DataValidationIcon, DatabaseFunctionIcon, DatabaseIcon, DateFunctionIcon, DatePickerIcon, DeleteCellMoveDownDoubleIcon, DeleteCellShiftLeftDoubleIcon, DeleteCellShiftRightDoubleIcon, DeleteCellShiftUpDoubleIcon, DeleteColumnDoubleIcon, DeleteEmptyIcon, DeleteIcon, DeleteNoteIcon, DeleteRowDoubleIcon, DeleteTableDoubleIcon, DescendingIcon, DirectExportIcon, DissatisfiedDoubleIcon, DividerIcon, DocSettingIcon, DocsAppIcon, DocsMultiIcon, DollarIcon, DongIcon, DownBorderDoubleIcon, DownIcon, DownloadIcon, DownloadImageIcon, DropdownListIcon, EngineeringFunctionIcon, EntityRelationshipEntityIcon, EntityRelationshipFieldTypeIcon, EntityRelationshipFullIcon, EntityRelationshipKeyFieldIcon, ErrorIcon, EuroIcon, ExclamationIcon, ExpandAscendingIcon, ExpandDescendingIcon, ExpandIcon, ExponentialIcon, ExportIcon, EyeIcon, EyelashIcon, FeatureSearchIcon, FilterIcon, FinancialFunctionIcon, FirstTabIcon, FlagIcon, FlipHorizontalIcon, FlipVerticalIcon, FolderIcon, FontColorDoubleIcon, FontSizeIncreaseIcon, FontSizeReduceIcon, FoodsIcon, FormulaAccentIcon, FormulaBracketIcon, FormulaFractionIcon, FormulaFunctionIcon, FormulaIntegralIcon, FormulaLargeOperatorIcon, FormulaLimitLogarithmIcon, FormulaMatrixIcon, FormulaOperatorIcon, FormulaRadicalIcon, FormulaScriptIcon, FountainPenIcon, FreezeColumnIcon, FreezeRowIcon, FreezeToSelectedIcon, FunctionIcon, FunnelIcon, FxIcon, GaugeChartIcon, GraphIcon, GridIcon, GridOutlineIcon, GripHorizontalIcon, GripVerticalIcon, GroupIcon, GroupSparklineIcon, GroupingDoubleIcon, GuffawDoubleIcon, H1Icon, H2Icon, H3Icon, H4Icon, H5Icon, H6Icon, HandIcon, HeaderFooterIcon, HeatmapIcon, HelpIcon, HideDoubleIcon, HideGridlinesIcon, HideNoteIcon, HistogramChartIcon, HistoryIcon, HomeIcon, HorizontalBorderDoubleIcon, HorizontalMergeIcon, HorizontallyIcon, ImpatientDoubleIcon, ImportIcon, IncreaseIcon, IndicateDoubleIcon, InfoIcon, InformationFunctionIcon, InnerBorderDoubleIcon, InsertCellDownDoubleIcon, InsertCellShiftRightDoubleIcon, InsertCommentDoubleIcon, InsertDoubleIcon, InsertIcon, InsertLinkDoubleIcon, InsertRowAboveDoubleIcon, InsertRowBelowDoubleIcon, ItalicIcon, KeyboardIcon, LeftBorderDoubleIcon, LeftDoubleDiagonalDoubleIcon, LeftInsertColumnDoubleIcon, LeftJustifyingIcon, LeftRotationFortyFiveDegreesIcon, LeftRotationNinetyDegreesIcon, LeftTridiagonalDoubleIcon, LineChartIcon, LineDashedNoneIcon, LineDoubleOpenArrowIcon, LineIndentDecreaseIcon, LineIndentIncreaseIcon, LineNoneIcon, LineOpenArrowIcon, LineSparklineIcon, LinearIcon, LinkIcon, LiveShareIcon, LoadingMultiIcon, LocateFixedIcon, LockIcon, LogarithmicIcon, LogicalFunctionIcon, LookupFunctionIcon, MathFunctionIcon, MenuIcon, MergeAllIcon, MermaidDiagramIcon, MindMapIcon, MistakeDoubleIcon, MoreDownIcon, MoreHorizontalIcon, MoreLeftIcon, MoreRightIcon, MoreUpIcon, MoreVerticalIcon, MoveDownIcon, MoveUpIcon, MovingAverageIcon, NatureIcon, NoBorderIcon, NoColorDoubleIcon, NoRotationIcon, NoninductiveDoubleIcon, NumberIcon, ObjectLayersIcon, ObjectsIcon, OffLineIcon, OnLineIcon, OneToOneIcon, OrderIcon, OuterBorderDoubleIcon, OverflowIcon, PaintBucketDoubleIcon, PaintIcon, PasteSpecialDoubleIcon, PdfAppIcon, PdfHighlightIcon, PdfMultiIcon, PenIcon, PeopleIcon, PercentIcon, PieChartIcon, PipingIcon, PivotTableIcon, PlacesIcon, PointColorDoubleIcon, PolynomialIcon, PowerLineIcon, PreciseSelectionIcon, PrintIcon, Progress0DoubleIcon, Progress100DoubleIcon, Progress25DoubleIcon, Progress50DoubleIcon, Progress75DoubleIcon, ProtectIcon, QuickAddIcon, QuoteIcon, RadarChartIcon, RandomIcon, RatingIcon, RecentIcon, RecordIcon, RedoIcon, ReduceDigitsIcon, ReduceDoubleIcon, ReduceIcon, RelationshipIcon, RenameIcon, ReplyToCommentIcon, ResourcesIcon, RestoreIcon, RhomboidIcon, RialIcon, RightBorderDoubleIcon, RightDoubleDiagonalDoubleIcon, RightInsertColumnDoubleIcon, RightJustifyingIcon, RightRotationFortyFiveDegreesIcon, RightRotationNinetyDegreesIcon, RmbIcon, RoubleIcon, RoundnessIcon, RowHeightExtraTallIcon, RowHeightMediumIcon, RowHeightShortIcon, RowHeightTallIcon, RowIcon, RulerIcon, RupiahIcon, SankeyIcon, ScatterChartIcon, SearchIcon, SelectRangeIcon, SequenceActivationBarIcon, SequenceActorLifelineIcon, SequenceAlternativeFragmentIcon, SequenceBoundaryLifelineIcon, SequenceCollectionLifelineIcon, SequenceControlLifelineIcon, SequenceDirectAccessStorageLifelineIcon, SequenceEntityLifelineIcon, SequenceFragmentIcon, SequenceMagneticDiskLifelineIcon, SequenceObjectLifelineIcon, ShapeAccentBorderCallout1Icon, ShapeAccentBorderCallout2Icon, ShapeAccentBorderCallout3Icon, ShapeAccentCallout1Icon, ShapeAccentCallout2Icon, ShapeAccentCallout3Icon, ShapeActionButtonBackPreviousIcon, ShapeActionButtonBeginningIcon, ShapeActionButtonBlankIcon, ShapeActionButtonDocumentIcon, ShapeActionButtonEndIcon, ShapeActionButtonForwardNextIcon, ShapeActionButtonHelpIcon, ShapeActionButtonHomeIcon, ShapeActionButtonInformationIcon, ShapeActionButtonMovieIcon, ShapeActionButtonReturnIcon, ShapeActionButtonSoundIcon, ShapeArcIcon, ShapeBackgroundColorDoubleIcon, ShapeBentArrowIcon, ShapeBentConnector3Arrow1Icon, ShapeBentConnector3Arrow2Icon, ShapeBentConnector3Icon, ShapeBentUpArrowIcon, ShapeBevelIcon, ShapeBlockArcIcon, ShapeBorderCallout1Icon, ShapeBorderCallout2Icon, ShapeBorderCallout3Icon, ShapeBracePairIcon, ShapeBracketPairIcon, ShapeCallout1Icon, ShapeCallout2Icon, ShapeCallout3Icon, ShapeCanIcon, ShapeChartPlusIcon, ShapeChartStarIcon, ShapeChartXIcon, ShapeChevronIcon, ShapeChordIcon, ShapeCircularArrowIcon, ShapeCloudCalloutIcon, ShapeCloudIcon, ShapeCornerIcon, ShapeCornerTabsIcon, ShapeCubeIcon, ShapeCurvedConnector3Arrow1Icon, ShapeCurvedConnector3Arrow2Icon, ShapeCurvedConnector3Icon, ShapeCurvedDownArrowIcon, ShapeCurvedLeftArrowIcon, ShapeCurvedRightArrowIcon, ShapeCurvedUpArrowIcon, ShapeDecagonIcon, ShapeDiagStripeIcon, ShapeDiamondIcon, ShapeDodecagonIcon, ShapeDonutIcon, ShapeDoubleWaveIcon, ShapeDownArrowCalloutIcon, ShapeDownArrowIcon, ShapeEllipseIcon, ShapeEllipseRibbon2Icon, ShapeEllipseRibbonIcon, ShapeFlowChartAlternateProcessIcon, ShapeFlowChartCollateIcon, ShapeFlowChartConnectorIcon, ShapeFlowChartDecisionIcon, ShapeFlowChartDelayIcon, ShapeFlowChartDisplayIcon, ShapeFlowChartDocumentIcon, ShapeFlowChartExtractIcon, ShapeFlowChartInputOutputIcon, ShapeFlowChartInternalStorageIcon, ShapeFlowChartMagneticDiskIcon, ShapeFlowChartMagneticDrumIcon, ShapeFlowChartMagneticTapeIcon, ShapeFlowChartManualInputIcon, ShapeFlowChartManualOperationIcon, ShapeFlowChartMergeIcon, ShapeFlowChartMultidocumentIcon, ShapeFlowChartOfflineStorageIcon, ShapeFlowChartOffpageConnectorIcon, ShapeFlowChartOnlineStorageIcon, ShapeFlowChartOrIcon, ShapeFlowChartPredefinedProcessIcon, ShapeFlowChartPreparationIcon, ShapeFlowChartProcessIcon, ShapeFlowChartPunchedCardIcon, ShapeFlowChartPunchedTapeIcon, ShapeFlowChartSortIcon, ShapeFlowChartSummingJunctionIcon, ShapeFlowChartTerminatorIcon, ShapeFolderCornerIcon, ShapeFormatSettingIcon, ShapeFrameIcon, ShapeFunnelIcon, ShapeGear6Icon, ShapeGear9Icon, ShapeHalfFrameIcon, ShapeHeartIcon, ShapeHeptagonIcon, ShapeHexagonIcon, ShapeHomePlateIcon, ShapeHorizontalScrollIcon, ShapeIcon, ShapeIrregularSeal1Icon, ShapeIrregularSeal2Icon, ShapeLeftArrowCalloutIcon, ShapeLeftArrowIcon, ShapeLeftBraceIcon, ShapeLeftBracketIcon, ShapeLeftCircularArrowIcon, ShapeLeftRightArrowCalloutIcon, ShapeLeftRightArrowIcon, ShapeLeftRightCircularArrowIcon, ShapeLeftRightRibbonIcon, ShapeLeftRightUpArrowIcon, ShapeLeftUpArrowIcon, ShapeLightningBoltIcon, ShapeLineIcon, ShapeLineInvIcon, ShapeMathDivideIcon, ShapeMathEqualIcon, ShapeMathMinusIcon, ShapeMathMultiplyIcon, ShapeMathNotEqualIcon, ShapeMathPlusIcon, ShapeMoonIcon, ShapeNoSmokingIcon, ShapeNonIsoscelesTrapezoidIcon, ShapeNotchedRightArrowIcon, ShapeOctagonIcon, ShapeParallelogramIcon, ShapePentagonIcon, ShapePieIcon, ShapePieWedgeIcon, ShapePlaqueIcon, ShapePlaqueTabsIcon, ShapePlusIcon, ShapeQuadArrowCalloutIcon, ShapeQuadArrowIcon, ShapeRectIcon, ShapeRectTextboxHorizontalIcon, ShapeRectTextboxVerticalIcon, ShapeRibbon2Icon, ShapeRibbonIcon, ShapeRightArrowCalloutIcon, ShapeRightArrowIcon, ShapeRightBraceIcon, ShapeRightBracketIcon, ShapeRound1RectIcon, ShapeRound2DiagRectIcon, ShapeRound2SameRectIcon, ShapeRoundRectIcon, ShapeRtTriangleIcon, ShapeSmileyFaceIcon, ShapeSnip1RectIcon, ShapeSnip2DiagRectIcon, ShapeSnip2SameRectIcon, ShapeSnipRoundRectIcon, ShapeSquareTabsIcon, ShapeStar10Icon, ShapeStar12Icon, ShapeStar16Icon, ShapeStar24Icon, ShapeStar32Icon, ShapeStar4Icon, ShapeStar5Icon, ShapeStar6Icon, ShapeStar7Icon, ShapeStar8Icon, ShapeStraightConnector1Icon, ShapeStraightConnector2Icon, ShapeStripedRightArrowIcon, ShapeStrokeColorDoubleIcon, ShapeSunIcon, ShapeSwooshArrowIcon, ShapeTeardropIcon, ShapeTrapezoidIcon, ShapeTriangleIcon, ShapeUpArrowCalloutIcon, ShapeUpArrowIcon, ShapeUpDownArrowCalloutIcon, ShapeUpDownArrowIcon, ShapeUturnArrowIcon, ShapeVerticalScrollIcon, ShapeWaveIcon, ShapeWedgeEllipseCalloutIcon, ShapeWedgeRectCalloutIcon, ShapeWedgeRoundRectCalloutIcon, ShareIcon, ShareRangeIcon, SheetIcon, SheetsAppIcon, SheetsMultiIcon, ShortcutIcon, ShowDimensionsIcon, ShowToolbarIcon, ShrinkIcon, ShrinkToFitIcon, Signal0DoubleIcon, Signal100DoubleIcon, Signal25DoubleIcon, Signal50DoubleIcon, Signal75DoubleIcon, SlashDoubleIcon, SlidesAppIcon, SlidesMultiIcon, SlideshowPlayIcon, SlideshowThemeIcon, SmartArtIcon, SmileDoubleIcon, SmileIcon, StarEmptyDoubleIcon, StarFullDoubleIcon, StarIncompleteDoubleIcon, StatisticalFunctionIcon, StatusDiagramFinalStateIcon, StatusDiagramInitialStateIcon, StatusDiagramStateBarIcon, StickyNoteIcon, StrikethroughIcon, StrokeSize1Icon, StrokeSize2Icon, StrokeSize3Icon, StrokeSize4Icon, StrokeSize5Icon, SubscriptIcon, SuccessIcon, SuccessOutlineIcon, SunburstChartIcon, SuperscriptIcon, SymbolsIcon, TableBorderStyleDashedIcon, TableBorderStyleDottedIcon, TableBorderStyleIcon, TableBorderStyleSolidIcon, TableBorderWidthIcon, TableIcon, TextFunctionIcon, TextIcon, TextTypeIcon, TextWrapShapeIcon, TodoListDoubleIcon, TopmostIcon, TransitionsIcon, TreemapChartIcon, TriangleIcon, TruncationIcon, TypographyIcon, UnderlineIcon, UndoIcon, UngroupIcon, UngroupSparklineIcon, UniverCliIcon, UniverSdkMultiIcon, UnlinkIcon, UnlockIcon, UnorderIcon, UpBorderDoubleIcon, UpIcon, VerticalBorderDoubleIcon, VerticalCenterIcon, VerticalIntegrationIcon, VerticalTextIcon, WarnDoubleIcon, WarningIcon, WaterfallChartIcon, WinlossSparklineIcon, WonIcon, WriteIcon, ZlotyIcon, ZoomInIcon, ZoomOutIcon };
|
|
643
|
+
export { AIcon, ActivityIcon, AddDigitsIcon, AddImageIcon, AddNoteIcon, AdditionAndSubtractionIcon, AdjustHeightDoubleIcon, AdjustWidthDoubleIcon, AiAssistantMultiIcon, AlignBottomIcon, AlignTextBothIcon, AlignTopIcon, AllBorderIcon, AmplifyIcon, AreaChartIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowTiltDownIcon, ArrowTiltUpIcon, ArrowUpIcon, AscendingIcon, AutoHeightDoubleIcon, AutoWidthDoubleIcon, AutofillDoubleIcon, AutowrapIcon, BackSlashDoubleIcon, BanIcon, BarChartIcon, BasesAppIcon, BasesMultiIcon, BoardsAppIcon, BoardsMultiIcon, BoldIcon, BottomIcon, BoxplotIcon, BrushIcon, BubbleIcon, CalendarIcon, CalloutIcon, CancelFreezeIcon, CancelMergeIcon, CandlestickChartIcon, CatalogueIcon, Cell0DoubleIcon, Cell100DoubleIcon, Cell25DoubleIcon, Cell50DoubleIcon, Cell75DoubleIcon, ChartIcon, CheckMarkIcon, CheckboxIcon, ChordChartIcon, ClassDiagramClassIcon, ClassDiagramDashedFilledArrowConnectorIcon, ClassDiagramDashedOpenArrowConnectorIcon, ClassDiagramFilledArrowConnectorIcon, ClassDiagramFilledDiamondConnectorIcon, ClassDiagramHollowDiamondConnectorIcon, ClassDiagramInterfaceIcon, ClearFormatDoubleIcon, ClockIcon, CloseIcon, CloudOutlineIcon, CodeBlockIcon, CodeIcon, ColorWheelMultiIcon, ColumnChartIcon, ColumnIcon, ColumnSparklineIcon, ComboChartIcon, CommentIcon, ComponentDiagramAssemblyConnectorIcon, ComponentDiagramComponentBoxIcon, ComponentDiagramComponentIcon, ComponentDiagramProvidedInterfaceIcon, ComponentDiagramRequiredInterfaceIcon, ConditionalColorIcon, ConditionsDoubleIcon, ConfigureTabIcon, ConnectionLineIcon, ConnectorBarCrowsFootMarkerIcon, ConnectorBarMarkerIcon, ConnectorCircleBarMarkerIcon, ConnectorCircleCrowsFootMarkerIcon, ConnectorCircleMarkerIcon, ConnectorCrossMarkerIcon, ConnectorCrowsFootMarkerIcon, ConnectorFilledArrowMarkerIcon, ConnectorFilledCircleMarkerIcon, ConnectorFilledDiamondMarkerIcon, ConnectorHollowDiamondMarkerIcon, ConnectorHollowTriangleMarkerIcon, ConnectorNoneMarkerIcon, ConnectorOpenArrowMarkerIcon, ConnectorRoundedElbowIcon, ConnectorSwapMarkersIcon, ConnectorXMarkerIcon, ConvertIcon, ConvertToNumberIcon, CopyDoubleIcon, CopyIcon, CorrectDoubleIcon, CreateCopyIcon, CropIcon, CrossHighlightingIcon, CrossIcon, CursorsIcon, CustomSortIcon, CutIcon, DataBarIcon, DataFlowCircleIcon, DataFlowDataStorage1Icon, DataFlowDataStorage2Icon, DataFlowDataStorage3Icon, DataFlowRoundedRectangleIcon, DataFlowRoundedSquareIcon, DataValidationIcon, DatabaseFunctionIcon, DatabaseIcon, DateFunctionIcon, DatePickerIcon, DeleteCellMoveDownDoubleIcon, DeleteCellShiftLeftDoubleIcon, DeleteCellShiftRightDoubleIcon, DeleteCellShiftUpDoubleIcon, DeleteColumnDoubleIcon, DeleteEmptyIcon, DeleteIcon, DeleteNoteIcon, DeleteRowDoubleIcon, DeleteTableDoubleIcon, DescendingIcon, DirectExportIcon, DissatisfiedDoubleIcon, DividerIcon, DocPasteOptionsIcon, DocSettingIcon, DocsAppIcon, DocsMultiIcon, DollarIcon, DongIcon, DownBorderDoubleIcon, DownIcon, DownloadIcon, DownloadImageIcon, DropdownListIcon, EngineeringFunctionIcon, EntityRelationshipEntityIcon, EntityRelationshipFieldTypeIcon, EntityRelationshipFullIcon, EntityRelationshipKeyFieldIcon, ErrorIcon, EuroIcon, ExclamationIcon, ExpandAscendingIcon, ExpandDescendingIcon, ExpandIcon, ExponentialIcon, ExportIcon, EyeIcon, EyelashIcon, FeatureSearchIcon, FilterIcon, FinancialFunctionIcon, FirstTabIcon, FlagIcon, FlipHorizontalIcon, FlipVerticalIcon, FolderIcon, FontColorDoubleIcon, FontSizeIncreaseIcon, FontSizeReduceIcon, FoodsIcon, FormulaAccentIcon, FormulaBracketIcon, FormulaFractionIcon, FormulaFunctionIcon, FormulaIntegralIcon, FormulaLargeOperatorIcon, FormulaLimitLogarithmIcon, FormulaMatrixIcon, FormulaOperatorIcon, FormulaRadicalIcon, FormulaScriptIcon, FountainPenIcon, FreezeColumnIcon, FreezeRowIcon, FreezeToSelectedIcon, FunctionIcon, FunnelIcon, FxIcon, GaugeChartIcon, GraphIcon, GridIcon, GridOutlineIcon, GripHorizontalIcon, GripVerticalIcon, GroupIcon, GroupSparklineIcon, GroupingDoubleIcon, GuffawDoubleIcon, H1Icon, H2Icon, H3Icon, H4Icon, H5Icon, H6Icon, HandIcon, HeaderFooterIcon, HeatmapIcon, HelpIcon, HideDoubleIcon, HideGridlinesIcon, HideNoteIcon, HistogramChartIcon, HistoryIcon, HomeIcon, HorizontalBorderDoubleIcon, HorizontalMergeIcon, HorizontallyIcon, ImpatientDoubleIcon, ImportIcon, IncreaseIcon, IndicateDoubleIcon, InfoIcon, InformationFunctionIcon, InnerBorderDoubleIcon, InsertCellDownDoubleIcon, InsertCellShiftRightDoubleIcon, InsertCommentDoubleIcon, InsertDoubleIcon, InsertIcon, InsertLinkDoubleIcon, InsertRowAboveDoubleIcon, InsertRowBelowDoubleIcon, ItalicIcon, KeyboardIcon, LeftBorderDoubleIcon, LeftDoubleDiagonalDoubleIcon, LeftInsertColumnDoubleIcon, LeftJustifyingIcon, LeftRotationFortyFiveDegreesIcon, LeftRotationNinetyDegreesIcon, LeftTridiagonalDoubleIcon, LineChartIcon, LineDashedNoneIcon, LineDoubleOpenArrowIcon, LineIndentDecreaseIcon, LineIndentIncreaseIcon, LineNoneIcon, LineOpenArrowIcon, LineSparklineIcon, LinearIcon, LinkIcon, LiveShareIcon, LoadingMultiIcon, LocateFixedIcon, LockIcon, LogarithmicIcon, LogicalFunctionIcon, LookupFunctionIcon, MathFunctionIcon, MenuIcon, MergeAllIcon, MermaidDiagramIcon, MindMapIcon, MistakeDoubleIcon, MoreDownIcon, MoreHorizontalIcon, MoreLeftIcon, MoreRightIcon, MoreUpIcon, MoreVerticalIcon, MoveDownIcon, MoveUpIcon, MovingAverageIcon, NatureIcon, NoBorderIcon, NoColorDoubleIcon, NoRotationIcon, NoninductiveDoubleIcon, NumberIcon, ObjectLayersIcon, ObjectsIcon, OffLineIcon, OnLineIcon, OneToOneIcon, OrderIcon, OuterBorderDoubleIcon, OverflowIcon, PaintBucketDoubleIcon, PaintIcon, ParagraphSettingIcon, PasteSpecialDoubleIcon, PdfAppIcon, PdfHighlightIcon, PdfMultiIcon, PenIcon, PeopleIcon, PercentIcon, PieChartIcon, PipingIcon, PivotTableIcon, PlacesIcon, PointColorDoubleIcon, PolynomialIcon, PowerLineIcon, PreciseSelectionIcon, PrintIcon, Progress0DoubleIcon, Progress100DoubleIcon, Progress25DoubleIcon, Progress50DoubleIcon, Progress75DoubleIcon, ProtectIcon, QuickAddIcon, QuoteIcon, RadarChartIcon, RandomIcon, RatingIcon, RecentIcon, RecordIcon, RedoIcon, ReduceDigitsIcon, ReduceDoubleIcon, ReduceIcon, RelationshipIcon, RenameIcon, ReplyToCommentIcon, ResourcesIcon, RestoreIcon, RhomboidIcon, RialIcon, RightBorderDoubleIcon, RightDoubleDiagonalDoubleIcon, RightInsertColumnDoubleIcon, RightJustifyingIcon, RightRotationFortyFiveDegreesIcon, RightRotationNinetyDegreesIcon, RmbIcon, RoubleIcon, RoundnessIcon, RowHeightExtraTallIcon, RowHeightMediumIcon, RowHeightShortIcon, RowHeightTallIcon, RowIcon, RulerIcon, RupiahIcon, SankeyIcon, ScatterChartIcon, SearchIcon, SectionSettingIcon, SelectRangeIcon, SequenceActivationBarIcon, SequenceActorLifelineIcon, SequenceAlternativeFragmentIcon, SequenceBoundaryLifelineIcon, SequenceCollectionLifelineIcon, SequenceControlLifelineIcon, SequenceDirectAccessStorageLifelineIcon, SequenceEntityLifelineIcon, SequenceFragmentIcon, SequenceMagneticDiskLifelineIcon, SequenceObjectLifelineIcon, ShapeAccentBorderCallout1Icon, ShapeAccentBorderCallout2Icon, ShapeAccentBorderCallout3Icon, ShapeAccentCallout1Icon, ShapeAccentCallout2Icon, ShapeAccentCallout3Icon, ShapeActionButtonBackPreviousIcon, ShapeActionButtonBeginningIcon, ShapeActionButtonBlankIcon, ShapeActionButtonDocumentIcon, ShapeActionButtonEndIcon, ShapeActionButtonForwardNextIcon, ShapeActionButtonHelpIcon, ShapeActionButtonHomeIcon, ShapeActionButtonInformationIcon, ShapeActionButtonMovieIcon, ShapeActionButtonReturnIcon, ShapeActionButtonSoundIcon, ShapeArcIcon, ShapeBackgroundColorDoubleIcon, ShapeBentArrowIcon, ShapeBentConnector3Arrow1Icon, ShapeBentConnector3Arrow2Icon, ShapeBentConnector3Icon, ShapeBentUpArrowIcon, ShapeBevelIcon, ShapeBlockArcIcon, ShapeBorderCallout1Icon, ShapeBorderCallout2Icon, ShapeBorderCallout3Icon, ShapeBracePairIcon, ShapeBracketPairIcon, ShapeCallout1Icon, ShapeCallout2Icon, ShapeCallout3Icon, ShapeCanIcon, ShapeChartPlusIcon, ShapeChartStarIcon, ShapeChartXIcon, ShapeChevronIcon, ShapeChordIcon, ShapeCircularArrowIcon, ShapeCloudCalloutIcon, ShapeCloudIcon, ShapeCornerIcon, ShapeCornerTabsIcon, ShapeCubeIcon, ShapeCurvedConnector3Arrow1Icon, ShapeCurvedConnector3Arrow2Icon, ShapeCurvedConnector3Icon, ShapeCurvedDownArrowIcon, ShapeCurvedLeftArrowIcon, ShapeCurvedRightArrowIcon, ShapeCurvedUpArrowIcon, ShapeDecagonIcon, ShapeDiagStripeIcon, ShapeDiamondIcon, ShapeDodecagonIcon, ShapeDonutIcon, ShapeDoubleWaveIcon, ShapeDownArrowCalloutIcon, ShapeDownArrowIcon, ShapeEllipseIcon, ShapeEllipseRibbon2Icon, ShapeEllipseRibbonIcon, ShapeFlowChartAlternateProcessIcon, ShapeFlowChartCollateIcon, ShapeFlowChartConnectorIcon, ShapeFlowChartDecisionIcon, ShapeFlowChartDelayIcon, ShapeFlowChartDisplayIcon, ShapeFlowChartDocumentIcon, ShapeFlowChartExtractIcon, ShapeFlowChartInputOutputIcon, ShapeFlowChartInternalStorageIcon, ShapeFlowChartMagneticDiskIcon, ShapeFlowChartMagneticDrumIcon, ShapeFlowChartMagneticTapeIcon, ShapeFlowChartManualInputIcon, ShapeFlowChartManualOperationIcon, ShapeFlowChartMergeIcon, ShapeFlowChartMultidocumentIcon, ShapeFlowChartOfflineStorageIcon, ShapeFlowChartOffpageConnectorIcon, ShapeFlowChartOnlineStorageIcon, ShapeFlowChartOrIcon, ShapeFlowChartPredefinedProcessIcon, ShapeFlowChartPreparationIcon, ShapeFlowChartProcessIcon, ShapeFlowChartPunchedCardIcon, ShapeFlowChartPunchedTapeIcon, ShapeFlowChartSortIcon, ShapeFlowChartSummingJunctionIcon, ShapeFlowChartTerminatorIcon, ShapeFolderCornerIcon, ShapeFormatSettingIcon, ShapeFrameIcon, ShapeFunnelIcon, ShapeGear6Icon, ShapeGear9Icon, ShapeHalfFrameIcon, ShapeHeartIcon, ShapeHeptagonIcon, ShapeHexagonIcon, ShapeHomePlateIcon, ShapeHorizontalScrollIcon, ShapeIcon, ShapeIrregularSeal1Icon, ShapeIrregularSeal2Icon, ShapeLeftArrowCalloutIcon, ShapeLeftArrowIcon, ShapeLeftBraceIcon, ShapeLeftBracketIcon, ShapeLeftCircularArrowIcon, ShapeLeftRightArrowCalloutIcon, ShapeLeftRightArrowIcon, ShapeLeftRightCircularArrowIcon, ShapeLeftRightRibbonIcon, ShapeLeftRightUpArrowIcon, ShapeLeftUpArrowIcon, ShapeLightningBoltIcon, ShapeLineIcon, ShapeLineInvIcon, ShapeMathDivideIcon, ShapeMathEqualIcon, ShapeMathMinusIcon, ShapeMathMultiplyIcon, ShapeMathNotEqualIcon, ShapeMathPlusIcon, ShapeMoonIcon, ShapeNoSmokingIcon, ShapeNonIsoscelesTrapezoidIcon, ShapeNotchedRightArrowIcon, ShapeOctagonIcon, ShapeParallelogramIcon, ShapePentagonIcon, ShapePieIcon, ShapePieWedgeIcon, ShapePlaqueIcon, ShapePlaqueTabsIcon, ShapePlusIcon, ShapeQuadArrowCalloutIcon, ShapeQuadArrowIcon, ShapeRectIcon, ShapeRectTextboxHorizontalIcon, ShapeRectTextboxVerticalIcon, ShapeRibbon2Icon, ShapeRibbonIcon, ShapeRightArrowCalloutIcon, ShapeRightArrowIcon, ShapeRightBraceIcon, ShapeRightBracketIcon, ShapeRound1RectIcon, ShapeRound2DiagRectIcon, ShapeRound2SameRectIcon, ShapeRoundRectIcon, ShapeRtTriangleIcon, ShapeSmileyFaceIcon, ShapeSnip1RectIcon, ShapeSnip2DiagRectIcon, ShapeSnip2SameRectIcon, ShapeSnipRoundRectIcon, ShapeSquareTabsIcon, ShapeStar10Icon, ShapeStar12Icon, ShapeStar16Icon, ShapeStar24Icon, ShapeStar32Icon, ShapeStar4Icon, ShapeStar5Icon, ShapeStar6Icon, ShapeStar7Icon, ShapeStar8Icon, ShapeStraightConnector1Icon, ShapeStraightConnector2Icon, ShapeStripedRightArrowIcon, ShapeStrokeColorDoubleIcon, ShapeSunIcon, ShapeSwooshArrowIcon, ShapeTeardropIcon, ShapeTrapezoidIcon, ShapeTriangleIcon, ShapeUpArrowCalloutIcon, ShapeUpArrowIcon, ShapeUpDownArrowCalloutIcon, ShapeUpDownArrowIcon, ShapeUturnArrowIcon, ShapeVerticalScrollIcon, ShapeWaveIcon, ShapeWedgeEllipseCalloutIcon, ShapeWedgeRectCalloutIcon, ShapeWedgeRoundRectCalloutIcon, ShareIcon, ShareRangeIcon, SheetIcon, SheetsAppIcon, SheetsMultiIcon, ShortcutIcon, ShowDimensionsIcon, ShowToolbarIcon, ShrinkIcon, ShrinkToFitIcon, Signal0DoubleIcon, Signal100DoubleIcon, Signal25DoubleIcon, Signal50DoubleIcon, Signal75DoubleIcon, SlashDoubleIcon, SlidesAppIcon, SlidesMultiIcon, SlideshowPlayIcon, SlideshowThemeIcon, SmartArtIcon, SmileDoubleIcon, SmileIcon, StarEmptyDoubleIcon, StarFullDoubleIcon, StarIncompleteDoubleIcon, StatisticalFunctionIcon, StatusDiagramFinalStateIcon, StatusDiagramInitialStateIcon, StatusDiagramStateBarIcon, StickyNoteIcon, StrikethroughIcon, StrokeSize1Icon, StrokeSize2Icon, StrokeSize3Icon, StrokeSize4Icon, StrokeSize5Icon, SubscriptIcon, SuccessIcon, SuccessOutlineIcon, SunburstChartIcon, SuperscriptIcon, SymbolsIcon, TableBorderStyleDashedIcon, TableBorderStyleDottedIcon, TableBorderStyleIcon, TableBorderStyleSolidIcon, TableBorderWidthIcon, TableIcon, TextFunctionIcon, TextIcon, TextTypeIcon, TextWrapShapeIcon, TodoListDoubleIcon, TopmostIcon, TransitionsIcon, TreemapChartIcon, TriangleIcon, TruncationIcon, TypographyIcon, UnderlineIcon, UndoIcon, UngroupIcon, UngroupSparklineIcon, UniverCliIcon, UniverSdkMultiIcon, UnlinkIcon, UnlockIcon, UnorderIcon, UpBorderDoubleIcon, UpIcon, VerticalBorderDoubleIcon, VerticalCenterIcon, VerticalIntegrationIcon, VerticalTextIcon, WarnDoubleIcon, WarningIcon, WaterfallChartIcon, WinlossSparklineIcon, WonIcon, WriteIcon, ZlotyIcon, ZoomInIcon, ZoomOutIcon };
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { PropType } from 'vue';
|
|
2
|
+
import type { IExtendProps } from './base.js';
|
|
3
|
+
export declare const ParagraphSettingIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
preserveStrokeWidth: {
|
|
5
|
+
type: BooleanConstructor;
|
|
6
|
+
default: boolean;
|
|
7
|
+
};
|
|
8
|
+
extend: {
|
|
9
|
+
type: PropType<IExtendProps>;
|
|
10
|
+
default: undefined;
|
|
11
|
+
};
|
|
12
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
13
|
+
[key: string]: any;
|
|
14
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
+
preserveStrokeWidth: {
|
|
16
|
+
type: BooleanConstructor;
|
|
17
|
+
default: boolean;
|
|
18
|
+
};
|
|
19
|
+
extend: {
|
|
20
|
+
type: PropType<IExtendProps>;
|
|
21
|
+
default: undefined;
|
|
22
|
+
};
|
|
23
|
+
}>> & Readonly<{}>, {
|
|
24
|
+
preserveStrokeWidth: boolean;
|
|
25
|
+
extend: IExtendProps;
|
|
26
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
27
|
+
export default ParagraphSettingIcon;
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/paragraph-setting-icon.ts
|
|
4
|
+
const element = {
|
|
5
|
+
"tag": "svg",
|
|
6
|
+
"attrs": {
|
|
7
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"viewBox": "0 0 16 16",
|
|
10
|
+
"width": "1em",
|
|
11
|
+
"height": "1em"
|
|
12
|
+
},
|
|
13
|
+
"children": [
|
|
14
|
+
{
|
|
15
|
+
"tag": "path",
|
|
16
|
+
"attrs": {
|
|
17
|
+
"stroke": "currentColor",
|
|
18
|
+
"stroke-linecap": "round",
|
|
19
|
+
"stroke-linejoin": "round",
|
|
20
|
+
"stroke-width": 1.3,
|
|
21
|
+
"d": "M7.5 2H4.5C2.84315 2 1.5 3.34315 1.5 5C1.5 6.65685 2.84315 8 4.5 8H5M5 2V13.5M7.5 2V13.5"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"tag": "path",
|
|
26
|
+
"attrs": {
|
|
27
|
+
"stroke": "currentColor",
|
|
28
|
+
"stroke-linejoin": "round",
|
|
29
|
+
"stroke-width": 1.3,
|
|
30
|
+
"d": "M10.8 9H12.7L14.5 11.5L12.7 14H10.8L9 11.5L10.8 9Z"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"tag": "path",
|
|
35
|
+
"attrs": {
|
|
36
|
+
"stroke": "currentColor",
|
|
37
|
+
"stroke-linecap": "round",
|
|
38
|
+
"stroke-width": 1.8,
|
|
39
|
+
"d": "M11.75 11.5H11.7501"
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
]
|
|
43
|
+
};
|
|
44
|
+
const ParagraphSettingIcon = defineComponent({
|
|
45
|
+
name: "ParagraphSettingIcon",
|
|
46
|
+
inheritAttrs: false,
|
|
47
|
+
props: {
|
|
48
|
+
preserveStrokeWidth: {
|
|
49
|
+
type: Boolean,
|
|
50
|
+
default: false
|
|
51
|
+
},
|
|
52
|
+
extend: {
|
|
53
|
+
type: Object,
|
|
54
|
+
default: void 0
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
setup(props, { attrs }) {
|
|
58
|
+
return () => h(IconBase, {
|
|
59
|
+
...attrs,
|
|
60
|
+
preserveStrokeWidth: props.preserveStrokeWidth,
|
|
61
|
+
extend: props.extend,
|
|
62
|
+
id: "paragraph-setting-icon",
|
|
63
|
+
icon: element
|
|
64
|
+
});
|
|
65
|
+
}
|
|
66
|
+
});
|
|
67
|
+
//#endregion
|
|
68
|
+
export { ParagraphSettingIcon, ParagraphSettingIcon as default };
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { PropType } from 'vue';
|
|
2
|
+
import type { IExtendProps } from './base.js';
|
|
3
|
+
export declare const SectionSettingIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
preserveStrokeWidth: {
|
|
5
|
+
type: BooleanConstructor;
|
|
6
|
+
default: boolean;
|
|
7
|
+
};
|
|
8
|
+
extend: {
|
|
9
|
+
type: PropType<IExtendProps>;
|
|
10
|
+
default: undefined;
|
|
11
|
+
};
|
|
12
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
13
|
+
[key: string]: any;
|
|
14
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
+
preserveStrokeWidth: {
|
|
16
|
+
type: BooleanConstructor;
|
|
17
|
+
default: boolean;
|
|
18
|
+
};
|
|
19
|
+
extend: {
|
|
20
|
+
type: PropType<IExtendProps>;
|
|
21
|
+
default: undefined;
|
|
22
|
+
};
|
|
23
|
+
}>> & Readonly<{}>, {
|
|
24
|
+
preserveStrokeWidth: boolean;
|
|
25
|
+
extend: IExtendProps;
|
|
26
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
27
|
+
export default SectionSettingIcon;
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/section-setting-icon.ts
|
|
4
|
+
const element = {
|
|
5
|
+
"tag": "svg",
|
|
6
|
+
"attrs": {
|
|
7
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"viewBox": "0 0 16 16",
|
|
10
|
+
"width": "1em",
|
|
11
|
+
"height": "1em"
|
|
12
|
+
},
|
|
13
|
+
"children": [
|
|
14
|
+
{
|
|
15
|
+
"tag": "path",
|
|
16
|
+
"attrs": {
|
|
17
|
+
"stroke": "currentColor",
|
|
18
|
+
"stroke-linecap": "round",
|
|
19
|
+
"stroke-linejoin": "round",
|
|
20
|
+
"stroke-width": 1.3,
|
|
21
|
+
"d": "M6.5 14H3.5C2.67157 14 2 13.3284 2 12.5V3C2 2.17157 2.67157 1.5 3.5 1.5H11C11.8284 1.5 12.5 2.17157 12.5 3V6.5"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"tag": "path",
|
|
26
|
+
"attrs": {
|
|
27
|
+
"stroke": "currentColor",
|
|
28
|
+
"stroke-linecap": "round",
|
|
29
|
+
"stroke-width": 1.3,
|
|
30
|
+
"d": "M4.5 4H10M4.5 10H6.5M2 7H3M5.25 7H6.25M8.5 7H9.5M11.75 7H12.5"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"tag": "path",
|
|
35
|
+
"attrs": {
|
|
36
|
+
"stroke": "currentColor",
|
|
37
|
+
"stroke-linejoin": "round",
|
|
38
|
+
"stroke-width": 1.3,
|
|
39
|
+
"d": "M10.8 9H12.7L14.5 11.5L12.7 14H10.8L9 11.5L10.8 9Z"
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"tag": "path",
|
|
44
|
+
"attrs": {
|
|
45
|
+
"stroke": "currentColor",
|
|
46
|
+
"stroke-linecap": "round",
|
|
47
|
+
"stroke-width": 1.8,
|
|
48
|
+
"d": "M11.75 11.5H11.7501"
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
]
|
|
52
|
+
};
|
|
53
|
+
const SectionSettingIcon = defineComponent({
|
|
54
|
+
name: "SectionSettingIcon",
|
|
55
|
+
inheritAttrs: false,
|
|
56
|
+
props: {
|
|
57
|
+
preserveStrokeWidth: {
|
|
58
|
+
type: Boolean,
|
|
59
|
+
default: false
|
|
60
|
+
},
|
|
61
|
+
extend: {
|
|
62
|
+
type: Object,
|
|
63
|
+
default: void 0
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
setup(props, { attrs }) {
|
|
67
|
+
return () => h(IconBase, {
|
|
68
|
+
...attrs,
|
|
69
|
+
preserveStrokeWidth: props.preserveStrokeWidth,
|
|
70
|
+
extend: props.extend,
|
|
71
|
+
id: "section-setting-icon",
|
|
72
|
+
icon: element
|
|
73
|
+
});
|
|
74
|
+
}
|
|
75
|
+
});
|
|
76
|
+
//#endregion
|
|
77
|
+
export { SectionSettingIcon, SectionSettingIcon as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs/icons-vue",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.40.0",
|
|
4
4
|
"description": "Vue icons for Univer.",
|
|
5
5
|
"author": "DreamNum Co., Ltd. <developer@univer.ai>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"vue": "^3.0.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@types/node": "^26.2
|
|
43
|
+
"@types/node": "^26.6.2",
|
|
44
44
|
"@types/svg-parser": "^2.0.6",
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
45
|
+
"@univerjs/icons-svg": "1.40.0",
|
|
46
|
+
"rolldown": "1.2.9",
|
|
47
|
+
"svg-parser": "^2.1.0",
|
|
48
|
+
"svgo": "^4.1.0",
|
|
48
49
|
"typescript": "7.0.2",
|
|
49
|
-
"vue": "^3.5.
|
|
50
|
-
"@univerjs/icons-svg": "1.38.0"
|
|
50
|
+
"vue": "^3.5.43"
|
|
51
51
|
},
|
|
52
52
|
"scripts": {
|
|
53
53
|
"build": "node --experimental-strip-types ./scripts/build/index.mts && tsc"
|