@godown/react 3.7.3 → 3.7.4

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.
Files changed (3) hide show
  1. package/package.json +2 -2
  2. package/tabs.d.ts +12 -0
  3. package/tabs.js +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@godown/react",
3
- "version": "3.7.3",
3
+ "version": "3.7.4",
4
4
  "description": "React components for godown",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -24,7 +24,7 @@
24
24
  "dependencies": {
25
25
  "@lit/react": "^1.0.5",
26
26
  "react": "^18.0.0",
27
- "godown": "^3.7.3"
27
+ "godown": "^3.7.4"
28
28
  },
29
29
  "publishConfig": {
30
30
  "access": "public"
package/tabs.d.ts ADDED
@@ -0,0 +1,12 @@
1
+ import component from "godown/tabs.js";
2
+ import type { IntrinsicTag } from "./lib/intrinsic.js";
3
+ declare const _default: import("@lit/react").ReactWebComponent<component, object>;
4
+ export default _default;
5
+ export * from "godown/tabs.js";
6
+ declare global {
7
+ namespace JSX {
8
+ interface IntrinsicElements {
9
+ "godown-tabs": IntrinsicTag<"godown-tabs">;
10
+ }
11
+ }
12
+ }
package/tabs.js ADDED
@@ -0,0 +1,5 @@
1
+ "use client";
2
+ import component from "godown/tabs.js";
3
+ import create from "./lib/create.js";
4
+ export default create(component);
5
+ export * from "godown/tabs.js";