matcha-components 20.47.0 → 20.48.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
|
@@ -1214,6 +1214,7 @@ declare class MatchaOptionComponent {
|
|
|
1214
1214
|
private findParentAndSelect;
|
|
1215
1215
|
onKeydown(ev: KeyboardEvent): void;
|
|
1216
1216
|
get nativeElement(): HTMLElement;
|
|
1217
|
+
getTextContent(): string;
|
|
1217
1218
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaOptionComponent, [{ optional: true; }, null]>;
|
|
1218
1219
|
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaOptionComponent, "matcha-option", never, { "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "optionClick": "optionClick"; "optionSelect": "optionSelect"; }, never, ["*"], false, never>;
|
|
1219
1220
|
}
|
|
@@ -1330,6 +1331,7 @@ declare class MatchaSelectComponent implements AfterContentInit, AfterViewInit,
|
|
|
1330
1331
|
options: QueryList<MatchaOptionComponent>;
|
|
1331
1332
|
panel: MatchaPanelComponent;
|
|
1332
1333
|
selectedValue: any;
|
|
1334
|
+
selectedLabel: string;
|
|
1333
1335
|
placement: 'bottom' | 'top' | 'auto';
|
|
1334
1336
|
maxHeight: number;
|
|
1335
1337
|
minWidth: number;
|
|
@@ -1370,6 +1372,7 @@ declare class MatchaSelectComponent implements AfterContentInit, AfterViewInit,
|
|
|
1370
1372
|
selectActive(): void;
|
|
1371
1373
|
selectOption(option: MatchaOptionComponent): void;
|
|
1372
1374
|
getSelectedValue(): any;
|
|
1375
|
+
getSelectedLabel(): string;
|
|
1373
1376
|
setValue(value: any): void;
|
|
1374
1377
|
clearSelection(): void;
|
|
1375
1378
|
writeValue(value: any): void;
|