@chromatic-com/tetra 2.2.0--canary.123.e5580f6.0 → 2.2.1--canary.124.829803a.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 +3 -4
- package/dist/index.d.ts +3 -4
- package/dist/index.js +414 -312
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +331 -312
- package/dist/index.mjs.map +1 -1
- package/package.json +18 -18
package/dist/index.d.mts
CHANGED
|
@@ -408,6 +408,7 @@ declare const icons: {
|
|
|
408
408
|
readonly linkedin: JSX.Element;
|
|
409
409
|
readonly vscode: JSX.Element;
|
|
410
410
|
readonly bluesky: JSX.Element;
|
|
411
|
+
readonly photostabilize: JSX.Element;
|
|
411
412
|
};
|
|
412
413
|
|
|
413
414
|
type Icons = keyof typeof icons;
|
|
@@ -514,7 +515,6 @@ interface ButtonProps {
|
|
|
514
515
|
size?: 'sm' | 'md' | 'lg';
|
|
515
516
|
variant?: 'solid' | 'outline';
|
|
516
517
|
color?: 'blue' | 'white' | 'slate';
|
|
517
|
-
inverted?: boolean;
|
|
518
518
|
leftIcon?: Icons;
|
|
519
519
|
rightIcon?: Icons;
|
|
520
520
|
href?: string;
|
|
@@ -607,7 +607,7 @@ interface HeaderProps {
|
|
|
607
607
|
children: ReactNode;
|
|
608
608
|
}>;
|
|
609
609
|
}
|
|
610
|
-
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';
|
|
610
|
+
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';
|
|
611
611
|
|
|
612
612
|
declare const Header: ({ theme, links, logoLinkWrapper, desktopActiveId, fullWidth, loggedIn, maintenanceMode, isSticky, TrackSignUp, }: HeaderProps) => JSX.Element;
|
|
613
613
|
|
|
@@ -638,7 +638,6 @@ interface LinkProps {
|
|
|
638
638
|
children: React__default.ReactNode;
|
|
639
639
|
size?: 'default' | 'sm' | 'md' | 'lg';
|
|
640
640
|
color?: keyof typeof color;
|
|
641
|
-
inverted?: boolean;
|
|
642
641
|
leftIcon?: Icons;
|
|
643
642
|
rightIcon?: Icons;
|
|
644
643
|
href?: string;
|
|
@@ -806,4 +805,4 @@ declare const Text: FC<TextProps>;
|
|
|
806
805
|
|
|
807
806
|
declare const cssVariables: string;
|
|
808
807
|
|
|
809
|
-
export { Accordion, Avatar, BBCIcon, Button, CollectiveIcon, Container, CustomerStoryHero, CypressIcon, Divider, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuItem, EzCaterIcon, FigmaIcon, Footer,
|
|
808
|
+
export { Accordion, Avatar, BBCIcon, Button, CollectiveIcon, Container, CustomerStoryHero, CypressIcon, Divider, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuItem, EzCaterIcon, FigmaIcon, Footer, FooterProps, FullWidthContainer, Grid, HStack, Header, HeaderProps, Icon, Icons, IntegrationImage, Link, LinkWithWrapper, ListTypes, Logo, MondayIcon, NavDropdownMenu, NetlifyIcon, NormalizeArea, PlaywrightIcon, Stack, Stat, SubNav, Testimonial, Text, VStack, animations, breakpoint, color, cssVariables, fontFamily, fontSize, fontWeight, lineHeight, max2xl, maxLg, maxMd, maxSm, maxXl, min2xl, minBase, minLg, minMd, minSm, minXl, spacing, t, typography, useMediaQuery };
|
package/dist/index.d.ts
CHANGED
|
@@ -408,6 +408,7 @@ declare const icons: {
|
|
|
408
408
|
readonly linkedin: JSX.Element;
|
|
409
409
|
readonly vscode: JSX.Element;
|
|
410
410
|
readonly bluesky: JSX.Element;
|
|
411
|
+
readonly photostabilize: JSX.Element;
|
|
411
412
|
};
|
|
412
413
|
|
|
413
414
|
type Icons = keyof typeof icons;
|
|
@@ -514,7 +515,6 @@ interface ButtonProps {
|
|
|
514
515
|
size?: 'sm' | 'md' | 'lg';
|
|
515
516
|
variant?: 'solid' | 'outline';
|
|
516
517
|
color?: 'blue' | 'white' | 'slate';
|
|
517
|
-
inverted?: boolean;
|
|
518
518
|
leftIcon?: Icons;
|
|
519
519
|
rightIcon?: Icons;
|
|
520
520
|
href?: string;
|
|
@@ -607,7 +607,7 @@ interface HeaderProps {
|
|
|
607
607
|
children: ReactNode;
|
|
608
608
|
}>;
|
|
609
609
|
}
|
|
610
|
-
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';
|
|
610
|
+
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';
|
|
611
611
|
|
|
612
612
|
declare const Header: ({ theme, links, logoLinkWrapper, desktopActiveId, fullWidth, loggedIn, maintenanceMode, isSticky, TrackSignUp, }: HeaderProps) => JSX.Element;
|
|
613
613
|
|
|
@@ -638,7 +638,6 @@ interface LinkProps {
|
|
|
638
638
|
children: React__default.ReactNode;
|
|
639
639
|
size?: 'default' | 'sm' | 'md' | 'lg';
|
|
640
640
|
color?: keyof typeof color;
|
|
641
|
-
inverted?: boolean;
|
|
642
641
|
leftIcon?: Icons;
|
|
643
642
|
rightIcon?: Icons;
|
|
644
643
|
href?: string;
|
|
@@ -806,4 +805,4 @@ declare const Text: FC<TextProps>;
|
|
|
806
805
|
|
|
807
806
|
declare const cssVariables: string;
|
|
808
807
|
|
|
809
|
-
export { Accordion, Avatar, BBCIcon, Button, CollectiveIcon, Container, CustomerStoryHero, CypressIcon, Divider, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuItem, EzCaterIcon, FigmaIcon, Footer,
|
|
808
|
+
export { Accordion, Avatar, BBCIcon, Button, CollectiveIcon, Container, CustomerStoryHero, CypressIcon, Divider, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuItem, EzCaterIcon, FigmaIcon, Footer, FooterProps, FullWidthContainer, Grid, HStack, Header, HeaderProps, Icon, Icons, IntegrationImage, Link, LinkWithWrapper, ListTypes, Logo, MondayIcon, NavDropdownMenu, NetlifyIcon, NormalizeArea, PlaywrightIcon, Stack, Stat, SubNav, Testimonial, Text, VStack, animations, breakpoint, color, cssVariables, fontFamily, fontSize, fontWeight, lineHeight, max2xl, maxLg, maxMd, maxSm, maxXl, min2xl, minBase, minLg, minMd, minSm, minXl, spacing, t, typography, useMediaQuery };
|