ngx-rs-ant 2.2.5 → 2.2.7
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/types/component/mark-item-component-base.mjs +1 -1
- package/esm2020/types/config/mark-item-config-base.mjs +3 -3
- package/esm2020/word/section/node/paragraph-for-input/item/item.component.mjs +2 -1
- package/esm2020/word/section/section.component.mjs +5 -1
- package/esm2020/word/section/section.service.mjs +2 -1
- package/esm2020/word/word-designer/mark-config/mark-config.component.mjs +15 -4
- package/esm2020/word/word-designer/word-designer.component.mjs +7 -5
- package/esm2020/word/word-editor/word-editor.component.mjs +2 -1
- package/fesm2015/ngx-rs-ant.mjs +28 -8
- package/fesm2015/ngx-rs-ant.mjs.map +1 -1
- package/fesm2020/ngx-rs-ant.mjs +28 -8
- package/fesm2020/ngx-rs-ant.mjs.map +1 -1
- package/package.json +1 -1
- package/types/component/mark-item-component-base.d.ts +1 -0
- package/types/config/mark-item-config-base.d.ts +2 -2
- package/word/section/section.component.d.ts +1 -0
- package/word/section/section.service.d.ts +1 -0
- package/word/word-designer/mark-config/mark-config.component.d.ts +4 -2
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare class MarkItemConfigBase extends
|
|
1
|
+
import { ConfigBase } from "./config-base";
|
|
2
|
+
export declare class MarkItemConfigBase extends ConfigBase {
|
|
3
3
|
tenant: any;
|
|
4
4
|
templateClassName: any;
|
|
5
5
|
templateOid: any;
|
|
@@ -17,6 +17,7 @@ export declare class SectionComponent {
|
|
|
17
17
|
userSelect: string;
|
|
18
18
|
};
|
|
19
19
|
constructor(service: SectionService, pt: PtPipe);
|
|
20
|
+
ngOnDestroy(): void;
|
|
20
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<SectionComponent, never>;
|
|
21
22
|
static ɵcmp: i0.ɵɵComponentDeclaration<SectionComponent, "rs-section", never, { "section": "section"; "editMode": "editMode"; "pasteMode": "pasteMode"; "readonly": "readonly"; }, {}, never, never, false, never>;
|
|
22
23
|
}
|
|
@@ -16,6 +16,7 @@ export declare class SectionService {
|
|
|
16
16
|
readyPasteMarkNames: string[];
|
|
17
17
|
lastClickToPasteMarkName: string;
|
|
18
18
|
valueUpdated: EventEmitter<void>;
|
|
19
|
+
valueChanged: EventEmitter<void>;
|
|
19
20
|
switchMark(type: number): void;
|
|
20
21
|
getMark(name: any): any;
|
|
21
22
|
getMarkIndex(name: any): number;
|
|
@@ -10,12 +10,14 @@ export declare class MarkConfigComponent {
|
|
|
10
10
|
set mark(mark: any);
|
|
11
11
|
private _mark;
|
|
12
12
|
marks: any;
|
|
13
|
+
params?: any;
|
|
14
|
+
tabViewContainerRef: any;
|
|
13
15
|
protected markTypes: any;
|
|
14
16
|
private changeMark;
|
|
15
17
|
markItemConfigRef: ViewContainerRef;
|
|
16
18
|
ngOnInit(): void;
|
|
17
|
-
loadMarkConfig(): void;
|
|
19
|
+
loadMarkConfig(clearConfig?: boolean): void;
|
|
18
20
|
changeMarkType(): void;
|
|
19
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<MarkConfigComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MarkConfigComponent, "rs-mark-config", never, { "tenant": "tenant"; "templateClassName": "templateClassName"; "templateOid": "templateOid"; "instanceClassName": "instanceClassName"; "filterCategories": "filterCategories"; "mark": "mark"; "marks": "marks"; }, {}, never, never, false, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MarkConfigComponent, "rs-mark-config", never, { "tenant": "tenant"; "templateClassName": "templateClassName"; "templateOid": "templateOid"; "instanceClassName": "instanceClassName"; "filterCategories": "filterCategories"; "mark": "mark"; "marks": "marks"; "params": "params"; "tabViewContainerRef": "tabViewContainerRef"; }, {}, never, never, false, never>;
|
|
21
23
|
}
|