@arsedizioni/ars-utils 20.4.61 → 20.4.63
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/arsedizioni-ars-utils-clipper.ui.mjs +4 -2
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs +22 -4
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs.map +1 -1
- package/package.json +1 -1
- package/ui.application/index.d.ts +10 -0
package/package.json
CHANGED
|
@@ -577,6 +577,16 @@ declare class SelectDialogComponent implements OnInit {
|
|
|
577
577
|
* Clear filter
|
|
578
578
|
*/
|
|
579
579
|
protected clearFilter(): void;
|
|
580
|
+
/**
|
|
581
|
+
* Set filter text
|
|
582
|
+
* @param text : the new value
|
|
583
|
+
*/
|
|
584
|
+
setFilter(text: string): void;
|
|
585
|
+
/**
|
|
586
|
+
* Gt the current filter text
|
|
587
|
+
* @returns the filter text
|
|
588
|
+
*/
|
|
589
|
+
getFilter(): string;
|
|
580
590
|
/**
|
|
581
591
|
* Show filter options
|
|
582
592
|
*/
|