fui-material 2.7.0 → 2.7.2
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/f-ui-kit.es.js +8 -1
- package/dist/f-ui-kit.es.js.map +1 -1
- package/dist/f-ui-kit.umd.js +1 -1
- package/dist/f-ui-kit.umd.js.map +1 -1
- package/dist/types/context/LibraryProvider.d.ts +2 -1
- package/dist/types/context/index.d.ts +1 -0
- package/dist/types/index.d.ts +1 -0
- package/package.json +3 -3
|
@@ -6,8 +6,9 @@ export interface ILibApiService {
|
|
|
6
6
|
export interface LibraryConfig {
|
|
7
7
|
apiService: ILibApiService;
|
|
8
8
|
}
|
|
9
|
-
|
|
9
|
+
declare const LibraryProvider: ({ children, config }: {
|
|
10
10
|
children: ReactNode;
|
|
11
11
|
config: LibraryConfig;
|
|
12
12
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
13
13
|
export declare const useLibraryContext: () => LibraryConfig;
|
|
14
|
+
export default LibraryProvider;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as LibraryProvider } from "./LibraryProvider";
|
package/dist/types/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fui-material",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -21,7 +21,6 @@
|
|
|
21
21
|
"build-storybook": "storybook build"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@tanstack/react-query": "^5.101.4",
|
|
25
24
|
"allorion-exporting-html-to-docx": "1.4.1",
|
|
26
25
|
"allorion-exporting-html-to-xlsx": "1.9.0",
|
|
27
26
|
"axios": "^1.7.4",
|
|
@@ -29,7 +28,8 @@
|
|
|
29
28
|
},
|
|
30
29
|
"peerDependencies": {
|
|
31
30
|
"react": ">=18.0.0",
|
|
32
|
-
"react-dom": ">=18.0.0"
|
|
31
|
+
"react-dom": ">=18.0.0",
|
|
32
|
+
"@tanstack/react-query": "^5.101.4"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@chromatic-com/storybook": "^3.2.6",
|