matcha-components 20.252.0 → 20.256.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/fesm2022/matcha-components.mjs +523 -509
- package/fesm2022/matcha-components.mjs.map +1 -1
- package/index.d.ts +4 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1945,11 +1945,14 @@ declare class MatchaTabItemComponent {
|
|
|
1945
1945
|
icon: string;
|
|
1946
1946
|
private _active;
|
|
1947
1947
|
private _hasBeenActivated;
|
|
1948
|
+
private _disabled;
|
|
1948
1949
|
set active(value: boolean | string);
|
|
1949
1950
|
get active(): boolean;
|
|
1950
1951
|
get hasBeenActivated(): boolean;
|
|
1952
|
+
set disabled(value: boolean | string);
|
|
1953
|
+
get disabled(): boolean;
|
|
1951
1954
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaTabItemComponent, never>;
|
|
1952
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaTabItemComponent, "matcha-tab", never, { "title": { "alias": "title"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "active": { "alias": "active"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1955
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaTabItemComponent, "matcha-tab", never, { "title": { "alias": "title"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "active": { "alias": "active"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1953
1956
|
}
|
|
1954
1957
|
|
|
1955
1958
|
interface TabChangeEvent {
|