fis-component 0.0.14 → 0.0.15

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.
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ declare const FisButton: () => React.JSX.Element;
3
+ export default FisButton;
@@ -1,2 +1 @@
1
- declare const FisButton: () => import("react/jsx-runtime").JSX.Element;
2
- export default FisButton;
1
+ export { default } from "./Button";
@@ -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/esm/index.js CHANGED
@@ -1,4 +1,3 @@
1
- import { jsx } from 'react/jsx-runtime';
2
1
  import * as React from 'react';
3
2
  import React__default, { version as version$2, isValidElement, useContext, createContext, useRef, useLayoutEffect as useLayoutEffect$1, useEffect, forwardRef, useMemo as useMemo$1, useState, Children, createRef } from 'react';
4
3
  import * as ReactDOM from 'react-dom';
@@ -9785,7 +9784,7 @@ if (process.env.NODE_ENV !== 'production') {
9785
9784
  }
9786
9785
 
9787
9786
  const FisButton = () => {
9788
- return jsx(Button, { children: "Hello from my React component!" });
9787
+ return React__default.createElement(Button, null, "Hello from my React component!");
9789
9788
  };
9790
9789
 
9791
9790
  export { FisButton };