@ascentgl/ads-ui 0.0.53 → 0.0.55
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.
|
@@ -1,25 +1,20 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
+
export type IconButtonSize = 'xl-5' | 'xl' | 'sm';
|
|
2
3
|
export declare class AdsIconButtonComponent {
|
|
4
|
+
/** Whether the button is a smaller version */
|
|
5
|
+
size: import("@angular/core").InputSignal<IconButtonSize>;
|
|
3
6
|
/**
|
|
4
7
|
* aria-label for the button
|
|
5
8
|
*/
|
|
6
|
-
ariaLabel: string
|
|
9
|
+
ariaLabel: import("@angular/core").InputSignal<string>;
|
|
7
10
|
/**
|
|
8
11
|
* The unique ID for the icon button
|
|
9
12
|
*/
|
|
10
|
-
id: string
|
|
11
|
-
/**
|
|
12
|
-
* Theme color palette for the component
|
|
13
|
-
*/
|
|
14
|
-
theme: 'primary' | 'success' | 'warn' | 'white';
|
|
13
|
+
id: import("@angular/core").InputSignal<string | null | undefined>;
|
|
15
14
|
/**
|
|
16
15
|
* Whether the button is disabled
|
|
17
16
|
*/
|
|
18
|
-
disabled: boolean
|
|
19
|
-
/**
|
|
20
|
-
* Sets the "type" attribute on the button
|
|
21
|
-
*/
|
|
22
|
-
type: 'button' | 'submit' | 'reset';
|
|
17
|
+
disabled: import("@angular/core").InputSignal<boolean>;
|
|
23
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsIconButtonComponent, never>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AdsIconButtonComponent, "ads-icon-button", never, { "
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdsIconButtonComponent, "ads-icon-button", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, ["*"], false, never>;
|
|
25
20
|
}
|