@chromatic-com/tetra 3.2.3 → 3.2.4--canary.134.755ec7b.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.d.mts CHANGED
@@ -28,6 +28,7 @@ declare const color: {
28
28
  blue400: string;
29
29
  blue500: string;
30
30
  blue600: string;
31
+ blue700: string;
31
32
  blueTr10: string;
32
33
  blueTr50: string;
33
34
  cyan50: string;
@@ -594,7 +595,7 @@ interface HeaderLink {
594
595
  href: string;
595
596
  linkWrapper?: any;
596
597
  }
597
- type HeaderLinks = Record<LinkKeys, HeaderLink>;
598
+ type HeaderLinks = Partial<Record<LinkKeys, HeaderLink>>;
598
599
 
599
600
  interface HeaderProps {
600
601
  theme?: 'light' | 'dark';
@@ -611,7 +612,7 @@ interface HeaderProps {
611
612
  }
612
613
  type LinkKeys = 'signin' | 'signup' | 'uiTest' | 'visualTest' | 'interactionTest' | 'accessibilityTest' | 'storybook' | 'playwright' | 'cypress' | 'turboSnap' | 'uiReview' | 'publish' | 'figmaPlugin' | 'frontendTeams' | 'designSystems' | 'digitalAgencies' | 'aboutChromatic' | 'careers' | 'security' | 'enterprise' | 'netlify' | 'monday' | 'collective' | 'ezcater' | 'blog' | 'changelog' | 'frontendTestingGuide' | 'docs' | 'pricing' | 'sales' | 'steadySnap' | 'snapshotCalculator' | 'accessibilityBudgetCalculator' | 'frontendWorkflowForAI';
613
614
 
614
- declare const Header: ({ theme, links, logoLinkWrapper, desktopActiveId, fullWidth, loggedIn, maintenanceMode, isSticky, TrackSignUp, }: HeaderProps) => JSX.Element;
615
+ declare const Header: ({ theme, links: linkOverrides, logoLinkWrapper, desktopActiveId, fullWidth, loggedIn, maintenanceMode, isSticky, TrackSignUp, }: HeaderProps) => JSX.Element;
615
616
 
616
617
  declare const CollectiveIcon: () => JSX.Element;
617
618
 
package/dist/index.d.ts CHANGED
@@ -28,6 +28,7 @@ declare const color: {
28
28
  blue400: string;
29
29
  blue500: string;
30
30
  blue600: string;
31
+ blue700: string;
31
32
  blueTr10: string;
32
33
  blueTr50: string;
33
34
  cyan50: string;
@@ -594,7 +595,7 @@ interface HeaderLink {
594
595
  href: string;
595
596
  linkWrapper?: any;
596
597
  }
597
- type HeaderLinks = Record<LinkKeys, HeaderLink>;
598
+ type HeaderLinks = Partial<Record<LinkKeys, HeaderLink>>;
598
599
 
599
600
  interface HeaderProps {
600
601
  theme?: 'light' | 'dark';
@@ -611,7 +612,7 @@ interface HeaderProps {
611
612
  }
612
613
  type LinkKeys = 'signin' | 'signup' | 'uiTest' | 'visualTest' | 'interactionTest' | 'accessibilityTest' | 'storybook' | 'playwright' | 'cypress' | 'turboSnap' | 'uiReview' | 'publish' | 'figmaPlugin' | 'frontendTeams' | 'designSystems' | 'digitalAgencies' | 'aboutChromatic' | 'careers' | 'security' | 'enterprise' | 'netlify' | 'monday' | 'collective' | 'ezcater' | 'blog' | 'changelog' | 'frontendTestingGuide' | 'docs' | 'pricing' | 'sales' | 'steadySnap' | 'snapshotCalculator' | 'accessibilityBudgetCalculator' | 'frontendWorkflowForAI';
613
614
 
614
- declare const Header: ({ theme, links, logoLinkWrapper, desktopActiveId, fullWidth, loggedIn, maintenanceMode, isSticky, TrackSignUp, }: HeaderProps) => JSX.Element;
615
+ declare const Header: ({ theme, links: linkOverrides, logoLinkWrapper, desktopActiveId, fullWidth, loggedIn, maintenanceMode, isSticky, TrackSignUp, }: HeaderProps) => JSX.Element;
615
616
 
616
617
  declare const CollectiveIcon: () => JSX.Element;
617
618