fis-component 0.0.8 → 0.0.10
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.
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/Button/index.d.ts +1 -2
- package/dist/cjs/types/index.d.ts +1 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Button/index.d.ts +1 -2
- package/dist/esm/types/index.d.ts +1 -1
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1,2 +1 @@
|
|
|
1
|
-
declare const
|
|
2
|
-
export default ButtonCM;
|
|
1
|
+
export declare const FisButton: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { default as MyComponent } from "./components/MyComponent";
|
|
2
|
-
export {
|
|
2
|
+
export { FisButton } from "./components/Button";
|
package/dist/esm/index.js
CHANGED
|
@@ -9788,9 +9788,9 @@ if (process.env.NODE_ENV !== 'production') {
|
|
|
9788
9788
|
Button.displayName = 'Button';
|
|
9789
9789
|
}
|
|
9790
9790
|
|
|
9791
|
-
const
|
|
9791
|
+
const FisButton = () => {
|
|
9792
9792
|
return jsx(Button, { children: "Hello from my React component!" });
|
|
9793
9793
|
};
|
|
9794
9794
|
|
|
9795
|
-
export {
|
|
9795
|
+
export { FisButton, MyComponent };
|
|
9796
9796
|
//# sourceMappingURL=index.js.map
|