@db-ux/ngx-core-components 4.10.2 → 4.11.1

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.
@@ -1,7 +1,8 @@
1
1
  import * as _angular_core from '@angular/core';
2
- import { AfterViewInit, InputSignal, ElementRef, OnDestroy, ModelSignal, Renderer2 } from '@angular/core';
2
+ import { AfterViewInit, OnDestroy, InputSignal, ElementRef, ModelSignal, Renderer2 } from '@angular/core';
3
3
  import { IconTypes } from '@db-ux/core-foundations';
4
4
  import { ControlValueAccessor } from '@angular/forms';
5
+ import * as _db_ux_ngx_core_components from '@db-ux/ngx-core-components';
5
6
 
6
7
  interface GlobalProps {
7
8
  /**
@@ -464,11 +465,11 @@ type CloseEventProps<T> = {
464
465
  type CloseEventState<T> = {
465
466
  handleClose: (event?: T | void, forceClose?: boolean) => void;
466
467
  };
467
- declare const AlignmentList: readonly ["start", "center"];
468
+ declare const AlignmentList: readonly ["start", "center", "end"];
468
469
  type AlignmentType = (typeof AlignmentList)[number];
469
470
  type AlignmentProps = {
470
471
  /**
471
- * Define the content alignment in full width
472
+ * Define the content alignment
472
473
  */
473
474
  alignment?: AlignmentType | string;
474
475
  };
@@ -558,6 +559,48 @@ interface PatternhubProps {
558
559
  */
559
560
  isPatternhub?: boolean;
560
561
  }
562
+ type DBTableCellProps = {
563
+ /**
564
+ * The **`colSpan`** read-only property of the HTMLTableCellElement interface represents the number of columns this cell must span; this lets the cell occupy space across multiple columns of the table.
565
+ *
566
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/colSpan)
567
+ */
568
+ colSpan?: number | string;
569
+ /**
570
+ * Lowercase HTML attribute alternative to `colSpan`. Use this in template languages that require lowercase attributes (e.g. Angular, Vue).
571
+ * If both `colSpan` and `colspan` are provided, `colSpan` takes precedence.
572
+ *
573
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/colSpan)
574
+ */
575
+ colspan?: number | string;
576
+ /**
577
+ * The **`headers`** property of the HTMLTableCellElement interface contains a list of IDs of th elements that are _headers_ for this specific cell.
578
+ *
579
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/headers)
580
+ */
581
+ headers?: string;
582
+ /**
583
+ * The **`rowSpan`** read-only property of the HTMLTableCellElement interface represents the number of rows this cell must span; this lets the cell occupy space across multiple rows of the table.
584
+ *
585
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/rowSpan)
586
+ */
587
+ rowSpan?: number | string;
588
+ /**
589
+ * Lowercase HTML attribute alternative to `rowSpan`. Use this in template languages that require lowercase attributes (e.g. Angular, Vue).
590
+ * If both `rowSpan` and `rowspan` are provided, `rowSpan` takes precedence.
591
+ *
592
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/rowSpan)
593
+ */
594
+ rowspan?: number | string;
595
+ /**
596
+ * Set the horizontal alignment of the cell content.
597
+ */
598
+ horizontalAlignment?: AlignmentType;
599
+ /**
600
+ * Set the vertical alignment of the cell content.
601
+ */
602
+ verticalAlignment?: AlignmentType;
603
+ };
561
604
 
562
605
  declare const uuid: () => string;
563
606
  declare const addAttributeToChildren: (element: Element, attribute: {
@@ -582,11 +625,16 @@ declare const hasVoiceOver: () => boolean;
582
625
  declare const isIOSSafari: () => boolean;
583
626
  declare const delay: (fn: () => void, ms: number) => Promise<unknown>;
584
627
  /**
585
- * Some frameworks like stencil would not add "true" as value for a prop
586
- * if it is used in a framework like angular e.g.: [disabled]="myDisabledProp"
587
- * @param originBool Some boolean to convert to string
628
+ * Converts boolean-like inputs to "true" or "false" strings.
629
+ * Handles HTML-style boolean attributes where an empty string or the
630
+ * attribute's own name as value (e.g. noText="noText") should be treated as true.
631
+ * Some frameworks like Stencil do not add "true" as value for a prop
632
+ * if it is used in a framework like Angular e.g.: [disabled]="myDisabledProp"
633
+ * @param originBool Boolean or string value to convert
634
+ * @param propertyName The prop/attribute name — when originBool is a string equal
635
+ * to this name (case-insensitive), it is treated as true
588
636
  */
589
- declare const getBooleanAsString: (originBool?: boolean | string) => any;
637
+ declare const getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
590
638
  declare const getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
591
639
  declare const getNumber: (originNumber?: number | string, alternativeNumber?: number | string) => number | undefined;
592
640
  /**
@@ -699,7 +747,7 @@ type DBAccordionDefaultState = {
699
747
  };
700
748
  type DBAccordionState = DBAccordionDefaultState & InitializedState;
701
749
 
702
- declare class DBAccordion implements AfterViewInit {
750
+ declare class DBAccordion implements AfterViewInit, OnDestroy {
703
751
  protected readonly cls: (...args: ClassNameArg[]) => string;
704
752
  name: InputSignal<DBAccordionProps["name"]>;
705
753
  behavior: InputSignal<DBAccordionProps["behavior"]>;
@@ -713,7 +761,9 @@ declare class DBAccordion implements AfterViewInit {
713
761
  _name: _angular_core.WritableSignal<string | undefined>;
714
762
  initialized: _angular_core.WritableSignal<boolean>;
715
763
  _initOpenIndexDone: _angular_core.WritableSignal<boolean>;
764
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
716
765
  convertItems(): any;
766
+ setupObserver(element: HTMLElement | null): void;
717
767
  trackByItem0(index: number, item: any): string;
718
768
  constructor();
719
769
  /**
@@ -723,13 +773,14 @@ declare class DBAccordion implements AfterViewInit {
723
773
  */
724
774
  private enableAttributePassing;
725
775
  ngAfterViewInit(): void;
776
+ ngOnDestroy(): void;
726
777
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBAccordion, never>;
727
778
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBAccordion, "db-accordion", never, { "name": { "alias": "name"; "required": false; "isSignal": true; }; "behavior": { "alias": "behavior"; "required": false; "isSignal": true; }; "initOpenIndex": { "alias": "initOpenIndex"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
728
779
  }
729
780
 
730
- declare class DBAccordionItem implements AfterViewInit {
781
+ declare class DBAccordionItem implements AfterViewInit, OnDestroy {
731
782
  protected readonly cls: (...args: ClassNameArg[]) => string;
732
- protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
783
+ protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
733
784
  defaultOpen: InputSignal<DBAccordionItemProps["defaultOpen"]>;
734
785
  name: InputSignal<DBAccordionItemProps["name"]>;
735
786
  open: InputSignal<DBAccordionItemProps["open"]>;
@@ -744,8 +795,10 @@ declare class DBAccordionItem implements AfterViewInit {
744
795
  _open: _angular_core.WritableSignal<boolean | undefined>;
745
796
  _name: _angular_core.WritableSignal<string | undefined>;
746
797
  initialized: _angular_core.WritableSignal<boolean>;
798
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
747
799
  handleNameAttribute(): void;
748
800
  handleToggle(event: ClickEvent<HTMLElement> | any): void;
801
+ setupObserver(element: HTMLElement | null): void;
749
802
  constructor();
750
803
  /**
751
804
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -754,6 +807,7 @@ declare class DBAccordionItem implements AfterViewInit {
754
807
  */
755
808
  private enableAttributePassing;
756
809
  ngAfterViewInit(): void;
810
+ ngOnDestroy(): void;
757
811
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBAccordionItem, never>;
758
812
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBAccordionItem, "db-accordion-item", never, { "defaultOpen": { "alias": "defaultOpen"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "headlinePlain": { "alias": "headlinePlain"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; }, { "toggle": "toggle"; }, never, ["[headline]", "*"], true, never>;
759
813
  }
@@ -774,9 +828,9 @@ type DBBadgeProps = DBBadgeDefaultProps & GlobalProps & SemanticProps & SizeProp
774
828
  type DBBadgeDefaultState = {};
775
829
  type DBBadgeState = DBBadgeDefaultState & GlobalState & InitializedState;
776
830
 
777
- declare class DBBadge implements AfterViewInit {
831
+ declare class DBBadge implements AfterViewInit, OnDestroy {
778
832
  protected readonly cls: (...args: ClassNameArg[]) => string;
779
- protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
833
+ protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
780
834
  protected readonly DEFAULT_LABEL: string;
781
835
  placement: InputSignal<DBBadgeProps["placement"]>;
782
836
  id: InputSignal<DBBadgeProps["id"]>;
@@ -790,6 +844,8 @@ declare class DBBadge implements AfterViewInit {
790
844
  text: InputSignal<DBBadgeProps["text"]>;
791
845
  _ref: _angular_core.Signal<ElementRef<any> | undefined>;
792
846
  initialized: _angular_core.WritableSignal<boolean>;
847
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
848
+ setupObserver(element: HTMLElement | null): void;
793
849
  constructor();
794
850
  /**
795
851
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -798,6 +854,7 @@ declare class DBBadge implements AfterViewInit {
798
854
  */
799
855
  private enableAttributePassing;
800
856
  ngAfterViewInit(): void;
857
+ ngOnDestroy(): void;
801
858
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBBadge, never>;
802
859
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBBadge, "db-badge", never, { "placement": { "alias": "placement"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "semantic": { "alias": "semantic"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "emphasis": { "alias": "emphasis"; "required": false; "isSignal": true; }; "wrap": { "alias": "wrap"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
803
860
  }
@@ -812,9 +869,9 @@ type DBBrandProps = DBBrandDefaultProps & GlobalProps & IconProps & ShowIconProp
812
869
  type DBBrandDefaultState = {};
813
870
  type DBBrandState = DBBrandDefaultState & GlobalState;
814
871
 
815
- declare class DBBrand implements AfterViewInit {
872
+ declare class DBBrand implements AfterViewInit, OnDestroy {
816
873
  protected readonly DEFAULT_ICON: string;
817
- protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
874
+ protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
818
875
  protected readonly cls: (...args: ClassNameArg[]) => string;
819
876
  hideLogo: InputSignal<DBBrandProps["hideLogo"]>;
820
877
  icon: InputSignal<DBBrandProps["icon"]>;
@@ -824,6 +881,8 @@ declare class DBBrand implements AfterViewInit {
824
881
  className: InputSignal<DBBrandProps["className"]>;
825
882
  text: InputSignal<DBBrandProps["text"]>;
826
883
  _ref: _angular_core.Signal<ElementRef<any> | undefined>;
884
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
885
+ setupObserver(element: HTMLElement | null): void;
827
886
  constructor();
828
887
  /**
829
888
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -832,6 +891,7 @@ declare class DBBrand implements AfterViewInit {
832
891
  */
833
892
  private enableAttributePassing;
834
893
  ngAfterViewInit(): void;
894
+ ngOnDestroy(): void;
835
895
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBBrand, never>;
836
896
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBBrand, "db-brand", never, { "hideLogo": { "alias": "hideLogo"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "showIcon": { "alias": "showIcon"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
837
897
  }
@@ -874,10 +934,10 @@ type DBButtonDefaultState = {
874
934
  };
875
935
  type DBButtonState = DBButtonDefaultState & GlobalState;
876
936
 
877
- declare class DBButton implements AfterViewInit {
937
+ declare class DBButton implements AfterViewInit, OnDestroy {
878
938
  protected readonly cls: (...args: ClassNameArg[]) => string;
879
939
  protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
880
- protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
940
+ protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
881
941
  type: InputSignal<DBButtonProps["type"]>;
882
942
  id: InputSignal<DBButtonProps["id"]>;
883
943
  propOverrides: InputSignal<DBButtonProps["propOverrides"]>;
@@ -900,7 +960,9 @@ declare class DBButton implements AfterViewInit {
900
960
  text: InputSignal<DBButtonProps["text"]>;
901
961
  click: _angular_core.OutputEmitterRef<void | MouseEvent>;
902
962
  _ref: _angular_core.Signal<ElementRef<any> | undefined>;
963
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
903
964
  getButtonType(): "button" | "reset" | "submit" | undefined;
965
+ setupObserver(element: HTMLElement | null): void;
904
966
  constructor();
905
967
  /**
906
968
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -909,6 +971,7 @@ declare class DBButton implements AfterViewInit {
909
971
  */
910
972
  private enableAttributePassing;
911
973
  ngAfterViewInit(): void;
974
+ ngOnDestroy(): void;
912
975
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBButton, never>;
913
976
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBButton, "db-button", never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "iconLeading": { "alias": "iconLeading"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "showIconLeading": { "alias": "showIconLeading"; "required": false; "isSignal": true; }; "showIcon": { "alias": "showIcon"; "required": false; "isSignal": true; }; "iconTrailing": { "alias": "iconTrailing"; "required": false; "isSignal": true; }; "showIconTrailing": { "alias": "showIconTrailing"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "wrap": { "alias": "wrap"; "required": false; "isSignal": true; }; "noText": { "alias": "noText"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "form": { "alias": "form"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; }, { "click": "click"; }, never, ["*"], true, never>;
914
977
  }
@@ -931,7 +994,7 @@ type DBCardProps = DBCardDefaultProps & GlobalProps & ClickEventProps<HTMLElemen
931
994
  type DBCardDefaultState = {};
932
995
  type DBCardState = DBCardDefaultState & GlobalState & ClickEventState<HTMLElement>;
933
996
 
934
- declare class DBCard implements AfterViewInit {
997
+ declare class DBCard implements AfterViewInit, OnDestroy {
935
998
  protected readonly cls: (...args: ClassNameArg[]) => string;
936
999
  id: InputSignal<DBCardProps["id"]>;
937
1000
  propOverrides: InputSignal<DBCardProps["propOverrides"]>;
@@ -941,7 +1004,9 @@ declare class DBCard implements AfterViewInit {
941
1004
  spacing: InputSignal<DBCardProps["spacing"]>;
942
1005
  click: _angular_core.OutputEmitterRef<void | MouseEvent>;
943
1006
  _ref: _angular_core.Signal<ElementRef<any> | undefined>;
1007
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
944
1008
  handleClick(event: ClickEvent<HTMLElement>): void;
1009
+ setupObserver(element: HTMLElement | null): void;
945
1010
  constructor();
946
1011
  /**
947
1012
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -950,6 +1015,7 @@ declare class DBCard implements AfterViewInit {
950
1015
  */
951
1016
  private enableAttributePassing;
952
1017
  ngAfterViewInit(): void;
1018
+ ngOnDestroy(): void;
953
1019
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBCard, never>;
954
1020
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBCard, "db-card", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "behavior": { "alias": "behavior"; "required": false; "isSignal": true; }; "elevationLevel": { "alias": "elevationLevel"; "required": false; "isSignal": true; }; "spacing": { "alias": "spacing"; "required": false; "isSignal": true; }; }, { "click": "click"; }, never, ["*"], true, never>;
955
1021
  }
@@ -1004,12 +1070,14 @@ declare class DBCheckbox implements AfterViewInit, ControlValueAccessor, OnDestr
1004
1070
  _descByIds: _angular_core.WritableSignal<string | undefined>;
1005
1071
  _voiceOverFallback: _angular_core.WritableSignal<string | undefined>;
1006
1072
  abortController: _angular_core.WritableSignal<AbortController | undefined>;
1073
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
1007
1074
  hasValidState(): boolean;
1008
1075
  handleValidation(): void;
1009
1076
  handleChange(event: ChangeEvent<HTMLInputElement>, reset?: boolean): void;
1010
1077
  handleBlur(event: InteractionEvent<HTMLInputElement> | any): void;
1011
1078
  handleFocus(event: InteractionEvent<HTMLInputElement> | any): void;
1012
1079
  resetIds(): void;
1080
+ setupObserver(element: HTMLElement | null): void;
1013
1081
  constructor(renderer: Renderer2);
1014
1082
  /**
1015
1083
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -1033,9 +1101,9 @@ type DBCustomButtonProps = DBCustomButtonDefaultProps & DBButtonSharedProps & Gl
1033
1101
  type DBCustomButtonDefaultState = {};
1034
1102
  type DBCustomButtonState = DBCustomButtonDefaultState & GlobalState;
1035
1103
 
1036
- declare class DBCustomButton implements AfterViewInit {
1104
+ declare class DBCustomButton implements AfterViewInit, OnDestroy {
1037
1105
  protected readonly cls: (...args: ClassNameArg[]) => string;
1038
- protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
1106
+ protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
1039
1107
  id: InputSignal<DBCustomButtonProps["id"]>;
1040
1108
  propOverrides: InputSignal<DBCustomButtonProps["propOverrides"]>;
1041
1109
  className: InputSignal<DBCustomButtonProps["className"]>;
@@ -1050,6 +1118,8 @@ declare class DBCustomButton implements AfterViewInit {
1050
1118
  variant: InputSignal<DBCustomButtonProps["variant"]>;
1051
1119
  noText: InputSignal<DBCustomButtonProps["noText"]>;
1052
1120
  _ref: _angular_core.Signal<ElementRef<any> | undefined>;
1121
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
1122
+ setupObserver(element: HTMLElement | null): void;
1053
1123
  constructor();
1054
1124
  /**
1055
1125
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -1058,6 +1128,7 @@ declare class DBCustomButton implements AfterViewInit {
1058
1128
  */
1059
1129
  private enableAttributePassing;
1060
1130
  ngAfterViewInit(): void;
1131
+ ngOnDestroy(): void;
1061
1132
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBCustomButton, never>;
1062
1133
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBCustomButton, "db-custom-button", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "iconLeading": { "alias": "iconLeading"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "showIconLeading": { "alias": "showIconLeading"; "required": false; "isSignal": true; }; "showIcon": { "alias": "showIcon"; "required": false; "isSignal": true; }; "iconTrailing": { "alias": "iconTrailing"; "required": false; "isSignal": true; }; "showIconTrailing": { "alias": "showIconTrailing"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "noText": { "alias": "noText"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
1063
1134
  }
@@ -1336,7 +1407,7 @@ type DBCustomSelectState = DBCustomSelectDefaultState & GlobalState & FormState
1336
1407
  declare class DBCustomSelect implements AfterViewInit, ControlValueAccessor, OnDestroy {
1337
1408
  private renderer;
1338
1409
  protected readonly cls: (...args: ClassNameArg[]) => string;
1339
- protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
1410
+ protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
1340
1411
  protected readonly getHideProp: (show?: boolean | string) => any;
1341
1412
  protected readonly DEFAULT_LABEL: string;
1342
1413
  protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
@@ -1437,6 +1508,7 @@ declare class DBCustomSelect implements AfterViewInit, ControlValueAccessor, OnD
1437
1508
  _searchValue: _angular_core.WritableSignal<string | undefined>;
1438
1509
  selectAllChecked: _angular_core.WritableSignal<boolean>;
1439
1510
  selectAllIndeterminate: _angular_core.WritableSignal<boolean>;
1511
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
1440
1512
  handleDocumentScroll(event: any): void;
1441
1513
  hasValidState(): boolean;
1442
1514
  handleValidation(): void;
@@ -1463,6 +1535,7 @@ declare class DBCustomSelect implements AfterViewInit, ControlValueAccessor, OnD
1463
1535
  handleSummaryFocus(): void;
1464
1536
  resetIds(): void;
1465
1537
  satisfyReact(event: any): void;
1538
+ setupObserver(element: HTMLElement | null): void;
1466
1539
  trackByOption0(_: number, option: any): string;
1467
1540
  trackByOption1(_: number, option: any): string;
1468
1541
  trackByOption2(_: number, option: any): string;
@@ -1484,13 +1557,15 @@ declare class DBCustomSelect implements AfterViewInit, ControlValueAccessor, OnD
1484
1557
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBCustomSelect, "db-custom-select", never, { "invalidMessage": { "alias": "invalidMessage"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "message": { "alias": "message"; "required": false; "isSignal": true; }; "showMessage": { "alias": "showMessage"; "required": false; "isSignal": true; }; "ariaDescribedBy": { "alias": "ariaDescribedBy"; "required": false; "isSignal": true; }; "showNoResults": { "alias": "showNoResults"; "required": false; "isSignal": true; }; "showLoading": { "alias": "showLoading"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "showSelectAll": { "alias": "showSelectAll"; "required": false; "isSignal": true; }; "showSearch": { "alias": "showSearch"; "required": false; "isSignal": true; }; "values": { "alias": "values"; "required": false; "isSignal": true; }; "validation": { "alias": "validation"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "searchValue": { "alias": "searchValue"; "required": false; "isSignal": true; }; "selectedLabels": { "alias": "selectedLabels"; "required": false; "isSignal": true; }; "transformSelectedLabels": { "alias": "transformSelectedLabels"; "required": false; "isSignal": true; }; "selectedType": { "alias": "selectedType"; "required": false; "isSignal": true; }; "amountText": { "alias": "amountText"; "required": false; "isSignal": true; }; "validMessage": { "alias": "validMessage"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "selectAllLabel": { "alias": "selectAllLabel"; "required": false; "isSignal": true; }; "removeTagsTexts": { "alias": "removeTagsTexts"; "required": false; "isSignal": true; }; "placement": { "alias": "placement"; "required": false; "isSignal": true; }; "searchFilter": { "alias": "searchFilter"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "formFieldWidth": { "alias": "formFieldWidth"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "showRequiredAsterisk": { "alias": "showRequiredAsterisk"; "required": false; "isSignal": true; }; "showLabel": { "alias": "showLabel"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "showIcon": { "alias": "showIcon"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "form": { "alias": "form"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; "selectedPrefix": { "alias": "selectedPrefix"; "required": false; "isSignal": true; }; "dropdownWidth": { "alias": "dropdownWidth"; "required": false; "isSignal": true; }; "searchLabel": { "alias": "searchLabel"; "required": false; "isSignal": true; }; "searchPlaceholder": { "alias": "searchPlaceholder"; "required": false; "isSignal": true; }; "listLabel": { "alias": "listLabel"; "required": false; "isSignal": true; }; "loadingText": { "alias": "loadingText"; "required": false; "isSignal": true; }; "noResultsText": { "alias": "noResultsText"; "required": false; "isSignal": true; }; "mobileCloseButtonText": { "alias": "mobileCloseButtonText"; "required": false; "isSignal": true; }; "showClearSelection": { "alias": "showClearSelection"; "required": false; "isSignal": true; }; "clearSelectionText": { "alias": "clearSelectionText"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "messageIcon": { "alias": "messageIcon"; "required": false; "isSignal": true; }; }, { "values": "valuesChange"; "disabled": "disabledChange"; "amountChange": "amountChange"; "dropdownToggle": "dropdownToggle"; "optionSelected": "optionSelected"; "search": "search"; }, never, ["*"], true, never>;
1485
1558
  }
1486
1559
 
1487
- declare class DBCustomSelectDropdown implements AfterViewInit {
1560
+ declare class DBCustomSelectDropdown implements AfterViewInit, OnDestroy {
1488
1561
  protected readonly cls: (...args: ClassNameArg[]) => string;
1489
1562
  id: InputSignal<DBCustomSelectDropdownProps["id"]>;
1490
1563
  propOverrides: InputSignal<DBCustomSelectDropdownProps["propOverrides"]>;
1491
1564
  className: InputSignal<DBCustomSelectDropdownProps["className"]>;
1492
1565
  width: InputSignal<DBCustomSelectDropdownProps["width"]>;
1493
1566
  _ref: _angular_core.Signal<ElementRef<any> | undefined>;
1567
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
1568
+ setupObserver(element: HTMLElement | null): void;
1494
1569
  constructor();
1495
1570
  /**
1496
1571
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -1499,16 +1574,19 @@ declare class DBCustomSelectDropdown implements AfterViewInit {
1499
1574
  */
1500
1575
  private enableAttributePassing;
1501
1576
  ngAfterViewInit(): void;
1577
+ ngOnDestroy(): void;
1502
1578
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBCustomSelectDropdown, never>;
1503
1579
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBCustomSelectDropdown, "db-custom-select-dropdown", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
1504
1580
  }
1505
1581
 
1506
- declare class DBCustomSelectFormField implements AfterViewInit {
1582
+ declare class DBCustomSelectFormField implements AfterViewInit, OnDestroy {
1507
1583
  protected readonly cls: (...args: ClassNameArg[]) => string;
1508
1584
  id: InputSignal<DBCustomSelectFormFieldProps["id"]>;
1509
1585
  propOverrides: InputSignal<DBCustomSelectFormFieldProps["propOverrides"]>;
1510
1586
  className: InputSignal<DBCustomSelectFormFieldProps["className"]>;
1511
1587
  _ref: _angular_core.Signal<ElementRef<any> | undefined>;
1588
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
1589
+ setupObserver(element: HTMLElement | null): void;
1512
1590
  constructor();
1513
1591
  /**
1514
1592
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -1517,6 +1595,7 @@ declare class DBCustomSelectFormField implements AfterViewInit {
1517
1595
  */
1518
1596
  private enableAttributePassing;
1519
1597
  ngAfterViewInit(): void;
1598
+ ngOnDestroy(): void;
1520
1599
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBCustomSelectFormField, never>;
1521
1600
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBCustomSelectFormField, "db-custom-select-form-field", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
1522
1601
  }
@@ -1529,7 +1608,7 @@ type DBCustomSelectListProps = DBCustomSelectListDefaultProps & GlobalProps;
1529
1608
  type DBCustomSelectListDefaultState = {};
1530
1609
  type DBCustomSelectListState = DBCustomSelectListDefaultState & GlobalState;
1531
1610
 
1532
- declare class DBCustomSelectList implements AfterViewInit {
1611
+ declare class DBCustomSelectList implements AfterViewInit, OnDestroy {
1533
1612
  protected readonly cls: (...args: ClassNameArg[]) => string;
1534
1613
  multiple: InputSignal<DBCustomSelectListProps["multiple"]>;
1535
1614
  label: InputSignal<DBCustomSelectListProps["label"]>;
@@ -1537,6 +1616,8 @@ declare class DBCustomSelectList implements AfterViewInit {
1537
1616
  propOverrides: InputSignal<DBCustomSelectListProps["propOverrides"]>;
1538
1617
  className: InputSignal<DBCustomSelectListProps["className"]>;
1539
1618
  _ref: _angular_core.Signal<ElementRef<any> | undefined>;
1619
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
1620
+ setupObserver(element: HTMLElement | null): void;
1540
1621
  constructor();
1541
1622
  /**
1542
1623
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -1545,14 +1626,15 @@ declare class DBCustomSelectList implements AfterViewInit {
1545
1626
  */
1546
1627
  private enableAttributePassing;
1547
1628
  ngAfterViewInit(): void;
1629
+ ngOnDestroy(): void;
1548
1630
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBCustomSelectList, never>;
1549
1631
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBCustomSelectList, "db-custom-select-list", never, { "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
1550
1632
  }
1551
1633
 
1552
- declare class DBCustomSelectListItem implements AfterViewInit, ControlValueAccessor {
1634
+ declare class DBCustomSelectListItem implements AfterViewInit, ControlValueAccessor, OnDestroy {
1553
1635
  private renderer;
1554
1636
  protected readonly cls: (...args: ClassNameArg[]) => string;
1555
- protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
1637
+ protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
1556
1638
  protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
1557
1639
  isGroupTitle: InputSignal<DBCustomSelectListItemProps["isGroupTitle"]>;
1558
1640
  showDivider: InputSignal<DBCustomSelectListItemProps["showDivider"]>;
@@ -1571,8 +1653,10 @@ declare class DBCustomSelectListItem implements AfterViewInit, ControlValueAcces
1571
1653
  change: _angular_core.OutputEmitterRef<void | Event>;
1572
1654
  _ref: _angular_core.Signal<ElementRef<any> | undefined>;
1573
1655
  hasDivider: _angular_core.WritableSignal<boolean | undefined>;
1656
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
1574
1657
  handleChange(event: ChangeEvent<HTMLInputElement>): void;
1575
1658
  getIconTrailing(): "check" | "x_placeholder" | undefined;
1659
+ setupObserver(element: HTMLElement | null): void;
1576
1660
  constructor(renderer: Renderer2);
1577
1661
  /**
1578
1662
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -1586,6 +1670,7 @@ declare class DBCustomSelectListItem implements AfterViewInit, ControlValueAcces
1586
1670
  registerOnTouched(onTouched: any): void;
1587
1671
  setDisabledState(disabled: boolean): void;
1588
1672
  ngAfterViewInit(): void;
1673
+ ngOnDestroy(): void;
1589
1674
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBCustomSelectListItem, never>;
1590
1675
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBCustomSelectListItem, "db-custom-select-list-item", never, { "isGroupTitle": { "alias": "isGroupTitle"; "required": false; "isSignal": true; }; "showDivider": { "alias": "showDivider"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "groupTitle": { "alias": "groupTitle"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "showIcon": { "alias": "showIcon"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; }, { "checked": "checkedChange"; "disabled": "disabledChange"; "change": "change"; }, never, ["*"], true, never>;
1591
1676
  }
@@ -1608,7 +1693,7 @@ type DBDividerProps = DBDividerDefaultProps & GlobalProps & EmphasisProps & Marg
1608
1693
  type DBDividerDefaultState = {};
1609
1694
  type DBDividerState = DBDividerDefaultState & GlobalState;
1610
1695
 
1611
- declare class DBDivider implements AfterViewInit {
1696
+ declare class DBDivider implements AfterViewInit, OnDestroy {
1612
1697
  protected readonly cls: (...args: ClassNameArg[]) => string;
1613
1698
  id: InputSignal<DBDividerProps["id"]>;
1614
1699
  propOverrides: InputSignal<DBDividerProps["propOverrides"]>;
@@ -1618,6 +1703,8 @@ declare class DBDivider implements AfterViewInit {
1618
1703
  width: InputSignal<DBDividerProps["width"]>;
1619
1704
  className: InputSignal<DBDividerProps["className"]>;
1620
1705
  _ref: _angular_core.Signal<ElementRef<any> | undefined>;
1706
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
1707
+ setupObserver(element: HTMLElement | null): void;
1621
1708
  constructor();
1622
1709
  /**
1623
1710
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -1626,6 +1713,7 @@ declare class DBDivider implements AfterViewInit {
1626
1713
  */
1627
1714
  private enableAttributePassing;
1628
1715
  ngAfterViewInit(): void;
1716
+ ngOnDestroy(): void;
1629
1717
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBDivider, never>;
1630
1718
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBDivider, "db-divider", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "margin": { "alias": "margin"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "emphasis": { "alias": "emphasis"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1631
1719
  }
@@ -1680,9 +1768,9 @@ type DBDrawerDefaultState = {
1680
1768
  };
1681
1769
  type DBDrawerState = DBDrawerDefaultState & GlobalState & CloseEventState<ClickEvent<HTMLButtonElement | HTMLDialogElement> | GeneralKeyboardEvent<HTMLDialogElement>> & InitializedState;
1682
1770
 
1683
- declare class DBDrawer implements AfterViewInit {
1771
+ declare class DBDrawer implements AfterViewInit, OnDestroy {
1684
1772
  protected readonly cls: (...args: ClassNameArg[]) => string;
1685
- protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
1773
+ protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
1686
1774
  protected readonly DEFAULT_CLOSE_BUTTON: string;
1687
1775
  open: InputSignal<DBDrawerProps["open"]>;
1688
1776
  position: InputSignal<DBDrawerProps["position"]>;
@@ -1701,8 +1789,10 @@ declare class DBDrawer implements AfterViewInit {
1701
1789
  _ref: _angular_core.Signal<ElementRef<any> | undefined>;
1702
1790
  dialogContainerRef: _angular_core.Signal<ElementRef<any> | undefined>;
1703
1791
  initialized: _angular_core.WritableSignal<boolean>;
1792
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
1704
1793
  handleClose(event?: ClickEvent<HTMLButtonElement | HTMLDialogElement> | GeneralKeyboardEvent<HTMLDialogElement> | void, forceClose?: boolean): void;
1705
1794
  handleDialogOpen(): void;
1795
+ setupObserver(element: HTMLElement | null): void;
1706
1796
  constructor();
1707
1797
  /**
1708
1798
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -1711,6 +1801,7 @@ declare class DBDrawer implements AfterViewInit {
1711
1801
  */
1712
1802
  private enableAttributePassing;
1713
1803
  ngAfterViewInit(): void;
1804
+ ngOnDestroy(): void;
1714
1805
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBDrawer, never>;
1715
1806
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBDrawer, "db-drawer", never, { "open": { "alias": "open"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "backdrop": { "alias": "backdrop"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "direction": { "alias": "direction"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "spacing": { "alias": "spacing"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "rounded": { "alias": "rounded"; "required": false; "isSignal": true; }; "closeButtonId": { "alias": "closeButtonId"; "required": false; "isSignal": true; }; "closeButtonText": { "alias": "closeButtonText"; "required": false; "isSignal": true; }; }, { "close": "close"; }, never, ["[drawer-header]", "*"], true, never>;
1716
1807
  }
@@ -1759,7 +1850,7 @@ type DBHeaderDefaultState = {
1759
1850
  };
1760
1851
  type DBHeaderState = DBHeaderDefaultState & GlobalState & ToggleEventState<HTMLElement> & InitializedState & NavigationBehaviorState;
1761
1852
 
1762
- declare class DBHeader implements AfterViewInit {
1853
+ declare class DBHeader implements AfterViewInit, OnDestroy {
1763
1854
  dbNavigation: any;
1764
1855
  dbMetaNavigation: any;
1765
1856
  dbSecondaryAction: any;
@@ -1779,8 +1870,10 @@ declare class DBHeader implements AfterViewInit {
1779
1870
  _ref: _angular_core.Signal<ElementRef<any> | undefined>;
1780
1871
  initialized: _angular_core.WritableSignal<boolean>;
1781
1872
  forcedToMobile: _angular_core.WritableSignal<boolean | undefined>;
1873
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
1782
1874
  handleToggle(event?: any): void;
1783
1875
  handleNavigationItemClick(event: unknown): void;
1876
+ setupObserver(element: HTMLElement | null): void;
1784
1877
  constructor();
1785
1878
  /**
1786
1879
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -1789,6 +1882,7 @@ declare class DBHeader implements AfterViewInit {
1789
1882
  */
1790
1883
  private enableAttributePassing;
1791
1884
  ngAfterViewInit(): void;
1885
+ ngOnDestroy(): void;
1792
1886
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBHeader, never>;
1793
1887
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBHeader, "db-header", never, { "forceMobile": { "alias": "forceMobile"; "required": false; "isSignal": true; }; "drawerOpen": { "alias": "drawerOpen"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "burgerMenuLabel": { "alias": "burgerMenuLabel"; "required": false; "isSignal": true; }; "closeButtonId": { "alias": "closeButtonId"; "required": false; "isSignal": true; }; "closeButtonText": { "alias": "closeButtonText"; "required": false; "isSignal": true; }; }, { "toggle": "toggle"; }, ["dbNavigation", "dbMetaNavigation", "dbSecondaryAction"], ["*", "[brand]", "*", "[primary-action]", "*", "*", "*", "*"], true, never>;
1794
1888
  }
@@ -1818,7 +1912,7 @@ type DBIconProps = DBIconDefaultProps & GlobalProps & IconProps & TextProps;
1818
1912
  type DBIconDefaultState = {};
1819
1913
  type DBIconState = DBIconDefaultState & GlobalState;
1820
1914
 
1821
- declare class DBIcon implements AfterViewInit {
1915
+ declare class DBIcon implements AfterViewInit, OnDestroy {
1822
1916
  protected readonly cls: (...args: ClassNameArg[]) => string;
1823
1917
  id: InputSignal<DBIconProps["id"]>;
1824
1918
  propOverrides: InputSignal<DBIconProps["propOverrides"]>;
@@ -1828,6 +1922,8 @@ declare class DBIcon implements AfterViewInit {
1828
1922
  variant: InputSignal<DBIconProps["variant"]>;
1829
1923
  text: InputSignal<DBIconProps["text"]>;
1830
1924
  _ref: _angular_core.Signal<ElementRef<any> | undefined>;
1925
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
1926
+ setupObserver(element: HTMLElement | null): void;
1831
1927
  constructor();
1832
1928
  /**
1833
1929
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -1836,6 +1932,7 @@ declare class DBIcon implements AfterViewInit {
1836
1932
  */
1837
1933
  private enableAttributePassing;
1838
1934
  ngAfterViewInit(): void;
1935
+ ngOnDestroy(): void;
1839
1936
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBIcon, never>;
1840
1937
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBIcon, "db-icon", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "weight": { "alias": "weight"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
1841
1938
  }
@@ -1845,9 +1942,9 @@ type DBInfotextProps = DBInfotextDefaultProps & GlobalProps & SemanticProps & Ic
1845
1942
  type DBInfotextDefaultState = {};
1846
1943
  type DBInfotextState = DBInfotextDefaultState & GlobalState;
1847
1944
 
1848
- declare class DBInfotext implements AfterViewInit {
1945
+ declare class DBInfotext implements AfterViewInit, OnDestroy {
1849
1946
  protected readonly cls: (...args: ClassNameArg[]) => string;
1850
- protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
1947
+ protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
1851
1948
  id: InputSignal<DBInfotextProps["id"]>;
1852
1949
  propOverrides: InputSignal<DBInfotextProps["propOverrides"]>;
1853
1950
  className: InputSignal<DBInfotextProps["className"]>;
@@ -1858,6 +1955,8 @@ declare class DBInfotext implements AfterViewInit {
1858
1955
  showIcon: InputSignal<DBInfotextProps["showIcon"]>;
1859
1956
  text: InputSignal<DBInfotextProps["text"]>;
1860
1957
  _ref: _angular_core.Signal<ElementRef<any> | undefined>;
1958
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
1959
+ setupObserver(element: HTMLElement | null): void;
1861
1960
  constructor();
1862
1961
  /**
1863
1962
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -1866,6 +1965,7 @@ declare class DBInfotext implements AfterViewInit {
1866
1965
  */
1867
1966
  private enableAttributePassing;
1868
1967
  ngAfterViewInit(): void;
1968
+ ngOnDestroy(): void;
1869
1969
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBInfotext, never>;
1870
1970
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBInfotext, "db-infotext", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "semantic": { "alias": "semantic"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "wrap": { "alias": "wrap"; "required": false; "isSignal": true; }; "showIcon": { "alias": "showIcon"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
1871
1971
  }
@@ -1941,7 +2041,7 @@ declare class DBInput implements AfterViewInit, ControlValueAccessor, OnDestroy
1941
2041
  private renderer;
1942
2042
  protected readonly cls: (...args: ClassNameArg[]) => string;
1943
2043
  protected readonly getHideProp: (show?: boolean | string) => any;
1944
- protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
2044
+ protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
1945
2045
  protected readonly DEFAULT_LABEL: string;
1946
2046
  protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
1947
2047
  protected readonly DEFAULT_PLACEHOLDER: string;
@@ -2016,6 +2116,7 @@ declare class DBInput implements AfterViewInit, ControlValueAccessor, OnDestroy
2016
2116
  _value: _angular_core.WritableSignal<string | undefined>;
2017
2117
  _voiceOverFallback: _angular_core.WritableSignal<string | undefined>;
2018
2118
  abortController: _angular_core.WritableSignal<AbortController | undefined>;
2119
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
2019
2120
  hasValidState(): boolean;
2020
2121
  handleValidation(): void;
2021
2122
  handleInput(event: InputEvent<HTMLInputElement>, reset?: boolean): void;
@@ -2024,6 +2125,7 @@ declare class DBInput implements AfterViewInit, ControlValueAccessor, OnDestroy
2024
2125
  handleFocus(event: InteractionEvent<HTMLInputElement> | any): void;
2025
2126
  getDataList(): ValueLabelType[];
2026
2127
  resetIds(): void;
2128
+ setupObserver(element: HTMLElement | null): void;
2027
2129
  trackByOption0(_: number, option: any): string;
2028
2130
  constructor(renderer: Renderer2);
2029
2131
  /**
@@ -2067,9 +2169,9 @@ type DBLinkProps = DBLinkDefaultProps & GlobalProps & ClickEventProps<HTMLAnchor
2067
2169
  type DBLinkDefaultState = {};
2068
2170
  type DBLinkState = DBLinkDefaultState & GlobalState & ClickEventState<HTMLAnchorElement>;
2069
2171
 
2070
- declare class DBLink implements AfterViewInit {
2172
+ declare class DBLink implements AfterViewInit, OnDestroy {
2071
2173
  protected readonly cls: (...args: ClassNameArg[]) => string;
2072
- protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
2174
+ protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
2073
2175
  id: InputSignal<DBLinkProps["id"]>;
2074
2176
  propOverrides: InputSignal<DBLinkProps["propOverrides"]>;
2075
2177
  className: InputSignal<DBLinkProps["className"]>;
@@ -2088,6 +2190,8 @@ declare class DBLink implements AfterViewInit {
2088
2190
  wrap: InputSignal<DBLinkProps["wrap"]>;
2089
2191
  text: InputSignal<DBLinkProps["text"]>;
2090
2192
  _ref: _angular_core.Signal<ElementRef<any> | undefined>;
2193
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
2194
+ setupObserver(element: HTMLElement | null): void;
2091
2195
  constructor();
2092
2196
  /**
2093
2197
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -2096,6 +2200,7 @@ declare class DBLink implements AfterViewInit {
2096
2200
  */
2097
2201
  private enableAttributePassing;
2098
2202
  ngAfterViewInit(): void;
2203
+ ngOnDestroy(): void;
2099
2204
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBLink, never>;
2100
2205
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBLink, "db-link", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "href": { "alias": "href"; "required": false; "isSignal": true; }; "target": { "alias": "target"; "required": false; "isSignal": true; }; "rel": { "alias": "rel"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; "referrerpolicy": { "alias": "referrerpolicy"; "required": false; "isSignal": true; }; "referrerPolicy": { "alias": "referrerPolicy"; "required": false; "isSignal": true; }; "hreflang": { "alias": "hreflang"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "showIcon": { "alias": "showIcon"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "content": { "alias": "content"; "required": false; "isSignal": true; }; "wrap": { "alias": "wrap"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
2101
2206
  }
@@ -2105,12 +2210,14 @@ type DBNavigationProps = DBNavigationDefaultProps & GlobalProps;
2105
2210
  type DBNavigationDefaultState = {};
2106
2211
  type DBNavigationState = DBNavigationDefaultState;
2107
2212
 
2108
- declare class DBNavigation implements AfterViewInit {
2213
+ declare class DBNavigation implements AfterViewInit, OnDestroy {
2109
2214
  protected readonly cls: (...args: ClassNameArg[]) => string;
2110
2215
  id: InputSignal<DBNavigationProps["id"]>;
2111
2216
  propOverrides: InputSignal<DBNavigationProps["propOverrides"]>;
2112
2217
  className: InputSignal<DBNavigationProps["className"]>;
2113
2218
  _ref: _angular_core.Signal<ElementRef<any> | undefined>;
2219
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
2220
+ setupObserver(element: HTMLElement | null): void;
2114
2221
  constructor();
2115
2222
  /**
2116
2223
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -2119,6 +2226,7 @@ declare class DBNavigation implements AfterViewInit {
2119
2226
  */
2120
2227
  private enableAttributePassing;
2121
2228
  ngAfterViewInit(): void;
2229
+ ngOnDestroy(): void;
2122
2230
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBNavigation, never>;
2123
2231
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBNavigation, "db-navigation", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
2124
2232
  }
@@ -2189,10 +2297,10 @@ type DBNavigationItemDefaultState = {
2189
2297
  };
2190
2298
  type DBNavigationItemState = DBNavigationItemDefaultState & ClickEventState<HTMLButtonElement> & GlobalState & InitializedState & NavigationBehaviorState;
2191
2299
 
2192
- declare class DBNavigationItem implements AfterViewInit {
2300
+ declare class DBNavigationItem implements AfterViewInit, OnDestroy {
2193
2301
  dbNavigationContent: any;
2194
2302
  protected readonly cls: (...args: ClassNameArg[]) => string;
2195
- protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
2303
+ protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
2196
2304
  protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
2197
2305
  protected readonly DEFAULT_BACK: string;
2198
2306
  id: InputSignal<DBNavigationItemProps["id"]>;
@@ -2219,9 +2327,11 @@ declare class DBNavigationItem implements AfterViewInit {
2219
2327
  navigationItemSafeTriangle: _angular_core.WritableSignal<NavigationItemSafeTriangle | undefined>;
2220
2328
  subNavigationId: _angular_core.WritableSignal<string | undefined>;
2221
2329
  subNavigationToggleId: _angular_core.WritableSignal<string | undefined>;
2330
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
2222
2331
  handleNavigationItemClick(event: any): void;
2223
2332
  handleClick(event: ClickEvent<HTMLButtonElement> | any): void;
2224
2333
  handleBackClick(event: ClickEvent<HTMLButtonElement> | any): void;
2334
+ setupObserver(element: HTMLElement | null): void;
2225
2335
  constructor();
2226
2336
  /**
2227
2337
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -2230,6 +2340,7 @@ declare class DBNavigationItem implements AfterViewInit {
2230
2340
  */
2231
2341
  private enableAttributePassing;
2232
2342
  ngAfterViewInit(): void;
2343
+ ngOnDestroy(): void;
2233
2344
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBNavigationItem, never>;
2234
2345
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBNavigationItem, "db-navigation-item", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "subNavigationExpanded": { "alias": "subNavigationExpanded"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "showIcon": { "alias": "showIcon"; "required": false; "isSignal": true; }; "active": { "alias": "active"; "required": false; "isSignal": true; }; "wrap": { "alias": "wrap"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "hideSubNavigation": { "alias": "hideSubNavigation"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "backButtonId": { "alias": "backButtonId"; "required": false; "isSignal": true; }; "backButtonText": { "alias": "backButtonText"; "required": false; "isSignal": true; }; }, { "click": "click"; }, ["dbNavigationContent"], ["*", "[sub-navigation]", "*"], true, never>;
2235
2346
  }
@@ -2307,7 +2418,7 @@ type DBNotificationProps = DBNotificationDefaultProps & GlobalProps & RoleProps
2307
2418
  type DBNotificationDefaultState = {};
2308
2419
  type DBNotificationState = DBNotificationDefaultState & GlobalState & CloseEventState<ClickEvent<HTMLButtonElement>>;
2309
2420
 
2310
- declare class DBNotification implements AfterViewInit {
2421
+ declare class DBNotification implements AfterViewInit, OnDestroy {
2311
2422
  protected readonly cls: (...args: ClassNameArg[]) => string;
2312
2423
  protected readonly getNotificationRole: ({ semantic, role, ariaLive }: {
2313
2424
  semantic?: string;
@@ -2315,7 +2426,7 @@ declare class DBNotification implements AfterViewInit {
2315
2426
  ariaLive?: string;
2316
2427
  }) => string | undefined;
2317
2428
  protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
2318
- protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
2429
+ protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
2319
2430
  protected readonly stringPropVisible: (givenString?: string, showString?: boolean | string) => boolean;
2320
2431
  protected readonly DEFAULT_CLOSE_BUTTON: string;
2321
2432
  id: InputSignal<DBNotificationProps["id"]>;
@@ -2339,7 +2450,9 @@ declare class DBNotification implements AfterViewInit {
2339
2450
  closeButtonText: InputSignal<DBNotificationProps["closeButtonText"]>;
2340
2451
  close: _angular_core.OutputEmitterRef<void | MouseEvent | undefined>;
2341
2452
  _ref: _angular_core.Signal<ElementRef<any> | undefined>;
2453
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
2342
2454
  handleClose(event?: ClickEvent<HTMLButtonElement> | void): void;
2455
+ setupObserver(element: HTMLElement | null): void;
2343
2456
  constructor();
2344
2457
  /**
2345
2458
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -2348,6 +2461,7 @@ declare class DBNotification implements AfterViewInit {
2348
2461
  */
2349
2462
  private enableAttributePassing;
2350
2463
  ngAfterViewInit(): void;
2464
+ ngOnDestroy(): void;
2351
2465
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBNotification, never>;
2352
2466
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBNotification, "db-notification", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "semantic": { "alias": "semantic"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; "ariaLive": { "alias": "ariaLive"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "showIcon": { "alias": "showIcon"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "linkVariant": { "alias": "linkVariant"; "required": false; "isSignal": true; }; "headline": { "alias": "headline"; "required": false; "isSignal": true; }; "showHeadline": { "alias": "showHeadline"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "timestamp": { "alias": "timestamp"; "required": false; "isSignal": true; }; "showTimestamp": { "alias": "showTimestamp"; "required": false; "isSignal": true; }; "timestampDatetime": { "alias": "timestampDatetime"; "required": false; "isSignal": true; }; "closeable": { "alias": "closeable"; "required": false; "isSignal": true; }; "closeButtonId": { "alias": "closeButtonId"; "required": false; "isSignal": true; }; "closeButtonText": { "alias": "closeButtonText"; "required": false; "isSignal": true; }; }, { "close": "close"; }, never, ["[image]", "*", "[link]"], true, never>;
2353
2467
  }
@@ -2390,7 +2504,7 @@ type DBPageState = DBPageDefaultState & GlobalState;
2390
2504
 
2391
2505
  declare class DBPage implements AfterViewInit, OnDestroy {
2392
2506
  protected readonly cls: (...args: ClassNameArg[]) => string;
2393
- protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
2507
+ protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
2394
2508
  fadeIn: InputSignal<DBPageProps["fadeIn"]>;
2395
2509
  documentOverflow: InputSignal<DBPageProps["documentOverflow"]>;
2396
2510
  variant: InputSignal<DBPageProps["variant"]>;
@@ -2400,6 +2514,8 @@ declare class DBPage implements AfterViewInit, OnDestroy {
2400
2514
  mainClass: InputSignal<DBPageProps["mainClass"]>;
2401
2515
  _ref: _angular_core.Signal<ElementRef<any> | undefined>;
2402
2516
  fontsLoaded: _angular_core.WritableSignal<boolean | undefined>;
2517
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
2518
+ setupObserver(element: HTMLElement | null): void;
2403
2519
  constructor();
2404
2520
  /**
2405
2521
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -2431,9 +2547,9 @@ type DBPopoverDefaultState = {
2431
2547
  };
2432
2548
  type DBPopoverState = DBPopoverDefaultState & GlobalState & PopoverState & InitializedState;
2433
2549
 
2434
- declare class DBPopover implements AfterViewInit {
2550
+ declare class DBPopover implements AfterViewInit, OnDestroy {
2435
2551
  protected readonly cls: (...args: ClassNameArg[]) => string;
2436
- protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
2552
+ protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
2437
2553
  placement: InputSignal<DBPopoverProps["placement"]>;
2438
2554
  id: InputSignal<DBPopoverProps["id"]>;
2439
2555
  propOverrides: InputSignal<DBPopoverProps["propOverrides"]>;
@@ -2449,12 +2565,14 @@ declare class DBPopover implements AfterViewInit {
2449
2565
  isExpanded: _angular_core.WritableSignal<boolean | undefined>;
2450
2566
  _documentScrollListenerCallbackId: _angular_core.WritableSignal<string | undefined>;
2451
2567
  _observer: _angular_core.WritableSignal<IntersectionObserver | undefined>;
2568
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
2452
2569
  handleEscape(event: any): void;
2453
2570
  handleAutoPlacement(): void;
2454
2571
  handleDocumentScroll(event: any): void;
2455
2572
  handleEnter(): void;
2456
2573
  handleLeave(event?: any): void;
2457
2574
  getTrigger(): Element | null;
2575
+ setupObserver(element: HTMLElement | null): void;
2458
2576
  constructor();
2459
2577
  /**
2460
2578
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -2463,6 +2581,7 @@ declare class DBPopover implements AfterViewInit {
2463
2581
  */
2464
2582
  private enableAttributePassing;
2465
2583
  ngAfterViewInit(): void;
2584
+ ngOnDestroy(): void;
2466
2585
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBPopover, never>;
2467
2586
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBPopover, "db-popover", never, { "placement": { "alias": "placement"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "spacing": { "alias": "spacing"; "required": false; "isSignal": true; }; "gap": { "alias": "gap"; "required": false; "isSignal": true; }; "animation": { "alias": "animation"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; "delay": { "alias": "delay"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; }, {}, never, ["[trigger]", "*"], true, never>;
2468
2587
  }
@@ -2498,11 +2617,13 @@ declare class DBRadio implements AfterViewInit, ControlValueAccessor, OnDestroy
2498
2617
  initialized: _angular_core.WritableSignal<boolean>;
2499
2618
  _id: _angular_core.WritableSignal<string | undefined>;
2500
2619
  abortController: _angular_core.WritableSignal<AbortController | undefined>;
2620
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
2501
2621
  handleInput(event: ChangeEvent<HTMLInputElement> | any, reset?: boolean): void;
2502
2622
  handleChange(event: ChangeEvent<HTMLInputElement> | any, reset?: boolean): void;
2503
2623
  handleBlur(event: InteractionEvent<HTMLInputElement> | any): void;
2504
2624
  handleFocus(event: InteractionEvent<HTMLInputElement> | any): void;
2505
2625
  resetIds(): void;
2626
+ setupObserver(element: HTMLElement | null): void;
2506
2627
  constructor(renderer: Renderer2);
2507
2628
  /**
2508
2629
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -2524,7 +2645,7 @@ declare class DBRadio implements AfterViewInit, ControlValueAccessor, OnDestroy
2524
2645
  type DBSectionDefaultProps = {};
2525
2646
  type DBSectionProps = DBSectionDefaultProps & GlobalProps & SpacingProps & ContainerWidthProps;
2526
2647
 
2527
- declare class DBSection implements AfterViewInit {
2648
+ declare class DBSection implements AfterViewInit, OnDestroy {
2528
2649
  protected readonly cls: (...args: ClassNameArg[]) => string;
2529
2650
  id: InputSignal<DBSectionProps["id"]>;
2530
2651
  propOverrides: InputSignal<DBSectionProps["propOverrides"]>;
@@ -2532,6 +2653,8 @@ declare class DBSection implements AfterViewInit {
2532
2653
  spacing: InputSignal<DBSectionProps["spacing"]>;
2533
2654
  width: InputSignal<DBSectionProps["width"]>;
2534
2655
  _ref: _angular_core.Signal<ElementRef<any> | undefined>;
2656
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
2657
+ setupObserver(element: HTMLElement | null): void;
2535
2658
  constructor();
2536
2659
  /**
2537
2660
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -2540,6 +2663,7 @@ declare class DBSection implements AfterViewInit {
2540
2663
  */
2541
2664
  private enableAttributePassing;
2542
2665
  ngAfterViewInit(): void;
2666
+ ngOnDestroy(): void;
2543
2667
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBSection, never>;
2544
2668
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBSection, "db-section", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "spacing": { "alias": "spacing"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
2545
2669
  }
@@ -2602,7 +2726,7 @@ declare class DBSelect implements AfterViewInit, ControlValueAccessor, OnDestroy
2602
2726
  private renderer;
2603
2727
  protected readonly cls: (...args: ClassNameArg[]) => string;
2604
2728
  protected readonly getHideProp: (show?: boolean | string) => any;
2605
- protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
2729
+ protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
2606
2730
  protected readonly DEFAULT_LABEL: string;
2607
2731
  protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
2608
2732
  protected readonly getOptionKey: (option: {
@@ -2654,6 +2778,7 @@ declare class DBSelect implements AfterViewInit, ControlValueAccessor, OnDestroy
2654
2778
  initialized: _angular_core.WritableSignal<boolean>;
2655
2779
  _voiceOverFallback: _angular_core.WritableSignal<string | undefined>;
2656
2780
  abortController: _angular_core.WritableSignal<AbortController | undefined>;
2781
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
2657
2782
  hasValidState(): boolean;
2658
2783
  handleValidation(): void;
2659
2784
  handleClick(event: ClickEvent<HTMLSelectElement> | any): void;
@@ -2664,6 +2789,7 @@ declare class DBSelect implements AfterViewInit, ControlValueAccessor, OnDestroy
2664
2789
  getOptionLabel(option: DBSelectOptionType): string;
2665
2790
  shouldShowEmptyOption(): boolean | undefined;
2666
2791
  resetIds(): void;
2792
+ setupObserver(element: HTMLElement | null): void;
2667
2793
  trackByOptgroupOption0(_: number, optgroupOption: any): string;
2668
2794
  constructor(renderer: Renderer2);
2669
2795
  /**
@@ -2717,9 +2843,9 @@ type DBStackProps = DBStackDefaultProps & GlobalProps & GapSpacingProps;
2717
2843
  type DBStackDefaultState = {};
2718
2844
  type DBStackState = DBStackDefaultState & GlobalState;
2719
2845
 
2720
- declare class DBStack implements AfterViewInit {
2846
+ declare class DBStack implements AfterViewInit, OnDestroy {
2721
2847
  protected readonly cls: (...args: ClassNameArg[]) => string;
2722
- protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
2848
+ protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
2723
2849
  id: InputSignal<DBStackProps["id"]>;
2724
2850
  propOverrides: InputSignal<DBStackProps["propOverrides"]>;
2725
2851
  className: InputSignal<DBStackProps["className"]>;
@@ -2730,6 +2856,8 @@ declare class DBStack implements AfterViewInit {
2730
2856
  justifyContent: InputSignal<DBStackProps["justifyContent"]>;
2731
2857
  wrap: InputSignal<DBStackProps["wrap"]>;
2732
2858
  _ref: _angular_core.Signal<ElementRef<any> | undefined>;
2859
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
2860
+ setupObserver(element: HTMLElement | null): void;
2733
2861
  constructor();
2734
2862
  /**
2735
2863
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -2738,6 +2866,7 @@ declare class DBStack implements AfterViewInit {
2738
2866
  */
2739
2867
  private enableAttributePassing;
2740
2868
  ngAfterViewInit(): void;
2869
+ ngOnDestroy(): void;
2741
2870
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBStack, never>;
2742
2871
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBStack, "db-stack", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "gap": { "alias": "gap"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "direction": { "alias": "direction"; "required": false; "isSignal": true; }; "alignment": { "alias": "alignment"; "required": false; "isSignal": true; }; "justifyContent": { "alias": "justifyContent"; "required": false; "isSignal": true; }; "wrap": { "alias": "wrap"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
2743
2872
  }
@@ -2760,7 +2889,7 @@ type DBSwitchState = DBSwitchDefaultState & GlobalState & ChangeEventState<HTMLI
2760
2889
 
2761
2890
  declare class DBSwitch implements AfterViewInit, ControlValueAccessor, OnDestroy {
2762
2891
  private renderer;
2763
- protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
2892
+ protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
2764
2893
  protected readonly getHideProp: (show?: boolean | string) => any;
2765
2894
  protected readonly cls: (...args: ClassNameArg[]) => string;
2766
2895
  protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
@@ -2801,6 +2930,7 @@ declare class DBSwitch implements AfterViewInit, ControlValueAccessor, OnDestroy
2801
2930
  _descByIds: _angular_core.WritableSignal<string | undefined>;
2802
2931
  _voiceOverFallback: _angular_core.WritableSignal<string | undefined>;
2803
2932
  abortController: _angular_core.WritableSignal<AbortController | undefined>;
2933
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
2804
2934
  hasValidState(): boolean;
2805
2935
  handleValidation(): void;
2806
2936
  handleChange(event: ChangeEvent<HTMLInputElement>, reset?: boolean): void;
@@ -2808,6 +2938,7 @@ declare class DBSwitch implements AfterViewInit, ControlValueAccessor, OnDestroy
2808
2938
  handleFocus(event: InteractionEvent<HTMLInputElement>): void;
2809
2939
  handleKeyDown(event: GeneralKeyboardEvent<HTMLInputElement>): void;
2810
2940
  resetIds(): void;
2941
+ setupObserver(element: HTMLElement | null): void;
2811
2942
  constructor(renderer: Renderer2);
2812
2943
  /**
2813
2944
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -2856,7 +2987,7 @@ type DBTabItemState = DBTabItemDefaultState & GlobalState & ChangeEventState<HTM
2856
2987
  declare class DBTabItem implements AfterViewInit, ControlValueAccessor, OnDestroy {
2857
2988
  private renderer;
2858
2989
  protected readonly cls: (...args: ClassNameArg[]) => string;
2859
- protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
2990
+ protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
2860
2991
  protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
2861
2992
  active: InputSignal<DBTabItemProps["active"]>;
2862
2993
  name: InputSignal<DBTabItemProps["name"]>;
@@ -2880,9 +3011,11 @@ declare class DBTabItem implements AfterViewInit, ControlValueAccessor, OnDestro
2880
3011
  initialized: _angular_core.WritableSignal<boolean>;
2881
3012
  _listenerAdded: _angular_core.WritableSignal<boolean>;
2882
3013
  boundSetSelectedOnChange: _angular_core.WritableSignal<((event: any) => void) | undefined>;
3014
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
2883
3015
  setSelectedOnChange(event: any): void;
2884
3016
  handleNameAttribute(): void;
2885
3017
  handleChange(event: any): void;
3018
+ setupObserver(element: HTMLElement | null): void;
2886
3019
  constructor(renderer: Renderer2);
2887
3020
  /**
2888
3021
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -2906,12 +3039,14 @@ type DBTabListProps = DBTabListDefaultProps & GlobalProps;
2906
3039
  type DBTabListDefaultState = {};
2907
3040
  type DBTabListState = DBTabListDefaultState;
2908
3041
 
2909
- declare class DBTabList implements AfterViewInit {
3042
+ declare class DBTabList implements AfterViewInit, OnDestroy {
2910
3043
  protected readonly cls: (...args: ClassNameArg[]) => string;
2911
3044
  id: InputSignal<DBTabListProps["id"]>;
2912
3045
  propOverrides: InputSignal<DBTabListProps["propOverrides"]>;
2913
3046
  className: InputSignal<DBTabListProps["className"]>;
2914
3047
  _ref: _angular_core.Signal<ElementRef<any> | undefined>;
3048
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
3049
+ setupObserver(element: HTMLElement | null): void;
2915
3050
  constructor();
2916
3051
  /**
2917
3052
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -2920,6 +3055,7 @@ declare class DBTabList implements AfterViewInit {
2920
3055
  */
2921
3056
  private enableAttributePassing;
2922
3057
  ngAfterViewInit(): void;
3058
+ ngOnDestroy(): void;
2923
3059
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBTabList, never>;
2924
3060
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBTabList, "db-tab-list", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
2925
3061
  }
@@ -2934,13 +3070,15 @@ type DBTabPanelProps = DBTabPanelDefaultProps & GlobalProps;
2934
3070
  type DBTabPanelDefaultState = {};
2935
3071
  type DBTabPanelState = DBTabPanelDefaultState & GlobalState;
2936
3072
 
2937
- declare class DBTabPanel implements AfterViewInit {
3073
+ declare class DBTabPanel implements AfterViewInit, OnDestroy {
2938
3074
  protected readonly cls: (...args: ClassNameArg[]) => string;
2939
3075
  className: InputSignal<DBTabPanelProps["className"]>;
2940
3076
  id: InputSignal<DBTabPanelProps["id"]>;
2941
3077
  propOverrides: InputSignal<DBTabPanelProps["propOverrides"]>;
2942
3078
  content: InputSignal<DBTabPanelProps["content"]>;
2943
3079
  _ref: _angular_core.Signal<ElementRef<any> | undefined>;
3080
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
3081
+ setupObserver(element: HTMLElement | null): void;
2944
3082
  constructor();
2945
3083
  /**
2946
3084
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -2949,10 +3087,400 @@ declare class DBTabPanel implements AfterViewInit {
2949
3087
  */
2950
3088
  private enableAttributePassing;
2951
3089
  ngAfterViewInit(): void;
3090
+ ngOnDestroy(): void;
2952
3091
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBTabPanel, never>;
2953
3092
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBTabPanel, "db-tab-panel", never, { "className": { "alias": "className"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "content": { "alias": "content"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
2954
3093
  }
2955
3094
 
3095
+ type DBTableDataCellDefaultProps = {};
3096
+ type DBTableDataCellProps = DBTableDataCellDefaultProps & GlobalProps & DBTableCellProps;
3097
+ type DBTableDataCellDefaultState = {};
3098
+ type DBTableDataCellState = DBTableDataCellDefaultState & GlobalState;
3099
+
3100
+ declare const DBTableHeaderCellScopeList: readonly ["row", "col", "rowgroup", "colgroup"];
3101
+ type DBTableHeaderCellScopeType = (typeof DBTableHeaderCellScopeList)[number];
3102
+ type DBTableHeaderCellDefaultProps = {
3103
+ /**
3104
+ * The **`abbr`** property of the HTMLTableCellElement interface indicates an abbreviation associated with the cell.
3105
+ *
3106
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/abbr)
3107
+ */
3108
+ abbr?: string;
3109
+ /**
3110
+ * The **`scope`** property of the HTMLTableCellElement interface indicates the scope of a th cell.
3111
+ *
3112
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/scope)
3113
+ */
3114
+ scope?: DBTableHeaderCellScopeType;
3115
+ /**
3116
+ * Hide the text content of the cell.
3117
+ */
3118
+ noText?: boolean | string;
3119
+ };
3120
+ type DBTableHeaderCellProps = DBTableHeaderCellDefaultProps & GlobalProps & DBTableCellProps;
3121
+ type DBTableHeaderCellDefaultState = {};
3122
+ type DBTableHeaderCellState = DBTableHeaderCellDefaultState & GlobalState;
3123
+
3124
+ declare const DBTableRowSubHeaderEmphasisList: readonly ["none", "weak", "strong"];
3125
+ type DBTableRowSubHeaderEmphasisType = (typeof DBTableRowSubHeaderEmphasisList)[number];
3126
+ type DBTableRowCell = (DBTableHeaderCellProps | DBTableDataCellProps) & {
3127
+ headerCell?: boolean;
3128
+ content?: any;
3129
+ link?: DBLinkProps;
3130
+ };
3131
+ type DBTableRowDefaultProps = {
3132
+ /**
3133
+ * All cells of the row
3134
+ */
3135
+ cells?: DBTableRowCell[];
3136
+ /**
3137
+ * Change styling of row only if it is inside thead
3138
+ */
3139
+ subHeaderEmphasis?: DBTableRowSubHeaderEmphasisType;
3140
+ /**
3141
+ * If true marks the row as interactive, which checks for child with data-table-row-trigger="true"
3142
+ */
3143
+ interactive?: boolean | string;
3144
+ };
3145
+ type DBTableRowProps = DBTableRowDefaultProps & GlobalProps;
3146
+ type DBTableRowDefaultState = {
3147
+ getHeaderCell: (cell: DBTableRowCell) => DBTableHeaderCellProps | undefined;
3148
+ };
3149
+ type DBTableRowState = DBTableRowDefaultState & GlobalState;
3150
+
3151
+ declare const DBTableRowSizeList: readonly ["x-small", "small", "medium", "large"];
3152
+ type DBTableRowSizeType = (typeof DBTableRowSizeList)[number];
3153
+ declare const DBTableVariantList: readonly ["flat", "zebra", "spaced"];
3154
+ type DBTableVariantType = (typeof DBTableVariantList)[number];
3155
+ declare const DBTableDividerList: readonly ["none", "both", "horizontal", "vertical"];
3156
+ type DBTableDividerType = (typeof DBTableDividerList)[number];
3157
+ declare const DBTableMobileVariantList: readonly ["table", "list"];
3158
+ type DBTableMobileVariantType = (typeof DBTableMobileVariantList)[number];
3159
+ declare const DBTableStickyHeaderList: readonly ["none", "both", "horizontal", "vertical"];
3160
+ type DBTableStickyHeaderType = (typeof DBTableStickyHeaderList)[number];
3161
+ type DBTableData = {
3162
+ header?: DBTableRowDefaultProps[];
3163
+ body?: DBTableRowDefaultProps[];
3164
+ footer?: DBTableRowDefaultProps[];
3165
+ };
3166
+ declare const DBTableColumnsSizeList: readonly ["auto", "1fr", "min-content", "max-content"];
3167
+ type DBTableColumnsSizeType = (typeof DBTableColumnsSizeList)[number];
3168
+ type DBTableDefaultProps = {
3169
+ /**
3170
+ * Slot for table caption
3171
+ */
3172
+ caption?: any;
3173
+ /**
3174
+ * String alternative for table caption slot
3175
+ */
3176
+ captionPlain?: string;
3177
+ /**
3178
+ * Table data if you don't use default slot/children
3179
+ */
3180
+ data?: DBTableData | string;
3181
+ /**
3182
+ * Show the divider between the rows and cells
3183
+ */
3184
+ divider?: DBTableDividerType;
3185
+ /**
3186
+ * Show caption above table default is hidden
3187
+ */
3188
+ showCaption?: boolean | string;
3189
+ /**
3190
+ * Size of the table rows
3191
+ */
3192
+ size?: DBTableRowSizeType;
3193
+ /**
3194
+ * Change the layout of the table
3195
+ * spaced: card style table
3196
+ * flat: classic table
3197
+ */
3198
+ variant?: DBTableVariantType;
3199
+ /**
3200
+ * Change the layout of the table on mobile
3201
+ * list: list style
3202
+ * table: classic table
3203
+ */
3204
+ mobileVariant?: DBTableMobileVariantType;
3205
+ /**
3206
+ * Change the header cells to be sticky when scrolling the table
3207
+ */
3208
+ stickyHeader?: DBTableStickyHeaderType;
3209
+ /**
3210
+ * Set the width of the columns based in their index.
3211
+ * Alternative: Use `--db-table-column-size-$index` inside CSS to control it.
3212
+ * See: https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Properties/grid-template-columns
3213
+ */
3214
+ columnSizes?: Record<number, DBTableColumnsSizeType | string>;
3215
+ };
3216
+ type DBTableProps = DBTableDefaultProps & GlobalProps & WidthProps;
3217
+ type DBTableDefaultState = {
3218
+ _data?: DBTableData;
3219
+ _style?: any;
3220
+ convertData: () => DBTableData;
3221
+ };
3222
+ type DBTableState = DBTableDefaultState & GlobalState;
3223
+
3224
+ declare class DBTable implements AfterViewInit, OnDestroy {
3225
+ protected readonly cls: (...args: ClassNameArg[]) => string;
3226
+ protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
3227
+ data: InputSignal<DBTableProps["data"]>;
3228
+ mobileVariant: InputSignal<DBTableProps["mobileVariant"]>;
3229
+ columnSizes: InputSignal<DBTableProps["columnSizes"]>;
3230
+ className: InputSignal<DBTableProps["className"]>;
3231
+ width: InputSignal<DBTableProps["width"]>;
3232
+ size: InputSignal<DBTableProps["size"]>;
3233
+ divider: InputSignal<DBTableProps["divider"]>;
3234
+ variant: InputSignal<DBTableProps["variant"]>;
3235
+ showCaption: InputSignal<DBTableProps["showCaption"]>;
3236
+ stickyHeader: InputSignal<DBTableProps["stickyHeader"]>;
3237
+ id: InputSignal<DBTableProps["id"]>;
3238
+ captionPlain: InputSignal<DBTableProps["captionPlain"]>;
3239
+ _ref: _angular_core.Signal<ElementRef<any> | undefined>;
3240
+ _data: _angular_core.WritableSignal<DBTableData | undefined>;
3241
+ _style: _angular_core.WritableSignal<any>;
3242
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
3243
+ convertData(): any;
3244
+ setupObserver(element: HTMLElement | null): void;
3245
+ constructor();
3246
+ /**
3247
+ * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
3248
+ * @param element the ref for the component
3249
+ * @param customElementSelector the custom element like `my-component`
3250
+ */
3251
+ private enableAttributePassing;
3252
+ ngAfterViewInit(): void;
3253
+ ngOnDestroy(): void;
3254
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBTable, never>;
3255
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBTable, "db-table", never, { "data": { "alias": "data"; "required": false; "isSignal": true; }; "mobileVariant": { "alias": "mobileVariant"; "required": false; "isSignal": true; }; "columnSizes": { "alias": "columnSizes"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "divider": { "alias": "divider"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "showCaption": { "alias": "showCaption"; "required": false; "isSignal": true; }; "stickyHeader": { "alias": "stickyHeader"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "captionPlain": { "alias": "captionPlain"; "required": false; "isSignal": true; }; }, {}, never, ["[caption]", "*"], true, never>;
3256
+ }
3257
+
3258
+ type DBTableBodyDefaultProps = {
3259
+ rows?: DBTableRowProps[];
3260
+ };
3261
+ type DBTableBodyProps = DBTableBodyDefaultProps & GlobalProps;
3262
+ type DBTableBodyDefaultState = {};
3263
+ type DBTableBodyState = DBTableBodyDefaultState & GlobalState;
3264
+
3265
+ declare class DBTableBody implements AfterViewInit {
3266
+ protected readonly cls: (...args: ClassNameArg[]) => string;
3267
+ protected readonly uuid: () => string;
3268
+ id: InputSignal<DBTableBodyProps["id"]>;
3269
+ className: InputSignal<DBTableBodyProps["className"]>;
3270
+ rows: InputSignal<DBTableBodyProps["rows"]>;
3271
+ _ref: _angular_core.Signal<ElementRef<any> | undefined>;
3272
+ trackByRow0(index: number, row: any): string;
3273
+ constructor();
3274
+ /**
3275
+ * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
3276
+ * @param element the ref for the component
3277
+ * @param customElementSelector the custom element like `my-component`
3278
+ */
3279
+ private enableAttributePassing;
3280
+ ngAfterViewInit(): void;
3281
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBTableBody, never>;
3282
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBTableBody, "db-table-body", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "rows": { "alias": "rows"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
3283
+ }
3284
+
3285
+ type DBTableCaptionDefaultProps = {};
3286
+ type DBTableCaptionProps = DBTableCaptionDefaultProps & GlobalProps;
3287
+ type DBTableCaptionDefaultState = {};
3288
+ type DBTableCaptionState = DBTableCaptionDefaultState & GlobalState;
3289
+
3290
+ declare class DBTableCaption implements AfterViewInit, OnDestroy {
3291
+ protected readonly cls: (...args: ClassNameArg[]) => string;
3292
+ id: InputSignal<DBTableCaptionProps["id"]>;
3293
+ className: InputSignal<DBTableCaptionProps["className"]>;
3294
+ _ref: _angular_core.Signal<ElementRef<any> | undefined>;
3295
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
3296
+ setupObserver(element: HTMLElement | null): void;
3297
+ constructor();
3298
+ /**
3299
+ * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
3300
+ * @param element the ref for the component
3301
+ * @param customElementSelector the custom element like `my-component`
3302
+ */
3303
+ private enableAttributePassing;
3304
+ ngAfterViewInit(): void;
3305
+ ngOnDestroy(): void;
3306
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBTableCaption, never>;
3307
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBTableCaption, "db-table-caption", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
3308
+ }
3309
+
3310
+ declare class DBTableDataCell implements AfterViewInit {
3311
+ protected readonly cls: (...args: ClassNameArg[]) => string;
3312
+ protected readonly getNumber: (originNumber?: number | string, alternativeNumber?: number | string) => number | undefined;
3313
+ id: InputSignal<DBTableDataCellProps["id"]>;
3314
+ className: InputSignal<DBTableDataCellProps["className"]>;
3315
+ horizontalAlignment: InputSignal<DBTableDataCellProps["horizontalAlignment"]>;
3316
+ verticalAlignment: InputSignal<DBTableDataCellProps["verticalAlignment"]>;
3317
+ colSpan: InputSignal<DBTableDataCellProps["colSpan"]>;
3318
+ colspan: InputSignal<DBTableDataCellProps["colspan"]>;
3319
+ rowSpan: InputSignal<DBTableDataCellProps["rowSpan"]>;
3320
+ rowspan: InputSignal<DBTableDataCellProps["rowspan"]>;
3321
+ headers: InputSignal<DBTableDataCellProps["headers"]>;
3322
+ _ref: _angular_core.Signal<ElementRef<any> | undefined>;
3323
+ constructor();
3324
+ /**
3325
+ * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
3326
+ * @param element the ref for the component
3327
+ * @param customElementSelector the custom element like `my-component`
3328
+ */
3329
+ private enableAttributePassing;
3330
+ ngAfterViewInit(): void;
3331
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBTableDataCell, never>;
3332
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBTableDataCell, "db-table-data-cell", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "horizontalAlignment": { "alias": "horizontalAlignment"; "required": false; "isSignal": true; }; "verticalAlignment": { "alias": "verticalAlignment"; "required": false; "isSignal": true; }; "colSpan": { "alias": "colSpan"; "required": false; "isSignal": true; }; "colspan": { "alias": "colspan"; "required": false; "isSignal": true; }; "rowSpan": { "alias": "rowSpan"; "required": false; "isSignal": true; }; "rowspan": { "alias": "rowspan"; "required": false; "isSignal": true; }; "headers": { "alias": "headers"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
3333
+ }
3334
+
3335
+ type DBTableFooterDefaultProps = {
3336
+ rows?: DBTableRowProps[];
3337
+ };
3338
+ type DBTableFooterProps = DBTableFooterDefaultProps & GlobalProps;
3339
+ type DBTableFooterDefaultState = {};
3340
+ type DBTableFooterState = DBTableFooterDefaultState & GlobalState;
3341
+
3342
+ declare class DBTableFooter implements AfterViewInit {
3343
+ protected readonly cls: (...args: ClassNameArg[]) => string;
3344
+ protected readonly uuid: () => string;
3345
+ id: InputSignal<DBTableFooterProps["id"]>;
3346
+ className: InputSignal<DBTableFooterProps["className"]>;
3347
+ rows: InputSignal<DBTableFooterProps["rows"]>;
3348
+ _ref: _angular_core.Signal<ElementRef<any> | undefined>;
3349
+ trackByRow0(index: number, row: any): string;
3350
+ constructor();
3351
+ /**
3352
+ * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
3353
+ * @param element the ref for the component
3354
+ * @param customElementSelector the custom element like `my-component`
3355
+ */
3356
+ private enableAttributePassing;
3357
+ ngAfterViewInit(): void;
3358
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBTableFooter, never>;
3359
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBTableFooter, "db-table-footer", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "rows": { "alias": "rows"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
3360
+ }
3361
+
3362
+ type DBTableHeadDefaultProps = {
3363
+ rows?: DBTableRowProps[];
3364
+ };
3365
+ type DBTableHeadProps = DBTableHeadDefaultProps & GlobalProps;
3366
+ type DBTableHeadDefaultState = {
3367
+ getCells: (cells?: DBTableRowCell[]) => DBTableRowCell[] | undefined;
3368
+ };
3369
+ type DBTableHeadState = DBTableHeadDefaultState & GlobalState;
3370
+
3371
+ declare class DBTableHead implements AfterViewInit, OnDestroy {
3372
+ protected readonly cls: (...args: ClassNameArg[]) => string;
3373
+ protected readonly uuid: () => string;
3374
+ id: InputSignal<DBTableHeadProps["id"]>;
3375
+ className: InputSignal<DBTableHeadProps["className"]>;
3376
+ rows: InputSignal<DBTableHeadProps["rows"]>;
3377
+ _ref: _angular_core.Signal<ElementRef<any> | undefined>;
3378
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
3379
+ getCells(cells?: DBTableRowCell[]): ({
3380
+ headerCell: boolean;
3381
+ children?: any;
3382
+ className?: string;
3383
+ class?: string | any;
3384
+ id?: string;
3385
+ autofocus?: boolean | string;
3386
+ propOverrides?: _db_ux_ngx_core_components.PropOverridesType;
3387
+ colSpan?: number | string;
3388
+ colspan?: number | string;
3389
+ headers?: string;
3390
+ rowSpan?: number | string;
3391
+ rowspan?: number | string;
3392
+ horizontalAlignment?: _db_ux_ngx_core_components.AlignmentType;
3393
+ verticalAlignment?: _db_ux_ngx_core_components.AlignmentType;
3394
+ content?: any;
3395
+ link?: _db_ux_ngx_core_components.DBLinkProps;
3396
+ } | {
3397
+ headerCell: boolean;
3398
+ abbr?: string;
3399
+ scope?: _db_ux_ngx_core_components.DBTableHeaderCellScopeType;
3400
+ noText?: boolean | string;
3401
+ children?: any;
3402
+ className?: string;
3403
+ class?: string | any;
3404
+ id?: string;
3405
+ autofocus?: boolean | string;
3406
+ propOverrides?: _db_ux_ngx_core_components.PropOverridesType;
3407
+ colSpan?: number | string;
3408
+ colspan?: number | string;
3409
+ headers?: string;
3410
+ rowSpan?: number | string;
3411
+ rowspan?: number | string;
3412
+ horizontalAlignment?: _db_ux_ngx_core_components.AlignmentType;
3413
+ verticalAlignment?: _db_ux_ngx_core_components.AlignmentType;
3414
+ content?: any;
3415
+ link?: _db_ux_ngx_core_components.DBLinkProps;
3416
+ })[] | undefined;
3417
+ setupObserver(element: HTMLElement | null): void;
3418
+ trackByRow0(index: number, row: any): string;
3419
+ constructor();
3420
+ /**
3421
+ * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
3422
+ * @param element the ref for the component
3423
+ * @param customElementSelector the custom element like `my-component`
3424
+ */
3425
+ private enableAttributePassing;
3426
+ ngAfterViewInit(): void;
3427
+ ngOnDestroy(): void;
3428
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBTableHead, never>;
3429
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBTableHead, "db-table-head", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "rows": { "alias": "rows"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
3430
+ }
3431
+
3432
+ declare class DBTableHeaderCell implements AfterViewInit {
3433
+ protected readonly cls: (...args: ClassNameArg[]) => string;
3434
+ protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
3435
+ protected readonly getNumber: (originNumber?: number | string, alternativeNumber?: number | string) => number | undefined;
3436
+ id: InputSignal<DBTableHeaderCellProps["id"]>;
3437
+ className: InputSignal<DBTableHeaderCellProps["className"]>;
3438
+ horizontalAlignment: InputSignal<DBTableHeaderCellProps["horizontalAlignment"]>;
3439
+ verticalAlignment: InputSignal<DBTableHeaderCellProps["verticalAlignment"]>;
3440
+ noText: InputSignal<DBTableHeaderCellProps["noText"]>;
3441
+ scope: InputSignal<DBTableHeaderCellProps["scope"]>;
3442
+ colSpan: InputSignal<DBTableHeaderCellProps["colSpan"]>;
3443
+ colspan: InputSignal<DBTableHeaderCellProps["colspan"]>;
3444
+ rowSpan: InputSignal<DBTableHeaderCellProps["rowSpan"]>;
3445
+ rowspan: InputSignal<DBTableHeaderCellProps["rowspan"]>;
3446
+ headers: InputSignal<DBTableHeaderCellProps["headers"]>;
3447
+ abbr: InputSignal<DBTableHeaderCellProps["abbr"]>;
3448
+ _ref: _angular_core.Signal<ElementRef<any> | undefined>;
3449
+ constructor();
3450
+ /**
3451
+ * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
3452
+ * @param element the ref for the component
3453
+ * @param customElementSelector the custom element like `my-component`
3454
+ */
3455
+ private enableAttributePassing;
3456
+ ngAfterViewInit(): void;
3457
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBTableHeaderCell, never>;
3458
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBTableHeaderCell, "db-table-header-cell", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "horizontalAlignment": { "alias": "horizontalAlignment"; "required": false; "isSignal": true; }; "verticalAlignment": { "alias": "verticalAlignment"; "required": false; "isSignal": true; }; "noText": { "alias": "noText"; "required": false; "isSignal": true; }; "scope": { "alias": "scope"; "required": false; "isSignal": true; }; "colSpan": { "alias": "colSpan"; "required": false; "isSignal": true; }; "colspan": { "alias": "colspan"; "required": false; "isSignal": true; }; "rowSpan": { "alias": "rowSpan"; "required": false; "isSignal": true; }; "rowspan": { "alias": "rowspan"; "required": false; "isSignal": true; }; "headers": { "alias": "headers"; "required": false; "isSignal": true; }; "abbr": { "alias": "abbr"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
3459
+ }
3460
+
3461
+ declare class DBTableRow implements AfterViewInit {
3462
+ protected readonly cls: (...args: ClassNameArg[]) => string;
3463
+ protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
3464
+ protected readonly uuid: () => string;
3465
+ id: InputSignal<DBTableRowProps["id"]>;
3466
+ className: InputSignal<DBTableRowProps["className"]>;
3467
+ interactive: InputSignal<DBTableRowProps["interactive"]>;
3468
+ subHeaderEmphasis: InputSignal<DBTableRowProps["subHeaderEmphasis"]>;
3469
+ cells: InputSignal<DBTableRowProps["cells"]>;
3470
+ _ref: _angular_core.Signal<ElementRef<any> | undefined>;
3471
+ getHeaderCell(cell: DBTableRowCell): DBTableHeaderCellProps | undefined;
3472
+ constructor();
3473
+ /**
3474
+ * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
3475
+ * @param element the ref for the component
3476
+ * @param customElementSelector the custom element like `my-component`
3477
+ */
3478
+ private enableAttributePassing;
3479
+ ngAfterViewInit(): void;
3480
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBTableRow, never>;
3481
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBTableRow, "db-table-row", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "interactive": { "alias": "interactive"; "required": false; "isSignal": true; }; "subHeaderEmphasis": { "alias": "subHeaderEmphasis"; "required": false; "isSignal": true; }; "cells": { "alias": "cells"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
3482
+ }
3483
+
2956
3484
  declare const TabsBehaviorList: readonly ["scrollbar", "arrows"];
2957
3485
  type TabsBehaviorType = (typeof TabsBehaviorList)[number];
2958
3486
  declare const TabsInitialSelectedModeList: readonly ["auto", "manually"];
@@ -3041,12 +3569,14 @@ declare class DBTabs implements AfterViewInit, OnDestroy {
3041
3569
  showScrollRight: _angular_core.WritableSignal<boolean | undefined>;
3042
3570
  scrollContainer: _angular_core.WritableSignal<Element | null | undefined>;
3043
3571
  _resizeObserver: _angular_core.WritableSignal<ResizeObserver | undefined>;
3572
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
3044
3573
  convertTabs(): any;
3045
3574
  evaluateScrollButtons(tList: Element): void;
3046
3575
  scroll(left?: boolean): void;
3047
3576
  initTabList(): void;
3048
3577
  initTabs(init?: boolean): void;
3049
3578
  handleChange(event: InputEvent<HTMLElement>): void;
3579
+ setupObserver(element: HTMLElement | null): void;
3050
3580
  trackByTab0(index: number, tab: any): string;
3051
3581
  trackByTab1(index: number, tab: any): string;
3052
3582
  constructor();
@@ -3105,9 +3635,9 @@ type DBTagDefaultState = {
3105
3635
  };
3106
3636
  type DBTagState = DBTagDefaultState & GlobalState;
3107
3637
 
3108
- declare class DBTag implements AfterViewInit {
3638
+ declare class DBTag implements AfterViewInit, OnDestroy {
3109
3639
  protected readonly cls: (...args: ClassNameArg[]) => string;
3110
- protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
3640
+ protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
3111
3641
  removeButton: InputSignal<DBTagProps["removeButton"]>;
3112
3642
  id: InputSignal<DBTagProps["id"]>;
3113
3643
  propOverrides: InputSignal<DBTagProps["propOverrides"]>;
@@ -3123,8 +3653,10 @@ declare class DBTag implements AfterViewInit {
3123
3653
  behavior: InputSignal<DBTagProps["behavior"]>;
3124
3654
  remove: _angular_core.OutputEmitterRef<void | MouseEvent | undefined>;
3125
3655
  _ref: _angular_core.Signal<ElementRef<any> | undefined>;
3656
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
3126
3657
  handleRemove(event?: ClickEvent<HTMLButtonElement> | void): void;
3127
3658
  getRemoveButtonText(): string | undefined;
3659
+ setupObserver(element: HTMLElement | null): void;
3128
3660
  constructor();
3129
3661
  /**
3130
3662
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -3133,6 +3665,7 @@ declare class DBTag implements AfterViewInit {
3133
3665
  */
3134
3666
  private enableAttributePassing;
3135
3667
  ngAfterViewInit(): void;
3668
+ ngOnDestroy(): void;
3136
3669
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBTag, never>;
3137
3670
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBTag, "db-tag", never, { "removeButton": { "alias": "removeButton"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "semantic": { "alias": "semantic"; "required": false; "isSignal": true; }; "emphasis": { "alias": "emphasis"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "showCheckState": { "alias": "showCheckState"; "required": false; "isSignal": true; }; "showIcon": { "alias": "showIcon"; "required": false; "isSignal": true; }; "noText": { "alias": "noText"; "required": false; "isSignal": true; }; "overflow": { "alias": "overflow"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "behavior": { "alias": "behavior"; "required": false; "isSignal": true; }; }, { "remove": "remove"; }, never, ["[content]", "*"], true, never>;
3138
3671
  }
@@ -3230,6 +3763,7 @@ declare class DBTextarea implements AfterViewInit, ControlValueAccessor, OnDestr
3230
3763
  _value: _angular_core.WritableSignal<string | undefined>;
3231
3764
  _voiceOverFallback: _angular_core.WritableSignal<string | undefined>;
3232
3765
  abortController: _angular_core.WritableSignal<AbortController | undefined>;
3766
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
3233
3767
  hasValidState(): boolean;
3234
3768
  handleValidation(): void;
3235
3769
  handleInput(event: InputEvent<HTMLTextAreaElement>, reset?: boolean): void;
@@ -3237,6 +3771,7 @@ declare class DBTextarea implements AfterViewInit, ControlValueAccessor, OnDestr
3237
3771
  handleBlur(event: InteractionEvent<HTMLTextAreaElement> | any): void;
3238
3772
  handleFocus(event: InteractionEvent<HTMLTextAreaElement> | any): void;
3239
3773
  resetIds(): void;
3774
+ setupObserver(element: HTMLElement | null): void;
3240
3775
  constructor(renderer: Renderer2);
3241
3776
  /**
3242
3777
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -3272,12 +3807,21 @@ type DBTooltipDefaultProps = {
3272
3807
  type DBTooltipProps = DBTooltipDefaultProps & GlobalProps & EmphasisProps & PlacementProps & PopoverProps & WrapProps & TextProps;
3273
3808
  type DBTooltipDefaultState = {
3274
3809
  getParent: () => HTMLElement;
3810
+ _attachedParent?: HTMLElement;
3811
+ _attachedId?: string;
3812
+ _activeTriggerCount?: number;
3813
+ _boundListeners?: {
3814
+ parent: HTMLElement;
3815
+ type: string;
3816
+ fn: (event: any) => void;
3817
+ }[];
3818
+ _detachListeners: () => void;
3275
3819
  };
3276
3820
  type DBTooltipState = DBTooltipDefaultState & GlobalState & ClickEventState<HTMLElement> & PopoverState & InitializedState & DocumentScrollState & ResetIdState;
3277
3821
 
3278
- declare class DBTooltip implements AfterViewInit {
3822
+ declare class DBTooltip implements AfterViewInit, OnDestroy {
3279
3823
  protected readonly cls: (...args: ClassNameArg[]) => string;
3280
- protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
3824
+ protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
3281
3825
  id: InputSignal<DBTooltipProps["id"]>;
3282
3826
  propOverrides: InputSignal<DBTooltipProps["propOverrides"]>;
3283
3827
  variant: InputSignal<DBTooltipProps["variant"]>;
@@ -3295,6 +3839,15 @@ declare class DBTooltip implements AfterViewInit {
3295
3839
  initialized: _angular_core.WritableSignal<boolean>;
3296
3840
  _documentScrollListenerCallbackId: _angular_core.WritableSignal<string | undefined>;
3297
3841
  _observer: _angular_core.WritableSignal<IntersectionObserver | undefined>;
3842
+ _attachedParent: _angular_core.WritableSignal<HTMLElement | undefined>;
3843
+ _attachedId: _angular_core.WritableSignal<string | undefined>;
3844
+ _activeTriggerCount: _angular_core.WritableSignal<number | undefined>;
3845
+ _boundListeners: _angular_core.WritableSignal<{
3846
+ parent: HTMLElement;
3847
+ type: string;
3848
+ fn: (event: any) => void;
3849
+ }[] | undefined>;
3850
+ observer: _angular_core.WritableSignal<MutationObserver | undefined>;
3298
3851
  handleClick(event: ClickEvent<HTMLElement>): void;
3299
3852
  handleEscape(event: any): void;
3300
3853
  getParent(): any;
@@ -3303,6 +3856,8 @@ declare class DBTooltip implements AfterViewInit {
3303
3856
  handleLeave(): void;
3304
3857
  handleEnter(parent?: HTMLElement): void;
3305
3858
  resetIds(): void;
3859
+ _detachListeners(): void;
3860
+ setupObserver(element: HTMLElement | null): void;
3306
3861
  constructor();
3307
3862
  /**
3308
3863
  * Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
@@ -3311,6 +3866,7 @@ declare class DBTooltip implements AfterViewInit {
3311
3866
  */
3312
3867
  private enableAttributePassing;
3313
3868
  ngAfterViewInit(): void;
3869
+ ngOnDestroy(): void;
3314
3870
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBTooltip, never>;
3315
3871
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBTooltip, "db-tooltip", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "placement": { "alias": "placement"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "emphasis": { "alias": "emphasis"; "required": false; "isSignal": true; }; "wrap": { "alias": "wrap"; "required": false; "isSignal": true; }; "animation": { "alias": "animation"; "required": false; "isSignal": true; }; "delay": { "alias": "delay"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "showArrow": { "alias": "showArrow"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
3316
3872
  }
@@ -3446,5 +4002,5 @@ declare const getFloatingProps: (element: HTMLElement, parent: HTMLElement, plac
3446
4002
  };
3447
4003
  declare const handleFixedPopover: (element: HTMLElement, parent: HTMLElement, placement: string) => void;
3448
4004
 
3449
- export { AccordionBehaviorList, AccordionVariantList, AlignmentList, AutoCompleteList, BadgePlacementList, ButtonTypeList, ButtonVariantList, COLOR, COLORS, COLORS_SIMPLE, COLOR_CONST, COLOR_SIMPLE, CardBehaviorList, CardElevationLevelList, CustomSelectDropdownWidthList, CustomSelectListItemTypeList, DBAccordion, DBAccordionItem, DBBadge, DBBrand, DBButton, DBCard, DBCheckbox, DBCustomButton, DBCustomSelect, DBCustomSelectDropdown, DBCustomSelectFormField, DBCustomSelectList, DBCustomSelectListItem, DBDivider, DBDrawer, DBHeader, DBIcon, DBInfotext, DBInput, DBLink, DBNavigation, DBNavigationItem, DBNotification, DBPage, DBPopover, DBRadio, DBSection, DBSelect, DBStack, DBSwitch, DBTabItem, DBTabList, DBTabPanel, DBTabs, DBTag, DBTextarea, DBTooltip, DB_UX_LOCAL_STORAGE_FRAMEWORK, DB_UX_LOCAL_STORAGE_MODE, DEFAULT_BACK, DEFAULT_BURGER_MENU, DEFAULT_CLOSE_BUTTON, DEFAULT_DATALIST_ID_SUFFIX, DEFAULT_ICON, DEFAULT_ID, DEFAULT_INVALID_MESSAGE, DEFAULT_INVALID_MESSAGE_ID_SUFFIX, DEFAULT_LABEL, DEFAULT_LABEL_ID_SUFFIX, DEFAULT_MESSAGE, DEFAULT_MESSAGE_ID_SUFFIX, DEFAULT_PLACEHOLDER, DEFAULT_PLACEHOLDER_ID_SUFFIX, DEFAULT_REMOVE, DEFAULT_ROWS, DEFAULT_SELECTED, DEFAULT_SELECT_ID_SUFFIX, DEFAULT_VALID_MESSAGE, DEFAULT_VALID_MESSAGE_ID_SUFFIX, DEFAULT_VIEWPORT, DENSITIES, DENSITY, DENSITY_CONST, DESKTOP_VIEWPORT, DividerMarginList, DividerVariantList, DocumentClickListener, DocumentScrollListener, DrawerBackdropList, DrawerDirectionList, DrawerPositionList, DrawerVariantList, EmphasisList, FieldSizingList, GapSpacingList, IconWeightList, InputTypeList, LabelVariantHorizontalList, LabelVariantList, LinkContentList, LinkReferrerPolicyList, LinkSizeList, LinkTargetList, LinkVariantList, MarginList, MaxWidthList, MetaNavigationDirective, NavigationContentDirective, NavigationDirective, NavigationItemSafeTriangle, NotificationAriaLiveList, NotificationLinkVariantList, NotificationVariantList, OrientationList, PageDocumentOverflowList, PageVariantList, PlacementHorizontalList, PlacementList, PlacementVerticalList, PopoverDelayList, PopoverWidthList, SEMANTIC, SEMANTICS, SecondaryActionDirective, SelectedTypeList, SemanticList, SizeList, SpacingList, StackAlignmentList, StackDirectionList, StackJustifyContentList, StackVariantList, TESTING_VIEWPORTS, TabsBehaviorList, TabsInitialSelectedModeList, TagBehaviorList, TextareaResizeList, TextareaWrapList, TooltipVariantList, ValidationList, WidthList, addAttributeToChildren, cls, delay, getBoolean, getBooleanAsString, getFloatingProps, getHideProp, getInputValue, getNotificationRole, getNumber, getOptionKey, getSearchInput, getStep, handleDataOutside, handleFixedDropdown, handleFixedPopover, hasVoiceOver, isArrayOfStrings, isEventTargetNavigationItem, isIOSSafari, isKeyboardEvent, stringPropVisible, uuid };
3450
- export type { AccordionBehaviorType, AccordionVariantType, ActiveProps, AlignmentProps, AlignmentType, AriaControlsProps, AutoCompleteType, BadgePlacementType, BaseFormProps, ButtonTypeType, ButtonVariantType, CardBehaviorType, CardElevationLevelType, ChangeEvent, ChangeEventProps, ChangeEventState, ClassNameArg, ClickEvent, ClickEventProps, ClickEventState, CloseEventProps, CloseEventState, ContainerWidthProps, ContentSlotProps, CustomFormProps, CustomSelectDropdownWidthType, CustomSelectListItemTypeType, CustomSelectOptionType, DBAccordionDefaultProps, DBAccordionDefaultState, DBAccordionItemDefaultProps, DBAccordionItemDefaultState, DBAccordionItemProps, DBAccordionItemState, DBAccordionProps, DBAccordionState, DBBadgeDefaultProps, DBBadgeDefaultState, DBBadgeProps, DBBadgeState, DBBrandDefaultProps, DBBrandDefaultState, DBBrandProps, DBBrandState, DBButtonDefaultProps, DBButtonDefaultState, DBButtonProps, DBButtonSharedProps, DBButtonState, DBCardDefaultProps, DBCardDefaultState, DBCardProps, DBCardState, DBCheckboxDefaultProps, DBCheckboxDefaultState, DBCheckboxProps, DBCheckboxState, DBCustomButtonDefaultProps, DBCustomButtonDefaultState, DBCustomButtonProps, DBCustomButtonState, DBCustomSelectDefaultProps, DBCustomSelectDefaultState, DBCustomSelectDropdownDefaultProps, DBCustomSelectDropdownDefaultState, DBCustomSelectDropdownProps, DBCustomSelectDropdownState, DBCustomSelectEvents, DBCustomSelectFormFieldDefaultProps, DBCustomSelectFormFieldDefaultState, DBCustomSelectFormFieldProps, DBCustomSelectFormFieldState, DBCustomSelectListDefaultProps, DBCustomSelectListDefaultState, DBCustomSelectListItemDefaultProps, DBCustomSelectListItemDefaultState, DBCustomSelectListItemExtraProps, DBCustomSelectListItemProps, DBCustomSelectListItemState, DBCustomSelectListProps, DBCustomSelectListState, DBCustomSelectProps, DBCustomSelectState, DBDataOutsidePair, DBDividerDefaultProps, DBDividerDefaultState, DBDividerProps, DBDividerState, DBDrawerDefaultProps, DBDrawerDefaultState, DBDrawerProps, DBDrawerState, DBHeaderDefaultProps, DBHeaderDefaultState, DBHeaderProps, DBHeaderState, DBIconDefaultProps, DBIconDefaultState, DBIconProps, DBIconState, DBInfotextDefaultProps, DBInfotextDefaultState, DBInfotextProps, DBInfotextState, DBInputDefaultProps, DBInputDefaultState, DBInputProps, DBInputState, DBLinkDefaultProps, DBLinkDefaultState, DBLinkProps, DBLinkState, DBNavigationDefaultProps, DBNavigationDefaultState, DBNavigationItemDefaultProps, DBNavigationItemDefaultState, DBNavigationItemProps, DBNavigationItemState, DBNavigationProps, DBNavigationState, DBNotificationDefaultProps, DBNotificationDefaultState, DBNotificationProps, DBNotificationState, DBPageDefaultProps, DBPageDefaultState, DBPageProps, DBPageState, DBPopoverDefaultProps, DBPopoverDefaultState, DBPopoverProps, DBPopoverState, DBRadioDefaultProps, DBRadioDefaultState, DBRadioProps, DBRadioState, DBSectionDefaultProps, DBSectionProps, DBSelectDefaultProps, DBSelectDefaultState, DBSelectOptionType, DBSelectProps, DBSelectState, DBSimpleTabProps, DBStackDefaultProps, DBStackDefaultState, DBStackProps, DBStackState, DBSwitchDefaultProps, DBSwitchDefaultState, DBSwitchProps, DBSwitchState, DBTabItemDefaultProps, DBTabItemDefaultState, DBTabItemProps, DBTabItemState, DBTabListDefaultProps, DBTabListDefaultState, DBTabListProps, DBTabListState, DBTabPanelDefaultProps, DBTabPanelDefaultState, DBTabPanelProps, DBTabPanelState, DBTabsDefaultProps, DBTabsDefaultState, DBTabsEventProps, DBTabsProps, DBTabsState, DBTagDefaultProps, DBTagDefaultState, DBTagEventsProps, DBTagProps, DBTagState, DBTextareaDefaultProps, DBTextareaDefaultState, DBTextareaProps, DBTextareaState, DBTooltipDefaultProps, DBTooltipDefaultState, DBTooltipProps, DBTooltipState, DividerMarginType, DividerVariantType, DocumentScrollState, DrawerBackdropType, DrawerDirectionType, DrawerPositionType, DrawerVariantType, EmphasisProps, EmphasisType, FieldSizingType, FocusEventProps, FocusEventState, FormCheckProps, FormMessageProps, FormProps, FormSizeProps, FormState, FormTextProps, FromValidState, GapProps, GapSpacingProps, GapSpacingType, GeneralEvent, GeneralKeyboardEvent, GlobalProps, GlobalState, IconLeadingProps, IconProps, IconTrailingProps, IconWeightType, InitializedState, InnerCloseButtonProps, InputEvent, InputEventProps, InputEventState, InputTypeType, InteractionEvent, LabelVariantHorizontalType, LabelVariantType, LinkContentType, LinkProps, LinkReferrerPolicyType, LinkSizeType, LinkTargetType, LinkVariantType, MarginProps, MarginType, MaxWidthType, NameProps, NameState, NavigationBackButtonProps, NavigationBehaviorState, NoTextProps, NotificationAriaLiveType, NotificationLinkVariantType, NotificationVariantType, OrientationProps, OrientationType, OverflowProps, PageDocumentOverflowType, PageVariantType, PatternhubProps, PlacementHorizontalType, PlacementProps, PlacementType, PlacementVerticalType, PopoverDelayType, PopoverProps, PopoverState, PopoverWidthType, PropOverridesType, RequiredProps, ResetIdState, RoleProps, SelectedTypeType, SemanticProps, SemanticType, ShowIconLeadingProps, ShowIconProps, ShowIconTrailingProps, ShowLabelProps, SizeProps, SizeType, SpacingProps, SpacingType, StackAlignmentType, StackDirectionType, StackJustifyContentType, StackVariantType, TabsBehaviorType, TabsInitialSelectedModeType, TagBehaviorType, TextProps, TextareaResizeType, TextareaWrapType, ToggleEventProps, ToggleEventState, TooltipVariantType, TriangleData, ValidationType, ValueLabelType, ValueProps, WidthProps, WidthType, WrapProps };
4005
+ export { AccordionBehaviorList, AccordionVariantList, AlignmentList, AutoCompleteList, BadgePlacementList, ButtonTypeList, ButtonVariantList, COLOR, COLORS, COLORS_SIMPLE, COLOR_CONST, COLOR_SIMPLE, CardBehaviorList, CardElevationLevelList, CustomSelectDropdownWidthList, CustomSelectListItemTypeList, DBAccordion, DBAccordionItem, DBBadge, DBBrand, DBButton, DBCard, DBCheckbox, DBCustomButton, DBCustomSelect, DBCustomSelectDropdown, DBCustomSelectFormField, DBCustomSelectList, DBCustomSelectListItem, DBDivider, DBDrawer, DBHeader, DBIcon, DBInfotext, DBInput, DBLink, DBNavigation, DBNavigationItem, DBNotification, DBPage, DBPopover, DBRadio, DBSection, DBSelect, DBStack, DBSwitch, DBTabItem, DBTabList, DBTabPanel, DBTable, DBTableBody, DBTableCaption, DBTableColumnsSizeList, DBTableDataCell, DBTableDividerList, DBTableFooter, DBTableHead, DBTableHeaderCell, DBTableHeaderCellScopeList, DBTableMobileVariantList, DBTableRow, DBTableRowSizeList, DBTableRowSubHeaderEmphasisList, DBTableStickyHeaderList, DBTableVariantList, DBTabs, DBTag, DBTextarea, DBTooltip, DB_UX_LOCAL_STORAGE_FRAMEWORK, DB_UX_LOCAL_STORAGE_MODE, DEFAULT_BACK, DEFAULT_BURGER_MENU, DEFAULT_CLOSE_BUTTON, DEFAULT_DATALIST_ID_SUFFIX, DEFAULT_ICON, DEFAULT_ID, DEFAULT_INVALID_MESSAGE, DEFAULT_INVALID_MESSAGE_ID_SUFFIX, DEFAULT_LABEL, DEFAULT_LABEL_ID_SUFFIX, DEFAULT_MESSAGE, DEFAULT_MESSAGE_ID_SUFFIX, DEFAULT_PLACEHOLDER, DEFAULT_PLACEHOLDER_ID_SUFFIX, DEFAULT_REMOVE, DEFAULT_ROWS, DEFAULT_SELECTED, DEFAULT_SELECT_ID_SUFFIX, DEFAULT_VALID_MESSAGE, DEFAULT_VALID_MESSAGE_ID_SUFFIX, DEFAULT_VIEWPORT, DENSITIES, DENSITY, DENSITY_CONST, DESKTOP_VIEWPORT, DividerMarginList, DividerVariantList, DocumentClickListener, DocumentScrollListener, DrawerBackdropList, DrawerDirectionList, DrawerPositionList, DrawerVariantList, EmphasisList, FieldSizingList, GapSpacingList, IconWeightList, InputTypeList, LabelVariantHorizontalList, LabelVariantList, LinkContentList, LinkReferrerPolicyList, LinkSizeList, LinkTargetList, LinkVariantList, MarginList, MaxWidthList, MetaNavigationDirective, NavigationContentDirective, NavigationDirective, NavigationItemSafeTriangle, NotificationAriaLiveList, NotificationLinkVariantList, NotificationVariantList, OrientationList, PageDocumentOverflowList, PageVariantList, PlacementHorizontalList, PlacementList, PlacementVerticalList, PopoverDelayList, PopoverWidthList, SEMANTIC, SEMANTICS, SecondaryActionDirective, SelectedTypeList, SemanticList, SizeList, SpacingList, StackAlignmentList, StackDirectionList, StackJustifyContentList, StackVariantList, TESTING_VIEWPORTS, TabsBehaviorList, TabsInitialSelectedModeList, TagBehaviorList, TextareaResizeList, TextareaWrapList, TooltipVariantList, ValidationList, WidthList, addAttributeToChildren, cls, delay, getBoolean, getBooleanAsString, getFloatingProps, getHideProp, getInputValue, getNotificationRole, getNumber, getOptionKey, getSearchInput, getStep, handleDataOutside, handleFixedDropdown, handleFixedPopover, hasVoiceOver, isArrayOfStrings, isEventTargetNavigationItem, isIOSSafari, isKeyboardEvent, stringPropVisible, uuid };
4006
+ export type { AccordionBehaviorType, AccordionVariantType, ActiveProps, AlignmentProps, AlignmentType, AriaControlsProps, AutoCompleteType, BadgePlacementType, BaseFormProps, ButtonTypeType, ButtonVariantType, CardBehaviorType, CardElevationLevelType, ChangeEvent, ChangeEventProps, ChangeEventState, ClassNameArg, ClickEvent, ClickEventProps, ClickEventState, CloseEventProps, CloseEventState, ContainerWidthProps, ContentSlotProps, CustomFormProps, CustomSelectDropdownWidthType, CustomSelectListItemTypeType, CustomSelectOptionType, DBAccordionDefaultProps, DBAccordionDefaultState, DBAccordionItemDefaultProps, DBAccordionItemDefaultState, DBAccordionItemProps, DBAccordionItemState, DBAccordionProps, DBAccordionState, DBBadgeDefaultProps, DBBadgeDefaultState, DBBadgeProps, DBBadgeState, DBBrandDefaultProps, DBBrandDefaultState, DBBrandProps, DBBrandState, DBButtonDefaultProps, DBButtonDefaultState, DBButtonProps, DBButtonSharedProps, DBButtonState, DBCardDefaultProps, DBCardDefaultState, DBCardProps, DBCardState, DBCheckboxDefaultProps, DBCheckboxDefaultState, DBCheckboxProps, DBCheckboxState, DBCustomButtonDefaultProps, DBCustomButtonDefaultState, DBCustomButtonProps, DBCustomButtonState, DBCustomSelectDefaultProps, DBCustomSelectDefaultState, DBCustomSelectDropdownDefaultProps, DBCustomSelectDropdownDefaultState, DBCustomSelectDropdownProps, DBCustomSelectDropdownState, DBCustomSelectEvents, DBCustomSelectFormFieldDefaultProps, DBCustomSelectFormFieldDefaultState, DBCustomSelectFormFieldProps, DBCustomSelectFormFieldState, DBCustomSelectListDefaultProps, DBCustomSelectListDefaultState, DBCustomSelectListItemDefaultProps, DBCustomSelectListItemDefaultState, DBCustomSelectListItemExtraProps, DBCustomSelectListItemProps, DBCustomSelectListItemState, DBCustomSelectListProps, DBCustomSelectListState, DBCustomSelectProps, DBCustomSelectState, DBDataOutsidePair, DBDividerDefaultProps, DBDividerDefaultState, DBDividerProps, DBDividerState, DBDrawerDefaultProps, DBDrawerDefaultState, DBDrawerProps, DBDrawerState, DBHeaderDefaultProps, DBHeaderDefaultState, DBHeaderProps, DBHeaderState, DBIconDefaultProps, DBIconDefaultState, DBIconProps, DBIconState, DBInfotextDefaultProps, DBInfotextDefaultState, DBInfotextProps, DBInfotextState, DBInputDefaultProps, DBInputDefaultState, DBInputProps, DBInputState, DBLinkDefaultProps, DBLinkDefaultState, DBLinkProps, DBLinkState, DBNavigationDefaultProps, DBNavigationDefaultState, DBNavigationItemDefaultProps, DBNavigationItemDefaultState, DBNavigationItemProps, DBNavigationItemState, DBNavigationProps, DBNavigationState, DBNotificationDefaultProps, DBNotificationDefaultState, DBNotificationProps, DBNotificationState, DBPageDefaultProps, DBPageDefaultState, DBPageProps, DBPageState, DBPopoverDefaultProps, DBPopoverDefaultState, DBPopoverProps, DBPopoverState, DBRadioDefaultProps, DBRadioDefaultState, DBRadioProps, DBRadioState, DBSectionDefaultProps, DBSectionProps, DBSelectDefaultProps, DBSelectDefaultState, DBSelectOptionType, DBSelectProps, DBSelectState, DBSimpleTabProps, DBStackDefaultProps, DBStackDefaultState, DBStackProps, DBStackState, DBSwitchDefaultProps, DBSwitchDefaultState, DBSwitchProps, DBSwitchState, DBTabItemDefaultProps, DBTabItemDefaultState, DBTabItemProps, DBTabItemState, DBTabListDefaultProps, DBTabListDefaultState, DBTabListProps, DBTabListState, DBTabPanelDefaultProps, DBTabPanelDefaultState, DBTabPanelProps, DBTabPanelState, DBTableBodyDefaultProps, DBTableBodyDefaultState, DBTableBodyProps, DBTableBodyState, DBTableCaptionDefaultProps, DBTableCaptionDefaultState, DBTableCaptionProps, DBTableCaptionState, DBTableCellProps, DBTableColumnsSizeType, DBTableData, DBTableDataCellDefaultProps, DBTableDataCellDefaultState, DBTableDataCellProps, DBTableDataCellState, DBTableDefaultProps, DBTableDefaultState, DBTableDividerType, DBTableFooterDefaultProps, DBTableFooterDefaultState, DBTableFooterProps, DBTableFooterState, DBTableHeadDefaultProps, DBTableHeadDefaultState, DBTableHeadProps, DBTableHeadState, DBTableHeaderCellDefaultProps, DBTableHeaderCellDefaultState, DBTableHeaderCellProps, DBTableHeaderCellScopeType, DBTableHeaderCellState, DBTableMobileVariantType, DBTableProps, DBTableRowCell, DBTableRowDefaultProps, DBTableRowDefaultState, DBTableRowProps, DBTableRowSizeType, DBTableRowState, DBTableRowSubHeaderEmphasisType, DBTableState, DBTableStickyHeaderType, DBTableVariantType, DBTabsDefaultProps, DBTabsDefaultState, DBTabsEventProps, DBTabsProps, DBTabsState, DBTagDefaultProps, DBTagDefaultState, DBTagEventsProps, DBTagProps, DBTagState, DBTextareaDefaultProps, DBTextareaDefaultState, DBTextareaProps, DBTextareaState, DBTooltipDefaultProps, DBTooltipDefaultState, DBTooltipProps, DBTooltipState, DividerMarginType, DividerVariantType, DocumentScrollState, DrawerBackdropType, DrawerDirectionType, DrawerPositionType, DrawerVariantType, EmphasisProps, EmphasisType, FieldSizingType, FocusEventProps, FocusEventState, FormCheckProps, FormMessageProps, FormProps, FormSizeProps, FormState, FormTextProps, FromValidState, GapProps, GapSpacingProps, GapSpacingType, GeneralEvent, GeneralKeyboardEvent, GlobalProps, GlobalState, IconLeadingProps, IconProps, IconTrailingProps, IconWeightType, InitializedState, InnerCloseButtonProps, InputEvent, InputEventProps, InputEventState, InputTypeType, InteractionEvent, LabelVariantHorizontalType, LabelVariantType, LinkContentType, LinkProps, LinkReferrerPolicyType, LinkSizeType, LinkTargetType, LinkVariantType, MarginProps, MarginType, MaxWidthType, NameProps, NameState, NavigationBackButtonProps, NavigationBehaviorState, NoTextProps, NotificationAriaLiveType, NotificationLinkVariantType, NotificationVariantType, OrientationProps, OrientationType, OverflowProps, PageDocumentOverflowType, PageVariantType, PatternhubProps, PlacementHorizontalType, PlacementProps, PlacementType, PlacementVerticalType, PopoverDelayType, PopoverProps, PopoverState, PopoverWidthType, PropOverridesType, RequiredProps, ResetIdState, RoleProps, SelectedTypeType, SemanticProps, SemanticType, ShowIconLeadingProps, ShowIconProps, ShowIconTrailingProps, ShowLabelProps, SizeProps, SizeType, SpacingProps, SpacingType, StackAlignmentType, StackDirectionType, StackJustifyContentType, StackVariantType, TabsBehaviorType, TabsInitialSelectedModeType, TagBehaviorType, TextProps, TextareaResizeType, TextareaWrapType, ToggleEventProps, ToggleEventState, TooltipVariantType, TriangleData, ValidationType, ValueLabelType, ValueProps, WidthProps, WidthType, WrapProps };