@vellira-ui/react 2.53.0 → 2.55.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/README.md +15 -4
- package/package.json +14 -1
package/README.md
CHANGED
|
@@ -3,8 +3,9 @@
|
|
|
3
3
|
React implementation of the Vellira design system.
|
|
4
4
|
|
|
5
5
|
It extends shared contracts from `@vellira-ui/types`, uses shared tokens from
|
|
6
|
-
`@vellira-ui/tokens`,
|
|
7
|
-
|
|
6
|
+
`@vellira-ui/tokens`, shares renderer-neutral behavior through
|
|
7
|
+
`@vellira-ui/core`, and keeps DOM rendering, CSS, accessibility, and browser
|
|
8
|
+
interaction behavior inside the web layer.
|
|
8
9
|
|
|
9
10
|
## Installation
|
|
10
11
|
|
|
@@ -82,10 +83,20 @@ Every public component includes Storybook stories and Vitest unit tests.
|
|
|
82
83
|
For detailed props, shared types, examples, and compound component APIs, see
|
|
83
84
|
[Web Component API](./API.md).
|
|
84
85
|
|
|
86
|
+
## Infrastructure
|
|
87
|
+
|
|
88
|
+
The package also exports web infrastructure used by components and
|
|
89
|
+
applications:
|
|
90
|
+
|
|
91
|
+
- `Portal`
|
|
92
|
+
- `PortalProvider`
|
|
93
|
+
- `ThemeProvider`
|
|
94
|
+
- `useTheme`
|
|
95
|
+
|
|
85
96
|
## Documentation
|
|
86
97
|
|
|
87
|
-
- [Getting Started](https://docs.vellira.dev/getting-started)
|
|
88
|
-
- [
|
|
98
|
+
- [Getting Started](https://docs.vellira.dev/start/getting-started)
|
|
99
|
+
- [React](https://docs.vellira.dev/react/)
|
|
89
100
|
- [Web Component API](./API.md)
|
|
90
101
|
|
|
91
102
|
## Storybook
|
package/package.json
CHANGED
|
@@ -1,7 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vellira-ui/react",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.55.0",
|
|
4
4
|
"description": "Web components for Vellira Design System",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"vellira",
|
|
7
|
+
"react",
|
|
8
|
+
"ui",
|
|
9
|
+
"components",
|
|
10
|
+
"design-system",
|
|
11
|
+
"typescript",
|
|
12
|
+
"accessibility"
|
|
13
|
+
],
|
|
5
14
|
"author": "Roman Bakurov",
|
|
6
15
|
"license": "MIT",
|
|
7
16
|
"repository": {
|
|
@@ -9,6 +18,10 @@
|
|
|
9
18
|
"url": "git+https://github.com/vellira-dev/vellira.git",
|
|
10
19
|
"directory": "packages/react"
|
|
11
20
|
},
|
|
21
|
+
"homepage": "https://vellira.dev",
|
|
22
|
+
"bugs": {
|
|
23
|
+
"url": "https://github.com/vellira-dev/vellira/issues"
|
|
24
|
+
},
|
|
12
25
|
"private": false,
|
|
13
26
|
"type": "module",
|
|
14
27
|
"sideEffects": [
|