@kvell-group/ui 1.8.0 → 1.8.1
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/README.md
CHANGED
|
Binary file
|
|
@@ -1,4 +1,2 @@
|
|
|
1
|
-
import { MantineProviderProps
|
|
2
|
-
|
|
3
|
-
export declare function MantineProvider({ children, theme }: MantineProviderProps): import("react/jsx-runtime").JSX.Element;
|
|
4
|
-
export {};
|
|
1
|
+
import { MantineProviderProps } from '@mantine/core';
|
|
2
|
+
export declare function MantineProvider({ children, theme, ...restProps }: MantineProviderProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -416,8 +416,15 @@ function T({
|
|
|
416
416
|
);
|
|
417
417
|
}
|
|
418
418
|
T.displayName = "@mantine/core/MantineProvider";
|
|
419
|
-
function fr({ children: r, theme: o }) {
|
|
420
|
-
return /* @__PURE__ */ v(
|
|
419
|
+
function fr({ children: r, theme: o, ...a }) {
|
|
420
|
+
return /* @__PURE__ */ v(
|
|
421
|
+
T,
|
|
422
|
+
{
|
|
423
|
+
theme: o,
|
|
424
|
+
...a,
|
|
425
|
+
children: r
|
|
426
|
+
}
|
|
427
|
+
);
|
|
421
428
|
}
|
|
422
429
|
export {
|
|
423
430
|
fr as MantineProvider
|