overview-components 1.1.176 → 1.1.177
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/react-wrappers/index.d.ts +1 -0
- package/dist/components/react-wrappers/index.js +4 -0
- package/package.json +6 -2
- package/react.d.ts +1 -0
- package/react.js +3 -0
- package/schemas.d.ts +1 -0
- package/schemas.js +2 -0
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
// Re-export celé hlavnej Lit knižnice (komponenty, schémy a ich typy ako napr.
|
|
2
|
+
// ColumnFilterServer), aby React konzument mohol importovať komponenty, wrappery aj
|
|
3
|
+
// typy z jedného miesta: import { DataGridTanstack, ColumnFilterServer } from 'overview-components/react'
|
|
4
|
+
export * from '../../index.js';
|
|
1
5
|
export * from './case-variables-tab.js';
|
|
2
6
|
export { CaseVariablesTab } from './case-variables-tab.js';
|
|
3
7
|
export * from './data-grid-tanstack.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "overview-components",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.177",
|
|
4
4
|
"description": "A reusable design Lit components for case overview section.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"repository": {
|
|
@@ -16,7 +16,11 @@
|
|
|
16
16
|
},
|
|
17
17
|
"sideEffects": true,
|
|
18
18
|
"files": [
|
|
19
|
-
"dist"
|
|
19
|
+
"dist",
|
|
20
|
+
"react.js",
|
|
21
|
+
"react.d.ts",
|
|
22
|
+
"schemas.js",
|
|
23
|
+
"schemas.d.ts"
|
|
20
24
|
],
|
|
21
25
|
"exports": {
|
|
22
26
|
".": {
|
package/react.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './dist/components/react-wrappers/index.js';
|
package/react.js
ADDED
package/schemas.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './dist/schemas/index.js';
|
package/schemas.js
ADDED