fui-material 2.8.0 → 2.8.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 +17 -17
- package/dist/f-ui-kit.es.js.map +1 -1
- package/dist/f-ui-kit.umd.js +2 -2
- package/dist/f-ui-kit.umd.js.map +1 -1
- package/dist/index.css +1 -1
- package/dist/types/context/{LibraryProvider.d.ts → FLibraryProvider.d.ts} +3 -3
- package/dist/types/context/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -6,9 +6,9 @@ export interface ILibApiService {
|
|
|
6
6
|
export interface LibraryConfig {
|
|
7
7
|
apiService: ILibApiService;
|
|
8
8
|
}
|
|
9
|
-
declare const
|
|
9
|
+
declare const FLibraryProvider: ({ children, config }: {
|
|
10
10
|
children: ReactNode;
|
|
11
11
|
config: LibraryConfig;
|
|
12
12
|
}) => import("react").JSX.Element;
|
|
13
|
-
export declare const
|
|
14
|
-
export default
|
|
13
|
+
export declare const useFLibraryContext: () => LibraryConfig;
|
|
14
|
+
export default FLibraryProvider;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as
|
|
1
|
+
export { default as FLibraryProvider } from "./FLibraryProvider";
|