@frame-ui-ng/components 0.1.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/LICENSE.md +9 -0
- package/README.md +31 -0
- package/accordion/src/styles/_vars.css +25 -0
- package/accordion/src/styles/accordion.css +87 -0
- package/alert/src/styles/_vars.css +28 -0
- package/alert/src/styles/alert.css +77 -0
- package/avatar/src/styles/_vars.css +34 -0
- package/avatar/src/styles/avatar.css +209 -0
- package/badge/src/styles/_vars.css +16 -0
- package/badge/src/styles/badge.css +125 -0
- package/breadcrumb/src/styles/_vars.css +16 -0
- package/breadcrumb/src/styles/breadcrumb.css +98 -0
- package/button/src/styles/_vars.css +20 -0
- package/button/src/styles/button-icon.css +18 -0
- package/button/src/styles/button-label.css +3 -0
- package/button/src/styles/button.css +243 -0
- package/button-group/src/styles/button-group.css +69 -0
- package/calendar/src/styles/_vars.css +29 -0
- package/calendar/src/styles/calendar.css +226 -0
- package/card/src/styles/_vars.css +17 -0
- package/card/src/styles/card.css +142 -0
- package/carousel/src/styles/_vars.css +7 -0
- package/carousel/src/styles/carousel.css +89 -0
- package/checkbox/src/styles/_vars.css +22 -0
- package/checkbox/src/styles/checkbox.css +95 -0
- package/collapsible/src/styles/_vars.css +13 -0
- package/collapsible/src/styles/collapsible.css +42 -0
- package/combobox/src/styles/_vars.css +60 -0
- package/combobox/src/styles/combobox.css +285 -0
- package/command/src/styles/_vars.css +37 -0
- package/command/src/styles/command.css +171 -0
- package/context-menu/src/styles/context-menu.css +5 -0
- package/date-picker/src/styles/_vars.css +29 -0
- package/date-picker/src/styles/date-picker.css +177 -0
- package/dropdown-menu/src/styles/_vars.css +34 -0
- package/dropdown-menu/src/styles/dropdown-menu-item.css +87 -0
- package/dropdown-menu/src/styles/dropdown-menu-motion.css +42 -0
- package/dropdown-menu/src/styles/dropdown-menu-panel.css +26 -0
- package/dropdown-menu/src/styles/dropdown-menu.css +4 -0
- package/empty/src/styles/_vars.css +23 -0
- package/empty/src/styles/empty.css +108 -0
- package/fesm2022/frame-ui-ng-components-accordion.mjs +268 -0
- package/fesm2022/frame-ui-ng-components-accordion.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-alert.mjs +102 -0
- package/fesm2022/frame-ui-ng-components-alert.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-avatar.mjs +197 -0
- package/fesm2022/frame-ui-ng-components-avatar.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-badge.mjs +120 -0
- package/fesm2022/frame-ui-ng-components-badge.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-breadcrumb.mjs +156 -0
- package/fesm2022/frame-ui-ng-components-breadcrumb.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-button-group.mjs +44 -0
- package/fesm2022/frame-ui-ng-components-button-group.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-button.mjs +150 -0
- package/fesm2022/frame-ui-ng-components-button.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-calendar.mjs +559 -0
- package/fesm2022/frame-ui-ng-components-calendar.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-card.mjs +169 -0
- package/fesm2022/frame-ui-ng-components-card.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-carousel.mjs +454 -0
- package/fesm2022/frame-ui-ng-components-carousel.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-checkbox.mjs +83 -0
- package/fesm2022/frame-ui-ng-components-checkbox.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-collapsible.mjs +191 -0
- package/fesm2022/frame-ui-ng-components-collapsible.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-combobox.mjs +859 -0
- package/fesm2022/frame-ui-ng-components-combobox.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-command.mjs +658 -0
- package/fesm2022/frame-ui-ng-components-command.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-context-menu.mjs +579 -0
- package/fesm2022/frame-ui-ng-components-context-menu.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-date-picker.mjs +512 -0
- package/fesm2022/frame-ui-ng-components-date-picker.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-dropdown-menu.mjs +647 -0
- package/fesm2022/frame-ui-ng-components-dropdown-menu.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-empty.mjs +134 -0
- package/fesm2022/frame-ui-ng-components-empty.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-field.mjs +210 -0
- package/fesm2022/frame-ui-ng-components-field.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-forms.mjs +89 -0
- package/fesm2022/frame-ui-ng-components-forms.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-hover-card.mjs +412 -0
- package/fesm2022/frame-ui-ng-components-hover-card.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-input-otp.mjs +327 -0
- package/fesm2022/frame-ui-ng-components-input-otp.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-input.mjs +250 -0
- package/fesm2022/frame-ui-ng-components-input.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-item.mjs +207 -0
- package/fesm2022/frame-ui-ng-components-item.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-menubar.mjs +371 -0
- package/fesm2022/frame-ui-ng-components-menubar.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-modal.mjs +525 -0
- package/fesm2022/frame-ui-ng-components-modal.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-navigation-menu.mjs +322 -0
- package/fesm2022/frame-ui-ng-components-navigation-menu.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-pagination.mjs +327 -0
- package/fesm2022/frame-ui-ng-components-pagination.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-popover.mjs +454 -0
- package/fesm2022/frame-ui-ng-components-popover.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-progress.mjs +96 -0
- package/fesm2022/frame-ui-ng-components-progress.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-radio-group.mjs +124 -0
- package/fesm2022/frame-ui-ng-components-radio-group.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-resizable.mjs +325 -0
- package/fesm2022/frame-ui-ng-components-resizable.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-select.mjs +434 -0
- package/fesm2022/frame-ui-ng-components-select.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-separator.mjs +51 -0
- package/fesm2022/frame-ui-ng-components-separator.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-sheet.mjs +514 -0
- package/fesm2022/frame-ui-ng-components-sheet.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-sidebar.mjs +628 -0
- package/fesm2022/frame-ui-ng-components-sidebar.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-skeleton.mjs +46 -0
- package/fesm2022/frame-ui-ng-components-skeleton.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-slider.mjs +279 -0
- package/fesm2022/frame-ui-ng-components-slider.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-spinner.mjs +51 -0
- package/fesm2022/frame-ui-ng-components-spinner.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-switch.mjs +130 -0
- package/fesm2022/frame-ui-ng-components-switch.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-table.mjs +594 -0
- package/fesm2022/frame-ui-ng-components-table.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-tabs.mjs +208 -0
- package/fesm2022/frame-ui-ng-components-tabs.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-textarea.mjs +40 -0
- package/fesm2022/frame-ui-ng-components-textarea.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-toast.mjs +346 -0
- package/fesm2022/frame-ui-ng-components-toast.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-toggle.mjs +127 -0
- package/fesm2022/frame-ui-ng-components-toggle.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-tooltip.mjs +425 -0
- package/fesm2022/frame-ui-ng-components-tooltip.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-virtual-scroll.mjs +321 -0
- package/fesm2022/frame-ui-ng-components-virtual-scroll.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components.mjs +10278 -0
- package/fesm2022/frame-ui-ng-components.mjs.map +1 -0
- package/field/src/styles/_vars.css +20 -0
- package/field/src/styles/field.css +165 -0
- package/hover-card/src/styles/_vars.css +21 -0
- package/hover-card/src/styles/hover-card.css +76 -0
- package/input/src/styles/_vars.css +65 -0
- package/input/src/styles/input-group.css +112 -0
- package/input/src/styles/input.css +163 -0
- package/input-otp/src/styles/_vars.css +21 -0
- package/input-otp/src/styles/input-otp.css +116 -0
- package/item/src/styles/_vars.css +34 -0
- package/item/src/styles/item.css +187 -0
- package/menubar/src/styles/_vars.css +22 -0
- package/menubar/src/styles/menubar.css +70 -0
- package/modal/src/styles/_vars.css +18 -0
- package/modal/src/styles/modal.css +179 -0
- package/navigation-menu/src/styles/_vars.css +45 -0
- package/navigation-menu/src/styles/navigation-menu.css +245 -0
- package/package.json +243 -0
- package/pagination/src/styles/_vars.css +22 -0
- package/pagination/src/styles/pagination.css +138 -0
- package/popover/src/styles/_vars.css +24 -0
- package/popover/src/styles/popover.css +101 -0
- package/progress/src/styles/_vars.css +15 -0
- package/progress/src/styles/progress.css +64 -0
- package/radio-group/src/styles/_vars.css +29 -0
- package/radio-group/src/styles/radio-group.css +137 -0
- package/resizable/src/styles/_vars.css +20 -0
- package/resizable/src/styles/resizable.css +130 -0
- package/select/src/styles/_vars.css +28 -0
- package/select/src/styles/select-content.css +19 -0
- package/select/src/styles/select-feedback.css +6 -0
- package/select/src/styles/select-item.css +69 -0
- package/select/src/styles/select-trigger.css +95 -0
- package/select/src/styles/select.css +5 -0
- package/separator/src/styles/_vars.css +9 -0
- package/separator/src/styles/separator.css +25 -0
- package/sheet/src/styles/_vars.css +18 -0
- package/sheet/src/styles/sheet.css +215 -0
- package/sidebar/src/styles/_vars.css +24 -0
- package/sidebar/src/styles/sidebar.css +531 -0
- package/skeleton/src/styles/_vars.css +8 -0
- package/skeleton/src/styles/skeleton.css +40 -0
- package/slider/src/styles/_vars.css +17 -0
- package/slider/src/styles/slider.css +147 -0
- package/spinner/src/styles/_vars.css +9 -0
- package/spinner/src/styles/spinner.css +62 -0
- package/src/styles/components.css +47 -0
- package/styles/components.css +47 -0
- package/styles.css +49 -0
- package/switch/src/styles/_vars.css +34 -0
- package/switch/src/styles/switch.css +131 -0
- package/table/src/styles/_vars.css +25 -0
- package/table/src/styles/table.css +245 -0
- package/tabs/src/styles/_vars.css +23 -0
- package/tabs/src/styles/tabs.css +164 -0
- package/textarea/src/styles/_vars.css +20 -0
- package/textarea/src/styles/textarea.css +60 -0
- package/toast/src/styles/_vars.css +47 -0
- package/toast/src/styles/toast.css +314 -0
- package/toggle/src/styles/_vars.css +24 -0
- package/toggle/src/styles/toggle.css +110 -0
- package/tooltip/src/styles/_vars.css +21 -0
- package/tooltip/src/styles/tooltip.css +103 -0
- package/types/frame-ui-ng-components-accordion.d.ts +75 -0
- package/types/frame-ui-ng-components-alert.d.ts +30 -0
- package/types/frame-ui-ng-components-avatar.d.ts +65 -0
- package/types/frame-ui-ng-components-badge.d.ts +35 -0
- package/types/frame-ui-ng-components-breadcrumb.d.ts +40 -0
- package/types/frame-ui-ng-components-button-group.d.ts +18 -0
- package/types/frame-ui-ng-components-button.d.ts +50 -0
- package/types/frame-ui-ng-components-calendar.d.ts +101 -0
- package/types/frame-ui-ng-components-card.d.ts +51 -0
- package/types/frame-ui-ng-components-carousel.d.ts +117 -0
- package/types/frame-ui-ng-components-checkbox.d.ts +25 -0
- package/types/frame-ui-ng-components-collapsible.d.ts +55 -0
- package/types/frame-ui-ng-components-combobox.d.ts +201 -0
- package/types/frame-ui-ng-components-command.d.ts +198 -0
- package/types/frame-ui-ng-components-context-menu.d.ts +149 -0
- package/types/frame-ui-ng-components-date-picker.d.ts +95 -0
- package/types/frame-ui-ng-components-dropdown-menu.d.ts +182 -0
- package/types/frame-ui-ng-components-empty.d.ts +44 -0
- package/types/frame-ui-ng-components-field.d.ts +60 -0
- package/types/frame-ui-ng-components-forms.d.ts +39 -0
- package/types/frame-ui-ng-components-hover-card.d.ts +94 -0
- package/types/frame-ui-ng-components-input-otp.d.ts +70 -0
- package/types/frame-ui-ng-components-input.d.ts +67 -0
- package/types/frame-ui-ng-components-item.d.ts +62 -0
- package/types/frame-ui-ng-components-menubar.d.ts +76 -0
- package/types/frame-ui-ng-components-modal.d.ts +148 -0
- package/types/frame-ui-ng-components-navigation-menu.d.ts +74 -0
- package/types/frame-ui-ng-components-pagination.d.ts +79 -0
- package/types/frame-ui-ng-components-popover.d.ts +95 -0
- package/types/frame-ui-ng-components-progress.d.ts +24 -0
- package/types/frame-ui-ng-components-radio-group.d.ts +40 -0
- package/types/frame-ui-ng-components-resizable.d.ts +61 -0
- package/types/frame-ui-ng-components-select.d.ts +114 -0
- package/types/frame-ui-ng-components-separator.d.ts +19 -0
- package/types/frame-ui-ng-components-sheet.d.ts +146 -0
- package/types/frame-ui-ng-components-sidebar.d.ts +163 -0
- package/types/frame-ui-ng-components-skeleton.d.ts +18 -0
- package/types/frame-ui-ng-components-slider.d.ts +56 -0
- package/types/frame-ui-ng-components-spinner.d.ts +23 -0
- package/types/frame-ui-ng-components-switch.d.ts +38 -0
- package/types/frame-ui-ng-components-table.d.ts +125 -0
- package/types/frame-ui-ng-components-tabs.d.ts +62 -0
- package/types/frame-ui-ng-components-textarea.d.ts +14 -0
- package/types/frame-ui-ng-components-toast.d.ts +74 -0
- package/types/frame-ui-ng-components-toggle.d.ts +45 -0
- package/types/frame-ui-ng-components-tooltip.d.ts +99 -0
- package/types/frame-ui-ng-components-virtual-scroll.d.ts +106 -0
- package/types/frame-ui-ng-components.d.ts +2746 -0
- package/virtual-scroll/src/styles/virtual-scroll.css +54 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
|
|
3
|
+
declare class FrProgress {
|
|
4
|
+
readonly value: i0.InputSignalWithTransform<number | null, unknown>;
|
|
5
|
+
readonly max: i0.InputSignalWithTransform<number, unknown>;
|
|
6
|
+
readonly isIndeterminate: i0.Signal<boolean>;
|
|
7
|
+
readonly normalizedValue: i0.Signal<number>;
|
|
8
|
+
readonly percentage: i0.Signal<number>;
|
|
9
|
+
readonly state: i0.Signal<"indeterminate" | "complete" | "loading">;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrProgress, never>;
|
|
11
|
+
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>;
|
|
12
|
+
}
|
|
13
|
+
declare class FrProgressIndicator {
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrProgressIndicator, never>;
|
|
15
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrProgressIndicator, "[frProgressIndicator], frame-progress-indicator", never, {}, {}, never, never, true, never>;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
declare class FrProgressModule {
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrProgressModule, never>;
|
|
20
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FrProgressModule, never, [typeof FrProgress, typeof FrProgressIndicator], [typeof FrProgress, typeof FrProgressIndicator]>;
|
|
21
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<FrProgressModule>;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export { FrProgress, FrProgressIndicator, FrProgressModule };
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
|
|
3
|
+
declare const FR_RADIO_GROUP_ORIENTATIONS: readonly ["vertical", "horizontal"];
|
|
4
|
+
declare const FR_RADIO_GROUP_VARIANTS: readonly ["default", "cards"];
|
|
5
|
+
type FrRadioGroupOrientation = (typeof FR_RADIO_GROUP_ORIENTATIONS)[number];
|
|
6
|
+
type FrRadioGroupVariant = (typeof FR_RADIO_GROUP_VARIANTS)[number];
|
|
7
|
+
declare class FrRadioGroup {
|
|
8
|
+
readonly orientation: i0.InputSignal<"vertical" | "horizontal">;
|
|
9
|
+
readonly variant: i0.InputSignal<"default" | "cards">;
|
|
10
|
+
readonly disabled: i0.InputSignalWithTransform<boolean, unknown>;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrRadioGroup, never>;
|
|
12
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrRadioGroup, "[frRadioGroup], frame-radio-group", ["frRadioGroup"], { "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
13
|
+
}
|
|
14
|
+
declare class FrRadioGroupItem {
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrRadioGroupItem, never>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrRadioGroupItem, "input[type=radio][frRadioGroupItem]", never, {}, {}, never, never, true, never>;
|
|
17
|
+
}
|
|
18
|
+
declare class FrRadioGroupField {
|
|
19
|
+
readonly disabled: i0.InputSignalWithTransform<boolean, unknown>;
|
|
20
|
+
readonly invalid: i0.InputSignalWithTransform<boolean, unknown>;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrRadioGroupField, never>;
|
|
22
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrRadioGroupField, "label[frRadioGroupField]", never, { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
23
|
+
}
|
|
24
|
+
declare class FrRadioGroupCard {
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrRadioGroupCard, never>;
|
|
26
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrRadioGroupCard, "label[frRadioGroupCard]", never, {}, {}, never, never, true, never>;
|
|
27
|
+
}
|
|
28
|
+
declare class FrRadioGroupCardMeta {
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrRadioGroupCardMeta, never>;
|
|
30
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrRadioGroupCardMeta, "[frRadioGroupCardMeta]", never, {}, {}, never, never, true, never>;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
declare class FrRadioGroupModule {
|
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrRadioGroupModule, never>;
|
|
35
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FrRadioGroupModule, never, [typeof FrRadioGroup, typeof FrRadioGroupCard, typeof FrRadioGroupCardMeta, typeof FrRadioGroupField, typeof FrRadioGroupItem], [typeof FrRadioGroup, typeof FrRadioGroupCard, typeof FrRadioGroupCardMeta, typeof FrRadioGroupField, typeof FrRadioGroupItem]>;
|
|
36
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<FrRadioGroupModule>;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export { FR_RADIO_GROUP_ORIENTATIONS, FR_RADIO_GROUP_VARIANTS, FrRadioGroup, FrRadioGroupCard, FrRadioGroupCardMeta, FrRadioGroupField, FrRadioGroupItem, FrRadioGroupModule };
|
|
40
|
+
export type { FrRadioGroupOrientation, FrRadioGroupVariant };
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import * as _angular_core from '@angular/core';
|
|
2
|
+
import { AfterViewInit, OnDestroy } from '@angular/core';
|
|
3
|
+
|
|
4
|
+
declare const FR_RESIZABLE_ORIENTATIONS: readonly ["horizontal", "vertical"];
|
|
5
|
+
type FrResizableOrientation = (typeof FR_RESIZABLE_ORIENTATIONS)[number];
|
|
6
|
+
declare class FrResizablePanelGroup implements AfterViewInit, OnDestroy {
|
|
7
|
+
private readonly elementRef;
|
|
8
|
+
private readonly groupId;
|
|
9
|
+
private readonly cleanupFns;
|
|
10
|
+
readonly orientation: _angular_core.InputSignal<"horizontal" | "vertical">;
|
|
11
|
+
readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
12
|
+
readonly layoutChange: _angular_core.OutputEmitterRef<number[]>;
|
|
13
|
+
ngAfterViewInit(): void;
|
|
14
|
+
ngOnDestroy(): void;
|
|
15
|
+
panelId(index: number): string;
|
|
16
|
+
panels(): HTMLElement[];
|
|
17
|
+
handles(): HTMLElement[];
|
|
18
|
+
initializeLayout(): void;
|
|
19
|
+
startResize(handle: HTMLElement, pointerId: number, startClientX: number, startClientY: number): void;
|
|
20
|
+
resizeFromKeyboard(handle: HTMLElement, key: string): boolean;
|
|
21
|
+
private resizePair;
|
|
22
|
+
private applyPanelSize;
|
|
23
|
+
private panelPairForHandle;
|
|
24
|
+
private updateHandleMetadata;
|
|
25
|
+
private emitLayout;
|
|
26
|
+
private panelSize;
|
|
27
|
+
private defaultSize;
|
|
28
|
+
private minSize;
|
|
29
|
+
private maxSize;
|
|
30
|
+
private collapsedSize;
|
|
31
|
+
private collapsible;
|
|
32
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FrResizablePanelGroup, never>;
|
|
33
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<FrResizablePanelGroup, "[frResizablePanelGroup], frame-resizable-panel-group", ["frResizablePanelGroup"], { "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "layoutChange": "layoutChange"; }, never, never, true, never>;
|
|
34
|
+
}
|
|
35
|
+
declare class FrResizablePanel {
|
|
36
|
+
readonly defaultSize: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
37
|
+
readonly minSize: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
38
|
+
readonly maxSize: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
39
|
+
readonly collapsible: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
40
|
+
readonly collapsedSize: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
41
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FrResizablePanel, never>;
|
|
42
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<FrResizablePanel, "[frResizablePanel], frame-resizable-panel", never, { "defaultSize": { "alias": "defaultSize"; "required": false; "isSignal": true; }; "minSize": { "alias": "minSize"; "required": false; "isSignal": true; }; "maxSize": { "alias": "maxSize"; "required": false; "isSignal": true; }; "collapsible": { "alias": "collapsible"; "required": false; "isSignal": true; }; "collapsedSize": { "alias": "collapsedSize"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
43
|
+
}
|
|
44
|
+
declare class FrResizableHandle {
|
|
45
|
+
protected readonly group: FrResizablePanelGroup;
|
|
46
|
+
private readonly elementRef;
|
|
47
|
+
readonly withHandle: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
48
|
+
protected onPointerDown(event: PointerEvent): void;
|
|
49
|
+
protected onKeydown(event: KeyboardEvent): void;
|
|
50
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FrResizableHandle, never>;
|
|
51
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<FrResizableHandle, "[frResizableHandle], frame-resizable-handle", never, { "withHandle": { "alias": "withHandle"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
declare class FrResizableModule {
|
|
55
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FrResizableModule, never>;
|
|
56
|
+
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<FrResizableModule, never, [typeof FrResizableHandle, typeof FrResizablePanel, typeof FrResizablePanelGroup], [typeof FrResizableHandle, typeof FrResizablePanel, typeof FrResizablePanelGroup]>;
|
|
57
|
+
static ɵinj: _angular_core.ɵɵInjectorDeclaration<FrResizableModule>;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export { FR_RESIZABLE_ORIENTATIONS, FrResizableHandle, FrResizableModule, FrResizablePanel, FrResizablePanelGroup };
|
|
61
|
+
export type { FrResizableOrientation };
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
import * as _angular_cdk_overlay from '@angular/cdk/overlay';
|
|
2
|
+
import * as i0 from '@angular/core';
|
|
3
|
+
import * as i1 from '@frame-ui-ng/components/dropdown-menu';
|
|
4
|
+
import { FrDropdownMenuContent } from '@frame-ui-ng/components/dropdown-menu';
|
|
5
|
+
import { FrControlValueAccessor } from '@frame-ui-ng/components/forms';
|
|
6
|
+
|
|
7
|
+
declare const FR_SELECT_INDICATOR_POSITIONS: readonly ["start", "end"];
|
|
8
|
+
type FrSelectIndicatorPosition = (typeof FR_SELECT_INDICATOR_POSITIONS)[number];
|
|
9
|
+
declare class FrSelect extends FrControlValueAccessor<string | null> {
|
|
10
|
+
private readonly destroyRef;
|
|
11
|
+
private readonly dropdownTrigger;
|
|
12
|
+
private readonly elementRef;
|
|
13
|
+
private readonly selectedLabel;
|
|
14
|
+
private readonly labels;
|
|
15
|
+
private resizeObserver;
|
|
16
|
+
readonly value: i0.ModelSignal<string | null>;
|
|
17
|
+
readonly debugVisible: i0.InputSignalWithTransform<boolean, unknown>;
|
|
18
|
+
readonly disabledInput: i0.InputSignalWithTransform<boolean, unknown>;
|
|
19
|
+
readonly indicatorPosition: i0.InputSignal<"start" | "end">;
|
|
20
|
+
readonly invalidInput: i0.InputSignalWithTransform<boolean, unknown>;
|
|
21
|
+
readonly disabled: i0.Signal<boolean>;
|
|
22
|
+
readonly invalid: i0.Signal<boolean | null>;
|
|
23
|
+
readonly displayValue: i0.Signal<string | null>;
|
|
24
|
+
constructor();
|
|
25
|
+
registerItem(value: string | null, label: string): void;
|
|
26
|
+
selectValue(value: string | null, label: string): void;
|
|
27
|
+
protected setViewValue(value: string | null): void;
|
|
28
|
+
private attachResizeObserver;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSelect, never>;
|
|
30
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSelect, "button[frSelect]", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "debugVisible": { "alias": "debugVisible"; "required": false; "isSignal": true; }; "disabledInput": { "alias": "disabled"; "required": false; "isSignal": true; }; "indicatorPosition": { "alias": "indicatorPosition"; "required": false; "isSignal": true; }; "invalidInput": { "alias": "invalid"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, [{ directive: typeof i1.FrDropdownMenu; inputs: { "closeDelay": "closeDelay"; "triggerMode": "triggerMode"; }; outputs: {}; }, { directive: typeof i1.FrDropdownMenuTrigger; inputs: { "frDropdownMenuTrigger": "frSelect"; }; outputs: {}; }]>;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
declare const FR_SELECT_POSITIONS: readonly ["item-aligned", "popper"];
|
|
34
|
+
type FrSelectPosition = (typeof FR_SELECT_POSITIONS)[number];
|
|
35
|
+
declare class FrSelectContent extends FrDropdownMenuContent {
|
|
36
|
+
private readonly destroyRef;
|
|
37
|
+
private readonly viewContainerRef;
|
|
38
|
+
private readonly debugVisibleOverride;
|
|
39
|
+
private readonly triggerWidth;
|
|
40
|
+
private registrationView;
|
|
41
|
+
readonly position: i0.InputSignal<"item-aligned" | "popper">;
|
|
42
|
+
select: FrSelect | null;
|
|
43
|
+
constructor();
|
|
44
|
+
setDebugVisibleOverride(value: boolean | null): void;
|
|
45
|
+
isDebugVisible(): boolean;
|
|
46
|
+
setTriggerWidth(value: number | null): void;
|
|
47
|
+
ensureItemsRegistered(): void;
|
|
48
|
+
panelMinWidth(): number | null;
|
|
49
|
+
getPositions(isSubmenu: boolean): _angular_cdk_overlay.ConnectedPosition[];
|
|
50
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSelectContent, never>;
|
|
51
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSelectContent, "ng-template[frSelectContent]", ["frSelectContent"], { "position": { "alias": "position"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
52
|
+
}
|
|
53
|
+
declare class FrSelectPanel {
|
|
54
|
+
protected readonly content: FrSelectContent;
|
|
55
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSelectPanel, never>;
|
|
56
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSelectPanel, "[frSelectPanel], frame-select-panel", never, {}, {}, never, never, true, [{ directive: typeof i1.FrDropdownMenuPanel; inputs: {}; outputs: {}; }]>;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
declare class FrSelectValue {
|
|
60
|
+
private readonly select;
|
|
61
|
+
readonly placeholder: i0.InputSignal<string>;
|
|
62
|
+
protected readonly isPlaceholder: i0.Signal<boolean>;
|
|
63
|
+
protected readonly displayText: i0.Signal<string>;
|
|
64
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSelectValue, never>;
|
|
65
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSelectValue, "[frSelectValue], frame-select-value", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
66
|
+
}
|
|
67
|
+
declare class FrSelectItemIndicator {
|
|
68
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSelectItemIndicator, never>;
|
|
69
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSelectItemIndicator, "[frSelectItemIndicator], frame-select-item-indicator", never, {}, {}, never, never, true, never>;
|
|
70
|
+
}
|
|
71
|
+
declare class FrSelectIcon {
|
|
72
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSelectIcon, never>;
|
|
73
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSelectIcon, "[frSelectIcon], frame-select-icon", never, {}, {}, never, never, true, never>;
|
|
74
|
+
}
|
|
75
|
+
declare class FrSelectError {
|
|
76
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSelectError, never>;
|
|
77
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSelectError, "[frSelectError], frame-select-error", never, {}, {}, never, never, true, never>;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
declare class FrSelectGroup {
|
|
81
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSelectGroup, never>;
|
|
82
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSelectGroup, "[frSelectGroup], frame-select-group", never, {}, {}, never, never, true, never>;
|
|
83
|
+
}
|
|
84
|
+
declare class FrSelectLabel {
|
|
85
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSelectLabel, never>;
|
|
86
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSelectLabel, "[frSelectLabel], frame-select-label", never, {}, {}, never, never, true, [{ directive: typeof i1.FrDropdownMenuLabel; inputs: {}; outputs: {}; }]>;
|
|
87
|
+
}
|
|
88
|
+
declare class FrSelectSeparator {
|
|
89
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSelectSeparator, never>;
|
|
90
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSelectSeparator, "[frSelectSeparator], frame-select-separator", never, {}, {}, never, never, true, [{ directive: typeof i1.FrDropdownMenuSeparator; inputs: {}; outputs: {}; }]>;
|
|
91
|
+
}
|
|
92
|
+
declare class FrSelectItem {
|
|
93
|
+
private readonly elementRef;
|
|
94
|
+
private readonly content;
|
|
95
|
+
protected readonly customIndicator: i0.Signal<FrSelectItemIndicator | undefined>;
|
|
96
|
+
readonly itemLabel: i0.InputSignal<string | null>;
|
|
97
|
+
readonly value: i0.InputSignal<string | null>;
|
|
98
|
+
protected indicatorPosition(): "start" | "end";
|
|
99
|
+
protected isSelected(): boolean;
|
|
100
|
+
ngAfterViewInit(): void;
|
|
101
|
+
protected handleClick(): void;
|
|
102
|
+
private resolveLabel;
|
|
103
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSelectItem, never>;
|
|
104
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSelectItem, "button[frSelectItem]", never, { "itemLabel": { "alias": "label"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": true; "isSignal": true; }; }, {}, ["customIndicator"], never, true, [{ directive: typeof i1.FrDropdownMenuItem; inputs: {}; outputs: {}; }]>;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
declare class FrSelectModule {
|
|
108
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSelectModule, never>;
|
|
109
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FrSelectModule, never, [typeof FrSelect, typeof FrSelectContent, typeof FrSelectError, typeof FrSelectGroup, typeof FrSelectIcon, typeof FrSelectItem, typeof FrSelectItemIndicator, typeof FrSelectLabel, typeof FrSelectPanel, typeof FrSelectSeparator, typeof FrSelectValue], [typeof FrSelect, typeof FrSelectContent, typeof FrSelectError, typeof FrSelectGroup, typeof FrSelectIcon, typeof FrSelectItem, typeof FrSelectItemIndicator, typeof FrSelectLabel, typeof FrSelectPanel, typeof FrSelectSeparator, typeof FrSelectValue]>;
|
|
110
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<FrSelectModule>;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
export { FR_SELECT_INDICATOR_POSITIONS, FR_SELECT_POSITIONS, FrSelect, FrSelectContent, FrSelectError, FrSelectGroup, FrSelectIcon, FrSelectItem, FrSelectItemIndicator, FrSelectLabel, FrSelectModule, FrSelectPanel, FrSelectSeparator, FrSelectValue };
|
|
114
|
+
export type { FrSelectIndicatorPosition, FrSelectPosition };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
|
|
3
|
+
declare const FR_SEPARATOR_ORIENTATIONS: readonly ["horizontal", "vertical"];
|
|
4
|
+
type FrSeparatorOrientation = (typeof FR_SEPARATOR_ORIENTATIONS)[number];
|
|
5
|
+
declare class FrSeparator {
|
|
6
|
+
readonly orientation: i0.InputSignalWithTransform<"horizontal" | "vertical", unknown>;
|
|
7
|
+
readonly decorative: i0.InputSignalWithTransform<boolean, unknown>;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSeparator, never>;
|
|
9
|
+
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>;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
declare class FrSeparatorModule {
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSeparatorModule, never>;
|
|
14
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FrSeparatorModule, never, [typeof FrSeparator], [typeof FrSeparator]>;
|
|
15
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<FrSeparatorModule>;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export { FR_SEPARATOR_ORIENTATIONS, FrSeparator, FrSeparatorModule };
|
|
19
|
+
export type { FrSeparatorOrientation };
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
import * as _angular_core from '@angular/core';
|
|
2
|
+
import { Type, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
3
|
+
import { Direction } from '@angular/cdk/bidi';
|
|
4
|
+
import { DialogConfig, DialogRef } from '@angular/cdk/dialog';
|
|
5
|
+
import { ComponentType } from '@angular/cdk/portal';
|
|
6
|
+
import { FrButtonAppearance } from '@frame-ui-ng/components/button';
|
|
7
|
+
|
|
8
|
+
declare const FR_SHEET_SIDES: readonly ["top", "right", "bottom", "left"];
|
|
9
|
+
type FrSheetSide = (typeof FR_SHEET_SIDES)[number];
|
|
10
|
+
declare class FrSheetClose {
|
|
11
|
+
private readonly dialogRef;
|
|
12
|
+
readonly result: _angular_core.InputSignal<unknown>;
|
|
13
|
+
close(): void;
|
|
14
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FrSheetClose, never>;
|
|
15
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<FrSheetClose, "[frSheetClose]", never, { "result": { "alias": "frSheetClose"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
16
|
+
}
|
|
17
|
+
declare class FrSheetPanel {
|
|
18
|
+
readonly scrollable: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
19
|
+
readonly showCloseButton: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
20
|
+
readonly side: _angular_core.InputSignalWithTransform<"top" | "right" | "bottom" | "left", unknown>;
|
|
21
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FrSheetPanel, never>;
|
|
22
|
+
static ɵcmp: _angular_core.ɵɵ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>;
|
|
23
|
+
}
|
|
24
|
+
declare class FrSheetHeader {
|
|
25
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FrSheetHeader, never>;
|
|
26
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<FrSheetHeader, "[frSheetHeader], frame-sheet-header", never, {}, {}, never, never, true, never>;
|
|
27
|
+
}
|
|
28
|
+
declare class FrSheetBody {
|
|
29
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FrSheetBody, never>;
|
|
30
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<FrSheetBody, "[frSheetBody], frame-sheet-body", never, {}, {}, never, never, true, never>;
|
|
31
|
+
}
|
|
32
|
+
declare class FrSheetFooter {
|
|
33
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FrSheetFooter, never>;
|
|
34
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<FrSheetFooter, "[frSheetFooter], frame-sheet-footer", never, {}, {}, never, never, true, never>;
|
|
35
|
+
}
|
|
36
|
+
declare class FrSheetTitle {
|
|
37
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FrSheetTitle, never>;
|
|
38
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<FrSheetTitle, "[frSheetTitle], frame-sheet-title", never, {}, {}, never, never, true, never>;
|
|
39
|
+
}
|
|
40
|
+
declare class FrSheetDescription {
|
|
41
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FrSheetDescription, never>;
|
|
42
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<FrSheetDescription, "[frSheetDescription], frame-sheet-description", never, {}, {}, never, never, true, never>;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
type FrSheetFooterAction = {
|
|
46
|
+
appearance?: FrButtonAppearance;
|
|
47
|
+
ariaLabel?: string;
|
|
48
|
+
close?: boolean;
|
|
49
|
+
disabled?: boolean;
|
|
50
|
+
label: string;
|
|
51
|
+
result?: unknown;
|
|
52
|
+
};
|
|
53
|
+
type FrSheetShellOptions = {
|
|
54
|
+
bodyComponent: Type<unknown>;
|
|
55
|
+
bodyData?: unknown;
|
|
56
|
+
bodyInputs?: Record<string, unknown>;
|
|
57
|
+
description?: string;
|
|
58
|
+
footerActions?: FrSheetFooterAction[];
|
|
59
|
+
scrollable?: boolean;
|
|
60
|
+
showCloseButton?: boolean;
|
|
61
|
+
side?: FrSheetSide;
|
|
62
|
+
title?: string;
|
|
63
|
+
};
|
|
64
|
+
declare class FrSheetShell {
|
|
65
|
+
private readonly dialogRef;
|
|
66
|
+
private readonly injector;
|
|
67
|
+
readonly options: FrSheetShellOptions;
|
|
68
|
+
readonly bodyInjector: _angular_core.DestroyableInjector;
|
|
69
|
+
handleAction(action: FrSheetFooterAction): void;
|
|
70
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FrSheetShell, never>;
|
|
71
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FrSheetShell, "frame-sheet-shell", never, {}, {}, never, never, true, never>;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
type FrSheetRef<Result = unknown, Component = unknown> = DialogRef<Result, Component>;
|
|
75
|
+
type FrSheetConfig<Data = unknown, Result = unknown, Component = unknown> = DialogConfig<Data, DialogRef<Result, Component>> & {
|
|
76
|
+
bodyData?: unknown;
|
|
77
|
+
bodyInputs?: Record<string, unknown>;
|
|
78
|
+
description?: string;
|
|
79
|
+
footerActions?: FrSheetFooterAction[];
|
|
80
|
+
scrollable?: boolean;
|
|
81
|
+
showCloseButton?: boolean;
|
|
82
|
+
side?: FrSheetSide;
|
|
83
|
+
title?: string;
|
|
84
|
+
};
|
|
85
|
+
declare class FrSheetService {
|
|
86
|
+
private readonly dialog;
|
|
87
|
+
open<Result = unknown, Data = unknown, Component = unknown>(content: ComponentType<Component>, config?: FrSheetConfig<Data, Result, Component>): FrSheetRef<Result, Component>;
|
|
88
|
+
open<Result = unknown, Data = unknown, Context = unknown>(content: TemplateRef<Context>, config?: FrSheetConfig<Data, Result, Context>): FrSheetRef<Result, Context>;
|
|
89
|
+
closeAll(): void;
|
|
90
|
+
private withDefaultClasses;
|
|
91
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FrSheetService, never>;
|
|
92
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<FrSheetService>;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
declare class FrSheetContent {
|
|
96
|
+
readonly templateRef: TemplateRef<any>;
|
|
97
|
+
readonly ariaLabel: _angular_core.InputSignal<string | null>;
|
|
98
|
+
readonly ariaLabelledBy: _angular_core.InputSignal<string | null>;
|
|
99
|
+
readonly ariaDescribedBy: _angular_core.InputSignal<string | null>;
|
|
100
|
+
readonly backdropClass: _angular_core.InputSignal<string | string[] | null>;
|
|
101
|
+
readonly closeOnDestroy: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
102
|
+
readonly closeOnNavigation: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
103
|
+
readonly direction: _angular_core.InputSignal<Direction | null>;
|
|
104
|
+
readonly disableClose: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
105
|
+
readonly height: _angular_core.InputSignal<string | null>;
|
|
106
|
+
readonly id: _angular_core.InputSignal<string | null>;
|
|
107
|
+
readonly maxHeight: _angular_core.InputSignal<string | null>;
|
|
108
|
+
readonly maxWidth: _angular_core.InputSignal<string | null>;
|
|
109
|
+
readonly minHeight: _angular_core.InputSignal<string | null>;
|
|
110
|
+
readonly minWidth: _angular_core.InputSignal<string | null>;
|
|
111
|
+
readonly panelClass: _angular_core.InputSignal<string | string[] | null>;
|
|
112
|
+
readonly role: _angular_core.InputSignal<"dialog" | "alertdialog">;
|
|
113
|
+
readonly width: _angular_core.InputSignal<string | null>;
|
|
114
|
+
buildConfig(viewContainerRef: ViewContainerRef): FrSheetConfig;
|
|
115
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FrSheetContent, never>;
|
|
116
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<FrSheetContent, "ng-template[frSheetContent]", ["frSheetContent"], { "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "ariaLabelledBy": { "alias": "aria-labelledby"; "required": false; "isSignal": true; }; "ariaDescribedBy": { "alias": "aria-describedby"; "required": false; "isSignal": true; }; "backdropClass": { "alias": "backdropClass"; "required": false; "isSignal": true; }; "closeOnDestroy": { "alias": "closeOnDestroy"; "required": false; "isSignal": true; }; "closeOnNavigation": { "alias": "closeOnNavigation"; "required": false; "isSignal": true; }; "direction": { "alias": "direction"; "required": false; "isSignal": true; }; "disableClose": { "alias": "disableClose"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "maxHeight": { "alias": "maxHeight"; "required": false; "isSignal": true; }; "maxWidth": { "alias": "maxWidth"; "required": false; "isSignal": true; }; "minHeight": { "alias": "minHeight"; "required": false; "isSignal": true; }; "minWidth": { "alias": "minWidth"; "required": false; "isSignal": true; }; "panelClass": { "alias": "panelClass"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
declare const FR_SHEET_DATA: _angular_core.InjectionToken<any>;
|
|
120
|
+
|
|
121
|
+
declare class FrSheetTrigger {
|
|
122
|
+
private static readonly CUSTOM_PROPERTY_PREFIX;
|
|
123
|
+
private readonly destroyRef;
|
|
124
|
+
private readonly elementRef;
|
|
125
|
+
private readonly sheet;
|
|
126
|
+
private readonly viewContainerRef;
|
|
127
|
+
private sheetRef;
|
|
128
|
+
readonly content: _angular_core.InputSignal<FrSheetContent | TemplateRef<unknown> | null>;
|
|
129
|
+
readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
130
|
+
readonly opened: _angular_core.OutputEmitterRef<FrSheetRef>;
|
|
131
|
+
readonly closed: _angular_core.OutputEmitterRef<unknown>;
|
|
132
|
+
readonly isOpen: _angular_core.WritableSignal<boolean>;
|
|
133
|
+
open(): void;
|
|
134
|
+
private syncCustomPropertiesToOverlay;
|
|
135
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FrSheetTrigger, never>;
|
|
136
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<FrSheetTrigger, "[frSheetTrigger]", never, { "content": { "alias": "frSheetTrigger"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "opened": "opened"; "closed": "closed"; }, never, never, true, never>;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
declare class FrSheetModule {
|
|
140
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FrSheetModule, never>;
|
|
141
|
+
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<FrSheetModule, never, [typeof FrSheetBody, typeof FrSheetClose, typeof FrSheetContent, typeof FrSheetDescription, typeof FrSheetFooter, typeof FrSheetHeader, typeof FrSheetPanel, typeof FrSheetShell, typeof FrSheetTitle, typeof FrSheetTrigger], [typeof FrSheetBody, typeof FrSheetClose, typeof FrSheetContent, typeof FrSheetDescription, typeof FrSheetFooter, typeof FrSheetHeader, typeof FrSheetPanel, typeof FrSheetShell, typeof FrSheetTitle, typeof FrSheetTrigger]>;
|
|
142
|
+
static ɵinj: _angular_core.ɵɵInjectorDeclaration<FrSheetModule>;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
export { FR_SHEET_DATA, FR_SHEET_SIDES, FrSheetBody, FrSheetClose, FrSheetContent, FrSheetDescription, FrSheetFooter, FrSheetHeader, FrSheetModule, FrSheetPanel, FrSheetService, FrSheetShell, FrSheetTitle, FrSheetTrigger };
|
|
146
|
+
export type { FrSheetConfig, FrSheetFooterAction, FrSheetRef, FrSheetShellOptions, FrSheetSide };
|
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { InjectionToken, ElementRef } from '@angular/core';
|
|
3
|
+
|
|
4
|
+
declare const FR_SIDEBAR_SIDES: readonly ["left", "right"];
|
|
5
|
+
declare const FR_SIDEBAR_VARIANTS: readonly ["sidebar", "floating", "inset"];
|
|
6
|
+
declare const FR_SIDEBAR_COLLAPSIBLES: readonly ["offcanvas", "icon", "none"];
|
|
7
|
+
declare const FR_SIDEBAR_MENU_BUTTON_SIZES: readonly ["default", "sm", "lg"];
|
|
8
|
+
declare const FR_SIDEBAR_MENU_BUTTON_VARIANTS: readonly ["default", "outline"];
|
|
9
|
+
type FrSidebarSide = (typeof FR_SIDEBAR_SIDES)[number];
|
|
10
|
+
type FrSidebarVariant = (typeof FR_SIDEBAR_VARIANTS)[number];
|
|
11
|
+
type FrSidebarCollapsible = (typeof FR_SIDEBAR_COLLAPSIBLES)[number];
|
|
12
|
+
type FrSidebarState = 'expanded' | 'collapsed';
|
|
13
|
+
type FrSidebarMenuButtonSize = (typeof FR_SIDEBAR_MENU_BUTTON_SIZES)[number];
|
|
14
|
+
type FrSidebarMenuButtonVariant = (typeof FR_SIDEBAR_MENU_BUTTON_VARIANTS)[number];
|
|
15
|
+
declare const FR_SIDEBAR_PROVIDER: InjectionToken<FrSidebarProvider>;
|
|
16
|
+
declare class FrSidebarProvider {
|
|
17
|
+
private readonly document;
|
|
18
|
+
private readonly elementRef;
|
|
19
|
+
private readonly internalOpen;
|
|
20
|
+
private readonly internalOpenMobile;
|
|
21
|
+
protected readonly resizing: i0.WritableSignal<boolean>;
|
|
22
|
+
readonly defaultOpen: i0.InputSignalWithTransform<boolean, unknown>;
|
|
23
|
+
readonly openInput: i0.InputSignal<boolean | null>;
|
|
24
|
+
readonly openChange: i0.OutputEmitterRef<boolean>;
|
|
25
|
+
readonly openMobileChange: i0.OutputEmitterRef<boolean>;
|
|
26
|
+
readonly shortcut: i0.InputSignal<string>;
|
|
27
|
+
readonly keyboardShortcut: i0.InputSignalWithTransform<boolean, unknown>;
|
|
28
|
+
readonly isMobile: i0.WritableSignal<boolean>;
|
|
29
|
+
readonly open: i0.Signal<boolean>;
|
|
30
|
+
readonly openMobile: i0.Signal<boolean>;
|
|
31
|
+
readonly state: i0.Signal<FrSidebarState>;
|
|
32
|
+
constructor();
|
|
33
|
+
setOpen(open: boolean): void;
|
|
34
|
+
setOpenMobile(open: boolean): void;
|
|
35
|
+
setSidebarWidth(width: number): void;
|
|
36
|
+
setResizing(resizing: boolean): void;
|
|
37
|
+
toggleSidebar(): void;
|
|
38
|
+
handleKeydown(event: KeyboardEvent): void;
|
|
39
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSidebarProvider, never>;
|
|
40
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSidebarProvider, "[frSidebarProvider], frame-sidebar-provider", ["frSidebarProvider"], { "defaultOpen": { "alias": "defaultOpen"; "required": false; "isSignal": true; }; "openInput": { "alias": "open"; "required": false; "isSignal": true; }; "shortcut": { "alias": "shortcut"; "required": false; "isSignal": true; }; "keyboardShortcut": { "alias": "keyboardShortcut"; "required": false; "isSignal": true; }; }, { "openChange": "openChange"; "openMobileChange": "openMobileChange"; }, never, never, true, never>;
|
|
41
|
+
}
|
|
42
|
+
declare class FrSidebar {
|
|
43
|
+
readonly elementRef: ElementRef<HTMLElement>;
|
|
44
|
+
readonly provider: FrSidebarProvider | null;
|
|
45
|
+
readonly side: i0.InputSignalWithTransform<"left" | "right", unknown>;
|
|
46
|
+
readonly variant: i0.InputSignalWithTransform<"sidebar" | "floating" | "inset", unknown>;
|
|
47
|
+
readonly collapsible: i0.InputSignalWithTransform<"offcanvas" | "icon" | "none", unknown>;
|
|
48
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSidebar, never>;
|
|
49
|
+
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>;
|
|
50
|
+
}
|
|
51
|
+
declare class FrSidebarTrigger {
|
|
52
|
+
readonly provider: FrSidebarProvider | null;
|
|
53
|
+
readonly ariaLabel: i0.InputSignal<string>;
|
|
54
|
+
toggle(): void;
|
|
55
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSidebarTrigger, never>;
|
|
56
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSidebarTrigger, "[frSidebarTrigger]", never, { "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
57
|
+
}
|
|
58
|
+
declare class FrSidebarRail {
|
|
59
|
+
private readonly document;
|
|
60
|
+
private readonly sidebar;
|
|
61
|
+
private startX;
|
|
62
|
+
private startWidth;
|
|
63
|
+
private dragging;
|
|
64
|
+
private suppressClick;
|
|
65
|
+
private frameId;
|
|
66
|
+
private pendingWidth;
|
|
67
|
+
readonly provider: FrSidebarProvider | null;
|
|
68
|
+
toggle(): void;
|
|
69
|
+
startResize(event: PointerEvent): void;
|
|
70
|
+
private resize;
|
|
71
|
+
private flushResize;
|
|
72
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSidebarRail, never>;
|
|
73
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSidebarRail, "[frSidebarRail], frame-sidebar-rail", never, {}, {}, never, never, true, never>;
|
|
74
|
+
}
|
|
75
|
+
declare class FrSidebarInset {
|
|
76
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSidebarInset, never>;
|
|
77
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSidebarInset, "[frSidebarInset], frame-sidebar-inset", never, {}, {}, never, never, true, never>;
|
|
78
|
+
}
|
|
79
|
+
declare class FrSidebarHeader {
|
|
80
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSidebarHeader, never>;
|
|
81
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSidebarHeader, "[frSidebarHeader], frame-sidebar-header", never, {}, {}, never, never, true, never>;
|
|
82
|
+
}
|
|
83
|
+
declare class FrSidebarFooter {
|
|
84
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSidebarFooter, never>;
|
|
85
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSidebarFooter, "[frSidebarFooter], frame-sidebar-footer", never, {}, {}, never, never, true, never>;
|
|
86
|
+
}
|
|
87
|
+
declare class FrSidebarContent {
|
|
88
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSidebarContent, never>;
|
|
89
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSidebarContent, "[frSidebarContent], frame-sidebar-content", never, {}, {}, never, never, true, never>;
|
|
90
|
+
}
|
|
91
|
+
declare class FrSidebarGroup {
|
|
92
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSidebarGroup, never>;
|
|
93
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSidebarGroup, "[frSidebarGroup], frame-sidebar-group", never, {}, {}, never, never, true, never>;
|
|
94
|
+
}
|
|
95
|
+
declare class FrSidebarGroupLabel {
|
|
96
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSidebarGroupLabel, never>;
|
|
97
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSidebarGroupLabel, "[frSidebarGroupLabel], frame-sidebar-group-label", never, {}, {}, never, never, true, never>;
|
|
98
|
+
}
|
|
99
|
+
declare class FrSidebarGroupAction {
|
|
100
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSidebarGroupAction, never>;
|
|
101
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSidebarGroupAction, "[frSidebarGroupAction], frame-sidebar-group-action", never, {}, {}, never, never, true, never>;
|
|
102
|
+
}
|
|
103
|
+
declare class FrSidebarGroupContent {
|
|
104
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSidebarGroupContent, never>;
|
|
105
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSidebarGroupContent, "[frSidebarGroupContent], frame-sidebar-group-content", never, {}, {}, never, never, true, never>;
|
|
106
|
+
}
|
|
107
|
+
declare class FrSidebarMenu {
|
|
108
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSidebarMenu, never>;
|
|
109
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSidebarMenu, "[frSidebarMenu], frame-sidebar-menu", never, {}, {}, never, never, true, never>;
|
|
110
|
+
}
|
|
111
|
+
declare class FrSidebarMenuItem {
|
|
112
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSidebarMenuItem, never>;
|
|
113
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSidebarMenuItem, "[frSidebarMenuItem], frame-sidebar-menu-item", never, {}, {}, never, never, true, never>;
|
|
114
|
+
}
|
|
115
|
+
declare class FrSidebarMenuButton {
|
|
116
|
+
readonly active: i0.InputSignalWithTransform<boolean, unknown>;
|
|
117
|
+
readonly disabled: i0.InputSignalWithTransform<boolean, unknown>;
|
|
118
|
+
readonly size: i0.InputSignalWithTransform<"default" | "sm" | "lg", unknown>;
|
|
119
|
+
readonly variant: i0.InputSignalWithTransform<"default" | "outline", unknown>;
|
|
120
|
+
readonly tooltip: i0.InputSignal<string | null>;
|
|
121
|
+
handleClick(event: Event): void;
|
|
122
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSidebarMenuButton, never>;
|
|
123
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSidebarMenuButton, "[frSidebarMenuButton], a[frSidebarMenuButton], button[frSidebarMenuButton]", never, { "active": { "alias": "active"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
124
|
+
}
|
|
125
|
+
declare class FrSidebarMenuAction {
|
|
126
|
+
readonly showOnHover: i0.InputSignalWithTransform<boolean, unknown>;
|
|
127
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSidebarMenuAction, never>;
|
|
128
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSidebarMenuAction, "[frSidebarMenuAction], frame-sidebar-menu-action", never, { "showOnHover": { "alias": "showOnHover"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
129
|
+
}
|
|
130
|
+
declare class FrSidebarMenuBadge {
|
|
131
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSidebarMenuBadge, never>;
|
|
132
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSidebarMenuBadge, "[frSidebarMenuBadge], frame-sidebar-menu-badge", never, {}, {}, never, never, true, never>;
|
|
133
|
+
}
|
|
134
|
+
declare class FrSidebarMenuSub {
|
|
135
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSidebarMenuSub, never>;
|
|
136
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSidebarMenuSub, "[frSidebarMenuSub], frame-sidebar-menu-sub", never, {}, {}, never, never, true, never>;
|
|
137
|
+
}
|
|
138
|
+
declare class FrSidebarMenuSubItem {
|
|
139
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSidebarMenuSubItem, never>;
|
|
140
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSidebarMenuSubItem, "[frSidebarMenuSubItem], frame-sidebar-menu-sub-item", never, {}, {}, never, never, true, never>;
|
|
141
|
+
}
|
|
142
|
+
declare class FrSidebarMenuSubButton {
|
|
143
|
+
readonly active: i0.InputSignalWithTransform<boolean, unknown>;
|
|
144
|
+
readonly disabled: i0.InputSignalWithTransform<boolean, unknown>;
|
|
145
|
+
handleClick(event: Event): void;
|
|
146
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSidebarMenuSubButton, never>;
|
|
147
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSidebarMenuSubButton, "[frSidebarMenuSubButton], a[frSidebarMenuSubButton], button[frSidebarMenuSubButton]", never, { "active": { "alias": "active"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
148
|
+
}
|
|
149
|
+
declare class FrSidebarMenuSkeleton {
|
|
150
|
+
readonly showIcon: i0.InputSignalWithTransform<boolean, unknown>;
|
|
151
|
+
readonly width: i0.InputSignal<string>;
|
|
152
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSidebarMenuSkeleton, never>;
|
|
153
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSidebarMenuSkeleton, "[frSidebarMenuSkeleton], frame-sidebar-menu-skeleton", never, { "showIcon": { "alias": "showIcon"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
declare class FrSidebarModule {
|
|
157
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSidebarModule, never>;
|
|
158
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FrSidebarModule, never, [typeof FrSidebar, typeof FrSidebarContent, typeof FrSidebarFooter, typeof FrSidebarGroup, typeof FrSidebarGroupAction, typeof FrSidebarGroupContent, typeof FrSidebarGroupLabel, typeof FrSidebarHeader, typeof FrSidebarInset, typeof FrSidebarMenu, typeof FrSidebarMenuAction, typeof FrSidebarMenuBadge, typeof FrSidebarMenuButton, typeof FrSidebarMenuItem, typeof FrSidebarMenuSkeleton, typeof FrSidebarMenuSub, typeof FrSidebarMenuSubButton, typeof FrSidebarMenuSubItem, typeof FrSidebarProvider, typeof FrSidebarRail, typeof FrSidebarTrigger], [typeof FrSidebar, typeof FrSidebarContent, typeof FrSidebarFooter, typeof FrSidebarGroup, typeof FrSidebarGroupAction, typeof FrSidebarGroupContent, typeof FrSidebarGroupLabel, typeof FrSidebarHeader, typeof FrSidebarInset, typeof FrSidebarMenu, typeof FrSidebarMenuAction, typeof FrSidebarMenuBadge, typeof FrSidebarMenuButton, typeof FrSidebarMenuItem, typeof FrSidebarMenuSkeleton, typeof FrSidebarMenuSub, typeof FrSidebarMenuSubButton, typeof FrSidebarMenuSubItem, typeof FrSidebarProvider, typeof FrSidebarRail, typeof FrSidebarTrigger]>;
|
|
159
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<FrSidebarModule>;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
export { FR_SIDEBAR_COLLAPSIBLES, FR_SIDEBAR_MENU_BUTTON_SIZES, FR_SIDEBAR_MENU_BUTTON_VARIANTS, FR_SIDEBAR_PROVIDER, FR_SIDEBAR_SIDES, FR_SIDEBAR_VARIANTS, FrSidebar, FrSidebarContent, FrSidebarFooter, FrSidebarGroup, FrSidebarGroupAction, FrSidebarGroupContent, FrSidebarGroupLabel, FrSidebarHeader, FrSidebarInset, FrSidebarMenu, FrSidebarMenuAction, FrSidebarMenuBadge, FrSidebarMenuButton, FrSidebarMenuItem, FrSidebarMenuSkeleton, FrSidebarMenuSub, FrSidebarMenuSubButton, FrSidebarMenuSubItem, FrSidebarModule, FrSidebarProvider, FrSidebarRail, FrSidebarTrigger };
|
|
163
|
+
export type { FrSidebarCollapsible, FrSidebarMenuButtonSize, FrSidebarMenuButtonVariant, FrSidebarSide, FrSidebarState, FrSidebarVariant };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
|
|
3
|
+
declare class FrSkeleton {
|
|
4
|
+
readonly animated: i0.InputSignalWithTransform<boolean, unknown>;
|
|
5
|
+
readonly width: i0.InputSignal<string | null>;
|
|
6
|
+
readonly height: i0.InputSignal<string | null>;
|
|
7
|
+
readonly radius: i0.InputSignal<string | null>;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSkeleton, never>;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FrSkeleton, "[frSkeleton], frame-skeleton", ["frSkeleton"], { "animated": { "alias": "animated"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "radius": { "alias": "radius"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
declare class FrSkeletonModule {
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FrSkeletonModule, never>;
|
|
14
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FrSkeletonModule, never, [typeof FrSkeleton], [typeof FrSkeleton]>;
|
|
15
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<FrSkeletonModule>;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export { FrSkeleton, FrSkeletonModule };
|