@talrace/ngx-noder 19.0.35 → 19.0.36
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 +57 -37
- package/fesm2022/talrace-ngx-noder.mjs.map +1 -1
- package/lib/editor/content/constants/editor.const.d.ts +3 -1
- package/lib/models/generated/heading.model.d.ts +2 -0
- package/lib/models/generated/table-style.model.d.ts +13 -0
- package/lib/models/generated/table.model.d.ts +1 -1
- package/package.json +1 -1
- package/src/lib/apart-components/editor-toolbar/components/menu-dropdowns/_menu-dropdowns.theme.scss +0 -4
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { HeadingModel } from '../../../models/generated/heading.model';
|
|
2
2
|
import { IToolbarStyles } from '../display-data/toolbar-styles.interface';
|
|
3
|
+
import { MarginModel } from '../../content/margin.model';
|
|
3
4
|
import { ParagraphStyleModel } from '../../../models/generated/paragraph-style.model';
|
|
4
5
|
import { TextStyleModel } from '../../../models/generated/text-style.model';
|
|
5
6
|
export declare const DEFAULT_TOOLBAR_STYLES: () => IToolbarStyles;
|
|
6
7
|
export declare const DEFAULT_BACKGROUND_COLOR = "transparent";
|
|
7
8
|
export declare const DEFAULT_FONT_FAMILY = "Times New Roman";
|
|
8
9
|
export declare const DEFAULT_FONT_SIZE = 11;
|
|
9
|
-
export declare const DEFAULT_FONT_COLOR = "#
|
|
10
|
+
export declare const DEFAULT_FONT_COLOR = "#000000";
|
|
10
11
|
export declare const HYPERLINK_FONT_COLOR = "#0000EE";
|
|
11
12
|
export declare const DEFAULT_HEADING_STYLE_ID = "Default";
|
|
12
13
|
export declare const HYPERLINK_HEADING_STYLE_ID = "Hyperlink";
|
|
@@ -17,3 +18,4 @@ export declare const NEW_LINE_MARKUP = "\n";
|
|
|
17
18
|
export declare const DEFAULT_TAB_WIDTH = 48;
|
|
18
19
|
export declare const DEFAULT_OFFSET_AFTER_NUMBERING_MARKER = 20;
|
|
19
20
|
export declare const DEFAULT_EDGE_MAX_HEIGHT_MULTIPLIER = 0.4;
|
|
21
|
+
export declare const DEFAULT_TABLE_MARGINS: MarginModel;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ParagraphStyleModel } from './paragraph-style.model';
|
|
2
|
+
import { TableStyleModel } from './table-style.model';
|
|
2
3
|
import { TextStyleModel } from './text-style.model';
|
|
3
4
|
export declare class HeadingModel {
|
|
4
5
|
basedOn: string;
|
|
@@ -6,6 +7,7 @@ export declare class HeadingModel {
|
|
|
6
7
|
name: string;
|
|
7
8
|
paragraphStyle: ParagraphStyleModel;
|
|
8
9
|
styleId: string;
|
|
10
|
+
tableStyle: TableStyleModel;
|
|
9
11
|
textStyle: TextStyleModel;
|
|
10
12
|
type: string;
|
|
11
13
|
constructor(fields?: Partial<HeadingModel>);
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { BordersStyleModel } from './borders-style.model';
|
|
2
|
+
import { MarginsModel } from './margins.model';
|
|
3
|
+
export declare class TableStyleModel {
|
|
4
|
+
alignment: any;
|
|
5
|
+
backgroundColor: string;
|
|
6
|
+
borders: BordersStyleModel[];
|
|
7
|
+
cellSpacing: number;
|
|
8
|
+
indentLeft: number;
|
|
9
|
+
indentLeftFromText: number;
|
|
10
|
+
indentRightFromText: number;
|
|
11
|
+
margins: MarginsModel;
|
|
12
|
+
constructor(fields?: Partial<TableStyleModel>);
|
|
13
|
+
}
|
package/package.json
CHANGED