@talrace/ngx-noder 19.0.31 → 19.0.32
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/talrace-ngx-noder.mjs +39 -47
- package/fesm2022/talrace-ngx-noder.mjs.map +1 -1
- package/lib/editor/components/shared/abstract/base.component.d.ts +2 -1
- package/lib/editor/components/tab/tab.component.d.ts +1 -1
- package/lib/editor/content/constants/editor.const.d.ts +1 -0
- package/package.json +1 -1
|
@@ -14,7 +14,8 @@ export declare abstract class BaseNoderComponent extends DestroyComponent {
|
|
|
14
14
|
set insertIndex(val: number);
|
|
15
15
|
contentWidth: number;
|
|
16
16
|
generalProperties: GeneralPropertiesModel;
|
|
17
|
-
|
|
17
|
+
ascent: import("@angular/core").WritableSignal<number>;
|
|
18
|
+
descent: import("@angular/core").WritableSignal<number>;
|
|
18
19
|
width: import("@angular/core").WritableSignal<number>;
|
|
19
20
|
protected _isFocused: boolean;
|
|
20
21
|
get isFocused(): boolean;
|
|
@@ -5,7 +5,7 @@ export declare class NoderTabComponent extends BaseNoderComponent {
|
|
|
5
5
|
get tab(): TabModel;
|
|
6
6
|
set tab(val: TabModel);
|
|
7
7
|
initialize(): void;
|
|
8
|
-
applySize(width: number
|
|
8
|
+
applySize(width: number): void;
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<NoderTabComponent, never>;
|
|
10
10
|
static ɵcmp: i0.ɵɵComponentDeclaration<NoderTabComponent, "app-nod-tab", never, {}, {}, never, never, false, never>;
|
|
11
11
|
}
|
|
@@ -15,4 +15,5 @@ export declare const DEFAULT_PARAGRAPH_STYLE: ParagraphStyleModel;
|
|
|
15
15
|
export declare const DEFAULT_HEADINGS: HeadingModel[];
|
|
16
16
|
export declare const NEW_LINE_MARKUP = "\n";
|
|
17
17
|
export declare const DEFAULT_TAB_WIDTH = 48;
|
|
18
|
+
export declare const DEFAULT_OFFSET_AFTER_NUMBERING_MARKER = 20;
|
|
18
19
|
export declare const DEFAULT_EDGE_MAX_HEIGHT_MULTIPLIER = 0.4;
|