@ascentgl/ads-ui 21.20.0 → 21.21.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.
package/package.json
CHANGED
|
@@ -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;
|