@actabldesign/bellhop-react 0.0.6 → 0.0.7
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/components/stencil-generated/components.d.ts +1 -388
- package/dist/components/stencil-generated/components.d.ts.map +1 -1
- package/dist/components/stencil-generated/components.js +6 -722
- package/dist/components/stencil-generated/components.server.d.ts +396 -0
- package/dist/components/stencil-generated/components.server.d.ts.map +1 -0
- package/dist/components/stencil-generated/components.server.js +1677 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +9 -2
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Bellhop React Components
|
|
3
3
|
*
|
|
4
4
|
* This package provides:
|
|
5
|
-
* 1. React wrapper components for
|
|
5
|
+
* 1. React wrapper components for Bellhop Stencil web components (auto-generated)
|
|
6
6
|
* 2. Native React table primitives with TanStack Table integration
|
|
7
7
|
*
|
|
8
8
|
* NOTE: For feature-rich data grids, use <BhDataGrid> from the Stencil components.
|
package/dist/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Bellhop React Components
|
|
3
3
|
*
|
|
4
4
|
* This package provides:
|
|
5
|
-
* 1. React wrapper components for
|
|
5
|
+
* 1. React wrapper components for Bellhop Stencil web components (auto-generated)
|
|
6
6
|
* 2. Native React table primitives with TanStack Table integration
|
|
7
7
|
*
|
|
8
8
|
* NOTE: For feature-rich data grids, use <BhDataGrid> from the Stencil components.
|
package/package.json
CHANGED
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@actabldesign/bellhop-react",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"description": "React components for Bellhop - Stencil wrappers and native React table primitives",
|
|
5
|
+
"type": "module",
|
|
5
6
|
"main": "dist/index.js",
|
|
6
7
|
"module": "dist/index.js",
|
|
7
8
|
"types": "dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
8
15
|
"repository": {
|
|
9
16
|
"type": "git",
|
|
10
17
|
"url": "git+https://github.com/actabldesign/bellhop.git",
|
|
@@ -20,7 +27,7 @@
|
|
|
20
27
|
},
|
|
21
28
|
"dependencies": {
|
|
22
29
|
"@actabldesign/bellhop-core": "file:../bellhop-core",
|
|
23
|
-
"@stencil/react-output-target": "^0.
|
|
30
|
+
"@stencil/react-output-target": "^1.0.3"
|
|
24
31
|
},
|
|
25
32
|
"peerDependencies": {
|
|
26
33
|
"react": ">=17.0.0",
|