fis-component 0.0.13 → 0.0.14

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.
@@ -1 +1,2 @@
1
- export declare const FisButton: () => import("react").JSX.Element;
1
+ declare const FisButton: () => import("react/jsx-runtime").JSX.Element;
2
+ export default FisButton;
@@ -1,2 +1,2 @@
1
- declare const MyComponent: () => import("react").JSX.Element;
1
+ declare const MyComponent: () => import("react/jsx-runtime").JSX.Element;
2
2
  export default MyComponent;
@@ -0,0 +1 @@
1
+ export { default as FisButton } from "./Button";
@@ -1,2 +1 @@
1
- export { default as MyComponent } from "./components/MyComponent";
2
- export { FisButton } from "./components/Button";
1
+ export * from "./components";
package/dist/index.d.ts CHANGED
@@ -1,7 +1,5 @@
1
- import * as react from 'react';
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
 
3
- declare const MyComponent: () => react.JSX.Element;
3
+ declare const FisButton: () => react_jsx_runtime.JSX.Element;
4
4
 
5
- declare const FisButton: () => react.JSX.Element;
6
-
7
- export { FisButton, MyComponent };
5
+ export { FisButton };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fis-component",
3
- "version": "0.0.13",
3
+ "version": "0.0.14",
4
4
  "description": "",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -35,7 +35,7 @@
35
35
  "@babel/preset-typescript": "^7.23.3",
36
36
  "@commitlint/cli": "^18.6.0",
37
37
  "@commitlint/config-conventional": "^18.6.0",
38
- "@rollup/plugin-commonjs": "^25.0.7",
38
+ "@rollup/plugin-commonjs": "^25.0.8",
39
39
  "@rollup/plugin-node-resolve": "^15.2.3",
40
40
  "@rollup/plugin-typescript": "^11.1.6",
41
41
  "@storybook/addon-essentials": "^7.6.13",
@@ -63,7 +63,8 @@
63
63
  "jest-environment-jsdom": "^29.7.0",
64
64
  "react": "^18.2.0",
65
65
  "react-dom": "^18.2.0",
66
- "rollup-plugin-dts": "^6.1.0",
66
+ "rollup": "^4.21.3",
67
+ "rollup-plugin-dts": "^6.1.1",
67
68
  "rollup-plugin-postcss": "^4.0.2",
68
69
  "standard-version": "^9.5.0",
69
70
  "storybook": "^7.6.13",
@@ -89,4 +90,4 @@
89
90
  "types": "./dist/index.d.ts"
90
91
  }
91
92
  }
92
- }
93
+ }