@ctlyst.id/internal-ui 5.6.6 → 5.6.8

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.mts CHANGED
@@ -686,6 +686,7 @@ type SubMenuItem = {
686
686
  navHost: string;
687
687
  title: string;
688
688
  id: number;
689
+ itemProps?: NavItemProps;
689
690
  };
690
691
  type MenuItem = {
691
692
  id: number;
@@ -694,6 +695,7 @@ type MenuItem = {
694
695
  navHost?: string;
695
696
  title: string;
696
697
  type: string;
698
+ itemProps?: NavItemProps;
697
699
  children: SubMenuItem[];
698
700
  };
699
701
 
package/dist/index.d.ts CHANGED
@@ -686,6 +686,7 @@ type SubMenuItem = {
686
686
  navHost: string;
687
687
  title: string;
688
688
  id: number;
689
+ itemProps?: NavItemProps;
689
690
  };
690
691
  type MenuItem = {
691
692
  id: number;
@@ -694,6 +695,7 @@ type MenuItem = {
694
695
  navHost?: string;
695
696
  title: string;
696
697
  type: string;
698
+ itemProps?: NavItemProps;
697
699
  children: SubMenuItem[];
698
700
  };
699
701