@umami/react-zen 0.150.0 → 0.152.0
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/index.css +1462 -1478
- package/dist/index.d.mts +5 -4
- package/dist/index.d.ts +5 -4
- package/dist/index.js +660 -644
- package/dist/index.mjs +663 -647
- package/package.json +1 -1
- package/styles.css +1468 -1484
package/dist/index.d.mts
CHANGED
|
@@ -509,9 +509,10 @@ interface NavbarItemProps extends HTMLAttributes<HTMLElement> {
|
|
|
509
509
|
declare function NavbarItem({ label, children, className, ...props }: NavbarItemProps): react.JSX.Element;
|
|
510
510
|
|
|
511
511
|
interface NavMenuProps extends ColumnProps {
|
|
512
|
-
|
|
512
|
+
itemBackgroundColor?: string;
|
|
513
|
+
muteItems?: boolean;
|
|
513
514
|
}
|
|
514
|
-
declare function NavMenu({
|
|
515
|
+
declare function NavMenu({ itemBackgroundColor, muteItems, className, style, children, ...props }: NavMenuProps): react.JSX.Element;
|
|
515
516
|
interface NavMenuGroupProps extends ColumnProps {
|
|
516
517
|
title?: string;
|
|
517
518
|
allowMinimize?: boolean;
|
|
@@ -580,13 +581,13 @@ interface SelectProps extends SelectProps$1<HTMLSelectElement> {
|
|
|
580
581
|
declare function Select({ items, value, defaultValue, label, isLoading, allowSearch, searchValue, searchDelay, onSearch, onSelectionChange, onChange, buttonProps, listProps, popoverProps, renderValue, className, children, ...props }: SelectProps): react.JSX.Element;
|
|
581
582
|
|
|
582
583
|
interface SidebarProps extends ColumnProps {
|
|
583
|
-
|
|
584
|
+
itemBackgroundColor?: string;
|
|
584
585
|
isCollapsed?: boolean;
|
|
585
586
|
muteItems?: boolean;
|
|
586
587
|
showBorder?: boolean;
|
|
587
588
|
children?: ReactNode;
|
|
588
589
|
}
|
|
589
|
-
declare function Sidebar({
|
|
590
|
+
declare function Sidebar({ itemBackgroundColor, isCollapsed, muteItems, showBorder, className, children, ...props }: SidebarProps): react.JSX.Element;
|
|
590
591
|
declare function SidebarSection({ title, className, children, ...props }: {
|
|
591
592
|
title?: string;
|
|
592
593
|
children: ReactNode;
|
package/dist/index.d.ts
CHANGED
|
@@ -509,9 +509,10 @@ interface NavbarItemProps extends HTMLAttributes<HTMLElement> {
|
|
|
509
509
|
declare function NavbarItem({ label, children, className, ...props }: NavbarItemProps): react.JSX.Element;
|
|
510
510
|
|
|
511
511
|
interface NavMenuProps extends ColumnProps {
|
|
512
|
-
|
|
512
|
+
itemBackgroundColor?: string;
|
|
513
|
+
muteItems?: boolean;
|
|
513
514
|
}
|
|
514
|
-
declare function NavMenu({
|
|
515
|
+
declare function NavMenu({ itemBackgroundColor, muteItems, className, style, children, ...props }: NavMenuProps): react.JSX.Element;
|
|
515
516
|
interface NavMenuGroupProps extends ColumnProps {
|
|
516
517
|
title?: string;
|
|
517
518
|
allowMinimize?: boolean;
|
|
@@ -580,13 +581,13 @@ interface SelectProps extends SelectProps$1<HTMLSelectElement> {
|
|
|
580
581
|
declare function Select({ items, value, defaultValue, label, isLoading, allowSearch, searchValue, searchDelay, onSearch, onSelectionChange, onChange, buttonProps, listProps, popoverProps, renderValue, className, children, ...props }: SelectProps): react.JSX.Element;
|
|
581
582
|
|
|
582
583
|
interface SidebarProps extends ColumnProps {
|
|
583
|
-
|
|
584
|
+
itemBackgroundColor?: string;
|
|
584
585
|
isCollapsed?: boolean;
|
|
585
586
|
muteItems?: boolean;
|
|
586
587
|
showBorder?: boolean;
|
|
587
588
|
children?: ReactNode;
|
|
588
589
|
}
|
|
589
|
-
declare function Sidebar({
|
|
590
|
+
declare function Sidebar({ itemBackgroundColor, isCollapsed, muteItems, showBorder, className, children, ...props }: SidebarProps): react.JSX.Element;
|
|
590
591
|
declare function SidebarSection({ title, className, children, ...props }: {
|
|
591
592
|
title?: string;
|
|
592
593
|
children: ReactNode;
|