@nationaldesignstudio/react 0.0.6 → 0.0.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/README.md +24 -26
- package/dist/assets/fonts/PPNeueMontreal-Variable.woff2 +0 -0
- package/dist/assets/react.svg +1 -0
- package/dist/components/atoms/accordion/accordion.d.ts +50 -0
- package/dist/components/{button → atoms/button}/button.d.ts +5 -4
- package/dist/components/atoms/pager-control/pager-control.d.ts +62 -0
- package/dist/components/{card → organisms/card}/card.d.ts +6 -2
- package/dist/components/{navbar → organisms/navbar}/navbar.d.ts +27 -1
- package/dist/components/sections/banner/banner.d.ts +64 -0
- package/dist/components/sections/card-grid/card-grid.d.ts +53 -0
- package/dist/components/sections/faq-section/faq-section.d.ts +44 -0
- package/dist/components/sections/hero/hero.d.ts +73 -0
- package/dist/components/sections/river/river.d.ts +63 -0
- package/dist/components/sections/tout/tout.d.ts +73 -0
- package/dist/components/sections/two-column-section/two-column-section.d.ts +58 -0
- package/dist/index.d.ts +28 -12
- package/dist/index.js +3185 -813
- package/dist/index.js.map +1 -1
- package/dist/tailwind.css +23 -0
- package/dist/tokens.css +9318 -1780
- package/package.json +23 -5
- package/src/App.css +0 -0
- package/src/App.tsx +7 -0
- package/src/assets/fonts/PPNeueMontreal-Variable.woff2 +0 -0
- package/src/assets/react.svg +1 -0
- package/src/components/atoms/accordion/accordion.stories.tsx +228 -0
- package/src/components/atoms/accordion/accordion.tsx +137 -0
- package/src/components/atoms/accordion/index.ts +6 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-charcoal-chromium-darwin.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-charcoal-chromium-linux.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-charcoal-outline-chromium-darwin.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-charcoal-outline-chromium-linux.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-charcoal-outline-quiet-chromium-darwin.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-charcoal-outline-quiet-chromium-linux.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-disabled-chromium-darwin.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-disabled-chromium-linux.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-ivory-chromium-darwin.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-ivory-chromium-linux.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-ivory-outline-chromium-darwin.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-ivory-outline-chromium-linux.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-ivory-outline-quiet-chromium-darwin.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-ivory-outline-quiet-chromium-linux.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-size-large-chromium-darwin.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-size-large-chromium-linux.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-size-medium-chromium-darwin.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-size-medium-chromium-linux.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-size-small-chromium-darwin.png +0 -0
- package/src/components/atoms/button/__screenshots__/button.visual.test.tsx/button-size-small-chromium-linux.png +0 -0
- package/src/components/atoms/button/button.stories.tsx +93 -0
- package/src/components/atoms/button/button.test.tsx +141 -0
- package/src/components/atoms/button/button.tsx +95 -0
- package/src/components/atoms/button/button.visual.test.tsx +102 -0
- package/src/components/atoms/button/icon-button.stories.tsx +175 -0
- package/src/components/atoms/button/icon-button.tsx +90 -0
- package/src/components/atoms/button/index.ts +6 -0
- package/src/components/atoms/pager-control/index.ts +5 -0
- package/src/components/atoms/pager-control/pager-control.stories.tsx +212 -0
- package/src/components/atoms/pager-control/pager-control.test.tsx +149 -0
- package/src/components/atoms/pager-control/pager-control.tsx +328 -0
- package/src/components/organisms/card/__screenshots__/card.visual.test.tsx/card-default-vertical-chromium-darwin.png +0 -0
- package/src/components/organisms/card/__screenshots__/card.visual.test.tsx/card-default-vertical-chromium-linux.png +0 -0
- package/src/components/organisms/card/__screenshots__/card.visual.test.tsx/card-horizontal-chromium-darwin.png +0 -0
- package/src/components/organisms/card/__screenshots__/card.visual.test.tsx/card-horizontal-chromium-linux.png +0 -0
- package/src/components/organisms/card/__screenshots__/card.visual.test.tsx/card-minimal-chromium-darwin.png +0 -0
- package/src/components/organisms/card/__screenshots__/card.visual.test.tsx/card-minimal-chromium-linux.png +0 -0
- package/src/components/organisms/card/__screenshots__/card.visual.test.tsx/card-without-actions-chromium-darwin.png +0 -0
- package/src/components/organisms/card/__screenshots__/card.visual.test.tsx/card-without-actions-chromium-linux.png +0 -0
- package/src/components/organisms/card/__screenshots__/card.visual.test.tsx/card-without-eyebrow-chromium-darwin.png +0 -0
- package/src/components/organisms/card/__screenshots__/card.visual.test.tsx/card-without-eyebrow-chromium-linux.png +0 -0
- package/src/components/organisms/card/__screenshots__/card.visual.test.tsx/card-without-image-chromium-darwin.png +0 -0
- package/src/components/organisms/card/__screenshots__/card.visual.test.tsx/card-without-image-chromium-linux.png +0 -0
- package/src/components/organisms/card/card.stories.tsx +293 -0
- package/src/components/organisms/card/card.test.tsx +245 -0
- package/src/components/organisms/card/card.tsx +227 -0
- package/src/components/organisms/card/card.visual.test.tsx +197 -0
- package/src/components/organisms/card/index.ts +19 -0
- package/src/components/organisms/navbar/__screenshots__/navbar.visual.test.tsx/navbar-active-link-chromium-darwin.png +0 -0
- package/src/components/organisms/navbar/__screenshots__/navbar.visual.test.tsx/navbar-active-link-chromium-linux.png +0 -0
- package/src/components/organisms/navbar/__screenshots__/navbar.visual.test.tsx/navbar-brand-only-chromium-darwin.png +0 -0
- package/src/components/organisms/navbar/__screenshots__/navbar.visual.test.tsx/navbar-brand-only-chromium-linux.png +0 -0
- package/src/components/organisms/navbar/__screenshots__/navbar.visual.test.tsx/navbar-default-chromium-darwin.png +0 -0
- package/src/components/organisms/navbar/__screenshots__/navbar.visual.test.tsx/navbar-default-chromium-linux.png +0 -0
- package/src/components/organisms/navbar/index.ts +18 -0
- package/src/components/organisms/navbar/navbar.stories.tsx +313 -0
- package/src/components/organisms/navbar/navbar.test.tsx +190 -0
- package/src/components/organisms/navbar/navbar.tsx +365 -0
- package/src/components/organisms/navbar/navbar.visual.test.tsx +85 -0
- package/src/components/organisms/us-gov-banner/__screenshots__/us-gov-banner.visual.test.tsx/us-gov-banner-custom-icon-chromium-darwin.png +0 -0
- package/src/components/organisms/us-gov-banner/__screenshots__/us-gov-banner.visual.test.tsx/us-gov-banner-custom-icon-chromium-linux.png +0 -0
- package/src/components/organisms/us-gov-banner/__screenshots__/us-gov-banner.visual.test.tsx/us-gov-banner-custom-text-chromium-darwin.png +0 -0
- package/src/components/organisms/us-gov-banner/__screenshots__/us-gov-banner.visual.test.tsx/us-gov-banner-custom-text-chromium-linux.png +0 -0
- package/src/components/organisms/us-gov-banner/__screenshots__/us-gov-banner.visual.test.tsx/us-gov-banner-default-chromium-darwin.png +0 -0
- package/src/components/organisms/us-gov-banner/__screenshots__/us-gov-banner.visual.test.tsx/us-gov-banner-default-chromium-linux.png +0 -0
- package/src/components/organisms/us-gov-banner/index.ts +1 -0
- package/src/components/organisms/us-gov-banner/us-gov-banner.stories.tsx +35 -0
- package/src/components/organisms/us-gov-banner/us-gov-banner.test.tsx +107 -0
- package/src/components/organisms/us-gov-banner/us-gov-banner.tsx +73 -0
- package/src/components/organisms/us-gov-banner/us-gov-banner.visual.test.tsx +46 -0
- package/src/components/sections/banner/banner.stories.tsx +150 -0
- package/src/components/sections/banner/banner.test.tsx +185 -0
- package/src/components/sections/banner/banner.tsx +132 -0
- package/src/components/sections/banner/index.ts +2 -0
- package/src/components/sections/card-grid/card-grid.stories.tsx +351 -0
- package/src/components/sections/card-grid/card-grid.tsx +118 -0
- package/src/components/sections/card-grid/index.ts +1 -0
- package/src/components/sections/faq-section/faq-section.tsx +76 -0
- package/src/components/sections/faq-section/index.ts +2 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a1-desktop-chromium-darwin.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a1-desktop-chromium-linux.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a1-mobile-chromium-darwin.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a1-mobile-chromium-linux.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a1-tablet-chromium-darwin.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a1-tablet-chromium-linux.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a2-desktop-chromium-darwin.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a2-desktop-chromium-linux.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a2-mobile-chromium-darwin.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a2-mobile-chromium-linux.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a2-tablet-chromium-darwin.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a2-tablet-chromium-linux.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a3-desktop-chromium-darwin.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a3-desktop-chromium-linux.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a3-mobile-chromium-darwin.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a3-mobile-chromium-linux.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a3-tablet-chromium-darwin.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-a3-tablet-chromium-linux.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-custom-class-chromium-darwin.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-custom-class-chromium-linux.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-default-chromium-linux.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-long-title-chromium-darwin.png +0 -0
- package/src/components/sections/hero/__screenshots__/hero.visual.test.tsx/hero-long-title-chromium-linux.png +0 -0
- package/src/components/sections/hero/hero.stories.tsx +145 -0
- package/src/components/sections/hero/hero.test.tsx +135 -0
- package/src/components/sections/hero/hero.tsx +190 -0
- package/src/components/sections/hero/hero.visual.test.tsx +140 -0
- package/src/components/sections/hero/index.ts +1 -0
- package/src/components/sections/prose/__screenshots__/prose.visual.test.tsx/prose-h3-heading-chromium-darwin.png +0 -0
- package/src/components/sections/prose/__screenshots__/prose.visual.test.tsx/prose-h3-heading-chromium-linux.png +0 -0
- package/src/components/sections/prose/__screenshots__/prose.visual.test.tsx/prose-multiple-paragraphs-chromium-darwin.png +0 -0
- package/src/components/sections/prose/__screenshots__/prose.visual.test.tsx/prose-multiple-paragraphs-chromium-linux.png +0 -0
- package/src/components/sections/prose/__screenshots__/prose.visual.test.tsx/prose-multiple-sections-chromium-darwin.png +0 -0
- package/src/components/sections/prose/__screenshots__/prose.visual.test.tsx/prose-multiple-sections-chromium-linux.png +0 -0
- package/src/components/sections/prose/__screenshots__/prose.visual.test.tsx/prose-single-section-chromium-darwin.png +0 -0
- package/src/components/sections/prose/__screenshots__/prose.visual.test.tsx/prose-single-section-chromium-linux.png +0 -0
- package/src/components/sections/prose/index.ts +6 -0
- package/src/components/sections/prose/prose.stories.tsx +144 -0
- package/src/components/sections/prose/prose.test.tsx +178 -0
- package/src/components/sections/prose/prose.tsx +88 -0
- package/src/components/sections/prose/prose.visual.test.tsx +105 -0
- package/src/components/sections/river/index.ts +1 -0
- package/src/components/sections/river/river.stories.tsx +237 -0
- package/src/components/sections/river/river.test.tsx +268 -0
- package/src/components/sections/river/river.tsx +175 -0
- package/src/components/sections/tout/index.ts +1 -0
- package/src/components/sections/tout/tout.stories.tsx +154 -0
- package/src/components/sections/tout/tout.test.tsx +242 -0
- package/src/components/sections/tout/tout.tsx +205 -0
- package/src/components/sections/two-column-section/index.ts +5 -0
- package/src/components/sections/two-column-section/two-column-section.stories.tsx +285 -0
- package/src/components/sections/two-column-section/two-column-section.tsx +155 -0
- package/src/index.ts +98 -0
- package/src/lib/utils.ts +6 -0
- package/src/main.tsx +13 -0
- package/src/stories/Introduction.mdx +114 -0
- package/src/stories/TokenShowcase.stories.tsx +92 -0
- package/src/stories/TokenShowcase.tsx +1352 -0
- package/src/styles.css +11 -0
- package/dist/components/hero/hero.d.ts +0 -17
- /package/dist/components/{button → atoms/button}/icon-button.d.ts +0 -0
- /package/dist/components/{us-gov-banner → organisms/us-gov-banner}/us-gov-banner.d.ts +0 -0
- /package/dist/components/{prose → sections/prose}/prose.d.ts +0 -0
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
/**
|
|
3
|
+
* Tout component based on Figma BaseKit / Touts
|
|
4
|
+
*
|
|
5
|
+
* A full-bleed section with a background image and overlaid content.
|
|
6
|
+
* Content can be positioned on the left side or centered.
|
|
7
|
+
*
|
|
8
|
+
* Responsive behavior:
|
|
9
|
+
* - Mobile (sm): 600px height, 4 columns with gap-20, content spans all 4 cols
|
|
10
|
+
* - Tablet (md): 750px height, 12 columns with gap-20, content spans 9 cols (left) or centered
|
|
11
|
+
* - Desktop (lg): 900px height, 24 columns with gap-20, content spans 9 cols (left) or centered
|
|
12
|
+
*
|
|
13
|
+
* This component is self-contained - do NOT wrap in a grid-container.
|
|
14
|
+
*/
|
|
15
|
+
export interface ToutProps extends React.HTMLAttributes<HTMLElement> {
|
|
16
|
+
/**
|
|
17
|
+
* The headline displayed in the tout
|
|
18
|
+
*/
|
|
19
|
+
headline: React.ReactNode;
|
|
20
|
+
/**
|
|
21
|
+
* The body text displayed below the headline (optional)
|
|
22
|
+
*/
|
|
23
|
+
body?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Primary action button (required)
|
|
26
|
+
*/
|
|
27
|
+
primaryAction: React.ReactNode;
|
|
28
|
+
/**
|
|
29
|
+
* Secondary action button (optional)
|
|
30
|
+
*/
|
|
31
|
+
secondaryAction?: React.ReactNode;
|
|
32
|
+
/**
|
|
33
|
+
* Background media (image or video element)
|
|
34
|
+
* Should be a full-bleed element that covers the entire section
|
|
35
|
+
*/
|
|
36
|
+
backgroundMedia: React.ReactNode;
|
|
37
|
+
/**
|
|
38
|
+
* Content alignment: left (default) or center
|
|
39
|
+
*/
|
|
40
|
+
align?: "left" | "center";
|
|
41
|
+
/**
|
|
42
|
+
* Show National Design Studio footer link at the bottom of the section
|
|
43
|
+
*/
|
|
44
|
+
ndstudioFooter?: boolean;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* Tout component for hero-like sections with background media and overlaid content.
|
|
48
|
+
*
|
|
49
|
+
* This component is self-contained with its own grid.
|
|
50
|
+
* Grid setup:
|
|
51
|
+
* - Desktop (lg): 24 columns, gap-spacing-20, content spans 9 cols
|
|
52
|
+
* - Tablet (md): 12 columns, gap-spacing-20, content spans 9 cols
|
|
53
|
+
* - Mobile: 4 columns, gap-spacing-20, content spans all 4 cols
|
|
54
|
+
*
|
|
55
|
+
* @example
|
|
56
|
+
* ```tsx
|
|
57
|
+
* <Tout
|
|
58
|
+
* headline="Feature Headline"
|
|
59
|
+
* body="Description of the feature..."
|
|
60
|
+
* primaryAction={<Button>Primary</Button>}
|
|
61
|
+
* secondaryAction={<Button variant="charcoalOutline">Secondary</Button>}
|
|
62
|
+
* backgroundMedia={
|
|
63
|
+
* <img
|
|
64
|
+
* src="/background.jpg"
|
|
65
|
+
* alt=""
|
|
66
|
+
* className="absolute inset-0 w-full h-full object-cover"
|
|
67
|
+
* />
|
|
68
|
+
* }
|
|
69
|
+
* />
|
|
70
|
+
* ```
|
|
71
|
+
*/
|
|
72
|
+
declare const Tout: React.ForwardRefExoticComponent<ToutProps & React.RefAttributes<HTMLElement>>;
|
|
73
|
+
export { Tout };
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { VariantProps } from 'class-variance-authority';
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
/**
|
|
4
|
+
* TwoColumnSection component for text-heavy content sections
|
|
5
|
+
*
|
|
6
|
+
* Layout:
|
|
7
|
+
* - Desktop (lg+): Title left, content right with border-top divider
|
|
8
|
+
* - Mobile/Tablet: Stacked vertically
|
|
9
|
+
*
|
|
10
|
+
* Uses the 24-column grid system.
|
|
11
|
+
*/
|
|
12
|
+
declare const twoColumnSectionVariants: (props?: ({
|
|
13
|
+
theme?: "light" | "dark" | null | undefined;
|
|
14
|
+
layout?: "asymmetric" | "equal" | null | undefined;
|
|
15
|
+
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
|
16
|
+
export interface TwoColumnSectionProps extends React.HTMLAttributes<HTMLElement>, VariantProps<typeof twoColumnSectionVariants> {
|
|
17
|
+
/**
|
|
18
|
+
* The title text displayed in the left column
|
|
19
|
+
*/
|
|
20
|
+
title: string;
|
|
21
|
+
/**
|
|
22
|
+
* Lead content - prominently styled (brighter text)
|
|
23
|
+
* Can be a string or ReactNode for rich content
|
|
24
|
+
*/
|
|
25
|
+
lead?: React.ReactNode;
|
|
26
|
+
/**
|
|
27
|
+
* Body content - secondary styled (muted text)
|
|
28
|
+
* Can be a string or ReactNode for rich content
|
|
29
|
+
*/
|
|
30
|
+
children: React.ReactNode;
|
|
31
|
+
/**
|
|
32
|
+
* Layout style for the columns
|
|
33
|
+
* - "asymmetric" (default): Uses 24-column grid with ~40/60 split (title: 9, content: 15)
|
|
34
|
+
* - "equal": Simple 2-column equal-width layout at md+ breakpoints
|
|
35
|
+
*/
|
|
36
|
+
layout?: "asymmetric" | "equal";
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* TwoColumnSection component for text-heavy content with title/content split.
|
|
40
|
+
*
|
|
41
|
+
* Layout:
|
|
42
|
+
* - Mobile/Tablet: Stacked (title above content)
|
|
43
|
+
* - Desktop (lg+): Title left (~40%), Content right (~60%)
|
|
44
|
+
*
|
|
45
|
+
* @example
|
|
46
|
+
* ```tsx
|
|
47
|
+
* <TwoColumnSection
|
|
48
|
+
* title="US Tech Force"
|
|
49
|
+
* lead="The US Tech Force is recruiting an elite corps of engineers..."
|
|
50
|
+
* theme="dark"
|
|
51
|
+
* >
|
|
52
|
+
* <p>Through a two-year program, participants will work...</p>
|
|
53
|
+
* <p>Upon completing the program, engineers can seek...</p>
|
|
54
|
+
* </TwoColumnSection>
|
|
55
|
+
* ```
|
|
56
|
+
*/
|
|
57
|
+
declare const TwoColumnSection: React.ForwardRefExoticComponent<TwoColumnSectionProps & React.RefAttributes<HTMLElement>>;
|
|
58
|
+
export { TwoColumnSection, twoColumnSectionVariants };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,13 +1,29 @@
|
|
|
1
|
-
export type {
|
|
2
|
-
export {
|
|
3
|
-
export type {
|
|
4
|
-
export {
|
|
5
|
-
export type {
|
|
6
|
-
export {
|
|
7
|
-
export type {
|
|
8
|
-
export {
|
|
9
|
-
export type {
|
|
10
|
-
export {
|
|
11
|
-
export type { USGovBannerProps } from './components/us-gov-banner';
|
|
12
|
-
export { USGovBanner } from './components/us-gov-banner';
|
|
1
|
+
export type { AccordionItemProps, AccordionProps, } from './components/atoms/accordion';
|
|
2
|
+
export { Accordion, AccordionItem } from './components/atoms/accordion';
|
|
3
|
+
export type { ButtonProps, IconButtonProps } from './components/atoms/button';
|
|
4
|
+
export { Button, buttonVariants, IconButton, iconButtonVariants, } from './components/atoms/button';
|
|
5
|
+
export type { PagerControlProps } from './components/atoms/pager-control';
|
|
6
|
+
export { PagerControl, pagerControlVariants, } from './components/atoms/pager-control';
|
|
7
|
+
export type { CardActionsProps, CardBodyProps, CardContentProps, CardDescriptionProps, CardEyebrowProps, CardImageProps, CardProps, CardTitleProps, } from './components/organisms/card';
|
|
8
|
+
export { Card, CardActions, CardBody, CardContent, CardDescription, CardEyebrow, CardImage, CardTitle, cardVariants, } from './components/organisms/card';
|
|
9
|
+
export type { NavbarActionsProps, NavbarBrandProps, NavbarLinkProps, NavbarLinksProps, NavbarMobileMenuButtonProps, NavbarMobileMenuLinkProps, NavbarMobileMenuProps, NavbarProps, } from './components/organisms/navbar';
|
|
10
|
+
export { Navbar, NavbarActions, NavbarBrand, NavbarLink, NavbarLinks, NavbarMobileMenu, NavbarMobileMenuButton, NavbarMobileMenuLink, } from './components/organisms/navbar';
|
|
11
|
+
export type { USGovBannerProps } from './components/organisms/us-gov-banner';
|
|
12
|
+
export { USGovBanner } from './components/organisms/us-gov-banner';
|
|
13
|
+
export type { BannerProps } from './components/sections/banner';
|
|
14
|
+
export { Banner, bannerVariants } from './components/sections/banner';
|
|
15
|
+
export type { CardGridProps } from './components/sections/card-grid';
|
|
16
|
+
export { CardGrid, cardGridVariants } from './components/sections/card-grid';
|
|
17
|
+
export type { FaqSectionProps } from './components/sections/faq-section';
|
|
18
|
+
export { FaqSection } from './components/sections/faq-section';
|
|
19
|
+
export type { HeroProps } from './components/sections/hero';
|
|
20
|
+
export { Hero } from './components/sections/hero';
|
|
21
|
+
export type { ProseProps, ProseSectionProps, } from './components/sections/prose';
|
|
22
|
+
export { Prose, ProseSection } from './components/sections/prose';
|
|
23
|
+
export type { RiverProps } from './components/sections/river';
|
|
24
|
+
export { River, riverVariants } from './components/sections/river';
|
|
25
|
+
export type { ToutProps } from './components/sections/tout';
|
|
26
|
+
export { Tout } from './components/sections/tout';
|
|
27
|
+
export type { TwoColumnSectionProps } from './components/sections/two-column-section';
|
|
28
|
+
export { TwoColumnSection, twoColumnSectionVariants, } from './components/sections/two-column-section';
|
|
13
29
|
export { cn } from './lib/utils';
|