@ascentgl/ads-ui 21.13.0 → 21.14.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
|
@@ -135,7 +135,7 @@ declare class AdsNumericBadgeComponent extends AdsIconHoverComponent {
|
|
|
135
135
|
/** provide icon name. NOTE: the icon must be registered in icon registry **/
|
|
136
136
|
name: i0.InputSignal<adsIcon>;
|
|
137
137
|
/** choose ads icon theme **/
|
|
138
|
-
theme: i0.InputSignal<"
|
|
138
|
+
theme: i0.InputSignal<"primary" | "iconPrimary" | "success" | "warn" | "white">;
|
|
139
139
|
/** set badge value as number **/
|
|
140
140
|
value: i0.InputSignal<number>;
|
|
141
141
|
/** @ignore **/
|
|
@@ -1440,6 +1440,8 @@ declare class AdsInputComponent extends AbstractInputComponent implements OnInit
|
|
|
1440
1440
|
showHidePassword(): void;
|
|
1441
1441
|
/** @ignore */
|
|
1442
1442
|
restrictInput(event: KeyboardEvent): void;
|
|
1443
|
+
/** @ignore Prevent scroll wheel from changing number input value */
|
|
1444
|
+
preventScroll(event: WheelEvent): void;
|
|
1443
1445
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsInputComponent, never>;
|
|
1444
1446
|
static ɵcmp: i0.ɵɵComponentDeclaration<AdsInputComponent, "ads-input", never, { "maxlength": { "alias": "maxlength"; "required": false; }; "type": { "alias": "type"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "defaultValue": { "alias": "defaultValue"; "required": false; }; "isPasswordField": { "alias": "isPasswordField"; "required": false; }; "showClockIcon": { "alias": "showClockIcon"; "required": false; }; "mask": { "alias": "mask"; "required": false; }; "suffix": { "alias": "suffix"; "required": false; }; "prefix": { "alias": "prefix"; "required": false; }; "dropSpecialCharacters": { "alias": "dropSpecialCharacters"; "required": false; }; "thousandSeparator": { "alias": "thousandSeparator"; "required": false; }; "decimalMarker": { "alias": "decimalMarker"; "required": false; }; "matAutocomplete": { "alias": "matAutocomplete"; "required": false; }; "showSearchIcon": { "alias": "showSearchIcon"; "required": false; }; "onFocus": { "alias": "onFocus"; "required": false; }; "onBlur": { "alias": "onBlur"; "required": false; }; "rightHint": { "alias": "rightHint"; "required": false; }; }, {}, never, never, false, never>;
|
|
1445
1447
|
}
|