@gooddata/sdk-ui-pivot 11.8.0-alpha.2 → 11.8.0-alpha.4
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/esm/impl/structure/headers/AggregationsMenu.d.ts.map +1 -1
- package/esm/impl/structure/headers/AggregationsMenu.js +2 -3
- package/esm/impl/structure/headers/AggregationsMenu.js.map +1 -1
- package/esm/impl/structure/headers/subMenuIcons/ColumnsIcon.d.ts.map +1 -1
- package/esm/impl/structure/headers/subMenuIcons/ColumnsIcon.js +2 -3
- package/esm/impl/structure/headers/subMenuIcons/ColumnsIcon.js.map +1 -1
- package/esm/impl/structure/headers/subMenuIcons/RowsIcon.d.ts.map +1 -1
- package/esm/impl/structure/headers/subMenuIcons/RowsIcon.js +2 -3
- package/esm/impl/structure/headers/subMenuIcons/RowsIcon.js.map +1 -1
- package/esm/index.d.ts +2 -0
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +1 -0
- package/esm/index.js.map +1 -1
- package/esm/next/PivotTableNext.d.ts +18 -1
- package/esm/next/PivotTableNext.d.ts.map +1 -1
- package/esm/next/PivotTableNext.js +18 -1
- package/esm/next/PivotTableNext.js.map +1 -1
- package/esm/next/components/Header/HeaderCell/HeaderMenuComponents.d.ts.map +1 -1
- package/esm/next/components/Header/HeaderCell/HeaderMenuComponents.js +3 -4
- package/esm/next/components/Header/HeaderCell/HeaderMenuComponents.js.map +1 -1
- package/esm/next/hooks/resizing/useAutoSizeReset.js +1 -1
- package/esm/next/hooks/resizing/useAutoSizeReset.js.map +1 -1
- package/esm/next/index.d.ts +13 -2
- package/esm/next/index.d.ts.map +1 -1
- package/esm/next/index.js.map +1 -1
- package/esm/next/types/cellSelection.d.ts +1 -1
- package/esm/next/types/executionCancelling.d.ts +1 -1
- package/esm/next/types/experimental.d.ts +2 -2
- package/esm/next/types/formatting.d.ts +1 -1
- package/esm/next/types/formatting.d.ts.map +1 -1
- package/esm/next/types/formatting.js +1 -0
- package/esm/next/types/formatting.js.map +1 -1
- package/esm/next/types/layout.d.ts +1 -1
- package/esm/next/types/license.d.ts +1 -1
- package/esm/next/types/locators.d.ts +12 -12
- package/esm/next/types/locators.js +5 -5
- package/esm/next/types/menu.d.ts +2 -2
- package/esm/next/types/public.d.ts +14 -2
- package/esm/next/types/public.d.ts.map +1 -1
- package/esm/next/types/resizing.d.ts +32 -32
- package/esm/next/types/resizing.d.ts.map +1 -1
- package/esm/next/types/resizing.js +12 -12
- package/esm/next/types/resizing.js.map +1 -1
- package/esm/next/types/textWrapping.d.ts +3 -3
- package/esm/next/types/transposition.d.ts +3 -3
- package/esm/sdk-ui-pivot.d.ts +587 -0
- package/package.json +11 -11
- package/styles/css/main.css +4 -0
- package/styles/css/main.css.map +1 -1
package/esm/next/types/menu.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ITotal, TotalType } from "@gooddata/sdk-model";
|
|
2
2
|
/**
|
|
3
|
-
* @
|
|
3
|
+
* @public
|
|
4
4
|
*/
|
|
5
5
|
export type PivotTableNextMenuConfig = {
|
|
6
6
|
/**
|
|
@@ -11,7 +11,7 @@ export type PivotTableNextMenuConfig = {
|
|
|
11
11
|
/**
|
|
12
12
|
* Configuration for the aggregations menu.
|
|
13
13
|
*
|
|
14
|
-
* @
|
|
14
|
+
* @public
|
|
15
15
|
*/
|
|
16
16
|
export interface IMenu {
|
|
17
17
|
/**
|
|
@@ -11,11 +11,23 @@ import { PivotTableNextMenuConfig } from "./menu.js";
|
|
|
11
11
|
import { ColumnResizedCallback, PivotTableNextColumnsSizingConfig } from "./resizing.js";
|
|
12
12
|
import { PivotTableNextTextWrappingConfig } from "./textWrapping.js";
|
|
13
13
|
import { PivotTableNextTranspositionConfig } from "./transposition.js";
|
|
14
|
+
/**
|
|
15
|
+
* Configuration for the pivot table next.
|
|
16
|
+
*
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
14
19
|
export type PivotTableNextConfig = PivotTableNextTranspositionConfig & PivotTableNextTextWrappingConfig & PivotTableNextColumnsSizingConfig & PivotTableNextMenuConfig & PivotTableNextFormattingConfig & PivotTableNextExecutionCancellingConfig & PivotTableNextLayoutConfig & PivotTableNextCellSelectionConfig & PivotTableNextAgGridLicenseConfig & PivotTableNextExperimentalConfig;
|
|
15
20
|
/**
|
|
16
|
-
* Props for the
|
|
21
|
+
* Props for the PivotTableNext component.
|
|
22
|
+
*
|
|
23
|
+
* @remarks
|
|
24
|
+
* PivotTableNext is the new implementation of the pivot table built on AG Grid Enterprise.
|
|
25
|
+
* It replaces the legacy PivotTable component and offers improved performance, accessibility,
|
|
26
|
+
* text wrapping, cell selection, and other enhanced features.
|
|
27
|
+
*
|
|
28
|
+
* See {@link PivotTableNext} for more information.
|
|
17
29
|
*
|
|
18
|
-
* @
|
|
30
|
+
* @public
|
|
19
31
|
*/
|
|
20
32
|
export interface IPivotTableNextProps extends IVisualizationProps, IVisualizationCallbacks {
|
|
21
33
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public.d.ts","sourceRoot":"","sources":["../../../src/next/types/public.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,kBAAkB,EAAE,MAAM,2BAA2B,CAAC;AAC/D,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AACvD,OAAO,EACH,gCAAgC,EAChC,wBAAwB,EACxB,aAAa,EACb,uBAAuB,EACvB,mBAAmB,EACnB,6BAA6B,EAC7B,mBAAmB,EACnB,oBAAoB,EACvB,MAAM,kBAAkB,CAAC;AAE1B,OAAO,EAAE,iCAAiC,EAAE,MAAM,oBAAoB,CAAC;AACvE,OAAO,EAAE,uCAAuC,EAAE,MAAM,0BAA0B,CAAC;AACnF,OAAO,EAAE,gCAAgC,EAAE,MAAM,mBAAmB,CAAC;AACrE,OAAO,EAAE,8BAA8B,EAAE,MAAM,iBAAiB,CAAC;AACjE,OAAO,EAAE,0BAA0B,EAAE,MAAM,aAAa,CAAC;AACzD,OAAO,EAAE,iCAAiC,EAAE,MAAM,cAAc,CAAC;AACjE,OAAO,EAAE,wBAAwB,EAAE,MAAM,WAAW,CAAC;AACrD,OAAO,EAAE,qBAAqB,EAAE,iCAAiC,EAAE,MAAM,eAAe,CAAC;AACzF,OAAO,EAAE,gCAAgC,EAAE,MAAM,mBAAmB,CAAC;AACrE,OAAO,EAAE,iCAAiC,EAAE,MAAM,oBAAoB,CAAC;AAEvE,MAAM,MAAM,oBAAoB,GAAG,iCAAiC,GAChE,gCAAgC,GAChC,iCAAiC,GACjC,wBAAwB,GACxB,8BAA8B,GAC9B,uCAAuC,GACvC,0BAA0B,GAC1B,iCAAiC,GACjC,iCAAiC,GACjC,gCAAgC,CAAC;AAErC
|
|
1
|
+
{"version":3,"file":"public.d.ts","sourceRoot":"","sources":["../../../src/next/types/public.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,kBAAkB,EAAE,MAAM,2BAA2B,CAAC;AAC/D,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AACvD,OAAO,EACH,gCAAgC,EAChC,wBAAwB,EACxB,aAAa,EACb,uBAAuB,EACvB,mBAAmB,EACnB,6BAA6B,EAC7B,mBAAmB,EACnB,oBAAoB,EACvB,MAAM,kBAAkB,CAAC;AAE1B,OAAO,EAAE,iCAAiC,EAAE,MAAM,oBAAoB,CAAC;AACvE,OAAO,EAAE,uCAAuC,EAAE,MAAM,0BAA0B,CAAC;AACnF,OAAO,EAAE,gCAAgC,EAAE,MAAM,mBAAmB,CAAC;AACrE,OAAO,EAAE,8BAA8B,EAAE,MAAM,iBAAiB,CAAC;AACjE,OAAO,EAAE,0BAA0B,EAAE,MAAM,aAAa,CAAC;AACzD,OAAO,EAAE,iCAAiC,EAAE,MAAM,cAAc,CAAC;AACjE,OAAO,EAAE,wBAAwB,EAAE,MAAM,WAAW,CAAC;AACrD,OAAO,EAAE,qBAAqB,EAAE,iCAAiC,EAAE,MAAM,eAAe,CAAC;AACzF,OAAO,EAAE,gCAAgC,EAAE,MAAM,mBAAmB,CAAC;AACrE,OAAO,EAAE,iCAAiC,EAAE,MAAM,oBAAoB,CAAC;AAEvE;;;;GAIG;AACH,MAAM,MAAM,oBAAoB,GAAG,iCAAiC,GAChE,gCAAgC,GAChC,iCAAiC,GACjC,wBAAwB,GACxB,8BAA8B,GAC9B,uCAAuC,GACvC,0BAA0B,GAC1B,iCAAiC,GACjC,iCAAiC,GACjC,gCAAgC,CAAC;AAErC;;;;;;;;;;;GAWG;AACH,MAAM,WAAW,oBAAqB,SAAQ,mBAAmB,EAAE,uBAAuB;IACtF;;OAEG;IACH,OAAO,CAAC,EAAE,kBAAkB,CAAC;IAE7B;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,OAAO,CAAC,EAAE,wBAAwB,CAAC;IAEnC;;OAEG;IACH,IAAI,CAAC,EAAE,wBAAwB,CAAC;IAEhC;;OAEG;IACH,QAAQ,CAAC,EAAE,gCAAgC,CAAC;IAE5C;;OAEG;IACH,OAAO,CAAC,EAAE,6BAA6B,CAAC;IAExC;;OAEG;IACH,MAAM,CAAC,EAAE,oBAAoB,CAAC;IAE9B;;OAEG;IACH,MAAM,CAAC,EAAE,mBAAmB,CAAC;IAE7B;;OAEG;IACH,cAAc,CAAC,EAAE,aAAa,EAAE,CAAC;IAEjC;;OAEG;IACH,MAAM,CAAC,EAAE,oBAAoB,CAAC;IAE9B;;;;;OAKG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;;;OAIG;IACH,eAAe,CAAC,EAAE,qBAAqB,CAAC;IAExC;;OAEG;IACH,UAAU,CAAC,EAAE,gBAAgB,CAAC;IAE9B;;OAEG;IACH,6BAA6B,CAAC,EAAE,GAAG,CAAC;CACvC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { IAttribute, IMeasure, Identifier } from "@gooddata/sdk-model";
|
|
2
2
|
import { ColumnLocator, IAttributeColumnLocator, IMeasureColumnLocator, ITotalColumnLocator } from "./locators.js";
|
|
3
3
|
/**
|
|
4
|
-
* @
|
|
4
|
+
* @public
|
|
5
5
|
*/
|
|
6
6
|
export type PivotTableNextColumnsSizingConfig = {
|
|
7
7
|
/**
|
|
@@ -10,15 +10,15 @@ export type PivotTableNextColumnsSizingConfig = {
|
|
|
10
10
|
columnSizing?: IColumnSizing;
|
|
11
11
|
};
|
|
12
12
|
/**
|
|
13
|
-
* @
|
|
13
|
+
* @public
|
|
14
14
|
*/
|
|
15
15
|
export type ColumnResizedCallback = (columnWidths: ColumnWidthItem[]) => void;
|
|
16
16
|
/**
|
|
17
|
-
* @
|
|
17
|
+
* @public
|
|
18
18
|
*/
|
|
19
19
|
export type DefaultColumnWidth = "unset" | "autoresizeAll" | "viewport";
|
|
20
20
|
/**
|
|
21
|
-
* @
|
|
21
|
+
* @public
|
|
22
22
|
*/
|
|
23
23
|
export interface IColumnSizing {
|
|
24
24
|
/**
|
|
@@ -57,33 +57,33 @@ export interface IManuallyResizedColumnsItem {
|
|
|
57
57
|
allowGrowToFit?: boolean;
|
|
58
58
|
}
|
|
59
59
|
/**
|
|
60
|
-
* @
|
|
60
|
+
* @public
|
|
61
61
|
*/
|
|
62
62
|
export interface IAbsoluteColumnWidth {
|
|
63
63
|
value: number;
|
|
64
64
|
allowGrowToFit?: boolean;
|
|
65
65
|
}
|
|
66
66
|
/**
|
|
67
|
-
* @
|
|
67
|
+
* @public
|
|
68
68
|
*/
|
|
69
69
|
export interface IAutoColumnWidth {
|
|
70
70
|
value: "auto";
|
|
71
71
|
}
|
|
72
72
|
/**
|
|
73
|
-
* @
|
|
73
|
+
* @public
|
|
74
74
|
*/
|
|
75
75
|
export type ColumnWidth = IAbsoluteColumnWidth | IAutoColumnWidth;
|
|
76
76
|
/**
|
|
77
77
|
* Object defining the {@link IAttributeColumnWidthItem} object body.
|
|
78
78
|
*
|
|
79
|
-
* @
|
|
79
|
+
* @public
|
|
80
80
|
*/
|
|
81
81
|
export interface IAttributeColumnWidthItemBody {
|
|
82
82
|
width: IAbsoluteColumnWidth;
|
|
83
83
|
attributeIdentifier: Identifier;
|
|
84
84
|
}
|
|
85
85
|
/**
|
|
86
|
-
* @
|
|
86
|
+
* @public
|
|
87
87
|
*/
|
|
88
88
|
export interface IAttributeColumnWidthItem {
|
|
89
89
|
attributeColumnWidthItem: IAttributeColumnWidthItemBody;
|
|
@@ -91,14 +91,14 @@ export interface IAttributeColumnWidthItem {
|
|
|
91
91
|
/**
|
|
92
92
|
* Object defining the {@link IMeasureColumnWidthItem} object body.
|
|
93
93
|
*
|
|
94
|
-
* @
|
|
94
|
+
* @public
|
|
95
95
|
*/
|
|
96
96
|
export interface IMeasureColumnWidthItemBody {
|
|
97
97
|
width: ColumnWidth;
|
|
98
98
|
locators: ColumnLocator[];
|
|
99
99
|
}
|
|
100
100
|
/**
|
|
101
|
-
* @
|
|
101
|
+
* @public
|
|
102
102
|
*/
|
|
103
103
|
export interface IMeasureColumnWidthItem {
|
|
104
104
|
measureColumnWidthItem: IMeasureColumnWidthItemBody;
|
|
@@ -106,14 +106,14 @@ export interface IMeasureColumnWidthItem {
|
|
|
106
106
|
/**
|
|
107
107
|
* Object defining the {@link ISliceMeasureColumnWidthItem } object body.
|
|
108
108
|
*
|
|
109
|
-
* @
|
|
109
|
+
* @public
|
|
110
110
|
*/
|
|
111
111
|
export interface ISliceMeasureColumnWidthItemBody {
|
|
112
112
|
width: ColumnWidth;
|
|
113
113
|
locators: IMeasureColumnLocator[];
|
|
114
114
|
}
|
|
115
115
|
/**
|
|
116
|
-
* @
|
|
116
|
+
* @public
|
|
117
117
|
*/
|
|
118
118
|
export interface ISliceMeasureColumnWidthItem {
|
|
119
119
|
sliceMeasureColumnWidthItem: ISliceMeasureColumnWidthItemBody;
|
|
@@ -121,14 +121,14 @@ export interface ISliceMeasureColumnWidthItem {
|
|
|
121
121
|
/**
|
|
122
122
|
* Object defining the {@link IMixedValuesColumnWidthItemBody } object body.
|
|
123
123
|
*
|
|
124
|
-
* @
|
|
124
|
+
* @public
|
|
125
125
|
*/
|
|
126
126
|
export interface IMixedValuesColumnWidthItemBody {
|
|
127
127
|
width: ColumnWidth;
|
|
128
128
|
locators: IMeasureColumnLocator[];
|
|
129
129
|
}
|
|
130
130
|
/**
|
|
131
|
-
* @
|
|
131
|
+
* @public
|
|
132
132
|
*/
|
|
133
133
|
export interface IMixedValuesColumnWidthItem {
|
|
134
134
|
mixedValuesColumnWidthItem: IMixedValuesColumnWidthItemBody;
|
|
@@ -136,13 +136,13 @@ export interface IMixedValuesColumnWidthItem {
|
|
|
136
136
|
/**
|
|
137
137
|
* Object defining {@link IAllMeasureColumnWidthItem} object body.
|
|
138
138
|
*
|
|
139
|
-
* @
|
|
139
|
+
* @public
|
|
140
140
|
*/
|
|
141
141
|
export interface IAllMeasureColumnWidthItemBody {
|
|
142
142
|
width: IAbsoluteColumnWidth;
|
|
143
143
|
}
|
|
144
144
|
/**
|
|
145
|
-
* @
|
|
145
|
+
* @public
|
|
146
146
|
*/
|
|
147
147
|
export interface IAllMeasureColumnWidthItem {
|
|
148
148
|
measureColumnWidthItem: IAllMeasureColumnWidthItemBody;
|
|
@@ -150,62 +150,62 @@ export interface IAllMeasureColumnWidthItem {
|
|
|
150
150
|
/**
|
|
151
151
|
* Object defining the {@link IWeakMeasureColumnWidthItem} object body.
|
|
152
152
|
*
|
|
153
|
-
* @
|
|
153
|
+
* @public
|
|
154
154
|
*/
|
|
155
155
|
export interface IWeakMeasureColumnWidthItemBody {
|
|
156
156
|
width: IAbsoluteColumnWidth;
|
|
157
157
|
locator: IMeasureColumnLocator;
|
|
158
158
|
}
|
|
159
159
|
/**
|
|
160
|
-
* @
|
|
160
|
+
* @public
|
|
161
161
|
*/
|
|
162
162
|
export interface IWeakMeasureColumnWidthItem {
|
|
163
163
|
measureColumnWidthItem: IWeakMeasureColumnWidthItemBody;
|
|
164
164
|
}
|
|
165
165
|
/**
|
|
166
|
-
* @
|
|
166
|
+
* @public
|
|
167
167
|
*/
|
|
168
168
|
export type ColumnWidthItem = IAttributeColumnWidthItem | IMeasureColumnWidthItem | ISliceMeasureColumnWidthItem | IMixedValuesColumnWidthItem | IAllMeasureColumnWidthItem | IWeakMeasureColumnWidthItem;
|
|
169
169
|
/**
|
|
170
170
|
* Tests whether object is an instance of {@link IAbsoluteColumnWidth}
|
|
171
171
|
*
|
|
172
|
-
* @
|
|
172
|
+
* @public
|
|
173
173
|
*/
|
|
174
174
|
export declare function isAbsoluteColumnWidth(columnWidth: ColumnWidth): columnWidth is IAbsoluteColumnWidth;
|
|
175
175
|
/**
|
|
176
176
|
* Tests whether object is an instance of {@link IAttributeColumnWidthItem}
|
|
177
177
|
*
|
|
178
|
-
* @
|
|
178
|
+
* @public
|
|
179
179
|
*/
|
|
180
180
|
export declare function isAttributeColumnWidthItem(obj: unknown): obj is IAttributeColumnWidthItem;
|
|
181
181
|
/**
|
|
182
182
|
* Tests whether object is an instance of {@link IMeasureColumnWidthItem}
|
|
183
183
|
*
|
|
184
|
-
* @
|
|
184
|
+
* @public
|
|
185
185
|
*/
|
|
186
186
|
export declare function isMeasureColumnWidthItem(obj: unknown): obj is IMeasureColumnWidthItem;
|
|
187
187
|
/**
|
|
188
188
|
* Tests whether object is an instance of {@link ISliceMeasureColumnWidthItem}
|
|
189
189
|
*
|
|
190
|
-
* @
|
|
190
|
+
* @public
|
|
191
191
|
*/
|
|
192
192
|
export declare function isSliceMeasureColumnWidthItem(obj: unknown): obj is ISliceMeasureColumnWidthItem;
|
|
193
193
|
/**
|
|
194
194
|
* Tests whether object is an instance of {@link IMixedValuesColumnWidthItem}
|
|
195
195
|
*
|
|
196
|
-
* @
|
|
196
|
+
* @public
|
|
197
197
|
*/
|
|
198
198
|
export declare function isMixedValuesColumnWidthItem(obj: unknown): obj is IMixedValuesColumnWidthItem;
|
|
199
199
|
/**
|
|
200
200
|
* Tests whether object is an instance of {@link IAllMeasureColumnWidthItem}
|
|
201
201
|
*
|
|
202
|
-
* @
|
|
202
|
+
* @public
|
|
203
203
|
*/
|
|
204
204
|
export declare function isAllMeasureColumnWidthItem(obj: unknown): obj is IAllMeasureColumnWidthItem;
|
|
205
205
|
/**
|
|
206
206
|
* Tests whether object is an instance of {@link IWeakMeasureColumnWidthItem}
|
|
207
207
|
*
|
|
208
|
-
* @
|
|
208
|
+
* @public
|
|
209
209
|
*/
|
|
210
210
|
export declare function isWeakMeasureColumnWidthItem(obj: unknown): obj is IWeakMeasureColumnWidthItem;
|
|
211
211
|
/**
|
|
@@ -214,7 +214,7 @@ export declare function isWeakMeasureColumnWidthItem(obj: unknown): obj is IWeak
|
|
|
214
214
|
* @param attributeOrId - Attribute specified by value or by localId reference
|
|
215
215
|
* @param width - Width in pixels
|
|
216
216
|
* @param allowGrowToFit - indicates whether the column is allowed to grow if the table's growToFit is enabled
|
|
217
|
-
* @
|
|
217
|
+
* @public
|
|
218
218
|
*/
|
|
219
219
|
export declare function newWidthForAttributeColumn(attributeOrId: IAttribute | string, width: number, allowGrowToFit?: boolean): IAttributeColumnWidthItem;
|
|
220
220
|
/**
|
|
@@ -222,7 +222,7 @@ export declare function newWidthForAttributeColumn(attributeOrId: IAttribute | s
|
|
|
222
222
|
*
|
|
223
223
|
* @param width - Width in pixels
|
|
224
224
|
* @param allowGrowToFit - indicates whether the column is allowed to grow if the table's growToFit is enabled
|
|
225
|
-
* @
|
|
225
|
+
* @public
|
|
226
226
|
*/
|
|
227
227
|
export declare function newWidthForAllMeasureColumns(width: number, allowGrowToFit?: boolean): IAllMeasureColumnWidthItem;
|
|
228
228
|
/**
|
|
@@ -231,7 +231,7 @@ export declare function newWidthForAllMeasureColumns(width: number, allowGrowToF
|
|
|
231
231
|
* @param measureOrId - Measure specified either by value or by localId reference
|
|
232
232
|
* @param width - Width in pixels
|
|
233
233
|
* @param allowGrowToFit - indicates whether the column is allowed to grow if the table's growToFit is enabled
|
|
234
|
-
* @
|
|
234
|
+
* @public
|
|
235
235
|
*/
|
|
236
236
|
export declare function newWidthForAllColumnsForMeasure(measureOrId: IMeasure | string, width: number, allowGrowToFit?: boolean): IWeakMeasureColumnWidthItem;
|
|
237
237
|
/**
|
|
@@ -246,7 +246,7 @@ export declare function newWidthForAllColumnsForMeasure(measureOrId: IMeasure |
|
|
|
246
246
|
* @param width - Width in pixels
|
|
247
247
|
* @param allowGrowToFit - indicates whether the column is allowed to grow if the table's growToFit is enabled
|
|
248
248
|
@deprecated this method is deprecated, please use {@link setNewWidthForSelectedColumns} instead.
|
|
249
|
-
* @
|
|
249
|
+
* @public
|
|
250
250
|
*/
|
|
251
251
|
export declare function newWidthForSelectedColumns(measureOrId: IMeasure | string, locators: (IAttributeColumnLocator | ITotalColumnLocator)[], width: number | "auto", allowGrowToFit?: boolean): IMeasureColumnWidthItem;
|
|
252
252
|
/**
|
|
@@ -260,7 +260,7 @@ export declare function newWidthForSelectedColumns(measureOrId: IMeasure | strin
|
|
|
260
260
|
* @param locators - Attribute locators to narrow down selection
|
|
261
261
|
* @param width - Width in pixels
|
|
262
262
|
* @param allowGrowToFit - indicates whether the column is allowed to grow if the table's growToFit is enabled
|
|
263
|
-
* @
|
|
263
|
+
* @public
|
|
264
264
|
*/
|
|
265
265
|
export declare function setNewWidthForSelectedColumns(measuresOrIds: IMeasure | string | IMeasure[] | string[] | null, locators: (IAttributeColumnLocator | ITotalColumnLocator)[], width: number | "auto", allowGrowToFit?: boolean): IMeasureColumnWidthItem;
|
|
266
266
|
//# sourceMappingURL=resizing.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resizing.d.ts","sourceRoot":"","sources":["../../../src/next/types/resizing.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"resizing.d.ts","sourceRoot":"","sources":["../../../src/next/types/resizing.ts"],"names":[],"mappings":"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"}
|
|
@@ -5,7 +5,7 @@ import { newMeasureColumnLocator, } from "./locators.js";
|
|
|
5
5
|
/**
|
|
6
6
|
* Tests whether object is an instance of {@link IAbsoluteColumnWidth}
|
|
7
7
|
*
|
|
8
|
-
* @
|
|
8
|
+
* @public
|
|
9
9
|
*/
|
|
10
10
|
export function isAbsoluteColumnWidth(columnWidth) {
|
|
11
11
|
return Number(columnWidth.value) === columnWidth.value;
|
|
@@ -13,7 +13,7 @@ export function isAbsoluteColumnWidth(columnWidth) {
|
|
|
13
13
|
/**
|
|
14
14
|
* Tests whether object is an instance of {@link IAttributeColumnWidthItem}
|
|
15
15
|
*
|
|
16
|
-
* @
|
|
16
|
+
* @public
|
|
17
17
|
*/
|
|
18
18
|
export function isAttributeColumnWidthItem(obj) {
|
|
19
19
|
return !isEmpty(obj) && obj.attributeColumnWidthItem !== undefined;
|
|
@@ -21,7 +21,7 @@ export function isAttributeColumnWidthItem(obj) {
|
|
|
21
21
|
/**
|
|
22
22
|
* Tests whether object is an instance of {@link IMeasureColumnWidthItem}
|
|
23
23
|
*
|
|
24
|
-
* @
|
|
24
|
+
* @public
|
|
25
25
|
*/
|
|
26
26
|
export function isMeasureColumnWidthItem(obj) {
|
|
27
27
|
return !isEmpty(obj) && obj.measureColumnWidthItem?.locators !== undefined;
|
|
@@ -29,7 +29,7 @@ export function isMeasureColumnWidthItem(obj) {
|
|
|
29
29
|
/**
|
|
30
30
|
* Tests whether object is an instance of {@link ISliceMeasureColumnWidthItem}
|
|
31
31
|
*
|
|
32
|
-
* @
|
|
32
|
+
* @public
|
|
33
33
|
*/
|
|
34
34
|
export function isSliceMeasureColumnWidthItem(obj) {
|
|
35
35
|
return (!isEmpty(obj) &&
|
|
@@ -38,7 +38,7 @@ export function isSliceMeasureColumnWidthItem(obj) {
|
|
|
38
38
|
/**
|
|
39
39
|
* Tests whether object is an instance of {@link IMixedValuesColumnWidthItem}
|
|
40
40
|
*
|
|
41
|
-
* @
|
|
41
|
+
* @public
|
|
42
42
|
*/
|
|
43
43
|
export function isMixedValuesColumnWidthItem(obj) {
|
|
44
44
|
return (!isEmpty(obj) &&
|
|
@@ -47,7 +47,7 @@ export function isMixedValuesColumnWidthItem(obj) {
|
|
|
47
47
|
/**
|
|
48
48
|
* Tests whether object is an instance of {@link IAllMeasureColumnWidthItem}
|
|
49
49
|
*
|
|
50
|
-
* @
|
|
50
|
+
* @public
|
|
51
51
|
*/
|
|
52
52
|
export function isAllMeasureColumnWidthItem(obj) {
|
|
53
53
|
return (!isEmpty(obj) &&
|
|
@@ -58,7 +58,7 @@ export function isAllMeasureColumnWidthItem(obj) {
|
|
|
58
58
|
/**
|
|
59
59
|
* Tests whether object is an instance of {@link IWeakMeasureColumnWidthItem}
|
|
60
60
|
*
|
|
61
|
-
* @
|
|
61
|
+
* @public
|
|
62
62
|
*/
|
|
63
63
|
export function isWeakMeasureColumnWidthItem(obj) {
|
|
64
64
|
return (!isEmpty(obj) && obj.measureColumnWidthItem?.locator !== undefined);
|
|
@@ -69,7 +69,7 @@ export function isWeakMeasureColumnWidthItem(obj) {
|
|
|
69
69
|
* @param attributeOrId - Attribute specified by value or by localId reference
|
|
70
70
|
* @param width - Width in pixels
|
|
71
71
|
* @param allowGrowToFit - indicates whether the column is allowed to grow if the table's growToFit is enabled
|
|
72
|
-
* @
|
|
72
|
+
* @public
|
|
73
73
|
*/
|
|
74
74
|
export function newWidthForAttributeColumn(attributeOrId, width, allowGrowToFit) {
|
|
75
75
|
const growToFitProp = allowGrowToFit === undefined ? {} : { allowGrowToFit };
|
|
@@ -88,7 +88,7 @@ export function newWidthForAttributeColumn(attributeOrId, width, allowGrowToFit)
|
|
|
88
88
|
*
|
|
89
89
|
* @param width - Width in pixels
|
|
90
90
|
* @param allowGrowToFit - indicates whether the column is allowed to grow if the table's growToFit is enabled
|
|
91
|
-
* @
|
|
91
|
+
* @public
|
|
92
92
|
*/
|
|
93
93
|
export function newWidthForAllMeasureColumns(width, allowGrowToFit) {
|
|
94
94
|
const growToFitProp = allowGrowToFit === undefined ? {} : { allowGrowToFit };
|
|
@@ -107,7 +107,7 @@ export function newWidthForAllMeasureColumns(width, allowGrowToFit) {
|
|
|
107
107
|
* @param measureOrId - Measure specified either by value or by localId reference
|
|
108
108
|
* @param width - Width in pixels
|
|
109
109
|
* @param allowGrowToFit - indicates whether the column is allowed to grow if the table's growToFit is enabled
|
|
110
|
-
* @
|
|
110
|
+
* @public
|
|
111
111
|
*/
|
|
112
112
|
export function newWidthForAllColumnsForMeasure(measureOrId, width, allowGrowToFit) {
|
|
113
113
|
const locator = newMeasureColumnLocator(measureOrId);
|
|
@@ -134,7 +134,7 @@ export function newWidthForAllColumnsForMeasure(measureOrId, width, allowGrowToF
|
|
|
134
134
|
* @param width - Width in pixels
|
|
135
135
|
* @param allowGrowToFit - indicates whether the column is allowed to grow if the table's growToFit is enabled
|
|
136
136
|
@deprecated this method is deprecated, please use {@link setNewWidthForSelectedColumns} instead.
|
|
137
|
-
* @
|
|
137
|
+
* @public
|
|
138
138
|
*/
|
|
139
139
|
export function newWidthForSelectedColumns(measureOrId, locators, width, allowGrowToFit) {
|
|
140
140
|
return setNewWidthForSelectedColumns(measureOrId, locators, width, allowGrowToFit);
|
|
@@ -150,7 +150,7 @@ export function newWidthForSelectedColumns(measureOrId, locators, width, allowGr
|
|
|
150
150
|
* @param locators - Attribute locators to narrow down selection
|
|
151
151
|
* @param width - Width in pixels
|
|
152
152
|
* @param allowGrowToFit - indicates whether the column is allowed to grow if the table's growToFit is enabled
|
|
153
|
-
* @
|
|
153
|
+
* @public
|
|
154
154
|
*/
|
|
155
155
|
export function setNewWidthForSelectedColumns(measuresOrIds, locators, width, allowGrowToFit) {
|
|
156
156
|
let measureLocators = [];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resizing.js","sourceRoot":"","sources":["../../../src/next/types/resizing.ts"],"names":[],"mappings":"AAAA,gCAAgC;
|
|
1
|
+
{"version":3,"file":"resizing.js","sourceRoot":"","sources":["../../../src/next/types/resizing.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,7 +2,7 @@ import { ColumnLocator } from "./locators.js";
|
|
|
2
2
|
/**
|
|
3
3
|
* Column text wrapping item that specifies text wrapping settings for specific column(s).
|
|
4
4
|
*
|
|
5
|
-
* @
|
|
5
|
+
* @public
|
|
6
6
|
*/
|
|
7
7
|
export interface IColumnTextWrappingItem {
|
|
8
8
|
/**
|
|
@@ -30,7 +30,7 @@ export interface IColumnTextWrappingItem {
|
|
|
30
30
|
matchType?: "column" | "pivotGroup";
|
|
31
31
|
}
|
|
32
32
|
/**
|
|
33
|
-
* @
|
|
33
|
+
* @public
|
|
34
34
|
*/
|
|
35
35
|
export interface ITextWrapping {
|
|
36
36
|
/**
|
|
@@ -51,7 +51,7 @@ export interface ITextWrapping {
|
|
|
51
51
|
columnOverrides?: IColumnTextWrappingItem[];
|
|
52
52
|
}
|
|
53
53
|
/**
|
|
54
|
-
* @
|
|
54
|
+
* @public
|
|
55
55
|
*/
|
|
56
56
|
export type PivotTableNextTextWrappingConfig = {
|
|
57
57
|
/**
|
|
@@ -5,15 +5,15 @@
|
|
|
5
5
|
* - "columns" - measures are included in the first dimension (top to bottom).
|
|
6
6
|
* - "rows" - measures are included in the second dimension (left to right).
|
|
7
7
|
*
|
|
8
|
-
* @
|
|
8
|
+
* @public
|
|
9
9
|
*/
|
|
10
10
|
export type MeasureGroupDimension = "columns" | "rows";
|
|
11
11
|
/**
|
|
12
|
-
* @
|
|
12
|
+
* @public
|
|
13
13
|
*/
|
|
14
14
|
export type ColumnHeadersPosition = "left" | "top";
|
|
15
15
|
/**
|
|
16
|
-
* @
|
|
16
|
+
* @public
|
|
17
17
|
*/
|
|
18
18
|
export type PivotTableNextTranspositionConfig = {
|
|
19
19
|
/**
|