igniteui-webcomponents-grids 4.7.2-beta.0 → 4.7.2-beta.1
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/lib/igc-column-state.d.ts +1 -0
- package/grids/lib/igc-grid-selection-range.d.ts +2 -0
- package/grids/lib/igc-grid-state-info.d.ts +3 -0
- package/grids/lib/igc-grouping-state.d.ts +1 -0
- package/grids/lib/igc-paging-state.d.ts +1 -0
- package/grids/lib/igc-pinning-config.d.ts +1 -0
- package/package.json +4 -4
|
@@ -19,10 +19,12 @@
|
|
|
19
19
|
public get rowEnd(): number;
|
|
20
20
|
|
|
21
21
|
|
|
22
|
+
/* blazorAlternateType: double */
|
|
22
23
|
public set columnStart(value: string);
|
|
23
24
|
public get columnStart(): string;
|
|
24
25
|
|
|
25
26
|
|
|
27
|
+
/* blazorAlternateType: double */
|
|
26
28
|
public set columnEnd(value: string);
|
|
27
29
|
public get columnEnd(): string;
|
|
28
30
|
|
|
@@ -44,18 +44,21 @@ import { IgcPivotConfiguration } from './igc-pivot-configuration';
|
|
|
44
44
|
public cellSelection?: IgcGridSelectionRange[];
|
|
45
45
|
|
|
46
46
|
|
|
47
|
+
/* blazorPrimitiveValue */
|
|
47
48
|
public rowSelection?: any[];
|
|
48
49
|
|
|
49
50
|
|
|
50
51
|
public columnSelection?: string[];
|
|
51
52
|
|
|
52
53
|
|
|
54
|
+
/* blazorPrimitiveValue */
|
|
53
55
|
public rowPinning?: any[];
|
|
54
56
|
|
|
55
57
|
|
|
56
58
|
public pinningConfig?: IgcPinningConfig;
|
|
57
59
|
|
|
58
60
|
|
|
61
|
+
/* blazorPrimitiveValue */
|
|
59
62
|
public expansion?: any[];
|
|
60
63
|
|
|
61
64
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-webcomponents-grids",
|
|
3
|
-
"version": "4.7.2-beta.
|
|
3
|
+
"version": "4.7.2-beta.1",
|
|
4
4
|
"description": "Ignite UI Web Components 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.7.2-beta.
|
|
22
|
-
"igniteui-webcomponents-layouts": "4.7.2-beta.
|
|
23
|
-
"igniteui-webcomponents-inputs": "4.7.2-beta.
|
|
21
|
+
"igniteui-webcomponents-core": "4.7.2-beta.1",
|
|
22
|
+
"igniteui-webcomponents-layouts": "4.7.2-beta.1",
|
|
23
|
+
"igniteui-webcomponents-inputs": "4.7.2-beta.1"
|
|
24
24
|
},
|
|
25
25
|
"sideEffects": [
|
|
26
26
|
"./grids/combined.js"
|