@ascentgl/ads-ui 21.66.0 → 21.68.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ascentgl/ads-ui",
3
- "version": "21.66.0",
3
+ "version": "21.68.0",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": ">=21.0.0",
6
6
  "date-fns": ">=4.1.0",
@@ -1,5 +1,5 @@
1
1
  import * as i0 from '@angular/core';
2
- import { OnChanges, SimpleChanges, OnDestroy, EventEmitter, ElementRef, SimpleChange, OnInit, AfterContentInit, Renderer2, AfterViewInit, ChangeDetectorRef, TemplateRef, PipeTransform, QueryList } from '@angular/core';
2
+ import { OnChanges, SimpleChanges, OnDestroy, EventEmitter, ElementRef, SimpleChange, OnInit, AfterContentInit, Renderer2, AfterViewInit, ChangeDetectorRef, TemplateRef, DoCheck, PipeTransform, QueryList } from '@angular/core';
3
3
  import * as i3 from '@ascentgl/ads-icons';
4
4
  import { AdsIconRegistry, IconThemes } from '@ascentgl/ads-icons';
5
5
  import * as i2 from '@angular/common';
@@ -212,7 +212,7 @@ declare class AdsButtonComponent {
212
212
  /** Whether the button is a smaller version */
213
213
  size: i0.InputSignal<Size>;
214
214
  /** Sets the "type" attribute on the button */
215
- type: i0.InputSignal<"submit" | "button" | "reset">;
215
+ type: i0.InputSignal<"button" | "submit" | "reset">;
216
216
  /** Makes the button take 100% width of its container */
217
217
  fullWidth: i0.InputSignal<boolean>;
218
218
  static ɵfac: i0.ɵɵFactoryDeclaration<AdsButtonComponent, never>;
@@ -1619,7 +1619,7 @@ type TEMPLATE_TYPE = {
1619
1619
  type CustomMatOption = (MatOption & {
1620
1620
  modified?: boolean;
1621
1621
  }) | undefined | null;
1622
- declare class AdsSearchDropdownComponent extends AbstractDropdownComponent implements OnChanges, OnInit, AfterViewInit, OnDestroy {
1622
+ declare class AdsSearchDropdownComponent extends AbstractDropdownComponent implements OnChanges, OnInit, AfterViewInit, OnDestroy, DoCheck {
1623
1623
  private cdr;
1624
1624
  private renderer;
1625
1625
  private ref;
@@ -1727,6 +1727,8 @@ declare class AdsSearchDropdownComponent extends AbstractDropdownComponent imple
1727
1727
  private unsubscribeFromScroll?;
1728
1728
  /** @ignore */
1729
1729
  private previousControlValue?;
1730
+ /** @ignore - Tracks previous valueControl value for ngDoCheck to detect programmatic changes */
1731
+ private previousValueControlValue?;
1730
1732
  /** @ignore */
1731
1733
  private allOptions;
1732
1734
  private hostEl;
@@ -1740,6 +1742,8 @@ declare class AdsSearchDropdownComponent extends AbstractDropdownComponent imple
1740
1742
  /** @ignore */
1741
1743
  ngOnInit(): void;
1742
1744
  ngAfterViewInit(): void;
1745
+ /** @ignore - Detect value changes when setValue is called with emitEvent: false */
1746
+ ngDoCheck(): void;
1743
1747
  /** @ignore */
1744
1748
  ngOnDestroy(): void;
1745
1749
  /** @ignore */
@@ -3578,6 +3582,8 @@ declare class AdsTimeFieldComponent extends AdsInputDropdownComponent implements
3578
3582
  periodOptions: string[];
3579
3583
  protected readonly defaultErrorMessages: GENERIC_COLLECTION<string>;
3580
3584
  /** @ignore */
3585
+ get mergedErrorMessages(): GENERIC_COLLECTION<string>;
3586
+ /** @ignore */
3581
3587
  private subscription;
3582
3588
  /** @ignore */
3583
3589
  ngOnChanges(changes: {