@vellira-ui/core 2.54.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 +21 -9
- package/package.json +14 -1
package/README.md
CHANGED
|
@@ -1,11 +1,17 @@
|
|
|
1
|
-
|
|
1
|
+
# @vellira-ui/core
|
|
2
2
|
|
|
3
3
|
Platform-neutral behavior contracts and utilities for Vellira.
|
|
4
4
|
|
|
5
|
-
This internal package contains shared types and helper functions used
|
|
6
|
-
`@vellira-ui/react` and `@vellira-ui/react-native`. Platform-specific hooks,
|
|
7
|
-
DOM behavior, CSS, accessibility handling, and native interactions
|
|
8
|
-
the corresponding renderer packages.
|
|
5
|
+
This internal package contains shared behavior types and helper functions used
|
|
6
|
+
by `@vellira-ui/react` and `@vellira-ui/react-native`. Platform-specific hooks,
|
|
7
|
+
DOM behavior, CSS, accessibility handling, rendering, and native interactions
|
|
8
|
+
remain in the corresponding renderer packages.
|
|
9
|
+
|
|
10
|
+
## Installation
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
pnpm add @vellira-ui/core
|
|
14
|
+
```
|
|
9
15
|
|
|
10
16
|
## Responsibilities
|
|
11
17
|
|
|
@@ -15,7 +21,7 @@ the corresponding renderer packages.
|
|
|
15
21
|
- Shared event utilities
|
|
16
22
|
- Platform-neutral behavior types
|
|
17
23
|
|
|
18
|
-
## Package
|
|
24
|
+
## Package Structure
|
|
19
25
|
|
|
20
26
|
```text
|
|
21
27
|
src/
|
|
@@ -34,12 +40,18 @@ src/
|
|
|
34
40
|
|
|
35
41
|
## Usage
|
|
36
42
|
|
|
37
|
-
This package is primarily consumed internally by the Vellira renderer
|
|
43
|
+
This package is primarily consumed internally by the Vellira renderer
|
|
44
|
+
packages.
|
|
38
45
|
|
|
39
46
|
Application code should normally import components and public APIs from:
|
|
40
47
|
|
|
41
|
-
-
|
|
42
|
-
-
|
|
48
|
+
- `@vellira-ui/react`
|
|
49
|
+
- `@vellira-ui/react-native`
|
|
50
|
+
|
|
51
|
+
## Documentation
|
|
52
|
+
|
|
53
|
+
- [React](https://docs.vellira.dev/react/)
|
|
54
|
+
- [React Native](https://docs.vellira.dev/react-native/)
|
|
43
55
|
|
|
44
56
|
## Development
|
|
45
57
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vellira-ui/core",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.55.0",
|
|
4
4
|
"description": "Shared logic and hooks for Vellira Design System",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"vellira",
|
|
7
|
+
"design-system",
|
|
8
|
+
"ui",
|
|
9
|
+
"typescript",
|
|
10
|
+
"react",
|
|
11
|
+
"react-native",
|
|
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/core"
|
|
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
|
"main": "./dist/index.js",
|