@nationaldesignstudio/react 0.3.0 → 0.5.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/component-registry.md +1310 -127
- package/dist/components/atoms/button/button.d.ts +55 -47
- package/dist/components/atoms/button/button.figma.d.ts +1 -0
- package/dist/components/atoms/input/input.d.ts +24 -24
- package/dist/components/atoms/popover/popover.d.ts +195 -0
- package/dist/components/atoms/select/select.d.ts +24 -24
- package/dist/components/atoms/tooltip/tooltip.d.ts +161 -0
- package/dist/components/organisms/card/card.d.ts +1 -1
- package/dist/components/sections/hero/hero.d.ts +2 -2
- package/dist/components/sections/tout/tout.d.ts +3 -3
- package/dist/components/shared/floating-arrow.d.ts +34 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +11602 -8499
- package/dist/index.js.map +1 -1
- package/dist/lib/form-control.d.ts +25 -24
- package/dist/tokens.css +4797 -3940
- package/package.json +2 -1
- package/src/components/atoms/accordion/accordion.stories.tsx +1 -1
- package/src/components/atoms/accordion/accordion.tsx +2 -2
- package/src/components/atoms/button/button.figma.tsx +37 -0
- package/src/components/atoms/button/button.stories.tsx +236 -140
- package/src/components/atoms/button/button.test.tsx +289 -5
- package/src/components/atoms/button/button.tsx +37 -33
- package/src/components/atoms/button/button.visual.test.tsx +26 -76
- package/src/components/atoms/button/icon-button.stories.tsx +44 -101
- package/src/components/atoms/button/icon-button.test.tsx +26 -94
- package/src/components/atoms/button/icon-button.tsx +3 -3
- package/src/components/atoms/input/input-group.stories.tsx +4 -8
- package/src/components/atoms/input/input-group.test.tsx +14 -28
- package/src/components/atoms/input/input-group.tsx +57 -32
- package/src/components/atoms/input/input.stories.tsx +14 -18
- package/src/components/atoms/input/input.test.tsx +4 -20
- package/src/components/atoms/input/input.tsx +16 -9
- package/src/components/atoms/pager-control/pager-control.stories.tsx +6 -8
- package/src/components/atoms/pager-control/pager-control.tsx +12 -12
- package/src/components/atoms/popover/index.ts +30 -0
- package/src/components/atoms/popover/popover.stories.tsx +531 -0
- package/src/components/atoms/popover/popover.test.tsx +486 -0
- package/src/components/atoms/popover/popover.tsx +488 -0
- package/src/components/atoms/select/select.tsx +12 -8
- package/src/components/atoms/tooltip/index.ts +24 -0
- package/src/components/atoms/tooltip/tooltip.stories.tsx +348 -0
- package/src/components/atoms/tooltip/tooltip.test.tsx +363 -0
- package/src/components/atoms/tooltip/tooltip.tsx +347 -0
- package/src/components/dev-tools/dev-toolbar/dev-toolbar.stories.tsx +8 -13
- package/src/components/dev-tools/dev-toolbar/dev-toolbar.tsx +3 -3
- package/src/components/organisms/card/card.stories.tsx +19 -19
- package/src/components/organisms/card/card.tsx +1 -1
- package/src/components/organisms/card/card.visual.test.tsx +11 -11
- package/src/components/organisms/navbar/navbar.visual.test.tsx +2 -2
- package/src/components/organisms/us-gov-banner/us-gov-banner.tsx +2 -2
- package/src/components/sections/banner/banner.stories.tsx +1 -5
- package/src/components/sections/banner/banner.test.tsx +2 -2
- package/src/components/sections/banner/banner.tsx +6 -6
- package/src/components/sections/card-grid/card-grid.tsx +4 -4
- package/src/components/sections/hero/hero.stories.tsx +7 -7
- package/src/components/sections/hero/hero.tsx +10 -11
- package/src/components/sections/prose/prose.tsx +2 -2
- package/src/components/sections/river/river.test.tsx +3 -3
- package/src/components/sections/river/river.tsx +6 -12
- package/src/components/sections/tout/tout.stories.tsx +7 -31
- package/src/components/sections/tout/tout.tsx +9 -9
- package/src/components/sections/two-column-section/two-column-section.tsx +7 -9
- package/src/components/shared/floating-arrow.tsx +78 -0
- package/src/components/shared/index.ts +5 -0
- package/src/index.ts +57 -0
- package/src/lib/form-control.ts +8 -6
- package/src/stories/grid-system.stories.tsx +309 -0
- package/src/stories/{ThemeProvider.stories.tsx → theme-provider.stories.tsx} +7 -19
- package/src/stories/{TokenShowcase.stories.tsx → token-showcase.stories.tsx} +1 -1
- package/src/stories/{TokenShowcase.tsx → token-showcase.tsx} +34 -34
- package/src/styles.css +3 -3
- package/src/tests/token-resolution.test.tsx +6 -9
- package/src/theme/hooks.ts +1 -1
- package/src/theme/index.ts +1 -1
- package/src/theme/theme-provider.test.tsx +270 -0
- package/src/theme/{ThemeProvider.tsx → theme-provider.tsx} +18 -2
- package/src/stories/GridSystem.stories.tsx +0 -84
- /package/src/stories/{Introduction.mdx → introduction.mdx} +0 -0
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
import { Tooltip as BaseTooltip } from '@base-ui-components/react/tooltip';
|
|
2
|
+
import { VariantProps } from 'tailwind-variants';
|
|
3
|
+
import * as React from "react";
|
|
4
|
+
/**
|
|
5
|
+
* Tooltip popup variants
|
|
6
|
+
*
|
|
7
|
+
* Uses semantic tokens for themeable styling:
|
|
8
|
+
* - color.tooltip.bg - Dark background
|
|
9
|
+
* - color.tooltip.text - Light text
|
|
10
|
+
* - surface.tooltip.radius - Small border radius
|
|
11
|
+
* - spatial.component.tooltip.padding-x/y - Consistent padding
|
|
12
|
+
*/
|
|
13
|
+
declare const tooltipPopupVariants: import('tailwind-variants').TVReturnType<{
|
|
14
|
+
variant: {
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
}, undefined, string[], import('tailwind-variants/dist/config.js').TVConfig<{
|
|
18
|
+
variant: {
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
}, {
|
|
22
|
+
variant: {
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
}>, {
|
|
26
|
+
variant: {
|
|
27
|
+
default: string;
|
|
28
|
+
};
|
|
29
|
+
}, undefined, import('tailwind-variants').TVReturnType<{
|
|
30
|
+
variant: {
|
|
31
|
+
default: string;
|
|
32
|
+
};
|
|
33
|
+
}, undefined, string[], import('tailwind-variants/dist/config.js').TVConfig<{
|
|
34
|
+
variant: {
|
|
35
|
+
default: string;
|
|
36
|
+
};
|
|
37
|
+
}, {
|
|
38
|
+
variant: {
|
|
39
|
+
default: string;
|
|
40
|
+
};
|
|
41
|
+
}>, unknown, unknown, undefined>>;
|
|
42
|
+
/**
|
|
43
|
+
* Tooltip arrow variants - uses shared floating arrow variants
|
|
44
|
+
*/
|
|
45
|
+
declare const tooltipArrowVariants: import('tailwind-variants').TVReturnType<{} | {} | {}, undefined, string[], import('tailwind-variants/dist/config.js').TVConfig<unknown, {} | {}>, {} | {}, undefined, import('tailwind-variants').TVReturnType<unknown, undefined, string[], import('tailwind-variants/dist/config.js').TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
46
|
+
export interface TooltipProviderProps extends BaseTooltip.Provider.Props {
|
|
47
|
+
children: React.ReactNode;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Tooltip Provider
|
|
51
|
+
*
|
|
52
|
+
* Manages shared delays across multiple tooltips.
|
|
53
|
+
* Wrap your app or a section with this to enable tooltip delay grouping.
|
|
54
|
+
*/
|
|
55
|
+
declare const TooltipProvider: ({ children, ...props }: TooltipProviderProps) => import("react/jsx-runtime").JSX.Element;
|
|
56
|
+
export interface TooltipRootProps extends BaseTooltip.Root.Props {
|
|
57
|
+
children: React.ReactNode;
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* Tooltip Root
|
|
61
|
+
*
|
|
62
|
+
* Groups all tooltip parts. Does not render an element.
|
|
63
|
+
*/
|
|
64
|
+
declare const TooltipRoot: ({ children, ...props }: TooltipRootProps) => import("react/jsx-runtime").JSX.Element;
|
|
65
|
+
export interface TooltipTriggerProps extends React.ComponentProps<typeof BaseTooltip.Trigger> {
|
|
66
|
+
className?: string;
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* Tooltip Trigger
|
|
70
|
+
*
|
|
71
|
+
* The element that triggers the tooltip on hover/focus.
|
|
72
|
+
* Renders as the child element with tooltip behavior attached.
|
|
73
|
+
* When children is a single React element, uses `render` prop to avoid wrapper element.
|
|
74
|
+
*/
|
|
75
|
+
declare const TooltipTrigger: React.ForwardRefExoticComponent<Omit<TooltipTriggerProps, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
76
|
+
export interface TooltipPortalProps extends BaseTooltip.Portal.Props {
|
|
77
|
+
children: React.ReactNode;
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* Tooltip Portal
|
|
81
|
+
*
|
|
82
|
+
* Renders the tooltip popup in a portal outside the DOM hierarchy.
|
|
83
|
+
*/
|
|
84
|
+
declare const TooltipPortal: ({ children, ...props }: TooltipPortalProps) => import("react/jsx-runtime").JSX.Element;
|
|
85
|
+
export interface TooltipPositionerProps extends Omit<React.ComponentProps<typeof BaseTooltip.Positioner>, "className"> {
|
|
86
|
+
className?: string;
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* Tooltip Positioner
|
|
90
|
+
*
|
|
91
|
+
* Positions the tooltip popup relative to the trigger.
|
|
92
|
+
*/
|
|
93
|
+
declare const TooltipPositioner: React.ForwardRefExoticComponent<Omit<TooltipPositionerProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
94
|
+
export interface TooltipPopupProps extends Omit<React.ComponentProps<typeof BaseTooltip.Popup>, "className">, VariantProps<typeof tooltipPopupVariants> {
|
|
95
|
+
className?: string;
|
|
96
|
+
}
|
|
97
|
+
/**
|
|
98
|
+
* Tooltip Popup
|
|
99
|
+
*
|
|
100
|
+
* The tooltip content container with styled appearance.
|
|
101
|
+
*/
|
|
102
|
+
declare const TooltipPopup: React.ForwardRefExoticComponent<Omit<TooltipPopupProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
103
|
+
export interface TooltipArrowProps extends Omit<React.ComponentProps<typeof BaseTooltip.Arrow>, "className"> {
|
|
104
|
+
className?: string;
|
|
105
|
+
}
|
|
106
|
+
/**
|
|
107
|
+
* Tooltip Arrow
|
|
108
|
+
*
|
|
109
|
+
* Visual pointer element for the tooltip.
|
|
110
|
+
* Uses shared FloatingArrowSvg with tooltip-bg color token.
|
|
111
|
+
*/
|
|
112
|
+
declare const TooltipArrow: React.ForwardRefExoticComponent<Omit<TooltipArrowProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
113
|
+
export interface TooltipProps {
|
|
114
|
+
/** The content to show in the tooltip */
|
|
115
|
+
content: React.ReactNode;
|
|
116
|
+
/** The element that triggers the tooltip */
|
|
117
|
+
children: React.ReactNode;
|
|
118
|
+
/** Side of the trigger to show the tooltip */
|
|
119
|
+
side?: "top" | "bottom" | "left" | "right";
|
|
120
|
+
/** Offset from the trigger */
|
|
121
|
+
sideOffset?: number;
|
|
122
|
+
/** Alignment along the side */
|
|
123
|
+
align?: "start" | "center" | "end";
|
|
124
|
+
/** Delay before showing the tooltip (ms) */
|
|
125
|
+
delay?: number;
|
|
126
|
+
/** Delay before hiding the tooltip (ms) */
|
|
127
|
+
closeDelay?: number;
|
|
128
|
+
/** Whether to show an arrow */
|
|
129
|
+
showArrow?: boolean;
|
|
130
|
+
/** Controlled open state */
|
|
131
|
+
open?: boolean;
|
|
132
|
+
/** Default open state */
|
|
133
|
+
defaultOpen?: boolean;
|
|
134
|
+
/** Callback when open state changes */
|
|
135
|
+
onOpenChange?: (open: boolean) => void;
|
|
136
|
+
/** Additional className for the popup */
|
|
137
|
+
className?: string;
|
|
138
|
+
}
|
|
139
|
+
/**
|
|
140
|
+
* Tooltip
|
|
141
|
+
*
|
|
142
|
+
* A simple, pre-composed tooltip component for common use cases.
|
|
143
|
+
*
|
|
144
|
+
* @example
|
|
145
|
+
* ```tsx
|
|
146
|
+
* <Tooltip content="Save your changes">
|
|
147
|
+
* <Button>Save</Button>
|
|
148
|
+
* </Tooltip>
|
|
149
|
+
* ```
|
|
150
|
+
*/
|
|
151
|
+
declare const Tooltip: ({ content, children, side, sideOffset, align, delay, closeDelay, showArrow, open, defaultOpen, onOpenChange, className, }: TooltipProps) => import("react/jsx-runtime").JSX.Element;
|
|
152
|
+
export declare const TooltipParts: (({ children, ...props }: TooltipRootProps) => import("react/jsx-runtime").JSX.Element) & {
|
|
153
|
+
Provider: ({ children, ...props }: TooltipProviderProps) => import("react/jsx-runtime").JSX.Element;
|
|
154
|
+
Root: ({ children, ...props }: TooltipRootProps) => import("react/jsx-runtime").JSX.Element;
|
|
155
|
+
Trigger: React.ForwardRefExoticComponent<Omit<TooltipTriggerProps, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
156
|
+
Portal: ({ children, ...props }: TooltipPortalProps) => import("react/jsx-runtime").JSX.Element;
|
|
157
|
+
Positioner: React.ForwardRefExoticComponent<Omit<TooltipPositionerProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
158
|
+
Popup: React.ForwardRefExoticComponent<Omit<TooltipPopupProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
159
|
+
Arrow: React.ForwardRefExoticComponent<Omit<TooltipArrowProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
160
|
+
};
|
|
161
|
+
export { Tooltip, TooltipProvider, TooltipRoot, TooltipTrigger, TooltipPortal, TooltipPositioner, TooltipPopup, TooltipArrow, tooltipPopupVariants, tooltipArrowVariants, };
|
|
@@ -224,7 +224,7 @@ export interface CardBodyProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
224
224
|
* Uses spatial card tokens for consistent sizing.
|
|
225
225
|
*/
|
|
226
226
|
declare const CardBody: React.ForwardRefExoticComponent<CardBodyProps & React.RefAttributes<HTMLDivElement>>;
|
|
227
|
-
declare const cardActionsVariants: import('tailwind-variants').TVReturnType<{} | {} | {}, undefined, "flex gap-
|
|
227
|
+
declare const cardActionsVariants: import('tailwind-variants').TVReturnType<{} | {} | {}, undefined, "flex gap-12", import('tailwind-variants/dist/config.js').TVConfig<unknown, {} | {}>, {} | {}, undefined, import('tailwind-variants').TVReturnType<unknown, undefined, "flex gap-12", import('tailwind-variants/dist/config.js').TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
228
228
|
export interface CardActionsProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
229
229
|
}
|
|
230
230
|
/**
|
|
@@ -2,7 +2,7 @@ import { VariantProps } from 'tailwind-variants';
|
|
|
2
2
|
import { ComponentTheme } from '../../../lib/theme';
|
|
3
3
|
import * as React from "react";
|
|
4
4
|
export { Background as HeroBackground, BackgroundGradient as HeroGradient, type BackgroundGradientProps as HeroGradientProps, BackgroundImage as HeroBackgroundImage, type BackgroundImageProps as HeroBackgroundImageProps, BackgroundOverlay as HeroOverlay, type BackgroundOverlayProps as HeroOverlayProps, BackgroundStream as HeroBackgroundStream, type BackgroundStreamProps as HeroBackgroundStreamProps, BackgroundVideo as HeroBackgroundVideo, type BackgroundVideoProps as HeroBackgroundVideoProps, } from '../../atoms/background';
|
|
5
|
-
declare const DEFAULT_TITLE_TYPOGRAPHY = "
|
|
5
|
+
declare const DEFAULT_TITLE_TYPOGRAPHY = "typography-h1-display";
|
|
6
6
|
declare const heroVariants: import('tailwind-variants').TVReturnType<{
|
|
7
7
|
variant: {
|
|
8
8
|
A1: {
|
|
@@ -254,7 +254,7 @@ export interface HeroProps extends Omit<React.HTMLAttributes<HTMLElement>, "titl
|
|
|
254
254
|
title?: string;
|
|
255
255
|
/**
|
|
256
256
|
* Custom typography class for the title using primitive tokens.
|
|
257
|
-
* Default: "
|
|
257
|
+
* Default: "typography-h1-display"
|
|
258
258
|
*/
|
|
259
259
|
titleClassName?: string;
|
|
260
260
|
/**
|
|
@@ -127,9 +127,9 @@ export interface ToutProps extends React.HTMLAttributes<HTMLElement>, VariantPro
|
|
|
127
127
|
*
|
|
128
128
|
* This component is self-contained with its own grid.
|
|
129
129
|
* Grid setup:
|
|
130
|
-
* - Desktop (lg): 24 columns, gap-
|
|
131
|
-
* - Tablet (md): 12 columns, gap-
|
|
132
|
-
* - Mobile: 4 columns, gap-
|
|
130
|
+
* - Desktop (lg): 24 columns, gap-20, content spans 9 cols
|
|
131
|
+
* - Tablet (md): 12 columns, gap-20, content spans 9 cols
|
|
132
|
+
* - Mobile: 4 columns, gap-20, content spans all 4 cols
|
|
133
133
|
*
|
|
134
134
|
* @example
|
|
135
135
|
* ```tsx
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Shared arrow variants for floating UI components
|
|
3
|
+
*
|
|
4
|
+
* Used by Tooltip, Popover, and other floating components.
|
|
5
|
+
* Handles positioning based on the side attribute.
|
|
6
|
+
*/
|
|
7
|
+
export declare const floatingArrowVariants: import('tailwind-variants').TVReturnType<{} | {} | {}, undefined, string[], import('tailwind-variants/dist/config.js').TVConfig<unknown, {} | {}>, {} | {}, undefined, import('tailwind-variants').TVReturnType<unknown, undefined, string[], import('tailwind-variants/dist/config.js').TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
8
|
+
export interface FloatingArrowSvgProps {
|
|
9
|
+
/** CSS class for the main fill color (e.g., "fill-tooltip-bg" or "fill-overlay-background") */
|
|
10
|
+
fillClassName: string;
|
|
11
|
+
/** CSS class for the border color using fill-* (e.g., "fill-overlay-border") - renders as outline behind main fill */
|
|
12
|
+
borderClassName?: string;
|
|
13
|
+
/** Additional className for the SVG element */
|
|
14
|
+
className?: string;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* FloatingArrowSvg
|
|
18
|
+
*
|
|
19
|
+
* A shared arrow SVG component for floating UI elements.
|
|
20
|
+
* Use with Tooltip, Popover, Dropdown, and other floating components.
|
|
21
|
+
*
|
|
22
|
+
* @example
|
|
23
|
+
* ```tsx
|
|
24
|
+
* // For dark tooltip (no border)
|
|
25
|
+
* <FloatingArrowSvg fillClassName="fill-tooltip-bg" />
|
|
26
|
+
*
|
|
27
|
+
* // For light popover with border
|
|
28
|
+
* <FloatingArrowSvg
|
|
29
|
+
* fillClassName="fill-overlay-background"
|
|
30
|
+
* borderClassName="fill-overlay-border"
|
|
31
|
+
* />
|
|
32
|
+
* ```
|
|
33
|
+
*/
|
|
34
|
+
export declare const FloatingArrowSvg: ({ fillClassName, borderClassName, className, }: FloatingArrowSvgProps) => import("react/jsx-runtime").JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @nationaldesignstudio/react
|
|
3
|
+
* Design system components for React applications
|
|
4
|
+
*/
|
|
1
5
|
export type { AccordionItemProps, AccordionProps, } from './components/atoms/accordion';
|
|
2
6
|
export { Accordion, AccordionItem } from './components/atoms/accordion';
|
|
3
7
|
export type { BackgroundGradientProps, BackgroundImageProps, BackgroundOverlayProps, BackgroundProps, BackgroundStreamProps, BackgroundVideoProps, } from './components/atoms/background';
|
|
@@ -10,8 +14,12 @@ export type { NdstudioFooterProps } from './components/atoms/ndstudio-footer';
|
|
|
10
14
|
export { NdstudioFooter } from './components/atoms/ndstudio-footer';
|
|
11
15
|
export type { PagerControlProps } from './components/atoms/pager-control';
|
|
12
16
|
export { PagerControl, pagerControlVariants, } from './components/atoms/pager-control';
|
|
17
|
+
export type { PopoverArrowProps, PopoverBackdropProps, PopoverCloseProps, PopoverDescriptionProps, PopoverPopupProps, PopoverPortalProps, PopoverPositionerProps, PopoverProps, PopoverRootProps, PopoverTitleProps, PopoverTriggerProps, } from './components/atoms/popover';
|
|
18
|
+
export { Popover, PopoverArrow, PopoverBackdrop, PopoverClose, PopoverDescription, PopoverParts, PopoverPopup, PopoverPortal, PopoverPositioner, PopoverRoot, PopoverTitle, PopoverTrigger, popoverArrowVariants, popoverPopupVariants, } from './components/atoms/popover';
|
|
13
19
|
export type { SelectGroupLabelProps, SelectGroupProps, SelectOptionProps, SelectPopupProps, SelectProps, SelectTriggerProps, } from './components/atoms/select';
|
|
14
20
|
export { Select, SelectGroup, SelectGroupLabel, SelectOption, SelectPopup, SelectRoot, SelectTrigger, selectOptionVariants, selectPopupVariants, selectTriggerVariants, } from './components/atoms/select';
|
|
21
|
+
export type { TooltipArrowProps, TooltipPopupProps, TooltipPortalProps, TooltipPositionerProps, TooltipProps, TooltipProviderProps, TooltipRootProps, TooltipTriggerProps, } from './components/atoms/tooltip';
|
|
22
|
+
export { Tooltip, TooltipArrow, TooltipParts, TooltipPopup, TooltipPortal, TooltipPositioner, TooltipProvider, TooltipRoot, TooltipTrigger, tooltipArrowVariants, tooltipPopupVariants, } from './components/atoms/tooltip';
|
|
15
23
|
export type { DevToolbarProps, GridOverlayProps } from './components/dev-tools';
|
|
16
24
|
export { DevToolbar, GridOverlay } from './components/dev-tools';
|
|
17
25
|
export type { CardActionsProps, CardBodyProps, CardContentProps, CardDescriptionProps, CardEyebrowProps, CardImageProps, CardProps, CardTitleProps, } from './components/organisms/card';
|