@cauca-911/material 18.0.1-beta4 → 18.0.1-beta5
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/esm2022/lib/buttons/base-button.mjs +9 -17
- package/esm2022/lib/buttons/icon-button/icon-button.component.mjs +3 -3
- package/esm2022/lib/buttons/raised-button/raised-button.component.mjs +19 -7
- package/fesm2022/cauca-911-material.mjs +26 -21
- package/fesm2022/cauca-911-material.mjs.map +1 -1
- package/lib/buttons/base-button.d.ts +5 -14
- package/lib/buttons/icon-button/icon-button.component.d.ts +2 -2
- package/lib/buttons/raised-button/raised-button.component.d.ts +14 -3
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { InputSignal, OutputEmitterRef } from "@angular/core";
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare abstract class
|
|
3
|
+
export declare abstract class BaseButton {
|
|
4
4
|
color: InputSignal<string>;
|
|
5
5
|
icon: InputSignal<string>;
|
|
6
6
|
iconAlignment: InputSignal<'left' | 'right'>;
|
|
@@ -10,21 +10,12 @@ export declare abstract class BaseButtonWithoutLabel {
|
|
|
10
10
|
iconToShow: import("@angular/core").Signal<string>;
|
|
11
11
|
buttonDisabled: import("@angular/core").Signal<boolean>;
|
|
12
12
|
buttonClick: OutputEmitterRef<void>;
|
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
14
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseButton, never>;
|
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseButton, never, never, { "color": { "alias": "color"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "iconAlignment": { "alias": "iconAlignment"; "required": false; "isSignal": true; }; "isDisabled": { "alias": "isDisabled"; "required": false; "isSignal": true; }; "isInProgress": { "alias": "isInProgress"; "required": false; "isSignal": true; }; }, { "buttonClick": "buttonClick"; }, never, never, false, never>;
|
|
15
15
|
}
|
|
16
|
-
export declare abstract class BaseButtonWithLabel {
|
|
16
|
+
export declare abstract class BaseButtonWithLabel extends BaseButton {
|
|
17
17
|
translateLabel: InputSignal<boolean>;
|
|
18
18
|
label: InputSignal<string>;
|
|
19
|
-
color: InputSignal<string>;
|
|
20
|
-
icon: InputSignal<string>;
|
|
21
|
-
iconAlignment: InputSignal<'left' | 'right'>;
|
|
22
|
-
isDisabled: InputSignal<boolean>;
|
|
23
|
-
isInProgress: InputSignal<boolean>;
|
|
24
|
-
showIcon: import("@angular/core").Signal<boolean>;
|
|
25
|
-
iconToShow: import("@angular/core").Signal<string>;
|
|
26
|
-
buttonDisabled: import("@angular/core").Signal<boolean>;
|
|
27
|
-
buttonClick: OutputEmitterRef<void>;
|
|
28
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<BaseButtonWithLabel, never>;
|
|
29
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseButtonWithLabel, never, never, { "translateLabel": { "alias": "translateLabel"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; };
|
|
20
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseButtonWithLabel, never, never, { "translateLabel": { "alias": "translateLabel"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
|
|
30
21
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { BaseButton } from '../base-button';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class IconButtonComponent extends
|
|
3
|
+
export declare class IconButtonComponent extends BaseButton {
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<IconButtonComponent, never>;
|
|
5
5
|
static ɵcmp: i0.ɵɵComponentDeclaration<IconButtonComponent, "app-icon-button", never, {}, {}, never, never, true, never>;
|
|
6
6
|
}
|
|
@@ -1,6 +1,17 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { InputSignal, OutputEmitterRef } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class RaisedButtonComponent
|
|
3
|
+
export declare class RaisedButtonComponent {
|
|
4
|
+
translateLabel: InputSignal<boolean>;
|
|
5
|
+
label: InputSignal<string>;
|
|
6
|
+
color: InputSignal<string>;
|
|
7
|
+
icon: InputSignal<string>;
|
|
8
|
+
iconAlignment: InputSignal<'left' | 'right'>;
|
|
9
|
+
isDisabled: InputSignal<boolean>;
|
|
10
|
+
isInProgress: InputSignal<boolean>;
|
|
11
|
+
showIcon: import("@angular/core").Signal<boolean>;
|
|
12
|
+
iconToShow: import("@angular/core").Signal<string>;
|
|
13
|
+
buttonDisabled: import("@angular/core").Signal<boolean>;
|
|
14
|
+
buttonClick: OutputEmitterRef<void>;
|
|
4
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<RaisedButtonComponent, never>;
|
|
5
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RaisedButtonComponent, "app-raised-button", never, {}, {}, never, never, true, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RaisedButtonComponent, "app-raised-button", never, { "translateLabel": { "alias": "translateLabel"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "iconAlignment": { "alias": "iconAlignment"; "required": false; "isSignal": true; }; "isDisabled": { "alias": "isDisabled"; "required": false; "isSignal": true; }; "isInProgress": { "alias": "isInProgress"; "required": false; "isSignal": true; }; }, { "buttonClick": "buttonClick"; }, never, never, true, never>;
|
|
6
17
|
}
|