@univerjs/icons-vue 1.22.0 → 1.24.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/convert-to-number-icon.cjs +54 -0
- package/dist/cjs/database-function-icon.cjs +57 -0
- package/dist/cjs/date-function-icon.cjs +79 -0
- package/dist/cjs/delete-table-double-icon.cjs +54 -0
- package/dist/cjs/engineering-function-icon.cjs +57 -0
- package/dist/cjs/financial-function-icon.cjs +57 -0
- package/dist/cjs/index.cjs +84 -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/convert-to-number-icon.d.ts +18 -0
- package/dist/esm/convert-to-number-icon.js +49 -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/delete-table-double-icon.d.ts +18 -0
- package/dist/esm/delete-table-double-icon.js +49 -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 +12 -0
- package/dist/esm/index.js +13 -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,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.24.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.24.0"
|
|
51
51
|
},
|
|
52
52
|
"scripts": {
|
|
53
53
|
"build": "node --experimental-strip-types ./scripts/build/index.mts && tsc"
|