@frame-ui-ng/components 0.2.0-beta.0 → 0.4.0-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.
Files changed (71) hide show
  1. package/button/src/styles/button.css +20 -4
  2. package/button-group/src/styles/button-group.css +6 -0
  3. package/dropdown-menu/src/styles/_vars.css +1 -1
  4. package/dropdown-menu/src/styles/dropdown-menu-item.css +87 -87
  5. package/fesm2022/frame-ui-ng-components-calendar.mjs +369 -263
  6. package/fesm2022/frame-ui-ng-components-calendar.mjs.map +1 -1
  7. package/fesm2022/frame-ui-ng-components-combobox.mjs +48 -51
  8. package/fesm2022/frame-ui-ng-components-combobox.mjs.map +1 -1
  9. package/fesm2022/frame-ui-ng-components-command.mjs +1 -1
  10. package/fesm2022/frame-ui-ng-components-command.mjs.map +1 -1
  11. package/fesm2022/frame-ui-ng-components-confirm-modal.mjs +162 -0
  12. package/fesm2022/frame-ui-ng-components-confirm-modal.mjs.map +1 -0
  13. package/fesm2022/frame-ui-ng-components-date-picker.mjs +232 -226
  14. package/fesm2022/frame-ui-ng-components-date-picker.mjs.map +1 -1
  15. package/fesm2022/frame-ui-ng-components-dropdown-menu.mjs +45 -22
  16. package/fesm2022/frame-ui-ng-components-dropdown-menu.mjs.map +1 -1
  17. package/fesm2022/frame-ui-ng-components-input-otp.mjs +64 -69
  18. package/fesm2022/frame-ui-ng-components-input-otp.mjs.map +1 -1
  19. package/fesm2022/frame-ui-ng-components-input.mjs +6 -3
  20. package/fesm2022/frame-ui-ng-components-input.mjs.map +1 -1
  21. package/fesm2022/frame-ui-ng-components-modal.mjs +93 -15
  22. package/fesm2022/frame-ui-ng-components-modal.mjs.map +1 -1
  23. package/fesm2022/frame-ui-ng-components-pagination.mjs +37 -36
  24. package/fesm2022/frame-ui-ng-components-pagination.mjs.map +1 -1
  25. package/fesm2022/frame-ui-ng-components-progress.mjs +2 -1
  26. package/fesm2022/frame-ui-ng-components-progress.mjs.map +1 -1
  27. package/fesm2022/frame-ui-ng-components-resizable.mjs +16 -26
  28. package/fesm2022/frame-ui-ng-components-resizable.mjs.map +1 -1
  29. package/fesm2022/frame-ui-ng-components-select.mjs +6 -3
  30. package/fesm2022/frame-ui-ng-components-select.mjs.map +1 -1
  31. package/fesm2022/frame-ui-ng-components-sheet.mjs +19 -16
  32. package/fesm2022/frame-ui-ng-components-sheet.mjs.map +1 -1
  33. package/fesm2022/frame-ui-ng-components-sidebar.mjs +59 -10
  34. package/fesm2022/frame-ui-ng-components-sidebar.mjs.map +1 -1
  35. package/fesm2022/frame-ui-ng-components-slider.mjs +53 -59
  36. package/fesm2022/frame-ui-ng-components-slider.mjs.map +1 -1
  37. package/fesm2022/frame-ui-ng-components-tooltip.mjs +307 -254
  38. package/fesm2022/frame-ui-ng-components-tooltip.mjs.map +1 -1
  39. package/fesm2022/frame-ui-ng-components-utils.mjs +20 -0
  40. package/fesm2022/frame-ui-ng-components-utils.mjs.map +1 -0
  41. package/fesm2022/frame-ui-ng-components-virtual-scroll.mjs +10 -12
  42. package/fesm2022/frame-ui-ng-components-virtual-scroll.mjs.map +1 -1
  43. package/fesm2022/frame-ui-ng-components.mjs +1047 -806
  44. package/fesm2022/frame-ui-ng-components.mjs.map +1 -1
  45. package/input/src/styles/input-group.css +50 -0
  46. package/item/src/styles/item.css +188 -187
  47. package/modal/src/styles/modal.css +10 -1
  48. package/package.json +10 -2
  49. package/select/src/styles/select-trigger.css +7 -36
  50. package/sidebar/src/styles/sidebar.css +10 -4
  51. package/src/styles/blueprint.css +102 -11
  52. package/src/styles/components.css +4 -4
  53. package/styles/blueprint.css +102 -11
  54. package/styles/components.css +4 -4
  55. package/styles.css +4 -4
  56. package/tooltip/src/styles/tooltip.css +7 -13
  57. package/types/frame-ui-ng-components-calendar.d.ts +14 -0
  58. package/types/frame-ui-ng-components-combobox.d.ts +1 -1
  59. package/types/frame-ui-ng-components-confirm-modal.d.ts +48 -0
  60. package/types/frame-ui-ng-components-context-menu.d.ts +2 -2
  61. package/types/frame-ui-ng-components-date-picker.d.ts +3 -1
  62. package/types/frame-ui-ng-components-dropdown-menu.d.ts +3 -3
  63. package/types/frame-ui-ng-components-input-otp.d.ts +1 -1
  64. package/types/frame-ui-ng-components-input.d.ts +6 -3
  65. package/types/frame-ui-ng-components-modal.d.ts +18 -7
  66. package/types/frame-ui-ng-components-select.d.ts +6 -3
  67. package/types/frame-ui-ng-components-sheet.d.ts +2 -0
  68. package/types/frame-ui-ng-components-sidebar.d.ts +8 -1
  69. package/types/frame-ui-ng-components-tooltip.d.ts +48 -73
  70. package/types/frame-ui-ng-components-utils.d.ts +5 -0
  71. package/types/frame-ui-ng-components.d.ts +87 -45
@@ -14,7 +14,7 @@ import * as i1$3 from '@frame-ui-ng/components/dropdown-menu';
14
14
  import { FrDropdownMenuContent as FrDropdownMenuContent$1, FrDropdownMenuParent as FrDropdownMenuParent$1 } from '@frame-ui-ng/components/dropdown-menu';
15
15
  import * as i1$2 from '@angular/cdk/menu';
16
16
  import { CdkMenuItemCheckbox, CdkMenuItemRadio, CdkMenuTrigger } from '@angular/cdk/menu';
17
- import { FrCalendarDateRange as FrCalendarDateRange$1, FrCalendarMode as FrCalendarMode$1, FrCalendarCaptionLayout as FrCalendarCaptionLayout$1, FrCalendarDisabledMatcher as FrCalendarDisabledMatcher$1, FrCalendarCellContext as FrCalendarCellContext$1 } from '@frame-ui-ng/components/calendar';
17
+ import { FrCalendarDateRange as FrCalendarDateRange$1, FrCalendarMode as FrCalendarMode$1, FrCalendarCaptionLayout as FrCalendarCaptionLayout$1, FrCalendarDisabledMatcher as FrCalendarDisabledMatcher$1, FrCalendarCellContext as FrCalendarCellContext$1, FrCalendar as FrCalendar$1 } from '@frame-ui-ng/components/calendar';
18
18
  import * as _frame_ui_ng_components from '@frame-ui-ng/components';
19
19
 
20
20
  interface FrAccordionItemContext {
@@ -86,7 +86,7 @@ type FrAccordionType = (typeof FR_ACCORDION_TYPES)[number];
86
86
  declare const FR_ALERT_VARIANTS: readonly ["default", "destructive", "success", "danger", "info"];
87
87
  type FrAlertVariant = (typeof FR_ALERT_VARIANTS)[number];
88
88
  declare class FrAlert {
89
- readonly variant: i0.InputSignal<"default" | "success" | "destructive" | "danger" | "info">;
89
+ readonly variant: i0.InputSignal<"default" | "destructive" | "success" | "danger" | "info">;
90
90
  static ɵfac: i0.ɵɵFactoryDeclaration<FrAlert, never>;
91
91
  static ɵdir: i0.ɵɵDirectiveDeclaration<FrAlert, "[frAlert]", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
92
92
  }
@@ -121,7 +121,7 @@ declare class FrAvatarFallback {
121
121
 
122
122
  declare class FrAvatarGroup {
123
123
  readonly expandOnHover: i0.InputSignalWithTransform<boolean, unknown>;
124
- readonly size: i0.InputSignal<"lg" | "md" | "sm" | "xs">;
124
+ readonly size: i0.InputSignal<"sm" | "lg" | "xs" | "md">;
125
125
  static ɵfac: i0.ɵɵFactoryDeclaration<FrAvatarGroup, never>;
126
126
  static ɵdir: i0.ɵɵDirectiveDeclaration<FrAvatarGroup, "[frAvatarGroup]", never, { "expandOnHover": { "alias": "expandOnHover"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
127
127
  }
@@ -147,7 +147,7 @@ declare class FrAvatarImage implements AfterViewInit {
147
147
  }
148
148
 
149
149
  declare class FrAvatar {
150
- readonly size: i0.InputSignal<"lg" | "md" | "sm" | "xs">;
150
+ readonly size: i0.InputSignal<"sm" | "lg" | "xs" | "md">;
151
151
  readonly status: i0.WritableSignal<"error" | "idle" | "loaded">;
152
152
  setStatus(status: 'error' | 'idle' | 'loaded'): void;
153
153
  static ɵfac: i0.ɵɵFactoryDeclaration<FrAvatar, never>;
@@ -162,7 +162,7 @@ declare const FR_BADGE_ICON_POSITIONS: readonly ["inline-start", "inline-end"];
162
162
  type FrBadgeVariant = (typeof FR_BADGE_VARIANTS)[number];
163
163
  type FrBadgeIconPosition = (typeof FR_BADGE_ICON_POSITIONS)[number];
164
164
  declare class FrBadge {
165
- readonly variant: i0.InputSignal<"default" | "secondary" | "success" | "destructive" | "outline" | "ghost" | "link">;
165
+ readonly variant: i0.InputSignal<"default" | "outline" | "link" | "destructive" | "success" | "secondary" | "ghost">;
166
166
  static ɵfac: i0.ɵɵFactoryDeclaration<FrBadge, never>;
167
167
  static ɵdir: i0.ɵɵDirectiveDeclaration<FrBadge, "[frBadge], frame-badge", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
168
168
  }
@@ -227,8 +227,8 @@ declare class FrButton {
227
227
  readonly disabled: i0.InputSignalWithTransform<boolean, unknown>;
228
228
  readonly loading: i0.InputSignalWithTransform<boolean, unknown>;
229
229
  readonly loadingDisplay: i0.InputSignal<"inline" | "replace">;
230
- readonly radius: i0.InputSignal<"full" | "lg" | "md" | "none" | "sm">;
231
- readonly size: i0.InputSignal<"lg" | "md" | "sm">;
230
+ readonly radius: i0.InputSignal<"none" | "sm" | "lg" | "md" | "full">;
231
+ readonly size: i0.InputSignal<"sm" | "lg" | "md">;
232
232
  protected readonly hasCustomLoadingIndicator: i0.Signal<boolean>;
233
233
  protected readonly isUnavailable: i0.Signal<boolean>;
234
234
  static ɵfac: i0.ɵɵFactoryDeclaration<FrButton, never>;
@@ -296,7 +296,7 @@ declare class FrCalendar implements ControlValueAccessor {
296
296
  readonly firstDayOfWeek: i0.InputSignal<number>;
297
297
  readonly locale: i0.InputSignal<string>;
298
298
  readonly timeZone: i0.InputSignal<string | undefined>;
299
- readonly dir: i0.InputSignal<"ltr" | "rtl">;
299
+ readonly dir: i0.InputSignal<"rtl" | "ltr">;
300
300
  readonly fromYear: i0.InputSignal<number>;
301
301
  readonly toYear: i0.InputSignal<number>;
302
302
  readonly showOutsideDays: i0.InputSignalWithTransform<boolean, unknown>;
@@ -316,9 +316,11 @@ declare class FrCalendar implements ControlValueAccessor {
316
316
  readonly selected: i0.InputSignal<Date | FrCalendarDateRange | null | undefined>;
317
317
  readonly selectedChange: i0.OutputEmitterRef<Date | FrCalendarDateRange | null>;
318
318
  readonly monthChange: i0.OutputEmitterRef<Date>;
319
+ readonly focusedDate: i0.WritableSignal<Date | null>;
319
320
  private readonly navigatedMonth;
320
321
  private readonly internalValue;
321
322
  private readonly cvaDisabled;
323
+ private readonly host;
322
324
  readonly currentMonth: i0.Signal<Date>;
323
325
  readonly isDisabled: i0.Signal<boolean>;
324
326
  readonly value: i0.Signal<Date | FrCalendarDateRange | null>;
@@ -329,6 +331,7 @@ declare class FrCalendar implements ControlValueAccessor {
329
331
  }[]>;
330
332
  readonly yearOptions: i0.Signal<number[]>;
331
333
  readonly months: i0.Signal<CalendarMonth[]>;
334
+ readonly activeDate: i0.Signal<Date>;
332
335
  private onTouched;
333
336
  private onChange;
334
337
  writeValue(value: Date | FrCalendarDateRange | null): void;
@@ -340,9 +343,20 @@ declare class FrCalendar implements ControlValueAccessor {
340
343
  setMonth(value: string): void;
341
344
  setYear(value: string): void;
342
345
  selectDay(day: CalendarDay): void;
346
+ handleDayKeydown(event: KeyboardEvent, day: CalendarDay): void;
347
+ dayTabIndex(day: CalendarDay): number;
348
+ focusActiveDate(): void;
343
349
  monthLabel(date: Date): string;
344
350
  dayLabel(date: Date): string;
345
351
  weekNumber(date: Date): string;
352
+ private navigationOffset;
353
+ private resolveActiveDate;
354
+ private selectedDate;
355
+ private isDateVisible;
356
+ private findDay;
357
+ private isDayDisabled;
358
+ private focusDay;
359
+ private focusDayElement;
346
360
  private updateMonth;
347
361
  private buildMonth;
348
362
  static ɵfac: i0.ɵɵFactoryDeclaration<FrCalendar, never>;
@@ -359,7 +373,7 @@ declare class FrCard {
359
373
  private readonly elementRef;
360
374
  private readonly renderer;
361
375
  readonly size: i0.InputSignal<"default" | "sm">;
362
- readonly spacing: i0.InputSignal<"lg" | "md" | "sm" | "xl" | null>;
376
+ readonly spacing: i0.InputSignal<"sm" | "lg" | "md" | "xl" | null>;
363
377
  constructor();
364
378
  static ɵfac: i0.ɵɵFactoryDeclaration<FrCard, never>;
365
379
  static ɵdir: i0.ɵɵDirectiveDeclaration<FrCard, "[frCard], frame-card", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "spacing": { "alias": "spacing"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
@@ -424,7 +438,7 @@ declare class FrCarousel implements AfterViewInit {
424
438
  private loopBoundaryClone;
425
439
  private contentElement;
426
440
  private itemElements;
427
- readonly align: i0.InputSignal<"start" | "end" | "center">;
441
+ readonly align: i0.InputSignal<"center" | "start" | "end">;
428
442
  readonly loop: i0.InputSignalWithTransform<boolean, unknown>;
429
443
  readonly orientation: i0.InputSignal<"horizontal" | "vertical">;
430
444
  readonly opts: i0.InputSignal<FrCarouselOptions | null>;
@@ -433,8 +447,8 @@ declare class FrCarousel implements AfterViewInit {
433
447
  readonly selectedChange: i0.OutputEmitterRef<number>;
434
448
  readonly selectedIndex: i0.WritableSignal<number>;
435
449
  readonly snapCount: i0.WritableSignal<number>;
436
- protected readonly effectiveAlign: i0.Signal<"start" | "end" | "center">;
437
- protected readonly effectiveDirection: i0.Signal<"ltr" | "rtl">;
450
+ protected readonly effectiveAlign: i0.Signal<"center" | "start" | "end">;
451
+ protected readonly effectiveDirection: i0.Signal<"rtl" | "ltr">;
438
452
  private readonly effectiveLoop;
439
453
  readonly api: FrCarouselApi;
440
454
  constructor();
@@ -632,7 +646,7 @@ declare class FrCombobox extends FrControlValueAccessor$1<FrComboboxValue | FrCo
632
646
  private readonly itemsVersion;
633
647
  private readonly selectedLabels;
634
648
  private resizeObserver;
635
- private origin?;
649
+ private readonly origin;
636
650
  readonly content: i0.Signal<FrComboboxContent | undefined>;
637
651
  readonly autoHighlight: i0.InputSignalWithTransform<boolean, unknown>;
638
652
  readonly debugVisible: i0.InputSignalWithTransform<boolean, unknown>;
@@ -936,10 +950,10 @@ declare class FrCommandSeparator {
936
950
  declare const FR_CONTEXT_MENU_CONTENT: InjectionToken<FrContextMenuContent>;
937
951
  declare class FrContextMenuContent implements Partial<FrDropdownMenuContent$1> {
938
952
  readonly templateRef: TemplateRef<any>;
939
- readonly align: i0.InputSignal<"start" | "end" | "center">;
953
+ readonly align: i0.InputSignal<"center" | "start" | "end">;
940
954
  readonly alignOffset: i0.InputSignal<number>;
941
955
  readonly debugVisible: i0.InputSignalWithTransform<boolean, unknown>;
942
- readonly side: i0.InputSignal<"top" | "left" | "bottom" | "right">;
956
+ readonly side: i0.InputSignal<"top" | "right" | "bottom" | "left" | "auto">;
943
957
  readonly sideOffset: i0.InputSignal<number>;
944
958
  isDebugVisible(): boolean;
945
959
  getPositions(isSubmenu: boolean): ConnectedPosition[];
@@ -947,7 +961,7 @@ declare class FrContextMenuContent implements Partial<FrDropdownMenuContent$1> {
947
961
  static ɵdir: i0.ɵɵDirectiveDeclaration<FrContextMenuContent, "ng-template[frContextMenuContent], ng-template[frContextMenuSubContent]", ["frContextMenuContent"], { "align": { "alias": "align"; "required": false; "isSignal": true; }; "alignOffset": { "alias": "alignOffset"; "required": false; "isSignal": true; }; "debugVisible": { "alias": "debugVisible"; "required": false; "isSignal": true; }; "side": { "alias": "side"; "required": false; "isSignal": true; }; "sideOffset": { "alias": "sideOffset"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
948
962
  }
949
963
  declare class FrContextMenuPanel {
950
- protected readonly side: i0.InputSignal<"top" | "left" | "bottom" | "right">;
964
+ protected readonly side: i0.InputSignal<"top" | "right" | "bottom" | "left" | "auto">;
951
965
  private readonly tree;
952
966
  private readonly parent;
953
967
  protected handleMouseEnter(): void;
@@ -1082,7 +1096,7 @@ declare class FrDatePicker extends FrControlValueAccessor$1<FrDatePickerValue> {
1082
1096
  readonly firstDayOfWeek: i0.InputSignal<number>;
1083
1097
  readonly locale: i0.InputSignal<string>;
1084
1098
  readonly timeZone: i0.InputSignal<string | undefined>;
1085
- readonly dir: i0.InputSignal<"ltr" | "rtl">;
1099
+ readonly dir: i0.InputSignal<"rtl" | "ltr">;
1086
1100
  readonly fromYear: i0.InputSignal<number>;
1087
1101
  readonly toYear: i0.InputSignal<number>;
1088
1102
  readonly showOutsideDays: i0.InputSignalWithTransform<boolean, unknown>;
@@ -1117,6 +1131,7 @@ declare class FrDatePicker extends FrControlValueAccessor$1<FrDatePickerValue> {
1117
1131
  readonly valueChange: i0.OutputEmitterRef<FrDatePickerValue>;
1118
1132
  readonly openChange: i0.OutputEmitterRef<boolean>;
1119
1133
  readonly monthChange: i0.OutputEmitterRef<Date>;
1134
+ readonly calendar: i0.Signal<FrCalendar$1 | undefined>;
1120
1135
  readonly positions: ConnectedPosition[];
1121
1136
  readonly isOpen: i0.WritableSignal<boolean>;
1122
1137
  readonly overlaySide: i0.WritableSignal<"top" | "bottom">;
@@ -1142,6 +1157,7 @@ declare class FrDatePicker extends FrControlValueAccessor$1<FrDatePickerValue> {
1142
1157
  commitInput(value: string): void;
1143
1158
  handleTriggerKeydown(event: KeyboardEvent): void;
1144
1159
  handlePositionChange(event: ConnectedOverlayPositionChange): void;
1160
+ focusCalendar(): void;
1145
1161
  overlayPanelClasses(): string[];
1146
1162
  protected setViewValue(value: FrDatePickerValue): void;
1147
1163
  private commitValue;
@@ -1152,10 +1168,10 @@ declare class FrDatePicker extends FrControlValueAccessor$1<FrDatePickerValue> {
1152
1168
  declare const FR_DROPDOWN_MENU_CONTENT: InjectionToken<FrDropdownMenuContent>;
1153
1169
  declare class FrDropdownMenuContent {
1154
1170
  readonly templateRef: TemplateRef<any>;
1155
- readonly align: i0.InputSignal<"start" | "end" | "center">;
1171
+ readonly align: i0.InputSignal<"center" | "start" | "end">;
1156
1172
  readonly alignOffset: i0.InputSignal<number>;
1157
1173
  readonly debugVisible: i0.InputSignalWithTransform<boolean, unknown>;
1158
- readonly side: i0.InputSignal<"top" | "left" | "bottom" | "right">;
1174
+ readonly side: i0.InputSignal<"top" | "right" | "bottom" | "left" | "auto">;
1159
1175
  readonly sideOffset: i0.InputSignal<number>;
1160
1176
  isDebugVisible(): boolean;
1161
1177
  getPositions(isSubmenu: boolean): ConnectedPosition[];
@@ -1163,7 +1179,7 @@ declare class FrDropdownMenuContent {
1163
1179
  static ɵdir: i0.ɵɵDirectiveDeclaration<FrDropdownMenuContent, "ng-template[frDropdownMenuContent], ng-template[frDropdownMenuSubContent]", ["frDropdownMenuContent"], { "align": { "alias": "align"; "required": false; "isSignal": true; }; "alignOffset": { "alias": "alignOffset"; "required": false; "isSignal": true; }; "debugVisible": { "alias": "debugVisible"; "required": false; "isSignal": true; }; "side": { "alias": "side"; "required": false; "isSignal": true; }; "sideOffset": { "alias": "sideOffset"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1164
1180
  }
1165
1181
  declare class FrDropdownMenuPanel {
1166
- protected readonly side: i0.InputSignal<"top" | "left" | "bottom" | "right">;
1182
+ protected readonly side: i0.InputSignal<"top" | "right" | "bottom" | "left" | "auto">;
1167
1183
  private readonly tree;
1168
1184
  private readonly parent;
1169
1185
  protected handleMouseEnter(): void;
@@ -1219,7 +1235,7 @@ declare class FrDropdownMenuItemIndicator {
1219
1235
  }
1220
1236
 
1221
1237
  declare const FR_DROPDOWN_MENU_ALIGNMENTS: readonly ["center", "end", "start"];
1222
- declare const FR_DROPDOWN_MENU_SIDES: readonly ["bottom", "left", "right", "top"];
1238
+ declare const FR_DROPDOWN_MENU_SIDES: readonly ["auto", "bottom", "left", "right", "top"];
1223
1239
  declare const FR_DROPDOWN_MENU_TRIGGER_MODES: readonly ["both", "click", "hover"];
1224
1240
  declare const FR_DROPDOWN_MENU_ITEM_VARIANTS: readonly ["default", "destructive"];
1225
1241
  type FrDropdownMenuAlignment = (typeof FR_DROPDOWN_MENU_ALIGNMENTS)[number];
@@ -1334,7 +1350,7 @@ declare class FrEmptyHeader {
1334
1350
  static ɵdir: i0.ɵɵDirectiveDeclaration<FrEmptyHeader, "[frEmptyHeader], frame-empty-header", never, {}, {}, never, never, true, never>;
1335
1351
  }
1336
1352
  declare class FrEmptyMedia {
1337
- readonly variant: i0.InputSignal<"default" | "icon">;
1353
+ readonly variant: i0.InputSignal<"icon" | "default">;
1338
1354
  static ɵfac: i0.ɵɵFactoryDeclaration<FrEmptyMedia, never>;
1339
1355
  static ɵdir: i0.ɵɵDirectiveDeclaration<FrEmptyMedia, "[frEmptyMedia], frame-empty-media", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1340
1356
  }
@@ -1431,10 +1447,10 @@ declare abstract class FrControlValueAccessor<T> implements ControlValueAccessor
1431
1447
 
1432
1448
  declare class FrHoverCardContent {
1433
1449
  readonly templateRef: TemplateRef<any>;
1434
- readonly align: i0.InputSignal<"start" | "end" | "center">;
1450
+ readonly align: i0.InputSignal<"center" | "start" | "end">;
1435
1451
  readonly alignOffset: i0.InputSignal<number>;
1436
1452
  readonly debugVisible: i0.InputSignalWithTransform<boolean, unknown>;
1437
- readonly side: i0.InputSignal<"top" | "left" | "bottom" | "right">;
1453
+ readonly side: i0.InputSignal<"top" | "right" | "bottom" | "left">;
1438
1454
  readonly sideOffset: i0.InputSignal<number>;
1439
1455
  getPositions(): ConnectedPosition[];
1440
1456
  static ɵfac: i0.ɵɵFactoryDeclaration<FrHoverCardContent, never>;
@@ -1549,15 +1565,18 @@ declare class FrInputBadge {
1549
1565
  }
1550
1566
 
1551
1567
  declare const FR_INPUT_GROUP_ADDON_ALIGNS: readonly ["inline-start", "inline-end"];
1568
+ declare const FR_INPUT_GROUP_ADDON_VARIANTS: readonly ["default", "ghost"];
1552
1569
  type FrInputGroupAddonAlign = (typeof FR_INPUT_GROUP_ADDON_ALIGNS)[number];
1570
+ type FrInputGroupAddonVariant = (typeof FR_INPUT_GROUP_ADDON_VARIANTS)[number];
1553
1571
  declare class FrInputGroup {
1554
1572
  static ɵfac: i0.ɵɵFactoryDeclaration<FrInputGroup, never>;
1555
1573
  static ɵdir: i0.ɵɵDirectiveDeclaration<FrInputGroup, "[frInputGroup], frame-input-group", never, {}, {}, never, never, true, never>;
1556
1574
  }
1557
1575
  declare class FrInputGroupAddon {
1558
1576
  readonly align: i0.InputSignal<"inline-start" | "inline-end">;
1577
+ readonly variant: i0.InputSignal<"default" | "ghost">;
1559
1578
  static ɵfac: i0.ɵɵFactoryDeclaration<FrInputGroupAddon, never>;
1560
- static ɵdir: i0.ɵɵDirectiveDeclaration<FrInputGroupAddon, "[frInputGroupAddon], frame-input-group-addon", never, { "align": { "alias": "align"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1579
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FrInputGroupAddon, "[frInputGroupAddon], frame-input-group-addon", never, { "align": { "alias": "align"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1561
1580
  }
1562
1581
  declare class FrInputGroupText {
1563
1582
  static ɵfac: i0.ɵɵFactoryDeclaration<FrInputGroupText, never>;
@@ -1579,7 +1598,7 @@ type FrInputOtpController = {
1579
1598
  invalid: () => boolean;
1580
1599
  };
1581
1600
  declare class FrInputOtp extends FrControlValueAccessor$1<string> {
1582
- private readonly nativeInput?;
1601
+ private readonly nativeInput;
1583
1602
  readonly maxLength: i0.InputSignalWithTransform<number, unknown>;
1584
1603
  readonly pattern: i0.InputSignal<FrInputOtpPattern>;
1585
1604
  readonly disabledInput: i0.InputSignalWithTransform<boolean, unknown>;
@@ -1654,7 +1673,7 @@ declare class FrItemHeader {
1654
1673
  static ɵdir: i0.ɵɵDirectiveDeclaration<FrItemHeader, "[frItemHeader], frame-item-header", never, {}, {}, never, never, true, never>;
1655
1674
  }
1656
1675
  declare class FrItemMedia {
1657
- readonly variant: i0.InputSignal<"default" | "image" | "icon" | "avatar">;
1676
+ readonly variant: i0.InputSignal<"icon" | "default" | "image" | "avatar">;
1658
1677
  static ɵfac: i0.ɵɵFactoryDeclaration<FrItemMedia, never>;
1659
1678
  static ɵdir: i0.ɵɵDirectiveDeclaration<FrItemMedia, "[frItemMedia], frame-item-media", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1660
1679
  }
@@ -1773,13 +1792,22 @@ declare class FrModalShell {
1773
1792
  static ɵcmp: i0.ɵɵComponentDeclaration<FrModalShell, "frame-modal-shell", never, {}, {}, never, never, true, never>;
1774
1793
  }
1775
1794
 
1776
- type FrModalRef<Result = unknown, Component = unknown> = DialogRef<Result, Component>;
1795
+ declare abstract class FrModalRef<Component = unknown, Result = unknown> extends DialogRef<Result, Component> {
1796
+ }
1797
+
1777
1798
  type FrModalSize = 'sm' | 'md' | 'lg' | 'xl' | 'full';
1778
1799
  type FrModalConfig<Data = unknown, Result = unknown, Component = unknown> = DialogConfig<Data, DialogRef<Result, Component>> & {
1800
+ /**
1801
+ * @deprecated Use `data` or the second `open()` argument instead.
1802
+ */
1779
1803
  bodyData?: unknown;
1804
+ /**
1805
+ * @deprecated Use `inputs` instead.
1806
+ */
1780
1807
  bodyInputs?: Record<string, unknown>;
1781
1808
  description?: string;
1782
1809
  footerActions?: FrModalFooterAction[];
1810
+ inputs?: Record<string, unknown>;
1783
1811
  scrollable?: boolean;
1784
1812
  showCloseButton?: boolean;
1785
1813
  size?: FrModalSize;
@@ -1788,8 +1816,9 @@ type FrModalConfig<Data = unknown, Result = unknown, Component = unknown> = Dial
1788
1816
  };
1789
1817
  declare class FrModalService {
1790
1818
  private readonly dialog;
1791
- open<Result = unknown, Data = unknown, Component = unknown>(content: ComponentType<Component>, config?: FrModalConfig<Data, Result, Component>): FrModalRef<Result, Component>;
1792
- open<Result = unknown, Data = unknown, Context = unknown>(content: TemplateRef<Context>, config?: FrModalConfig<Data, Result, Context>): FrModalRef<Result, Context>;
1819
+ open<Result = unknown, Data = unknown, Component = unknown>(content: ComponentType<Component>, config?: FrModalConfig<Data, Result, Component>): FrModalRef<Component, Result>;
1820
+ open<Result = unknown, Data = unknown, Component = unknown>(content: ComponentType<Component>, data: Data, config?: Omit<FrModalConfig<Data, Result, Component>, 'data'>): FrModalRef<Component, Result>;
1821
+ open<Result = unknown, Data = unknown, Context = unknown>(content: TemplateRef<Context>, config?: FrModalConfig<Data, Result, Context>): FrModalRef<Context, Result>;
1793
1822
  closeAll(): void;
1794
1823
  private withDefaultClasses;
1795
1824
  static ɵfac: i0.ɵɵFactoryDeclaration<FrModalService, never>;
@@ -1830,7 +1859,7 @@ declare class FrModalClose {
1830
1859
  declare class FrModalPanel {
1831
1860
  readonly scrollable: i0.InputSignalWithTransform<boolean, unknown>;
1832
1861
  readonly showCloseButton: i0.InputSignalWithTransform<boolean, unknown>;
1833
- readonly size: i0.InputSignal<"full" | "lg" | "md" | "sm" | "xl">;
1862
+ readonly size: i0.InputSignal<"sm" | "lg" | "md" | "full" | "xl">;
1834
1863
  readonly stickyFooter: i0.InputSignalWithTransform<boolean, unknown>;
1835
1864
  static ɵfac: i0.ɵɵFactoryDeclaration<FrModalPanel, never>;
1836
1865
  static ɵcmp: i0.ɵɵComponentDeclaration<FrModalPanel, "[frModalPanel], frame-modal-panel", never, { "scrollable": { "alias": "scrollable"; "required": false; "isSignal": true; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "stickyFooter": { "alias": "stickyFooter"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
@@ -1857,6 +1886,7 @@ declare class FrModalDescription {
1857
1886
  }
1858
1887
 
1859
1888
  declare const FR_MODAL_DATA: i0.InjectionToken<any>;
1889
+ declare const FR_MODAL_REF: typeof FrModalRef;
1860
1890
 
1861
1891
  declare class FrModalTrigger {
1862
1892
  private static readonly CUSTOM_PROPERTY_PREFIX;
@@ -1867,7 +1897,7 @@ declare class FrModalTrigger {
1867
1897
  private modalRef;
1868
1898
  readonly content: i0.InputSignal<TemplateRef<unknown> | FrModalContent | null>;
1869
1899
  readonly disabled: i0.InputSignalWithTransform<boolean, unknown>;
1870
- readonly opened: i0.OutputEmitterRef<FrModalRef>;
1900
+ readonly opened: i0.OutputEmitterRef<FrModalRef<unknown, unknown>>;
1871
1901
  readonly closed: i0.OutputEmitterRef<unknown>;
1872
1902
  readonly isOpen: i0.WritableSignal<boolean>;
1873
1903
  open(): void;
@@ -1909,7 +1939,7 @@ declare class FrNavigationMenuLink {
1909
1939
  static ɵdir: i0.ɵɵDirectiveDeclaration<FrNavigationMenuLink, "[frNavigationMenuLink], a[frNavigationMenuLink]", never, { "active": { "alias": "active"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1910
1940
  }
1911
1941
  declare class FrNavigationMenuGrid {
1912
- readonly columns: i0.InputSignal<2 | 3 | 1>;
1942
+ readonly columns: i0.InputSignal<1 | 2 | 3>;
1913
1943
  static ɵfac: i0.ɵɵFactoryDeclaration<FrNavigationMenuGrid, never>;
1914
1944
  static ɵdir: i0.ɵɵDirectiveDeclaration<FrNavigationMenuGrid, "[frNavigationMenuGrid]", never, { "columns": { "alias": "columns"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1915
1945
  }
@@ -2009,10 +2039,10 @@ declare class FrPaginationEllipsis {
2009
2039
 
2010
2040
  declare class FrPopoverContent {
2011
2041
  readonly templateRef: TemplateRef<any>;
2012
- readonly align: i0.InputSignal<"start" | "end" | "center">;
2042
+ readonly align: i0.InputSignal<"center" | "start" | "end">;
2013
2043
  readonly alignOffset: i0.InputSignal<number>;
2014
2044
  readonly debugVisible: i0.InputSignalWithTransform<boolean, unknown>;
2015
- readonly side: i0.InputSignal<"top" | "left" | "bottom" | "right">;
2045
+ readonly side: i0.InputSignal<"top" | "right" | "bottom" | "left">;
2016
2046
  readonly sideOffset: i0.InputSignal<number>;
2017
2047
  getPositions(): ConnectedPosition[];
2018
2048
  static ɵfac: i0.ɵɵFactoryDeclaration<FrPopoverContent, never>;
@@ -2095,7 +2125,7 @@ declare class FrProgress {
2095
2125
  readonly isIndeterminate: i0.Signal<boolean>;
2096
2126
  readonly normalizedValue: i0.Signal<number>;
2097
2127
  readonly percentage: i0.Signal<number>;
2098
- readonly state: i0.Signal<"loading" | "indeterminate" | "complete">;
2128
+ readonly state: i0.Signal<"indeterminate" | "complete" | "loading">;
2099
2129
  static ɵfac: i0.ɵɵFactoryDeclaration<FrProgress, never>;
2100
2130
  static ɵdir: i0.ɵɵDirectiveDeclaration<FrProgress, "[frProgress], frame-progress", ["frProgress"], { "value": { "alias": "value"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2101
2131
  }
@@ -2236,6 +2266,8 @@ declare class FrSelectPanel {
2236
2266
  static ɵdir: i0.ɵɵDirectiveDeclaration<FrSelectPanel, "[frSelectPanel], frame-select-panel", never, {}, {}, never, never, true, [{ directive: typeof i1$3.FrDropdownMenuPanel; inputs: {}; outputs: {}; }]>;
2237
2267
  }
2238
2268
 
2269
+ declare const FR_SELECT_ICON_POSITIONS: readonly ["leading", "trailing"];
2270
+ type FrSelectIconPosition = (typeof FR_SELECT_ICON_POSITIONS)[number];
2239
2271
  declare class FrSelectValue {
2240
2272
  private readonly select;
2241
2273
  readonly placeholder: i0.InputSignal<string>;
@@ -2249,8 +2281,9 @@ declare class FrSelectItemIndicator {
2249
2281
  static ɵdir: i0.ɵɵDirectiveDeclaration<FrSelectItemIndicator, "[frSelectItemIndicator], frame-select-item-indicator", never, {}, {}, never, never, true, never>;
2250
2282
  }
2251
2283
  declare class FrSelectIcon {
2284
+ readonly position: i0.InputSignal<"leading" | "trailing">;
2252
2285
  static ɵfac: i0.ɵɵFactoryDeclaration<FrSelectIcon, never>;
2253
- static ɵdir: i0.ɵɵDirectiveDeclaration<FrSelectIcon, "[frSelectIcon], frame-select-icon", never, {}, {}, never, never, true, never>;
2286
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FrSelectIcon, "[frSelectIcon], frame-select-icon", never, { "position": { "alias": "position"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2254
2287
  }
2255
2288
  declare class FrSelectError {
2256
2289
  static ɵfac: i0.ɵɵFactoryDeclaration<FrSelectError, never>;
@@ -2348,9 +2381,11 @@ declare class FrSheetClose {
2348
2381
  static ɵdir: i0.ɵɵDirectiveDeclaration<FrSheetClose, "[frSheetClose]", never, { "result": { "alias": "frSheetClose"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2349
2382
  }
2350
2383
  declare class FrSheetPanel {
2384
+ private readonly dialogRef;
2351
2385
  readonly scrollable: i0.InputSignalWithTransform<boolean, unknown>;
2352
2386
  readonly showCloseButton: i0.InputSignalWithTransform<boolean, unknown>;
2353
- readonly side: i0.InputSignalWithTransform<"top" | "left" | "bottom" | "right", unknown>;
2387
+ readonly side: i0.InputSignalWithTransform<"top" | "right" | "bottom" | "left", unknown>;
2388
+ close(): void;
2354
2389
  static ɵfac: i0.ɵɵFactoryDeclaration<FrSheetPanel, never>;
2355
2390
  static ɵcmp: i0.ɵɵComponentDeclaration<FrSheetPanel, "[frSheetPanel], frame-sheet-panel", never, { "scrollable": { "alias": "scrollable"; "required": false; "isSignal": true; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; "isSignal": true; }; "side": { "alias": "side"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
2356
2391
  }
@@ -2510,11 +2545,14 @@ declare class FrSidebarProvider {
2510
2545
  declare class FrSidebar {
2511
2546
  readonly elementRef: ElementRef<HTMLElement>;
2512
2547
  readonly provider: FrSidebarProvider | null;
2513
- readonly side: i0.InputSignalWithTransform<"left" | "right", unknown>;
2514
- readonly variant: i0.InputSignalWithTransform<"inset" | "sidebar" | "floating", unknown>;
2515
- readonly collapsible: i0.InputSignalWithTransform<"none" | "icon" | "offcanvas", unknown>;
2548
+ readonly side: i0.InputSignalWithTransform<"right" | "left", unknown>;
2549
+ readonly variant: i0.InputSignalWithTransform<"sidebar" | "floating" | "inset", unknown>;
2550
+ readonly collapsible: i0.InputSignalWithTransform<"offcanvas" | "icon" | "none", unknown>;
2551
+ readonly minSize: i0.InputSignalWithTransform<number | null, unknown>;
2552
+ readonly maxSize: i0.InputSignalWithTransform<number | null, unknown>;
2553
+ readonly resizable: i0.InputSignalWithTransform<boolean, unknown>;
2516
2554
  static ɵfac: i0.ɵɵFactoryDeclaration<FrSidebar, never>;
2517
- static ɵdir: i0.ɵɵDirectiveDeclaration<FrSidebar, "[frSidebar], frame-sidebar", never, { "side": { "alias": "side"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "collapsible": { "alias": "collapsible"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2555
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FrSidebar, "[frSidebar], frame-sidebar", never, { "side": { "alias": "side"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "collapsible": { "alias": "collapsible"; "required": false; "isSignal": true; }; "minSize": { "alias": "minSize"; "required": false; "isSignal": true; }; "maxSize": { "alias": "maxSize"; "required": false; "isSignal": true; }; "resizable": { "alias": "resizable"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2518
2556
  }
2519
2557
  declare class FrSidebarTrigger {
2520
2558
  readonly provider: FrSidebarProvider | null;
@@ -2532,11 +2570,15 @@ declare class FrSidebarRail {
2532
2570
  private suppressClick;
2533
2571
  private frameId;
2534
2572
  private pendingWidth;
2573
+ private resizeMinSize;
2574
+ private resizeMaxSize;
2535
2575
  readonly provider: FrSidebarProvider | null;
2536
2576
  toggle(): void;
2537
2577
  startResize(event: PointerEvent): void;
2538
2578
  private resize;
2539
2579
  private flushResize;
2580
+ private captureResizeBounds;
2581
+ private measureContentMinSize;
2540
2582
  static ɵfac: i0.ɵɵFactoryDeclaration<FrSidebarRail, never>;
2541
2583
  static ɵdir: i0.ɵɵDirectiveDeclaration<FrSidebarRail, "[frSidebarRail], frame-sidebar-rail", never, {}, {}, never, never, true, never>;
2542
2584
  }
@@ -2583,7 +2625,7 @@ declare class FrSidebarMenuItem {
2583
2625
  declare class FrSidebarMenuButton {
2584
2626
  readonly active: i0.InputSignalWithTransform<boolean, unknown>;
2585
2627
  readonly disabled: i0.InputSignalWithTransform<boolean, unknown>;
2586
- readonly size: i0.InputSignalWithTransform<"default" | "lg" | "sm", unknown>;
2628
+ readonly size: i0.InputSignalWithTransform<"default" | "sm" | "lg", unknown>;
2587
2629
  readonly variant: i0.InputSignalWithTransform<"default" | "outline", unknown>;
2588
2630
  readonly tooltip: i0.InputSignal<string | null>;
2589
2631
  handleClick(event: Event): void;
@@ -2749,5 +2791,5 @@ declare class FrVirtualViewport {
2749
2791
  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>;
2750
2792
  }
2751
2793
 
2752
- 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_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_NAVIGATION_MENU_PARENT, FR_POPOVER_ALIGNMENTS, FR_POPOVER_SIDES, FR_RADIO_GROUP_ORIENTATIONS, FR_RADIO_GROUP_VARIANTS, FR_RESIZABLE_ORIENTATIONS, 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, 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, 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 };
2753
- 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, FrDatePickerFormatter, FrDatePickerParser, FrDatePickerPreset, FrDatePickerValue, FrDropdownMenuAlignment, FrDropdownMenuItemVariant, FrDropdownMenuParent, FrDropdownMenuSide, FrDropdownMenuTriggerMode, FrEmptyMediaVariant, FrEmptyOrientation, FrEmptyVariant, FrFieldErrorLike, FrFieldLegendVariant, FrFieldOrientation, FrHoverCardAlignment, FrHoverCardSide, FrInputGroupAddonAlign, FrInputOtpPattern, FrItemMediaVariant, FrItemSize, FrItemVariant, FrModalConfig, FrModalFooterAction, FrModalRef, FrModalShellOptions, FrModalSize, FrPaginationPage, FrPopoverAlignment, FrPopoverSide, FrRadioGroupOrientation, FrRadioGroupVariant, FrResizableOrientation, FrSelectIndicatorPosition, FrSelectPosition, FrSeparatorOrientation, FrSheetConfig, FrSheetFooterAction, FrSheetRef, FrSheetShellOptions, FrSheetSide, FrSidebarCollapsible, FrSidebarMenuButtonSize, FrSidebarMenuButtonVariant, FrSidebarSide, FrSidebarState, FrSidebarVariant, FrSliderOrientation, FrSliderValue, FrSwitchSize, FrVirtualForContext, FrVirtualRange, FrVirtualRangeOptions, FrVirtualScrollAlignment, FrVirtualTrackBy };
2794
+ 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, 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 };
2795
+ 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, 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 };