@design-system-rte/angular 1.0.1 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/esm2022/lib/components/assistive-text/assistive-text.component.mjs +34 -0
  2. package/esm2022/lib/components/badge/badge.component.mjs +7 -4
  3. package/esm2022/lib/components/banner/banner.component.mjs +3 -3
  4. package/esm2022/lib/components/breadcrumbs/breadcrumb-item/breadcrumb-item.component.mjs +18 -3
  5. package/esm2022/lib/components/breadcrumbs/breadcrumbs.component.mjs +19 -3
  6. package/esm2022/lib/components/dropdown/dropdown-item/dropdown-item.component.mjs +23 -6
  7. package/esm2022/lib/components/dropdown/dropdown-menu/dropdown-menu-footer.directive.mjs +17 -0
  8. package/esm2022/lib/components/dropdown/dropdown-menu/dropdown-menu-header.directive.mjs +17 -0
  9. package/esm2022/lib/components/dropdown/dropdown-menu/dropdown-menu.component.mjs +35 -5
  10. package/esm2022/lib/components/dropdown/dropdown-trigger/dropdown-trigger.directive.mjs +23 -2
  11. package/esm2022/lib/components/dropdown/dropdown.directive.mjs +93 -14
  12. package/esm2022/lib/components/dropdown/dropdown.module.mjs +32 -5
  13. package/esm2022/lib/components/icon-button/icon-button.component.mjs +6 -6
  14. package/esm2022/lib/components/icon-button-toggle/icon-button-toggle.component.mjs +3 -3
  15. package/esm2022/lib/components/modal/modal.component.mjs +3 -3
  16. package/esm2022/lib/components/searchbar/searchbar.component.mjs +86 -0
  17. package/esm2022/lib/components/segmented-control/segmented-control.component.mjs +13 -3
  18. package/esm2022/lib/components/select/select.component.mjs +168 -0
  19. package/esm2022/lib/components/split-button/split-button.component.mjs +17 -3
  20. package/esm2022/lib/components/tab/tab-item/tab-item.component.mjs +112 -0
  21. package/esm2022/lib/components/tab/tab.component.mjs +242 -0
  22. package/esm2022/lib/components/text-input/base-text-input/base-text-input.component.mjs +109 -0
  23. package/esm2022/lib/components/text-input/text-input.component.mjs +8 -103
  24. package/esm2022/lib/components/textarea/textarea.component.mjs +6 -5
  25. package/esm2022/lib/components/toast/toast.component.mjs +44 -5
  26. package/esm2022/lib/services/dropdown.service.mjs +2 -3
  27. package/esm2022/public-api.mjs +4 -1
  28. package/fesm2022/design-system-rte-angular.mjs +1047 -156
  29. package/fesm2022/design-system-rte-angular.mjs.map +1 -1
  30. package/lib/components/assistive-text/assistive-text.component.d.ts +14 -0
  31. package/lib/components/badge/badge.directive.d.ts +1 -1
  32. package/lib/components/breadcrumbs/breadcrumb-item/breadcrumb-item.component.d.ts +3 -2
  33. package/lib/components/breadcrumbs/breadcrumbs.component.d.ts +10 -3
  34. package/lib/components/dropdown/dropdown-item/dropdown-item.component.d.ts +4 -1
  35. package/lib/components/dropdown/dropdown-menu/dropdown-menu-footer.directive.d.ts +7 -0
  36. package/lib/components/dropdown/dropdown-menu/dropdown-menu-header.directive.d.ts +7 -0
  37. package/lib/components/dropdown/dropdown-menu/dropdown-menu.component.d.ts +23 -1
  38. package/lib/components/dropdown/dropdown-trigger/dropdown-trigger.directive.d.ts +7 -1
  39. package/lib/components/dropdown/dropdown.directive.d.ts +17 -3
  40. package/lib/components/dropdown/dropdown.module.d.ts +3 -1
  41. package/lib/components/icon-button/icon-button.component.d.ts +5 -4
  42. package/lib/components/icon-button-toggle/icon-button-toggle.component.d.ts +2 -2
  43. package/lib/components/popover/popover.component.d.ts +1 -1
  44. package/lib/components/searchbar/searchbar.component.d.ts +31 -0
  45. package/lib/components/segmented-control/segmented-control.component.d.ts +1 -0
  46. package/lib/components/select/select.component.d.ts +56 -0
  47. package/lib/components/split-button/split-button.component.d.ts +10 -2
  48. package/lib/components/tab/tab-item/tab-item.component.d.ts +35 -0
  49. package/lib/components/tab/tab.component.d.ts +70 -0
  50. package/lib/components/tag/tag.component.d.ts +2 -2
  51. package/lib/components/text-input/base-text-input/base-text-input.component.d.ts +47 -0
  52. package/lib/components/text-input/text-input.component.d.ts +3 -39
  53. package/lib/components/toast/toast.component.d.ts +9 -1
  54. package/lib/components/tooltip/tooltip.component.d.ts +1 -1
  55. package/package.json +2 -2
  56. package/public-api.d.ts +3 -0
@@ -1,4 +1,5 @@
1
1
  import { OnInit, OnDestroy } from "@angular/core";
2
+ import { BadgeContent, BadgeSize, BadgeType } from "@design-system-rte/core/components/badge/badge.interface";
2
3
  import { Alignment, Position } from "@design-system-rte/core/components/common/common-types";
3
4
  import { SplitButtonAppearance, SplitButtonItemProps, SplitButtonPosition, SplitButtonSize } from "@design-system-rte/core/components/split-button/split-button.interface";
4
5
  import * as i0 from "@angular/core";
@@ -8,15 +9,22 @@ export declare class SplitButtonComponent implements OnInit, OnDestroy {
8
9
  readonly label: import("@angular/core").InputSignal<string>;
9
10
  readonly compactSpacing: import("@angular/core").InputSignal<boolean>;
10
11
  readonly position: import("@angular/core").InputSignal<SplitButtonPosition>;
11
- readonly icon: import("@angular/core").InputSignal<"error" | "article" | "label" | "link" | "map" | "menu" | "search" | "filter" | "image" | "stop" | "add" | "apps" | "asterisk" | "bluetooth" | "check" | "close" | "compare" | "cut" | "download" | "exclamation" | "forward" | "fullscreen" | "history" | "language" | "list" | "login" | "logout" | "monitoring" | "ohm" | "paste" | "public" | "publish" | "radar" | "redo" | "reload" | "remove" | "reply" | "route" | "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" | "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" | "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-gallery" | "inbox" | "info" | "keep" | "keep-off" | "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" | "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" | "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" | null>;
12
+ readonly icon: import("@angular/core").InputSignal<"cancel" | "close" | "copy" | "cut" | "error" | "paste" | "pause" | "play" | "sort" | "map" | "filter" | "article" | "label" | "link" | "menu" | "search" | "image" | "stop" | "add" | "apps" | "asterisk" | "bluetooth" | "check" | "compare" | "download" | "exclamation" | "forward" | "fullscreen" | "history" | "language" | "list" | "login" | "logout" | "monitoring" | "ohm" | "public" | "publish" | "radar" | "redo" | "reload" | "remove" | "reply" | "route" | "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" | "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" | "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" | "dangerous" | "dashboard" | "database" | "delete" | "desktop" | "devices" | "draft" | "eco" | "edit" | "electric-meter" | "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-gallery" | "inbox" | "info" | "keep" | "keep-off" | "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" | "mic" | "mic-off" | "mode-dark" | "mode-light" | "notification" | "notification-important" | "notification-off" | "notification-unread" | "palette" | "pause-circle" | "photo-camera" | "play-circle" | "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" | "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" | null>;
12
13
  readonly disabled: import("@angular/core").InputSignal<boolean>;
13
14
  readonly ariaLabelRight: import("@angular/core").InputSignal<string | undefined>;
14
15
  readonly options: import("@angular/core").InputSignal<SplitButtonItemProps[]>;
16
+ readonly badgeType: import("@angular/core").InputSignal<BadgeType | undefined>;
17
+ readonly showBadge: import("@angular/core").InputSignal<boolean>;
18
+ readonly badgeContent: import("@angular/core").InputSignal<BadgeContent | undefined>;
19
+ readonly badgeCount: import("@angular/core").InputSignal<number | undefined>;
20
+ readonly badgeIcon: import("@angular/core").InputSignal<"cancel" | "close" | "copy" | "cut" | "error" | "paste" | "pause" | "play" | "sort" | "map" | "filter" | "article" | "label" | "link" | "menu" | "search" | "image" | "stop" | "add" | "apps" | "asterisk" | "bluetooth" | "check" | "compare" | "download" | "exclamation" | "forward" | "fullscreen" | "history" | "language" | "list" | "login" | "logout" | "monitoring" | "ohm" | "public" | "publish" | "radar" | "redo" | "reload" | "remove" | "reply" | "route" | "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" | "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" | "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" | "dangerous" | "dashboard" | "database" | "delete" | "desktop" | "devices" | "draft" | "eco" | "edit" | "electric-meter" | "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-gallery" | "inbox" | "info" | "keep" | "keep-off" | "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" | "mic" | "mic-off" | "mode-dark" | "mode-light" | "notification" | "notification-important" | "notification-off" | "notification-unread" | "palette" | "pause-circle" | "photo-camera" | "play-circle" | "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" | "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">;
21
+ readonly badgeSize: import("@angular/core").InputSignal<BadgeSize>;
15
22
  readonly splitButtonLeftIconSize: import("@angular/core").Signal<number>;
16
23
  readonly splitButtonRightIconSize: import("@angular/core").Signal<number>;
17
24
  readonly isOpen: import("@angular/core").WritableSignal<boolean>;
18
25
  readonly internalPosition: import("@angular/core").Signal<Position>;
19
26
  readonly internalAlignment: import("@angular/core").Signal<Alignment>;
27
+ readonly hasBadge: import("@angular/core").Signal<boolean>;
20
28
  handleClickOutside(event: MouseEvent): void;
21
29
  ngOnInit(): void;
22
30
  ngOnDestroy(): void;
@@ -24,5 +32,5 @@ export declare class SplitButtonComponent implements OnInit, OnDestroy {
24
32
  handleKeyDownOnMenu(event: KeyboardEvent): void;
25
33
  private handleKeyDown;
26
34
  static ɵfac: i0.ɵɵFactoryDeclaration<SplitButtonComponent, never>;
27
- static ɵcmp: i0.ɵɵComponentDeclaration<SplitButtonComponent, "rte-split-button", never, { "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": true; "isSignal": true; }; "compactSpacing": { "alias": "compactSpacing"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "ariaLabelRight": { "alias": "ariaLabelRight"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<SplitButtonComponent, "rte-split-button", never, { "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": true; "isSignal": true; }; "compactSpacing": { "alias": "compactSpacing"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "ariaLabelRight": { "alias": "ariaLabelRight"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "badgeType": { "alias": "badgeType"; "required": false; "isSignal": true; }; "showBadge": { "alias": "showBadge"; "required": false; "isSignal": true; }; "badgeContent": { "alias": "badgeContent"; "required": false; "isSignal": true; }; "badgeCount": { "alias": "badgeCount"; "required": false; "isSignal": true; }; "badgeIcon": { "alias": "badgeIcon"; "required": false; "isSignal": true; }; "badgeSize": { "alias": "badgeSize"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
28
36
  }
@@ -0,0 +1,35 @@
1
+ import { ElementRef, AfterViewInit, OnDestroy } from "@angular/core";
2
+ import { TabItemProps } from "@design-system-rte/core/components/tab/tab.interface";
3
+ import * as i0 from "@angular/core";
4
+ export declare class TabItemComponent implements AfterViewInit, OnDestroy {
5
+ readonly direction: import("@angular/core").InputSignal<"horizontal" | "vertical">;
6
+ readonly option: import("@angular/core").InputSignal<TabItemProps | undefined>;
7
+ readonly compactSpacing: import("@angular/core").InputSignal<boolean | undefined>;
8
+ readonly isSelected: import("@angular/core").InputSignal<boolean>;
9
+ readonly click: import("@angular/core").OutputEmitterRef<string>;
10
+ readonly handleKeydown: import("@angular/core").InputSignal<(() => void) | undefined>;
11
+ readonly inverted: import("@angular/core").InputSignal<boolean>;
12
+ readonly isHidden: import("@angular/core").InputSignal<boolean>;
13
+ readonly tabItemRef: import("@angular/core").Signal<ElementRef<HTMLButtonElement> | undefined>;
14
+ readonly hoverIndicatorStyle: import("@angular/core").WritableSignal<{
15
+ width?: number | undefined;
16
+ left?: number | undefined;
17
+ top?: number | undefined;
18
+ height?: number | undefined;
19
+ opacity?: number | undefined;
20
+ } | null>;
21
+ readonly displayBadge: (option: TabItemProps) => boolean;
22
+ readonly hoverIndicatorWidth: import("@angular/core").Signal<string>;
23
+ readonly hoverIndicatorHeight: import("@angular/core").Signal<string>;
24
+ readonly hoverIndicatorLeft: import("@angular/core").Signal<string>;
25
+ readonly hoverIndicatorTop: import("@angular/core").Signal<string>;
26
+ readonly hoverIndicatorOpacity: import("@angular/core").Signal<number>;
27
+ ngAfterViewInit(): void;
28
+ ngOnDestroy(): void;
29
+ onClickTabItem(event: MouseEvent, id: string): void;
30
+ handleMouseHover(): void;
31
+ handleMouseOut(): void;
32
+ private computeHoverIndicatorStyle;
33
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabItemComponent, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<TabItemComponent, "rte-tab-item", never, { "direction": { "alias": "direction"; "required": false; "isSignal": true; }; "option": { "alias": "option"; "required": false; "isSignal": true; }; "compactSpacing": { "alias": "compactSpacing"; "required": false; "isSignal": true; }; "isSelected": { "alias": "isSelected"; "required": false; "isSignal": true; }; "handleKeydown": { "alias": "handleKeydown"; "required": false; "isSignal": true; }; "inverted": { "alias": "inverted"; "required": false; "isSignal": true; }; "isHidden": { "alias": "isHidden"; "required": false; "isSignal": true; }; }, { "click": "click"; }, never, never, true, never>;
35
+ }
@@ -0,0 +1,70 @@
1
+ import { ElementRef, SimpleChanges, AfterViewInit, OnChanges, OnDestroy } from "@angular/core";
2
+ import { Direction } from "@design-system-rte/core/components/common/common-types";
3
+ import { TabAlignment, TabItemProps } from "@design-system-rte/core/components/tab/tab.interface";
4
+ import { DropdownItemConfig } from "../dropdown/dropdown-item/dropdown-item.component";
5
+ import { TabItemComponent } from "./tab-item/tab-item.component";
6
+ import * as i0 from "@angular/core";
7
+ export declare class TabComponent implements AfterViewInit, OnChanges, OnDestroy {
8
+ readonly alignment: import("@angular/core").InputSignal<TabAlignment>;
9
+ readonly direction: import("@angular/core").InputSignal<Direction>;
10
+ readonly options: import("@angular/core").InputSignal<TabItemProps[]>;
11
+ readonly selectedTabId: import("@angular/core").InputSignal<string | undefined>;
12
+ readonly compactSpacing: import("@angular/core").InputSignal<boolean | undefined>;
13
+ readonly overflowType: import("@angular/core").InputSignal<"dropdown" | "scrollable" | undefined>;
14
+ readonly inverted: import("@angular/core").InputSignal<boolean>;
15
+ readonly sliderLeft: import("@angular/core").WritableSignal<number>;
16
+ readonly sliderWidth: import("@angular/core").WritableSignal<number>;
17
+ readonly sliderTop: import("@angular/core").WritableSignal<number>;
18
+ readonly sliderHeight: import("@angular/core").WritableSignal<number>;
19
+ readonly tabItemRefs: import("@angular/core").Signal<readonly TabItemComponent[]>;
20
+ readonly containerRef: import("@angular/core").Signal<ElementRef<HTMLDivElement> | undefined>;
21
+ readonly hoverIndicatorRefs: import("@angular/core").Signal<readonly ElementRef<HTMLDivElement>[]>;
22
+ readonly selectedTabRef: import("@angular/core").Signal<TabItemComponent>;
23
+ readonly hoverIndicatorStyle: import("@angular/core").WritableSignal<{
24
+ width?: number | undefined;
25
+ left?: number | undefined;
26
+ top?: number | undefined;
27
+ height?: number | undefined;
28
+ opacity?: number | undefined;
29
+ } | null>;
30
+ readonly change: import("@angular/core").OutputEmitterRef<string>;
31
+ readonly isScrollable: import("@angular/core").WritableSignal<boolean>;
32
+ private readonly isOverflowingLeft;
33
+ private readonly isOverflowingRight;
34
+ private readonly isOverflowingTop;
35
+ private readonly isOverflowingBottom;
36
+ readonly canScrollBackward: import("@angular/core").Signal<boolean>;
37
+ readonly canScrollForward: import("@angular/core").Signal<boolean>;
38
+ readonly isHorizontal: import("@angular/core").Signal<boolean>;
39
+ readonly shouldDisplayDropdown: import("@angular/core").Signal<boolean>;
40
+ readonly selectedTab: import("@angular/core").Signal<TabItemProps | undefined>;
41
+ readonly dropdownFilteredOptions: import("@angular/core").Signal<DropdownItemConfig[]>;
42
+ displayBadge: (option: TabItemProps) => boolean;
43
+ isSelected(id: string): boolean;
44
+ readonly tabItemSelectedIndicatorStyle: import("@angular/core").Signal<{
45
+ left: string;
46
+ top: string;
47
+ width: string;
48
+ height: string;
49
+ }>;
50
+ ngAfterViewInit(): void;
51
+ ngOnDestroy(): void;
52
+ ngOnChanges(changes: SimpleChanges): void;
53
+ onKeydownTabItem: (event: KeyboardEvent) => void;
54
+ onClickTabItem: (id: string) => void;
55
+ scrollBackward(): void;
56
+ scrollForward(): void;
57
+ private getTabItem;
58
+ private focusItem;
59
+ private computeNextItemIndex;
60
+ private computeIndicatorStyle;
61
+ private updateSelectedTabItemIndicator;
62
+ private computeScrollableSignals;
63
+ private computeIsScrollable;
64
+ private computeIsOverflowingLeft;
65
+ private computeIsOverflowingRight;
66
+ private computeIsOverflowingTop;
67
+ private computeIsOverflowingBottom;
68
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabComponent, never>;
69
+ static ɵcmp: i0.ɵɵComponentDeclaration<TabComponent, "rte-tab", never, { "alignment": { "alias": "alignment"; "required": false; "isSignal": true; }; "direction": { "alias": "direction"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "selectedTabId": { "alias": "selectedTabId"; "required": false; "isSignal": true; }; "compactSpacing": { "alias": "compactSpacing"; "required": false; "isSignal": true; }; "overflowType": { "alias": "overflowType"; "required": false; "isSignal": true; }; "inverted": { "alias": "inverted"; "required": false; "isSignal": true; }; }, { "change": "change"; }, never, never, true, never>;
70
+ }
@@ -6,8 +6,8 @@ export declare class TagComponent {
6
6
  readonly compactSpacing: import("@angular/core").InputSignal<boolean>;
7
7
  readonly label: import("@angular/core").InputSignal<string>;
8
8
  readonly showLeftIcon: import("@angular/core").InputSignal<boolean>;
9
- readonly iconName: import("@angular/core").InputSignal<"error" | "article" | "label" | "link" | "map" | "menu" | "search" | "filter" | "image" | "stop" | "add" | "apps" | "asterisk" | "bluetooth" | "check" | "close" | "compare" | "cut" | "download" | "exclamation" | "forward" | "fullscreen" | "history" | "language" | "list" | "login" | "logout" | "monitoring" | "ohm" | "paste" | "public" | "publish" | "radar" | "redo" | "reload" | "remove" | "reply" | "route" | "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" | "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" | "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-gallery" | "inbox" | "info" | "keep" | "keep-off" | "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" | "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" | "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" | undefined>;
10
- readonly computedIconName: import("@angular/core").Signal<"error" | "article" | "label" | "link" | "map" | "menu" | "search" | "filter" | "image" | "stop" | "add" | "apps" | "asterisk" | "bluetooth" | "check" | "close" | "compare" | "cut" | "download" | "exclamation" | "forward" | "fullscreen" | "history" | "language" | "list" | "login" | "logout" | "monitoring" | "ohm" | "paste" | "public" | "publish" | "radar" | "redo" | "reload" | "remove" | "reply" | "route" | "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" | "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" | "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-gallery" | "inbox" | "info" | "keep" | "keep-off" | "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" | "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" | "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 iconName: import("@angular/core").InputSignal<"cancel" | "close" | "copy" | "cut" | "error" | "paste" | "pause" | "play" | "sort" | "map" | "filter" | "article" | "label" | "link" | "menu" | "search" | "image" | "stop" | "add" | "apps" | "asterisk" | "bluetooth" | "check" | "compare" | "download" | "exclamation" | "forward" | "fullscreen" | "history" | "language" | "list" | "login" | "logout" | "monitoring" | "ohm" | "public" | "publish" | "radar" | "redo" | "reload" | "remove" | "reply" | "route" | "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" | "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" | "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" | "dangerous" | "dashboard" | "database" | "delete" | "desktop" | "devices" | "draft" | "eco" | "edit" | "electric-meter" | "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-gallery" | "inbox" | "info" | "keep" | "keep-off" | "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" | "mic" | "mic-off" | "mode-dark" | "mode-light" | "notification" | "notification-important" | "notification-off" | "notification-unread" | "palette" | "pause-circle" | "photo-camera" | "play-circle" | "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" | "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" | undefined>;
10
+ readonly computedIconName: import("@angular/core").Signal<"cancel" | "close" | "copy" | "cut" | "error" | "paste" | "pause" | "play" | "sort" | "map" | "filter" | "article" | "label" | "link" | "menu" | "search" | "image" | "stop" | "add" | "apps" | "asterisk" | "bluetooth" | "check" | "compare" | "download" | "exclamation" | "forward" | "fullscreen" | "history" | "language" | "list" | "login" | "logout" | "monitoring" | "ohm" | "public" | "publish" | "radar" | "redo" | "reload" | "remove" | "reply" | "route" | "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" | "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" | "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" | "dangerous" | "dashboard" | "database" | "delete" | "desktop" | "devices" | "draft" | "eco" | "edit" | "electric-meter" | "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-gallery" | "inbox" | "info" | "keep" | "keep-off" | "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" | "mic" | "mic-off" | "mode-dark" | "mode-light" | "notification" | "notification-important" | "notification-off" | "notification-unread" | "palette" | "pause-circle" | "photo-camera" | "play-circle" | "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" | "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">;
11
11
  readonly isValidIconName: import("@angular/core").Signal<boolean>;
12
12
  static ɵfac: i0.ɵɵFactoryDeclaration<TagComponent, never>;
13
13
  static ɵcmp: i0.ɵɵComponentDeclaration<TagComponent, "rte-tag", never, { "tagType": { "alias": "tagType"; "required": false; "isSignal": true; }; "status": { "alias": "status"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "compactSpacing": { "alias": "compactSpacing"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "showLeftIcon": { "alias": "showLeftIcon"; "required": false; "isSignal": true; }; "iconName": { "alias": "iconName"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
@@ -0,0 +1,47 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class BaseTextInputComponent {
3
+ readonly id: import("@angular/core").InputSignal<string | undefined>;
4
+ readonly label: import("@angular/core").InputSignal<string>;
5
+ readonly labelPosition: import("@angular/core").InputSignal<"top" | "side">;
6
+ readonly placeholder: import("@angular/core").InputSignal<string>;
7
+ readonly required: import("@angular/core").InputSignal<boolean>;
8
+ readonly showCounter: import("@angular/core").InputSignal<boolean>;
9
+ readonly value: import("@angular/core").InputSignal<string>;
10
+ readonly internalValue: import("@angular/core").WritableSignal<string>;
11
+ readonly leftIcon: import("@angular/core").InputSignal<"cancel" | "close" | "copy" | "cut" | "error" | "paste" | "pause" | "play" | "sort" | "map" | "filter" | "article" | "label" | "link" | "menu" | "search" | "image" | "stop" | "add" | "apps" | "asterisk" | "bluetooth" | "check" | "compare" | "download" | "exclamation" | "forward" | "fullscreen" | "history" | "language" | "list" | "login" | "logout" | "monitoring" | "ohm" | "public" | "publish" | "radar" | "redo" | "reload" | "remove" | "reply" | "route" | "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" | "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" | "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" | "dangerous" | "dashboard" | "database" | "delete" | "desktop" | "devices" | "draft" | "eco" | "edit" | "electric-meter" | "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-gallery" | "inbox" | "info" | "keep" | "keep-off" | "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" | "mic" | "mic-off" | "mode-dark" | "mode-light" | "notification" | "notification-important" | "notification-off" | "notification-unread" | "palette" | "pause-circle" | "photo-camera" | "play-circle" | "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" | "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" | null>;
12
+ readonly showRightIcon: import("@angular/core").InputSignal<boolean>;
13
+ readonly rightIconAction: import("@angular/core").InputSignal<"clean" | "visibilityOn" | "visibilityOff">;
14
+ readonly showLabelRequirement: import("@angular/core").InputSignal<boolean>;
15
+ readonly assistiveAppearance: import("@angular/core").InputSignal<"error" | "link" | "success" | "description">;
16
+ readonly showAssistiveIcon: import("@angular/core").InputSignal<boolean>;
17
+ readonly assistiveTextLabel: import("@angular/core").InputSignal<string>;
18
+ readonly error: import("@angular/core").InputSignal<boolean>;
19
+ readonly maxLength: import("@angular/core").InputSignal<number>;
20
+ readonly disabled: import("@angular/core").InputSignal<boolean>;
21
+ readonly readOnly: import("@angular/core").InputSignal<boolean>;
22
+ readonly width: import("@angular/core").InputSignal<string>;
23
+ readonly ariaLabel: import("@angular/core").InputSignal<string>;
24
+ readonly ariaRequired: import("@angular/core").InputSignal<boolean>;
25
+ readonly ariaLabelledby: import("@angular/core").InputSignal<string>;
26
+ readonly compactSpacing: import("@angular/core").InputSignal<boolean>;
27
+ readonly customStyle: import("@angular/core").InputSignal<Record<string, string> | undefined>;
28
+ readonly autocomplete: import("@angular/core").InputSignal<string>;
29
+ readonly highlighted: import("@angular/core").InputSignal<boolean>;
30
+ readonly valueChange: import("@angular/core").OutputEmitterRef<string>;
31
+ readonly rightIconClick: import("@angular/core").OutputEmitterRef<void>;
32
+ readonly characterCount: import("@angular/core").WritableSignal<number>;
33
+ readonly isHiddenInput: import("@angular/core").WritableSignal<boolean>;
34
+ readonly displayedLeftIcon: import("@angular/core").Signal<"cancel" | "close" | "copy" | "cut" | "error" | "paste" | "pause" | "play" | "sort" | "map" | "filter" | "article" | "label" | "link" | "menu" | "search" | "image" | "stop" | "add" | "apps" | "asterisk" | "bluetooth" | "check" | "compare" | "download" | "exclamation" | "forward" | "fullscreen" | "history" | "language" | "list" | "login" | "logout" | "monitoring" | "ohm" | "public" | "publish" | "radar" | "redo" | "reload" | "remove" | "reply" | "route" | "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" | "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" | "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" | "dangerous" | "dashboard" | "database" | "delete" | "desktop" | "devices" | "draft" | "eco" | "edit" | "electric-meter" | "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-gallery" | "inbox" | "info" | "keep" | "keep-off" | "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" | "mic" | "mic-off" | "mode-dark" | "mode-light" | "notification" | "notification-important" | "notification-off" | "notification-unread" | "palette" | "pause-circle" | "photo-camera" | "play-circle" | "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" | "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" | null>;
35
+ readonly displayCounter: import("@angular/core").Signal<boolean>;
36
+ readonly rightIconName: import("@angular/core").Signal<"visibility-show" | "visibility-hide" | "cancel">;
37
+ readonly rightIconAriaLabel: import("@angular/core").Signal<"" | "show text" | "hide text" | "clear">;
38
+ readonly shouldShowRightIcon: import("@angular/core").Signal<boolean>;
39
+ private lastParentValue;
40
+ constructor();
41
+ handleChange(event: Event): void;
42
+ onRightIconClickHandler(): void;
43
+ private toggleInputVisibility;
44
+ private triggerRightIconAction;
45
+ static ɵfac: i0.ɵɵFactoryDeclaration<BaseTextInputComponent, never>;
46
+ static ɵcmp: i0.ɵɵComponentDeclaration<BaseTextInputComponent, "rte-base-text-input", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "labelPosition": { "alias": "labelPosition"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "showCounter": { "alias": "showCounter"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "leftIcon": { "alias": "leftIcon"; "required": false; "isSignal": true; }; "showRightIcon": { "alias": "showRightIcon"; "required": false; "isSignal": true; }; "rightIconAction": { "alias": "rightIconAction"; "required": false; "isSignal": true; }; "showLabelRequirement": { "alias": "showLabelRequirement"; "required": false; "isSignal": true; }; "assistiveAppearance": { "alias": "assistiveAppearance"; "required": false; "isSignal": true; }; "showAssistiveIcon": { "alias": "showAssistiveIcon"; "required": false; "isSignal": true; }; "assistiveTextLabel": { "alias": "assistiveTextLabel"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "maxLength": { "alias": "maxLength"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "ariaRequired": { "alias": "ariaRequired"; "required": false; "isSignal": true; }; "ariaLabelledby": { "alias": "ariaLabelledby"; "required": false; "isSignal": true; }; "compactSpacing": { "alias": "compactSpacing"; "required": false; "isSignal": true; }; "customStyle": { "alias": "customStyle"; "required": false; "isSignal": true; }; "autocomplete": { "alias": "autocomplete"; "required": false; "isSignal": true; }; "highlighted": { "alias": "highlighted"; "required": false; "isSignal": true; }; }, { "valueChange": "valueChange"; "rightIconClick": "rightIconClick"; }, never, ["[baseTextInputRightSlot]"], true, never>;
47
+ }
@@ -1,42 +1,6 @@
1
+ import { BaseTextInputComponent } from "./base-text-input/base-text-input.component";
1
2
  import * as i0 from "@angular/core";
2
- export declare class TextInputComponent {
3
- readonly id: import("@angular/core").InputSignal<string | undefined>;
4
- readonly label: import("@angular/core").InputSignal<string>;
5
- readonly labelPosition: import("@angular/core").InputSignal<"top" | "side">;
6
- readonly required: import("@angular/core").InputSignal<boolean>;
7
- readonly showCounter: import("@angular/core").InputSignal<boolean>;
8
- readonly value: import("@angular/core").InputSignal<string>;
9
- readonly internalValue: import("@angular/core").WritableSignal<string>;
10
- readonly leftIcon: import("@angular/core").InputSignal<"error" | "article" | "label" | "link" | "map" | "menu" | "search" | "filter" | "image" | "stop" | "add" | "apps" | "asterisk" | "bluetooth" | "check" | "close" | "compare" | "cut" | "download" | "exclamation" | "forward" | "fullscreen" | "history" | "language" | "list" | "login" | "logout" | "monitoring" | "ohm" | "paste" | "public" | "publish" | "radar" | "redo" | "reload" | "remove" | "reply" | "route" | "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" | "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" | "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-gallery" | "inbox" | "info" | "keep" | "keep-off" | "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" | "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" | "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" | null>;
11
- readonly showRightIcon: import("@angular/core").InputSignal<boolean>;
12
- readonly rightIconAction: import("@angular/core").InputSignal<"clean" | "visibilityOn" | "visibilityOff">;
13
- readonly showLabelRequirement: import("@angular/core").InputSignal<boolean>;
14
- readonly assistiveAppearance: import("@angular/core").InputSignal<"error" | "link" | "success" | "description">;
15
- readonly showAssistiveIcon: import("@angular/core").InputSignal<boolean>;
16
- readonly assistiveTextLabel: import("@angular/core").InputSignal<string>;
17
- readonly error: import("@angular/core").InputSignal<boolean>;
18
- readonly maxLength: import("@angular/core").InputSignal<number>;
19
- readonly disabled: import("@angular/core").InputSignal<boolean>;
20
- readonly readOnly: import("@angular/core").InputSignal<boolean>;
21
- readonly width: import("@angular/core").InputSignal<string>;
22
- readonly ariaLabel: import("@angular/core").InputSignal<string>;
23
- readonly ariaRequired: import("@angular/core").InputSignal<boolean>;
24
- readonly ariaLabelledby: import("@angular/core").InputSignal<string>;
25
- readonly valueChange: import("@angular/core").OutputEmitterRef<string>;
26
- readonly rightIconClick: import("@angular/core").OutputEmitterRef<void>;
27
- readonly characterCount: import("@angular/core").WritableSignal<number>;
28
- readonly isHiddenInput: import("@angular/core").WritableSignal<boolean>;
29
- readonly displayedLeftIcon: import("@angular/core").Signal<"error" | "article" | "label" | "link" | "map" | "menu" | "search" | "filter" | "image" | "stop" | "add" | "apps" | "asterisk" | "bluetooth" | "check" | "close" | "compare" | "cut" | "download" | "exclamation" | "forward" | "fullscreen" | "history" | "language" | "list" | "login" | "logout" | "monitoring" | "ohm" | "paste" | "public" | "publish" | "radar" | "redo" | "reload" | "remove" | "reply" | "route" | "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" | "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" | "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-gallery" | "inbox" | "info" | "keep" | "keep-off" | "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" | "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" | "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" | null>;
30
- readonly displayCounter: import("@angular/core").Signal<boolean>;
31
- readonly rightIconName: import("@angular/core").Signal<"" | "close" | "visibility-show" | "visibility-hide">;
32
- readonly rightIconAriaLabel: import("@angular/core").Signal<"" | "show text" | "hide text" | "clear">;
33
- readonly shouldShowRightIcon: import("@angular/core").Signal<boolean>;
34
- private lastParentValue;
35
- constructor();
36
- handleChange(event: Event): void;
37
- onRightIconClickHandler(): void;
38
- private toggleInputVisibility;
39
- private triggerRightIconAction;
3
+ export declare class TextInputComponent extends BaseTextInputComponent {
40
4
  static ɵfac: i0.ɵɵFactoryDeclaration<TextInputComponent, never>;
41
- static ɵcmp: i0.ɵɵComponentDeclaration<TextInputComponent, "rte-text-input", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "labelPosition": { "alias": "labelPosition"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "showCounter": { "alias": "showCounter"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "leftIcon": { "alias": "leftIcon"; "required": false; "isSignal": true; }; "showRightIcon": { "alias": "showRightIcon"; "required": false; "isSignal": true; }; "rightIconAction": { "alias": "rightIconAction"; "required": false; "isSignal": true; }; "showLabelRequirement": { "alias": "showLabelRequirement"; "required": false; "isSignal": true; }; "assistiveAppearance": { "alias": "assistiveAppearance"; "required": false; "isSignal": true; }; "showAssistiveIcon": { "alias": "showAssistiveIcon"; "required": false; "isSignal": true; }; "assistiveTextLabel": { "alias": "assistiveTextLabel"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "maxLength": { "alias": "maxLength"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "ariaRequired": { "alias": "ariaRequired"; "required": false; "isSignal": true; }; "ariaLabelledby": { "alias": "ariaLabelledby"; "required": false; "isSignal": true; }; }, { "valueChange": "valueChange"; "rightIconClick": "rightIconClick"; }, never, never, true, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextInputComponent, "rte-text-input", never, {}, {}, never, never, true, never>;
42
6
  }
@@ -1,6 +1,7 @@
1
+ import { SimpleChanges, OnChanges } from "@angular/core";
1
2
  import { ToastType } from "@design-system-rte/core/components/toast/toast.interface";
2
3
  import * as i0 from "@angular/core";
3
- export declare class ToastComponent {
4
+ export declare class ToastComponent implements OnChanges {
4
5
  readonly id: import("@angular/core").InputSignal<string>;
5
6
  readonly message: import("@angular/core").InputSignal<string>;
6
7
  readonly type: import("@angular/core").InputSignal<ToastType>;
@@ -18,8 +19,15 @@ export declare class ToastComponent {
18
19
  readonly displayCustomIcon: import("@angular/core").Signal<boolean | undefined>;
19
20
  readonly displayLeftIcon: import("@angular/core").Signal<string | false | undefined>;
20
21
  readonly displayActionButton: import("@angular/core").Signal<boolean | "" | undefined>;
22
+ readonly shouldAutoDismiss: import("@angular/core").Signal<boolean | undefined>;
23
+ readonly timer: import("@angular/core").WritableSignal<number | null>;
24
+ ngOnChanges(changes: SimpleChanges): void;
21
25
  onClickActionButton(): void;
26
+ handleMouseEnter(): void;
27
+ handleMouseLeave(): void;
22
28
  clickCloseButton(): void;
29
+ startTimer(): void;
30
+ stopTimer(): void;
23
31
  readonly position: import("@angular/core").Signal<string | undefined>;
24
32
  readonly alignment: import("@angular/core").Signal<string | undefined>;
25
33
  readonly visible: import("@angular/core").WritableSignal<boolean>;
@@ -2,7 +2,7 @@ import { Alignment } from "@design-system-rte/core/common/common-types";
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class TooltipComponent {
4
4
  readonly label: import("@angular/core").InputSignal<string>;
5
- readonly position: import("@angular/core").InputSignal<"top" | "bottom" | "left" | "right">;
5
+ readonly position: import("@angular/core").InputSignal<"left" | "right" | "top" | "bottom">;
6
6
  readonly alignment: import("@angular/core").InputSignal<Alignment>;
7
7
  readonly arrow: import("@angular/core").InputSignal<boolean>;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<TooltipComponent, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@design-system-rte/angular",
3
- "version": "1.0.1",
3
+ "version": "1.2.0",
4
4
  "description": "Angular components for the Design System RTE",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -11,7 +11,7 @@
11
11
  "@angular/core": "^18.2.14"
12
12
  },
13
13
  "dependencies": {
14
- "@design-system-rte/core": "^1.1.0",
14
+ "@design-system-rte/core": "^1.2.1",
15
15
  "tslib": "^2.3.0"
16
16
  },
17
17
  "sideEffects": false,
package/public-api.d.ts CHANGED
@@ -25,7 +25,10 @@ export * from "./lib/components/popover/popover.directive";
25
25
  export * from "./lib/components/modal/modal-trigger/modal-trigger.directive";
26
26
  export * from "./lib/components/modal/modal.directive";
27
27
  export * from "./lib/components/modal/modal.module";
28
+ export * from "./lib/components/searchbar/searchbar.component";
28
29
  export * from "./lib/components/side-nav/side-nav.component";
29
30
  export * from "./lib/components/toast/toast.component";
30
31
  export * from "./lib/components/toast/toast.service";
31
32
  export * from "./lib/components/tag/tag.component";
33
+ export * from "./lib/components/select/select.component";
34
+ export * from "./lib/components/tab/tab.component";