@marigold/components 17.2.0 → 17.3.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.cts CHANGED
@@ -22,8 +22,8 @@ interface AccordionPanelProps {
22
22
  }
23
23
  //#endregion
24
24
  //#region src/Accordion/AccordionItem.d.ts
25
- type RemovedProps$47 = 'isDisabled' | 'isExpanded';
26
- interface DisclosureProps extends Omit<RAC.DisclosureProps, RemovedProps$47> {
25
+ type RemovedProps$48 = 'isDisabled' | 'isExpanded';
26
+ interface DisclosureProps extends Omit<RAC.DisclosureProps, RemovedProps$48> {
27
27
  /** Whether the item is disabled. */
28
28
  disabled?: RAC.DisclosureProps['isDisabled'];
29
29
  /** Whether the item is expanded (controlled). */
@@ -37,8 +37,8 @@ declare const AccordionItem: ({
37
37
  }: DisclosureProps) => react_jsx_runtime0.JSX.Element;
38
38
  //#endregion
39
39
  //#region src/Accordion/Accordion.d.ts
40
- type RemovedProps$46 = 'isDisabled';
41
- interface AccordionProps extends Omit<RAC.DisclosureGroupProps, RemovedProps$46> {
40
+ type RemovedProps$47 = 'isDisabled';
41
+ interface AccordionProps extends Omit<RAC.DisclosureGroupProps, RemovedProps$47> {
42
42
  variant?: 'default' | 'card' | (string & {});
43
43
  size?: string;
44
44
  /** Whether all items are disabled. */
@@ -72,6 +72,139 @@ declare const Accordion: {
72
72
  }: DisclosureProps) => react_jsx_runtime0.JSX.Element;
73
73
  };
74
74
  //#endregion
75
+ //#region src/TopNavigation/TopNavigationEnd.d.ts
76
+ interface TopNavigationEndProps {
77
+ /**
78
+ * Accessible label for the navigation landmark.
79
+ * @default 'Utilities'
80
+ */
81
+ 'aria-label'?: string;
82
+ /**
83
+ * Vertical alignment of the items inside the end slot.
84
+ * @default 'center'
85
+ */
86
+ alignY?: keyof typeof alignment.horizontal.alignmentY;
87
+ /**
88
+ * The children of the component.
89
+ */
90
+ children?: ReactNode;
91
+ }
92
+ declare const TopNavigationEnd: react.ForwardRefExoticComponent<TopNavigationEndProps & react.RefAttributes<HTMLElement>>;
93
+ //#endregion
94
+ //#region src/TopNavigation/TopNavigationMiddle.d.ts
95
+ interface TopNavigationMiddleProps {
96
+ /**
97
+ * Accessible label for the navigation landmark.
98
+ * @default 'Global navigation'
99
+ */
100
+ 'aria-label'?: string;
101
+ /**
102
+ * Horizontal alignment of the items inside the middle slot.
103
+ */
104
+ alignX?: keyof typeof alignment.horizontal.alignmentX;
105
+ /**
106
+ * Vertical alignment of the items inside the middle slot.
107
+ * @default 'center'
108
+ */
109
+ alignY?: keyof typeof alignment.horizontal.alignmentY;
110
+ /**
111
+ * The children of the component.
112
+ */
113
+ children?: ReactNode;
114
+ }
115
+ declare const TopNavigationMiddle: react.ForwardRefExoticComponent<TopNavigationMiddleProps & react.RefAttributes<HTMLElement>>;
116
+ //#endregion
117
+ //#region src/TopNavigation/TopNavigationStart.d.ts
118
+ interface TopNavigationStartProps {
119
+ /**
120
+ * Vertical alignment of the items inside the start slot.
121
+ * @default 'center'
122
+ */
123
+ alignY?: keyof typeof alignment.horizontal.alignmentY;
124
+ /**
125
+ * The children of the component.
126
+ */
127
+ children?: ReactNode;
128
+ }
129
+ declare const TopNavigationStart: react.ForwardRefExoticComponent<TopNavigationStartProps & react.RefAttributes<HTMLDivElement>>;
130
+ //#endregion
131
+ //#region src/TopNavigation/TopNavigation.d.ts
132
+ interface TopNavigationProps {
133
+ variant?: string;
134
+ size?: string;
135
+ /**
136
+ * If `true`, the navigation sticks to the top of the viewport on scroll.
137
+ * @default true
138
+ */
139
+ sticky?: boolean;
140
+ /**
141
+ * The children of the component.
142
+ */
143
+ children?: ReactNode;
144
+ }
145
+ interface TopNavigationComponent extends ForwardRefExoticComponent<TopNavigationProps & React.RefAttributes<HTMLElement>> {
146
+ Start: typeof TopNavigationStart;
147
+ Middle: typeof TopNavigationMiddle;
148
+ End: typeof TopNavigationEnd;
149
+ }
150
+ declare const _TopNavigation: TopNavigationComponent;
151
+ //#endregion
152
+ //#region src/AppLayout/AppLayoutHeader.d.ts
153
+ interface AppLayoutHeaderProps {
154
+ /**
155
+ * The visual style variant of the top navigation.
156
+ */
157
+ variant?: TopNavigationProps['variant'];
158
+ /**
159
+ * The size of the top navigation.
160
+ */
161
+ size?: TopNavigationProps['size'];
162
+ /**
163
+ * If `true`, the navigation sticks to the top of the viewport on scroll.
164
+ * @default true
165
+ */
166
+ sticky?: TopNavigationProps['sticky'];
167
+ /**
168
+ * The children of the component, typically `TopNavigation.Start`, `TopNavigation.Middle`, and `TopNavigation.End`.
169
+ */
170
+ children?: ReactNode;
171
+ }
172
+ declare const AppLayoutHeader: ({
173
+ variant,
174
+ size,
175
+ sticky,
176
+ children
177
+ }: AppLayoutHeaderProps) => react_jsx_runtime0.JSX.Element;
178
+ //#endregion
179
+ //#region src/AppLayout/AppLayoutMain.d.ts
180
+ type AppLayoutMainProps = PropsWithChildren;
181
+ declare const AppLayoutMain: ({
182
+ children
183
+ }: AppLayoutMainProps) => react_jsx_runtime0.JSX.Element;
184
+ //#endregion
185
+ //#region src/AppLayout/AppLayoutSidebar.d.ts
186
+ type AppLayoutSidebarProps = PropsWithChildren;
187
+ declare const AppLayoutSidebar: ({
188
+ children
189
+ }: AppLayoutSidebarProps) => react_jsx_runtime0.JSX.Element;
190
+ //#endregion
191
+ //#region src/AppLayout/AppLayout.d.ts
192
+ type RemovedProps$46 = 'className' | 'style';
193
+ interface AppLayoutProps extends Omit<React.HTMLAttributes<HTMLDivElement>, RemovedProps$46> {
194
+ /**
195
+ * Children of the component.
196
+ */
197
+ children?: React.ReactNode;
198
+ ref?: Ref<HTMLDivElement>;
199
+ }
200
+ interface AppLayoutComponent {
201
+ (props: AppLayoutProps): React.JSX.Element;
202
+ Header: typeof AppLayoutHeader;
203
+ Sidebar: typeof AppLayoutSidebar;
204
+ Main: typeof AppLayoutMain;
205
+ }
206
+ declare const _AppLayout: AppLayoutComponent;
207
+ //#endregion
75
208
  //#region src/ActionBar/ActionButton.d.ts
76
209
  interface ActionButtonProps {
77
210
  /**
@@ -14526,10 +14659,6 @@ declare const SidebarToggle: () => react_jsx_runtime0.JSX.Element;
14526
14659
  interface SidebarProps {
14527
14660
  /** The sidebar content, typically `Sidebar.Header`, `Sidebar.Nav`, and `Sidebar.Footer`. */
14528
14661
  children?: ReactNode;
14529
- /** The visual style variant of the sidebar. */
14530
- variant?: string;
14531
- /** The size of the sidebar. */
14532
- size?: string;
14533
14662
  }
14534
14663
  interface SidebarComponent extends ForwardRefExoticComponent<SidebarProps & RefAttributes<HTMLElement>> {
14535
14664
  Provider: typeof SidebarProvider;
@@ -14978,83 +15107,6 @@ declare function useToast(): {
14978
15107
  removeToast: (key: string) => void;
14979
15108
  };
14980
15109
  //#endregion
14981
- //#region src/TopNavigation/TopNavigationEnd.d.ts
14982
- interface TopNavigationEndProps {
14983
- /**
14984
- * Accessible label for the navigation landmark.
14985
- * @default 'Utilities'
14986
- */
14987
- 'aria-label'?: string;
14988
- /**
14989
- * Vertical alignment of the items inside the end slot.
14990
- * @default 'center'
14991
- */
14992
- alignY?: keyof typeof alignment.horizontal.alignmentY;
14993
- /**
14994
- * The children of the component.
14995
- */
14996
- children?: ReactNode;
14997
- }
14998
- declare const TopNavigationEnd: react.ForwardRefExoticComponent<TopNavigationEndProps & react.RefAttributes<HTMLElement>>;
14999
- //#endregion
15000
- //#region src/TopNavigation/TopNavigationMiddle.d.ts
15001
- interface TopNavigationMiddleProps {
15002
- /**
15003
- * Accessible label for the navigation landmark.
15004
- * @default 'Global navigation'
15005
- */
15006
- 'aria-label'?: string;
15007
- /**
15008
- * Horizontal alignment of the items inside the middle slot.
15009
- */
15010
- alignX?: keyof typeof alignment.horizontal.alignmentX;
15011
- /**
15012
- * Vertical alignment of the items inside the middle slot.
15013
- * @default 'center'
15014
- */
15015
- alignY?: keyof typeof alignment.horizontal.alignmentY;
15016
- /**
15017
- * The children of the component.
15018
- */
15019
- children?: ReactNode;
15020
- }
15021
- declare const TopNavigationMiddle: react.ForwardRefExoticComponent<TopNavigationMiddleProps & react.RefAttributes<HTMLElement>>;
15022
- //#endregion
15023
- //#region src/TopNavigation/TopNavigationStart.d.ts
15024
- interface TopNavigationStartProps {
15025
- /**
15026
- * Vertical alignment of the items inside the start slot.
15027
- * @default 'center'
15028
- */
15029
- alignY?: keyof typeof alignment.horizontal.alignmentY;
15030
- /**
15031
- * The children of the component.
15032
- */
15033
- children?: ReactNode;
15034
- }
15035
- declare const TopNavigationStart: react.ForwardRefExoticComponent<TopNavigationStartProps & react.RefAttributes<HTMLDivElement>>;
15036
- //#endregion
15037
- //#region src/TopNavigation/TopNavigation.d.ts
15038
- interface TopNavigationProps {
15039
- variant?: string;
15040
- size?: string;
15041
- /**
15042
- * If `true`, the navigation sticks to the top of the viewport on scroll.
15043
- * @default true
15044
- */
15045
- sticky?: boolean;
15046
- /**
15047
- * The children of the component.
15048
- */
15049
- children?: ReactNode;
15050
- }
15051
- interface TopNavigationComponent extends ForwardRefExoticComponent<TopNavigationProps & React.RefAttributes<HTMLElement>> {
15052
- Start: typeof TopNavigationStart;
15053
- Middle: typeof TopNavigationMiddle;
15054
- End: typeof TopNavigationEnd;
15055
- }
15056
- declare const _TopNavigation: TopNavigationComponent;
15057
- //#endregion
15058
15110
  //#region src/Tooltip/TooltipTrigger.d.ts
15059
15111
  type RemovedProps$3 = 'isDisabled' | 'isOpen' | 'children';
15060
15112
  interface TooltipTriggerProps extends Omit<RAC.TooltipTriggerComponentProps, RemovedProps$3> {
@@ -15283,4 +15335,4 @@ declare const Tray: {
15283
15335
  */
15284
15336
  declare const parseFormData: <T extends Record<string, FormDataEntryValue | FormDataEntryValue[]> = Record<string, FormDataEntryValue | FormDataEntryValue[]>>(e: FormEvent<HTMLFormElement>) => T;
15285
15337
  //#endregion
15286
- export { Accordion, AccordionItem, type AccordionProps, ActionBar, type ActionBarProps, ActionButton, type ActionButtonProps, ActionMenu, type ActionMenuProps, Aside, type AsideProps, Aspect, type AspectProps, _Autocomplete as Autocomplete, type AutocompleteProps, Badge, type BadgeProps, _Breadcrumbs as Breadcrumbs, type BreadcrumbsProps, Breakout, type BreakoutProps, _Button as Button, type ButtonProps, _Calendar as Calendar, type CalendarProps, Card, type CardProps, Center, type CenterProps, _Checkbox as Checkbox, _CheckboxGroup as CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, CloseButton, Collapsible, type CollapsibleProps, Columns, type ColumnsProps, _ComboBox as ComboBox, type ComboBoxProps, type ConfirmationConfig, ConfirmationContext, ConfirmationDialog, type ConfirmationDialogProps, type ConfirmationFn, ConfirmationProvider, type ConfirmationResult, Container, type ContainerProps, _ContextualHelp as ContextualHelp, type ContextualHelpProps, _DateField as DateField, type DateFieldProps, DateFormat, _DatePicker as DatePicker, type DatePickerProps, _Dialog as Dialog, type DialogProps, type DisclosureProps, _Divider as Divider, type DividerProps, Drawer, type DrawerProps, EmptyState, type EmptyStateProps, FieldBase, type FieldBaseProps, FileField, type FileFieldProps, type FileTriggerProps, _Form as Form, type FormProps, Grid, type GridProps, _Headline as Headline, type HeadlineProps, HelpText, type HelpTextProps, I18nProvider, IconButton, Inline, type InlineProps, _Input as Input, type InputProps, Inset, type InsetProps, _Label as Label, type LabelProps, _Link as Link, _LinkButton as LinkButton, type LinkButtonProps, type LinkProps, List, _ListBox as ListBox, _ListBoxItem as ListBoxItem, type ListBoxItemProps, type ListBoxProps, type ListProps, Loader, type LoaderProps, type LoaderVisualType, MarigoldProvider, type MarigoldProviderProps, _Menu as Menu, type MenuProps, _Modal as Modal, type ModalProps, Multiselect, NonModal, type NonModalProps, _NumberField as NumberField, type NumberFieldProps, NumericFormat, type OverlayContainerProps, OverlayContainerProvider, _Pagination as Pagination, type PaginationProps, _Popover as Popover, type PopoverProps, ProgressCircle, type ProgressCircleProps, ProgressCircleSvg, _Radio as Radio, _RadioGroup as RadioGroup, type RadioGroupProps, type RadioProps, RouterProvider, Scrollable, type ScrollableProps, _SearchField as SearchField, type SearchFieldProps, SearchInput, type SearchInputProps, SectionMessage, type SectionMessageProps, Select, _SelectList as SelectList, _SelectListItem as SelectListItem, type SelectListItemProps, type SelectListProps, type SelectProps, type Selection, _Sidebar as Sidebar, type SidebarItemProps, type SidebarNavProps, type SidebarProps, type SidebarProviderProps, _Slider as Slider, type SliderProps, Split, Stack, type StackProps, _Switch as Switch, type SwitchProps, Table, type TableBodyProps, type TableCellProps, type TableColumnProps, type TableDragPreviewProps, type TableDropIndicatorProps, type TableEditableCellProps, type TableHeaderProps, type TableProps, type TableRowProps, _Tabs as Tabs, type TabsProps, _Tag as Tag, TagField, type TagFieldProps, _TagGroup as TagGroup, type TagGroupProps, type TagProps, _Text as Text, _TextArea as TextArea, type TextAreaProps, _TextField as TextField, type TextFieldProps, type TextProps, ThemeProvider, Tiles, type TilesProps, _TimeField as TimeField, type TimeFieldProps, type TimeValue, Toast, type ToastContentProps, type ToastProps, ToastProvider, type ToastProviderProps, _ToggleButton as ToggleButton, _ToggleButtonGroup as ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, _Tooltip as Tooltip, type TooltipProps, _TopNavigation as TopNavigation, type TopNavigationProps, Tray, type TrayProps, Underlay, type UnderlayProps, type UseActionBarProps, type UseActionBarReturn, VisuallyHidden, parseFormData, useActionBar, useAsyncList, useConfirmation, useDragAndDrop, useListData, useTheme, useToast };
15338
+ export { Accordion, AccordionItem, type AccordionProps, ActionBar, type ActionBarProps, ActionButton, type ActionButtonProps, ActionMenu, type ActionMenuProps, _AppLayout as AppLayout, type AppLayoutHeaderProps, type AppLayoutMainProps, type AppLayoutProps, type AppLayoutSidebarProps, Aside, type AsideProps, Aspect, type AspectProps, _Autocomplete as Autocomplete, type AutocompleteProps, Badge, type BadgeProps, _Breadcrumbs as Breadcrumbs, type BreadcrumbsProps, Breakout, type BreakoutProps, _Button as Button, type ButtonProps, _Calendar as Calendar, type CalendarProps, Card, type CardProps, Center, type CenterProps, _Checkbox as Checkbox, _CheckboxGroup as CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, CloseButton, Collapsible, type CollapsibleProps, Columns, type ColumnsProps, _ComboBox as ComboBox, type ComboBoxProps, type ConfirmationConfig, ConfirmationContext, ConfirmationDialog, type ConfirmationDialogProps, type ConfirmationFn, ConfirmationProvider, type ConfirmationResult, Container, type ContainerProps, _ContextualHelp as ContextualHelp, type ContextualHelpProps, _DateField as DateField, type DateFieldProps, DateFormat, _DatePicker as DatePicker, type DatePickerProps, _Dialog as Dialog, type DialogProps, type DisclosureProps, _Divider as Divider, type DividerProps, Drawer, type DrawerProps, EmptyState, type EmptyStateProps, FieldBase, type FieldBaseProps, FileField, type FileFieldProps, type FileTriggerProps, _Form as Form, type FormProps, Grid, type GridProps, _Headline as Headline, type HeadlineProps, HelpText, type HelpTextProps, I18nProvider, IconButton, Inline, type InlineProps, _Input as Input, type InputProps, Inset, type InsetProps, _Label as Label, type LabelProps, _Link as Link, _LinkButton as LinkButton, type LinkButtonProps, type LinkProps, List, _ListBox as ListBox, _ListBoxItem as ListBoxItem, type ListBoxItemProps, type ListBoxProps, type ListProps, Loader, type LoaderProps, type LoaderVisualType, MarigoldProvider, type MarigoldProviderProps, _Menu as Menu, type MenuProps, _Modal as Modal, type ModalProps, Multiselect, NonModal, type NonModalProps, _NumberField as NumberField, type NumberFieldProps, NumericFormat, type OverlayContainerProps, OverlayContainerProvider, _Pagination as Pagination, type PaginationProps, _Popover as Popover, type PopoverProps, ProgressCircle, type ProgressCircleProps, ProgressCircleSvg, _Radio as Radio, _RadioGroup as RadioGroup, type RadioGroupProps, type RadioProps, RouterProvider, Scrollable, type ScrollableProps, _SearchField as SearchField, type SearchFieldProps, SearchInput, type SearchInputProps, SectionMessage, type SectionMessageProps, Select, _SelectList as SelectList, _SelectListItem as SelectListItem, type SelectListItemProps, type SelectListProps, type SelectProps, type Selection, _Sidebar as Sidebar, type SidebarItemProps, type SidebarNavProps, type SidebarProps, type SidebarProviderProps, _Slider as Slider, type SliderProps, Split, Stack, type StackProps, _Switch as Switch, type SwitchProps, Table, type TableBodyProps, type TableCellProps, type TableColumnProps, type TableDragPreviewProps, type TableDropIndicatorProps, type TableEditableCellProps, type TableHeaderProps, type TableProps, type TableRowProps, _Tabs as Tabs, type TabsProps, _Tag as Tag, TagField, type TagFieldProps, _TagGroup as TagGroup, type TagGroupProps, type TagProps, _Text as Text, _TextArea as TextArea, type TextAreaProps, _TextField as TextField, type TextFieldProps, type TextProps, ThemeProvider, Tiles, type TilesProps, _TimeField as TimeField, type TimeFieldProps, type TimeValue, Toast, type ToastContentProps, type ToastProps, ToastProvider, type ToastProviderProps, _ToggleButton as ToggleButton, _ToggleButtonGroup as ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, _Tooltip as Tooltip, type TooltipProps, _TopNavigation as TopNavigation, type TopNavigationProps, Tray, type TrayProps, Underlay, type UnderlayProps, type UseActionBarProps, type UseActionBarReturn, VisuallyHidden, parseFormData, useActionBar, useAsyncList, useConfirmation, useDragAndDrop, useListData, useTheme, useToast };
package/dist/index.d.mts CHANGED
@@ -22,8 +22,8 @@ interface AccordionPanelProps {
22
22
  }
23
23
  //#endregion
24
24
  //#region src/Accordion/AccordionItem.d.ts
25
- type RemovedProps$47 = 'isDisabled' | 'isExpanded';
26
- interface DisclosureProps extends Omit<RAC.DisclosureProps, RemovedProps$47> {
25
+ type RemovedProps$48 = 'isDisabled' | 'isExpanded';
26
+ interface DisclosureProps extends Omit<RAC.DisclosureProps, RemovedProps$48> {
27
27
  /** Whether the item is disabled. */
28
28
  disabled?: RAC.DisclosureProps['isDisabled'];
29
29
  /** Whether the item is expanded (controlled). */
@@ -37,8 +37,8 @@ declare const AccordionItem: ({
37
37
  }: DisclosureProps) => react_jsx_runtime0.JSX.Element;
38
38
  //#endregion
39
39
  //#region src/Accordion/Accordion.d.ts
40
- type RemovedProps$46 = 'isDisabled';
41
- interface AccordionProps extends Omit<RAC.DisclosureGroupProps, RemovedProps$46> {
40
+ type RemovedProps$47 = 'isDisabled';
41
+ interface AccordionProps extends Omit<RAC.DisclosureGroupProps, RemovedProps$47> {
42
42
  variant?: 'default' | 'card' | (string & {});
43
43
  size?: string;
44
44
  /** Whether all items are disabled. */
@@ -72,6 +72,139 @@ declare const Accordion: {
72
72
  }: DisclosureProps) => react_jsx_runtime0.JSX.Element;
73
73
  };
74
74
  //#endregion
75
+ //#region src/TopNavigation/TopNavigationEnd.d.ts
76
+ interface TopNavigationEndProps {
77
+ /**
78
+ * Accessible label for the navigation landmark.
79
+ * @default 'Utilities'
80
+ */
81
+ 'aria-label'?: string;
82
+ /**
83
+ * Vertical alignment of the items inside the end slot.
84
+ * @default 'center'
85
+ */
86
+ alignY?: keyof typeof alignment.horizontal.alignmentY;
87
+ /**
88
+ * The children of the component.
89
+ */
90
+ children?: ReactNode;
91
+ }
92
+ declare const TopNavigationEnd: react.ForwardRefExoticComponent<TopNavigationEndProps & react.RefAttributes<HTMLElement>>;
93
+ //#endregion
94
+ //#region src/TopNavigation/TopNavigationMiddle.d.ts
95
+ interface TopNavigationMiddleProps {
96
+ /**
97
+ * Accessible label for the navigation landmark.
98
+ * @default 'Global navigation'
99
+ */
100
+ 'aria-label'?: string;
101
+ /**
102
+ * Horizontal alignment of the items inside the middle slot.
103
+ */
104
+ alignX?: keyof typeof alignment.horizontal.alignmentX;
105
+ /**
106
+ * Vertical alignment of the items inside the middle slot.
107
+ * @default 'center'
108
+ */
109
+ alignY?: keyof typeof alignment.horizontal.alignmentY;
110
+ /**
111
+ * The children of the component.
112
+ */
113
+ children?: ReactNode;
114
+ }
115
+ declare const TopNavigationMiddle: react.ForwardRefExoticComponent<TopNavigationMiddleProps & react.RefAttributes<HTMLElement>>;
116
+ //#endregion
117
+ //#region src/TopNavigation/TopNavigationStart.d.ts
118
+ interface TopNavigationStartProps {
119
+ /**
120
+ * Vertical alignment of the items inside the start slot.
121
+ * @default 'center'
122
+ */
123
+ alignY?: keyof typeof alignment.horizontal.alignmentY;
124
+ /**
125
+ * The children of the component.
126
+ */
127
+ children?: ReactNode;
128
+ }
129
+ declare const TopNavigationStart: react.ForwardRefExoticComponent<TopNavigationStartProps & react.RefAttributes<HTMLDivElement>>;
130
+ //#endregion
131
+ //#region src/TopNavigation/TopNavigation.d.ts
132
+ interface TopNavigationProps {
133
+ variant?: string;
134
+ size?: string;
135
+ /**
136
+ * If `true`, the navigation sticks to the top of the viewport on scroll.
137
+ * @default true
138
+ */
139
+ sticky?: boolean;
140
+ /**
141
+ * The children of the component.
142
+ */
143
+ children?: ReactNode;
144
+ }
145
+ interface TopNavigationComponent extends ForwardRefExoticComponent<TopNavigationProps & React.RefAttributes<HTMLElement>> {
146
+ Start: typeof TopNavigationStart;
147
+ Middle: typeof TopNavigationMiddle;
148
+ End: typeof TopNavigationEnd;
149
+ }
150
+ declare const _TopNavigation: TopNavigationComponent;
151
+ //#endregion
152
+ //#region src/AppLayout/AppLayoutHeader.d.ts
153
+ interface AppLayoutHeaderProps {
154
+ /**
155
+ * The visual style variant of the top navigation.
156
+ */
157
+ variant?: TopNavigationProps['variant'];
158
+ /**
159
+ * The size of the top navigation.
160
+ */
161
+ size?: TopNavigationProps['size'];
162
+ /**
163
+ * If `true`, the navigation sticks to the top of the viewport on scroll.
164
+ * @default true
165
+ */
166
+ sticky?: TopNavigationProps['sticky'];
167
+ /**
168
+ * The children of the component, typically `TopNavigation.Start`, `TopNavigation.Middle`, and `TopNavigation.End`.
169
+ */
170
+ children?: ReactNode;
171
+ }
172
+ declare const AppLayoutHeader: ({
173
+ variant,
174
+ size,
175
+ sticky,
176
+ children
177
+ }: AppLayoutHeaderProps) => react_jsx_runtime0.JSX.Element;
178
+ //#endregion
179
+ //#region src/AppLayout/AppLayoutMain.d.ts
180
+ type AppLayoutMainProps = PropsWithChildren;
181
+ declare const AppLayoutMain: ({
182
+ children
183
+ }: AppLayoutMainProps) => react_jsx_runtime0.JSX.Element;
184
+ //#endregion
185
+ //#region src/AppLayout/AppLayoutSidebar.d.ts
186
+ type AppLayoutSidebarProps = PropsWithChildren;
187
+ declare const AppLayoutSidebar: ({
188
+ children
189
+ }: AppLayoutSidebarProps) => react_jsx_runtime0.JSX.Element;
190
+ //#endregion
191
+ //#region src/AppLayout/AppLayout.d.ts
192
+ type RemovedProps$46 = 'className' | 'style';
193
+ interface AppLayoutProps extends Omit<React.HTMLAttributes<HTMLDivElement>, RemovedProps$46> {
194
+ /**
195
+ * Children of the component.
196
+ */
197
+ children?: React.ReactNode;
198
+ ref?: Ref<HTMLDivElement>;
199
+ }
200
+ interface AppLayoutComponent {
201
+ (props: AppLayoutProps): React.JSX.Element;
202
+ Header: typeof AppLayoutHeader;
203
+ Sidebar: typeof AppLayoutSidebar;
204
+ Main: typeof AppLayoutMain;
205
+ }
206
+ declare const _AppLayout: AppLayoutComponent;
207
+ //#endregion
75
208
  //#region src/ActionBar/ActionButton.d.ts
76
209
  interface ActionButtonProps {
77
210
  /**
@@ -14526,10 +14659,6 @@ declare const SidebarToggle: () => react_jsx_runtime0.JSX.Element;
14526
14659
  interface SidebarProps {
14527
14660
  /** The sidebar content, typically `Sidebar.Header`, `Sidebar.Nav`, and `Sidebar.Footer`. */
14528
14661
  children?: ReactNode;
14529
- /** The visual style variant of the sidebar. */
14530
- variant?: string;
14531
- /** The size of the sidebar. */
14532
- size?: string;
14533
14662
  }
14534
14663
  interface SidebarComponent extends ForwardRefExoticComponent<SidebarProps & RefAttributes<HTMLElement>> {
14535
14664
  Provider: typeof SidebarProvider;
@@ -14978,83 +15107,6 @@ declare function useToast(): {
14978
15107
  removeToast: (key: string) => void;
14979
15108
  };
14980
15109
  //#endregion
14981
- //#region src/TopNavigation/TopNavigationEnd.d.ts
14982
- interface TopNavigationEndProps {
14983
- /**
14984
- * Accessible label for the navigation landmark.
14985
- * @default 'Utilities'
14986
- */
14987
- 'aria-label'?: string;
14988
- /**
14989
- * Vertical alignment of the items inside the end slot.
14990
- * @default 'center'
14991
- */
14992
- alignY?: keyof typeof alignment.horizontal.alignmentY;
14993
- /**
14994
- * The children of the component.
14995
- */
14996
- children?: ReactNode;
14997
- }
14998
- declare const TopNavigationEnd: react.ForwardRefExoticComponent<TopNavigationEndProps & react.RefAttributes<HTMLElement>>;
14999
- //#endregion
15000
- //#region src/TopNavigation/TopNavigationMiddle.d.ts
15001
- interface TopNavigationMiddleProps {
15002
- /**
15003
- * Accessible label for the navigation landmark.
15004
- * @default 'Global navigation'
15005
- */
15006
- 'aria-label'?: string;
15007
- /**
15008
- * Horizontal alignment of the items inside the middle slot.
15009
- */
15010
- alignX?: keyof typeof alignment.horizontal.alignmentX;
15011
- /**
15012
- * Vertical alignment of the items inside the middle slot.
15013
- * @default 'center'
15014
- */
15015
- alignY?: keyof typeof alignment.horizontal.alignmentY;
15016
- /**
15017
- * The children of the component.
15018
- */
15019
- children?: ReactNode;
15020
- }
15021
- declare const TopNavigationMiddle: react.ForwardRefExoticComponent<TopNavigationMiddleProps & react.RefAttributes<HTMLElement>>;
15022
- //#endregion
15023
- //#region src/TopNavigation/TopNavigationStart.d.ts
15024
- interface TopNavigationStartProps {
15025
- /**
15026
- * Vertical alignment of the items inside the start slot.
15027
- * @default 'center'
15028
- */
15029
- alignY?: keyof typeof alignment.horizontal.alignmentY;
15030
- /**
15031
- * The children of the component.
15032
- */
15033
- children?: ReactNode;
15034
- }
15035
- declare const TopNavigationStart: react.ForwardRefExoticComponent<TopNavigationStartProps & react.RefAttributes<HTMLDivElement>>;
15036
- //#endregion
15037
- //#region src/TopNavigation/TopNavigation.d.ts
15038
- interface TopNavigationProps {
15039
- variant?: string;
15040
- size?: string;
15041
- /**
15042
- * If `true`, the navigation sticks to the top of the viewport on scroll.
15043
- * @default true
15044
- */
15045
- sticky?: boolean;
15046
- /**
15047
- * The children of the component.
15048
- */
15049
- children?: ReactNode;
15050
- }
15051
- interface TopNavigationComponent extends ForwardRefExoticComponent<TopNavigationProps & React.RefAttributes<HTMLElement>> {
15052
- Start: typeof TopNavigationStart;
15053
- Middle: typeof TopNavigationMiddle;
15054
- End: typeof TopNavigationEnd;
15055
- }
15056
- declare const _TopNavigation: TopNavigationComponent;
15057
- //#endregion
15058
15110
  //#region src/Tooltip/TooltipTrigger.d.ts
15059
15111
  type RemovedProps$3 = 'isDisabled' | 'isOpen' | 'children';
15060
15112
  interface TooltipTriggerProps extends Omit<RAC.TooltipTriggerComponentProps, RemovedProps$3> {
@@ -15283,4 +15335,4 @@ declare const Tray: {
15283
15335
  */
15284
15336
  declare const parseFormData: <T extends Record<string, FormDataEntryValue | FormDataEntryValue[]> = Record<string, FormDataEntryValue | FormDataEntryValue[]>>(e: FormEvent<HTMLFormElement>) => T;
15285
15337
  //#endregion
15286
- export { Accordion, AccordionItem, type AccordionProps, ActionBar, type ActionBarProps, ActionButton, type ActionButtonProps, ActionMenu, type ActionMenuProps, Aside, type AsideProps, Aspect, type AspectProps, _Autocomplete as Autocomplete, type AutocompleteProps, Badge, type BadgeProps, _Breadcrumbs as Breadcrumbs, type BreadcrumbsProps, Breakout, type BreakoutProps, _Button as Button, type ButtonProps, _Calendar as Calendar, type CalendarProps, Card, type CardProps, Center, type CenterProps, _Checkbox as Checkbox, _CheckboxGroup as CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, CloseButton, Collapsible, type CollapsibleProps, Columns, type ColumnsProps, _ComboBox as ComboBox, type ComboBoxProps, type ConfirmationConfig, ConfirmationContext, ConfirmationDialog, type ConfirmationDialogProps, type ConfirmationFn, ConfirmationProvider, type ConfirmationResult, Container, type ContainerProps, _ContextualHelp as ContextualHelp, type ContextualHelpProps, _DateField as DateField, type DateFieldProps, DateFormat, _DatePicker as DatePicker, type DatePickerProps, _Dialog as Dialog, type DialogProps, type DisclosureProps, _Divider as Divider, type DividerProps, Drawer, type DrawerProps, EmptyState, type EmptyStateProps, FieldBase, type FieldBaseProps, FileField, type FileFieldProps, type FileTriggerProps, _Form as Form, type FormProps, Grid, type GridProps, _Headline as Headline, type HeadlineProps, HelpText, type HelpTextProps, I18nProvider, IconButton, Inline, type InlineProps, _Input as Input, type InputProps, Inset, type InsetProps, _Label as Label, type LabelProps, _Link as Link, _LinkButton as LinkButton, type LinkButtonProps, type LinkProps, List, _ListBox as ListBox, _ListBoxItem as ListBoxItem, type ListBoxItemProps, type ListBoxProps, type ListProps, Loader, type LoaderProps, type LoaderVisualType, MarigoldProvider, type MarigoldProviderProps, _Menu as Menu, type MenuProps, _Modal as Modal, type ModalProps, Multiselect, NonModal, type NonModalProps, _NumberField as NumberField, type NumberFieldProps, NumericFormat, type OverlayContainerProps, OverlayContainerProvider, _Pagination as Pagination, type PaginationProps, _Popover as Popover, type PopoverProps, ProgressCircle, type ProgressCircleProps, ProgressCircleSvg, _Radio as Radio, _RadioGroup as RadioGroup, type RadioGroupProps, type RadioProps, RouterProvider, Scrollable, type ScrollableProps, _SearchField as SearchField, type SearchFieldProps, SearchInput, type SearchInputProps, SectionMessage, type SectionMessageProps, Select, _SelectList as SelectList, _SelectListItem as SelectListItem, type SelectListItemProps, type SelectListProps, type SelectProps, type Selection, _Sidebar as Sidebar, type SidebarItemProps, type SidebarNavProps, type SidebarProps, type SidebarProviderProps, _Slider as Slider, type SliderProps, Split, Stack, type StackProps, _Switch as Switch, type SwitchProps, Table, type TableBodyProps, type TableCellProps, type TableColumnProps, type TableDragPreviewProps, type TableDropIndicatorProps, type TableEditableCellProps, type TableHeaderProps, type TableProps, type TableRowProps, _Tabs as Tabs, type TabsProps, _Tag as Tag, TagField, type TagFieldProps, _TagGroup as TagGroup, type TagGroupProps, type TagProps, _Text as Text, _TextArea as TextArea, type TextAreaProps, _TextField as TextField, type TextFieldProps, type TextProps, ThemeProvider, Tiles, type TilesProps, _TimeField as TimeField, type TimeFieldProps, type TimeValue, Toast, type ToastContentProps, type ToastProps, ToastProvider, type ToastProviderProps, _ToggleButton as ToggleButton, _ToggleButtonGroup as ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, _Tooltip as Tooltip, type TooltipProps, _TopNavigation as TopNavigation, type TopNavigationProps, Tray, type TrayProps, Underlay, type UnderlayProps, type UseActionBarProps, type UseActionBarReturn, VisuallyHidden, parseFormData, useActionBar, useAsyncList, useConfirmation, useDragAndDrop, useListData, useTheme, useToast };
15338
+ export { Accordion, AccordionItem, type AccordionProps, ActionBar, type ActionBarProps, ActionButton, type ActionButtonProps, ActionMenu, type ActionMenuProps, _AppLayout as AppLayout, type AppLayoutHeaderProps, type AppLayoutMainProps, type AppLayoutProps, type AppLayoutSidebarProps, Aside, type AsideProps, Aspect, type AspectProps, _Autocomplete as Autocomplete, type AutocompleteProps, Badge, type BadgeProps, _Breadcrumbs as Breadcrumbs, type BreadcrumbsProps, Breakout, type BreakoutProps, _Button as Button, type ButtonProps, _Calendar as Calendar, type CalendarProps, Card, type CardProps, Center, type CenterProps, _Checkbox as Checkbox, _CheckboxGroup as CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, CloseButton, Collapsible, type CollapsibleProps, Columns, type ColumnsProps, _ComboBox as ComboBox, type ComboBoxProps, type ConfirmationConfig, ConfirmationContext, ConfirmationDialog, type ConfirmationDialogProps, type ConfirmationFn, ConfirmationProvider, type ConfirmationResult, Container, type ContainerProps, _ContextualHelp as ContextualHelp, type ContextualHelpProps, _DateField as DateField, type DateFieldProps, DateFormat, _DatePicker as DatePicker, type DatePickerProps, _Dialog as Dialog, type DialogProps, type DisclosureProps, _Divider as Divider, type DividerProps, Drawer, type DrawerProps, EmptyState, type EmptyStateProps, FieldBase, type FieldBaseProps, FileField, type FileFieldProps, type FileTriggerProps, _Form as Form, type FormProps, Grid, type GridProps, _Headline as Headline, type HeadlineProps, HelpText, type HelpTextProps, I18nProvider, IconButton, Inline, type InlineProps, _Input as Input, type InputProps, Inset, type InsetProps, _Label as Label, type LabelProps, _Link as Link, _LinkButton as LinkButton, type LinkButtonProps, type LinkProps, List, _ListBox as ListBox, _ListBoxItem as ListBoxItem, type ListBoxItemProps, type ListBoxProps, type ListProps, Loader, type LoaderProps, type LoaderVisualType, MarigoldProvider, type MarigoldProviderProps, _Menu as Menu, type MenuProps, _Modal as Modal, type ModalProps, Multiselect, NonModal, type NonModalProps, _NumberField as NumberField, type NumberFieldProps, NumericFormat, type OverlayContainerProps, OverlayContainerProvider, _Pagination as Pagination, type PaginationProps, _Popover as Popover, type PopoverProps, ProgressCircle, type ProgressCircleProps, ProgressCircleSvg, _Radio as Radio, _RadioGroup as RadioGroup, type RadioGroupProps, type RadioProps, RouterProvider, Scrollable, type ScrollableProps, _SearchField as SearchField, type SearchFieldProps, SearchInput, type SearchInputProps, SectionMessage, type SectionMessageProps, Select, _SelectList as SelectList, _SelectListItem as SelectListItem, type SelectListItemProps, type SelectListProps, type SelectProps, type Selection, _Sidebar as Sidebar, type SidebarItemProps, type SidebarNavProps, type SidebarProps, type SidebarProviderProps, _Slider as Slider, type SliderProps, Split, Stack, type StackProps, _Switch as Switch, type SwitchProps, Table, type TableBodyProps, type TableCellProps, type TableColumnProps, type TableDragPreviewProps, type TableDropIndicatorProps, type TableEditableCellProps, type TableHeaderProps, type TableProps, type TableRowProps, _Tabs as Tabs, type TabsProps, _Tag as Tag, TagField, type TagFieldProps, _TagGroup as TagGroup, type TagGroupProps, type TagProps, _Text as Text, _TextArea as TextArea, type TextAreaProps, _TextField as TextField, type TextFieldProps, type TextProps, ThemeProvider, Tiles, type TilesProps, _TimeField as TimeField, type TimeFieldProps, type TimeValue, Toast, type ToastContentProps, type ToastProps, ToastProvider, type ToastProviderProps, _ToggleButton as ToggleButton, _ToggleButtonGroup as ToggleButtonGroup, type ToggleButtonGroupProps, type ToggleButtonProps, _Tooltip as Tooltip, type TooltipProps, _TopNavigation as TopNavigation, type TopNavigationProps, Tray, type TrayProps, Underlay, type UnderlayProps, type UseActionBarProps, type UseActionBarReturn, VisuallyHidden, parseFormData, useActionBar, useAsyncList, useConfirmation, useDragAndDrop, useListData, useTheme, useToast };