@vobs/ui 1.0.0 → 1.1.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/package.json +5 -5
- package/src/icon.ts +2 -1
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"LICENSE"
|
|
7
7
|
],
|
|
8
8
|
"name": "@vobs/ui",
|
|
9
|
-
"version": "1.
|
|
9
|
+
"version": "1.1.0",
|
|
10
10
|
"description": "Optional UI components and UIStyle-compatible styles for Vobs.",
|
|
11
11
|
"type": "module",
|
|
12
12
|
"main": "src/index.ts",
|
|
@@ -52,10 +52,10 @@
|
|
|
52
52
|
"./src/styles/*.css"
|
|
53
53
|
],
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@vobs/
|
|
56
|
-
"@vobs/
|
|
57
|
-
"@vobs/reactivity": "1.
|
|
58
|
-
"@vobs/
|
|
55
|
+
"@vobs/notification": "1.1.0",
|
|
56
|
+
"@vobs/icon-core": "1.1.0",
|
|
57
|
+
"@vobs/reactivity": "1.1.0",
|
|
58
|
+
"@vobs/vobs": "1.1.0"
|
|
59
59
|
},
|
|
60
60
|
"scripts": {
|
|
61
61
|
"test": "vitest --environment jsdom"
|
package/src/icon.ts
CHANGED
|
@@ -93,7 +93,8 @@ const VUI_ICON_PATHS = {
|
|
|
93
93
|
sparkles: '<path d="M12 3l1.8 4.2L18 9l-4.2 1.8L12 15l-1.8-4.2L6 9l4.2-1.8L12 3z"/><path d="M19 14l1 2.2 2.2 1-2.2 1L19 20.4l-1-2.2-2.2-1 2.2-1L19 14z"/>',
|
|
94
94
|
zap: '<polygon points="13 2 4 14 12 14 11 22 20 10 12 10 13 2"/>',
|
|
95
95
|
sun: '<circle cx="12" cy="12" r="4"/><line x1="12" y1="2" x2="12" y2="5"/><line x1="12" y1="19" x2="12" y2="22"/><line x1="2" y1="12" x2="5" y2="12"/><line x1="19" y1="12" x2="22" y2="12"/><line x1="4.6" y1="4.6" x2="6.7" y2="6.7"/><line x1="17.3" y1="17.3" x2="19.4" y2="19.4"/><line x1="4.6" y1="19.4" x2="6.7" y2="17.3"/><line x1="17.3" y1="6.7" x2="19.4" y2="4.6"/>',
|
|
96
|
-
moon: '<path d="M21 12.8A9 9 0 1 1 11.2 3a7 7 0 0 0 9.8 9.8z"/>'
|
|
96
|
+
moon: '<path d="M21 12.8A9 9 0 1 1 11.2 3a7 7 0 0 0 9.8 9.8z"/>',
|
|
97
|
+
terminal: '<polyline points="4 7 9 12 4 17"/><line x1="12" y1="17" x2="20" y2="17"/>'
|
|
97
98
|
} as const
|
|
98
99
|
|
|
99
100
|
const iconRegistry = new Map<string, IconDefinition>(
|