@mescius/wijmo.olap 5.20252.43-nightly.d20251027.t174409 → 5.20252.43-nightly.d20251028.t173629
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/es2015-commonjs.js +1 -1
- package/es2015-esm.js +1 -1
- package/es5-esm.js +1 -1
- package/index.d.ts +36 -1
- package/index.js +1 -1
- package/package.json +6 -6
package/es2015-commonjs.js
CHANGED
package/es2015-esm.js
CHANGED
package/es5-esm.js
CHANGED
package/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* Wijmo Library 5.20252.43-nightly.
|
|
3
|
+
* Wijmo Library 5.20252.43-nightly.d20251028.t173629
|
|
4
4
|
* https://developer.mescius.com/wijmo
|
|
5
5
|
*
|
|
6
6
|
* Copyright(c) MESCIUS inc. All rights reserved.
|
|
@@ -780,6 +780,13 @@ export declare class Slicer extends Control {
|
|
|
780
780
|
_updateHeader(): void;
|
|
781
781
|
_clear(): void;
|
|
782
782
|
_updateFilter(): void;
|
|
783
|
+
/**
|
|
784
|
+
* Disposes of the control and all its resources.
|
|
785
|
+
*
|
|
786
|
+
* Calling the {@link dispose} method is important in applications that create
|
|
787
|
+
* and remove controls dynamically. Failing to dispose of the controls may
|
|
788
|
+
* cause memory leaks.
|
|
789
|
+
*/
|
|
783
790
|
dispose(): void;
|
|
784
791
|
}
|
|
785
792
|
/**
|
|
@@ -1886,6 +1893,13 @@ export declare class PivotPanel<T = any> extends Control {
|
|
|
1886
1893
|
_resetMouseState(): void;
|
|
1887
1894
|
_getFlexGridTarget(e: DragEvent): FlexGrid;
|
|
1888
1895
|
_updateDropMarker(grid?: FlexGrid, e?: DragEvent): void;
|
|
1896
|
+
/**
|
|
1897
|
+
* Disposes of the control and all its resources.
|
|
1898
|
+
*
|
|
1899
|
+
* Calling the {@link dispose} method is important in applications that create
|
|
1900
|
+
* and remove controls dynamically. Failing to dispose of the controls may
|
|
1901
|
+
* cause memory leaks.
|
|
1902
|
+
*/
|
|
1889
1903
|
dispose(): void;
|
|
1890
1904
|
}
|
|
1891
1905
|
/**
|
|
@@ -2128,6 +2142,13 @@ export declare class PivotGrid<T = any> extends FlexGrid {
|
|
|
2128
2142
|
_getColCollapsed(rng: CellRange): boolean;
|
|
2129
2143
|
_setColCollapsed(rng: CellRange, collapse: boolean): void;
|
|
2130
2144
|
_collapseColsToLevel(level: number): void;
|
|
2145
|
+
/**
|
|
2146
|
+
* Disposes of the control and all its resources.
|
|
2147
|
+
*
|
|
2148
|
+
* Calling the {@link dispose} method is important in applications that create
|
|
2149
|
+
* and remove controls dynamically. Failing to dispose of the controls may
|
|
2150
|
+
* cause memory leaks.
|
|
2151
|
+
*/
|
|
2131
2152
|
dispose(): void;
|
|
2132
2153
|
}
|
|
2133
2154
|
/**
|
|
@@ -2438,6 +2459,13 @@ export declare class PivotChart extends Control {
|
|
|
2438
2459
|
private _isRotatedChart;
|
|
2439
2460
|
private _getMergeIndex;
|
|
2440
2461
|
private _getOffsetWidth;
|
|
2462
|
+
/**
|
|
2463
|
+
* Disposes of the control and all its resources.
|
|
2464
|
+
*
|
|
2465
|
+
* Calling the {@link dispose} method is important in applications that create
|
|
2466
|
+
* and remove controls dynamically. Failing to dispose of the controls may
|
|
2467
|
+
* cause memory leaks.
|
|
2468
|
+
*/
|
|
2441
2469
|
dispose(): void;
|
|
2442
2470
|
}
|
|
2443
2471
|
/**
|
|
@@ -2765,6 +2793,13 @@ export declare class PivotFieldEditor extends Control {
|
|
|
2765
2793
|
_editFilter(): void;
|
|
2766
2794
|
_createFilterEditor(): void;
|
|
2767
2795
|
_closeFilter(): void;
|
|
2796
|
+
/**
|
|
2797
|
+
* Disposes of the control and all its resources.
|
|
2798
|
+
*
|
|
2799
|
+
* Calling the {@link dispose} method is important in applications that create
|
|
2800
|
+
* and remove controls dynamically. Failing to dispose of the controls may
|
|
2801
|
+
* cause memory leaks.
|
|
2802
|
+
*/
|
|
2768
2803
|
dispose(): void;
|
|
2769
2804
|
}
|
|
2770
2805
|
/**
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mescius/wijmo.olap",
|
|
3
|
-
"version": "5.20252.43-nightly.
|
|
3
|
+
"version": "5.20252.43-nightly.d20251028.t173629",
|
|
4
4
|
"description": "UI library for pure JS, Angular, React, Vue and more...",
|
|
5
5
|
"author": "MESCIUS inc",
|
|
6
6
|
"license": "Commercial",
|
|
7
7
|
"main": "./index.js",
|
|
8
8
|
"types": "./index.d.ts",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@mescius/wijmo": "5.20252.43-nightly.
|
|
11
|
-
"@mescius/wijmo.input": "5.20252.43-nightly.
|
|
12
|
-
"@mescius/wijmo.chart": "5.20252.43-nightly.
|
|
13
|
-
"@mescius/wijmo.grid": "5.20252.43-nightly.
|
|
14
|
-
"@mescius/wijmo.grid.filter": "5.20252.43-nightly.
|
|
10
|
+
"@mescius/wijmo": "5.20252.43-nightly.d20251028.t173629",
|
|
11
|
+
"@mescius/wijmo.input": "5.20252.43-nightly.d20251028.t173629",
|
|
12
|
+
"@mescius/wijmo.chart": "5.20252.43-nightly.d20251028.t173629",
|
|
13
|
+
"@mescius/wijmo.grid": "5.20252.43-nightly.d20251028.t173629",
|
|
14
|
+
"@mescius/wijmo.grid.filter": "5.20252.43-nightly.d20251028.t173629"
|
|
15
15
|
},
|
|
16
16
|
"homepage": "https://developer.mescius.com/wijmo",
|
|
17
17
|
"bugs": {
|