igniteui-webcomponents-grids 4.8.0 → 4.8.1-alpha.0
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/bundles/igniteui-webcomponents-grids.umd.js +164 -164
- package/bundles/igniteui-webcomponents-grids.umd.min.js +1 -1
- package/esm2015/lib/CanvasGridCellBase.js +10 -10
- package/esm2015/lib/CanvasSummaryCell.js +2 -2
- package/esm2015/lib/ColumnFilterCondition_combined.js +63 -63
- package/esm2015/lib/ColumnGroupingView_combined.js +18 -18
- package/esm2015/lib/ColumnGroupingVisualModelExport.js +1 -1
- package/esm2015/lib/FilterCell.js +1 -1
- package/esm2015/lib/GridCellBase.js +2 -2
- package/esm2015/lib/GridColumnOptionsViewBase_combined.js +4 -4
- package/esm2015/lib/GridColumnOptionsView_combined.js +2 -2
- package/esm2015/lib/GridStyleRepository.js +12 -12
- package/esm2015/lib/MultiColumnComboBoxView_combined.js +44 -44
- package/esm2015/lib/PropertyEditorView_combined.js +5 -5
- package/esm5/lib/CanvasGridCellBase.js +10 -10
- package/esm5/lib/CanvasSummaryCell.js +2 -2
- package/esm5/lib/ColumnFilterCondition_combined.js +63 -63
- package/esm5/lib/ColumnGroupingView_combined.js +18 -18
- package/esm5/lib/ColumnGroupingVisualModelExport.js +1 -1
- package/esm5/lib/FilterCell.js +1 -1
- package/esm5/lib/GridCellBase.js +2 -2
- package/esm5/lib/GridColumnOptionsViewBase_combined.js +4 -4
- package/esm5/lib/GridColumnOptionsView_combined.js +2 -2
- package/esm5/lib/GridStyleRepository.js +12 -12
- package/esm5/lib/MultiColumnComboBoxView_combined.js +44 -44
- package/esm5/lib/PropertyEditorView_combined.js +5 -5
- package/fesm2015/igniteui-webcomponents-grids.js +164 -164
- package/fesm5/igniteui-webcomponents-grids.js +164 -164
- package/grids/combined.js +439 -429
- package/grids/lib/igc-column-component.d.ts +1 -1
- package/grids/lib/igc-grid-base-directive.d.ts +1 -3
- package/grids/lib/igc-grid-component.d.ts +1 -1
- package/grids/lib/igc-grid-state-base-directive.d.ts +0 -2
- package/grids/lib/igc-grid-toolbar-component.d.ts +1 -0
- package/grids/lib/igc-paginator-component.d.ts +1 -0
- package/grids/lib/igc-position-settings.d.ts +1 -1
- package/grids/lib/igc-row-island-component.d.ts +7 -5
- package/grids/lib/igc-row-type.d.ts +1 -2
- package/package.json +4 -4
|
@@ -265,7 +265,7 @@ import { IgcGridHeaderGroupComponent } from './igc-grid-header-group-component';
|
|
|
265
265
|
* <igx-column [movable] = "true"></igx-column>
|
|
266
266
|
* ```
|
|
267
267
|
*
|
|
268
|
-
* @deprecated
|
|
268
|
+
* @deprecated Use the Grid's `moving` property instead.
|
|
269
269
|
*/
|
|
270
270
|
public set movable(value: boolean);
|
|
271
271
|
public get movable(): boolean;
|
|
@@ -532,7 +532,6 @@ import { EventEmitterMixin, LitElement, Constructor, AbstractConstructor } from
|
|
|
532
532
|
|
|
533
533
|
|
|
534
534
|
|
|
535
|
-
/* csSuppress */
|
|
536
535
|
/**
|
|
537
536
|
* Gets/Sets the height.
|
|
538
537
|
*
|
|
@@ -546,7 +545,6 @@ import { EventEmitterMixin, LitElement, Constructor, AbstractConstructor } from
|
|
|
546
545
|
|
|
547
546
|
|
|
548
547
|
|
|
549
|
-
/* csSuppress */
|
|
550
548
|
/**
|
|
551
549
|
* Gets/Sets the width of the grid.
|
|
552
550
|
*
|
|
@@ -860,7 +858,7 @@ public set selectedRows(value: any[]);
|
|
|
860
858
|
|
|
861
859
|
|
|
862
860
|
|
|
863
|
-
/* mustSetInCodePlatforms: WebComponents;Blazor */
|
|
861
|
+
/* mustSetInCodePlatforms: WebComponents;Blazor;React */
|
|
864
862
|
/**
|
|
865
863
|
* Gets/Sets the sorting state.
|
|
866
864
|
*
|
|
@@ -176,7 +176,7 @@ import { EventEmitterMixin, LitElement, Constructor, AbstractConstructor } from
|
|
|
176
176
|
|
|
177
177
|
|
|
178
178
|
|
|
179
|
-
/* mustSetInCodePlatforms: WebComponents;Blazor */
|
|
179
|
+
/* mustSetInCodePlatforms: WebComponents;Blazor;React */
|
|
180
180
|
/**
|
|
181
181
|
* Gets/Sets the group by state.
|
|
182
182
|
*
|
|
@@ -5,9 +5,7 @@ import { IgcGridStateOptions } from './igc-grid-state-options';
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
/* blazorElement */
|
|
8
|
-
/* contentParent: GridBaseDirective */
|
|
9
8
|
/* wcElementTag: igc-grid-state-base-directive */
|
|
10
|
-
/* jsonAPIManageCollectionInMarkup */
|
|
11
9
|
/* blazorIndirectRender */
|
|
12
10
|
|
|
13
11
|
export declare class IgcGridStateBaseDirective extends HTMLElement
|
|
@@ -10,6 +10,7 @@ import { IgcGridBaseDirective } from './igc-grid-base-directive';
|
|
|
10
10
|
/* mustUseNGParentAnchor */
|
|
11
11
|
/* wcElementTag: igc-grid-toolbar */
|
|
12
12
|
/* blazorIndirectRender */
|
|
13
|
+
/* singleInstanceIdentifier */
|
|
13
14
|
/* contentParent: GridBaseDirective */
|
|
14
15
|
/* contentParent: RowIsland */
|
|
15
16
|
/* contentParent: HierarchicalGrid */
|
|
@@ -13,6 +13,7 @@ import { EventEmitterMixin, LitElement, Constructor, AbstractConstructor } from
|
|
|
13
13
|
/* mustUseNGParentAnchor */
|
|
14
14
|
/* wcElementTag: igc-paginator */
|
|
15
15
|
/* blazorIndirectRender */
|
|
16
|
+
/* singleInstanceIdentifier */
|
|
16
17
|
/* contentParent: GridBaseDirective */
|
|
17
18
|
/* contentParent: RowIsland */
|
|
18
19
|
/* contentParent: HierarchicalGrid */
|
|
@@ -16,7 +16,7 @@ import { IgcSize } from './igc-size';
|
|
|
16
16
|
/**
|
|
17
17
|
* Attaching target for the component to show
|
|
18
18
|
*
|
|
19
|
-
* @deprecated
|
|
19
|
+
* @deprecated Set the target point/element in the overlay settings instead
|
|
20
20
|
*/
|
|
21
21
|
public target?: HTMLElement | Point;
|
|
22
22
|
|
|
@@ -81,6 +81,7 @@ import { EventEmitterMixin, LitElement, Constructor, AbstractConstructor } from
|
|
|
81
81
|
/* jsonAPIManageCollectionInMarkup */
|
|
82
82
|
/* jsonAPIManageItemInMarkup */
|
|
83
83
|
/* mustUseNGParentAnchor */
|
|
84
|
+
/* additionalIdentifier: ChildDataKey */
|
|
84
85
|
/* contentParent: RowIsland */
|
|
85
86
|
/* contentParent: HierarchicalGrid */
|
|
86
87
|
/**
|
|
@@ -113,16 +114,19 @@ import { EventEmitterMixin, LitElement, Constructor, AbstractConstructor } from
|
|
|
113
114
|
|
|
114
115
|
|
|
115
116
|
|
|
117
|
+
/* csSuppress */
|
|
116
118
|
/**
|
|
117
|
-
* Gets the toolbar template for each child grid created from this row island.
|
|
119
|
+
* Sets/Gets the toolbar template for each child grid created from this row island.
|
|
118
120
|
*/
|
|
119
121
|
public set toolbarTemplate(value: IgcRenderFunction<IgcGridToolbarTemplateContext>);
|
|
120
122
|
public get toolbarTemplate(): IgcRenderFunction<IgcGridToolbarTemplateContext>;
|
|
121
123
|
|
|
122
124
|
|
|
123
125
|
|
|
126
|
+
|
|
127
|
+
/* csSuppress */
|
|
124
128
|
/**
|
|
125
|
-
* Gets the paginator template for each child grid created from this row island.
|
|
129
|
+
* Sets/Gets the paginator template for each child grid created from this row island.
|
|
126
130
|
*/
|
|
127
131
|
public set paginatorTemplate(value: IgcRenderFunction<any>);
|
|
128
132
|
public get paginatorTemplate(): IgcRenderFunction<any>;
|
|
@@ -630,7 +634,6 @@ import { EventEmitterMixin, LitElement, Constructor, AbstractConstructor } from
|
|
|
630
634
|
|
|
631
635
|
|
|
632
636
|
|
|
633
|
-
/* csSuppress */
|
|
634
637
|
/**
|
|
635
638
|
* Gets/Sets the height.
|
|
636
639
|
*
|
|
@@ -644,7 +647,6 @@ import { EventEmitterMixin, LitElement, Constructor, AbstractConstructor } from
|
|
|
644
647
|
|
|
645
648
|
|
|
646
649
|
|
|
647
|
-
/* csSuppress */
|
|
648
650
|
/**
|
|
649
651
|
* Gets/Sets the width of the grid.
|
|
650
652
|
*
|
|
@@ -958,7 +960,7 @@ public set selectedRows(value: any[]);
|
|
|
958
960
|
|
|
959
961
|
|
|
960
962
|
|
|
961
|
-
/* mustSetInCodePlatforms: WebComponents;Blazor */
|
|
963
|
+
/* mustSetInCodePlatforms: WebComponents;Blazor;React */
|
|
962
964
|
/**
|
|
963
965
|
* Gets/Sets the sorting state.
|
|
964
966
|
*
|
|
@@ -6,10 +6,9 @@ import { IgcCellType } from './igc-cell-type';
|
|
|
6
6
|
import { IgcGridBaseDirective } from './igc-grid-base-directive';
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
/* jsonAPIPlainObject */
|
|
10
9
|
|
|
11
10
|
|
|
12
|
-
/*
|
|
11
|
+
/* jsonAPIComplexObject */
|
|
13
12
|
/* marshalByValue */
|
|
14
13
|
|
|
15
14
|
export declare class IgcRowType
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-webcomponents-grids",
|
|
3
|
-
"version": "4.8.0",
|
|
3
|
+
"version": "4.8.1-alpha.0",
|
|
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.8.0",
|
|
22
|
-
"igniteui-webcomponents-layouts": "4.8.0",
|
|
23
|
-
"igniteui-webcomponents-inputs": "4.8.0"
|
|
21
|
+
"igniteui-webcomponents-core": "4.8.1-alpha.0",
|
|
22
|
+
"igniteui-webcomponents-layouts": "4.8.1-alpha.0",
|
|
23
|
+
"igniteui-webcomponents-inputs": "4.8.1-alpha.0"
|
|
24
24
|
},
|
|
25
25
|
"sideEffects": [
|
|
26
26
|
"./grids/combined.js"
|