matcha-components 19.26.0 → 19.27.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 +73 -60
- package/fesm2022/matcha-components.mjs.map +1 -1
- package/lib/matcha-button-group/button-group/button-group.component.d.ts +3 -1
- package/lib/matcha-components.module.d.ts +1 -1
- package/lib/matcha-elevation/elevation.directive.d.ts +1 -1
- package/lib/matcha-modal/matcha-modal.module.d.ts +2 -1
- package/lib/matcha-modal/modal/modal.component.d.ts +1 -2
- package/package.json +1 -1
- package/public-api.d.ts +1 -1
- /package/lib/matcha-button-group/{matcha-button-group.module.d.ts → button-group.module.d.ts} +0 -0
|
@@ -2,7 +2,9 @@ import { QueryList, AfterContentInit } from '@angular/core';
|
|
|
2
2
|
import { MatchaButtonItemComponent } from '../button-item/button-item.component';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class MatchaButtonGroupComponent implements AfterContentInit {
|
|
5
|
-
|
|
5
|
+
private _multiple;
|
|
6
|
+
get multiple(): boolean;
|
|
7
|
+
set multiple(value: boolean | string);
|
|
6
8
|
activeColor: string;
|
|
7
9
|
inactiveColor: string;
|
|
8
10
|
buttonItems: QueryList<MatchaButtonItemComponent>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./matcha-overflow-draggable/matcha-overflow-draggable.component";
|
|
3
|
-
import * as i2 from "./matcha-button-group/
|
|
3
|
+
import * as i2 from "./matcha-button-group/button-group.module";
|
|
4
4
|
import * as i3 from "./matcha-accordion/accordion.module";
|
|
5
5
|
import * as i4 from "./matcha-form-field/matcha-form-field.module";
|
|
6
6
|
import * as i5 from "./matcha-infinite-scroll/matcha-infinite-scroll.module";
|
|
@@ -3,7 +3,7 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class MatchaElevationDirective {
|
|
4
4
|
private _elementRef;
|
|
5
5
|
private _renderer;
|
|
6
|
-
elevation: number;
|
|
6
|
+
elevation: number | string;
|
|
7
7
|
constructor(_elementRef: ElementRef, _renderer: Renderer2);
|
|
8
8
|
ngOnChanges(): void;
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaElevationDirective, never>;
|
|
@@ -9,8 +9,9 @@ import * as i7 from "../matcha-icon/icon.module";
|
|
|
9
9
|
import * as i8 from "../matcha-title/title.module";
|
|
10
10
|
import * as i9 from "../matcha-divider/divider.module";
|
|
11
11
|
import * as i10 from "../matcha-tooltip/tooltip.module";
|
|
12
|
+
import * as i11 from "../matcha-elevation/elevation.module";
|
|
12
13
|
export declare class MatchaModalModule {
|
|
13
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaModalModule, never>;
|
|
14
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaModalModule, [typeof i1.MatchaModalHeaderComponent, typeof i2.MatchaModalContentComponent, typeof i3.MatchaModalFooterComponent, typeof i4.MatchaModalOptionsComponent, typeof i5.MatchaModalComponent], [typeof i6.CommonModule, typeof i7.MatchaIconModule, typeof i8.MatchaTitleModule, typeof i9.MatchaDividerModule, typeof i10.MatchaTooltipModule], [typeof i1.MatchaModalHeaderComponent, typeof i2.MatchaModalContentComponent, typeof i3.MatchaModalFooterComponent, typeof i4.MatchaModalOptionsComponent, typeof i5.MatchaModalComponent]>;
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MatchaModalModule, [typeof i1.MatchaModalHeaderComponent, typeof i2.MatchaModalContentComponent, typeof i3.MatchaModalFooterComponent, typeof i4.MatchaModalOptionsComponent, typeof i5.MatchaModalComponent], [typeof i6.CommonModule, typeof i7.MatchaIconModule, typeof i8.MatchaTitleModule, typeof i9.MatchaDividerModule, typeof i10.MatchaTooltipModule, typeof i11.MatchaElevationModule], [typeof i1.MatchaModalHeaderComponent, typeof i2.MatchaModalContentComponent, typeof i3.MatchaModalFooterComponent, typeof i4.MatchaModalOptionsComponent, typeof i5.MatchaModalComponent]>;
|
|
15
16
|
static ɵinj: i0.ɵɵInjectorDeclaration<MatchaModalModule>;
|
|
16
17
|
}
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class MatchaModalComponent {
|
|
3
|
-
elevation: number | string;
|
|
4
3
|
class: string;
|
|
5
4
|
get classes(): string;
|
|
6
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaModalComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaModalComponent, "matcha-modal", never, { "
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaModalComponent, "matcha-modal", never, { "class": { "alias": "class"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
8
7
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -26,7 +26,7 @@ export * from './lib/matcha-toolbar/toolbar-main-button/toolbar-main-button.comp
|
|
|
26
26
|
export * from './lib/matcha-form-field/matcha-form-field/matcha-form-field.component';
|
|
27
27
|
export * from './lib/matcha-form-field/matcha-label/matcha-label.component';
|
|
28
28
|
export * from './lib/matcha-form-field/matcha-error/matcha-error.component';
|
|
29
|
-
export * from './lib/matcha-button-group/
|
|
29
|
+
export * from './lib/matcha-button-group/button-group.module';
|
|
30
30
|
export * from './lib/matcha-accordion/accordion.module';
|
|
31
31
|
export * from './lib/matcha-infinite-scroll/matcha-infinite-scroll.module';
|
|
32
32
|
export * from './lib/matcha-modal/matcha-modal.module';
|
/package/lib/matcha-button-group/{matcha-button-group.module.d.ts → button-group.module.d.ts}
RENAMED
|
File without changes
|