@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,51 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/information-function-icon.ts
|
|
4
|
+
const element = {
|
|
5
|
+
"tag": "svg",
|
|
6
|
+
"attrs": {
|
|
7
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"viewBox": "0 0 16 16",
|
|
10
|
+
"width": "1em",
|
|
11
|
+
"height": "1em"
|
|
12
|
+
},
|
|
13
|
+
"children": [{
|
|
14
|
+
"tag": "rect",
|
|
15
|
+
"attrs": {
|
|
16
|
+
"width": 11.2,
|
|
17
|
+
"height": 13.2,
|
|
18
|
+
"x": 2.4,
|
|
19
|
+
"y": 1.4,
|
|
20
|
+
"stroke": "currentColor",
|
|
21
|
+
"stroke-width": 1.2,
|
|
22
|
+
"rx": 1.6
|
|
23
|
+
}
|
|
24
|
+
}, {
|
|
25
|
+
"tag": "path",
|
|
26
|
+
"attrs": {
|
|
27
|
+
"stroke": "currentColor",
|
|
28
|
+
"stroke-linecap": "round",
|
|
29
|
+
"stroke-width": 1.2,
|
|
30
|
+
"d": "M5 12H11M8 6.5V9.5M8 4.7H8.01"
|
|
31
|
+
}
|
|
32
|
+
}]
|
|
33
|
+
};
|
|
34
|
+
const InformationFunctionIcon = defineComponent({
|
|
35
|
+
name: "InformationFunctionIcon",
|
|
36
|
+
inheritAttrs: false,
|
|
37
|
+
props: { extend: {
|
|
38
|
+
type: Object,
|
|
39
|
+
default: void 0
|
|
40
|
+
} },
|
|
41
|
+
setup(props, { attrs }) {
|
|
42
|
+
return () => h(IconBase, {
|
|
43
|
+
...attrs,
|
|
44
|
+
extend: props.extend,
|
|
45
|
+
id: "information-function-icon",
|
|
46
|
+
icon: element
|
|
47
|
+
});
|
|
48
|
+
}
|
|
49
|
+
});
|
|
50
|
+
//#endregion
|
|
51
|
+
export { InformationFunctionIcon, InformationFunctionIcon as default };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { PropType } from 'vue';
|
|
2
|
+
import type { IExtendProps } from './base.js';
|
|
3
|
+
export declare const LogicalFunctionIcon: 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 LogicalFunctionIcon;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/logical-function-icon.ts
|
|
4
|
+
const element = {
|
|
5
|
+
"tag": "svg",
|
|
6
|
+
"attrs": {
|
|
7
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"viewBox": "0 0 16 16",
|
|
10
|
+
"width": "1em",
|
|
11
|
+
"height": "1em"
|
|
12
|
+
},
|
|
13
|
+
"children": [{
|
|
14
|
+
"tag": "rect",
|
|
15
|
+
"attrs": {
|
|
16
|
+
"width": 11.2,
|
|
17
|
+
"height": 13.2,
|
|
18
|
+
"x": 2.4,
|
|
19
|
+
"y": 1.4,
|
|
20
|
+
"stroke": "currentColor",
|
|
21
|
+
"stroke-width": 1.2,
|
|
22
|
+
"rx": 1.6
|
|
23
|
+
}
|
|
24
|
+
}, {
|
|
25
|
+
"tag": "path",
|
|
26
|
+
"attrs": {
|
|
27
|
+
"stroke": "currentColor",
|
|
28
|
+
"stroke-linecap": "round",
|
|
29
|
+
"stroke-linejoin": "round",
|
|
30
|
+
"stroke-width": 1.2,
|
|
31
|
+
"d": "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"
|
|
32
|
+
}
|
|
33
|
+
}]
|
|
34
|
+
};
|
|
35
|
+
const LogicalFunctionIcon = defineComponent({
|
|
36
|
+
name: "LogicalFunctionIcon",
|
|
37
|
+
inheritAttrs: false,
|
|
38
|
+
props: { extend: {
|
|
39
|
+
type: Object,
|
|
40
|
+
default: void 0
|
|
41
|
+
} },
|
|
42
|
+
setup(props, { attrs }) {
|
|
43
|
+
return () => h(IconBase, {
|
|
44
|
+
...attrs,
|
|
45
|
+
extend: props.extend,
|
|
46
|
+
id: "logical-function-icon",
|
|
47
|
+
icon: element
|
|
48
|
+
});
|
|
49
|
+
}
|
|
50
|
+
});
|
|
51
|
+
//#endregion
|
|
52
|
+
export { LogicalFunctionIcon, LogicalFunctionIcon as default };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { PropType } from 'vue';
|
|
2
|
+
import type { IExtendProps } from './base.js';
|
|
3
|
+
export declare const LookupFunctionIcon: 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 LookupFunctionIcon;
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/lookup-function-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": "rect",
|
|
16
|
+
"attrs": {
|
|
17
|
+
"width": 11.2,
|
|
18
|
+
"height": 13.2,
|
|
19
|
+
"x": 2.4,
|
|
20
|
+
"y": 1.4,
|
|
21
|
+
"stroke": "currentColor",
|
|
22
|
+
"stroke-width": 1.2,
|
|
23
|
+
"rx": 1.6
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"tag": "path",
|
|
28
|
+
"attrs": {
|
|
29
|
+
"stroke": "currentColor",
|
|
30
|
+
"stroke-linecap": "round",
|
|
31
|
+
"stroke-width": 1.2,
|
|
32
|
+
"d": "M5 12H11"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"tag": "circle",
|
|
37
|
+
"attrs": {
|
|
38
|
+
"cx": 7.35,
|
|
39
|
+
"cy": 6.8,
|
|
40
|
+
"r": 2.25,
|
|
41
|
+
"stroke": "currentColor",
|
|
42
|
+
"stroke-width": 1.2
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"tag": "path",
|
|
47
|
+
"attrs": {
|
|
48
|
+
"stroke": "currentColor",
|
|
49
|
+
"stroke-linecap": "round",
|
|
50
|
+
"stroke-width": 1.2,
|
|
51
|
+
"d": "M9 8.45L10.65 10.1"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
]
|
|
55
|
+
};
|
|
56
|
+
const LookupFunctionIcon = defineComponent({
|
|
57
|
+
name: "LookupFunctionIcon",
|
|
58
|
+
inheritAttrs: false,
|
|
59
|
+
props: { extend: {
|
|
60
|
+
type: Object,
|
|
61
|
+
default: void 0
|
|
62
|
+
} },
|
|
63
|
+
setup(props, { attrs }) {
|
|
64
|
+
return () => h(IconBase, {
|
|
65
|
+
...attrs,
|
|
66
|
+
extend: props.extend,
|
|
67
|
+
id: "lookup-function-icon",
|
|
68
|
+
icon: element
|
|
69
|
+
});
|
|
70
|
+
}
|
|
71
|
+
});
|
|
72
|
+
//#endregion
|
|
73
|
+
export { LookupFunctionIcon, LookupFunctionIcon as default };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { PropType } from 'vue';
|
|
2
|
+
import type { IExtendProps } from './base.js';
|
|
3
|
+
export declare const MathFunctionIcon: 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 MathFunctionIcon;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/math-function-icon.ts
|
|
4
|
+
const element = {
|
|
5
|
+
"tag": "svg",
|
|
6
|
+
"attrs": {
|
|
7
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"viewBox": "0 0 16 16",
|
|
10
|
+
"width": "1em",
|
|
11
|
+
"height": "1em"
|
|
12
|
+
},
|
|
13
|
+
"children": [{
|
|
14
|
+
"tag": "rect",
|
|
15
|
+
"attrs": {
|
|
16
|
+
"width": 11.2,
|
|
17
|
+
"height": 13.2,
|
|
18
|
+
"x": 2.4,
|
|
19
|
+
"y": 1.4,
|
|
20
|
+
"stroke": "currentColor",
|
|
21
|
+
"stroke-width": 1.2,
|
|
22
|
+
"rx": 1.6
|
|
23
|
+
}
|
|
24
|
+
}, {
|
|
25
|
+
"tag": "path",
|
|
26
|
+
"attrs": {
|
|
27
|
+
"stroke": "currentColor",
|
|
28
|
+
"stroke-linecap": "round",
|
|
29
|
+
"stroke-linejoin": "round",
|
|
30
|
+
"stroke-width": 1.2,
|
|
31
|
+
"d": "M5 12H11M5.1 7.6H6.1L7 9.7L8.35 4.9H10.9"
|
|
32
|
+
}
|
|
33
|
+
}]
|
|
34
|
+
};
|
|
35
|
+
const MathFunctionIcon = defineComponent({
|
|
36
|
+
name: "MathFunctionIcon",
|
|
37
|
+
inheritAttrs: false,
|
|
38
|
+
props: { extend: {
|
|
39
|
+
type: Object,
|
|
40
|
+
default: void 0
|
|
41
|
+
} },
|
|
42
|
+
setup(props, { attrs }) {
|
|
43
|
+
return () => h(IconBase, {
|
|
44
|
+
...attrs,
|
|
45
|
+
extend: props.extend,
|
|
46
|
+
id: "math-function-icon",
|
|
47
|
+
icon: element
|
|
48
|
+
});
|
|
49
|
+
}
|
|
50
|
+
});
|
|
51
|
+
//#endregion
|
|
52
|
+
export { MathFunctionIcon, MathFunctionIcon as default };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { PropType } from 'vue';
|
|
2
|
+
import type { IExtendProps } from './base.js';
|
|
3
|
+
export declare const StatisticalFunctionIcon: 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 StatisticalFunctionIcon;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/statistical-function-icon.ts
|
|
4
|
+
const element = {
|
|
5
|
+
"tag": "svg",
|
|
6
|
+
"attrs": {
|
|
7
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"viewBox": "0 0 16 16",
|
|
10
|
+
"width": "1em",
|
|
11
|
+
"height": "1em"
|
|
12
|
+
},
|
|
13
|
+
"children": [{
|
|
14
|
+
"tag": "rect",
|
|
15
|
+
"attrs": {
|
|
16
|
+
"width": 11.2,
|
|
17
|
+
"height": 13.2,
|
|
18
|
+
"x": 2.4,
|
|
19
|
+
"y": 1.4,
|
|
20
|
+
"stroke": "currentColor",
|
|
21
|
+
"stroke-width": 1.2,
|
|
22
|
+
"rx": 1.6
|
|
23
|
+
}
|
|
24
|
+
}, {
|
|
25
|
+
"tag": "path",
|
|
26
|
+
"attrs": {
|
|
27
|
+
"stroke": "currentColor",
|
|
28
|
+
"stroke-linecap": "round",
|
|
29
|
+
"stroke-linejoin": "round",
|
|
30
|
+
"stroke-width": 1.2,
|
|
31
|
+
"d": "M5 12H11M5.5 9.7V7.8M8 9.7V5M10.5 9.7V6.5M5 9.7H11"
|
|
32
|
+
}
|
|
33
|
+
}]
|
|
34
|
+
};
|
|
35
|
+
const StatisticalFunctionIcon = defineComponent({
|
|
36
|
+
name: "StatisticalFunctionIcon",
|
|
37
|
+
inheritAttrs: false,
|
|
38
|
+
props: { extend: {
|
|
39
|
+
type: Object,
|
|
40
|
+
default: void 0
|
|
41
|
+
} },
|
|
42
|
+
setup(props, { attrs }) {
|
|
43
|
+
return () => h(IconBase, {
|
|
44
|
+
...attrs,
|
|
45
|
+
extend: props.extend,
|
|
46
|
+
id: "statistical-function-icon",
|
|
47
|
+
icon: element
|
|
48
|
+
});
|
|
49
|
+
}
|
|
50
|
+
});
|
|
51
|
+
//#endregion
|
|
52
|
+
export { StatisticalFunctionIcon, StatisticalFunctionIcon as default };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { PropType } from 'vue';
|
|
2
|
+
import type { IExtendProps } from './base.js';
|
|
3
|
+
export declare const TextFunctionIcon: 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 TextFunctionIcon;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/text-function-icon.ts
|
|
4
|
+
const element = {
|
|
5
|
+
"tag": "svg",
|
|
6
|
+
"attrs": {
|
|
7
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"viewBox": "0 0 16 16",
|
|
10
|
+
"width": "1em",
|
|
11
|
+
"height": "1em"
|
|
12
|
+
},
|
|
13
|
+
"children": [{
|
|
14
|
+
"tag": "rect",
|
|
15
|
+
"attrs": {
|
|
16
|
+
"width": 11.2,
|
|
17
|
+
"height": 13.2,
|
|
18
|
+
"x": 2.4,
|
|
19
|
+
"y": 1.4,
|
|
20
|
+
"stroke": "currentColor",
|
|
21
|
+
"stroke-width": 1.2,
|
|
22
|
+
"rx": 1.6
|
|
23
|
+
}
|
|
24
|
+
}, {
|
|
25
|
+
"tag": "path",
|
|
26
|
+
"attrs": {
|
|
27
|
+
"stroke": "currentColor",
|
|
28
|
+
"stroke-linecap": "round",
|
|
29
|
+
"stroke-linejoin": "round",
|
|
30
|
+
"stroke-width": 1.2,
|
|
31
|
+
"d": "M5 12H11M5.3 4.4H10.7M8 4.4V9.6M6.6 9.6H9.4"
|
|
32
|
+
}
|
|
33
|
+
}]
|
|
34
|
+
};
|
|
35
|
+
const TextFunctionIcon = defineComponent({
|
|
36
|
+
name: "TextFunctionIcon",
|
|
37
|
+
inheritAttrs: false,
|
|
38
|
+
props: { extend: {
|
|
39
|
+
type: Object,
|
|
40
|
+
default: void 0
|
|
41
|
+
} },
|
|
42
|
+
setup(props, { attrs }) {
|
|
43
|
+
return () => h(IconBase, {
|
|
44
|
+
...attrs,
|
|
45
|
+
extend: props.extend,
|
|
46
|
+
id: "text-function-icon",
|
|
47
|
+
icon: element
|
|
48
|
+
});
|
|
49
|
+
}
|
|
50
|
+
});
|
|
51
|
+
//#endregion
|
|
52
|
+
export { TextFunctionIcon, TextFunctionIcon as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs/icons-vue",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.23.0",
|
|
4
4
|
"description": "Vue icons for Univer.",
|
|
5
5
|
"author": "DreamNum Co., Ltd. <developer@univer.ai>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"svgo": "^4.0.1",
|
|
48
48
|
"typescript": "7.0.1-rc",
|
|
49
49
|
"vue": "^3.5.39",
|
|
50
|
-
"@univerjs/icons-svg": "1.
|
|
50
|
+
"@univerjs/icons-svg": "1.23.0"
|
|
51
51
|
},
|
|
52
52
|
"scripts": {
|
|
53
53
|
"build": "node --experimental-strip-types ./scripts/build/index.mts && tsc"
|