realreport-designer 1.11.18 → 1.11.19
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/dist/realreport-designer.cjs +173 -173
- package/dist/realreport-designer.d.ts +33 -2
- package/dist/realreport-designer.js +25035 -23342
- package/dist/realreport-designer.umd.js +175 -175
- package/dist/styles/realreport-designer.css +1 -1
- package/package.json +1 -1
|
@@ -7834,6 +7834,36 @@ declare interface MapSource {
|
|
|
7834
7834
|
exclude?: string[];
|
|
7835
7835
|
}
|
|
7836
7836
|
|
|
7837
|
+
declare class MarkdownBand extends ReportItem {
|
|
7838
|
+
static readonly DEFAULT_WIDTH = "100%";
|
|
7839
|
+
static readonly DEFAULT_HEIGHT = 100;
|
|
7840
|
+
static readonly ALLOWED_TAGS: string[];
|
|
7841
|
+
static readonly PROP_HTML = "html";
|
|
7842
|
+
static readonly PROPINFOS: IPropInfo[];
|
|
7843
|
+
static readonly STYLE_PROPS: string[];
|
|
7844
|
+
static readonly $_ctor: string;
|
|
7845
|
+
static readonly ITEM_TYPE = "Markdown Band";
|
|
7846
|
+
private _html;
|
|
7847
|
+
rowIndex: number;
|
|
7848
|
+
constructor(name: string);
|
|
7849
|
+
get html(): string;
|
|
7850
|
+
set html(value: string);
|
|
7851
|
+
getHtml(ctx: PrintContext): string;
|
|
7852
|
+
getPrintText(ctx: PrintContext): string;
|
|
7853
|
+
getSaveType(): string;
|
|
7854
|
+
get outlineLabel(): string;
|
|
7855
|
+
protected _doDefaultInit(loader: IReportLoader, parent: ReportGroupItem, hintWidth: number, hintHeight: number): void;
|
|
7856
|
+
protected _getEditProps(): IPropInfo[];
|
|
7857
|
+
protected _getStyleProps(): string[];
|
|
7858
|
+
protected _doLoad(loader: IReportLoader, src: any): void;
|
|
7859
|
+
protected _doSave(target: object): void;
|
|
7860
|
+
canRotate(): boolean;
|
|
7861
|
+
canAdoptDragSource(source: any): boolean;
|
|
7862
|
+
adoptDragSource(source: any): IDropResult;
|
|
7863
|
+
canPropAdoptDragSource(prop: IPropInfo, source: any): boolean;
|
|
7864
|
+
adoptPropDragSource(prop: IPropInfo, source: any): IDropResult;
|
|
7865
|
+
}
|
|
7866
|
+
|
|
7837
7867
|
declare type MenuItem = {
|
|
7838
7868
|
type: 'text';
|
|
7839
7869
|
label?: ((clickedElement: HTMLElement, menu: MenuItem) => string) | string;
|
|
@@ -8626,7 +8656,7 @@ declare abstract class PrintContextBase<R extends ReportBase = ReportBase> exten
|
|
|
8626
8656
|
private _tags;
|
|
8627
8657
|
private _bandSave;
|
|
8628
8658
|
async: boolean;
|
|
8629
|
-
band: DataBand | CrosstabBand | TextBand;
|
|
8659
|
+
band: DataBand | CrosstabBand | TextBand | MarkdownBand;
|
|
8630
8660
|
pages: PrintPage[];
|
|
8631
8661
|
floatings: HTMLDivElement[];
|
|
8632
8662
|
reportCount: number;
|
|
@@ -12927,6 +12957,7 @@ declare enum ReportItemType {
|
|
|
12927
12957
|
SPACE = "space",
|
|
12928
12958
|
SIMPLEBAND = "simpleband",
|
|
12929
12959
|
TABLEBAND = "tableband",
|
|
12960
|
+
MARKDOWNBAND = "markdownband",
|
|
12930
12961
|
BANDGROUP = "bandgroup",
|
|
12931
12962
|
BANDCELL = "bandcell",
|
|
12932
12963
|
CROSSTAB = "crosstab",
|
|
@@ -17031,7 +17062,7 @@ declare type UserFontSource = {
|
|
|
17031
17062
|
/**
|
|
17032
17063
|
* @deprecated Use `weight` instead. This property will be removed in a future version.
|
|
17033
17064
|
*/
|
|
17034
|
-
fontWeight
|
|
17065
|
+
fontWeight?: FontWeight;
|
|
17035
17066
|
/** 폰트 굵기 */
|
|
17036
17067
|
weight: FontWeight;
|
|
17037
17068
|
};
|