bevi-icon 1.0.5 → 1.0.6
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/README.md
CHANGED
|
@@ -84,6 +84,8 @@ medida
|
|
|
84
84
|
size="4"
|
|
85
85
|
```
|
|
86
86
|
|
|
87
|
+
<br />
|
|
88
|
+
|
|
87
89
|
### Title
|
|
88
90
|
|
|
89
91
|
Você também pode adicionar um título ao ícone. Esse é usado
|
|
@@ -93,6 +95,14 @@ para acessibilidade e ajuda de leitores de tela.
|
|
|
93
95
|
title="Título de exemplo"
|
|
94
96
|
```
|
|
95
97
|
|
|
98
|
+
<br />
|
|
99
|
+
<br />
|
|
100
|
+
|
|
101
|
+
## License
|
|
102
|
+
|
|
103
|
+
Bevi Icon is licensed under the
|
|
104
|
+
[MIT License](https://github.com/BeviProjects/bevi-icon/blob/main/LICENSE).
|
|
105
|
+
|
|
96
106
|
<br/>
|
|
97
107
|
<br/>
|
|
98
108
|
<br/>
|
|
@@ -9,12 +9,7 @@ const e = {
|
|
|
9
9
|
dark: "222343",
|
|
10
10
|
light: "25CBDB",
|
|
11
11
|
duo: "inherit"
|
|
12
|
-
}, g = ({
|
|
13
|
-
variant: r = "solid",
|
|
14
|
-
name: t,
|
|
15
|
-
title: i,
|
|
16
|
-
size: o
|
|
17
|
-
}, d) => /* @__PURE__ */ h(
|
|
12
|
+
}, g = ({ variant: r = "solid", name: t, title: i, size: o }, d) => /* @__PURE__ */ h(
|
|
18
13
|
"svg",
|
|
19
14
|
{
|
|
20
15
|
width: o ? o * 16 : 32,
|
|
@@ -28,13 +23,7 @@ const e = {
|
|
|
28
23
|
...d,
|
|
29
24
|
children: [
|
|
30
25
|
i ? /* @__PURE__ */ n("title", { children: i }) : "",
|
|
31
|
-
/* @__PURE__ */ n(
|
|
32
|
-
l,
|
|
33
|
-
{
|
|
34
|
-
variant: r,
|
|
35
|
-
name: t
|
|
36
|
-
}
|
|
37
|
-
)
|
|
26
|
+
/* @__PURE__ */ n(l, { variant: r, name: t })
|
|
38
27
|
]
|
|
39
28
|
}
|
|
40
29
|
);
|
package/package.json
CHANGED
|
@@ -1,13 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bevi-icon",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "Biblioteca de ícones da Bevi",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"main": "dist/
|
|
7
|
-
"types": "dist/
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
8
|
"files": [
|
|
9
9
|
"dist"
|
|
10
10
|
],
|
|
11
|
+
"homepage": "https://github.com/BeviProjects/bevi-icon#readme",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/BeviProjects/bevi-icon/issues",
|
|
14
|
+
"email": "andreluizmagjr@outlook.com"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"Bevi",
|
|
18
|
+
"Bevi Icon",
|
|
19
|
+
"Icon Library"
|
|
20
|
+
],
|
|
11
21
|
"scripts": {
|
|
12
22
|
"dev": "vite",
|
|
13
23
|
"build": "tsc --p ./tsconfig-build.json && vite build",
|
|
@@ -29,5 +39,6 @@
|
|
|
29
39
|
"typescript": "^4.9.3",
|
|
30
40
|
"vite": "^4.1.0",
|
|
31
41
|
"vite-plugin-dts": "^3.6.0"
|
|
32
|
-
}
|
|
42
|
+
},
|
|
43
|
+
"license": "MIT"
|
|
33
44
|
}
|
|
File without changes
|
|
File without changes
|