@frame-ui-ng/components 0.4.1 → 0.4.2-beta.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frame-ui-ng/components",
3
- "version": "0.4.1",
3
+ "version": "0.4.2-beta.0",
4
4
  "description": "Angular components for FrameUI.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -26,7 +26,7 @@
26
26
  "@angular/common": ">=21.0.0 <22.0.0",
27
27
  "@angular/core": ">=21.0.0 <22.0.0",
28
28
  "@angular/forms": ">=21.0.0 <22.0.0",
29
- "@frame-ui-ng/foundation": "0.4.1",
29
+ "@frame-ui-ng/foundation": "0.4.2-beta.0",
30
30
  "rxjs": "^7.8.0"
31
31
  },
32
32
  "dependencies": {
@@ -1,19 +1,27 @@
1
- .frame-select__content,
2
- [frSelectPanel],
3
- frame-select-panel {
4
- min-width: var(--frame-select-content-min-width);
5
- max-height: var(--frame-select-content-max-height);
6
- overflow: auto;
7
- }
8
-
9
- .frame-select__content[data-position='item-aligned'],
10
- [frSelectPanel][data-position='item-aligned'],
11
- frame-select-panel[data-position='item-aligned'] {
12
- min-width: var(--frame-select-content-min-width);
13
- }
14
-
15
- .frame-select__content[data-position='popper'],
16
- [frSelectPanel][data-position='popper'],
17
- frame-select-panel[data-position='popper'] {
18
- box-shadow: var(--frame-select-content-popper-shadow);
19
- }
1
+ .frame-select__content,
2
+ [frSelectPanel],
3
+ frame-select-panel {
4
+ min-width: var(--frame-select-content-min-width);
5
+ max-height: var(--frame-select-content-max-height);
6
+ overflow: auto;
7
+ }
8
+
9
+ .frame-select__content[data-position='item-aligned'],
10
+ [frSelectPanel][data-position='item-aligned'],
11
+ frame-select-panel[data-position='item-aligned'] {
12
+ min-width: var(--frame-select-content-min-width);
13
+ }
14
+
15
+ .frame-select__content[data-position='popper'],
16
+ [frSelectPanel][data-position='popper'],
17
+ frame-select-panel[data-position='popper'] {
18
+ box-shadow: var(--frame-select-content-popper-shadow);
19
+ }
20
+
21
+ .frame-select__content:has(.frame-calendar),
22
+ [frSelectPanel]:has(.frame-calendar),
23
+ frame-select-panel:has(.frame-calendar) {
24
+ max-height: none;
25
+ max-width: calc(100vw - 1.5rem);
26
+ overflow: visible;
27
+ }
@@ -75,6 +75,7 @@ declare class FrCalendar implements ControlValueAccessor {
75
75
  readonly yearOptions: _angular_core.Signal<number[]>;
76
76
  readonly months: _angular_core.Signal<CalendarMonth[]>;
77
77
  readonly activeDate: _angular_core.Signal<Date>;
78
+ readonly hasDateLabels: _angular_core.Signal<boolean>;
78
79
  private onTouched;
79
80
  private onChange;
80
81
  writeValue(value: Date | FrCalendarDateRange | null): void;
@@ -1,9 +1,10 @@
1
1
  import * as _angular_core from '@angular/core';
2
- import { Type, TemplateRef, ViewContainerRef } from '@angular/core';
2
+ import { Type, TemplateRef, ViewContainerRef, InjectionToken } from '@angular/core';
3
3
  import { Direction } from '@angular/cdk/bidi';
4
4
  import { ComponentType } from '@angular/cdk/portal';
5
5
  import { DialogRef, DialogConfig } from '@angular/cdk/dialog';
6
6
  import { FrButtonAppearance } from '@frame-ui-ng/components/button';
7
+ import * as _frame_ui_ng_components_modal from '@frame-ui-ng/components/modal';
7
8
 
8
9
  type FrModalFooterAction = {
9
10
  appearance?: FrButtonAppearance;
@@ -106,6 +107,7 @@ declare class FrModalClose {
106
107
  }
107
108
  /** Panel slot for modal. */
108
109
  declare class FrModalPanel {
110
+ protected readonly panelLayout: _frame_ui_ng_components_modal.FrModalPanelLayout | null;
109
111
  readonly scrollable: _angular_core.InputSignalWithTransform<boolean, unknown>;
110
112
  readonly showCloseButton: _angular_core.InputSignalWithTransform<boolean, unknown>;
111
113
  readonly size: _angular_core.InputSignal<"sm" | "md" | "lg" | "xl" | "full">;
@@ -139,7 +141,16 @@ declare class FrModalDescription {
139
141
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<FrModalDescription, "[frModalDescription], frame-modal-description", never, {}, {}, never, never, true, never>;
140
142
  }
141
143
 
142
- declare const FR_MODAL_DATA: _angular_core.InjectionToken<any>;
144
+ type FrModalPanelLayout = {
145
+ height?: string;
146
+ maxHeight?: string;
147
+ maxWidth?: string;
148
+ minHeight?: string;
149
+ minWidth?: string;
150
+ width?: string;
151
+ };
152
+ declare const FR_MODAL_DATA: InjectionToken<any>;
153
+ declare const FR_MODAL_PANEL_LAYOUT: InjectionToken<FrModalPanelLayout>;
143
154
  declare const FR_MODAL_REF: typeof FrModalRef;
144
155
 
145
156
  /** Trigger control for modal. */
@@ -167,5 +178,5 @@ declare class FrModalModule {
167
178
  static ɵinj: _angular_core.ɵɵInjectorDeclaration<FrModalModule>;
168
179
  }
169
180
 
170
- export { FR_MODAL_DATA, FR_MODAL_REF, FrModalBody, FrModalClose, FrModalContent, FrModalDescription, FrModalFooter, FrModalHeader, FrModalModule, FrModalPanel, FrModalRef, FrModalService, FrModalShell, FrModalTitle, FrModalTrigger };
171
- export type { FrModalConfig, FrModalFooterAction, FrModalShellOptions, FrModalSize };
181
+ export { FR_MODAL_DATA, FR_MODAL_PANEL_LAYOUT, FR_MODAL_REF, FrModalBody, FrModalClose, FrModalContent, FrModalDescription, FrModalFooter, FrModalHeader, FrModalModule, FrModalPanel, FrModalRef, FrModalService, FrModalShell, FrModalTitle, FrModalTrigger };
182
+ export type { FrModalConfig, FrModalFooterAction, FrModalPanelLayout, FrModalShellOptions, FrModalSize };
@@ -2,4 +2,6 @@ declare function clampNumber(value: number, min: number, max: number): number;
2
2
  declare function coerceNumber(value: unknown, fallback: number): number;
3
3
  declare function parseCssPixelValue(value: string, fallback: number): number;
4
4
 
5
- export { clampNumber, coerceNumber, parseCssPixelValue };
5
+ declare function valueToCssSize(value: number | string | undefined): string | undefined;
6
+
7
+ export { clampNumber, coerceNumber, parseCssPixelValue, valueToCssSize };
@@ -182,7 +182,7 @@ type FrBadgeVariant = (typeof FR_BADGE_VARIANTS)[number];
182
182
  type FrBadgeIconPosition = (typeof FR_BADGE_ICON_POSITIONS)[number];
183
183
  /** Inline badge host with variant styling. */
184
184
  declare class FrBadge {
185
- readonly variant: i0.InputSignal<"default" | "link" | "ghost" | "outline" | "destructive" | "success" | "secondary">;
185
+ readonly variant: i0.InputSignal<"default" | "destructive" | "success" | "secondary" | "outline" | "ghost" | "link">;
186
186
  static ɵfac: i0.ɵɵFactoryDeclaration<FrBadge, never>;
187
187
  static ɵdir: i0.ɵɵDirectiveDeclaration<FrBadge, "[frBadge], frame-badge", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
188
188
  }
@@ -254,7 +254,7 @@ type FrButtonSize = (typeof FR_BUTTON_SIZES)[number];
254
254
  declare class FrButton {
255
255
  private readonly loadingIndicator;
256
256
  private readonly spinnerIndicator;
257
- readonly appearance: i0.InputSignal<"ghost" | "outline" | "primary">;
257
+ readonly appearance: i0.InputSignal<"outline" | "ghost" | "primary">;
258
258
  readonly disabled: i0.InputSignalWithTransform<boolean, unknown>;
259
259
  readonly loading: i0.InputSignalWithTransform<boolean, unknown>;
260
260
  readonly loadingDisplay: i0.InputSignal<"inline" | "replace">;
@@ -369,6 +369,7 @@ declare class FrCalendar implements ControlValueAccessor {
369
369
  readonly yearOptions: i0.Signal<number[]>;
370
370
  readonly months: i0.Signal<CalendarMonth[]>;
371
371
  readonly activeDate: i0.Signal<Date>;
372
+ readonly hasDateLabels: i0.Signal<boolean>;
372
373
  private onTouched;
373
374
  private onChange;
374
375
  writeValue(value: Date | FrCalendarDateRange | null): void;
@@ -408,7 +409,7 @@ type FrCardSpacing = (typeof FR_CARD_SPACINGS)[number];
408
409
  type FrCardFooterAlign = (typeof FR_CARD_FOOTER_ALIGNS)[number];
409
410
  /** Card container with size and spacing controls. */
410
411
  declare class FrCard {
411
- readonly size: i0.InputSignal<"default" | "sm">;
412
+ readonly size: i0.InputSignal<"sm" | "default">;
412
413
  readonly spacing: i0.InputSignal<"sm" | "md" | "lg" | "xl" | null>;
413
414
  protected readonly spacingValue: i0.Signal<string | null>;
414
415
  static ɵfac: i0.ɵɵFactoryDeclaration<FrCard, never>;
@@ -1080,9 +1081,9 @@ declare class FrConfirmPopover {
1080
1081
  readonly align: i0.InputSignal<"start" | "end" | "center" | undefined>;
1081
1082
  readonly alignOffset: i0.InputSignalWithTransform<number | undefined, unknown>;
1082
1083
  readonly buttonSize: i0.InputSignal<"sm" | "md" | "lg" | undefined>;
1083
- readonly cancelAppearance: i0.InputSignal<"ghost" | "outline" | "primary" | undefined>;
1084
+ readonly cancelAppearance: i0.InputSignal<"outline" | "ghost" | "primary" | undefined>;
1084
1085
  readonly cancelLabel: i0.InputSignal<string | undefined>;
1085
- readonly confirmAppearance: i0.InputSignal<"ghost" | "outline" | "primary" | undefined>;
1086
+ readonly confirmAppearance: i0.InputSignal<"outline" | "ghost" | "primary" | undefined>;
1086
1087
  readonly confirmLabel: i0.InputSignal<string | undefined>;
1087
1088
  readonly description: i0.InputSignal<string | undefined>;
1088
1089
  readonly disabled: i0.InputSignalWithTransform<boolean | undefined, unknown>;
@@ -1115,9 +1116,9 @@ declare class FrConfirmPopover {
1115
1116
  }
1116
1117
  declare class FrConfirmPopoverPanel {
1117
1118
  readonly buttonSize: i0.InputSignal<"sm" | "md" | "lg">;
1118
- readonly cancelAppearance: i0.InputSignal<"ghost" | "outline" | "primary">;
1119
+ readonly cancelAppearance: i0.InputSignal<"outline" | "ghost" | "primary">;
1119
1120
  readonly cancelLabel: i0.InputSignal<string>;
1120
- readonly confirmAppearance: i0.InputSignal<"ghost" | "outline" | "primary">;
1121
+ readonly confirmAppearance: i0.InputSignal<"outline" | "ghost" | "primary">;
1121
1122
  readonly confirmLabel: i0.InputSignal<string>;
1122
1123
  readonly description: i0.InputSignal<string | undefined>;
1123
1124
  readonly descriptionId: i0.InputSignal<string | null>;
@@ -1921,7 +1922,7 @@ type FrItemMediaVariant = (typeof FR_ITEM_MEDIA_VARIANTS)[number];
1921
1922
  declare class FrItem {
1922
1923
  readonly disabled: i0.InputSignalWithTransform<boolean, unknown>;
1923
1924
  readonly interactive: i0.InputSignalWithTransform<boolean, unknown>;
1924
- readonly size: i0.InputSignal<"default" | "sm" | "xs">;
1925
+ readonly size: i0.InputSignal<"sm" | "default" | "xs">;
1925
1926
  readonly variant: i0.InputSignal<"default" | "outline" | "muted">;
1926
1927
  static ɵfac: i0.ɵɵFactoryDeclaration<FrItem, never>;
1927
1928
  static ɵdir: i0.ɵɵDirectiveDeclaration<FrItem, "[frItem], frame-item", never, { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "interactive": { "alias": "interactive"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
@@ -2153,6 +2154,7 @@ declare class FrModalClose {
2153
2154
  }
2154
2155
  /** Panel slot for modal. */
2155
2156
  declare class FrModalPanel {
2157
+ protected readonly panelLayout: _frame_ui_ng_components.FrModalPanelLayout | null;
2156
2158
  readonly scrollable: i0.InputSignalWithTransform<boolean, unknown>;
2157
2159
  readonly showCloseButton: i0.InputSignalWithTransform<boolean, unknown>;
2158
2160
  readonly size: i0.InputSignal<"full" | "sm" | "md" | "lg" | "xl">;
@@ -2186,7 +2188,16 @@ declare class FrModalDescription {
2186
2188
  static ɵdir: i0.ɵɵDirectiveDeclaration<FrModalDescription, "[frModalDescription], frame-modal-description", never, {}, {}, never, never, true, never>;
2187
2189
  }
2188
2190
 
2189
- declare const FR_MODAL_DATA: i0.InjectionToken<any>;
2191
+ type FrModalPanelLayout = {
2192
+ height?: string;
2193
+ maxHeight?: string;
2194
+ maxWidth?: string;
2195
+ minHeight?: string;
2196
+ minWidth?: string;
2197
+ width?: string;
2198
+ };
2199
+ declare const FR_MODAL_DATA: InjectionToken<any>;
2200
+ declare const FR_MODAL_PANEL_LAYOUT: InjectionToken<FrModalPanelLayout>;
2190
2201
  declare const FR_MODAL_REF: typeof FrModalRef;
2191
2202
 
2192
2203
  /** Trigger control for modal. */
@@ -2249,7 +2260,7 @@ declare class FrNavigationMenuLink {
2249
2260
  }
2250
2261
  /** Grid layout helper for navigation menu content. */
2251
2262
  declare class FrNavigationMenuGrid {
2252
- readonly columns: i0.InputSignal<2 | 1 | 3>;
2263
+ readonly columns: i0.InputSignal<1 | 2 | 3>;
2253
2264
  static ɵfac: i0.ɵɵFactoryDeclaration<FrNavigationMenuGrid, never>;
2254
2265
  static ɵdir: i0.ɵɵDirectiveDeclaration<FrNavigationMenuGrid, "[frNavigationMenuGrid]", never, { "columns": { "alias": "columns"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2255
2266
  }
@@ -2928,8 +2939,8 @@ declare class FrSidebar {
2928
2939
  readonly elementRef: ElementRef<HTMLElement>;
2929
2940
  readonly provider: FrSidebarProvider | null;
2930
2941
  readonly side: i0.InputSignalWithTransform<"left" | "right", unknown>;
2931
- readonly variant: i0.InputSignalWithTransform<"sidebar" | "floating" | "inset", unknown>;
2932
- readonly collapsible: i0.InputSignalWithTransform<"none" | "offcanvas" | "icon", unknown>;
2942
+ readonly variant: i0.InputSignalWithTransform<"inset" | "sidebar" | "floating", unknown>;
2943
+ readonly collapsible: i0.InputSignalWithTransform<"none" | "icon" | "offcanvas", unknown>;
2933
2944
  readonly minSize: i0.InputSignalWithTransform<number | null, unknown>;
2934
2945
  readonly maxSize: i0.InputSignalWithTransform<number | null, unknown>;
2935
2946
  readonly resizable: i0.InputSignalWithTransform<boolean, unknown>;
@@ -3020,7 +3031,7 @@ declare class FrSidebarMenuItem {
3020
3031
  declare class FrSidebarMenuButton {
3021
3032
  readonly active: i0.InputSignalWithTransform<boolean, unknown>;
3022
3033
  readonly disabled: i0.InputSignalWithTransform<boolean, unknown>;
3023
- readonly size: i0.InputSignalWithTransform<"default" | "sm" | "lg", unknown>;
3034
+ readonly size: i0.InputSignalWithTransform<"sm" | "lg" | "default", unknown>;
3024
3035
  readonly variant: i0.InputSignalWithTransform<"default" | "outline", unknown>;
3025
3036
  readonly tooltip: i0.InputSignal<string | null>;
3026
3037
  handleClick(event: Event): void;
@@ -3068,7 +3079,7 @@ declare const FR_SWITCH_SIZES: readonly ["sm", "default"];
3068
3079
  type FrSwitchSize = (typeof FR_SWITCH_SIZES)[number];
3069
3080
  /** Switch input styled as a FrameUI control. */
3070
3081
  declare class FrSwitch {
3071
- readonly size: i0.InputSignal<"default" | "sm">;
3082
+ readonly size: i0.InputSignal<"sm" | "default">;
3072
3083
  static ɵfac: i0.ɵɵFactoryDeclaration<FrSwitch, never>;
3073
3084
  static ɵdir: i0.ɵɵDirectiveDeclaration<FrSwitch, "input[type=checkbox][frSwitch]", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3074
3085
  }
@@ -3207,5 +3218,5 @@ declare class FrVirtualViewport {
3207
3218
  static ɵdir: i0.ɵɵDirectiveDeclaration<FrVirtualViewport, "[frVirtualViewport], frame-virtual-viewport", ["frVirtualViewport"], { "itemSize": { "alias": "itemSize"; "required": true; "isSignal": true; }; "overscan": { "alias": "overscan"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3208
3219
  }
3209
3220
 
3210
- export { FR_ACCORDION_TYPES, FR_ALERT_VARIANTS, FR_AVATAR_SIZES, FR_BADGE_ICON_POSITIONS, FR_BADGE_VARIANTS, FR_BUTTON_APPEARANCES, FR_BUTTON_GROUP_ORIENTATIONS, FR_BUTTON_LOADING_DISPLAYS, FR_BUTTON_RADII, FR_BUTTON_SIZES, FR_CARD_FOOTER_ALIGNS, FR_CARD_SIZES, FR_CARD_SPACINGS, FR_CAROUSEL_ALIGNS, FR_CAROUSEL_DIRECTIONS, FR_CAROUSEL_ORIENTATIONS, FR_CONTEXT_MENU_CONTENT, FR_DROPDOWN_MENU_ALIGNMENTS, FR_DROPDOWN_MENU_CONTENT, FR_DROPDOWN_MENU_ITEM_VARIANTS, FR_DROPDOWN_MENU_PARENT, FR_DROPDOWN_MENU_SIDES, FR_DROPDOWN_MENU_TRIGGER_MODES, FR_EMPTY_MEDIA_VARIANTS, FR_EMPTY_ORIENTATIONS, FR_EMPTY_VARIANTS, FR_FIELD_LEGEND_VARIANTS, FR_FIELD_ORIENTATIONS, FR_HOVER_CARD_ALIGNMENTS, FR_HOVER_CARD_SIDES, FR_INPUT_GROUP_ADDON_ALIGNS, FR_INPUT_GROUP_ADDON_VARIANTS, FR_INPUT_OTP_PATTERN_DIGITS, FR_INPUT_OTP_PATTERN_DIGITS_AND_CHARS, FR_ITEM_MEDIA_VARIANTS, FR_ITEM_SIZES, FR_ITEM_VARIANTS, FR_MENUBAR_PARENT, FR_MODAL_DATA, FR_MODAL_REF, FR_NAVIGATION_MENU_PARENT, FR_POPOVER_ALIGNMENTS, FR_POPOVER_SIDES, FR_RADIO_GROUP_ORIENTATIONS, FR_RADIO_GROUP_VARIANTS, FR_RESIZABLE_ORIENTATIONS, FR_SELECT_ICON_POSITIONS, FR_SELECT_INDICATOR_POSITIONS, FR_SELECT_POSITIONS, FR_SEPARATOR_ORIENTATIONS, FR_SHEET_DATA, FR_SHEET_SIDES, FR_SIDEBAR_COLLAPSIBLES, FR_SIDEBAR_MENU_BUTTON_SIZES, FR_SIDEBAR_MENU_BUTTON_VARIANTS, FR_SIDEBAR_PROVIDER, FR_SIDEBAR_SIDES, FR_SIDEBAR_VARIANTS, FR_SLIDER_ORIENTATIONS, FR_SWITCH_SIZES, FrAccordion, FrAccordionContent, FrAccordionIcon, FrAccordionItem, FrAccordionTrigger, FrAlert, FrAlertDescription, FrAlertIcon, FrAlertTitle, FrAvatar, FrAvatarBadge, FrAvatarFallback, FrAvatarGroup, FrAvatarGroupCount, FrAvatarIcon, FrAvatarImage, FrBadge, FrBadgeIcon, FrBadgeLabel, FrBadgeSpinner, FrBreadcrumb, FrBreadcrumbEllipsis, FrBreadcrumbItem, FrBreadcrumbLink, FrBreadcrumbList, FrBreadcrumbPage, FrBreadcrumbSeparator, FrButton, FrButtonGroup, FrButtonIcon, FrButtonLabel, FrButtonLoading, FrCalendar, FrCard, FrCardAction, FrCardContent, FrCardDescription, FrCardFooter, FrCardHeader, FrCardTitle, FrCarousel, FrCarouselContent, FrCarouselItem, FrCarouselNext, FrCarouselPrevious, FrCheckbox, FrCheckboxField, FrCheckboxLabel, FrCollapsible, FrCollapsibleContent, FrCollapsibleTrigger, FrCombobox, FrComboboxChip, FrComboboxChipRemove, FrComboboxChips, FrComboboxChipsInput, FrComboboxClear, FrComboboxCollection, FrComboboxContent, FrComboboxEmpty, FrComboboxError, FrComboboxGroup, FrComboboxInput, FrComboboxItem, FrComboboxItemIndicator, FrComboboxLabel, FrComboboxList, FrComboboxPanel, FrComboboxRootLookup, FrComboboxSeparator, FrComboboxTrigger, FrComboboxValueList, FrCommand, FrCommandDialog, FrCommandDialogTrigger, FrCommandEmpty, FrCommandFooter, FrCommandGroup, FrCommandGroupHeading, FrCommandInput, FrCommandItem, FrCommandItemIcon, FrCommandList, FrCommandSeparator, FrCommandService, FrCommandShortcut, FrConfirmPopover, FrConfirmPopoverPanel, FrContextMenu, FrContextMenuCheckboxItem, FrContextMenuContent, FrContextMenuItem, FrContextMenuItemIndicator, FrContextMenuLabel, FrContextMenuPanel, FrContextMenuRadioGroup, FrContextMenuRadioItem, FrContextMenuSeparator, FrContextMenuShortcut, FrContextMenuSub, FrContextMenuSubTrigger, FrContextMenuTrigger, FrControlValueAccessor, FrDatePicker, FrDropdownMenu, FrDropdownMenuCheckboxItem, FrDropdownMenuContent, FrDropdownMenuItem, FrDropdownMenuItemIndicator, FrDropdownMenuLabel, FrDropdownMenuPanel, FrDropdownMenuRadioGroup, FrDropdownMenuRadioItem, FrDropdownMenuSeparator, FrDropdownMenuShortcut, FrDropdownMenuSub, FrDropdownMenuSubTrigger, FrDropdownMenuTree, FrDropdownMenuTrigger, FrEmpty, FrEmptyContent, FrEmptyDescription, FrEmptyHeader, FrEmptyMedia, FrEmptyTitle, FrField, FrFieldContent, FrFieldDescription, FrFieldError, FrFieldGroup, FrFieldLabel, FrFieldLegend, FrFieldSeparator, FrFieldSet, FrHoverCardRoot as FrHoverCard, FrHoverCardContent, FrHoverCardPanel, FrHoverCardTrigger, FrIconButton, FrInput, FrInputBadge, FrInputControl, FrInputDescription, FrInputError, FrInputField, FrInputFieldGroup, FrInputGroup, FrInputGroupAddon, FrInputGroupInput, FrInputGroupText, FrInputHeader, FrInputLabel, FrInputOtp, FrInputOtpGroup, FrInputOtpSeparator, FrInputOtpSlot, FrItem, FrItemActions, FrItemContent, FrItemDescription, FrItemFooter, FrItemGroup, FrItemHeader, FrItemMedia, FrItemSeparator, FrItemTitle, FrMenuBar, FrMenuBarCheckboxItem, FrMenuBarContent, FrMenuBarItem, FrMenuBarItemIndicator, FrMenuBarLabel, FrMenuBarMenu, FrMenuBarPanel, FrMenuBarRadioGroup, FrMenuBarRadioItem, FrMenuBarSeparator, FrMenuBarShortcut, FrMenuBarSub, FrMenuBarSubTrigger, FrMenuBarTrigger, FrModalBody, FrModalClose, FrModalContent, FrModalDescription, FrModalFooter, FrModalHeader, FrModalPanel, FrModalRef, FrModalService, FrModalShell, FrModalTitle, FrModalTrigger, FrNavigationLinkSeparator, FrNavigationMenu, FrNavigationMenuContent, FrNavigationMenuFeature, FrNavigationMenuGrid, FrNavigationMenuIndicator, FrNavigationMenuItem, FrNavigationMenuLink, FrNavigationMenuLinkDescription, FrNavigationMenuLinkTitle, FrNavigationMenuList, FrNavigationMenuPanel, FrNavigationMenuTrigger, FrNavigationMenuViewport, FrPagination, FrPaginationContent, FrPaginationEllipsis, FrPaginationIcon, FrPaginationItem, FrPaginationLink, FrPaginationNext, FrPaginationPrevious, FrPopoverRoot as FrPopover, FrPopoverBody, FrPopoverClose, FrPopoverContent, FrPopoverDescription, FrPopoverFooter, FrPopoverHeader, FrPopoverPanel, FrPopoverTitle, FrPopoverTrigger, FrProgress, FrProgressIndicator, FrRadioGroup, FrRadioGroupCard, FrRadioGroupCardMeta, FrRadioGroupField, FrRadioGroupItem, FrResizableHandle, FrResizablePanel, FrResizablePanelGroup, FrSelect, FrSelectContent, FrSelectError, FrSelectGroup, FrSelectIcon, FrSelectItem, FrSelectItemIndicator, FrSelectLabel, FrSelectPanel, FrSelectSeparator, FrSelectValue, FrSeparator, FrSheetBody, FrSheetClose, FrSheetContent, FrSheetDescription, FrSheetFooter, FrSheetHeader, FrSheetPanel, FrSheetService, FrSheetShell, FrSheetTitle, FrSheetTrigger, FrSidebar, FrSidebarContent, FrSidebarFooter, FrSidebarGroup, FrSidebarGroupAction, FrSidebarGroupContent, FrSidebarGroupLabel, FrSidebarHeader, FrSidebarInset, FrSidebarMenu, FrSidebarMenuAction, FrSidebarMenuBadge, FrSidebarMenuButton, FrSidebarMenuItem, FrSidebarMenuSkeleton, FrSidebarMenuSub, FrSidebarMenuSubButton, FrSidebarMenuSubItem, FrSidebarProvider, FrSidebarRail, FrSidebarTrigger, FrSlider, FrSwitch, FrSwitchContent, FrSwitchDescription, FrSwitchError, FrSwitchField, FrSwitchLabel, FrTextarea, FrVirtualContent, FrVirtualFor, FrVirtualItem, FrVirtualItemMeta, FrVirtualList, FrVirtualPanel, FrVirtualViewport, buildConnectedPositions, calculateScrollOffsetForIndex, calculateVirtualRange, defaultPositions, provideDsValueAccessor };
3211
- export type { FrAccordionType, FrAlertVariant, FrAvatarSize, FrBadgeIconPosition, FrBadgeVariant, FrButtonAppearance, FrButtonGroupOrientation, FrButtonLoadingDisplay, FrButtonRadius, FrButtonSize, FrCalendarCaptionLayout, FrCalendarCellContext, FrCalendarDateRange, FrCalendarDisabledMatcher, FrCalendarMode, FrCardFooterAlign, FrCardSize, FrCardSpacing, FrCarouselAlign, FrCarouselApi, FrCarouselDirection, FrCarouselEvent, FrCarouselOptions, FrCarouselOrientation, FrCarouselPlugin, FrComboboxStringifier, FrComboboxValue, FrCommandDialogConfig, FrCommandDialogRef, FrCommandFilter, FrConfirmPopoverConfig, FrConfirmPopoverResult, FrDatePickerFormatter, FrDatePickerParser, FrDatePickerPreset, FrDatePickerValue, FrDropdownMenuAlignment, FrDropdownMenuItemVariant, FrDropdownMenuParent, FrDropdownMenuSide, FrDropdownMenuTriggerMode, FrEmptyMediaVariant, FrEmptyOrientation, FrEmptyVariant, FrFieldErrorLike, FrFieldLegendVariant, FrFieldOrientation, FrHoverCardAlignment, FrHoverCardSide, FrInputGroupAddonAlign, FrInputGroupAddonVariant, FrInputOtpPattern, FrItemMediaVariant, FrItemSize, FrItemVariant, FrModalConfig, FrModalFooterAction, FrModalShellOptions, FrModalSize, FrPaginationPage, FrPopoverAlignment, FrPopoverSide, FrRadioGroupOrientation, FrRadioGroupVariant, FrResizableOrientation, FrSelectIconPosition, FrSelectIndicatorPosition, FrSelectPosition, FrSeparatorOrientation, FrSheetConfig, FrSheetFooterAction, FrSheetRef, FrSheetShellOptions, FrSheetSide, FrSidebarCollapsible, FrSidebarMenuButtonSize, FrSidebarMenuButtonVariant, FrSidebarSide, FrSidebarState, FrSidebarVariant, FrSliderOrientation, FrSliderValue, FrSwitchSize, FrVirtualForContext, FrVirtualRange, FrVirtualRangeOptions, FrVirtualScrollAlignment, FrVirtualTrackBy };
3221
+ export { FR_ACCORDION_TYPES, FR_ALERT_VARIANTS, FR_AVATAR_SIZES, FR_BADGE_ICON_POSITIONS, FR_BADGE_VARIANTS, FR_BUTTON_APPEARANCES, FR_BUTTON_GROUP_ORIENTATIONS, FR_BUTTON_LOADING_DISPLAYS, FR_BUTTON_RADII, FR_BUTTON_SIZES, FR_CARD_FOOTER_ALIGNS, FR_CARD_SIZES, FR_CARD_SPACINGS, FR_CAROUSEL_ALIGNS, FR_CAROUSEL_DIRECTIONS, FR_CAROUSEL_ORIENTATIONS, FR_CONTEXT_MENU_CONTENT, FR_DROPDOWN_MENU_ALIGNMENTS, FR_DROPDOWN_MENU_CONTENT, FR_DROPDOWN_MENU_ITEM_VARIANTS, FR_DROPDOWN_MENU_PARENT, FR_DROPDOWN_MENU_SIDES, FR_DROPDOWN_MENU_TRIGGER_MODES, FR_EMPTY_MEDIA_VARIANTS, FR_EMPTY_ORIENTATIONS, FR_EMPTY_VARIANTS, FR_FIELD_LEGEND_VARIANTS, FR_FIELD_ORIENTATIONS, FR_HOVER_CARD_ALIGNMENTS, FR_HOVER_CARD_SIDES, FR_INPUT_GROUP_ADDON_ALIGNS, FR_INPUT_GROUP_ADDON_VARIANTS, FR_INPUT_OTP_PATTERN_DIGITS, FR_INPUT_OTP_PATTERN_DIGITS_AND_CHARS, FR_ITEM_MEDIA_VARIANTS, FR_ITEM_SIZES, FR_ITEM_VARIANTS, FR_MENUBAR_PARENT, FR_MODAL_DATA, FR_MODAL_PANEL_LAYOUT, FR_MODAL_REF, FR_NAVIGATION_MENU_PARENT, FR_POPOVER_ALIGNMENTS, FR_POPOVER_SIDES, FR_RADIO_GROUP_ORIENTATIONS, FR_RADIO_GROUP_VARIANTS, FR_RESIZABLE_ORIENTATIONS, FR_SELECT_ICON_POSITIONS, FR_SELECT_INDICATOR_POSITIONS, FR_SELECT_POSITIONS, FR_SEPARATOR_ORIENTATIONS, FR_SHEET_DATA, FR_SHEET_SIDES, FR_SIDEBAR_COLLAPSIBLES, FR_SIDEBAR_MENU_BUTTON_SIZES, FR_SIDEBAR_MENU_BUTTON_VARIANTS, FR_SIDEBAR_PROVIDER, FR_SIDEBAR_SIDES, FR_SIDEBAR_VARIANTS, FR_SLIDER_ORIENTATIONS, FR_SWITCH_SIZES, FrAccordion, FrAccordionContent, FrAccordionIcon, FrAccordionItem, FrAccordionTrigger, FrAlert, FrAlertDescription, FrAlertIcon, FrAlertTitle, FrAvatar, FrAvatarBadge, FrAvatarFallback, FrAvatarGroup, FrAvatarGroupCount, FrAvatarIcon, FrAvatarImage, FrBadge, FrBadgeIcon, FrBadgeLabel, FrBadgeSpinner, FrBreadcrumb, FrBreadcrumbEllipsis, FrBreadcrumbItem, FrBreadcrumbLink, FrBreadcrumbList, FrBreadcrumbPage, FrBreadcrumbSeparator, FrButton, FrButtonGroup, FrButtonIcon, FrButtonLabel, FrButtonLoading, FrCalendar, FrCard, FrCardAction, FrCardContent, FrCardDescription, FrCardFooter, FrCardHeader, FrCardTitle, FrCarousel, FrCarouselContent, FrCarouselItem, FrCarouselNext, FrCarouselPrevious, FrCheckbox, FrCheckboxField, FrCheckboxLabel, FrCollapsible, FrCollapsibleContent, FrCollapsibleTrigger, FrCombobox, FrComboboxChip, FrComboboxChipRemove, FrComboboxChips, FrComboboxChipsInput, FrComboboxClear, FrComboboxCollection, FrComboboxContent, FrComboboxEmpty, FrComboboxError, FrComboboxGroup, FrComboboxInput, FrComboboxItem, FrComboboxItemIndicator, FrComboboxLabel, FrComboboxList, FrComboboxPanel, FrComboboxRootLookup, FrComboboxSeparator, FrComboboxTrigger, FrComboboxValueList, FrCommand, FrCommandDialog, FrCommandDialogTrigger, FrCommandEmpty, FrCommandFooter, FrCommandGroup, FrCommandGroupHeading, FrCommandInput, FrCommandItem, FrCommandItemIcon, FrCommandList, FrCommandSeparator, FrCommandService, FrCommandShortcut, FrConfirmPopover, FrConfirmPopoverPanel, FrContextMenu, FrContextMenuCheckboxItem, FrContextMenuContent, FrContextMenuItem, FrContextMenuItemIndicator, FrContextMenuLabel, FrContextMenuPanel, FrContextMenuRadioGroup, FrContextMenuRadioItem, FrContextMenuSeparator, FrContextMenuShortcut, FrContextMenuSub, FrContextMenuSubTrigger, FrContextMenuTrigger, FrControlValueAccessor, FrDatePicker, FrDropdownMenu, FrDropdownMenuCheckboxItem, FrDropdownMenuContent, FrDropdownMenuItem, FrDropdownMenuItemIndicator, FrDropdownMenuLabel, FrDropdownMenuPanel, FrDropdownMenuRadioGroup, FrDropdownMenuRadioItem, FrDropdownMenuSeparator, FrDropdownMenuShortcut, FrDropdownMenuSub, FrDropdownMenuSubTrigger, FrDropdownMenuTree, FrDropdownMenuTrigger, FrEmpty, FrEmptyContent, FrEmptyDescription, FrEmptyHeader, FrEmptyMedia, FrEmptyTitle, FrField, FrFieldContent, FrFieldDescription, FrFieldError, FrFieldGroup, FrFieldLabel, FrFieldLegend, FrFieldSeparator, FrFieldSet, FrHoverCardRoot as FrHoverCard, FrHoverCardContent, FrHoverCardPanel, FrHoverCardTrigger, FrIconButton, FrInput, FrInputBadge, FrInputControl, FrInputDescription, FrInputError, FrInputField, FrInputFieldGroup, FrInputGroup, FrInputGroupAddon, FrInputGroupInput, FrInputGroupText, FrInputHeader, FrInputLabel, FrInputOtp, FrInputOtpGroup, FrInputOtpSeparator, FrInputOtpSlot, FrItem, FrItemActions, FrItemContent, FrItemDescription, FrItemFooter, FrItemGroup, FrItemHeader, FrItemMedia, FrItemSeparator, FrItemTitle, FrMenuBar, FrMenuBarCheckboxItem, FrMenuBarContent, FrMenuBarItem, FrMenuBarItemIndicator, FrMenuBarLabel, FrMenuBarMenu, FrMenuBarPanel, FrMenuBarRadioGroup, FrMenuBarRadioItem, FrMenuBarSeparator, FrMenuBarShortcut, FrMenuBarSub, FrMenuBarSubTrigger, FrMenuBarTrigger, FrModalBody, FrModalClose, FrModalContent, FrModalDescription, FrModalFooter, FrModalHeader, FrModalPanel, FrModalRef, FrModalService, FrModalShell, FrModalTitle, FrModalTrigger, FrNavigationLinkSeparator, FrNavigationMenu, FrNavigationMenuContent, FrNavigationMenuFeature, FrNavigationMenuGrid, FrNavigationMenuIndicator, FrNavigationMenuItem, FrNavigationMenuLink, FrNavigationMenuLinkDescription, FrNavigationMenuLinkTitle, FrNavigationMenuList, FrNavigationMenuPanel, FrNavigationMenuTrigger, FrNavigationMenuViewport, FrPagination, FrPaginationContent, FrPaginationEllipsis, FrPaginationIcon, FrPaginationItem, FrPaginationLink, FrPaginationNext, FrPaginationPrevious, FrPopoverRoot as FrPopover, FrPopoverBody, FrPopoverClose, FrPopoverContent, FrPopoverDescription, FrPopoverFooter, FrPopoverHeader, FrPopoverPanel, FrPopoverTitle, FrPopoverTrigger, FrProgress, FrProgressIndicator, FrRadioGroup, FrRadioGroupCard, FrRadioGroupCardMeta, FrRadioGroupField, FrRadioGroupItem, FrResizableHandle, FrResizablePanel, FrResizablePanelGroup, FrSelect, FrSelectContent, FrSelectError, FrSelectGroup, FrSelectIcon, FrSelectItem, FrSelectItemIndicator, FrSelectLabel, FrSelectPanel, FrSelectSeparator, FrSelectValue, FrSeparator, FrSheetBody, FrSheetClose, FrSheetContent, FrSheetDescription, FrSheetFooter, FrSheetHeader, FrSheetPanel, FrSheetService, FrSheetShell, FrSheetTitle, FrSheetTrigger, FrSidebar, FrSidebarContent, FrSidebarFooter, FrSidebarGroup, FrSidebarGroupAction, FrSidebarGroupContent, FrSidebarGroupLabel, FrSidebarHeader, FrSidebarInset, FrSidebarMenu, FrSidebarMenuAction, FrSidebarMenuBadge, FrSidebarMenuButton, FrSidebarMenuItem, FrSidebarMenuSkeleton, FrSidebarMenuSub, FrSidebarMenuSubButton, FrSidebarMenuSubItem, FrSidebarProvider, FrSidebarRail, FrSidebarTrigger, FrSlider, FrSwitch, FrSwitchContent, FrSwitchDescription, FrSwitchError, FrSwitchField, FrSwitchLabel, FrTextarea, FrVirtualContent, FrVirtualFor, FrVirtualItem, FrVirtualItemMeta, FrVirtualList, FrVirtualPanel, FrVirtualViewport, buildConnectedPositions, calculateScrollOffsetForIndex, calculateVirtualRange, defaultPositions, provideDsValueAccessor };
3222
+ export type { FrAccordionType, FrAlertVariant, FrAvatarSize, FrBadgeIconPosition, FrBadgeVariant, FrButtonAppearance, FrButtonGroupOrientation, FrButtonLoadingDisplay, FrButtonRadius, FrButtonSize, FrCalendarCaptionLayout, FrCalendarCellContext, FrCalendarDateRange, FrCalendarDisabledMatcher, FrCalendarMode, FrCardFooterAlign, FrCardSize, FrCardSpacing, FrCarouselAlign, FrCarouselApi, FrCarouselDirection, FrCarouselEvent, FrCarouselOptions, FrCarouselOrientation, FrCarouselPlugin, FrComboboxStringifier, FrComboboxValue, FrCommandDialogConfig, FrCommandDialogRef, FrCommandFilter, FrConfirmPopoverConfig, FrConfirmPopoverResult, FrDatePickerFormatter, FrDatePickerParser, FrDatePickerPreset, FrDatePickerValue, FrDropdownMenuAlignment, FrDropdownMenuItemVariant, FrDropdownMenuParent, FrDropdownMenuSide, FrDropdownMenuTriggerMode, FrEmptyMediaVariant, FrEmptyOrientation, FrEmptyVariant, FrFieldErrorLike, FrFieldLegendVariant, FrFieldOrientation, FrHoverCardAlignment, FrHoverCardSide, FrInputGroupAddonAlign, FrInputGroupAddonVariant, FrInputOtpPattern, FrItemMediaVariant, FrItemSize, FrItemVariant, FrModalConfig, FrModalFooterAction, FrModalPanelLayout, FrModalShellOptions, FrModalSize, FrPaginationPage, FrPopoverAlignment, FrPopoverSide, FrRadioGroupOrientation, FrRadioGroupVariant, FrResizableOrientation, FrSelectIconPosition, FrSelectIndicatorPosition, FrSelectPosition, FrSeparatorOrientation, FrSheetConfig, FrSheetFooterAction, FrSheetRef, FrSheetShellOptions, FrSheetSide, FrSidebarCollapsible, FrSidebarMenuButtonSize, FrSidebarMenuButtonVariant, FrSidebarSide, FrSidebarState, FrSidebarVariant, FrSliderOrientation, FrSliderValue, FrSwitchSize, FrVirtualForContext, FrVirtualRange, FrVirtualRangeOptions, FrVirtualScrollAlignment, FrVirtualTrackBy };