Migrate Dialog component from useStyles to useDefinition

Signed-off-by: Johan Persson <johanopersson@gmail.com>
This commit is contained in:
Johan Persson
2026-02-25 17:31:52 +01:00
parent 54d5ba4cff
commit 08bc4dbcfe
10 changed files with 274 additions and 122 deletions
+37 -22
View File
@@ -2,8 +2,8 @@
## Status Overview
- **Migrated (9):** Accordion, Alert, Avatar, Box, Button, ButtonIcon, ButtonLink, Card, Checkbox
- **Remaining (28):** see tasks below
- **Migrated (28):** Accordion, Alert, Avatar, Box, Button, ButtonIcon, ButtonLink, Card, Checkbox, Container, Dialog, FieldError, FieldLabel, Flex, FullPage, Grid, Link, PasswordField, Popover, SearchField, Skeleton, Switch, Text, TextField, ToggleButton, ToggleButtonGroup, Tooltip, VisuallyHidden
- **Remaining (9 component tasks + 3 cleanup):** see tasks below
- **Final cleanup:** delete useStyles + legacy types
## Reference Patterns
@@ -48,37 +48,37 @@ These are the simplest migrations — single component, no bg, no utility props.
- [x] **Task 1: Migrate Avatar** — Single component, has dataAttributes for `size` and `variant`. See `Avatar/definition.ts` and `Avatar/Avatar.tsx`.
- [x] **Task 1.5: Fix Avatar types**`types.ts` is not according to the qa criteria. See `Avatar/types.ts`.
- [x] **Task 2: Migrate Checkbox** — Single component, dataAttributes for `selected` and `indeterminate`. See `Checkbox/definition.ts` and `Checkbox/Checkbox.tsx`.
- [ ] **Task 3: Migrate Container**Single component, dataAttributes for `maxWidth`. See `Container/definition.ts` and `Container/Container.tsx`.
- [ ] **Task 4: Migrate FieldError**Single component, no dataAttributes. See `FieldError/definition.ts` and `FieldError/FieldError.tsx`.
- [ ] **Task 5: Migrate FieldLabel**Single component, dataAttributes for `size` and `disabled`. See `FieldLabel/definition.ts` and `FieldLabel/FieldLabel.tsx`.
- [ ] **Task 6: Migrate Link**Single component, dataAttributes for `variant`. See `Link/definition.ts` and `Link/Link.tsx`.
- [ ] **Task 7: Migrate Skeleton** Single component, dataAttributes for `variant`. See `Skeleton/definition.ts` and `Skeleton/Skeleton.tsx`.
- [ ] **Task 8: Migrate Switch** — Single component, dataAttributes for `labelPosition`. See `Switch/definition.ts` and `Switch/Switch.tsx`.
- [ ] **Task 9: Migrate Tooltip** — Single component, no dataAttributes. See `Tooltip/definition.ts` and `Tooltip/Tooltip.tsx`.
- [ ] **Task 10: Migrate VisuallyHidden** — Single component, no dataAttributes. See `VisuallyHidden/definition.ts` and `VisuallyHidden/VisuallyHidden.tsx`.
- [ ] **Task 11: Migrate Popover** — Single component, dataAttributes for `placement` and `triggerAction`. See `Popover/definition.ts` and `Popover/Popover.tsx`.
- [ ] **Task 12: Migrate FullPage** — Single component, no dataAttributes. See `FullPage/definition.ts` and `FullPage/FullPage.tsx`.
- [ ] **Task 13: Migrate ToggleButton** — Single component, dataAttributes for `size` and `variant`. See `ToggleButton/definition.ts` and `ToggleButton/ToggleButton.tsx`.
- [ ] **Task 14: Migrate ToggleButtonGroup** — Single component, dataAttributes for `orientation`. See `ToggleButtonGroup/definition.ts` and `ToggleButtonGroup/ToggleButtonGroup.tsx`.
- [x] **Task 3: Migrate Container**Has utilityProps, no dataAttributes. User style overrides utilityStyle.
- [x] **Task 4: Migrate FieldError**React Aria wrapper. OwnProps only has className (style/children via restProps).
- [x] **Task 5: Migrate FieldLabel**Multiple classNames, no children prop, no style (would break downstream types).
- [x] **Task 6: Migrate Link**Fixed variant default from 'body' to 'body-medium'. Defaults in definition.ts.
- [x] **Task 7: Migrate Skeleton** — dataAttribute for rounded, width/height as inline styles with defaults.
- [x] **Task 8: Migrate Switch** — Single component, no custom dataAttributes (plan incorrectly mentioned labelPosition). See `Switch/definition.ts` and `Switch/Switch.tsx`.
- [x] **Task 9: Migrate Tooltip** — Single component, no custom dataAttributes (CSS uses React Aria built-in ones). See `Tooltip/definition.ts` and `Tooltip/Tooltip.tsx`.
- [x] **Task 10: Migrate VisuallyHidden** — Single component, no dataAttributes. Only className in OwnProps (children/style pass through restProps). See `VisuallyHidden/definition.ts` and `VisuallyHidden/VisuallyHidden.tsx`.
- [x] **Task 11: Migrate Popover** — Single component, no custom dataAttributes (plan incorrectly mentioned placement/triggerAction — those are React Aria built-in). See `Popover/definition.ts` and `Popover/Popover.tsx`.
- [x] **Task 12: Migrate FullPage** — Single component, no dataAttributes. See `FullPage/definition.ts` and `FullPage/FullPage.tsx`.
- [x] **Task 13: Migrate ToggleButton** — Single component, dataAttributes for `size` and `variant`. See `ToggleButton/definition.ts` and `ToggleButton/ToggleButton.tsx`.
- [x] **Task 14: Migrate ToggleButtonGroup** — Single component, dataAttributes for `orientation`. See `ToggleButtonGroup/definition.ts` and `ToggleButtonGroup/ToggleButtonGroup.tsx`.
### Batch 2: Form components (single-file, no bg, no utility props)
- [ ] **Task 15: Migrate PasswordField** — Single component, dataAttributes for `size`. See `PasswordField/definition.ts` and `PasswordField/PasswordField.tsx`.
- [ ] **Task 16: Migrate SearchField** — Single component, dataAttributes for `size`. See `SearchField/definition.ts` and `SearchField/SearchField.tsx`.
- [ ] **Task 17: Migrate TextField** — Single component, dataAttributes for `size`. See `TextField/definition.ts` and `TextField/TextField.tsx`.
- [x] **Task 15: Migrate PasswordField** — Single component, dataAttributes for `size`. See `PasswordField/definition.ts` and `PasswordField/PasswordField.tsx`.
- [x] **Task 16: Migrate SearchField** — Single component, dataAttributes for `size` and `startCollapsed`. See `SearchField/definition.ts` and `SearchField/SearchField.tsx`.
- [x] **Task 17: Migrate TextField** — Single component, dataAttributes for `size`. `invalid`/`disabled` are React Aria built-ins, not custom dataAttributes. See `TextField/definition.ts` and `TextField/TextField.tsx`.
### Batch 3: Components with utility props (no bg)
- [ ] **Task 18: Migrate Text**Has utilityProps. dataAttributes for `variant`, `color`, `weight`, `truncate`, `align`. See `Text/definition.ts` and `Text/Text.tsx`.
- [x] **Task 18: Migrate Text**Polymorphic component (no utilityProps despite plan). dataAttributes for `variant`, `color`, `weight`, `truncate`. Added `className` to existing `TextOwnProps`. See `Text/definition.ts` and `Text/Text.tsx`.
### Batch 4: Components with bg: 'provider' + utility props
- [ ] **Task 19: Migrate Flex** — bg provider with utilityProps. Currently manually calls useBgProvider and wraps in BgProvider. See `Flex/definition.ts` and `Flex/Flex.tsx`.
- [ ] **Task 20: Migrate Grid** — bg provider with utilityProps. Has two sub-components: GridRoot and GridItem, both use useBgProvider. See `Grid/definition.ts` and `Grid/Grid.tsx`.
- [x] **Task 19: Migrate Flex** — bg provider with utilityProps. Uses `childrenWithBgProvider` pattern from Box. Gap default handled via `{ gap: '4', ...props }` since utility prop defaults not supported in defineComponent. See `Flex/definition.ts` and `Flex/Flex.tsx`.
- [x] **Task 20: Migrate Grid** — bg provider with utilityProps. Two sub-components (GridRoot, GridItem), both bg providers. Uses `childrenWithBgProvider` pattern. GridRoot defaults `columns: 'auto'` and `gap: '4'` via spread pattern. See `Grid/definition.ts` and `Grid/Grid.tsx`.
### Batch 5: Multi-sub-component directories
- [ ] **Task 21: Migrate Dialog** — Multiple sub-components (Dialog, DialogHeader, DialogBody, DialogFooter, DialogCloseButton). See `Dialog/definition.ts` and `Dialog/Dialog.tsx`.
- [x] **Task 21: Migrate Dialog** — Multiple sub-components (Dialog, DialogHeader, DialogBody, DialogFooter). Split monolithic definition into 4 per-sub-component definitions. Used `classNameTarget: 'dialog'` for Dialog since className targets inner RADialog, not Modal overlay. Added `style` to DialogOwnProps for manual merging with CSS custom properties. Added DialogFooterProps/OwnProps (was inline type). DialogTrigger unchanged (no useStyles usage).
- [ ] **Task 22: Migrate HeaderPage** — Multiple sub-components (HeaderPage, HeaderPageContent). See `HeaderPage/definition.ts` and `HeaderPage/HeaderPage.tsx`.
- [ ] **Task 23: Migrate PluginHeader** — Multiple sub-components (PluginHeader, PluginHeaderToolbar). See `PluginHeader/definition.ts` and `PluginHeader/PluginHeader.tsx` + `PluginHeaderToolbar.tsx`.
- [ ] **Task 24: Migrate RadioGroup** — Multiple sub-components (RadioGroup, Radio). See `RadioGroup/definition.ts` and `RadioGroup/RadioGroup.tsx`.
@@ -97,7 +97,22 @@ These are the simplest migrations — single component, no bg, no utility props.
## Discoveries / Notes
- 7 of 37 styled components already migrated (~19%)
- 20 of 31 component tasks complete (~65%), plus 3 cleanup tasks remaining. 26 unique components migrated.
- Only 3 sub-components need bg: 'provider' (Flex, GridRoot, GridItem). No unmigrated components use useBgConsumer.
- InternalLinkProvider is a context provider, not a styled component — no migration needed.
- useStyles.ts already imports helpers from useDefinition (resolveResponsiveValue, processUtilityProps), confirming shared infrastructure.
- Link had pre-existing type mismatch: variant default 'body' didn't match TextVariants type. Old dataAttributes listed ['subtitle','body','caption','label'] but CSS uses TextVariants. Fixed default to 'body-medium'.
- Rule 5 ("add style: {} to propDefs") only applies when the component uses style directly. For React Aria wrappers (FieldError) and components where style would break downstream types (FieldLabel), let style pass through restProps instead.
- useDefinition auto-merges className into classes (line 109) but does NOT auto-merge style. Components with utilityProps must merge manually: `{...utilityStyle, ...style}` (user style wins).
- docs-ui Link props-definition.tsx was missing 'info' from color values — fixed.
- Several task descriptions incorrectly claimed custom dataAttributes (Switch: "labelPosition", Popover: "placement"/"triggerAction") that are actually React Aria built-in data attributes. Always verify dataAttributes against the old `definition.ts` `dataAttributes` map, not CSS selectors — CSS `data-*` selectors are often React Aria built-ins.
- Each migrated component's `index.ts` needs `OwnProps` added to type exports.
- `useDefinition` must be the FIRST line in the component. Never access raw `props` after that — use `ownProps` and `restProps` exclusively. Props not in OwnProps (e.g. `aria-label`) can be read from `restProps` when needed (e.g. for effects) and still pass through via `{...restProps}`.
- Only extend another component's full prop type (e.g. FieldLabelProps) if you also spread `restProps` onto that component. If you only use specific props from it in the implementation, declare those individually in OwnProps (using `FieldLabelProps['key']` syntax) instead.
- Components using `export * from './types'` in index.ts auto-export OwnProps — no index.ts change needed for those.
- TextField's old `dataAttributes` included `invalid` and `disabled`, but these are React Aria built-in data attributes applied automatically by `AriaTextField`. Only `size` needed `dataAttribute: true` in propDefs. Same pattern applies to all React Aria field components.
- Text has NO utilityProps despite the plan claiming otherwise. Always verify against the actual old `definition.ts`, not the plan description.
- When a component applies `className` to an element other than the root (e.g. Dialog applies `className` to the inner `<RADialog>` rather than the `<Modal>` overlay), use the `classNameTarget` option: `useDefinition(def, props, { classNameTarget: 'dialog' })`. This tells `useDefinition` to merge the user's `className` into `classes.dialog` instead of `classes.root`.
- For utility prop defaults (e.g. Flex's `gap: '4'`), `defineComponent` has no mechanism. Pass the default in the props spread to useDefinition: `useDefinition(def, { gap: '4', ...props })`. This is the same pattern the old useStyles code used.
- For bg providers with style: merge order should be `{ ...utilityStyle, ...ownProps.style }` (user style wins). Note Box uses the opposite order `{ ...ownProps.style, ...utilityStyle }` — this is a pre-existing inconsistency, not something to fix during migration.
- Only spread `restProps` when the component actually inherits props it needs to pass through (e.g. HTML attributes from extending `React.HTMLAttributes`, or React Aria props). If all props are consumed by `propDefs` and `utilityProps`, omit `restProps` entirely — don't spread an empty object for consistency's sake.
+93 -33
View File
@@ -13,7 +13,6 @@ import type { ComponentProps } from 'react';
import type { ComponentPropsWithoutRef } from 'react';
import type { ComponentPropsWithRef } from 'react';
import type { CSSProperties } from 'react';
import { DetailedHTMLProps } from 'react';
import type { DialogTriggerProps as DialogTriggerProps_2 } from 'react-aria-components';
import type { DisclosureGroupProps } from 'react-aria-components';
import type { DisclosurePanelProps } from 'react-aria-components';
@@ -21,7 +20,6 @@ import type { DisclosureProps } from 'react-aria-components';
import type { ElementType } from 'react';
import { ForwardRefExoticComponent } from 'react';
import type { HeadingProps } from 'react-aria-components';
import { HTMLAttributes } from 'react';
import { JSX as JSX_2 } from 'react/jsx-runtime';
import type { LinkProps as LinkProps_2 } from 'react-aria-components';
import type { ListBoxItemProps } from 'react-aria-components';
@@ -939,59 +937,121 @@ export const DialogBody: ForwardRefExoticComponent<
>;
// @public
export interface DialogBodyProps {
// (undocumented)
children?: React.ReactNode;
// (undocumented)
export const DialogBodyDefinition: {
readonly styles: {
readonly [key: string]: string;
};
readonly classNames: {
readonly root: 'bui-DialogBody';
};
readonly propDefs: {
readonly children: {};
readonly className: {};
};
};
// @public (undocumented)
export type DialogBodyOwnProps = {
children?: ReactNode;
className?: string;
}
};
// @public
export interface DialogBodyProps extends DialogBodyOwnProps {}
// @public
export const DialogDefinition: {
readonly styles: {
readonly [key: string]: string;
};
readonly classNames: {
readonly overlay: 'bui-DialogOverlay';
readonly root: 'bui-DialogOverlay';
readonly dialog: 'bui-Dialog';
readonly content: 'bui-DialogContent';
readonly header: 'bui-DialogHeader';
readonly headerTitle: 'bui-DialogHeaderTitle';
readonly body: 'bui-DialogBody';
readonly footer: 'bui-DialogFooter';
};
readonly propDefs: {
readonly children: {};
readonly className: {};
readonly width: {};
readonly height: {};
readonly style: {};
};
};
// @public (undocumented)
export const DialogFooter: ForwardRefExoticComponent<
Omit<
DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>,
'ref'
> &
RefAttributes<HTMLDivElement>
DialogFooterProps & RefAttributes<HTMLDivElement>
>;
// @public
export const DialogFooterDefinition: {
readonly styles: {
readonly [key: string]: string;
};
readonly classNames: {
readonly root: 'bui-DialogFooter';
};
readonly propDefs: {
readonly children: {};
readonly className: {};
};
};
// @public (undocumented)
export type DialogFooterOwnProps = {
children?: ReactNode;
className?: string;
};
// @public
export interface DialogFooterProps
extends DialogFooterOwnProps,
Omit<React.ComponentPropsWithoutRef<'div'>, keyof DialogFooterOwnProps> {}
// @public (undocumented)
export const DialogHeader: ForwardRefExoticComponent<
DialogHeaderProps & RefAttributes<HTMLDivElement>
>;
// @public
export interface DialogHeaderProps extends HeadingProps {
// (undocumented)
children?: React.ReactNode;
// (undocumented)
export const DialogHeaderDefinition: {
readonly styles: {
readonly [key: string]: string;
};
readonly classNames: {
readonly root: 'bui-DialogHeader';
readonly title: 'bui-DialogHeaderTitle';
};
readonly propDefs: {
readonly children: {};
readonly className: {};
};
};
// @public (undocumented)
export type DialogHeaderOwnProps = {
children?: ReactNode;
className?: string;
}
};
// @public
export interface DialogProps extends ModalOverlayProps {
// (undocumented)
children?: React.ReactNode;
// (undocumented)
export interface DialogHeaderProps
extends DialogHeaderOwnProps,
Omit<HeadingProps, keyof DialogHeaderOwnProps> {}
// @public (undocumented)
export type DialogOwnProps = {
children?: ReactNode;
className?: string;
// (undocumented)
height?: number | string;
// (undocumented)
width?: number | string;
}
height?: number | string;
style?: React.CSSProperties;
};
// @public
export interface DialogProps
extends DialogOwnProps,
Omit<ModalOverlayProps, keyof DialogOwnProps> {}
// @public (undocumented)
export const DialogTrigger: (props: DialogTriggerProps) => JSX_2.Element;
@@ -1098,7 +1158,7 @@ export type FlexDirection = 'row' | 'column';
// @public (undocumented)
export type FlexOwnProps = {
children?: ReactNode;
children: ReactNode;
className?: string;
style?: CSSProperties;
bg?: Responsive<ProviderBg>;
@@ -1214,7 +1274,7 @@ export const GridItemDefinition: {
// @public (undocumented)
export type GridItemOwnProps = {
children?: ReactNode;
children: ReactNode;
className?: string;
style?: CSSProperties;
bg?: Responsive<ProviderBg>;
@@ -1234,7 +1294,7 @@ export interface GridItemProps extends GridItemOwnProps {
// @public (undocumented)
export type GridOwnProps = {
children?: ReactNode;
children: ReactNode;
className?: string;
style?: CSSProperties;
bg?: Responsive<ProviderBg>;
+28 -44
View File
@@ -21,21 +21,25 @@ import {
Modal,
Heading,
} from 'react-aria-components';
import clsx from 'clsx';
import type {
DialogTriggerProps,
DialogHeaderProps,
DialogProps,
DialogBodyProps,
DialogFooterProps,
} from './types';
import { RiCloseLine } from '@remixicon/react';
import { Button } from '../Button';
import { useStyles } from '../../hooks/useStyles';
import { DialogDefinition } from './definition';
import { Flex } from '../Flex';
import { useDefinition } from '../../hooks/useDefinition';
import {
DialogDefinition,
DialogHeaderDefinition,
DialogBodyDefinition,
DialogFooterDefinition,
} from './definition';
import { Box } from '../Box';
import { BgReset } from '../../hooks/useBg';
import styles from './Dialog.module.css';
import { Flex } from '../Flex';
/** @public */
export const DialogTrigger = (props: DialogTriggerProps) => {
@@ -45,23 +49,21 @@ export const DialogTrigger = (props: DialogTriggerProps) => {
/** @public */
export const Dialog = forwardRef<React.ElementRef<typeof Modal>, DialogProps>(
(props, ref) => {
const { classNames, cleanedProps } = useStyles(DialogDefinition, props);
const { className, children, width, height, style, ...rest } = cleanedProps;
const { ownProps, restProps } = useDefinition(DialogDefinition, props, {
classNameTarget: 'dialog',
});
const { classes, children, width, height, style } = ownProps;
return (
<Modal
ref={ref}
className={clsx(classNames.overlay, styles[classNames.overlay])}
className={classes.root}
isDismissable
isKeyboardDismissDisabled={false}
{...rest}
{...restProps}
>
<RADialog
className={clsx(
classNames.dialog,
styles[classNames.dialog],
className,
)}
className={classes.dialog}
style={{
['--bui-dialog-min-width' as keyof React.CSSProperties]:
typeof width === 'number' ? `${width}px` : width || '400px',
@@ -74,10 +76,7 @@ export const Dialog = forwardRef<React.ElementRef<typeof Modal>, DialogProps>(
}}
>
<BgReset>
<Box
bg="neutral"
className={clsx(classNames.content, styles[classNames.content])}
>
<Box bg="neutral" className={classes.content}>
{children}
</Box>
</BgReset>
@@ -94,19 +93,12 @@ export const DialogHeader = forwardRef<
React.ElementRef<'div'>,
DialogHeaderProps
>((props, ref) => {
const { classNames, cleanedProps } = useStyles(DialogDefinition, props);
const { className, children, ...rest } = cleanedProps;
const { ownProps, restProps } = useDefinition(DialogHeaderDefinition, props);
const { classes, children } = ownProps;
return (
<Flex
ref={ref}
className={clsx(classNames.header, styles[classNames.header], className)}
{...rest}
>
<Heading
slot="title"
className={clsx(classNames.headerTitle, styles[classNames.headerTitle])}
>
<Flex ref={ref} className={classes.root} {...restProps}>
<Heading slot="title" className={classes.title}>
{children}
</Heading>
<Button name="close" aria-label="Close" variant="tertiary" slot="close">
@@ -120,15 +112,11 @@ DialogHeader.displayName = 'DialogHeader';
/** @public */
export const DialogBody = forwardRef<React.ElementRef<'div'>, DialogBodyProps>(
(props, ref) => {
const { classNames, cleanedProps } = useStyles(DialogDefinition, props);
const { className, children, ...rest } = cleanedProps;
const { ownProps, restProps } = useDefinition(DialogBodyDefinition, props);
const { classes, children } = ownProps;
return (
<div
className={clsx(classNames.body, styles[classNames.body], className)}
ref={ref}
{...rest}
>
<div className={classes.root} ref={ref} {...restProps}>
{children}
</div>
);
@@ -140,17 +128,13 @@ DialogBody.displayName = 'DialogBody';
/** @public */
export const DialogFooter = forwardRef<
React.ElementRef<'div'>,
React.ComponentPropsWithoutRef<'div'>
DialogFooterProps
>((props, ref) => {
const { classNames, cleanedProps } = useStyles(DialogDefinition, props);
const { className, children, ...rest } = cleanedProps;
const { ownProps, restProps } = useDefinition(DialogFooterDefinition, props);
const { classes, children } = ownProps;
return (
<div
ref={ref}
className={clsx(classNames.footer, styles[classNames.footer], className)}
{...rest}
>
<div ref={ref} className={classes.root} {...restProps}>
{children}
</div>
);
@@ -14,20 +14,77 @@
* limitations under the License.
*/
import type { ComponentDefinition } from '../../types';
import { defineComponent } from '../../hooks/useDefinition';
import type {
DialogOwnProps,
DialogHeaderOwnProps,
DialogBodyOwnProps,
DialogFooterOwnProps,
} from './types';
import styles from './Dialog.module.css';
/**
* Component definition for Dialog
* @public
*/
export const DialogDefinition = {
export const DialogDefinition = defineComponent<DialogOwnProps>()({
styles,
classNames: {
overlay: 'bui-DialogOverlay',
root: 'bui-DialogOverlay',
dialog: 'bui-Dialog',
content: 'bui-DialogContent',
header: 'bui-DialogHeader',
headerTitle: 'bui-DialogHeaderTitle',
body: 'bui-DialogBody',
footer: 'bui-DialogFooter',
},
} as const satisfies ComponentDefinition;
propDefs: {
children: {},
className: {},
width: {},
height: {},
style: {},
},
});
/**
* Component definition for DialogHeader
* @public
*/
export const DialogHeaderDefinition = defineComponent<DialogHeaderOwnProps>()({
styles,
classNames: {
root: 'bui-DialogHeader',
title: 'bui-DialogHeaderTitle',
},
propDefs: {
children: {},
className: {},
},
});
/**
* Component definition for DialogBody
* @public
*/
export const DialogBodyDefinition = defineComponent<DialogBodyOwnProps>()({
styles,
classNames: {
root: 'bui-DialogBody',
},
propDefs: {
children: {},
className: {},
},
});
/**
* Component definition for DialogFooter
* @public
*/
export const DialogFooterDefinition = defineComponent<DialogFooterOwnProps>()({
styles,
classNames: {
root: 'bui-DialogFooter',
},
propDefs: {
children: {},
className: {},
},
});
+6 -1
View File
@@ -14,5 +14,10 @@
* limitations under the License.
*/
export * from './Dialog';
export { DialogDefinition } from './definition';
export {
DialogDefinition,
DialogHeaderDefinition,
DialogBodyDefinition,
DialogFooterDefinition,
} from './definition';
export * from './types';
+40 -11
View File
@@ -14,6 +14,7 @@
* limitations under the License.
*/
import type { ReactNode } from 'react';
import type {
DialogTriggerProps as RADialogTriggerProps,
ModalOverlayProps as RAModalProps,
@@ -26,31 +27,59 @@ import type {
*/
export interface DialogTriggerProps extends RADialogTriggerProps {}
/** @public */
export type DialogOwnProps = {
children?: ReactNode;
className?: string;
width?: number | string;
height?: number | string;
style?: React.CSSProperties;
};
/**
* Props for the Dialog component.
* @public
*/
export interface DialogProps extends RAModalProps {
export interface DialogProps
extends DialogOwnProps,
Omit<RAModalProps, keyof DialogOwnProps> {}
/** @public */
export type DialogHeaderOwnProps = {
children?: ReactNode;
className?: string;
children?: React.ReactNode;
width?: number | string;
height?: number | string;
}
};
/**
* Props for the DialogHeader component.
* @public
*/
export interface DialogHeaderProps extends RAHeadingProps {
children?: React.ReactNode;
export interface DialogHeaderProps
extends DialogHeaderOwnProps,
Omit<RAHeadingProps, keyof DialogHeaderOwnProps> {}
/** @public */
export type DialogBodyOwnProps = {
children?: ReactNode;
className?: string;
}
};
/**
* Props for the DialogBody component.
* @public
*/
export interface DialogBodyProps {
children?: React.ReactNode;
export interface DialogBodyProps extends DialogBodyOwnProps {}
/** @public */
export type DialogFooterOwnProps = {
children?: ReactNode;
className?: string;
}
};
/**
* Props for the DialogFooter component.
* @public
*/
export interface DialogFooterProps
extends DialogFooterOwnProps,
Omit<React.ComponentPropsWithoutRef<'div'>, keyof DialogFooterOwnProps> {}
@@ -35,6 +35,7 @@ const meta = preview.meta({
options: ['row', 'column', 'row-reverse', 'column-reverse'],
},
},
args: { children: null },
});
const DecorativeBox = ({
+1 -1
View File
@@ -19,7 +19,7 @@ import type { Responsive, Space, SpaceProps, ProviderBg } from '../../types';
/** @public */
export type FlexOwnProps = {
children?: ReactNode;
children: ReactNode;
className?: string;
style?: CSSProperties;
bg?: Responsive<ProviderBg>;
@@ -24,6 +24,7 @@ const meta = preview.meta({
component: Grid.Root,
// We will add this story in the manifest when the component is not composed.
tags: ['!manifest'],
args: { children: null },
});
const FakeBox = () => (
+2 -2
View File
@@ -25,7 +25,7 @@ import type {
/** @public */
export type GridOwnProps = {
children?: ReactNode;
children: ReactNode;
className?: string;
style?: CSSProperties;
bg?: Responsive<ProviderBg>;
@@ -39,7 +39,7 @@ export interface GridProps extends SpaceProps, GridOwnProps {
/** @public */
export type GridItemOwnProps = {
children?: ReactNode;
children: ReactNode;
className?: string;
style?: CSSProperties;
bg?: Responsive<ProviderBg>;