@worldresources/wri-design-systems 2.142.1 → 2.142.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/index.d.ts CHANGED
@@ -534,6 +534,7 @@ interface ListItemProps {
534
534
  isExpanded?: boolean;
535
535
  onItemClick?: () => void;
536
536
  ariaLabel?: string;
537
+ disabled?: boolean;
537
538
  }
538
539
  interface ListProps {
539
540
  items: ListItemProps[];
@@ -652,15 +653,15 @@ type MobileTabBarItemProps = Omit<Tabs.TriggerProps, 'asChild'> & {
652
653
  bagdeCount?: number;
653
654
  disabled?: boolean;
654
655
  ref?: Ref<HTMLButtonElement>;
655
- hideLabel?: boolean;
656
656
  };
657
657
  type MobileTabBarProps = {
658
658
  defaultValue?: string;
659
659
  tabs: MobileTabBarItemProps[];
660
660
  onTabClick?: (tabValue: string) => void;
661
+ hideLabels?: boolean;
661
662
  };
662
663
 
663
- declare const MobileTabBar: ({ defaultValue, tabs, onTabClick, }: MobileTabBarProps) => _emotion_react_jsx_runtime.JSX.Element;
664
+ declare const MobileTabBar: ({ defaultValue, tabs, onTabClick, hideLabels, }: MobileTabBarProps) => _emotion_react_jsx_runtime.JSX.Element;
664
665
 
665
666
  type NavbarNavigationItemsProps = {
666
667
  label: string;