@corto-ai/gds-angular 2.1.4 → 2.1.5-dev.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@corto-ai/gds-angular",
3
- "version": "2.1.4",
4
- "devVersion": "1",
3
+ "version": "2.1.5-dev.2",
4
+ "devVersion": "2",
5
5
  "exports": {
6
6
  "./assets/*": "./assets/*",
7
7
  "./package.json": {
@@ -7,13 +7,14 @@ import { Observable, Subject } from 'rxjs';
7
7
  import * as i1$1 from '@angular/cdk/a11y';
8
8
  import { FocusableOption, FocusOrigin, FocusKeyManager } from '@angular/cdk/a11y';
9
9
  import * as _angular_forms_signals from '@angular/forms/signals';
10
- import { FormCheckboxControl, FormField, FormValueControl } from '@angular/forms/signals';
10
+ import { FormField, FormValueControl, FormCheckboxControl } from '@angular/forms/signals';
11
11
  import { MatCalendarView } from '@angular/material/datepicker';
12
12
  import * as _corto_ai_gds_angular from '@corto-ai/gds-angular';
13
13
  import * as i2 from '@ng-select/ng-select';
14
14
  import { DropdownPosition, NgSelectComponent } from '@ng-select/ng-select';
15
15
  import * as _angular_cdk_overlay from '@angular/cdk/overlay';
16
16
  import { ConnectedPosition } from '@angular/cdk/overlay';
17
+ import * as tippy_js from 'tippy.js';
17
18
  import * as _popperjs_core from '@popperjs/core';
18
19
  import * as i1$2 from '@ngneat/helipopper';
19
20
  import { TippyDirective } from '@ngneat/helipopper';
@@ -460,6 +461,77 @@ declare class GdsDocumentItemComponent {
460
461
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<GdsDocumentItemComponent, "gds-document-item", never, { "name": { "alias": "name"; "required": true; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "active": { "alias": "active"; "required": false; "isSignal": true; }; }, { "dismissed": "dismissed"; "clicked": "clicked"; }, never, never, true, never>;
461
462
  }
462
463
 
464
+ declare class GdsSignalFormContainer {
465
+ protected readonly nestedField: _angular_core.Signal<FormField<any> | undefined>;
466
+ formField: _angular_core.Signal<_angular_forms_signals.FieldState<any, string | number> | undefined>;
467
+ formFieldInvalid: _angular_core.Signal<boolean>;
468
+ formFieldTouched: _angular_core.Signal<boolean>;
469
+ formFieldError: _angular_core.Signal<string | undefined>;
470
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<GdsSignalFormContainer, never>;
471
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GdsSignalFormContainer, never, never, {}, {}, ["nestedField"], never, true, never>;
472
+ }
473
+ /**
474
+ * From https://angular.dev/guide/forms/signals/custom-controls#adding-state-signals
475
+ * This base class should be extended by any custom form control that we expect to use with signal forms directly
476
+ * i.e. that we directly apply the [formField] directive to.
477
+ * It adds the common interaction state signals and sets up host bindings
478
+ * All of these signals are automatically kept in sync by the form field directive
479
+ */
480
+ declare abstract class GdsSignalFormControl<T> implements FormValueControl<T> {
481
+ abstract value: ModelSignal<T>;
482
+ touched: ModelSignal<boolean>;
483
+ disabled: _angular_core.InputSignal<boolean>;
484
+ readonly: _angular_core.InputSignal<boolean>;
485
+ hidden: _angular_core.InputSignal<boolean>;
486
+ invalid: _angular_core.InputSignal<boolean>;
487
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<GdsSignalFormControl<any>, never>;
488
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GdsSignalFormControl<any>, never, never, { "touched": { "alias": "touched"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "hidden": { "alias": "hidden"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; }, { "touched": "touchedChange"; }, never, never, true, never>;
489
+ }
490
+
491
+ declare class GdsDrilldownSelectComponent<T extends {
492
+ children?: T[];
493
+ }> extends GdsSignalFormControl<string[]> implements AfterViewInit {
494
+ #private;
495
+ options: _angular_core.InputSignal<T[]>;
496
+ bindValue: _angular_core.InputSignal<keyof T>;
497
+ bindLabel: _angular_core.InputSignal<keyof T>;
498
+ clearable: _angular_core.InputSignalWithTransform<boolean, unknown>;
499
+ searchable: _angular_core.InputSignalWithTransform<boolean, unknown>;
500
+ maxMenuHeight: _angular_core.InputSignal<string>;
501
+ placeholder: _angular_core.InputSignal<string>;
502
+ searchPlaceholder: _angular_core.InputSignal<string>;
503
+ mobileCancelLabel: _angular_core.InputSignal<string>;
504
+ resetLabel: _angular_core.InputSignal<string>;
505
+ emptyText: _angular_core.InputSignal<string>;
506
+ backAriaLabel: _angular_core.InputSignal<string>;
507
+ value: _angular_core.ModelSignal<string[]>;
508
+ dropdownWidth: _angular_core.WritableSignal<number>;
509
+ isOpen: _angular_core.WritableSignal<boolean>;
510
+ navStack: _angular_core.WritableSignal<T[]>;
511
+ searchText: _angular_core.WritableSignal<string>;
512
+ menu: _angular_core.Signal<TemplateRef<HTMLElement>>;
513
+ displayedOptions: _angular_core.Signal<T[]>;
514
+ label: _angular_core.Signal<string>;
515
+ activeItems: _angular_core.Signal<T[keyof T][]>;
516
+ hasNavHeader: _angular_core.Signal<boolean>;
517
+ constructor();
518
+ ngAfterViewInit(): void;
519
+ onItemClick: (option: T) => void;
520
+ onDrilldownClick: (option: T) => void;
521
+ onBack: () => void;
522
+ onReset: () => void;
523
+ onBreadcrumbClick: (index: number) => void;
524
+ onSearch: (event: Event) => void;
525
+ onSearchKeydown: (event: KeyboardEvent) => void;
526
+ onEscape: () => void;
527
+ openMenu: () => void;
528
+ optionLabel: (option: T) => string;
529
+ onArrowRight: (option: T) => void;
530
+ onArrowLeft: () => void;
531
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<GdsDrilldownSelectComponent<any>, never>;
532
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<GdsDrilldownSelectComponent<any>, "gds-drilldown-select", never, { "options": { "alias": "options"; "required": true; "isSignal": true; }; "bindValue": { "alias": "bindValue"; "required": true; "isSignal": true; }; "bindLabel": { "alias": "bindLabel"; "required": true; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "searchable": { "alias": "searchable"; "required": false; "isSignal": true; }; "maxMenuHeight": { "alias": "maxMenuHeight"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "searchPlaceholder": { "alias": "searchPlaceholder"; "required": false; "isSignal": true; }; "mobileCancelLabel": { "alias": "mobileCancelLabel"; "required": false; "isSignal": true; }; "resetLabel": { "alias": "resetLabel"; "required": false; "isSignal": true; }; "emptyText": { "alias": "emptyText"; "required": false; "isSignal": true; }; "backAriaLabel": { "alias": "backAriaLabel"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, [{ directive: typeof i1.CdkMenuTrigger; inputs: {}; outputs: {}; }]>;
533
+ }
534
+
463
535
  declare class GdsDropdownComponent {
464
536
  #private;
465
537
  triggerElement: _angular_core.InputSignal<HTMLButtonElement | undefined>;
@@ -574,33 +646,6 @@ declare class GdsNativeTextareaDirective {
574
646
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GdsNativeTextareaDirective, "textarea", never, {}, {}, never, never, true, never>;
575
647
  }
576
648
 
577
- declare class GdsSignalFormContainer {
578
- protected readonly nestedField: _angular_core.Signal<FormField<any> | undefined>;
579
- formField: _angular_core.Signal<_angular_forms_signals.FieldState<any, string | number> | undefined>;
580
- formFieldInvalid: _angular_core.Signal<boolean>;
581
- formFieldTouched: _angular_core.Signal<boolean>;
582
- formFieldError: _angular_core.Signal<string | undefined>;
583
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<GdsSignalFormContainer, never>;
584
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GdsSignalFormContainer, never, never, {}, {}, ["nestedField"], never, true, never>;
585
- }
586
- /**
587
- * From https://angular.dev/guide/forms/signals/custom-controls#adding-state-signals
588
- * This base class should be extended by any custom form control that we expect to use with signal forms directly
589
- * i.e. that we directly apply the [formField] directive to.
590
- * It adds the common interaction state signals and sets up host bindings
591
- * All of these signals are automatically kept in sync by the form field directive
592
- */
593
- declare abstract class GdsSignalFormControl<T> implements FormValueControl<T> {
594
- abstract value: ModelSignal<T>;
595
- touched: ModelSignal<boolean>;
596
- disabled: _angular_core.InputSignal<boolean>;
597
- readonly: _angular_core.InputSignal<boolean>;
598
- hidden: _angular_core.InputSignal<boolean>;
599
- invalid: _angular_core.InputSignal<boolean>;
600
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<GdsSignalFormControl<any>, never>;
601
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GdsSignalFormControl<any>, never, never, { "touched": { "alias": "touched"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "hidden": { "alias": "hidden"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; }, { "touched": "touchedChange"; }, never, never, true, never>;
602
- }
603
-
604
649
  declare class GdsDateInputComponent extends GdsSignalFormContainer implements AfterViewInit, AfterContentInit, OnDestroy {
605
650
  #private;
606
651
  dropdownPositionX: _angular_core.InputSignal<string>;
@@ -631,6 +676,7 @@ declare class GdsDateInputComponent extends GdsSignalFormContainer implements Af
631
676
  }
632
677
 
633
678
  declare class GdsFileUploadComponent extends GdsSignalFormControl<File[]> {
679
+ #private;
634
680
  value: _angular_core.ModelSignal<File[]>;
635
681
  accept: _angular_core.InputSignal<string | undefined>;
636
682
  multiple: _angular_core.InputSignalWithTransform<boolean, unknown>;
@@ -638,15 +684,20 @@ declare class GdsFileUploadComponent extends GdsSignalFormControl<File[]> {
638
684
  separatorLabel: _angular_core.InputSignal<string>;
639
685
  browseLabel: _angular_core.InputSignal<string>;
640
686
  inputAriaLabel: _angular_core.InputSignal<string>;
641
- changed: _angular_core.OutputEmitterRef<File[]>;
687
+ layoutTmpl: _angular_core.Signal<TemplateRef<{
688
+ dragOver: boolean;
689
+ }> | undefined>;
642
690
  fileUpload: _angular_core.Signal<ElementRef<HTMLInputElement>>;
691
+ changed: _angular_core.OutputEmitterRef<File[]>;
643
692
  dragOver: _angular_core.WritableSignal<boolean>;
644
- preventDragEvent: (event: DragEvent, dragOver?: boolean) => void;
693
+ onDragOver: (event: DragEvent) => void;
694
+ onDragEnter: (event: DragEvent) => void;
695
+ onDragLeave: (event: DragEvent) => void;
645
696
  onFileDrop: (event: DragEvent) => void;
646
697
  fileSelected(event: Event): void;
647
698
  openFileSelector(): void;
648
699
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<GdsFileUploadComponent, never>;
649
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<GdsFileUploadComponent, "gds-file-upload", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "accept": { "alias": "accept"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "dragDropLabel": { "alias": "dragDropLabel"; "required": false; "isSignal": true; }; "separatorLabel": { "alias": "separatorLabel"; "required": false; "isSignal": true; }; "browseLabel": { "alias": "browseLabel"; "required": false; "isSignal": true; }; "inputAriaLabel": { "alias": "inputAriaLabel"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "changed": "changed"; }, never, ["*"], true, never>;
700
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<GdsFileUploadComponent, "gds-file-upload", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "accept": { "alias": "accept"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "dragDropLabel": { "alias": "dragDropLabel"; "required": false; "isSignal": true; }; "separatorLabel": { "alias": "separatorLabel"; "required": false; "isSignal": true; }; "browseLabel": { "alias": "browseLabel"; "required": false; "isSignal": true; }; "inputAriaLabel": { "alias": "inputAriaLabel"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "changed": "changed"; }, ["layoutTmpl"], ["*"], true, never>;
650
701
  }
651
702
 
652
703
  declare class GdsFormControlComponent extends GdsSignalFormContainer {
@@ -1135,12 +1186,18 @@ declare class GdsTooltipComponent extends OnBrandChanged {
1135
1186
  open: _angular_core.InputSignalWithTransform<boolean, unknown>;
1136
1187
  maxWidth: _angular_core.InputSignal<CSSValue>;
1137
1188
  appendTo: _angular_core.InputSignal<Element | "parent" | ((ref: Element) => Element)>;
1189
+ lineClamp: _angular_core.InputSignalWithTransform<number, unknown>;
1190
+ tooltipOffset: _angular_core.InputSignal<[number, number] | (({ placement, popper, reference, }: {
1191
+ placement: tippy_js.Placement;
1192
+ popper: _popperjs_core.Rect;
1193
+ reference: _popperjs_core.Rect;
1194
+ }) => [number, number])>;
1138
1195
  tooltipVariation: _angular_core.Signal<"light" | "dark">;
1196
+ protected tooltipEnabled: _angular_core.Signal<boolean>;
1139
1197
  tippyDirective: _angular_core.Signal<TippyDirective>;
1140
1198
  span: _angular_core.Signal<ElementRef<HTMLSpanElement>>;
1141
- get isOverflowing(): boolean;
1142
1199
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<GdsTooltipComponent, never>;
1143
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<GdsTooltipComponent, "gds-tooltip", never, { "tooltip": { "alias": "tooltip"; "required": true; "isSignal": true; }; "onlyTextOverflow": { "alias": "onlyTextOverflow"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "tooltipPlacement": { "alias": "tooltipPlacement"; "required": false; "isSignal": true; }; "tooltipInteractive": { "alias": "tooltipInteractive"; "required": false; "isSignal": true; }; "useHostWidth": { "alias": "useHostWidth"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; "maxWidth": { "alias": "maxWidth"; "required": false; "isSignal": true; }; "appendTo": { "alias": "appendTo"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof i1$2.TippyDirective; inputs: {}; outputs: {}; }]>;
1200
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<GdsTooltipComponent, "gds-tooltip", never, { "tooltip": { "alias": "tooltip"; "required": true; "isSignal": true; }; "onlyTextOverflow": { "alias": "onlyTextOverflow"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "tooltipPlacement": { "alias": "tooltipPlacement"; "required": false; "isSignal": true; }; "tooltipInteractive": { "alias": "tooltipInteractive"; "required": false; "isSignal": true; }; "useHostWidth": { "alias": "useHostWidth"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; "maxWidth": { "alias": "maxWidth"; "required": false; "isSignal": true; }; "appendTo": { "alias": "appendTo"; "required": false; "isSignal": true; }; "lineClamp": { "alias": "lineClamp"; "required": false; "isSignal": true; }; "tooltipOffset": { "alias": "tooltipOffset"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof i1$2.TippyDirective; inputs: {}; outputs: {}; }]>;
1144
1201
  }
1145
1202
 
1146
1203
  declare abstract class GdsListboxOption implements FocusableOption {
@@ -1170,6 +1227,7 @@ declare class GdsTreeViewListItemComponent {
1170
1227
  expanded: _angular_core.InputSignalWithTransform<boolean, unknown>;
1171
1228
  hasChildren: _angular_core.InputSignalWithTransform<boolean, unknown>;
1172
1229
  ariaLabel: _angular_core.InputSignal<string>;
1230
+ disableChevron: _angular_core.InputSignal<boolean | undefined>;
1173
1231
  clicked: _angular_core.OutputEmitterRef<Event>;
1174
1232
  doubleClicked: _angular_core.OutputEmitterRef<void>;
1175
1233
  toggleExpanded: _angular_core.OutputEmitterRef<void>;
@@ -1182,7 +1240,7 @@ declare class GdsTreeViewListItemComponent {
1182
1240
  private _clicked;
1183
1241
  private _clearClickTimeout;
1184
1242
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<GdsTreeViewListItemComponent, never>;
1185
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<GdsTreeViewListItemComponent, "gds-tree-view-list-item", never, { "tier": { "alias": "tier"; "required": true; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "active": { "alias": "active"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "nowrap": { "alias": "nowrap"; "required": false; "isSignal": true; }; "expanded": { "alias": "expanded"; "required": false; "isSignal": true; }; "hasChildren": { "alias": "hasChildren"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, { "clicked": "clicked"; "doubleClicked": "doubleClicked"; "toggleExpanded": "toggleExpanded"; }, ["checkbox"], ["[checkbox]", "*", "[end-content]", "[expanded-content]"], true, [{ directive: typeof GdsListboxOptionDirective; inputs: {}; outputs: {}; }]>;
1243
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<GdsTreeViewListItemComponent, "gds-tree-view-list-item", never, { "tier": { "alias": "tier"; "required": true; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "active": { "alias": "active"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "nowrap": { "alias": "nowrap"; "required": false; "isSignal": true; }; "expanded": { "alias": "expanded"; "required": false; "isSignal": true; }; "hasChildren": { "alias": "hasChildren"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "disableChevron": { "alias": "disableChevron"; "required": false; "isSignal": true; }; }, { "clicked": "clicked"; "doubleClicked": "doubleClicked"; "toggleExpanded": "toggleExpanded"; }, ["checkbox"], ["[checkbox]", "*", "[end-content]", "[expanded-content]"], true, [{ directive: typeof GdsListboxOptionDirective; inputs: {}; outputs: {}; }]>;
1186
1244
  }
1187
1245
 
1188
1246
  declare class TreeViewListItemDirective {
@@ -1274,7 +1332,7 @@ declare class GdsMessageInputComponent {
1274
1332
  clear(): void;
1275
1333
  focus(): void;
1276
1334
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<GdsMessageInputComponent, never>;
1277
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<GdsMessageInputComponent, "gds-message-input", never, { "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "suppressClearOnSubmit": { "alias": "suppressClearOnSubmit"; "required": false; "isSignal": true; }; "enableIcon": { "alias": "enableIcon"; "required": false; "isSignal": true; }; "textareaAriaLabel": { "alias": "textareaAriaLabel"; "required": false; "isSignal": true; }; "sendButtonAriaLabel": { "alias": "sendButtonAriaLabel"; "required": false; "isSignal": true; }; "cancelButtonAriaLabel": { "alias": "cancelButtonAriaLabel"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "sent": "sent"; "canceled": "canceled"; "changed": "changed"; "value": "valueChange"; }, never, ["*"], true, never>;
1335
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<GdsMessageInputComponent, "gds-message-input", never, { "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "suppressClearOnSubmit": { "alias": "suppressClearOnSubmit"; "required": false; "isSignal": true; }; "enableIcon": { "alias": "enableIcon"; "required": false; "isSignal": true; }; "textareaAriaLabel": { "alias": "textareaAriaLabel"; "required": false; "isSignal": true; }; "sendButtonAriaLabel": { "alias": "sendButtonAriaLabel"; "required": false; "isSignal": true; }; "cancelButtonAriaLabel": { "alias": "cancelButtonAriaLabel"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "sent": "sent"; "canceled": "canceled"; "changed": "changed"; "value": "valueChange"; }, never, ["[header]", "[footer]"], true, never>;
1278
1336
  }
1279
1337
 
1280
1338
  declare class GdsChatPromptComponent {
@@ -1550,5 +1608,5 @@ declare class GdsModule {
1550
1608
  static ɵinj: _angular_core.ɵɵInjectorDeclaration<GdsModule>;
1551
1609
  }
1552
1610
 
1553
- export { BrandEnum, CDN_URL, CONTACT_INITIALS_REGEX, GDS_BRANDS, GDS_EMPTY_STATE_VARIANTS, GDS_TOASTER_CONFIG, GDS_TOAST_CONTAINER, GdsAccountingService, GdsAutoRoundCurrencyDirective, GdsAutofocusDirective, GdsAvatarComponent, GdsBadgeColorType, GdsBadgeComponent, GdsBadgeVariantType, GdsBannerComponent, GdsBreadcrumbsComponent, GdsBuildOptionConfigPipe, GdsButtonComponent, GdsButtonRadioOptionComponent, GdsChatExpandableListComponent, GdsChatPromptComponent, GdsChatSuggestionComponent, GdsCheckboxComponent, GdsChipColorsMap, GdsChipComponent, GdsCollapsibleAsideLayoutComponent, GdsCompositeOptionPrimaryDirective, GdsCompositeOptionSecondaryDirective, GdsContextMenuHeadingComponent, GdsContextMenuItemComponent, GdsContextMenuItemVariantEnum, GdsContextMenuSwitchComponent, GdsDateInputComponent, GdsDatePipe, GdsDialogBaseDirective, GdsDialogComponent, GdsDialogOverlayComponent, GdsDialogService, GdsDoctypeService, GdsDoctypeToIconPipe, GdsDocumentItemComponent, GdsDropdownComponent, GdsEmptyStateComponent, GdsFeatureBlockComponent, GdsFeedbackButtonComponent, GdsFileUploadComponent, GdsFilenameToIconPipe, GdsFilterChipComponent, GdsFocusOnInitDirective, GdsFormControlComponent, GdsHistoryComponent, GdsIconButtonComponent, GdsIconComponent, GdsIconDoctypeComponent, GdsIconService, GdsInputAutocompleteDirective, GdsItemDisplayComponent, GdsKeyboardNavigationHost, GdsKeyboardNavigationItem, GdsListboxCompositeOptionDirective, GdsListboxDirective, GdsListboxOptionDirective, GdsLoadingCarouselComponent, GdsMapArrayToRadioOptionsPipe, GdsMathFloorPipe, GdsMathMaxPipe, GdsMathMinPipe, GdsMessageInputComponent, GdsModule, GdsNativeInputDirective, GdsNativeTextareaDirective, GdsNavAsideComponent, GdsNavAsideItemComponent, GdsNestedSelectComponent, GdsProgressBarComponent, GdsRadioComponent, GdsRadioOptionDirective, GdsReferenceComponent, GdsReferenceLinkComponent, GdsRegexFilterDirective, GdsResizedDirective, GdsResizedEvent, GdsResponseComponent, GdsScrollOutOfViewDirective, GdsScrollOutOfViewScrollStatus, GdsScrollOutOfViewService, GdsScrollToBottomDirective, GdsScrollToFirstInvalidDirective, GdsSearchBarComponent, GdsSelectComponent, GdsSelectOnFocusDirective, GdsSidebarItemBodyComponent, GdsSidebarItemComponent, GdsSkeletonLoadingComponent, GdsSliderComponent, GdsSpinnerComponent, GdsSplitButtonComponent, GdsSvgIconPipe, GdsSwitchComponent, GdsTextInputComponent, GdsTextareaComponent, GdsTimelineItemComponent, GdsToastComponent, GdsTooltipComponent, GdsTreeViewListItemComponent, GdsUserPromptService, GdsVirtualScrollListboxDirective, MapperPipe, OnBrandChanged, RoundMode, ToastrService, TreeViewListItemDirective, chipColor, chipSize, chipTypes, chipWidth, formatToISO, gdsButtonSizes, gdsButtonVariants, gdsDropdownPositionsX, gdsDropdownPositionsY, gdsSelectWidths, gdsServices, gdsUserPromptSecondaryTextVariants, getIconsByPrefix, isGdsBrand, ngSelectDropdownPositions, parseLocalizedDate, provideToaster, shortDate, shortDateTime, transformDateFormat, transformDurationToSeconds, transformSecondsToDuration };
1611
+ export { BrandEnum, CDN_URL, CONTACT_INITIALS_REGEX, GDS_BRANDS, GDS_EMPTY_STATE_VARIANTS, GDS_TOASTER_CONFIG, GDS_TOAST_CONTAINER, GdsAccountingService, GdsAutoRoundCurrencyDirective, GdsAutofocusDirective, GdsAvatarComponent, GdsBadgeColorType, GdsBadgeComponent, GdsBadgeVariantType, GdsBannerComponent, GdsBreadcrumbsComponent, GdsBuildOptionConfigPipe, GdsButtonComponent, GdsButtonRadioOptionComponent, GdsChatExpandableListComponent, GdsChatPromptComponent, GdsChatSuggestionComponent, GdsCheckboxComponent, GdsChipColorsMap, GdsChipComponent, GdsCollapsibleAsideLayoutComponent, GdsCompositeOptionPrimaryDirective, GdsCompositeOptionSecondaryDirective, GdsContextMenuHeadingComponent, GdsContextMenuItemComponent, GdsContextMenuItemVariantEnum, GdsContextMenuSwitchComponent, GdsDateInputComponent, GdsDatePipe, GdsDialogBaseDirective, GdsDialogComponent, GdsDialogOverlayComponent, GdsDialogService, GdsDoctypeService, GdsDoctypeToIconPipe, GdsDocumentItemComponent, GdsDrilldownSelectComponent, GdsDropdownComponent, GdsEmptyStateComponent, GdsFeatureBlockComponent, GdsFeedbackButtonComponent, GdsFileUploadComponent, GdsFilenameToIconPipe, GdsFilterChipComponent, GdsFocusOnInitDirective, GdsFormControlComponent, GdsHistoryComponent, GdsIconButtonComponent, GdsIconComponent, GdsIconDoctypeComponent, GdsIconService, GdsInputAutocompleteDirective, GdsItemDisplayComponent, GdsKeyboardNavigationHost, GdsKeyboardNavigationItem, GdsListboxCompositeOptionDirective, GdsListboxDirective, GdsListboxOptionDirective, GdsLoadingCarouselComponent, GdsMapArrayToRadioOptionsPipe, GdsMathFloorPipe, GdsMathMaxPipe, GdsMathMinPipe, GdsMessageInputComponent, GdsModule, GdsNativeInputDirective, GdsNativeTextareaDirective, GdsNavAsideComponent, GdsNavAsideItemComponent, GdsNestedSelectComponent, GdsProgressBarComponent, GdsRadioComponent, GdsRadioOptionDirective, GdsReferenceComponent, GdsReferenceLinkComponent, GdsRegexFilterDirective, GdsResizedDirective, GdsResizedEvent, GdsResponseComponent, GdsScrollOutOfViewDirective, GdsScrollOutOfViewScrollStatus, GdsScrollOutOfViewService, GdsScrollToBottomDirective, GdsScrollToFirstInvalidDirective, GdsSearchBarComponent, GdsSelectComponent, GdsSelectOnFocusDirective, GdsSidebarItemBodyComponent, GdsSidebarItemComponent, GdsSkeletonLoadingComponent, GdsSliderComponent, GdsSpinnerComponent, GdsSplitButtonComponent, GdsSvgIconPipe, GdsSwitchComponent, GdsTextInputComponent, GdsTextareaComponent, GdsTimelineItemComponent, GdsToastComponent, GdsTooltipComponent, GdsTreeViewListItemComponent, GdsUserPromptService, GdsVirtualScrollListboxDirective, MapperPipe, OnBrandChanged, RoundMode, ToastrService, TreeViewListItemDirective, chipColor, chipSize, chipTypes, chipWidth, formatToISO, gdsButtonSizes, gdsButtonVariants, gdsDropdownPositionsX, gdsDropdownPositionsY, gdsSelectWidths, gdsServices, gdsUserPromptSecondaryTextVariants, getIconsByPrefix, isGdsBrand, ngSelectDropdownPositions, parseLocalizedDate, provideToaster, shortDate, shortDateTime, transformDateFormat, transformDurationToSeconds, transformSecondsToDuration };
1554
1612
  export type { FeatureDescriptionConfigVM, GdsActiveToast, GdsAvatarOrganizationType, GdsAvatarSize, GdsAvatarVariant, GdsBannerState, GdsBrand, GdsBreadCrumbSize, GdsBreadCrumbVM, GdsButtonSharedCssProperties, GdsButtonSharedProperties, GdsButtonSharedSlotProperties, GdsButtonSize, GdsButtonVariant, GdsChipColor, GdsChipColorType, GdsChipSize, GdsChipTypes, GdsChipWidth, GdsContextMenuItemVariantType, GdsDropdownPositionX, GdsDropdownPositionY, GdsEmptyStateSize, GdsEmptyStateVariant, GdsNativeRadioProps, GdsRadioOption, GdsRadioOptionConfig, GdsScrollOutOfViewScrollStatusType, GdsSelectWidth, GdsTimelineConnectorType, GdsToastConfig, GdsToastConfigPayload, GdsToastGlobalConfig, GdsToastInstance, GdsToastStatus, GdsToastType, GdsUserPromptSecondaryTextVariant, HistoryItemVM };