@frame-ui-ng/components 0.3.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.
- package/button/src/styles/button.css +5 -1
- package/button-group/src/styles/button-group.css +6 -0
- package/fesm2022/frame-ui-ng-components-combobox.mjs +48 -51
- package/fesm2022/frame-ui-ng-components-combobox.mjs.map +1 -1
- package/fesm2022/frame-ui-ng-components-confirm-modal.mjs +162 -0
- package/fesm2022/frame-ui-ng-components-confirm-modal.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-dropdown-menu.mjs +1 -1
- package/fesm2022/frame-ui-ng-components-dropdown-menu.mjs.map +1 -1
- package/fesm2022/frame-ui-ng-components-input-otp.mjs +64 -69
- package/fesm2022/frame-ui-ng-components-input-otp.mjs.map +1 -1
- package/fesm2022/frame-ui-ng-components-modal.mjs +93 -15
- package/fesm2022/frame-ui-ng-components-modal.mjs.map +1 -1
- package/fesm2022/frame-ui-ng-components-pagination.mjs +37 -36
- package/fesm2022/frame-ui-ng-components-pagination.mjs.map +1 -1
- package/fesm2022/frame-ui-ng-components-progress.mjs +2 -1
- package/fesm2022/frame-ui-ng-components-progress.mjs.map +1 -1
- package/fesm2022/frame-ui-ng-components-resizable.mjs +16 -26
- package/fesm2022/frame-ui-ng-components-resizable.mjs.map +1 -1
- package/fesm2022/frame-ui-ng-components-sheet.mjs +19 -16
- package/fesm2022/frame-ui-ng-components-sheet.mjs.map +1 -1
- package/fesm2022/frame-ui-ng-components-sidebar.mjs +19 -13
- package/fesm2022/frame-ui-ng-components-sidebar.mjs.map +1 -1
- package/fesm2022/frame-ui-ng-components-slider.mjs +53 -59
- package/fesm2022/frame-ui-ng-components-slider.mjs.map +1 -1
- package/fesm2022/frame-ui-ng-components-tooltip.mjs +44 -0
- package/fesm2022/frame-ui-ng-components-tooltip.mjs.map +1 -1
- package/fesm2022/frame-ui-ng-components-utils.mjs +20 -0
- package/fesm2022/frame-ui-ng-components-utils.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-virtual-scroll.mjs +10 -12
- package/fesm2022/frame-ui-ng-components-virtual-scroll.mjs.map +1 -1
- package/fesm2022/frame-ui-ng-components.mjs +353 -296
- package/fesm2022/frame-ui-ng-components.mjs.map +1 -1
- package/item/src/styles/item.css +188 -187
- package/modal/src/styles/modal.css +10 -1
- package/package.json +10 -2
- package/sidebar/src/styles/sidebar.css +10 -4
- package/src/styles/blueprint.css +98 -0
- package/src/styles/components.css +4 -4
- package/styles/blueprint.css +98 -0
- package/styles/components.css +4 -4
- package/styles.css +4 -4
- package/tooltip/src/styles/tooltip.css +4 -4
- package/types/frame-ui-ng-components-combobox.d.ts +1 -1
- package/types/frame-ui-ng-components-confirm-modal.d.ts +48 -0
- package/types/frame-ui-ng-components-input-otp.d.ts +1 -1
- package/types/frame-ui-ng-components-modal.d.ts +18 -7
- package/types/frame-ui-ng-components-sheet.d.ts +2 -0
- package/types/frame-ui-ng-components-sidebar.d.ts +2 -2
- package/types/frame-ui-ng-components-tooltip.d.ts +5 -0
- package/types/frame-ui-ng-components-utils.d.ts +5 -0
- package/types/frame-ui-ng-components.d.ts +68 -55
|
@@ -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" | "
|
|
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
|
}
|
|
@@ -223,11 +223,11 @@ type FrButtonSize = (typeof FR_BUTTON_SIZES)[number];
|
|
|
223
223
|
declare class FrButton {
|
|
224
224
|
private readonly loadingIndicator;
|
|
225
225
|
private readonly spinnerIndicator;
|
|
226
|
-
readonly appearance: i0.InputSignal<"
|
|
226
|
+
readonly appearance: i0.InputSignal<"outline" | "ghost" | "primary">;
|
|
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<"
|
|
230
|
+
readonly radius: i0.InputSignal<"none" | "sm" | "lg" | "md" | "full">;
|
|
231
231
|
readonly size: i0.InputSignal<"sm" | "lg" | "md">;
|
|
232
232
|
protected readonly hasCustomLoadingIndicator: i0.Signal<boolean>;
|
|
233
233
|
protected readonly isUnavailable: i0.Signal<boolean>;
|
|
@@ -255,7 +255,7 @@ declare class FrButtonLoading {
|
|
|
255
255
|
declare const FR_BUTTON_GROUP_ORIENTATIONS: readonly ["horizontal", "vertical"];
|
|
256
256
|
type FrButtonGroupOrientation = (typeof FR_BUTTON_GROUP_ORIENTATIONS)[number];
|
|
257
257
|
declare class FrButtonGroup {
|
|
258
|
-
readonly orientation: i0.InputSignal<"
|
|
258
|
+
readonly orientation: i0.InputSignal<"horizontal" | "vertical">;
|
|
259
259
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrButtonGroup, never>;
|
|
260
260
|
static ɵdir: i0.ɵɵDirectiveDeclaration<FrButtonGroup, "[frButtonGroup], frame-button-group", never, { "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
261
261
|
}
|
|
@@ -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<"
|
|
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>;
|
|
@@ -438,17 +438,17 @@ declare class FrCarousel implements AfterViewInit {
|
|
|
438
438
|
private loopBoundaryClone;
|
|
439
439
|
private contentElement;
|
|
440
440
|
private itemElements;
|
|
441
|
-
readonly align: i0.InputSignal<"
|
|
441
|
+
readonly align: i0.InputSignal<"center" | "start" | "end">;
|
|
442
442
|
readonly loop: i0.InputSignalWithTransform<boolean, unknown>;
|
|
443
|
-
readonly orientation: i0.InputSignal<"
|
|
443
|
+
readonly orientation: i0.InputSignal<"horizontal" | "vertical">;
|
|
444
444
|
readonly opts: i0.InputSignal<FrCarouselOptions | null>;
|
|
445
445
|
readonly plugins: i0.InputSignal<readonly FrCarouselPlugin[]>;
|
|
446
446
|
readonly apiReady: i0.OutputEmitterRef<FrCarouselApi>;
|
|
447
447
|
readonly selectedChange: i0.OutputEmitterRef<number>;
|
|
448
448
|
readonly selectedIndex: i0.WritableSignal<number>;
|
|
449
449
|
readonly snapCount: i0.WritableSignal<number>;
|
|
450
|
-
protected readonly effectiveAlign: i0.Signal<"
|
|
451
|
-
protected readonly effectiveDirection: i0.Signal<"
|
|
450
|
+
protected readonly effectiveAlign: i0.Signal<"center" | "start" | "end">;
|
|
451
|
+
protected readonly effectiveDirection: i0.Signal<"rtl" | "ltr">;
|
|
452
452
|
private readonly effectiveLoop;
|
|
453
453
|
readonly api: FrCarouselApi;
|
|
454
454
|
constructor();
|
|
@@ -646,7 +646,7 @@ declare class FrCombobox extends FrControlValueAccessor$1<FrComboboxValue | FrCo
|
|
|
646
646
|
private readonly itemsVersion;
|
|
647
647
|
private readonly selectedLabels;
|
|
648
648
|
private resizeObserver;
|
|
649
|
-
private origin
|
|
649
|
+
private readonly origin;
|
|
650
650
|
readonly content: i0.Signal<FrComboboxContent | undefined>;
|
|
651
651
|
readonly autoHighlight: i0.InputSignalWithTransform<boolean, unknown>;
|
|
652
652
|
readonly debugVisible: i0.InputSignalWithTransform<boolean, unknown>;
|
|
@@ -662,7 +662,7 @@ declare class FrCombobox extends FrControlValueAccessor$1<FrComboboxValue | FrCo
|
|
|
662
662
|
readonly query: i0.WritableSignal<string>;
|
|
663
663
|
readonly anchorWidth: i0.WritableSignal<number | null>;
|
|
664
664
|
readonly highlightedIndex: i0.WritableSignal<number>;
|
|
665
|
-
readonly overlaySide: i0.WritableSignal<"
|
|
665
|
+
readonly overlaySide: i0.WritableSignal<"top" | "bottom">;
|
|
666
666
|
readonly positions: ConnectedPosition[];
|
|
667
667
|
readonly selectedValues: i0.Signal<any[]>;
|
|
668
668
|
readonly displayValue: i0.Signal<string>;
|
|
@@ -950,10 +950,10 @@ declare class FrCommandSeparator {
|
|
|
950
950
|
declare const FR_CONTEXT_MENU_CONTENT: InjectionToken<FrContextMenuContent>;
|
|
951
951
|
declare class FrContextMenuContent implements Partial<FrDropdownMenuContent$1> {
|
|
952
952
|
readonly templateRef: TemplateRef<any>;
|
|
953
|
-
readonly align: i0.InputSignal<"
|
|
953
|
+
readonly align: i0.InputSignal<"center" | "start" | "end">;
|
|
954
954
|
readonly alignOffset: i0.InputSignal<number>;
|
|
955
955
|
readonly debugVisible: i0.InputSignalWithTransform<boolean, unknown>;
|
|
956
|
-
readonly side: i0.InputSignal<"
|
|
956
|
+
readonly side: i0.InputSignal<"top" | "right" | "bottom" | "left" | "auto">;
|
|
957
957
|
readonly sideOffset: i0.InputSignal<number>;
|
|
958
958
|
isDebugVisible(): boolean;
|
|
959
959
|
getPositions(isSubmenu: boolean): ConnectedPosition[];
|
|
@@ -961,7 +961,7 @@ declare class FrContextMenuContent implements Partial<FrDropdownMenuContent$1> {
|
|
|
961
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>;
|
|
962
962
|
}
|
|
963
963
|
declare class FrContextMenuPanel {
|
|
964
|
-
protected readonly side: i0.InputSignal<"
|
|
964
|
+
protected readonly side: i0.InputSignal<"top" | "right" | "bottom" | "left" | "auto">;
|
|
965
965
|
private readonly tree;
|
|
966
966
|
private readonly parent;
|
|
967
967
|
protected handleMouseEnter(): void;
|
|
@@ -1018,16 +1018,16 @@ declare class FrContextMenuItemIndicator {
|
|
|
1018
1018
|
|
|
1019
1019
|
declare class FrContextMenu implements FrDropdownMenuParent$1 {
|
|
1020
1020
|
readonly closeDelay: i0.InputSignal<number>;
|
|
1021
|
-
readonly triggerMode: i0.InputSignal<"
|
|
1021
|
+
readonly triggerMode: i0.InputSignal<"click" | "both" | "hover">;
|
|
1022
1022
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrContextMenu, never>;
|
|
1023
1023
|
static ɵdir: i0.ɵɵDirectiveDeclaration<FrContextMenu, "[frContextMenu]", never, { "closeDelay": { "alias": "closeDelay"; "required": false; "isSignal": true; }; "triggerMode": { "alias": "triggerMode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1024
1024
|
}
|
|
1025
1025
|
declare class FrContextMenuSub implements FrDropdownMenuParent$1 {
|
|
1026
1026
|
private readonly parent;
|
|
1027
1027
|
readonly closeDelayInput: i0.InputSignal<number | null>;
|
|
1028
|
-
readonly triggerModeInput: i0.InputSignal<"
|
|
1028
|
+
readonly triggerModeInput: i0.InputSignal<"click" | "both" | "hover" | null>;
|
|
1029
1029
|
readonly closeDelay: i0.WritableSignal<number>;
|
|
1030
|
-
readonly triggerMode: i0.WritableSignal<"
|
|
1030
|
+
readonly triggerMode: i0.WritableSignal<"click" | "both" | "hover">;
|
|
1031
1031
|
constructor();
|
|
1032
1032
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrContextMenuSub, never>;
|
|
1033
1033
|
static ɵdir: i0.ɵɵDirectiveDeclaration<FrContextMenuSub, "[frContextMenuSub]", never, { "closeDelayInput": { "alias": "closeDelay"; "required": false; "isSignal": true; }; "triggerModeInput": { "alias": "triggerMode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
@@ -1040,7 +1040,7 @@ declare class FrContextMenuSubTrigger implements OnDestroy {
|
|
|
1040
1040
|
private readonly parent;
|
|
1041
1041
|
readonly menuContent: InputSignal<FrContextMenuContent | null>;
|
|
1042
1042
|
readonly inset: i0.InputSignalWithTransform<boolean, unknown>;
|
|
1043
|
-
readonly triggerModeInput: InputSignal<"
|
|
1043
|
+
readonly triggerModeInput: InputSignal<"click" | "both" | "hover" | null>;
|
|
1044
1044
|
readonly variant: InputSignal<"default" | "destructive">;
|
|
1045
1045
|
readonly isOpen: i0.WritableSignal<boolean>;
|
|
1046
1046
|
constructor();
|
|
@@ -1096,7 +1096,7 @@ declare class FrDatePicker extends FrControlValueAccessor$1<FrDatePickerValue> {
|
|
|
1096
1096
|
readonly firstDayOfWeek: i0.InputSignal<number>;
|
|
1097
1097
|
readonly locale: i0.InputSignal<string>;
|
|
1098
1098
|
readonly timeZone: i0.InputSignal<string | undefined>;
|
|
1099
|
-
readonly dir: i0.InputSignal<"
|
|
1099
|
+
readonly dir: i0.InputSignal<"rtl" | "ltr">;
|
|
1100
1100
|
readonly fromYear: i0.InputSignal<number>;
|
|
1101
1101
|
readonly toYear: i0.InputSignal<number>;
|
|
1102
1102
|
readonly showOutsideDays: i0.InputSignalWithTransform<boolean, unknown>;
|
|
@@ -1134,7 +1134,7 @@ declare class FrDatePicker extends FrControlValueAccessor$1<FrDatePickerValue> {
|
|
|
1134
1134
|
readonly calendar: i0.Signal<FrCalendar$1 | undefined>;
|
|
1135
1135
|
readonly positions: ConnectedPosition[];
|
|
1136
1136
|
readonly isOpen: i0.WritableSignal<boolean>;
|
|
1137
|
-
readonly overlaySide: i0.WritableSignal<"
|
|
1137
|
+
readonly overlaySide: i0.WritableSignal<"top" | "bottom">;
|
|
1138
1138
|
readonly value: i0.WritableSignal<FrDatePickerValue>;
|
|
1139
1139
|
readonly inputDraft: i0.WritableSignal<string | null>;
|
|
1140
1140
|
readonly disabled: i0.Signal<boolean>;
|
|
@@ -1168,10 +1168,10 @@ declare class FrDatePicker extends FrControlValueAccessor$1<FrDatePickerValue> {
|
|
|
1168
1168
|
declare const FR_DROPDOWN_MENU_CONTENT: InjectionToken<FrDropdownMenuContent>;
|
|
1169
1169
|
declare class FrDropdownMenuContent {
|
|
1170
1170
|
readonly templateRef: TemplateRef<any>;
|
|
1171
|
-
readonly align: i0.InputSignal<"
|
|
1171
|
+
readonly align: i0.InputSignal<"center" | "start" | "end">;
|
|
1172
1172
|
readonly alignOffset: i0.InputSignal<number>;
|
|
1173
1173
|
readonly debugVisible: i0.InputSignalWithTransform<boolean, unknown>;
|
|
1174
|
-
readonly side: i0.InputSignal<"
|
|
1174
|
+
readonly side: i0.InputSignal<"top" | "right" | "bottom" | "left" | "auto">;
|
|
1175
1175
|
readonly sideOffset: i0.InputSignal<number>;
|
|
1176
1176
|
isDebugVisible(): boolean;
|
|
1177
1177
|
getPositions(isSubmenu: boolean): ConnectedPosition[];
|
|
@@ -1179,7 +1179,7 @@ declare class FrDropdownMenuContent {
|
|
|
1179
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>;
|
|
1180
1180
|
}
|
|
1181
1181
|
declare class FrDropdownMenuPanel {
|
|
1182
|
-
protected readonly side: i0.InputSignal<"
|
|
1182
|
+
protected readonly side: i0.InputSignal<"top" | "right" | "bottom" | "left" | "auto">;
|
|
1183
1183
|
private readonly tree;
|
|
1184
1184
|
private readonly parent;
|
|
1185
1185
|
protected handleMouseEnter(): void;
|
|
@@ -1277,16 +1277,16 @@ declare class FrDropdownMenuTree {
|
|
|
1277
1277
|
}
|
|
1278
1278
|
declare class FrDropdownMenu implements FrDropdownMenuParent {
|
|
1279
1279
|
readonly closeDelay: i0.InputSignal<number>;
|
|
1280
|
-
readonly triggerMode: i0.InputSignal<"
|
|
1280
|
+
readonly triggerMode: i0.InputSignal<"click" | "both" | "hover">;
|
|
1281
1281
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrDropdownMenu, never>;
|
|
1282
1282
|
static ɵdir: i0.ɵɵDirectiveDeclaration<FrDropdownMenu, "[frDropdownMenu]", never, { "closeDelay": { "alias": "closeDelay"; "required": false; "isSignal": true; }; "triggerMode": { "alias": "triggerMode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1283
1283
|
}
|
|
1284
1284
|
declare class FrDropdownMenuSub implements FrDropdownMenuParent {
|
|
1285
1285
|
private readonly parent;
|
|
1286
1286
|
readonly closeDelayInput: i0.InputSignal<number | null>;
|
|
1287
|
-
readonly triggerModeInput: i0.InputSignal<"
|
|
1287
|
+
readonly triggerModeInput: i0.InputSignal<"click" | "both" | "hover" | null>;
|
|
1288
1288
|
readonly closeDelay: i0.WritableSignal<number>;
|
|
1289
|
-
readonly triggerMode: i0.WritableSignal<"
|
|
1289
|
+
readonly triggerMode: i0.WritableSignal<"click" | "both" | "hover">;
|
|
1290
1290
|
constructor();
|
|
1291
1291
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrDropdownMenuSub, never>;
|
|
1292
1292
|
static ɵdir: i0.ɵɵDirectiveDeclaration<FrDropdownMenuSub, "[frDropdownMenuSub]", never, { "closeDelayInput": { "alias": "closeDelay"; "required": false; "isSignal": true; }; "triggerModeInput": { "alias": "triggerMode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
@@ -1318,7 +1318,7 @@ declare abstract class FrDropdownMenuTriggerBase implements OnDestroy {
|
|
|
1318
1318
|
}
|
|
1319
1319
|
declare class FrDropdownMenuTrigger extends FrDropdownMenuTriggerBase {
|
|
1320
1320
|
readonly menuContent: InputSignal<FrDropdownMenuContent | null>;
|
|
1321
|
-
readonly triggerModeInput: InputSignal<"
|
|
1321
|
+
readonly triggerModeInput: InputSignal<"click" | "both" | "hover" | null>;
|
|
1322
1322
|
protected readonly isSubmenuTrigger = false;
|
|
1323
1323
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrDropdownMenuTrigger, never>;
|
|
1324
1324
|
static ɵdir: i0.ɵɵDirectiveDeclaration<FrDropdownMenuTrigger, "[frDropdownMenuTrigger]", never, { "menuContent": { "alias": "frDropdownMenuTrigger"; "required": false; "isSignal": true; }; "triggerModeInput": { "alias": "triggerMode"; "required": false; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof i1$2.CdkMenuTrigger; inputs: {}; outputs: {}; }]>;
|
|
@@ -1326,7 +1326,7 @@ declare class FrDropdownMenuTrigger extends FrDropdownMenuTriggerBase {
|
|
|
1326
1326
|
declare class FrDropdownMenuSubTrigger extends FrDropdownMenuTriggerBase {
|
|
1327
1327
|
readonly menuContent: InputSignal<FrDropdownMenuContent | null>;
|
|
1328
1328
|
readonly inset: i0.InputSignalWithTransform<boolean, unknown>;
|
|
1329
|
-
readonly triggerModeInput: InputSignal<"
|
|
1329
|
+
readonly triggerModeInput: InputSignal<"click" | "both" | "hover" | null>;
|
|
1330
1330
|
readonly variant: InputSignal<"default" | "destructive">;
|
|
1331
1331
|
protected readonly isSubmenuTrigger = true;
|
|
1332
1332
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrDropdownMenuSubTrigger, never>;
|
|
@@ -1340,7 +1340,7 @@ type FrEmptyMediaVariant = (typeof FR_EMPTY_MEDIA_VARIANTS)[number];
|
|
|
1340
1340
|
type FrEmptyOrientation = (typeof FR_EMPTY_ORIENTATIONS)[number];
|
|
1341
1341
|
type FrEmptyVariant = (typeof FR_EMPTY_VARIANTS)[number];
|
|
1342
1342
|
declare class FrEmpty {
|
|
1343
|
-
readonly orientation: i0.InputSignal<"
|
|
1343
|
+
readonly orientation: i0.InputSignal<"horizontal" | "vertical">;
|
|
1344
1344
|
readonly variant: i0.InputSignal<"default" | "outline" | "soft">;
|
|
1345
1345
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrEmpty, never>;
|
|
1346
1346
|
static ɵdir: i0.ɵɵDirectiveDeclaration<FrEmpty, "[frEmpty], frame-empty", never, { "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
@@ -1350,7 +1350,7 @@ declare class FrEmptyHeader {
|
|
|
1350
1350
|
static ɵdir: i0.ɵɵDirectiveDeclaration<FrEmptyHeader, "[frEmptyHeader], frame-empty-header", never, {}, {}, never, never, true, never>;
|
|
1351
1351
|
}
|
|
1352
1352
|
declare class FrEmptyMedia {
|
|
1353
|
-
readonly variant: i0.InputSignal<"
|
|
1353
|
+
readonly variant: i0.InputSignal<"icon" | "default">;
|
|
1354
1354
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrEmptyMedia, never>;
|
|
1355
1355
|
static ɵdir: i0.ɵɵDirectiveDeclaration<FrEmptyMedia, "[frEmptyMedia], frame-empty-media", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1356
1356
|
}
|
|
@@ -1388,7 +1388,7 @@ declare class FrFieldGroup {
|
|
|
1388
1388
|
static ɵdir: i0.ɵɵDirectiveDeclaration<FrFieldGroup, "[frFieldGroup], frame-field-group", never, {}, {}, never, never, true, never>;
|
|
1389
1389
|
}
|
|
1390
1390
|
declare class FrField {
|
|
1391
|
-
readonly orientation: i0.InputSignal<"
|
|
1391
|
+
readonly orientation: i0.InputSignal<"horizontal" | "vertical">;
|
|
1392
1392
|
readonly disabled: i0.InputSignalWithTransform<boolean, unknown>;
|
|
1393
1393
|
readonly invalid: i0.InputSignalWithTransform<boolean, unknown>;
|
|
1394
1394
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrField, never>;
|
|
@@ -1447,10 +1447,10 @@ declare abstract class FrControlValueAccessor<T> implements ControlValueAccessor
|
|
|
1447
1447
|
|
|
1448
1448
|
declare class FrHoverCardContent {
|
|
1449
1449
|
readonly templateRef: TemplateRef<any>;
|
|
1450
|
-
readonly align: i0.InputSignal<"
|
|
1450
|
+
readonly align: i0.InputSignal<"center" | "start" | "end">;
|
|
1451
1451
|
readonly alignOffset: i0.InputSignal<number>;
|
|
1452
1452
|
readonly debugVisible: i0.InputSignalWithTransform<boolean, unknown>;
|
|
1453
|
-
readonly side: i0.InputSignal<"
|
|
1453
|
+
readonly side: i0.InputSignal<"top" | "right" | "bottom" | "left">;
|
|
1454
1454
|
readonly sideOffset: i0.InputSignal<number>;
|
|
1455
1455
|
getPositions(): ConnectedPosition[];
|
|
1456
1456
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrHoverCardContent, never>;
|
|
@@ -1598,7 +1598,7 @@ type FrInputOtpController = {
|
|
|
1598
1598
|
invalid: () => boolean;
|
|
1599
1599
|
};
|
|
1600
1600
|
declare class FrInputOtp extends FrControlValueAccessor$1<string> {
|
|
1601
|
-
private readonly nativeInput
|
|
1601
|
+
private readonly nativeInput;
|
|
1602
1602
|
readonly maxLength: i0.InputSignalWithTransform<number, unknown>;
|
|
1603
1603
|
readonly pattern: i0.InputSignal<FrInputOtpPattern>;
|
|
1604
1604
|
readonly disabledInput: i0.InputSignalWithTransform<boolean, unknown>;
|
|
@@ -1673,7 +1673,7 @@ declare class FrItemHeader {
|
|
|
1673
1673
|
static ɵdir: i0.ɵɵDirectiveDeclaration<FrItemHeader, "[frItemHeader], frame-item-header", never, {}, {}, never, never, true, never>;
|
|
1674
1674
|
}
|
|
1675
1675
|
declare class FrItemMedia {
|
|
1676
|
-
readonly variant: i0.InputSignal<"
|
|
1676
|
+
readonly variant: i0.InputSignal<"icon" | "default" | "image" | "avatar">;
|
|
1677
1677
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrItemMedia, never>;
|
|
1678
1678
|
static ɵdir: i0.ɵɵDirectiveDeclaration<FrItemMedia, "[frItemMedia], frame-item-media", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1679
1679
|
}
|
|
@@ -1701,7 +1701,7 @@ declare class FrItemFooter {
|
|
|
1701
1701
|
declare const FR_MENUBAR_PARENT: InjectionToken<FrMenuBar>;
|
|
1702
1702
|
declare class FrMenuBar implements FrDropdownMenuParent$1 {
|
|
1703
1703
|
readonly closeDelay: i0.InputSignal<number>;
|
|
1704
|
-
readonly triggerMode: i0.InputSignal<"
|
|
1704
|
+
readonly triggerMode: i0.InputSignal<"click" | "both" | "hover">;
|
|
1705
1705
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrMenuBar, never>;
|
|
1706
1706
|
static ɵdir: i0.ɵɵDirectiveDeclaration<FrMenuBar, "[frMenuBar], frame-menubar", never, { "closeDelay": { "alias": "closeDelay"; "required": false; "isSignal": true; }; "triggerMode": { "alias": "triggerMode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1707
1707
|
}
|
|
@@ -1792,13 +1792,22 @@ declare class FrModalShell {
|
|
|
1792
1792
|
static ɵcmp: i0.ɵɵComponentDeclaration<FrModalShell, "frame-modal-shell", never, {}, {}, never, never, true, never>;
|
|
1793
1793
|
}
|
|
1794
1794
|
|
|
1795
|
-
|
|
1795
|
+
declare abstract class FrModalRef<Component = unknown, Result = unknown> extends DialogRef<Result, Component> {
|
|
1796
|
+
}
|
|
1797
|
+
|
|
1796
1798
|
type FrModalSize = 'sm' | 'md' | 'lg' | 'xl' | 'full';
|
|
1797
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
|
+
*/
|
|
1798
1803
|
bodyData?: unknown;
|
|
1804
|
+
/**
|
|
1805
|
+
* @deprecated Use `inputs` instead.
|
|
1806
|
+
*/
|
|
1799
1807
|
bodyInputs?: Record<string, unknown>;
|
|
1800
1808
|
description?: string;
|
|
1801
1809
|
footerActions?: FrModalFooterAction[];
|
|
1810
|
+
inputs?: Record<string, unknown>;
|
|
1802
1811
|
scrollable?: boolean;
|
|
1803
1812
|
showCloseButton?: boolean;
|
|
1804
1813
|
size?: FrModalSize;
|
|
@@ -1807,8 +1816,9 @@ type FrModalConfig<Data = unknown, Result = unknown, Component = unknown> = Dial
|
|
|
1807
1816
|
};
|
|
1808
1817
|
declare class FrModalService {
|
|
1809
1818
|
private readonly dialog;
|
|
1810
|
-
open<Result = unknown, Data = unknown, Component = unknown>(content: ComponentType<Component>, config?: FrModalConfig<Data, Result, Component>): FrModalRef<
|
|
1811
|
-
open<Result = unknown, Data = unknown,
|
|
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>;
|
|
1812
1822
|
closeAll(): void;
|
|
1813
1823
|
private withDefaultClasses;
|
|
1814
1824
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrModalService, never>;
|
|
@@ -1849,7 +1859,7 @@ declare class FrModalClose {
|
|
|
1849
1859
|
declare class FrModalPanel {
|
|
1850
1860
|
readonly scrollable: i0.InputSignalWithTransform<boolean, unknown>;
|
|
1851
1861
|
readonly showCloseButton: i0.InputSignalWithTransform<boolean, unknown>;
|
|
1852
|
-
readonly size: i0.InputSignal<"
|
|
1862
|
+
readonly size: i0.InputSignal<"sm" | "lg" | "md" | "full" | "xl">;
|
|
1853
1863
|
readonly stickyFooter: i0.InputSignalWithTransform<boolean, unknown>;
|
|
1854
1864
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrModalPanel, never>;
|
|
1855
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>;
|
|
@@ -1876,6 +1886,7 @@ declare class FrModalDescription {
|
|
|
1876
1886
|
}
|
|
1877
1887
|
|
|
1878
1888
|
declare const FR_MODAL_DATA: i0.InjectionToken<any>;
|
|
1889
|
+
declare const FR_MODAL_REF: typeof FrModalRef;
|
|
1879
1890
|
|
|
1880
1891
|
declare class FrModalTrigger {
|
|
1881
1892
|
private static readonly CUSTOM_PROPERTY_PREFIX;
|
|
@@ -1886,7 +1897,7 @@ declare class FrModalTrigger {
|
|
|
1886
1897
|
private modalRef;
|
|
1887
1898
|
readonly content: i0.InputSignal<TemplateRef<unknown> | FrModalContent | null>;
|
|
1888
1899
|
readonly disabled: i0.InputSignalWithTransform<boolean, unknown>;
|
|
1889
|
-
readonly opened: i0.OutputEmitterRef<FrModalRef
|
|
1900
|
+
readonly opened: i0.OutputEmitterRef<FrModalRef<unknown, unknown>>;
|
|
1890
1901
|
readonly closed: i0.OutputEmitterRef<unknown>;
|
|
1891
1902
|
readonly isOpen: i0.WritableSignal<boolean>;
|
|
1892
1903
|
open(): void;
|
|
@@ -1898,7 +1909,7 @@ declare class FrModalTrigger {
|
|
|
1898
1909
|
declare const FR_NAVIGATION_MENU_PARENT: InjectionToken<FrNavigationMenu>;
|
|
1899
1910
|
declare class FrNavigationMenu implements FrDropdownMenuParent$1 {
|
|
1900
1911
|
readonly closeDelay: i0.InputSignal<number>;
|
|
1901
|
-
readonly triggerMode: i0.InputSignal<"
|
|
1912
|
+
readonly triggerMode: i0.InputSignal<"click" | "both" | "hover">;
|
|
1902
1913
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrNavigationMenu, never>;
|
|
1903
1914
|
static ɵdir: i0.ɵɵDirectiveDeclaration<FrNavigationMenu, "[frNavigationMenu], frame-navigation-menu", never, { "closeDelay": { "alias": "closeDelay"; "required": false; "isSignal": true; }; "triggerMode": { "alias": "triggerMode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1904
1915
|
}
|
|
@@ -2028,10 +2039,10 @@ declare class FrPaginationEllipsis {
|
|
|
2028
2039
|
|
|
2029
2040
|
declare class FrPopoverContent {
|
|
2030
2041
|
readonly templateRef: TemplateRef<any>;
|
|
2031
|
-
readonly align: i0.InputSignal<"
|
|
2042
|
+
readonly align: i0.InputSignal<"center" | "start" | "end">;
|
|
2032
2043
|
readonly alignOffset: i0.InputSignal<number>;
|
|
2033
2044
|
readonly debugVisible: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2034
|
-
readonly side: i0.InputSignal<"
|
|
2045
|
+
readonly side: i0.InputSignal<"top" | "right" | "bottom" | "left">;
|
|
2035
2046
|
readonly sideOffset: i0.InputSignal<number>;
|
|
2036
2047
|
getPositions(): ConnectedPosition[];
|
|
2037
2048
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrPopoverContent, never>;
|
|
@@ -2114,7 +2125,7 @@ declare class FrProgress {
|
|
|
2114
2125
|
readonly isIndeterminate: i0.Signal<boolean>;
|
|
2115
2126
|
readonly normalizedValue: i0.Signal<number>;
|
|
2116
2127
|
readonly percentage: i0.Signal<number>;
|
|
2117
|
-
readonly state: i0.Signal<"
|
|
2128
|
+
readonly state: i0.Signal<"indeterminate" | "complete" | "loading">;
|
|
2118
2129
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrProgress, never>;
|
|
2119
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>;
|
|
2120
2131
|
}
|
|
@@ -2128,7 +2139,7 @@ declare const FR_RADIO_GROUP_VARIANTS: readonly ["default", "cards"];
|
|
|
2128
2139
|
type FrRadioGroupOrientation = (typeof FR_RADIO_GROUP_ORIENTATIONS)[number];
|
|
2129
2140
|
type FrRadioGroupVariant = (typeof FR_RADIO_GROUP_VARIANTS)[number];
|
|
2130
2141
|
declare class FrRadioGroup {
|
|
2131
|
-
readonly orientation: i0.InputSignal<"
|
|
2142
|
+
readonly orientation: i0.InputSignal<"horizontal" | "vertical">;
|
|
2132
2143
|
readonly variant: i0.InputSignal<"default" | "cards">;
|
|
2133
2144
|
readonly disabled: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2134
2145
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrRadioGroup, never>;
|
|
@@ -2159,7 +2170,7 @@ declare class FrResizablePanelGroup implements AfterViewInit, OnDestroy {
|
|
|
2159
2170
|
private readonly elementRef;
|
|
2160
2171
|
private readonly groupId;
|
|
2161
2172
|
private readonly cleanupFns;
|
|
2162
|
-
readonly orientation: i0.InputSignal<"
|
|
2173
|
+
readonly orientation: i0.InputSignal<"horizontal" | "vertical">;
|
|
2163
2174
|
readonly disabled: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2164
2175
|
readonly layoutChange: i0.OutputEmitterRef<number[]>;
|
|
2165
2176
|
ngAfterViewInit(): void;
|
|
@@ -2317,7 +2328,7 @@ declare class FrSlider extends FrControlValueAccessor$1<FrSliderValue | null> {
|
|
|
2317
2328
|
readonly max: i0.InputSignalWithTransform<number, unknown>;
|
|
2318
2329
|
readonly step: i0.InputSignalWithTransform<number, unknown>;
|
|
2319
2330
|
readonly minStepsBetweenThumbs: i0.InputSignalWithTransform<number, unknown>;
|
|
2320
|
-
readonly orientation: i0.InputSignalWithTransform<"
|
|
2331
|
+
readonly orientation: i0.InputSignalWithTransform<"horizontal" | "vertical", unknown>;
|
|
2321
2332
|
readonly disabledInput: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2322
2333
|
readonly invalidInput: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2323
2334
|
readonly inverted: i0.InputSignalWithTransform<boolean, unknown>;
|
|
@@ -2354,7 +2365,7 @@ declare class FrSlider extends FrControlValueAccessor$1<FrSliderValue | null> {
|
|
|
2354
2365
|
declare const FR_SEPARATOR_ORIENTATIONS: readonly ["horizontal", "vertical"];
|
|
2355
2366
|
type FrSeparatorOrientation = (typeof FR_SEPARATOR_ORIENTATIONS)[number];
|
|
2356
2367
|
declare class FrSeparator {
|
|
2357
|
-
readonly orientation: i0.InputSignalWithTransform<"
|
|
2368
|
+
readonly orientation: i0.InputSignalWithTransform<"horizontal" | "vertical", unknown>;
|
|
2358
2369
|
readonly decorative: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2359
2370
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrSeparator, never>;
|
|
2360
2371
|
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSeparator, "[frSeparator], frame-separator", ["frSeparator"], { "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "decorative": { "alias": "decorative"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
@@ -2370,9 +2381,11 @@ declare class FrSheetClose {
|
|
|
2370
2381
|
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSheetClose, "[frSheetClose]", never, { "result": { "alias": "frSheetClose"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2371
2382
|
}
|
|
2372
2383
|
declare class FrSheetPanel {
|
|
2384
|
+
private readonly dialogRef;
|
|
2373
2385
|
readonly scrollable: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2374
2386
|
readonly showCloseButton: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2375
|
-
readonly side: i0.InputSignalWithTransform<"
|
|
2387
|
+
readonly side: i0.InputSignalWithTransform<"top" | "right" | "bottom" | "left", unknown>;
|
|
2388
|
+
close(): void;
|
|
2376
2389
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrSheetPanel, never>;
|
|
2377
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>;
|
|
2378
2391
|
}
|
|
@@ -2532,13 +2545,14 @@ declare class FrSidebarProvider {
|
|
|
2532
2545
|
declare class FrSidebar {
|
|
2533
2546
|
readonly elementRef: ElementRef<HTMLElement>;
|
|
2534
2547
|
readonly provider: FrSidebarProvider | null;
|
|
2535
|
-
readonly side: i0.InputSignalWithTransform<"
|
|
2548
|
+
readonly side: i0.InputSignalWithTransform<"right" | "left", unknown>;
|
|
2536
2549
|
readonly variant: i0.InputSignalWithTransform<"sidebar" | "floating" | "inset", unknown>;
|
|
2537
2550
|
readonly collapsible: i0.InputSignalWithTransform<"offcanvas" | "icon" | "none", unknown>;
|
|
2538
2551
|
readonly minSize: i0.InputSignalWithTransform<number | null, unknown>;
|
|
2539
2552
|
readonly maxSize: i0.InputSignalWithTransform<number | null, unknown>;
|
|
2553
|
+
readonly resizable: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2540
2554
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrSidebar, never>;
|
|
2541
|
-
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; }; }, {}, 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>;
|
|
2542
2556
|
}
|
|
2543
2557
|
declare class FrSidebarTrigger {
|
|
2544
2558
|
readonly provider: FrSidebarProvider | null;
|
|
@@ -2563,7 +2577,6 @@ declare class FrSidebarRail {
|
|
|
2563
2577
|
startResize(event: PointerEvent): void;
|
|
2564
2578
|
private resize;
|
|
2565
2579
|
private flushResize;
|
|
2566
|
-
private clampWidth;
|
|
2567
2580
|
private captureResizeBounds;
|
|
2568
2581
|
private measureContentMinSize;
|
|
2569
2582
|
static ɵfac: i0.ɵɵFactoryDeclaration<FrSidebarRail, never>;
|
|
@@ -2778,5 +2791,5 @@ declare class FrVirtualViewport {
|
|
|
2778
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>;
|
|
2779
2792
|
}
|
|
2780
2793
|
|
|
2781
|
-
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_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, 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 };
|
|
2782
|
-
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,
|
|
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 };
|