@ascentgl/ads-ui 21.19.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
|
@@ -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<"
|
|
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>;
|
|
@@ -1143,6 +1143,7 @@ declare abstract class AbstractBaseComponent implements OnChanges, AfterViewInit
|
|
|
1143
1143
|
constructor();
|
|
1144
1144
|
ngOnChanges(changes: {
|
|
1145
1145
|
immediateValidation: SimpleChange;
|
|
1146
|
+
skipValidationWhenEmpty?: SimpleChange;
|
|
1146
1147
|
}): void;
|
|
1147
1148
|
/** @ignore */
|
|
1148
1149
|
ngAfterViewInit(): void;
|
|
@@ -1267,6 +1268,7 @@ declare class AdsDropdownComponent extends AbstractDropdownComponent implements
|
|
|
1267
1268
|
ngOnChanges(changes: {
|
|
1268
1269
|
options: SimpleChange;
|
|
1269
1270
|
immediateValidation: SimpleChange;
|
|
1271
|
+
skipValidationWhenEmpty?: SimpleChange;
|
|
1270
1272
|
}): void;
|
|
1271
1273
|
onOptionRemoved(option: DropdownComponentOption): void;
|
|
1272
1274
|
/** @ignore */
|
|
@@ -3043,7 +3045,7 @@ declare class AdsBubbleModule {
|
|
|
3043
3045
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsBubbleModule>;
|
|
3044
3046
|
}
|
|
3045
3047
|
|
|
3046
|
-
declare class AdsTimeFieldComponent extends AdsInputDropdownComponent implements OnInit, OnDestroy {
|
|
3048
|
+
declare class AdsTimeFieldComponent extends AdsInputDropdownComponent implements OnInit, OnDestroy, OnChanges {
|
|
3047
3049
|
/** Enable military time, is "true" by default */
|
|
3048
3050
|
militaryTime: i0.InputSignal<boolean>;
|
|
3049
3051
|
/** Hide clock icon for military time */
|
|
@@ -3062,6 +3064,10 @@ declare class AdsTimeFieldComponent extends AdsInputDropdownComponent implements
|
|
|
3062
3064
|
/** @ignore */
|
|
3063
3065
|
private subscription;
|
|
3064
3066
|
/** @ignore */
|
|
3067
|
+
ngOnChanges(changes: {
|
|
3068
|
+
skipValidationWhenEmpty?: SimpleChange;
|
|
3069
|
+
} & Record<string, SimpleChange>): void;
|
|
3070
|
+
/** @ignore */
|
|
3065
3071
|
ngOnInit(): void;
|
|
3066
3072
|
/** @ignore */
|
|
3067
3073
|
private syncValidators;
|