@ascentgl/ads-ui 21.20.0 → 21.21.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.20.0",
3
+ "version": "21.21.0",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": ">=21.0.0",
6
6
  "date-fns": ">=4.1.0",
@@ -211,7 +211,7 @@ declare class AdsButtonComponent {
211
211
  /** Whether the button is a smaller version */
212
212
  size: i0.InputSignal<Size>;
213
213
  /** Sets the "type" attribute on the button */
214
- type: i0.InputSignal<"button" | "submit" | "reset">;
214
+ type: i0.InputSignal<"submit" | "button" | "reset">;
215
215
  /** Makes the button take 100% width of its container */
216
216
  fullWidth: i0.InputSignal<boolean>;
217
217
  static ɵfac: i0.ɵɵFactoryDeclaration<AdsButtonComponent, never>;
@@ -1268,6 +1268,7 @@ declare class AdsDropdownComponent extends AbstractDropdownComponent implements
1268
1268
  ngOnChanges(changes: {
1269
1269
  options: SimpleChange;
1270
1270
  immediateValidation: SimpleChange;
1271
+ skipValidationWhenEmpty?: SimpleChange;
1271
1272
  }): void;
1272
1273
  onOptionRemoved(option: DropdownComponentOption): void;
1273
1274
  /** @ignore */
@@ -3044,7 +3045,7 @@ declare class AdsBubbleModule {
3044
3045
  static ɵinj: i0.ɵɵInjectorDeclaration<AdsBubbleModule>;
3045
3046
  }
3046
3047
 
3047
- declare class AdsTimeFieldComponent extends AdsInputDropdownComponent implements OnInit, OnDestroy {
3048
+ declare class AdsTimeFieldComponent extends AdsInputDropdownComponent implements OnInit, OnDestroy, OnChanges {
3048
3049
  /** Enable military time, is "true" by default */
3049
3050
  militaryTime: i0.InputSignal<boolean>;
3050
3051
  /** Hide clock icon for military time */
@@ -3063,6 +3064,10 @@ declare class AdsTimeFieldComponent extends AdsInputDropdownComponent implements
3063
3064
  /** @ignore */
3064
3065
  private subscription;
3065
3066
  /** @ignore */
3067
+ ngOnChanges(changes: {
3068
+ skipValidationWhenEmpty?: SimpleChange;
3069
+ } & Record<string, SimpleChange>): void;
3070
+ /** @ignore */
3066
3071
  ngOnInit(): void;
3067
3072
  /** @ignore */
3068
3073
  private syncValidators;