matcha-components 20.67.0 → 20.69.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/index.d.ts
CHANGED
|
@@ -1573,7 +1573,7 @@ declare class MatchaSliderComponent implements ControlValueAccessor, OnInit, OnD
|
|
|
1573
1573
|
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaSliderComponent, "matcha-slider", never, { "value": { "alias": "value"; "required": false; }; "highValue": { "alias": "highValue"; "required": false; }; "options": { "alias": "options"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "valueChange": "valueChange"; "highValueChange": "highValueChange"; "userChange": "userChange"; "userChangeEnd": "userChangeEnd"; }, never, never, false, never>;
|
|
1574
1574
|
}
|
|
1575
1575
|
|
|
1576
|
-
declare class MatchaChipComponent implements AfterViewInit {
|
|
1576
|
+
declare class MatchaChipComponent implements OnInit, AfterViewInit {
|
|
1577
1577
|
_elementRef: ElementRef;
|
|
1578
1578
|
/** Cor do chip (primary, accent, warn) */
|
|
1579
1579
|
color: 'primary' | 'accent' | 'warn' | string;
|
|
@@ -1599,6 +1599,7 @@ declare class MatchaChipComponent implements AfterViewInit {
|
|
|
1599
1599
|
destroyed: EventEmitter<MatchaChipComponent>;
|
|
1600
1600
|
get hostClasses(): string;
|
|
1601
1601
|
constructor(_elementRef: ElementRef);
|
|
1602
|
+
ngOnInit(): void;
|
|
1602
1603
|
ngAfterViewInit(): void;
|
|
1603
1604
|
private _setupChipRemoveDirective;
|
|
1604
1605
|
hasCustomRemoveIcon(): boolean;
|
|
@@ -1617,7 +1618,8 @@ declare class MatchaChipComponent implements AfterViewInit {
|
|
|
1617
1618
|
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaChipComponent, "matcha-chip", never, { "color": { "alias": "color"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "removable": { "alias": "removable"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "selectedChange": "selectedChange"; "removed": "removed"; "destroyed": "destroyed"; }, never, ["*"], false, never>;
|
|
1618
1619
|
}
|
|
1619
1620
|
|
|
1620
|
-
declare class MatchaChipListComponent implements AfterContentInit, OnDestroy, ControlValueAccessor {
|
|
1621
|
+
declare class MatchaChipListComponent implements OnInit, AfterContentInit, OnDestroy, ControlValueAccessor {
|
|
1622
|
+
_elementRef: ElementRef;
|
|
1621
1623
|
/** Se múltiplos chips podem ser selecionados */
|
|
1622
1624
|
multiple: boolean;
|
|
1623
1625
|
/** Se os chips podem ser selecionados */
|
|
@@ -1646,6 +1648,8 @@ declare class MatchaChipListComponent implements AfterContentInit, OnDestroy, Co
|
|
|
1646
1648
|
private _focusedChipIndex;
|
|
1647
1649
|
onChange: any;
|
|
1648
1650
|
onTouched: any;
|
|
1651
|
+
constructor(_elementRef: ElementRef);
|
|
1652
|
+
ngOnInit(): void;
|
|
1649
1653
|
ngAfterContentInit(): void;
|
|
1650
1654
|
ngOnDestroy(): void;
|
|
1651
1655
|
/** Configura listeners para os chips */
|