fis-component 0.0.12 → 0.0.13

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 @@
1
- export declare const FisButton: () => import("react/jsx-runtime").JSX.Element;
1
+ export declare const FisButton: () => import("react").JSX.Element;
@@ -1,2 +1,2 @@
1
- declare const MyComponent: () => import("react/jsx-runtime").JSX.Element;
1
+ declare const MyComponent: () => import("react").JSX.Element;
2
2
  export default MyComponent;
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
- import * as react_jsx_runtime from 'react/jsx-runtime';
1
+ import * as react from 'react';
2
2
 
3
- declare const MyComponent: () => react_jsx_runtime.JSX.Element;
3
+ declare const MyComponent: () => react.JSX.Element;
4
4
 
5
- declare const FisButton: () => react_jsx_runtime.JSX.Element;
5
+ declare const FisButton: () => react.JSX.Element;
6
6
 
7
7
  export { FisButton, MyComponent };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fis-component",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "description": "",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -73,11 +73,6 @@
73
73
  },
74
74
  "eslintConfig": {
75
75
  "extends": [
76
- "plugin:storybook/recommended",
77
- "plugin:storybook/recommended",
78
- "plugin:storybook/recommended",
79
- "plugin:storybook/recommended",
80
- "plugin:storybook/recommended",
81
76
  "plugin:storybook/recommended"
82
77
  ]
83
78
  },