tcce-design-system-test 0.3.33 → 0.3.35

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.
@@ -1165,6 +1165,7 @@ export declare const Nav: IStyledComponentBase<"web", FastOmit<DetailedHTMLProps
1165
1165
  * @property iconColor - Optional color for the icon.
1166
1166
  * @property href - Optional internal navigation path (renders as Link component for SPA routing).
1167
1167
  * @property path - Optional external navigation URL (renders as Button and redirects to external app with encrypted token).
1168
+ * @property target - Optional target attribute for navigation. Defaults to '_blank' for external links (path).
1168
1169
  * @property permissions - List of permissions required to access this navigation item.
1169
1170
  * @property children - Optional array of child navigation items for nested navigation structures.
1170
1171
  */
@@ -1176,6 +1177,7 @@ export declare interface NavigationItem {
1176
1177
  iconColor?: string;
1177
1178
  href?: string;
1178
1179
  path?: string;
1180
+ target?: '_blank' | '_self' | '_parent' | '_top';
1179
1181
  permissions: Permission[];
1180
1182
  children?: NavigationItem[];
1181
1183
  }