fis-component 0.0.12 → 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.
- package/dist/cjs/index.js +580 -35750
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/Button/index.d.ts +2 -1
- package/dist/cjs/types/components/index.d.ts +1 -0
- package/dist/cjs/types/index.d.ts +1 -2
- package/dist/esm/index.js +597 -35784
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Button/index.d.ts +2 -1
- package/dist/esm/types/components/index.d.ts +1 -0
- package/dist/esm/types/index.d.ts +1 -2
- package/dist/index.d.ts +1 -3
- package/package.json +5 -9
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
declare const FisButton: () => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
export default FisButton;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as FisButton } from "./Button";
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
export { FisButton } from "./components/Button";
|
|
1
|
+
export * from "./components";
|
package/dist/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fis-component",
|
|
3
|
-
"version": "0.0.
|
|
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.
|
|
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
|
|
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",
|
|
@@ -73,11 +74,6 @@
|
|
|
73
74
|
},
|
|
74
75
|
"eslintConfig": {
|
|
75
76
|
"extends": [
|
|
76
|
-
"plugin:storybook/recommended",
|
|
77
|
-
"plugin:storybook/recommended",
|
|
78
|
-
"plugin:storybook/recommended",
|
|
79
|
-
"plugin:storybook/recommended",
|
|
80
|
-
"plugin:storybook/recommended",
|
|
81
77
|
"plugin:storybook/recommended"
|
|
82
78
|
]
|
|
83
79
|
},
|
|
@@ -94,4 +90,4 @@
|
|
|
94
90
|
"types": "./dist/index.d.ts"
|
|
95
91
|
}
|
|
96
92
|
}
|
|
97
|
-
}
|
|
93
|
+
}
|