@design-system-rte/angular 1.3.0 → 1.4.1-rc1
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/esm2022/lib/components/badge/badge.component.mjs +7 -3
- package/esm2022/lib/components/breadcrumbs/breadcrumb-item/breadcrumb-item.component.mjs +1 -1
- package/esm2022/lib/components/breadcrumbs/breadcrumbs.component.mjs +2 -2
- package/esm2022/lib/components/chip/chip.component.mjs +4 -3
- package/esm2022/lib/components/dropdown/dropdown-item/dropdown-item.component.mjs +158 -14
- package/esm2022/lib/components/dropdown/dropdown-menu/dropdown-menu.component.mjs +71 -6
- package/esm2022/lib/components/dropdown/dropdown.directive.mjs +54 -40
- package/esm2022/lib/components/dropdown/dropdown.types.mjs +2 -0
- package/esm2022/lib/components/dropdown/index.mjs +1 -3
- package/esm2022/lib/components/icon/icon-map.mjs +117 -112
- package/esm2022/lib/components/segmented-control/segmented-control.component.mjs +5 -3
- package/esm2022/lib/components/select/select-footer.directive.mjs +17 -0
- package/esm2022/lib/components/select/select-header.directive.mjs +17 -0
- package/esm2022/lib/components/select/select.component.mjs +177 -39
- package/esm2022/lib/components/side-nav/nav-item/nav-item.component.mjs +2 -2
- package/esm2022/lib/components/side-nav/nav-menu/nav-menu.component.mjs +2 -2
- package/esm2022/lib/components/split-button/split-button.component.mjs +2 -2
- package/esm2022/lib/components/stepper/stepper.component.mjs +3 -3
- package/esm2022/lib/components/tab/tab-item/tab-item.component.mjs +3 -3
- package/esm2022/lib/components/tab/tab.component.mjs +2 -2
- package/esm2022/lib/components/tag/tag.component.mjs +4 -3
- package/esm2022/public-api.mjs +9 -1
- package/fesm2022/design-system-rte-angular.mjs +654 -265
- package/fesm2022/design-system-rte-angular.mjs.map +1 -1
- package/lib/components/badge/badge.component.d.ts +3 -1
- package/lib/components/badge/badge.directive.d.ts +1 -1
- package/lib/components/chip/chip.component.d.ts +2 -1
- package/lib/components/dropdown/dropdown-item/dropdown-item.component.d.ts +28 -16
- package/lib/components/dropdown/dropdown-menu/dropdown-menu.component.d.ts +14 -3
- package/lib/components/dropdown/dropdown.directive.d.ts +18 -5
- package/lib/components/dropdown/dropdown.types.d.ts +30 -0
- package/lib/components/dropdown/index.d.ts +1 -0
- package/lib/components/icon/icon-map.d.ts +5 -0
- package/lib/components/icon-button/icon-button.component.d.ts +3 -3
- package/lib/components/icon-button-toggle/icon-button-toggle.component.d.ts +2 -2
- package/lib/components/popover/popover.component.d.ts +1 -1
- package/lib/components/segmented-control/segmented-control.component.d.ts +3 -1
- package/lib/components/select/select-footer.directive.d.ts +7 -0
- package/lib/components/select/select-header.directive.d.ts +7 -0
- package/lib/components/select/select.component.d.ts +35 -16
- package/lib/components/split-button/split-button.component.d.ts +2 -2
- package/lib/components/tab/tab.component.d.ts +1 -1
- package/lib/components/tag/tag.component.d.ts +4 -3
- package/lib/components/text-input/base-text-input/base-text-input.component.d.ts +2 -2
- package/lib/components/tooltip/tooltip.component.d.ts +1 -1
- package/package.json +2 -2
- package/public-api.d.ts +8 -0
|
@@ -7,6 +7,7 @@ export declare class BadgeComponent {
|
|
|
7
7
|
readonly count: import("@angular/core").InputSignal<number | undefined>;
|
|
8
8
|
readonly icon: import("@angular/core").InputSignal<string>;
|
|
9
9
|
readonly simpleBadge: import("@angular/core").InputSignal<boolean>;
|
|
10
|
+
readonly withPlusSign: import("@angular/core").InputSignal<boolean>;
|
|
10
11
|
readonly isValidIconName: import("@angular/core").Signal<boolean>;
|
|
11
12
|
readonly showIcon: import("@angular/core").Signal<boolean>;
|
|
12
13
|
readonly showText: import("@angular/core").Signal<boolean>;
|
|
@@ -14,6 +15,7 @@ export declare class BadgeComponent {
|
|
|
14
15
|
readonly countOverflow: import("@angular/core").Signal<boolean>;
|
|
15
16
|
readonly iconSize: import("@angular/core").Signal<number | undefined>;
|
|
16
17
|
readonly showBadge: import("@angular/core").Signal<boolean>;
|
|
18
|
+
readonly badgeText: import("@angular/core").Signal<string>;
|
|
17
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<BadgeComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "rte-badge", never, { "badgeType": { "alias": "badgeType"; "required": false; "isSignal": true; }; "badgeSize": { "alias": "badgeSize"; "required": false; "isSignal": true; }; "badgeContent": { "alias": "badgeContent"; "required": false; "isSignal": true; }; "count": { "alias": "count"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "simpleBadge": { "alias": "simpleBadge"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "rte-badge", never, { "badgeType": { "alias": "badgeType"; "required": false; "isSignal": true; }; "badgeSize": { "alias": "badgeSize"; "required": false; "isSignal": true; }; "badgeContent": { "alias": "badgeContent"; "required": false; "isSignal": true; }; "count": { "alias": "count"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "simpleBadge": { "alias": "simpleBadge"; "required": false; "isSignal": true; }; "withPlusSign": { "alias": "withPlusSign"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
19
21
|
}
|
|
@@ -6,7 +6,7 @@ export declare class BadgeDirective implements OnInit, OnChanges, OnDestroy {
|
|
|
6
6
|
readonly rteBadgeSize: import("@angular/core").InputSignal<BadgeSize>;
|
|
7
7
|
readonly rteBadgeContent: import("@angular/core").InputSignal<BadgeContent>;
|
|
8
8
|
readonly rteBadgeCount: import("@angular/core").InputSignal<number | undefined>;
|
|
9
|
-
readonly rteBadgeIcon: import("@angular/core").InputSignal<"add" | "apps" | "asterisk" | "bluetooth" | "check" | "close" | "compare" | "cut" | "download" | "exclamation" | "filter" | "forward" | "fullscreen" | "history" | "language" | "link" | "list" | "login" | "logout" | "menu" | "monitoring" | "ohm" | "paste" | "public" | "publish" | "radar" | "redo" | "reload" | "remove" | "reply" | "route" | "search" | "sort" | "timeline" | "tune" | "undo" | "upload" | "water" | "wifi" | "windmill" | "alt-route" | "arrow-alt-down" | "arrow-alt-down-left" | "arrow-alt-down-right" | "arrow-alt-left" | "arrow-alt-right" | "arrow-alt-up" | "arrow-alt-up-left" | "arrow-alt-up-right" | "arrow-angle-down-left" | "arrow-angle-down-right" | "arrow-angle-up-left" | "arrow-angle-up-right" | "arrow-chevron-down" | "arrow-chevron-left" | "arrow-chevron-right" | "arrow-chevron-up" | "arrow-double-down" | "arrow-double-left" | "arrow-double-right" | "arrow-double-up" | "arrow-down" | "arrow-down-left" | "arrow-down-right" | "arrow-drop-down" | "arrow-drop-up" | "arrow-left" | "arrow-right" | "arrow-up" | "arrow-up-left" | "arrow-up-right" | "attach-file" | "battery-alt-empty" | "battery-alt-full" | "battery-charging" | "battery-empty" | "battery-full" | "bluetooth-off" | "chart-bar" | "chart-bar-stacked" | "check-indeterminate" | "check-small" | "checkbox-empty" | "copy-all" | "crisis-alert" | "download-done" | "drag-handle" | "drag-indicator" | "explore-travel" | "external-link" | "filter-off" | "first-page" | "fullscreen-exit" | "hourglass-empty" | "info-i" | "last-page" | "link-off" | "location-disabled" | "menu-open" | "more-down" | "more-horiz" | "more-up" | "more-vert" | "open-in-full" | "play-pause" | "power-input" | "power-plug" | "power-settings" | "priority-high" | "question-mark" | "radio-button-empty" | "reply-all" | "side-navigation" | "support-agent" | "trending-down" | "trending-flat" | "trending-up" | "water-alt" | "wifi-off" | "zoom-in" | "zoom-out" | "add-circle" | "admin-panel-settings" | "analytics" | "archive" | "arrow-circle-chevron-down" | "arrow-circle-chevron-left" | "arrow-circle-chevron-right" | "arrow-circle-chevron-up" | "arrow-circle-down" | "arrow-circle-left" | "arrow-circle-right" | "arrow-circle-up" | "article" | "assignment-complete" | "assignment" | "battery-alert" | "battery-charging-full" | "bolt-alt-circle" | "bolt-alt" | "bolt-circle" | "bolt" | "bookmark" | "bookmarks" | "build" | "calendar-available" | "calendar-busy" | "calendar-month" | "calendar-today" | "call" | "cancel" | "category" | "chart-add" | "chart-area" | "chart-pie" | "chart-table" | "chat-alt" | "chat-alt-unread" | "chat" | "chat-unread" | "check-circle" | "checkbox" | "checkbox-indeterminate" | "clock" | "cloud-download" | "cloud" | "cloud-off" | "cloud-upload" | "comment-add" | "comment" | "copy" | "dangerous" | "dashboard" | "database" | "delete" | "desktop" | "devices" | "draft" | "eco" | "edit" | "electric-meter" | "error" | "explore" | "explore-off" | "fast-forward" | "fast-rewind" | "feedback" | "file-copy" | "file-download" | "file-upload" | "filter-alt" | "filter-alt-off" | "fire" | "fit-screen" | "flag" | "flash" | "flash-off" | "folder-add" | "folder" | "folder-move" | "folder-open" | "folder-shared" | "forum" | "group-add" | "group" | "groups" | "headphones" | "heart" | "help" | "home" | "hourglass" | "image-broken" | "image" | "image-gallery" | "inbox" | "info" | "keep" | "keep-off" | "label" | "laptop" | "left-panel-close" | "left-panel-open" | "light-off" | "lightbulb-alt" | "lightbulb-circle" | "lightbulb" | "list-alt" | "location-me" | "location-off" | "location-on" | "lock" | "lock-open" | "lock-open-right" | "mail" | "mail-unread" | "map" | "mic" | "mic-off" | "mode-dark" | "mode-light" | "notification" | "notification-important" | "notification-off" | "notification-unread" | "palette" | "pause-circle" | "pause" | "photo-camera" | "play-circle" | "play" | "power" | "power-off" | "power-plug-connect" | "power-settings-circle" | "power-solar" | "power-switch" | "power-wind" | "print" | "right-panel-close" | "right-panel-open" | "save" | "send" | "settings" | "share" | "skip-next" | "skip-previous" | "smartphone" | "star" | "sticky-note" | "stop-circle" | "stop" | "subtitles" | "text-snippet" | "trash-restore" | "unarchive" | "user-add" | "user-circle" | "user" | "user-settings" | "verified" | "video-camera" | "video-camera-off" | "video-gallery" | "view-agenda" | "view-column" | "view-grid" | "view-kanban" | "view-module" | "view-timeline" | "visibility-hide" | "visibility-show" | "volume-down" | "volume-mute" | "volume-off" | "volume-up" | "warning" | "waterdrop">;
|
|
9
|
+
readonly rteBadgeIcon: import("@angular/core").InputSignal<"add" | "apps" | "asterisk" | "bluetooth" | "check" | "close" | "compare" | "cut" | "download" | "exclamation" | "filter" | "forward" | "fullscreen" | "history" | "language" | "link" | "list" | "login" | "logout" | "menu" | "monitoring" | "ohm" | "paste" | "public" | "publish" | "radar" | "redo" | "reload" | "remove" | "reply" | "route" | "search" | "sort" | "timeline" | "tune" | "undo" | "upload" | "water" | "wifi" | "windmill" | "alt-route" | "arrow-alt-down" | "arrow-alt-down-left" | "arrow-alt-down-right" | "arrow-alt-left" | "arrow-alt-right" | "arrow-alt-up" | "arrow-alt-up-left" | "arrow-alt-up-right" | "arrow-angle-down-left" | "arrow-angle-down-right" | "arrow-angle-up-left" | "arrow-angle-up-right" | "arrow-chevron-down" | "arrow-chevron-left" | "arrow-chevron-right" | "arrow-chevron-up" | "arrow-double-down" | "arrow-double-left" | "arrow-double-right" | "arrow-double-up" | "arrow-down" | "arrow-down-left" | "arrow-down-right" | "arrow-drop-down" | "arrow-drop-up" | "arrow-left" | "arrow-right" | "arrow-up" | "arrow-up-left" | "arrow-up-right" | "attach-file" | "battery-alt-empty" | "battery-alt-full" | "battery-charging" | "battery-empty" | "battery-full" | "bluetooth-off" | "chart-bar" | "chart-bar-stacked" | "check-indeterminate" | "check-small" | "checkbox-empty" | "copy-all" | "crisis-alert" | "download-done" | "drag-handle" | "drag-indicator" | "explore-travel" | "external-link" | "filter-off" | "first-page" | "fullscreen-exit" | "hourglass-empty" | "info-i" | "last-page" | "link-off" | "location-disabled" | "menu-open" | "more-down" | "more-horiz" | "more-up" | "more-vert" | "open-in-full" | "play-pause" | "power-input" | "power-plug" | "power-settings" | "priority-high" | "question-mark" | "radio-button-empty" | "reply-all" | "side-navigation" | "support-agent" | "swap-horiz" | "swap-vert" | "trending-down" | "trending-flat" | "trending-up" | "water-alt" | "wifi-off" | "zoom-in" | "zoom-out" | "add-circle" | "admin-panel-settings" | "analytics" | "archive" | "arrow-circle-chevron-down" | "arrow-circle-chevron-left" | "arrow-circle-chevron-right" | "arrow-circle-chevron-up" | "arrow-circle-down" | "arrow-circle-left" | "arrow-circle-right" | "arrow-circle-up" | "article" | "assignment-complete" | "assignment" | "battery-alert" | "battery-charging-full" | "bolt-alt-circle" | "bolt-alt" | "bolt-circle" | "bolt" | "bookmark" | "bookmarks" | "build" | "calendar-available" | "calendar-busy" | "calendar-month" | "calendar-today" | "call" | "cancel" | "category" | "chart-add" | "chart-area" | "chart-pie" | "chart-table" | "chat-alt" | "chat-alt-unread" | "chat" | "chat-unread" | "check-circle" | "checkbox" | "checkbox-indeterminate" | "clock" | "cloud-download" | "cloud" | "cloud-off" | "cloud-upload" | "comment-add" | "comment" | "contact" | "copy" | "dangerous" | "dashboard" | "database" | "delete" | "desktop" | "devices" | "draft" | "eco" | "edit" | "electric-meter" | "error" | "explore" | "explore-off" | "export-xls" | "fast-forward" | "fast-rewind" | "feedback" | "file-copy" | "file-download" | "file-upload" | "filter-alt" | "filter-alt-off" | "fire" | "fit-screen" | "flag" | "flash" | "flash-off" | "folder-add" | "folder" | "folder-move" | "folder-open" | "folder-shared" | "forum" | "group-add" | "group" | "groups" | "handshake" | "headphones" | "heart" | "help" | "home" | "hourglass" | "image-broken" | "image" | "image-gallery" | "inbox" | "info" | "keep" | "keep-off" | "label" | "laptop" | "left-panel-close" | "left-panel-open" | "light-off" | "lightbulb-alt" | "lightbulb-circle" | "lightbulb" | "list-alt" | "location-me" | "location-off" | "location-on" | "lock" | "lock-open" | "lock-open-right" | "mail" | "mail-unread" | "map" | "mic" | "mic-off" | "mode-dark" | "mode-light" | "notification" | "notification-important" | "notification-off" | "notification-unread" | "palette" | "pause-circle" | "pause" | "photo-camera" | "play-circle" | "play" | "power" | "power-off" | "power-plug-connect" | "power-settings-circle" | "power-solar" | "power-switch" | "power-wind" | "print" | "right-panel-close" | "right-panel-open" | "save" | "send" | "settings" | "share" | "skip-next" | "skip-previous" | "smartphone" | "star" | "sticky-note" | "stop-circle" | "stop" | "subtitles" | "text-snippet" | "trash-restore" | "unarchive" | "user-add" | "user-circle" | "user" | "user-settings" | "verified" | "video-camera" | "video-camera-off" | "video-gallery" | "view-agenda" | "view-column" | "view-grid" | "view-kanban" | "view-module" | "view-timeline" | "visibility-hide" | "visibility-show" | "volume-down" | "volume-mute" | "volume-off" | "volume-up" | "warning" | "waterdrop">;
|
|
10
10
|
private badgeComponentRef;
|
|
11
11
|
private hostElement;
|
|
12
12
|
private readonly viewContainer;
|
|
@@ -4,12 +4,13 @@ export declare class ChipComponent {
|
|
|
4
4
|
readonly label: import("@angular/core").InputSignal<string>;
|
|
5
5
|
readonly selected: import("@angular/core").InputSignal<boolean>;
|
|
6
6
|
readonly disabled: import("@angular/core").InputSignal<boolean>;
|
|
7
|
-
readonly type: import("@angular/core").InputSignal<"input" | "
|
|
7
|
+
readonly type: import("@angular/core").InputSignal<"input" | "single" | "multi">;
|
|
8
8
|
readonly compactSpacing: import("@angular/core").InputSignal<boolean>;
|
|
9
9
|
readonly click: import("@angular/core").OutputEmitterRef<Event>;
|
|
10
10
|
readonly close: import("@angular/core").OutputEmitterRef<Event>;
|
|
11
11
|
readonly isCheckable: import("@angular/core").Signal<boolean>;
|
|
12
12
|
readonly role: import("@angular/core").Signal<string | null>;
|
|
13
|
+
readonly isFocusable: import("@angular/core").Signal<boolean>;
|
|
13
14
|
onClick(event: Event): void;
|
|
14
15
|
onKeyUp(event: KeyboardEvent): void;
|
|
15
16
|
onBlur(event: FocusEvent): void;
|
|
@@ -1,28 +1,40 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { ElementRef, OnDestroy } from "@angular/core";
|
|
2
|
+
import { DropdownItemConfig, SubmenuRequestEvent } from "../dropdown.types";
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
leftIcon?: string;
|
|
9
|
-
trailingText?: string;
|
|
10
|
-
disabled?: boolean;
|
|
11
|
-
hasSeparator?: boolean;
|
|
12
|
-
hasIndent?: boolean;
|
|
13
|
-
link?: string;
|
|
14
|
-
click?: EventEmitter<Event>;
|
|
15
|
-
}
|
|
16
|
-
export declare class DropdownItemComponent {
|
|
4
|
+
export type { DropdownItemConfig };
|
|
5
|
+
export declare class DropdownItemComponent implements OnDestroy {
|
|
6
|
+
readonly elementRef: ElementRef<any>;
|
|
7
|
+
private readonly cdr;
|
|
17
8
|
readonly item: import("@angular/core").InputSignal<DropdownItemConfig | undefined>;
|
|
18
9
|
readonly menuId: import("@angular/core").InputSignal<string | undefined>;
|
|
19
10
|
readonly itemEvent: import("@angular/core").OutputEmitterRef<{
|
|
20
11
|
event: Event;
|
|
21
12
|
id: string;
|
|
13
|
+
item?: DropdownItemConfig | undefined;
|
|
22
14
|
}>;
|
|
15
|
+
readonly submenuRequest: import("@angular/core").OutputEmitterRef<SubmenuRequestEvent>;
|
|
16
|
+
readonly subMenuOpen: import("@angular/core").WritableSignal<boolean>;
|
|
17
|
+
private subMenuRef;
|
|
18
|
+
private closeSubMenuTimeout;
|
|
19
|
+
private subMenuSubscriptions;
|
|
20
|
+
private dropdownManagerUnsubscribe;
|
|
21
|
+
readonly hasChildren: import("@angular/core").Signal<boolean>;
|
|
22
|
+
readonly childDropdownId: import("@angular/core").Signal<string>;
|
|
23
23
|
readonly shouldDisplayBadge: import("@angular/core").Signal<boolean>;
|
|
24
24
|
handleClick(event: Event): void;
|
|
25
25
|
handleKeyDown(event: KeyboardEvent): void;
|
|
26
|
+
handleMouseEnter(): void;
|
|
27
|
+
handleFocus(): void;
|
|
28
|
+
handleMouseLeave(): void;
|
|
29
|
+
handleSubMenuMouseEnter(): void;
|
|
30
|
+
openSubMenuForKeyboard(): void;
|
|
31
|
+
private openSubMenu;
|
|
32
|
+
private wireSubmenu;
|
|
33
|
+
private scheduleCloseSubMenu;
|
|
34
|
+
private cancelCloseSubMenu;
|
|
35
|
+
private readonly boundHandleSubMenuMouseEnter;
|
|
36
|
+
private destroySubMenu;
|
|
37
|
+
ngOnDestroy(): void;
|
|
26
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownItemComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownItemComponent, "rte-dropdown-item", never, { "item": { "alias": "item"; "required": false; "isSignal": true; }; "menuId": { "alias": "menuId"; "required": false; "isSignal": true; }; }, { "itemEvent": "itemEvent"; }, never, never, true, never>;
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownItemComponent, "rte-dropdown-item", never, { "item": { "alias": "item"; "required": false; "isSignal": true; }; "menuId": { "alias": "menuId"; "required": false; "isSignal": true; }; }, { "itemEvent": "itemEvent"; "submenuRequest": "submenuRequest"; }, never, never, true, never>;
|
|
28
40
|
}
|
|
@@ -1,16 +1,22 @@
|
|
|
1
|
-
import { ElementRef, TemplateRef } from "@angular/core";
|
|
2
|
-
import {
|
|
1
|
+
import { ElementRef, OnDestroy, TemplateRef } from "@angular/core";
|
|
2
|
+
import { DropdownItemComponent } from "../dropdown-item/dropdown-item.component";
|
|
3
|
+
import { DropdownItemConfig, SubmenuRequestEvent } from "../dropdown.types";
|
|
3
4
|
import { DropdownMenuFooterDirective } from "./dropdown-menu-footer.directive";
|
|
4
5
|
import { DropdownMenuHeaderDirective } from "./dropdown-menu-header.directive";
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class DropdownMenuComponent {
|
|
7
|
+
export declare class DropdownMenuComponent implements OnDestroy {
|
|
8
|
+
private static readonly SUB_MENU_OFFSET;
|
|
7
9
|
private readonly elementRef;
|
|
10
|
+
private pendingPositioningFrameId;
|
|
8
11
|
private readonly dropdownService;
|
|
12
|
+
private readonly overlayService;
|
|
13
|
+
private readonly viewContainerRef;
|
|
9
14
|
readonly items: import("@angular/core").InputSignal<DropdownItemConfig[]>;
|
|
10
15
|
readonly menuId: import("@angular/core").InputSignal<string | undefined>;
|
|
11
16
|
readonly itemEvent: import("@angular/core").OutputEmitterRef<{
|
|
12
17
|
event: Event;
|
|
13
18
|
id: string;
|
|
19
|
+
item?: DropdownItemConfig | undefined;
|
|
14
20
|
}>;
|
|
15
21
|
readonly widthStyle: import("@angular/core").Signal<string | undefined>;
|
|
16
22
|
readonly isOpen: import("@angular/core").InputSignal<boolean>;
|
|
@@ -29,13 +35,18 @@ export declare class DropdownMenuComponent {
|
|
|
29
35
|
readonly footerTemplate: import("@angular/core").InputSignal<TemplateRef<HTMLElement> | undefined>;
|
|
30
36
|
readonly headerContentRef: import("@angular/core").Signal<ElementRef<HTMLElement> | undefined>;
|
|
31
37
|
readonly footerContentRef: import("@angular/core").Signal<ElementRef<HTMLElement> | undefined>;
|
|
38
|
+
readonly itemComponents: import("@angular/core").Signal<readonly DropdownItemComponent[]>;
|
|
32
39
|
readonly hasHeaderContent: import("@angular/core").Signal<boolean>;
|
|
33
40
|
readonly hasFooterContent: import("@angular/core").Signal<boolean>;
|
|
34
41
|
getChildMenuId(itemIndex: number): string;
|
|
35
42
|
handleItemEvent(itemEvent: {
|
|
36
43
|
event: Event;
|
|
37
44
|
id: string;
|
|
45
|
+
item?: DropdownItemConfig;
|
|
38
46
|
}): void;
|
|
47
|
+
handleSubmenuRequest(event: SubmenuRequestEvent): void;
|
|
48
|
+
ngOnDestroy(): void;
|
|
49
|
+
private cancelPendingPositioningFrame;
|
|
39
50
|
onKeyDown(event: KeyboardEvent): void;
|
|
40
51
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownMenuComponent, never>;
|
|
41
52
|
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownMenuComponent, "rte-dropdown-menu", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "menuId": { "alias": "menuId"; "required": false; "isSignal": true; }; "isOpen": { "alias": "isOpen"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "headerTemplate": { "alias": "headerTemplate"; "required": false; "isSignal": true; }; "footerTemplate": { "alias": "footerTemplate"; "required": false; "isSignal": true; }; }, { "itemEvent": "itemEvent"; "closingMenu": "closingMenu"; }, ["headerDirective", "footerDirective"], ["[dropdown-menu-header]", "[dropdown-menu-footer]"], true, never>;
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
import { AfterContentInit, ChangeDetectorRef, ComponentRef, DestroyRef, ElementRef,
|
|
1
|
+
import { AfterContentInit, ChangeDetectorRef, ComponentRef, DestroyRef, ElementRef, Renderer2, ViewContainerRef } from "@angular/core";
|
|
2
2
|
import { Alignment, Position } from "@design-system-rte/core";
|
|
3
3
|
import { DropdownService } from "../../services/dropdown.service";
|
|
4
4
|
import { OverlayService } from "../../services/overlay.service";
|
|
5
5
|
import { DropdownMenuComponent } from "./dropdown-menu/dropdown-menu.component";
|
|
6
6
|
import { DropdownTriggerDirective } from "./dropdown-trigger/dropdown-trigger.directive";
|
|
7
|
+
import { DropdownItemConfig } from "./dropdown.types";
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class DropdownDirective implements AfterContentInit
|
|
9
|
+
export declare class DropdownDirective implements AfterContentInit {
|
|
9
10
|
private static idCounter;
|
|
10
11
|
readonly trigger: import("@angular/core").Signal<DropdownTriggerDirective | undefined>;
|
|
11
12
|
readonly menu: import("@angular/core").Signal<DropdownMenuComponent | undefined>;
|
|
@@ -17,9 +18,11 @@ export declare class DropdownDirective implements AfterContentInit, OnDestroy {
|
|
|
17
18
|
readonly rteDropdownAutofocus: import("@angular/core").InputSignal<boolean>;
|
|
18
19
|
readonly rteDropdownAutoOpen: import("@angular/core").InputSignal<boolean>;
|
|
19
20
|
readonly rteDropdownWidth: import("@angular/core").InputSignal<number | null>;
|
|
21
|
+
readonly rteCloseOnItemClick: import("@angular/core").InputSignal<boolean>;
|
|
20
22
|
readonly menuEvent: import("@angular/core").OutputEmitterRef<{
|
|
21
23
|
event: Event;
|
|
22
24
|
id: string;
|
|
25
|
+
item?: DropdownItemConfig | undefined;
|
|
23
26
|
}>;
|
|
24
27
|
readonly dropdownId: string;
|
|
25
28
|
readonly overlayService: OverlayService;
|
|
@@ -32,31 +35,41 @@ export declare class DropdownDirective implements AfterContentInit, OnDestroy {
|
|
|
32
35
|
readonly cdr: ChangeDetectorRef;
|
|
33
36
|
readonly clickedOutside: import("@angular/core").OutputEmitterRef<void>;
|
|
34
37
|
readonly closedDropdown: import("@angular/core").OutputEmitterRef<void>;
|
|
38
|
+
readonly menuChangeEvent: import("@angular/core").OutputEmitterRef<{
|
|
39
|
+
event: Event;
|
|
40
|
+
id: string;
|
|
41
|
+
}>;
|
|
35
42
|
readonly isActive: import("@angular/core").WritableSignal<boolean>;
|
|
36
43
|
readonly menuInputs: import("@angular/core").Signal<{
|
|
37
|
-
items:
|
|
44
|
+
items: DropdownItemConfig[];
|
|
38
45
|
headerTemplate: import("@angular/core").TemplateRef<any> | null | undefined;
|
|
39
46
|
footerTemplate: import("@angular/core").TemplateRef<any> | null | undefined;
|
|
40
47
|
width: string | null;
|
|
41
48
|
} | null>;
|
|
42
49
|
constructor();
|
|
43
50
|
dropdownMenuRef: ComponentRef<DropdownMenuComponent> | null;
|
|
51
|
+
private itemEventSubscription;
|
|
44
52
|
onTrigger(): void;
|
|
45
53
|
onTriggerKeyEvent(event: KeyboardEvent): void;
|
|
46
54
|
onMenuEvent(event: {
|
|
47
55
|
event: Event;
|
|
48
56
|
id: string;
|
|
57
|
+
item?: DropdownItemConfig;
|
|
58
|
+
}): void;
|
|
59
|
+
onMenuChangeEvent(event: {
|
|
60
|
+
event: Event;
|
|
61
|
+
id: string;
|
|
49
62
|
}): void;
|
|
50
63
|
ngAfterContentInit(): void;
|
|
51
64
|
showDropdownMenu(): void;
|
|
52
65
|
private assignInputs;
|
|
53
66
|
private assignWidth;
|
|
54
67
|
private positionDropdownMenu;
|
|
55
|
-
|
|
68
|
+
private unsubscribeItemEvent;
|
|
56
69
|
private readonly handleClickOutside;
|
|
57
70
|
private addClickOutsideListener;
|
|
58
71
|
private removeClickOutsideListener;
|
|
59
72
|
private closeDropdown;
|
|
60
73
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownDirective, never>;
|
|
61
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownDirective, "[rteDropdown]", never, { "rteDropdownId": { "alias": "rteDropdownId"; "required": false; "isSignal": true; }; "rteDropdownPosition": { "alias": "rteDropdownPosition"; "required": false; "isSignal": true; }; "rteDropdownAlignment": { "alias": "rteDropdownAlignment"; "required": false; "isSignal": true; }; "rteDropdownIsOpen": { "alias": "rteDropdownIsOpen"; "required": false; "isSignal": true; }; "rteDropdownOffset": { "alias": "rteDropdownOffset"; "required": false; "isSignal": true; }; "rteDropdownAutofocus": { "alias": "rteDropdownAutofocus"; "required": false; "isSignal": true; }; "rteDropdownAutoOpen": { "alias": "rteDropdownAutoOpen"; "required": false; "isSignal": true; }; "rteDropdownWidth": { "alias": "rteDropdownWidth"; "required": false; "isSignal": true; }; }, { "menuEvent": "menuEvent"; "clickedOutside": "clickedOutside"; "closedDropdown": "closedDropdown"; }, ["trigger", "menu"], never, true, never>;
|
|
74
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownDirective, "[rteDropdown]", never, { "rteDropdownId": { "alias": "rteDropdownId"; "required": false; "isSignal": true; }; "rteDropdownPosition": { "alias": "rteDropdownPosition"; "required": false; "isSignal": true; }; "rteDropdownAlignment": { "alias": "rteDropdownAlignment"; "required": false; "isSignal": true; }; "rteDropdownIsOpen": { "alias": "rteDropdownIsOpen"; "required": false; "isSignal": true; }; "rteDropdownOffset": { "alias": "rteDropdownOffset"; "required": false; "isSignal": true; }; "rteDropdownAutofocus": { "alias": "rteDropdownAutofocus"; "required": false; "isSignal": true; }; "rteDropdownAutoOpen": { "alias": "rteDropdownAutoOpen"; "required": false; "isSignal": true; }; "rteDropdownWidth": { "alias": "rteDropdownWidth"; "required": false; "isSignal": true; }; "rteCloseOnItemClick": { "alias": "rteCloseOnItemClick"; "required": false; "isSignal": true; }; }, { "menuEvent": "menuEvent"; "clickedOutside": "clickedOutside"; "closedDropdown": "closedDropdown"; "menuChangeEvent": "menuChangeEvent"; }, ["trigger", "menu"], never, true, never>;
|
|
62
75
|
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { ComponentRef, EventEmitter } from "@angular/core";
|
|
2
|
+
import { DropdownItemProps } from "@design-system-rte/core/components/dropdown/dropdown.interface";
|
|
3
|
+
export interface SubmenuCreatedResult {
|
|
4
|
+
componentRef: ComponentRef<unknown>;
|
|
5
|
+
hostElement: HTMLElement;
|
|
6
|
+
}
|
|
7
|
+
export interface SubmenuRequestEvent {
|
|
8
|
+
children: DropdownItemConfig[];
|
|
9
|
+
childId: string;
|
|
10
|
+
triggerElement: HTMLElement;
|
|
11
|
+
onCreated: (result: SubmenuCreatedResult) => void;
|
|
12
|
+
}
|
|
13
|
+
export interface DropdownItemConfig extends Omit<DropdownItemProps, "onClick"> {
|
|
14
|
+
id?: string;
|
|
15
|
+
selected?: boolean;
|
|
16
|
+
label: string;
|
|
17
|
+
leftIcon?: string;
|
|
18
|
+
trailingText?: string;
|
|
19
|
+
disabled?: boolean;
|
|
20
|
+
hasSeparator?: boolean;
|
|
21
|
+
hasIndent?: boolean;
|
|
22
|
+
link?: string;
|
|
23
|
+
click?: EventEmitter<Event>;
|
|
24
|
+
children?: DropdownItemConfig[];
|
|
25
|
+
}
|
|
26
|
+
export type DropdownItemEvent = {
|
|
27
|
+
event: Event;
|
|
28
|
+
id: string;
|
|
29
|
+
item?: DropdownItemConfig;
|
|
30
|
+
};
|
|
@@ -3,3 +3,4 @@ export { DropdownDirective } from "./dropdown.directive";
|
|
|
3
3
|
export { DropdownTriggerDirective } from "./dropdown-trigger/dropdown-trigger.directive";
|
|
4
4
|
export { DropdownMenuComponent } from "./dropdown-menu/dropdown-menu.component";
|
|
5
5
|
export { DropdownItemComponent } from "./dropdown-item/dropdown-item.component";
|
|
6
|
+
export type { DropdownItemConfig } from "./dropdown.types";
|
|
@@ -106,6 +106,8 @@ export declare const RegularIcons: {
|
|
|
106
106
|
"side-navigation": string;
|
|
107
107
|
sort: string;
|
|
108
108
|
"support-agent": string;
|
|
109
|
+
"swap-horiz": string;
|
|
110
|
+
"swap-vert": string;
|
|
109
111
|
timeline: string;
|
|
110
112
|
"trending-down": string;
|
|
111
113
|
"trending-flat": string;
|
|
@@ -171,6 +173,7 @@ export declare const TogglableIcons: {
|
|
|
171
173
|
"cloud-upload": string[];
|
|
172
174
|
"comment-add": string[];
|
|
173
175
|
comment: string[];
|
|
176
|
+
contact: string[];
|
|
174
177
|
copy: string[];
|
|
175
178
|
dangerous: string[];
|
|
176
179
|
dashboard: string[];
|
|
@@ -185,6 +188,7 @@ export declare const TogglableIcons: {
|
|
|
185
188
|
error: string[];
|
|
186
189
|
explore: string[];
|
|
187
190
|
"explore-off": string[];
|
|
191
|
+
"export-xls": string[];
|
|
188
192
|
"fast-forward": string[];
|
|
189
193
|
"fast-rewind": string[];
|
|
190
194
|
feedback: string[];
|
|
@@ -207,6 +211,7 @@ export declare const TogglableIcons: {
|
|
|
207
211
|
"group-add": string[];
|
|
208
212
|
group: string[];
|
|
209
213
|
groups: string[];
|
|
214
|
+
handshake: string[];
|
|
210
215
|
headphones: string[];
|
|
211
216
|
heart: string[];
|
|
212
217
|
help: string[];
|
|
@@ -4,7 +4,7 @@ import { ButtonSize, ButtonVariant } from "@design-system-rte/core/components/bu
|
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class IconButtonComponent {
|
|
6
6
|
readonly disabled: import("@angular/core").InputSignal<boolean>;
|
|
7
|
-
readonly name: import("@angular/core").InputSignal<"add" | "apps" | "asterisk" | "bluetooth" | "check" | "close" | "compare" | "cut" | "download" | "exclamation" | "filter" | "forward" | "fullscreen" | "history" | "language" | "link" | "list" | "login" | "logout" | "menu" | "monitoring" | "ohm" | "paste" | "public" | "publish" | "radar" | "redo" | "reload" | "remove" | "reply" | "route" | "search" | "sort" | "timeline" | "tune" | "undo" | "upload" | "water" | "wifi" | "windmill" | "alt-route" | "arrow-alt-down" | "arrow-alt-down-left" | "arrow-alt-down-right" | "arrow-alt-left" | "arrow-alt-right" | "arrow-alt-up" | "arrow-alt-up-left" | "arrow-alt-up-right" | "arrow-angle-down-left" | "arrow-angle-down-right" | "arrow-angle-up-left" | "arrow-angle-up-right" | "arrow-chevron-down" | "arrow-chevron-left" | "arrow-chevron-right" | "arrow-chevron-up" | "arrow-double-down" | "arrow-double-left" | "arrow-double-right" | "arrow-double-up" | "arrow-down" | "arrow-down-left" | "arrow-down-right" | "arrow-drop-down" | "arrow-drop-up" | "arrow-left" | "arrow-right" | "arrow-up" | "arrow-up-left" | "arrow-up-right" | "attach-file" | "battery-alt-empty" | "battery-alt-full" | "battery-charging" | "battery-empty" | "battery-full" | "bluetooth-off" | "chart-bar" | "chart-bar-stacked" | "check-indeterminate" | "check-small" | "checkbox-empty" | "copy-all" | "crisis-alert" | "download-done" | "drag-handle" | "drag-indicator" | "explore-travel" | "external-link" | "filter-off" | "first-page" | "fullscreen-exit" | "hourglass-empty" | "info-i" | "last-page" | "link-off" | "location-disabled" | "menu-open" | "more-down" | "more-horiz" | "more-up" | "more-vert" | "open-in-full" | "play-pause" | "power-input" | "power-plug" | "power-settings" | "priority-high" | "question-mark" | "radio-button-empty" | "reply-all" | "side-navigation" | "support-agent" | "trending-down" | "trending-flat" | "trending-up" | "water-alt" | "wifi-off" | "zoom-in" | "zoom-out" | "add-circle" | "admin-panel-settings" | "analytics" | "archive" | "arrow-circle-chevron-down" | "arrow-circle-chevron-left" | "arrow-circle-chevron-right" | "arrow-circle-chevron-up" | "arrow-circle-down" | "arrow-circle-left" | "arrow-circle-right" | "arrow-circle-up" | "article" | "assignment-complete" | "assignment" | "battery-alert" | "battery-charging-full" | "bolt-alt-circle" | "bolt-alt" | "bolt-circle" | "bolt" | "bookmark" | "bookmarks" | "build" | "calendar-available" | "calendar-busy" | "calendar-month" | "calendar-today" | "call" | "cancel" | "category" | "chart-add" | "chart-area" | "chart-pie" | "chart-table" | "chat-alt" | "chat-alt-unread" | "chat" | "chat-unread" | "check-circle" | "checkbox" | "checkbox-indeterminate" | "clock" | "cloud-download" | "cloud" | "cloud-off" | "cloud-upload" | "comment-add" | "comment" | "copy" | "dangerous" | "dashboard" | "database" | "delete" | "desktop" | "devices" | "draft" | "eco" | "edit" | "electric-meter" | "error" | "explore" | "explore-off" | "fast-forward" | "fast-rewind" | "feedback" | "file-copy" | "file-download" | "file-upload" | "filter-alt" | "filter-alt-off" | "fire" | "fit-screen" | "flag" | "flash" | "flash-off" | "folder-add" | "folder" | "folder-move" | "folder-open" | "folder-shared" | "forum" | "group-add" | "group" | "groups" | "headphones" | "heart" | "help" | "home" | "hourglass" | "image-broken" | "image" | "image-gallery" | "inbox" | "info" | "keep" | "keep-off" | "label" | "laptop" | "left-panel-close" | "left-panel-open" | "light-off" | "lightbulb-alt" | "lightbulb-circle" | "lightbulb" | "list-alt" | "location-me" | "location-off" | "location-on" | "lock" | "lock-open" | "lock-open-right" | "mail" | "mail-unread" | "map" | "mic" | "mic-off" | "mode-dark" | "mode-light" | "notification" | "notification-important" | "notification-off" | "notification-unread" | "palette" | "pause-circle" | "pause" | "photo-camera" | "play-circle" | "play" | "power" | "power-off" | "power-plug-connect" | "power-settings-circle" | "power-solar" | "power-switch" | "power-wind" | "print" | "right-panel-close" | "right-panel-open" | "save" | "send" | "settings" | "share" | "skip-next" | "skip-previous" | "smartphone" | "star" | "sticky-note" | "stop-circle" | "stop" | "subtitles" | "text-snippet" | "trash-restore" | "unarchive" | "user-add" | "user-circle" | "user" | "user-settings" | "verified" | "video-camera" | "video-camera-off" | "video-gallery" | "view-agenda" | "view-column" | "view-grid" | "view-kanban" | "view-module" | "view-timeline" | "visibility-hide" | "visibility-show" | "volume-down" | "volume-mute" | "volume-off" | "volume-up" | "warning" | "waterdrop">;
|
|
7
|
+
readonly name: import("@angular/core").InputSignal<"add" | "apps" | "asterisk" | "bluetooth" | "check" | "close" | "compare" | "cut" | "download" | "exclamation" | "filter" | "forward" | "fullscreen" | "history" | "language" | "link" | "list" | "login" | "logout" | "menu" | "monitoring" | "ohm" | "paste" | "public" | "publish" | "radar" | "redo" | "reload" | "remove" | "reply" | "route" | "search" | "sort" | "timeline" | "tune" | "undo" | "upload" | "water" | "wifi" | "windmill" | "alt-route" | "arrow-alt-down" | "arrow-alt-down-left" | "arrow-alt-down-right" | "arrow-alt-left" | "arrow-alt-right" | "arrow-alt-up" | "arrow-alt-up-left" | "arrow-alt-up-right" | "arrow-angle-down-left" | "arrow-angle-down-right" | "arrow-angle-up-left" | "arrow-angle-up-right" | "arrow-chevron-down" | "arrow-chevron-left" | "arrow-chevron-right" | "arrow-chevron-up" | "arrow-double-down" | "arrow-double-left" | "arrow-double-right" | "arrow-double-up" | "arrow-down" | "arrow-down-left" | "arrow-down-right" | "arrow-drop-down" | "arrow-drop-up" | "arrow-left" | "arrow-right" | "arrow-up" | "arrow-up-left" | "arrow-up-right" | "attach-file" | "battery-alt-empty" | "battery-alt-full" | "battery-charging" | "battery-empty" | "battery-full" | "bluetooth-off" | "chart-bar" | "chart-bar-stacked" | "check-indeterminate" | "check-small" | "checkbox-empty" | "copy-all" | "crisis-alert" | "download-done" | "drag-handle" | "drag-indicator" | "explore-travel" | "external-link" | "filter-off" | "first-page" | "fullscreen-exit" | "hourglass-empty" | "info-i" | "last-page" | "link-off" | "location-disabled" | "menu-open" | "more-down" | "more-horiz" | "more-up" | "more-vert" | "open-in-full" | "play-pause" | "power-input" | "power-plug" | "power-settings" | "priority-high" | "question-mark" | "radio-button-empty" | "reply-all" | "side-navigation" | "support-agent" | "swap-horiz" | "swap-vert" | "trending-down" | "trending-flat" | "trending-up" | "water-alt" | "wifi-off" | "zoom-in" | "zoom-out" | "add-circle" | "admin-panel-settings" | "analytics" | "archive" | "arrow-circle-chevron-down" | "arrow-circle-chevron-left" | "arrow-circle-chevron-right" | "arrow-circle-chevron-up" | "arrow-circle-down" | "arrow-circle-left" | "arrow-circle-right" | "arrow-circle-up" | "article" | "assignment-complete" | "assignment" | "battery-alert" | "battery-charging-full" | "bolt-alt-circle" | "bolt-alt" | "bolt-circle" | "bolt" | "bookmark" | "bookmarks" | "build" | "calendar-available" | "calendar-busy" | "calendar-month" | "calendar-today" | "call" | "cancel" | "category" | "chart-add" | "chart-area" | "chart-pie" | "chart-table" | "chat-alt" | "chat-alt-unread" | "chat" | "chat-unread" | "check-circle" | "checkbox" | "checkbox-indeterminate" | "clock" | "cloud-download" | "cloud" | "cloud-off" | "cloud-upload" | "comment-add" | "comment" | "contact" | "copy" | "dangerous" | "dashboard" | "database" | "delete" | "desktop" | "devices" | "draft" | "eco" | "edit" | "electric-meter" | "error" | "explore" | "explore-off" | "export-xls" | "fast-forward" | "fast-rewind" | "feedback" | "file-copy" | "file-download" | "file-upload" | "filter-alt" | "filter-alt-off" | "fire" | "fit-screen" | "flag" | "flash" | "flash-off" | "folder-add" | "folder" | "folder-move" | "folder-open" | "folder-shared" | "forum" | "group-add" | "group" | "groups" | "handshake" | "headphones" | "heart" | "help" | "home" | "hourglass" | "image-broken" | "image" | "image-gallery" | "inbox" | "info" | "keep" | "keep-off" | "label" | "laptop" | "left-panel-close" | "left-panel-open" | "light-off" | "lightbulb-alt" | "lightbulb-circle" | "lightbulb" | "list-alt" | "location-me" | "location-off" | "location-on" | "lock" | "lock-open" | "lock-open-right" | "mail" | "mail-unread" | "map" | "mic" | "mic-off" | "mode-dark" | "mode-light" | "notification" | "notification-important" | "notification-off" | "notification-unread" | "palette" | "pause-circle" | "pause" | "photo-camera" | "play-circle" | "play" | "power" | "power-off" | "power-plug-connect" | "power-settings-circle" | "power-solar" | "power-switch" | "power-wind" | "print" | "right-panel-close" | "right-panel-open" | "save" | "send" | "settings" | "share" | "skip-next" | "skip-previous" | "smartphone" | "star" | "sticky-note" | "stop-circle" | "stop" | "subtitles" | "text-snippet" | "trash-restore" | "unarchive" | "user-add" | "user-circle" | "user" | "user-settings" | "verified" | "video-camera" | "video-camera-off" | "video-gallery" | "view-agenda" | "view-column" | "view-grid" | "view-kanban" | "view-module" | "view-timeline" | "visibility-hide" | "visibility-show" | "volume-down" | "volume-mute" | "volume-off" | "volume-up" | "warning" | "waterdrop">;
|
|
8
8
|
readonly size: import("@angular/core").InputSignal<ButtonSize>;
|
|
9
9
|
readonly variant: import("@angular/core").InputSignal<ButtonVariant>;
|
|
10
10
|
readonly type: import("@angular/core").InputSignal<ButtonType>;
|
|
@@ -15,11 +15,11 @@ export declare class IconButtonComponent {
|
|
|
15
15
|
readonly badgeCount: import("@angular/core").InputSignal<number | undefined>;
|
|
16
16
|
readonly badgeContent: import("@angular/core").InputSignal<BadgeContent | undefined>;
|
|
17
17
|
readonly badgeType: import("@angular/core").InputSignal<BadgeType | undefined>;
|
|
18
|
-
readonly badgeIcon: import("@angular/core").InputSignal<"add" | "apps" | "asterisk" | "bluetooth" | "check" | "close" | "compare" | "cut" | "download" | "exclamation" | "filter" | "forward" | "fullscreen" | "history" | "language" | "link" | "list" | "login" | "logout" | "menu" | "monitoring" | "ohm" | "paste" | "public" | "publish" | "radar" | "redo" | "reload" | "remove" | "reply" | "route" | "search" | "sort" | "timeline" | "tune" | "undo" | "upload" | "water" | "wifi" | "windmill" | "alt-route" | "arrow-alt-down" | "arrow-alt-down-left" | "arrow-alt-down-right" | "arrow-alt-left" | "arrow-alt-right" | "arrow-alt-up" | "arrow-alt-up-left" | "arrow-alt-up-right" | "arrow-angle-down-left" | "arrow-angle-down-right" | "arrow-angle-up-left" | "arrow-angle-up-right" | "arrow-chevron-down" | "arrow-chevron-left" | "arrow-chevron-right" | "arrow-chevron-up" | "arrow-double-down" | "arrow-double-left" | "arrow-double-right" | "arrow-double-up" | "arrow-down" | "arrow-down-left" | "arrow-down-right" | "arrow-drop-down" | "arrow-drop-up" | "arrow-left" | "arrow-right" | "arrow-up" | "arrow-up-left" | "arrow-up-right" | "attach-file" | "battery-alt-empty" | "battery-alt-full" | "battery-charging" | "battery-empty" | "battery-full" | "bluetooth-off" | "chart-bar" | "chart-bar-stacked" | "check-indeterminate" | "check-small" | "checkbox-empty" | "copy-all" | "crisis-alert" | "download-done" | "drag-handle" | "drag-indicator" | "explore-travel" | "external-link" | "filter-off" | "first-page" | "fullscreen-exit" | "hourglass-empty" | "info-i" | "last-page" | "link-off" | "location-disabled" | "menu-open" | "more-down" | "more-horiz" | "more-up" | "more-vert" | "open-in-full" | "play-pause" | "power-input" | "power-plug" | "power-settings" | "priority-high" | "question-mark" | "radio-button-empty" | "reply-all" | "side-navigation" | "support-agent" | "trending-down" | "trending-flat" | "trending-up" | "water-alt" | "wifi-off" | "zoom-in" | "zoom-out" | "add-circle" | "admin-panel-settings" | "analytics" | "archive" | "arrow-circle-chevron-down" | "arrow-circle-chevron-left" | "arrow-circle-chevron-right" | "arrow-circle-chevron-up" | "arrow-circle-down" | "arrow-circle-left" | "arrow-circle-right" | "arrow-circle-up" | "article" | "assignment-complete" | "assignment" | "battery-alert" | "battery-charging-full" | "bolt-alt-circle" | "bolt-alt" | "bolt-circle" | "bolt" | "bookmark" | "bookmarks" | "build" | "calendar-available" | "calendar-busy" | "calendar-month" | "calendar-today" | "call" | "cancel" | "category" | "chart-add" | "chart-area" | "chart-pie" | "chart-table" | "chat-alt" | "chat-alt-unread" | "chat" | "chat-unread" | "check-circle" | "checkbox" | "checkbox-indeterminate" | "clock" | "cloud-download" | "cloud" | "cloud-off" | "cloud-upload" | "comment-add" | "comment" | "copy" | "dangerous" | "dashboard" | "database" | "delete" | "desktop" | "devices" | "draft" | "eco" | "edit" | "electric-meter" | "error" | "explore" | "explore-off" | "fast-forward" | "fast-rewind" | "feedback" | "file-copy" | "file-download" | "file-upload" | "filter-alt" | "filter-alt-off" | "fire" | "fit-screen" | "flag" | "flash" | "flash-off" | "folder-add" | "folder" | "folder-move" | "folder-open" | "folder-shared" | "forum" | "group-add" | "group" | "groups" | "headphones" | "heart" | "help" | "home" | "hourglass" | "image-broken" | "image" | "image-gallery" | "inbox" | "info" | "keep" | "keep-off" | "label" | "laptop" | "left-panel-close" | "left-panel-open" | "light-off" | "lightbulb-alt" | "lightbulb-circle" | "lightbulb" | "list-alt" | "location-me" | "location-off" | "location-on" | "lock" | "lock-open" | "lock-open-right" | "mail" | "mail-unread" | "map" | "mic" | "mic-off" | "mode-dark" | "mode-light" | "notification" | "notification-important" | "notification-off" | "notification-unread" | "palette" | "pause-circle" | "pause" | "photo-camera" | "play-circle" | "play" | "power" | "power-off" | "power-plug-connect" | "power-settings-circle" | "power-solar" | "power-switch" | "power-wind" | "print" | "right-panel-close" | "right-panel-open" | "save" | "send" | "settings" | "share" | "skip-next" | "skip-previous" | "smartphone" | "star" | "sticky-note" | "stop-circle" | "stop" | "subtitles" | "text-snippet" | "trash-restore" | "unarchive" | "user-add" | "user-circle" | "user" | "user-settings" | "verified" | "video-camera" | "video-camera-off" | "video-gallery" | "view-agenda" | "view-column" | "view-grid" | "view-kanban" | "view-module" | "view-timeline" | "visibility-hide" | "visibility-show" | "volume-down" | "volume-mute" | "volume-off" | "volume-up" | "warning" | "waterdrop">;
|
|
18
|
+
readonly badgeIcon: import("@angular/core").InputSignal<"add" | "apps" | "asterisk" | "bluetooth" | "check" | "close" | "compare" | "cut" | "download" | "exclamation" | "filter" | "forward" | "fullscreen" | "history" | "language" | "link" | "list" | "login" | "logout" | "menu" | "monitoring" | "ohm" | "paste" | "public" | "publish" | "radar" | "redo" | "reload" | "remove" | "reply" | "route" | "search" | "sort" | "timeline" | "tune" | "undo" | "upload" | "water" | "wifi" | "windmill" | "alt-route" | "arrow-alt-down" | "arrow-alt-down-left" | "arrow-alt-down-right" | "arrow-alt-left" | "arrow-alt-right" | "arrow-alt-up" | "arrow-alt-up-left" | "arrow-alt-up-right" | "arrow-angle-down-left" | "arrow-angle-down-right" | "arrow-angle-up-left" | "arrow-angle-up-right" | "arrow-chevron-down" | "arrow-chevron-left" | "arrow-chevron-right" | "arrow-chevron-up" | "arrow-double-down" | "arrow-double-left" | "arrow-double-right" | "arrow-double-up" | "arrow-down" | "arrow-down-left" | "arrow-down-right" | "arrow-drop-down" | "arrow-drop-up" | "arrow-left" | "arrow-right" | "arrow-up" | "arrow-up-left" | "arrow-up-right" | "attach-file" | "battery-alt-empty" | "battery-alt-full" | "battery-charging" | "battery-empty" | "battery-full" | "bluetooth-off" | "chart-bar" | "chart-bar-stacked" | "check-indeterminate" | "check-small" | "checkbox-empty" | "copy-all" | "crisis-alert" | "download-done" | "drag-handle" | "drag-indicator" | "explore-travel" | "external-link" | "filter-off" | "first-page" | "fullscreen-exit" | "hourglass-empty" | "info-i" | "last-page" | "link-off" | "location-disabled" | "menu-open" | "more-down" | "more-horiz" | "more-up" | "more-vert" | "open-in-full" | "play-pause" | "power-input" | "power-plug" | "power-settings" | "priority-high" | "question-mark" | "radio-button-empty" | "reply-all" | "side-navigation" | "support-agent" | "swap-horiz" | "swap-vert" | "trending-down" | "trending-flat" | "trending-up" | "water-alt" | "wifi-off" | "zoom-in" | "zoom-out" | "add-circle" | "admin-panel-settings" | "analytics" | "archive" | "arrow-circle-chevron-down" | "arrow-circle-chevron-left" | "arrow-circle-chevron-right" | "arrow-circle-chevron-up" | "arrow-circle-down" | "arrow-circle-left" | "arrow-circle-right" | "arrow-circle-up" | "article" | "assignment-complete" | "assignment" | "battery-alert" | "battery-charging-full" | "bolt-alt-circle" | "bolt-alt" | "bolt-circle" | "bolt" | "bookmark" | "bookmarks" | "build" | "calendar-available" | "calendar-busy" | "calendar-month" | "calendar-today" | "call" | "cancel" | "category" | "chart-add" | "chart-area" | "chart-pie" | "chart-table" | "chat-alt" | "chat-alt-unread" | "chat" | "chat-unread" | "check-circle" | "checkbox" | "checkbox-indeterminate" | "clock" | "cloud-download" | "cloud" | "cloud-off" | "cloud-upload" | "comment-add" | "comment" | "contact" | "copy" | "dangerous" | "dashboard" | "database" | "delete" | "desktop" | "devices" | "draft" | "eco" | "edit" | "electric-meter" | "error" | "explore" | "explore-off" | "export-xls" | "fast-forward" | "fast-rewind" | "feedback" | "file-copy" | "file-download" | "file-upload" | "filter-alt" | "filter-alt-off" | "fire" | "fit-screen" | "flag" | "flash" | "flash-off" | "folder-add" | "folder" | "folder-move" | "folder-open" | "folder-shared" | "forum" | "group-add" | "group" | "groups" | "handshake" | "headphones" | "heart" | "help" | "home" | "hourglass" | "image-broken" | "image" | "image-gallery" | "inbox" | "info" | "keep" | "keep-off" | "label" | "laptop" | "left-panel-close" | "left-panel-open" | "light-off" | "lightbulb-alt" | "lightbulb-circle" | "lightbulb" | "list-alt" | "location-me" | "location-off" | "location-on" | "lock" | "lock-open" | "lock-open-right" | "mail" | "mail-unread" | "map" | "mic" | "mic-off" | "mode-dark" | "mode-light" | "notification" | "notification-important" | "notification-off" | "notification-unread" | "palette" | "pause-circle" | "pause" | "photo-camera" | "play-circle" | "play" | "power" | "power-off" | "power-plug-connect" | "power-settings-circle" | "power-solar" | "power-switch" | "power-wind" | "print" | "right-panel-close" | "right-panel-open" | "save" | "send" | "settings" | "share" | "skip-next" | "skip-previous" | "smartphone" | "star" | "sticky-note" | "stop-circle" | "stop" | "subtitles" | "text-snippet" | "trash-restore" | "unarchive" | "user-add" | "user-circle" | "user" | "user-settings" | "verified" | "video-camera" | "video-camera-off" | "video-gallery" | "view-agenda" | "view-column" | "view-grid" | "view-kanban" | "view-module" | "view-timeline" | "visibility-hide" | "visibility-show" | "volume-down" | "volume-mute" | "volume-off" | "volume-up" | "warning" | "waterdrop">;
|
|
19
19
|
readonly customStyle: import("@angular/core").InputSignal<Record<string, string> | undefined>;
|
|
20
20
|
readonly buttonIconSize: import("@angular/core").Signal<number>;
|
|
21
21
|
readonly isValidIconName: import("@angular/core").Signal<boolean>;
|
|
22
|
-
readonly clickEvent: import("@angular/core").OutputEmitterRef<
|
|
22
|
+
readonly clickEvent: import("@angular/core").OutputEmitterRef<KeyboardEvent | MouseEvent>;
|
|
23
23
|
readonly shouldDisplayBadge: import("@angular/core").Signal<boolean>;
|
|
24
24
|
onClick(event: MouseEvent | KeyboardEvent): void;
|
|
25
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<IconButtonComponent, never>;
|
|
@@ -3,7 +3,7 @@ import { ButtonSize, ButtonVariant } from "@design-system-rte/core/components/bu
|
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class IconButtonToggleComponent {
|
|
5
5
|
readonly disabled: import("@angular/core").InputSignal<boolean>;
|
|
6
|
-
readonly name: import("@angular/core").InputSignal<"add" | "apps" | "asterisk" | "bluetooth" | "check" | "close" | "compare" | "cut" | "download" | "exclamation" | "filter" | "forward" | "fullscreen" | "history" | "language" | "link" | "list" | "login" | "logout" | "menu" | "monitoring" | "ohm" | "paste" | "public" | "publish" | "radar" | "redo" | "reload" | "remove" | "reply" | "route" | "search" | "sort" | "timeline" | "tune" | "undo" | "upload" | "water" | "wifi" | "windmill" | "alt-route" | "arrow-alt-down" | "arrow-alt-down-left" | "arrow-alt-down-right" | "arrow-alt-left" | "arrow-alt-right" | "arrow-alt-up" | "arrow-alt-up-left" | "arrow-alt-up-right" | "arrow-angle-down-left" | "arrow-angle-down-right" | "arrow-angle-up-left" | "arrow-angle-up-right" | "arrow-chevron-down" | "arrow-chevron-left" | "arrow-chevron-right" | "arrow-chevron-up" | "arrow-double-down" | "arrow-double-left" | "arrow-double-right" | "arrow-double-up" | "arrow-down" | "arrow-down-left" | "arrow-down-right" | "arrow-drop-down" | "arrow-drop-up" | "arrow-left" | "arrow-right" | "arrow-up" | "arrow-up-left" | "arrow-up-right" | "attach-file" | "battery-alt-empty" | "battery-alt-full" | "battery-charging" | "battery-empty" | "battery-full" | "bluetooth-off" | "chart-bar" | "chart-bar-stacked" | "check-indeterminate" | "check-small" | "checkbox-empty" | "copy-all" | "crisis-alert" | "download-done" | "drag-handle" | "drag-indicator" | "explore-travel" | "external-link" | "filter-off" | "first-page" | "fullscreen-exit" | "hourglass-empty" | "info-i" | "last-page" | "link-off" | "location-disabled" | "menu-open" | "more-down" | "more-horiz" | "more-up" | "more-vert" | "open-in-full" | "play-pause" | "power-input" | "power-plug" | "power-settings" | "priority-high" | "question-mark" | "radio-button-empty" | "reply-all" | "side-navigation" | "support-agent" | "trending-down" | "trending-flat" | "trending-up" | "water-alt" | "wifi-off" | "zoom-in" | "zoom-out" | "add-circle" | "admin-panel-settings" | "analytics" | "archive" | "arrow-circle-chevron-down" | "arrow-circle-chevron-left" | "arrow-circle-chevron-right" | "arrow-circle-chevron-up" | "arrow-circle-down" | "arrow-circle-left" | "arrow-circle-right" | "arrow-circle-up" | "article" | "assignment-complete" | "assignment" | "battery-alert" | "battery-charging-full" | "bolt-alt-circle" | "bolt-alt" | "bolt-circle" | "bolt" | "bookmark" | "bookmarks" | "build" | "calendar-available" | "calendar-busy" | "calendar-month" | "calendar-today" | "call" | "cancel" | "category" | "chart-add" | "chart-area" | "chart-pie" | "chart-table" | "chat-alt" | "chat-alt-unread" | "chat" | "chat-unread" | "check-circle" | "checkbox" | "checkbox-indeterminate" | "clock" | "cloud-download" | "cloud" | "cloud-off" | "cloud-upload" | "comment-add" | "comment" | "copy" | "dangerous" | "dashboard" | "database" | "delete" | "desktop" | "devices" | "draft" | "eco" | "edit" | "electric-meter" | "error" | "explore" | "explore-off" | "fast-forward" | "fast-rewind" | "feedback" | "file-copy" | "file-download" | "file-upload" | "filter-alt" | "filter-alt-off" | "fire" | "fit-screen" | "flag" | "flash" | "flash-off" | "folder-add" | "folder" | "folder-move" | "folder-open" | "folder-shared" | "forum" | "group-add" | "group" | "groups" | "headphones" | "heart" | "help" | "home" | "hourglass" | "image-broken" | "image" | "image-gallery" | "inbox" | "info" | "keep" | "keep-off" | "label" | "laptop" | "left-panel-close" | "left-panel-open" | "light-off" | "lightbulb-alt" | "lightbulb-circle" | "lightbulb" | "list-alt" | "location-me" | "location-off" | "location-on" | "lock" | "lock-open" | "lock-open-right" | "mail" | "mail-unread" | "map" | "mic" | "mic-off" | "mode-dark" | "mode-light" | "notification" | "notification-important" | "notification-off" | "notification-unread" | "palette" | "pause-circle" | "pause" | "photo-camera" | "play-circle" | "play" | "power" | "power-off" | "power-plug-connect" | "power-settings-circle" | "power-solar" | "power-switch" | "power-wind" | "print" | "right-panel-close" | "right-panel-open" | "save" | "send" | "settings" | "share" | "skip-next" | "skip-previous" | "smartphone" | "star" | "sticky-note" | "stop-circle" | "stop" | "subtitles" | "text-snippet" | "trash-restore" | "unarchive" | "user-add" | "user-circle" | "user" | "user-settings" | "verified" | "video-camera" | "video-camera-off" | "video-gallery" | "view-agenda" | "view-column" | "view-grid" | "view-kanban" | "view-module" | "view-timeline" | "visibility-hide" | "visibility-show" | "volume-down" | "volume-mute" | "volume-off" | "volume-up" | "warning" | "waterdrop">;
|
|
6
|
+
readonly name: import("@angular/core").InputSignal<"add" | "apps" | "asterisk" | "bluetooth" | "check" | "close" | "compare" | "cut" | "download" | "exclamation" | "filter" | "forward" | "fullscreen" | "history" | "language" | "link" | "list" | "login" | "logout" | "menu" | "monitoring" | "ohm" | "paste" | "public" | "publish" | "radar" | "redo" | "reload" | "remove" | "reply" | "route" | "search" | "sort" | "timeline" | "tune" | "undo" | "upload" | "water" | "wifi" | "windmill" | "alt-route" | "arrow-alt-down" | "arrow-alt-down-left" | "arrow-alt-down-right" | "arrow-alt-left" | "arrow-alt-right" | "arrow-alt-up" | "arrow-alt-up-left" | "arrow-alt-up-right" | "arrow-angle-down-left" | "arrow-angle-down-right" | "arrow-angle-up-left" | "arrow-angle-up-right" | "arrow-chevron-down" | "arrow-chevron-left" | "arrow-chevron-right" | "arrow-chevron-up" | "arrow-double-down" | "arrow-double-left" | "arrow-double-right" | "arrow-double-up" | "arrow-down" | "arrow-down-left" | "arrow-down-right" | "arrow-drop-down" | "arrow-drop-up" | "arrow-left" | "arrow-right" | "arrow-up" | "arrow-up-left" | "arrow-up-right" | "attach-file" | "battery-alt-empty" | "battery-alt-full" | "battery-charging" | "battery-empty" | "battery-full" | "bluetooth-off" | "chart-bar" | "chart-bar-stacked" | "check-indeterminate" | "check-small" | "checkbox-empty" | "copy-all" | "crisis-alert" | "download-done" | "drag-handle" | "drag-indicator" | "explore-travel" | "external-link" | "filter-off" | "first-page" | "fullscreen-exit" | "hourglass-empty" | "info-i" | "last-page" | "link-off" | "location-disabled" | "menu-open" | "more-down" | "more-horiz" | "more-up" | "more-vert" | "open-in-full" | "play-pause" | "power-input" | "power-plug" | "power-settings" | "priority-high" | "question-mark" | "radio-button-empty" | "reply-all" | "side-navigation" | "support-agent" | "swap-horiz" | "swap-vert" | "trending-down" | "trending-flat" | "trending-up" | "water-alt" | "wifi-off" | "zoom-in" | "zoom-out" | "add-circle" | "admin-panel-settings" | "analytics" | "archive" | "arrow-circle-chevron-down" | "arrow-circle-chevron-left" | "arrow-circle-chevron-right" | "arrow-circle-chevron-up" | "arrow-circle-down" | "arrow-circle-left" | "arrow-circle-right" | "arrow-circle-up" | "article" | "assignment-complete" | "assignment" | "battery-alert" | "battery-charging-full" | "bolt-alt-circle" | "bolt-alt" | "bolt-circle" | "bolt" | "bookmark" | "bookmarks" | "build" | "calendar-available" | "calendar-busy" | "calendar-month" | "calendar-today" | "call" | "cancel" | "category" | "chart-add" | "chart-area" | "chart-pie" | "chart-table" | "chat-alt" | "chat-alt-unread" | "chat" | "chat-unread" | "check-circle" | "checkbox" | "checkbox-indeterminate" | "clock" | "cloud-download" | "cloud" | "cloud-off" | "cloud-upload" | "comment-add" | "comment" | "contact" | "copy" | "dangerous" | "dashboard" | "database" | "delete" | "desktop" | "devices" | "draft" | "eco" | "edit" | "electric-meter" | "error" | "explore" | "explore-off" | "export-xls" | "fast-forward" | "fast-rewind" | "feedback" | "file-copy" | "file-download" | "file-upload" | "filter-alt" | "filter-alt-off" | "fire" | "fit-screen" | "flag" | "flash" | "flash-off" | "folder-add" | "folder" | "folder-move" | "folder-open" | "folder-shared" | "forum" | "group-add" | "group" | "groups" | "handshake" | "headphones" | "heart" | "help" | "home" | "hourglass" | "image-broken" | "image" | "image-gallery" | "inbox" | "info" | "keep" | "keep-off" | "label" | "laptop" | "left-panel-close" | "left-panel-open" | "light-off" | "lightbulb-alt" | "lightbulb-circle" | "lightbulb" | "list-alt" | "location-me" | "location-off" | "location-on" | "lock" | "lock-open" | "lock-open-right" | "mail" | "mail-unread" | "map" | "mic" | "mic-off" | "mode-dark" | "mode-light" | "notification" | "notification-important" | "notification-off" | "notification-unread" | "palette" | "pause-circle" | "pause" | "photo-camera" | "play-circle" | "play" | "power" | "power-off" | "power-plug-connect" | "power-settings-circle" | "power-solar" | "power-switch" | "power-wind" | "print" | "right-panel-close" | "right-panel-open" | "save" | "send" | "settings" | "share" | "skip-next" | "skip-previous" | "smartphone" | "star" | "sticky-note" | "stop-circle" | "stop" | "subtitles" | "text-snippet" | "trash-restore" | "unarchive" | "user-add" | "user-circle" | "user" | "user-settings" | "verified" | "video-camera" | "video-camera-off" | "video-gallery" | "view-agenda" | "view-column" | "view-grid" | "view-kanban" | "view-module" | "view-timeline" | "visibility-hide" | "visibility-show" | "volume-down" | "volume-mute" | "volume-off" | "volume-up" | "warning" | "waterdrop">;
|
|
7
7
|
readonly size: import("@angular/core").InputSignal<ButtonSize>;
|
|
8
8
|
readonly variant: import("@angular/core").InputSignal<ButtonVariant>;
|
|
9
9
|
readonly type: import("@angular/core").InputSignal<ButtonType>;
|
|
@@ -14,7 +14,7 @@ export declare class IconButtonToggleComponent {
|
|
|
14
14
|
readonly internalSelected: import("@angular/core").WritableSignal<boolean>;
|
|
15
15
|
readonly defaultSelected: import("@angular/core").InputSignal<boolean>;
|
|
16
16
|
readonly isControlled: import("@angular/core").Signal<boolean>;
|
|
17
|
-
readonly click: import("@angular/core").OutputEmitterRef<
|
|
17
|
+
readonly click: import("@angular/core").OutputEmitterRef<KeyboardEvent | MouseEvent>;
|
|
18
18
|
readonly isSelected: import("@angular/core").Signal<boolean | undefined>;
|
|
19
19
|
private toggleInternalSelectedState;
|
|
20
20
|
onClick(event: MouseEvent | KeyboardEvent): void;
|
|
@@ -3,7 +3,7 @@ import { PopoverAlignment } from "@design-system-rte/core/components/popover/pop
|
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class PopoverComponent implements AfterViewInit, OnDestroy {
|
|
5
5
|
readonly primaryButtonLabel: import("@angular/core").InputSignal<string>;
|
|
6
|
-
readonly position: import("@angular/core").InputSignal<"top" | "
|
|
6
|
+
readonly position: import("@angular/core").InputSignal<"top" | "bottom" | "left" | "right">;
|
|
7
7
|
readonly alignment: import("@angular/core").InputSignal<PopoverAlignment | undefined>;
|
|
8
8
|
readonly content: import("@angular/core").InputSignal<string | undefined>;
|
|
9
9
|
readonly arrow: import("@angular/core").InputSignal<boolean | undefined>;
|
|
@@ -7,6 +7,8 @@ export declare class SegmentedControlComponent implements OnChanges, AfterViewIn
|
|
|
7
7
|
readonly selectedSegment: import("@angular/core").InputSignal<string | undefined>;
|
|
8
8
|
readonly ariaLabel: import("@angular/core").InputSignal<string | undefined>;
|
|
9
9
|
readonly ariaLabelledBy: import("@angular/core").InputSignal<string | undefined>;
|
|
10
|
+
readonly appearance: import("@angular/core").InputSignal<"neutral" | "brand">;
|
|
11
|
+
readonly compactSpacing: import("@angular/core").InputSignal<boolean>;
|
|
10
12
|
readonly segmentRefs: import("@angular/core").Signal<readonly ElementRef<HTMLDivElement>[]>;
|
|
11
13
|
readonly sliderLeft: import("@angular/core").WritableSignal<number>;
|
|
12
14
|
readonly sliderWidth: import("@angular/core").WritableSignal<number>;
|
|
@@ -31,5 +33,5 @@ export declare class SegmentedControlComponent implements OnChanges, AfterViewIn
|
|
|
31
33
|
private onGlobalKeyDown;
|
|
32
34
|
private focusCurrentSegmentElement;
|
|
33
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<SegmentedControlComponent, never>;
|
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SegmentedControlComponent, "rte-segmented-control", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; "selectedSegment": { "alias": "selectedSegment"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; "isSignal": true; }; }, { "change": "change"; }, never, never, true, never>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SegmentedControlComponent, "rte-segmented-control", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; "selectedSegment": { "alias": "selectedSegment"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; "isSignal": true; }; "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "compactSpacing": { "alias": "compactSpacing"; "required": false; "isSignal": true; }; }, { "change": "change"; }, never, never, true, never>;
|
|
35
37
|
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { TemplateRef } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SelectFooterDirective {
|
|
4
|
+
readonly templateRef: TemplateRef<any> | null;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SelectFooterDirective, never>;
|
|
6
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SelectFooterDirective, "[rteSelectFooter]", never, {}, {}, never, never, true, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { TemplateRef } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SelectHeaderDirective {
|
|
4
|
+
readonly templateRef: TemplateRef<any> | null;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SelectHeaderDirective, never>;
|
|
6
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SelectHeaderDirective, "[rteSelectHeader]", never, {}, {}, never, never, true, never>;
|
|
7
|
+
}
|