ctt-babylon 0.9.16 → 0.9.18
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/esm2022/lib/components/shared/babylon-dynamic-heading/babylon-dynamic-heading.component.mjs +21 -15
- package/fesm2022/ctt-babylon.mjs +18 -12
- package/fesm2022/ctt-babylon.mjs.map +1 -1
- package/lib/components/shared/babylon-dynamic-heading/babylon-dynamic-heading.component.d.ts +2 -0
- package/package.json +1 -1
package/lib/components/shared/babylon-dynamic-heading/babylon-dynamic-heading.component.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { OnChanges } from '@angular/core';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
type AllowedWrapper = 'span' | 'b' | 'i' | 'u' | 'mark' | 'strong' | 'em' | 'small' | 'del' | 'ins' | 'sub' | 'sup' | 'code' | 'abbr' | 'cite' | 'kbd' | 's' | 'q' | null;
|
|
4
4
|
export declare class BabylonDynamicHeadingComponent implements OnChanges {
|
|
5
|
+
private platformId;
|
|
5
6
|
private static readonly allowedTags;
|
|
6
7
|
private static readonly allowedWrappers;
|
|
7
8
|
private _tag;
|
|
@@ -20,6 +21,7 @@ export declare class BabylonDynamicHeadingComponent implements OnChanges {
|
|
|
20
21
|
color?: string;
|
|
21
22
|
renderedHtml: string;
|
|
22
23
|
private blockRe;
|
|
24
|
+
constructor(platformId: object);
|
|
23
25
|
ngOnChanges(): void;
|
|
24
26
|
/** Limpia <p> vacíos y <p> envolviendo bloques/tablas; desenvuelve <p> dentro de celdas. */
|
|
25
27
|
private cleanHtml;
|