igniteui-webcomponents-grids 4.2.3-alpha → 4.2.5
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/grids/index.d.ts
CHANGED
|
@@ -133,7 +133,9 @@ export * from './lib/igc-pivot-date-dimension-options'
|
|
|
133
133
|
export * from './lib/igc-pivot-date-dimension'
|
|
134
134
|
export * from './lib/igc-pivot-dimension-strategy'
|
|
135
135
|
export * from './lib/igc-pivot-dimension'
|
|
136
|
+
export * from './lib/igc-pivot-grid-column'
|
|
136
137
|
export * from './lib/igc-pivot-grid-component'
|
|
138
|
+
export * from './lib/igc-pivot-grid-record'
|
|
137
139
|
export * from './lib/igc-pivot-grid-value-template-context'
|
|
138
140
|
export * from './lib/igc-pivot-keys'
|
|
139
141
|
export * from './lib/igc-pivot-value'
|
|
@@ -80,7 +80,7 @@ import { IgcPivotDateDimensionOptions } from './igc-pivot-date-dimension-options
|
|
|
80
80
|
public set options(value: IgcPivotDateDimensionOptions);
|
|
81
81
|
public get options(): IgcPivotDateDimensionOptions;
|
|
82
82
|
|
|
83
|
-
constructor(inBaseDimension
|
|
83
|
+
constructor(inBaseDimension?: IgcPivotDimension, inOptions?: IgcPivotDateDimensionOptions);
|
|
84
84
|
|
|
85
85
|
}
|
|
86
86
|
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
|
|
2
|
+
import { IgcPivotDimension } from './igc-pivot-dimension';
|
|
3
|
+
import { IgcPivotValue } from './igc-pivot-value';
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
/* jsonAPIPlainObject */
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
/** Interface describing the Pivot column data.
|
|
10
|
+
* Contains information on the related column dimensions and their values.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
export declare class IgcPivotGridColumn
|
|
14
|
+
{
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
public set field(value: string);
|
|
18
|
+
public get field(): string;
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
/** List of dimensions associated with the column.**/
|
|
22
|
+
public set dimensions(value: IgcPivotDimension[]);
|
|
23
|
+
public get dimensions(): IgcPivotDimension[];
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
public set value(value: IgcPivotValue);
|
|
27
|
+
public get value(): IgcPivotValue;
|
|
28
|
+
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
|
|
2
|
+
import { IgcPivotDimension } from './igc-pivot-dimension';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
/* jsonAPIPlainObject */
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
export declare class IgcPivotGridRecord
|
|
10
|
+
{
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
/** List of original data records associated with the current pivoted data. **/
|
|
14
|
+
public records?: any[];
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/** Record level**/
|
|
18
|
+
public level?: number;
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
/** List of dimensions associated with the record.**/
|
|
22
|
+
public set dimensions(value: IgcPivotDimension[]);
|
|
23
|
+
public get dimensions(): IgcPivotDimension[];
|
|
24
|
+
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-webcomponents-grids",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.5",
|
|
4
4
|
"description": "Ignite UI WebComponents grid components.",
|
|
5
5
|
"homepage": "https://github.com/IgniteUI/igniteui-webcomponents-grids",
|
|
6
6
|
"keywords": [
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"tslib": "^2.3.1"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
|
-
"igniteui-webcomponents-core": "4.2.
|
|
22
|
-
"igniteui-webcomponents-layouts": "4.2.
|
|
23
|
-
"igniteui-webcomponents-inputs": "4.2.
|
|
21
|
+
"igniteui-webcomponents-core": "4.2.5",
|
|
22
|
+
"igniteui-webcomponents-layouts": "4.2.5",
|
|
23
|
+
"igniteui-webcomponents-inputs": "4.2.5"
|
|
24
24
|
},
|
|
25
25
|
"sideEffects": [
|
|
26
26
|
"./grids/combined.js"
|