@ascentgl/ads-ui 21.125.3 → 21.126.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
|
@@ -140,7 +140,7 @@ declare class AdsNumericBadgeComponent extends AdsIconHoverComponent {
|
|
|
140
140
|
/** provide icon name. NOTE: the icon must be registered in icon registry **/
|
|
141
141
|
name: i0.InputSignal<adsIcon>;
|
|
142
142
|
/** choose ads icon theme **/
|
|
143
|
-
theme: i0.InputSignal<"
|
|
143
|
+
theme: i0.InputSignal<"white" | "primary" | "iconPrimary" | "success" | "warn">;
|
|
144
144
|
/** set badge value as number **/
|
|
145
145
|
value: i0.InputSignal<number>;
|
|
146
146
|
/** @ignore **/
|
|
@@ -216,7 +216,7 @@ declare class AdsButtonComponent {
|
|
|
216
216
|
/** Whether the button is a smaller version */
|
|
217
217
|
size: i0.InputSignal<Size>;
|
|
218
218
|
/** Sets the "type" attribute on the button */
|
|
219
|
-
type: i0.InputSignal<"
|
|
219
|
+
type: i0.InputSignal<"button" | "submit" | "reset">;
|
|
220
220
|
/** Makes the button take 100% width of its container */
|
|
221
221
|
fullWidth: i0.InputSignal<boolean>;
|
|
222
222
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsButtonComponent, never>;
|
|
@@ -380,6 +380,8 @@ declare class AdsTagComponent {
|
|
|
380
380
|
id: i0.InputSignal<string>;
|
|
381
381
|
/** Whether the tag is removeable */
|
|
382
382
|
removable: i0.InputSignal<boolean>;
|
|
383
|
+
/** Optional custom color for the tag text */
|
|
384
|
+
textColor: i0.InputSignal<string | undefined>;
|
|
383
385
|
/** Show pointer cursor to indicate the tag is clickable */
|
|
384
386
|
clickable: i0.InputSignal<boolean>;
|
|
385
387
|
/** The text of the tag */
|
|
@@ -405,7 +407,7 @@ declare class AdsTagComponent {
|
|
|
405
407
|
/** @ignore */
|
|
406
408
|
private resolvePaletteHexColor;
|
|
407
409
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsTagComponent, never>;
|
|
408
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AdsTagComponent, "ads-tag", never, { "color": { "alias": "color"; "required": true; "isSignal": true; }; "borderColor": { "alias": "borderColor"; "required": false; "isSignal": true; }; "borderWidth": { "alias": "borderWidth"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": true; "isSignal": true; }; "removable": { "alias": "removable"; "required": false; "isSignal": true; }; "clickable": { "alias": "clickable"; "required": false; "isSignal": true; }; "tag": { "alias": "tag"; "required": true; "isSignal": true; }; }, { "remove": "remove"; "selected": "selected"; }, never, ["*"], false, never>;
|
|
410
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdsTagComponent, "ads-tag", never, { "color": { "alias": "color"; "required": true; "isSignal": true; }; "borderColor": { "alias": "borderColor"; "required": false; "isSignal": true; }; "borderWidth": { "alias": "borderWidth"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": true; "isSignal": true; }; "removable": { "alias": "removable"; "required": false; "isSignal": true; }; "textColor": { "alias": "textColor"; "required": false; "isSignal": true; }; "clickable": { "alias": "clickable"; "required": false; "isSignal": true; }; "tag": { "alias": "tag"; "required": true; "isSignal": true; }; }, { "remove": "remove"; "selected": "selected"; }, never, ["*"], false, never>;
|
|
409
411
|
}
|
|
410
412
|
|
|
411
413
|
declare class AdsTagModule {
|