@cencomalls/cencob2b-storybook 1.0.5 → 1.0.7
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/components/index.d.ts +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +2 -2
- package/src/components/index.tsx +1 -0
- package/src/index.tsx +1 -1
@@ -0,0 +1 @@
|
|
1
|
+
export * from "./Banner";
|
package/dist/index.d.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export
|
1
|
+
export * from "./components";
|
package/dist/index.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
import{jsx as
|
1
|
+
import{jsx as r}from"react/jsx-runtime";var e=()=>r("div",{children:r("h1",{children:"Banner"})}),n=e;export{n as Banner};
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@cencomalls/cencob2b-storybook",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.7",
|
4
4
|
"main": "dist/index.cjs.js",
|
5
5
|
"module": "dist/index.esm.js",
|
6
6
|
"types": "dist/index.d.ts",
|
@@ -16,7 +16,7 @@
|
|
16
16
|
"author": "Jonas",
|
17
17
|
"license": "ISC",
|
18
18
|
"description": "",
|
19
|
-
"
|
19
|
+
"dependencies": {
|
20
20
|
"react": "^19.0.0",
|
21
21
|
"react-dom": "^19.0.0"
|
22
22
|
},
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from "./Banner";
|
package/src/index.tsx
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export
|
1
|
+
export * from "./components";
|