@messaia/cdk 13.3.0-rc21 → 13.3.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/esm2020/lib/base/components/base.component.mjs +6 -1
- package/esm2020/lib/base/components/generic-list.component.mjs +4 -2
- package/fesm2015/messaia-cdk.mjs +8 -1
- package/fesm2015/messaia-cdk.mjs.map +1 -1
- package/fesm2020/messaia-cdk.mjs +8 -1
- package/fesm2020/messaia-cdk.mjs.map +1 -1
- package/lib/base/components/base.component.d.ts +5 -0
- package/package.json +1 -1
|
@@ -248,6 +248,11 @@ export declare abstract class BaseComponent implements OnInit, AfterViewInit {
|
|
|
248
248
|
* @returns
|
|
249
249
|
*/
|
|
250
250
|
protected sanitizeObject(obj: any, ...ignore: string[]): any;
|
|
251
|
+
/**
|
|
252
|
+
* Checks if the user seleceted any text in the document
|
|
253
|
+
* @returns
|
|
254
|
+
*/
|
|
255
|
+
protected isTextSelected: () => boolean;
|
|
251
256
|
static ɵfac: i0.ɵɵFactoryDeclaration<BaseComponent, never>;
|
|
252
257
|
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseComponent, never, never, {}, {}, never>;
|
|
253
258
|
}
|