@mescius/wijmo.olap 5.20261.45-nightly.d20251218.t163151 → 5.20261.45-nightly.d20260105.t163143
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 +10 -12
- 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.20261.45-nightly.
|
|
3
|
+
* Wijmo Library 5.20261.45-nightly.d20260105.t163143
|
|
4
4
|
* https://developer.mescius.com/wijmo
|
|
5
5
|
*
|
|
6
6
|
* Copyright(c) MESCIUS inc. All rights reserved.
|
|
@@ -260,7 +260,7 @@ export declare class PivotCollectionView extends CollectionView {
|
|
|
260
260
|
*/
|
|
261
261
|
readonly engine: PivotEngine;
|
|
262
262
|
implementsInterface(interfaceName: string): boolean;
|
|
263
|
-
editItem(
|
|
263
|
+
editItem(_item: any): void;
|
|
264
264
|
addNew(): void;
|
|
265
265
|
_performSort(items: any[]): void;
|
|
266
266
|
_performFilter(items: any[]): any[];
|
|
@@ -606,7 +606,7 @@ export declare class PivotField<T = any> {
|
|
|
606
606
|
_setIsActive(value: boolean): void;
|
|
607
607
|
_hasSubFields(): boolean;
|
|
608
608
|
_clone(): PivotField;
|
|
609
|
-
_setProp(name: string, value: any,
|
|
609
|
+
_setProp(name: string, value: any, _member?: string): void;
|
|
610
610
|
_getName(): string;
|
|
611
611
|
_getValue(item: any, formatted: boolean): any;
|
|
612
612
|
_getWeight(item: any): number;
|
|
@@ -968,7 +968,6 @@ export declare class _ServerConnection {
|
|
|
968
968
|
private _insertKey;
|
|
969
969
|
private _joinKeys;
|
|
970
970
|
private _reorderKeys;
|
|
971
|
-
private _getParentKey;
|
|
972
971
|
private _getAggregatedFieldCount;
|
|
973
972
|
_loadArray(command: string, arr: any, data?: any): void;
|
|
974
973
|
private _getUrl;
|
|
@@ -1876,18 +1875,18 @@ export declare class PivotPanel<T = any> extends Control {
|
|
|
1876
1875
|
refresh(fullUpdate?: boolean): void;
|
|
1877
1876
|
_copy(key: string, value: any): boolean;
|
|
1878
1877
|
_globalize(): void;
|
|
1879
|
-
_itemsSourceChanged(
|
|
1880
|
-
_viewDefinitionChanged(
|
|
1881
|
-
_updatingView(
|
|
1882
|
-
_updatedView(
|
|
1883
|
-
_requestError(
|
|
1878
|
+
_itemsSourceChanged(_s: PivotEngine, e?: EventArgs): void;
|
|
1879
|
+
_viewDefinitionChanged(_s: PivotEngine, e?: EventArgs): void;
|
|
1880
|
+
_updatingView(_s: PivotEngine, e: ProgressEventArgs): void;
|
|
1881
|
+
_updatedView(_s: PivotEngine, e?: EventArgs): void;
|
|
1882
|
+
_requestError(_s: PivotEngine, _e: RequestErrorEventArgs): void;
|
|
1884
1883
|
_isUpdatingChanged(): void;
|
|
1885
1884
|
_updateDeferredUpdateElements(): void;
|
|
1886
1885
|
_createFieldGrid(host: HTMLElement): FlexGrid;
|
|
1887
1886
|
_dragstart(e: DragEvent): void;
|
|
1888
1887
|
_dragover(e: DragEvent): void;
|
|
1889
1888
|
_drop(e: DragEvent): void;
|
|
1890
|
-
_dragend(
|
|
1889
|
+
_dragend(_e: DragEvent): void;
|
|
1891
1890
|
_hitTestField(grid: FlexGrid, e: MouseEvent): PivotField;
|
|
1892
1891
|
_getRestrictDrag(): boolean;
|
|
1893
1892
|
_resetMouseState(): void;
|
|
@@ -2123,7 +2122,7 @@ export declare class PivotGrid<T = any> extends FlexGrid {
|
|
|
2123
2122
|
_updateFixedCounts(): void;
|
|
2124
2123
|
_updateFixedContent(): void;
|
|
2125
2124
|
protected _updateDefaultSizes(): number;
|
|
2126
|
-
_formatItem(
|
|
2125
|
+
_formatItem(_s: any, e: FormatItemEventArgs): void;
|
|
2127
2126
|
_getCollapsedGlyph(collapsed: boolean): string;
|
|
2128
2127
|
_mousedown(e: MouseEvent): void;
|
|
2129
2128
|
_mouseup(e: MouseEvent): void;
|
|
@@ -2551,7 +2550,6 @@ export declare class _SqlServerConnection extends _ServerConnection {
|
|
|
2551
2550
|
private _url;
|
|
2552
2551
|
private _user;
|
|
2553
2552
|
private _password;
|
|
2554
|
-
private _debug;
|
|
2555
2553
|
/**
|
|
2556
2554
|
* Initializes a new instance of the {@link _SqlServerConnection} class.
|
|
2557
2555
|
*
|