@mescius/wijmo.olap 5.20251.41-nightly.d20250729.t185913 → 5.20251.41-nightly.d20250801.t022802
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 +2 -2
- package/es2015-esm.js +2 -2
- package/es5-esm.js +2 -2
- package/index.d.ts +23 -1
- package/index.js +2 -2
- package/package.json +6 -6
package/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* Wijmo Library 5.20251.41-nightly.
|
|
3
|
+
* Wijmo Library 5.20251.41-nightly.d20250801.t022802
|
|
4
4
|
* https://developer.mescius.com/wijmo
|
|
5
5
|
*
|
|
6
6
|
* Copyright(c) MESCIUS inc. All rights reserved.
|
|
@@ -720,6 +720,8 @@ export declare class Slicer extends Control {
|
|
|
720
720
|
_uniqueValues: any[];
|
|
721
721
|
_fldPropChangeBnd: any;
|
|
722
722
|
static _ctrlTemplate: string;
|
|
723
|
+
private _tt;
|
|
724
|
+
private _setCssTimer;
|
|
723
725
|
/**
|
|
724
726
|
* Gets or sets the template used to instantiate {@link Slicer} controls.
|
|
725
727
|
*/
|
|
@@ -778,6 +780,7 @@ export declare class Slicer extends Control {
|
|
|
778
780
|
_updateHeader(): void;
|
|
779
781
|
_clear(): void;
|
|
780
782
|
_updateFilter(): void;
|
|
783
|
+
dispose(): void;
|
|
781
784
|
}
|
|
782
785
|
/**
|
|
783
786
|
* Context Menu for {@link PivotGrid} controls.
|
|
@@ -786,6 +789,8 @@ export declare class _GridContextMenu extends Menu {
|
|
|
786
789
|
private _targetField;
|
|
787
790
|
private _htDown;
|
|
788
791
|
static _ctrlTemplate: string;
|
|
792
|
+
private _contextMenuHandler;
|
|
793
|
+
private _gridOwner;
|
|
789
794
|
static controlTemplate: string;
|
|
790
795
|
/**
|
|
791
796
|
* Initializes a new instance of the {@link _GridContextMenu} class.
|
|
@@ -802,6 +807,7 @@ export declare class _GridContextMenu extends Menu {
|
|
|
802
807
|
_getMenuItems(): any[];
|
|
803
808
|
_execute(parm: string): void;
|
|
804
809
|
_canExecute(parm: string): boolean;
|
|
810
|
+
dispose(): void;
|
|
805
811
|
}
|
|
806
812
|
/**
|
|
807
813
|
* Represents a collection of {@link PivotField} objects.
|
|
@@ -1089,6 +1095,9 @@ export declare class PivotEngine<T = any> {
|
|
|
1089
1095
|
static _BATCH_TIMEOUT: number;
|
|
1090
1096
|
static _BATCH_DELAY: number;
|
|
1091
1097
|
static _props: string[];
|
|
1098
|
+
private _dlg;
|
|
1099
|
+
private edt;
|
|
1100
|
+
isDisposed: boolean;
|
|
1092
1101
|
/**
|
|
1093
1102
|
* Initializes a new instance of the {@link PivotEngine} class.
|
|
1094
1103
|
*
|
|
@@ -1617,6 +1626,7 @@ export declare class PivotEngine<T = any> {
|
|
|
1617
1626
|
private _getFieldDefinition;
|
|
1618
1627
|
private _getFieldCollectionProxy;
|
|
1619
1628
|
private _setFieldCollectionProxy;
|
|
1629
|
+
dispose(): void;
|
|
1620
1630
|
}
|
|
1621
1631
|
/**
|
|
1622
1632
|
* Provides arguments for progress events.
|
|
@@ -1640,6 +1650,7 @@ export declare class ProgressEventArgs extends EventArgs {
|
|
|
1640
1650
|
export declare class _ListContextMenu extends Menu {
|
|
1641
1651
|
_full: boolean;
|
|
1642
1652
|
static _ctrlTemplate: string;
|
|
1653
|
+
private _contextMenuHandler;
|
|
1643
1654
|
static controlTemplate: string;
|
|
1644
1655
|
/**
|
|
1645
1656
|
* Initializes a new instance of the {@link _ListContextMenu} class.
|
|
@@ -1659,6 +1670,7 @@ export declare class _ListContextMenu extends Menu {
|
|
|
1659
1670
|
_execute(parm: any): void;
|
|
1660
1671
|
_canExecute(parm: any): boolean;
|
|
1661
1672
|
_getTargetList(engine: PivotEngine, parm: string): PivotFieldCollection;
|
|
1673
|
+
dispose(): void;
|
|
1662
1674
|
}
|
|
1663
1675
|
/**
|
|
1664
1676
|
* Provides a user interface for interactively transforming regular data tables into Olap
|
|
@@ -1701,6 +1713,8 @@ export declare class PivotPanel<T = any> extends Control {
|
|
|
1701
1713
|
private _showIcons;
|
|
1702
1714
|
private _restrictDrag;
|
|
1703
1715
|
private _isUpdatingChangedBnd;
|
|
1716
|
+
private _filterFieldVisibleOnly;
|
|
1717
|
+
private _filterFieldVisibleWithRoot;
|
|
1704
1718
|
static _ctrlTemplate: string;
|
|
1705
1719
|
/**
|
|
1706
1720
|
* Gets or sets the template used to instantiate {@link PivotPanel} controls.
|
|
@@ -1872,6 +1886,7 @@ export declare class PivotPanel<T = any> extends Control {
|
|
|
1872
1886
|
_resetMouseState(): void;
|
|
1873
1887
|
_getFlexGridTarget(e: DragEvent): FlexGrid;
|
|
1874
1888
|
_updateDropMarker(grid?: FlexGrid, e?: DragEvent): void;
|
|
1889
|
+
dispose(): void;
|
|
1875
1890
|
}
|
|
1876
1891
|
/**
|
|
1877
1892
|
* Extends the {@link FlexGrid} control to display pivot tables.
|
|
@@ -2113,6 +2128,7 @@ export declare class PivotGrid<T = any> extends FlexGrid {
|
|
|
2113
2128
|
_getColCollapsed(rng: CellRange): boolean;
|
|
2114
2129
|
_setColCollapsed(rng: CellRange, collapse: boolean): void;
|
|
2115
2130
|
_collapseColsToLevel(level: number): void;
|
|
2131
|
+
dispose(): void;
|
|
2116
2132
|
}
|
|
2117
2133
|
/**
|
|
2118
2134
|
* Represents a dialog used to display details for a grid cell.
|
|
@@ -2265,6 +2281,7 @@ export declare class PivotChart extends Control {
|
|
|
2265
2281
|
private _dataItms;
|
|
2266
2282
|
private _lblsSrc;
|
|
2267
2283
|
private _grpLblsSrc;
|
|
2284
|
+
private _clearStyleTopTimer;
|
|
2268
2285
|
/**
|
|
2269
2286
|
* Initializes a new instance of the {@link PivotChart} class.
|
|
2270
2287
|
*
|
|
@@ -2421,6 +2438,7 @@ export declare class PivotChart extends Control {
|
|
|
2421
2438
|
private _isRotatedChart;
|
|
2422
2439
|
private _getMergeIndex;
|
|
2423
2440
|
private _getOffsetWidth;
|
|
2441
|
+
dispose(): void;
|
|
2424
2442
|
}
|
|
2425
2443
|
/**
|
|
2426
2444
|
* Generates MDX queries for the {@link _SqlServerConnection} class.
|
|
@@ -2710,7 +2728,10 @@ export declare class PivotFieldEditor extends Control {
|
|
|
2710
2728
|
private _gFlt;
|
|
2711
2729
|
private _gFmt;
|
|
2712
2730
|
private _gSmp;
|
|
2731
|
+
private _lostFocusHandler;
|
|
2732
|
+
private _closeFilterTimer;
|
|
2713
2733
|
static _ctrlTemplate: string;
|
|
2734
|
+
private _closeAndFocusTimer;
|
|
2714
2735
|
/**
|
|
2715
2736
|
* Gets or sets the template used to instantiate {@link PivotFieldEditor} controls.
|
|
2716
2737
|
*/
|
|
@@ -2744,6 +2765,7 @@ export declare class PivotFieldEditor extends Control {
|
|
|
2744
2765
|
_editFilter(): void;
|
|
2745
2766
|
_createFilterEditor(): void;
|
|
2746
2767
|
_closeFilter(): void;
|
|
2768
|
+
dispose(): void;
|
|
2747
2769
|
}
|
|
2748
2770
|
/**
|
|
2749
2771
|
* Provides binding for {@link PivotField} class
|