realreport-designer 1.11.7 → 1.11.8
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 +167 -152
- package/dist/realreport-designer.d.ts +10 -0
- package/dist/realreport-designer.js +14208 -13875
- package/dist/realreport-designer.umd.js +163 -148
- package/dist/styles/realreport-designer.css +1 -1
- package/package.json +1 -1
|
@@ -5198,6 +5198,13 @@ declare enum FormulaConverterErrorCode {
|
|
|
5198
5198
|
BAND_NOT_FOUND = "BAND_NOT_FOUND"
|
|
5199
5199
|
}
|
|
5200
5200
|
|
|
5201
|
+
export declare const getVersion: typeof Globals.getVersion;
|
|
5202
|
+
|
|
5203
|
+
declare class Globals {
|
|
5204
|
+
static getVersion(): string;
|
|
5205
|
+
static setLicenseKey(license: string): void;
|
|
5206
|
+
}
|
|
5207
|
+
|
|
5201
5208
|
/**
|
|
5202
5209
|
* Header bar contaioner 모델.
|
|
5203
5210
|
*/
|
|
@@ -9591,6 +9598,7 @@ declare class RealChartItem extends ChartItem<RCConfig> {
|
|
|
9591
9598
|
}
|
|
9592
9599
|
|
|
9593
9600
|
declare class RealChartItemElement extends ReportItemElement<RealChartItem> implements AsyncLoadable {
|
|
9601
|
+
static readonly ITEM_CLASS = "rr-chart";
|
|
9594
9602
|
private _chartDiv;
|
|
9595
9603
|
private _wrapper;
|
|
9596
9604
|
protected _getCssSelector(): string;
|
|
@@ -13520,6 +13528,8 @@ declare type ServerReportSource = {
|
|
|
13520
13528
|
|
|
13521
13529
|
declare type ServerReportSources = (ServerReportGroupSource | ServerReportSource)[];
|
|
13522
13530
|
|
|
13531
|
+
export declare const setLicenseKey: typeof Globals.setLicenseKey;
|
|
13532
|
+
|
|
13523
13533
|
/**
|
|
13524
13534
|
* A sheet design model.
|
|
13525
13535
|
*/
|