@underverse-ui/underverse 1.0.193 → 1.0.194
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 +27 -0
- package/api-reference.json +1 -1
- package/dist/index.cjs +830 -564
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +498 -232
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2934,8 +2934,9 @@ interface AccessDeniedProps {
|
|
|
2934
2934
|
className?: string;
|
|
2935
2935
|
children?: React__default.ReactNode;
|
|
2936
2936
|
overflowHidden?: boolean;
|
|
2937
|
+
code?: string;
|
|
2937
2938
|
}
|
|
2938
|
-
declare function AccessDenied({ title, description, variant, icon: Icon, className, children, overflowHidden, }: AccessDeniedProps): react_jsx_runtime.JSX.Element;
|
|
2939
|
+
declare function AccessDenied({ title, description, variant, icon: Icon, className, children, overflowHidden, code, }: AccessDeniedProps): react_jsx_runtime.JSX.Element;
|
|
2939
2940
|
|
|
2940
2941
|
type ThemeMode = "light" | "dark" | "system";
|
|
2941
2942
|
/** Public props for the `ThemeToggleHeadless` component. */
|
package/dist/index.d.ts
CHANGED
|
@@ -2934,8 +2934,9 @@ interface AccessDeniedProps {
|
|
|
2934
2934
|
className?: string;
|
|
2935
2935
|
children?: React__default.ReactNode;
|
|
2936
2936
|
overflowHidden?: boolean;
|
|
2937
|
+
code?: string;
|
|
2937
2938
|
}
|
|
2938
|
-
declare function AccessDenied({ title, description, variant, icon: Icon, className, children, overflowHidden, }: AccessDeniedProps): react_jsx_runtime.JSX.Element;
|
|
2939
|
+
declare function AccessDenied({ title, description, variant, icon: Icon, className, children, overflowHidden, code, }: AccessDeniedProps): react_jsx_runtime.JSX.Element;
|
|
2939
2940
|
|
|
2940
2941
|
type ThemeMode = "light" | "dark" | "system";
|
|
2941
2942
|
/** Public props for the `ThemeToggleHeadless` component. */
|