igniteui-webcomponents-grids 5.0.1 → 5.0.2
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 +1366 -1366
- package/bundles/igniteui-webcomponents-grids.umd.min.js +1 -1
- package/esm2015/lib/CanvasGridCellBase.js +52 -52
- package/esm2015/lib/CanvasTemplateCellPresenter.js +7 -7
- package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +6 -6
- package/esm2015/lib/CanvasTextHeaderCell.js +1 -1
- package/esm2015/lib/CheckboxListView_combined.js +165 -165
- package/esm2015/lib/ColumnChooserView_combined.js +42 -42
- package/esm2015/lib/ColumnFilterCondition_combined.js +659 -659
- package/esm2015/lib/ColumnGroupingView_combined.js +40 -40
- package/esm2015/lib/ColumnPinningView_combined.js +42 -42
- package/esm2015/lib/DataGridAccessibilityLayoutPanel.js +2 -2
- package/esm2015/lib/DataGridCellLayoutPanel.js +48 -48
- package/esm2015/lib/DataGridToolbarView_combined.js +87 -87
- package/esm2015/lib/EditorCell.js +86 -86
- package/esm2015/lib/EditorCellPresenter.js +1 -1
- package/esm2015/lib/FilterCell.js +90 -90
- package/esm2015/lib/FilterCellPresenter.js +1 -1
- package/esm2015/lib/GridColumnFilterOptionsView_combined.js +7 -7
- package/esm2015/lib/ISummaryChooserView_combined.js +6 -6
- package/esm2015/lib/TemplateHeader.js +1 -1
- package/esm2015/lib/igc-checkbox-list-component.js +26 -26
- package/esm2015/lib/igc-column-chooser-component.js +2 -2
- package/esm2015/lib/igc-column-pinning-component.js +2 -2
- package/esm2015/lib/igc-data-grid-toolbar-component.js +2 -2
- package/esm2015/public_api.js +20 -20
- package/esm5/lib/CanvasGridCellBase.js +52 -52
- package/esm5/lib/CanvasTemplateCellPresenter.js +7 -7
- package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +6 -6
- package/esm5/lib/CanvasTextHeaderCell.js +1 -1
- package/esm5/lib/CheckboxListView_combined.js +156 -156
- package/esm5/lib/ColumnChooserView_combined.js +41 -41
- package/esm5/lib/ColumnFilterCondition_combined.js +654 -654
- package/esm5/lib/ColumnGroupingView_combined.js +40 -40
- package/esm5/lib/ColumnPinningView_combined.js +41 -41
- package/esm5/lib/DataGridAccessibilityLayoutPanel.js +2 -2
- package/esm5/lib/DataGridCellLayoutPanel.js +48 -48
- package/esm5/lib/DataGridToolbarView_combined.js +86 -86
- package/esm5/lib/EditorCell.js +85 -85
- package/esm5/lib/EditorCellPresenter.js +1 -1
- package/esm5/lib/FilterCell.js +88 -88
- package/esm5/lib/FilterCellPresenter.js +1 -1
- package/esm5/lib/GridColumnFilterOptionsView_combined.js +7 -7
- package/esm5/lib/ISummaryChooserView_combined.js +6 -6
- package/esm5/lib/TemplateHeader.js +1 -1
- package/esm5/lib/igc-checkbox-list-component.js +26 -26
- package/esm5/lib/igc-column-chooser-component.js +2 -2
- package/esm5/lib/igc-column-pinning-component.js +2 -2
- package/esm5/lib/igc-data-grid-toolbar-component.js +2 -2
- package/esm5/public_api.js +20 -20
- package/fesm2015/igniteui-webcomponents-grids.js +1386 -1386
- package/fesm5/igniteui-webcomponents-grids.js +1366 -1366
- package/grids/combined.js +587 -590
- package/grids/lib/igc-grid-base-directive.d.ts +1 -0
- package/grids/lib/igc-row-island-component.d.ts +1 -0
- package/grids/styles.css +1 -1
- package/grids/themes/dark/bootstrap.css +1 -1
- package/grids/themes/dark/fluent.css +1 -1
- package/grids/themes/dark/indigo.css +1 -1
- package/grids/themes/dark/material.css +1 -1
- package/grids/themes/light/bootstrap.css +1 -1
- package/grids/themes/light/fluent.css +1 -1
- package/grids/themes/light/indigo.css +1 -1
- package/grids/themes/light/material.css +1 -1
- package/lib/CanvasGridCellBase.d.ts +7 -7
- package/lib/CanvasTemplateCellPresenter.d.ts +2 -2
- package/lib/CanvasTemplateHeaderCellPresenter.d.ts +2 -2
- package/lib/CheckboxListView_combined.d.ts +23 -23
- package/lib/ColumnChooserView_combined.d.ts +4 -4
- package/lib/ColumnFilterCondition_combined.d.ts +113 -113
- package/lib/ColumnGroupingView_combined.d.ts +2 -2
- package/lib/ColumnPinningView_combined.d.ts +4 -4
- package/lib/DataGridCellLayoutPanel.d.ts +3 -3
- package/lib/DataGridToolbarView_combined.d.ts +5 -5
- package/lib/EditorCell.d.ts +8 -8
- package/lib/FilterCell.d.ts +12 -12
- package/package.json +4 -4
- package/public_api.d.ts +20 -20
|
@@ -9,6 +9,7 @@ import { DomRenderer } from "igniteui-webcomponents-core";
|
|
|
9
9
|
import { IDataSource } from "igniteui-webcomponents-core";
|
|
10
10
|
import { Brush } from "igniteui-webcomponents-core";
|
|
11
11
|
import { ScrollbarStyle } from "igniteui-webcomponents-core";
|
|
12
|
+
import { INativeCell } from "./INativeCell";
|
|
12
13
|
import { MouseButton } from "igniteui-webcomponents-core";
|
|
13
14
|
import { RowPath } from "./RowPath";
|
|
14
15
|
import { IDragger } from "./IDragger";
|
|
@@ -46,7 +47,6 @@ import { DataSourceSummaryOperand } from "igniteui-webcomponents-core";
|
|
|
46
47
|
import { SortIndicatorStyle } from "./SortIndicatorStyle";
|
|
47
48
|
import { ColumnOptionsIconAlignment } from "./ColumnOptionsIconAlignment";
|
|
48
49
|
import { ColumnOptionsIconBehavior } from "./ColumnOptionsIconBehavior";
|
|
49
|
-
import { INativeCell } from "./INativeCell";
|
|
50
50
|
import { IExecutionContext } from "igniteui-webcomponents-core";
|
|
51
51
|
import { SRProvider } from "igniteui-webcomponents-core";
|
|
52
52
|
import { SummaryScope } from "./SummaryScope";
|
|
@@ -257,6 +257,33 @@ export interface IExternalGrid {
|
|
|
257
257
|
* @hidden
|
|
258
258
|
*/
|
|
259
259
|
export declare let IExternalGrid_$type: Type;
|
|
260
|
+
/**
|
|
261
|
+
* @hidden
|
|
262
|
+
*/
|
|
263
|
+
export interface ICellRenderingEngine {
|
|
264
|
+
refresh(a: VisualModel, b: boolean): void;
|
|
265
|
+
viewportChanged(): void;
|
|
266
|
+
invalidateVisibility(a: () => void): void;
|
|
267
|
+
detach(): void;
|
|
268
|
+
attach(): void;
|
|
269
|
+
readonly initialRefreshFinished: boolean;
|
|
270
|
+
}
|
|
271
|
+
/**
|
|
272
|
+
* @hidden
|
|
273
|
+
*/
|
|
274
|
+
export declare let ICellRenderingEngine_$type: Type;
|
|
275
|
+
/**
|
|
276
|
+
* @hidden
|
|
277
|
+
*/
|
|
278
|
+
export interface ICellPresenter {
|
|
279
|
+
modelUpdated(a: CellModel): void;
|
|
280
|
+
readonly isCanvasBased: boolean;
|
|
281
|
+
readonly nativeCell: INativeCell;
|
|
282
|
+
}
|
|
283
|
+
/**
|
|
284
|
+
* @hidden
|
|
285
|
+
*/
|
|
286
|
+
export declare let ICellPresenter_$type: Type;
|
|
260
287
|
/**
|
|
261
288
|
* @hidden
|
|
262
289
|
*/
|
|
@@ -1245,18 +1272,6 @@ export declare class TextHeaderCellModel extends TextCellModel {
|
|
|
1245
1272
|
g2(a: string): any;
|
|
1246
1273
|
b(a: CellModelExport): CellModelExport;
|
|
1247
1274
|
}
|
|
1248
|
-
/**
|
|
1249
|
-
* @hidden
|
|
1250
|
-
*/
|
|
1251
|
-
export interface ICellPresenter {
|
|
1252
|
-
modelUpdated(a: CellModel): void;
|
|
1253
|
-
readonly isCanvasBased: boolean;
|
|
1254
|
-
readonly nativeCell: INativeCell;
|
|
1255
|
-
}
|
|
1256
|
-
/**
|
|
1257
|
-
* @hidden
|
|
1258
|
-
*/
|
|
1259
|
-
export declare let ICellPresenter_$type: Type;
|
|
1260
1275
|
/**
|
|
1261
1276
|
* @hidden
|
|
1262
1277
|
*/
|
|
@@ -1551,10 +1566,10 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
|
|
|
1551
1566
|
vb(a: CellModel, b: MouseButton): void;
|
|
1552
1567
|
u9(a: CellModel, b: boolean, c: boolean, d: MouseButton): void;
|
|
1553
1568
|
private xa;
|
|
1554
|
-
private
|
|
1569
|
+
private bq;
|
|
1555
1570
|
get columnResizingMode(): ColumnResizingMode;
|
|
1556
1571
|
set columnResizingMode(a: ColumnResizingMode);
|
|
1557
|
-
private
|
|
1572
|
+
private bc;
|
|
1558
1573
|
get columnMovingMode(): ColumnMovingMode;
|
|
1559
1574
|
set columnMovingMode(a: ColumnMovingMode);
|
|
1560
1575
|
e0: HoverManager;
|
|
@@ -1574,8 +1589,8 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
|
|
|
1574
1589
|
get editRowBorderWidth(): Thickness;
|
|
1575
1590
|
set editRowBorderWidth(a: Thickness);
|
|
1576
1591
|
aar: Point;
|
|
1577
|
-
|
|
1578
|
-
|
|
1592
|
+
aq: CellPath;
|
|
1593
|
+
an: CellPath;
|
|
1579
1594
|
private ht;
|
|
1580
1595
|
vg(a: CellModel, b: number, c: number): void;
|
|
1581
1596
|
vh(a: CellModel, b: number, c: number): void;
|
|
@@ -1601,7 +1616,7 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
|
|
|
1601
1616
|
private lx;
|
|
1602
1617
|
private ly;
|
|
1603
1618
|
private lz;
|
|
1604
|
-
private
|
|
1619
|
+
private ar;
|
|
1605
1620
|
private nc;
|
|
1606
1621
|
private nb;
|
|
1607
1622
|
private iq;
|
|
@@ -1615,9 +1630,9 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
|
|
|
1615
1630
|
private nd;
|
|
1616
1631
|
private fm;
|
|
1617
1632
|
private v8;
|
|
1618
|
-
private
|
|
1619
|
-
private
|
|
1620
|
-
private
|
|
1633
|
+
private am;
|
|
1634
|
+
private ai;
|
|
1635
|
+
private aj;
|
|
1621
1636
|
private ls;
|
|
1622
1637
|
private l5;
|
|
1623
1638
|
private l2;
|
|
@@ -1630,9 +1645,9 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
|
|
|
1630
1645
|
private lk;
|
|
1631
1646
|
private x2;
|
|
1632
1647
|
private aat;
|
|
1633
|
-
private
|
|
1648
|
+
private ah;
|
|
1634
1649
|
getHitCell(a: number, b: number): CellModel;
|
|
1635
|
-
private
|
|
1650
|
+
private at;
|
|
1636
1651
|
private i0;
|
|
1637
1652
|
private uc;
|
|
1638
1653
|
private yl;
|
|
@@ -1645,7 +1660,7 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
|
|
|
1645
1660
|
private uh;
|
|
1646
1661
|
private x7;
|
|
1647
1662
|
private yf;
|
|
1648
|
-
private
|
|
1663
|
+
private b4;
|
|
1649
1664
|
private it;
|
|
1650
1665
|
private x0;
|
|
1651
1666
|
private x1;
|
|
@@ -1655,9 +1670,9 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
|
|
|
1655
1670
|
private is;
|
|
1656
1671
|
private w6;
|
|
1657
1672
|
private w7;
|
|
1658
|
-
private
|
|
1659
|
-
get
|
|
1660
|
-
set
|
|
1673
|
+
private c3;
|
|
1674
|
+
get c4(): GridAnimationManager;
|
|
1675
|
+
set c4(a: GridAnimationManager);
|
|
1661
1676
|
private _delayedExecutionManager;
|
|
1662
1677
|
get delayedExecutionManager(): IDelayedExecutionManager;
|
|
1663
1678
|
set delayedExecutionManager(a: IDelayedExecutionManager);
|
|
@@ -1666,28 +1681,28 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
|
|
|
1666
1681
|
private e5;
|
|
1667
1682
|
get e6(): IDataAdapter;
|
|
1668
1683
|
set e6(a: IDataAdapter);
|
|
1669
|
-
private
|
|
1670
|
-
get
|
|
1671
|
-
set
|
|
1672
|
-
private
|
|
1673
|
-
get
|
|
1674
|
-
set
|
|
1684
|
+
private aw;
|
|
1685
|
+
get ax(): ColumnController;
|
|
1686
|
+
set ax(a: ColumnController);
|
|
1687
|
+
private dz;
|
|
1688
|
+
get d0(): GridLayerController;
|
|
1689
|
+
set d0(a: GridLayerController);
|
|
1675
1690
|
private f9;
|
|
1676
1691
|
get ga(): SpatialEngine;
|
|
1677
1692
|
set ga(a: SpatialEngine);
|
|
1678
|
-
private
|
|
1679
|
-
get
|
|
1680
|
-
set
|
|
1693
|
+
private du;
|
|
1694
|
+
get dv(): GridEffectManager;
|
|
1695
|
+
set dv(a: GridEffectManager);
|
|
1681
1696
|
private f3;
|
|
1682
1697
|
get f4(): SelectionManager;
|
|
1683
1698
|
set f4(a: SelectionManager);
|
|
1684
|
-
private
|
|
1685
|
-
get
|
|
1686
|
-
set
|
|
1699
|
+
private ab;
|
|
1700
|
+
get ac(): ActivationManager;
|
|
1701
|
+
set ac(a: ActivationManager);
|
|
1687
1702
|
private f7;
|
|
1688
1703
|
get f8(): SortManager;
|
|
1689
1704
|
set f8(a: SortManager);
|
|
1690
|
-
|
|
1705
|
+
ci: EditingManager;
|
|
1691
1706
|
private g7;
|
|
1692
1707
|
get tickProvider(): ITickProvider;
|
|
1693
1708
|
set tickProvider(a: ITickProvider);
|
|
@@ -1712,18 +1727,18 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
|
|
|
1712
1727
|
private ey;
|
|
1713
1728
|
get headerSeparator(): HeaderSeparator;
|
|
1714
1729
|
set headerSeparator(a: HeaderSeparator);
|
|
1715
|
-
private
|
|
1730
|
+
private bs;
|
|
1716
1731
|
get columnResizingSeparator(): ColumnResizingSeparator;
|
|
1717
1732
|
set columnResizingSeparator(a: ColumnResizingSeparator);
|
|
1718
|
-
private
|
|
1733
|
+
private be;
|
|
1719
1734
|
get columnMovingSeparator(): ColumnMovingSeparator;
|
|
1720
1735
|
set columnMovingSeparator(a: ColumnMovingSeparator);
|
|
1721
1736
|
private fk;
|
|
1722
1737
|
get pinnedAreaSeparator(): PinnedAreaSeparator;
|
|
1723
1738
|
set pinnedAreaSeparator(a: PinnedAreaSeparator);
|
|
1724
|
-
private
|
|
1725
|
-
private
|
|
1726
|
-
private
|
|
1739
|
+
private cn;
|
|
1740
|
+
private co;
|
|
1741
|
+
private cx;
|
|
1727
1742
|
private b;
|
|
1728
1743
|
get autoGenerateDesiredProperties(): string[];
|
|
1729
1744
|
set autoGenerateDesiredProperties(a: string[]);
|
|
@@ -1751,7 +1766,7 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
|
|
|
1751
1766
|
private m3;
|
|
1752
1767
|
get rowHeight(): number;
|
|
1753
1768
|
set rowHeight(a: number);
|
|
1754
|
-
private
|
|
1769
|
+
private b9;
|
|
1755
1770
|
get defaultColumnWidth(): ColumnWidth;
|
|
1756
1771
|
set defaultColumnWidth(a: ColumnWidth);
|
|
1757
1772
|
private lv;
|
|
@@ -1781,10 +1796,10 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
|
|
|
1781
1796
|
private eu;
|
|
1782
1797
|
get headerClickAction(): HeaderClickAction;
|
|
1783
1798
|
set headerClickAction(a: HeaderClickAction);
|
|
1784
|
-
private
|
|
1799
|
+
private cl;
|
|
1785
1800
|
get editMode(): EditModeType;
|
|
1786
1801
|
set editMode(a: EditModeType);
|
|
1787
|
-
private
|
|
1802
|
+
private cj;
|
|
1788
1803
|
get editModeClickAction(): EditModeClickAction;
|
|
1789
1804
|
set editModeClickAction(a: EditModeClickAction);
|
|
1790
1805
|
private hj;
|
|
@@ -1800,17 +1815,17 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
|
|
|
1800
1815
|
get isPlaceholderRenderingEnabled(): boolean;
|
|
1801
1816
|
set isPlaceholderRenderingEnabled(a: boolean);
|
|
1802
1817
|
private ji;
|
|
1803
|
-
private
|
|
1804
|
-
private
|
|
1818
|
+
private by;
|
|
1819
|
+
private bu;
|
|
1805
1820
|
get columnAddingAnimationMode(): ColumnShowingAnimationMode;
|
|
1806
1821
|
set columnAddingAnimationMode(a: ColumnShowingAnimationMode);
|
|
1807
1822
|
get jq(): boolean;
|
|
1808
|
-
private
|
|
1823
|
+
private bl;
|
|
1809
1824
|
get columnPropertyUpdatingAnimationMode(): ColumnPropertyUpdatingAnimationMode;
|
|
1810
1825
|
set columnPropertyUpdatingAnimationMode(a: ColumnPropertyUpdatingAnimationMode);
|
|
1811
1826
|
protected get jj(): boolean;
|
|
1812
1827
|
get jf(): boolean;
|
|
1813
|
-
private
|
|
1828
|
+
private af;
|
|
1814
1829
|
get cellDataLoadedAnimationMode(): CellDataLoadedAnimationMode;
|
|
1815
1830
|
set cellDataLoadedAnimationMode(a: CellDataLoadedAnimationMode);
|
|
1816
1831
|
get kb(): boolean;
|
|
@@ -1822,47 +1837,47 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
|
|
|
1822
1837
|
get rowHoverAnimationMode(): RowHoverAnimationMode;
|
|
1823
1838
|
set rowHoverAnimationMode(a: RowHoverAnimationMode);
|
|
1824
1839
|
get jg(): boolean;
|
|
1825
|
-
private
|
|
1840
|
+
private au;
|
|
1826
1841
|
get cellSelectionAnimationMode(): CellSelectionAnimationMode;
|
|
1827
1842
|
set cellSelectionAnimationMode(a: CellSelectionAnimationMode);
|
|
1828
|
-
private
|
|
1843
|
+
private di;
|
|
1829
1844
|
get columnAnimationSettings(): GridColumnAnimationSettings;
|
|
1830
1845
|
set columnAnimationSettings(a: GridColumnAnimationSettings);
|
|
1831
|
-
private
|
|
1846
|
+
private c5;
|
|
1832
1847
|
get animationSettings(): GridAnimationSettings;
|
|
1833
1848
|
set animationSettings(a: GridAnimationSettings);
|
|
1834
1849
|
jr(a: DataGridColumn): boolean;
|
|
1835
|
-
private
|
|
1836
|
-
private
|
|
1850
|
+
private bp;
|
|
1851
|
+
private bn;
|
|
1837
1852
|
get columnResizingAnimationMode(): ColumnResizingAnimationMode;
|
|
1838
1853
|
set columnResizingAnimationMode(a: ColumnResizingAnimationMode);
|
|
1839
1854
|
private js;
|
|
1840
|
-
private
|
|
1841
|
-
private
|
|
1855
|
+
private bz;
|
|
1856
|
+
private bv;
|
|
1842
1857
|
get columnShowingAnimationMode(): ColumnShowingAnimationMode;
|
|
1843
1858
|
set columnShowingAnimationMode(a: ColumnShowingAnimationMode);
|
|
1844
1859
|
private jm;
|
|
1845
|
-
private
|
|
1846
|
-
private
|
|
1860
|
+
private bb;
|
|
1861
|
+
private a9;
|
|
1847
1862
|
get columnMovingAnimationMode(): ColumnMovingAnimationMode;
|
|
1848
1863
|
set columnMovingAnimationMode(a: ColumnMovingAnimationMode);
|
|
1849
1864
|
private jl;
|
|
1850
|
-
private
|
|
1851
|
-
private
|
|
1865
|
+
private a8;
|
|
1866
|
+
private a6;
|
|
1852
1867
|
get columnHidingAnimationMode(): ColumnHidingAnimationMode;
|
|
1853
1868
|
set columnHidingAnimationMode(a: ColumnHidingAnimationMode);
|
|
1854
1869
|
private jk;
|
|
1855
|
-
private
|
|
1856
|
-
private
|
|
1870
|
+
private a0;
|
|
1871
|
+
private ay;
|
|
1857
1872
|
get columnExchangingAnimationMode(): ColumnExchangingAnimationMode;
|
|
1858
1873
|
set columnExchangingAnimationMode(a: ColumnExchangingAnimationMode);
|
|
1859
1874
|
private aay;
|
|
1860
1875
|
get inset(): Thickness;
|
|
1861
1876
|
set inset(a: Thickness);
|
|
1862
|
-
private
|
|
1877
|
+
private cf;
|
|
1863
1878
|
get selectionMode(): DataGridSelectionMode;
|
|
1864
1879
|
set selectionMode(a: DataGridSelectionMode);
|
|
1865
|
-
private
|
|
1880
|
+
private c0;
|
|
1866
1881
|
get activationMode(): GridActivationMode;
|
|
1867
1882
|
set activationMode(a: GridActivationMode);
|
|
1868
1883
|
private ej;
|
|
@@ -1874,20 +1889,20 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
|
|
|
1874
1889
|
private hn;
|
|
1875
1890
|
get jd(): boolean;
|
|
1876
1891
|
set jd(a: boolean);
|
|
1877
|
-
private
|
|
1892
|
+
private eb;
|
|
1878
1893
|
get selectedItems(): GridSelectedItemsCollection;
|
|
1879
|
-
private
|
|
1894
|
+
private eg;
|
|
1880
1895
|
get selectedKeys(): GridSelectedKeysCollection;
|
|
1881
|
-
private
|
|
1896
|
+
private d7;
|
|
1882
1897
|
get selectedCells(): GridSelectedCellsCollection;
|
|
1883
|
-
private
|
|
1898
|
+
private d4;
|
|
1884
1899
|
get selectedCellRanges(): GridSelectedCellRangesCollection;
|
|
1885
1900
|
private hm;
|
|
1886
1901
|
get jc(): boolean;
|
|
1887
1902
|
set jc(a: boolean);
|
|
1888
|
-
private
|
|
1903
|
+
private ea;
|
|
1889
1904
|
get pinnedItems(): GridSelectedItemsCollection;
|
|
1890
|
-
private
|
|
1905
|
+
private ef;
|
|
1891
1906
|
get pinnedKeys(): GridSelectedKeysCollection;
|
|
1892
1907
|
private yb;
|
|
1893
1908
|
private hq;
|
|
@@ -1935,8 +1950,8 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
|
|
|
1935
1950
|
private y7;
|
|
1936
1951
|
get lastStickyRowBackground(): Brush;
|
|
1937
1952
|
set lastStickyRowBackground(a: Brush);
|
|
1938
|
-
private
|
|
1939
|
-
private
|
|
1953
|
+
private df;
|
|
1954
|
+
private de;
|
|
1940
1955
|
get activeCell(): GridCellPosition;
|
|
1941
1956
|
set activeCell(a: GridCellPosition);
|
|
1942
1957
|
private yu;
|
|
@@ -2048,13 +2063,13 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
|
|
|
2048
2063
|
private ik;
|
|
2049
2064
|
get shiftSectionContent(): boolean;
|
|
2050
2065
|
set shiftSectionContent(a: boolean);
|
|
2051
|
-
private
|
|
2066
|
+
private bg;
|
|
2052
2067
|
get columnOptionsIconAlignment(): ColumnOptionsIconAlignment;
|
|
2053
2068
|
set columnOptionsIconAlignment(a: ColumnOptionsIconAlignment);
|
|
2054
2069
|
private yy;
|
|
2055
2070
|
get columnOptionsIconColor(): Brush;
|
|
2056
2071
|
set columnOptionsIconColor(a: Brush);
|
|
2057
|
-
private
|
|
2072
|
+
private bi;
|
|
2058
2073
|
get columnOptionsIconBehavior(): ColumnOptionsIconBehavior;
|
|
2059
2074
|
set columnOptionsIconBehavior(a: ColumnOptionsIconBehavior);
|
|
2060
2075
|
private yt;
|
|
@@ -2098,20 +2113,20 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
|
|
|
2098
2113
|
get model(): VisualModel;
|
|
2099
2114
|
set model(a: VisualModel);
|
|
2100
2115
|
get actualVisibleRegion(): Rect;
|
|
2101
|
-
private
|
|
2102
|
-
private
|
|
2116
|
+
private b1;
|
|
2117
|
+
private a1;
|
|
2103
2118
|
private s;
|
|
2104
|
-
private
|
|
2119
|
+
private b6;
|
|
2105
2120
|
private z;
|
|
2106
2121
|
private aa;
|
|
2107
2122
|
private io;
|
|
2108
2123
|
private im;
|
|
2109
2124
|
private ip;
|
|
2110
2125
|
private il;
|
|
2111
|
-
private
|
|
2112
|
-
private
|
|
2126
|
+
private b0;
|
|
2127
|
+
private a2;
|
|
2113
2128
|
private t;
|
|
2114
|
-
private
|
|
2129
|
+
private b5;
|
|
2115
2130
|
get initialSortDescriptions(): ColumnSortDescriptionCollection;
|
|
2116
2131
|
get initialGroupDescriptions(): ColumnGroupDescriptionCollection;
|
|
2117
2132
|
get initialSummaryDescriptions(): ColumnSummaryDescriptionCollection;
|
|
@@ -2219,11 +2234,11 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
|
|
|
2219
2234
|
setViewport(a: number, b: number, c: number, d: number): void;
|
|
2220
2235
|
get actualColumns(): GridColumnCollection;
|
|
2221
2236
|
actualColumnsChanged: (sender: any, args: GridColumnsChangedEventArgs) => void;
|
|
2222
|
-
private
|
|
2237
|
+
private dk;
|
|
2223
2238
|
get columns(): GridColumnCollection;
|
|
2224
2239
|
wi(a: CellModel, b: any, c: any): void;
|
|
2225
2240
|
wh(a: CellModel, b: any, c: any, d: string): void;
|
|
2226
|
-
|
|
2241
|
+
ce(a: CellPath): DataGridColumn;
|
|
2227
2242
|
hideThenRemoveColumn(a: DataGridColumn): void;
|
|
2228
2243
|
exchangeColumn(a: DataGridColumn, b: DataGridColumn): void;
|
|
2229
2244
|
private ts;
|
|
@@ -2243,14 +2258,14 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
|
|
|
2243
2258
|
canMoveColumnLeft(a: number): boolean;
|
|
2244
2259
|
canMoveColumnRight(a: number): boolean;
|
|
2245
2260
|
private kg;
|
|
2246
|
-
private
|
|
2247
|
-
private
|
|
2261
|
+
private cc;
|
|
2262
|
+
private cb;
|
|
2248
2263
|
private vu;
|
|
2249
2264
|
private t2;
|
|
2250
2265
|
private ye;
|
|
2251
|
-
private
|
|
2266
|
+
private ch;
|
|
2252
2267
|
qp(a: CellPath, b: DataGrid, c: any, d: number): string;
|
|
2253
|
-
|
|
2268
|
+
ak(a: CellPath, b: string): CellModel;
|
|
2254
2269
|
exportVisualModel(): any;
|
|
2255
2270
|
exportSerializedVisualModel(): string;
|
|
2256
2271
|
ft(a: number): RowPath;
|
|
@@ -2316,8 +2331,8 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
|
|
|
2316
2331
|
kl(): boolean;
|
|
2317
2332
|
km(): boolean;
|
|
2318
2333
|
kt(a: boolean, b: boolean): boolean;
|
|
2319
|
-
|
|
2320
|
-
|
|
2334
|
+
ao: CellPath;
|
|
2335
|
+
ap: CellPath;
|
|
2321
2336
|
ld(): boolean;
|
|
2322
2337
|
k8(a: CellModel): boolean;
|
|
2323
2338
|
i9(a: boolean, b?: boolean): boolean;
|
|
@@ -2343,7 +2358,7 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
|
|
|
2343
2358
|
private wx;
|
|
2344
2359
|
private wv;
|
|
2345
2360
|
private wy;
|
|
2346
|
-
private
|
|
2361
|
+
private as;
|
|
2347
2362
|
tu(a: number, b: number, c: number, d: number): void;
|
|
2348
2363
|
tt(a: CellRange): void;
|
|
2349
2364
|
xi(a: CellRange): void;
|
|
@@ -2417,10 +2432,10 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
|
|
|
2417
2432
|
setEditError(a: number, b: string): void;
|
|
2418
2433
|
startEditMode(): void;
|
|
2419
2434
|
endEditMode(a: boolean): void;
|
|
2420
|
-
private
|
|
2435
|
+
private cr;
|
|
2421
2436
|
get enterBehavior(): EnterKeyBehaviors;
|
|
2422
2437
|
set enterBehavior(a: EnterKeyBehaviors);
|
|
2423
|
-
private
|
|
2438
|
+
private cp;
|
|
2424
2439
|
get enterBehaviorAfterEdit(): EnterKeyBehaviorAfterEdit;
|
|
2425
2440
|
set enterBehaviorAfterEdit(a: EnterKeyBehaviorAfterEdit);
|
|
2426
2441
|
selectAllRows(): void;
|
|
@@ -2443,7 +2458,7 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
|
|
|
2443
2458
|
private ff;
|
|
2444
2459
|
get mergedCellEvaluationCriteria(): MergedCellEvaluationCriteria;
|
|
2445
2460
|
set mergedCellEvaluationCriteria(a: MergedCellEvaluationCriteria);
|
|
2446
|
-
private
|
|
2461
|
+
private ad;
|
|
2447
2462
|
get mergedCellVerticalAlignment(): CellContentVerticalAlignment;
|
|
2448
2463
|
set mergedCellVerticalAlignment(a: CellContentVerticalAlignment);
|
|
2449
2464
|
saveLayout(): string;
|
|
@@ -2453,13 +2468,13 @@ export declare class DataGrid extends Base implements INotifyPropertyChanged {
|
|
|
2453
2468
|
private q;
|
|
2454
2469
|
private r;
|
|
2455
2470
|
nt(a: CellPath): number;
|
|
2456
|
-
private
|
|
2471
|
+
private cy;
|
|
2457
2472
|
get filterUIType(): FilterUIType;
|
|
2458
2473
|
set filterUIType(a: FilterUIType);
|
|
2459
|
-
private
|
|
2474
|
+
private cv;
|
|
2460
2475
|
get filterLogicalOperator(): FilterLogicalOperator;
|
|
2461
2476
|
set filterLogicalOperator(a: FilterLogicalOperator);
|
|
2462
|
-
private
|
|
2477
|
+
private ct;
|
|
2463
2478
|
get filterComparisonType(): FilterComparisonType;
|
|
2464
2479
|
set filterComparisonType(a: FilterComparisonType);
|
|
2465
2480
|
ju(): boolean;
|
|
@@ -4474,21 +4489,6 @@ export declare class PushRowResult extends Base {
|
|
|
4474
4489
|
b: boolean;
|
|
4475
4490
|
a: PinnedRowInfo;
|
|
4476
4491
|
}
|
|
4477
|
-
/**
|
|
4478
|
-
* @hidden
|
|
4479
|
-
*/
|
|
4480
|
-
export interface ICellRenderingEngine {
|
|
4481
|
-
refresh(a: VisualModel, b: boolean): void;
|
|
4482
|
-
viewportChanged(): void;
|
|
4483
|
-
invalidateVisibility(a: () => void): void;
|
|
4484
|
-
detach(): void;
|
|
4485
|
-
attach(): void;
|
|
4486
|
-
readonly initialRefreshFinished: boolean;
|
|
4487
|
-
}
|
|
4488
|
-
/**
|
|
4489
|
-
* @hidden
|
|
4490
|
-
*/
|
|
4491
|
-
export declare let ICellRenderingEngine_$type: Type;
|
|
4492
4492
|
/**
|
|
4493
4493
|
* @hidden
|
|
4494
4494
|
*/
|
|
@@ -69,7 +69,7 @@ export declare class ColumnGroupingView extends Base {
|
|
|
69
69
|
*/
|
|
70
70
|
export declare class ColumnGrouping extends Base implements IColumnGrouping, INotifyPropertyChanged {
|
|
71
71
|
static $t: Type;
|
|
72
|
-
private
|
|
72
|
+
private b;
|
|
73
73
|
propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
|
|
74
74
|
private static readonly x;
|
|
75
75
|
private static readonly ac;
|
|
@@ -89,7 +89,7 @@ export declare class ColumnGrouping extends Base implements IColumnGrouping, INo
|
|
|
89
89
|
private l;
|
|
90
90
|
private get m();
|
|
91
91
|
o: boolean;
|
|
92
|
-
private
|
|
92
|
+
private c;
|
|
93
93
|
get targetGrid(): DataGrid;
|
|
94
94
|
set targetGrid(a: DataGrid);
|
|
95
95
|
private f;
|
|
@@ -30,7 +30,7 @@ export declare class ColumnPinningView extends Base {
|
|
|
30
30
|
*/
|
|
31
31
|
export declare class ColumnPinning extends Base implements INotifyPropertyChanged {
|
|
32
32
|
static $t: Type;
|
|
33
|
-
private
|
|
33
|
+
private a;
|
|
34
34
|
private d;
|
|
35
35
|
propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
|
|
36
36
|
private m;
|
|
@@ -41,9 +41,9 @@ export declare class ColumnPinning extends Base implements INotifyPropertyChange
|
|
|
41
41
|
provideContainer(a: DomRenderer, b: CheckboxList): void;
|
|
42
42
|
private k;
|
|
43
43
|
private get l();
|
|
44
|
-
private
|
|
45
|
-
get
|
|
46
|
-
set
|
|
44
|
+
private b;
|
|
45
|
+
get c(): DataGrid;
|
|
46
|
+
set c(a: DataGrid);
|
|
47
47
|
private o;
|
|
48
48
|
get v(): string;
|
|
49
49
|
set v(a: string);
|
|
@@ -9,16 +9,16 @@ import { CellModel } from "./CellModel";
|
|
|
9
9
|
*/
|
|
10
10
|
export declare class DataGridCellLayoutPanel extends Base implements ICellRenderingEngine {
|
|
11
11
|
static $t: Type;
|
|
12
|
-
private
|
|
12
|
+
private f;
|
|
13
13
|
private l;
|
|
14
14
|
private r;
|
|
15
15
|
private _element;
|
|
16
16
|
get element(): DomWrapper;
|
|
17
17
|
set element(a: DomWrapper);
|
|
18
|
-
private
|
|
18
|
+
private e;
|
|
19
19
|
private j;
|
|
20
20
|
protected get s(): DomRenderer;
|
|
21
|
-
protected get
|
|
21
|
+
protected get g(): VisualModel;
|
|
22
22
|
private _rootElement;
|
|
23
23
|
get rootElement(): DomWrapper;
|
|
24
24
|
set rootElement(a: DomWrapper);
|
|
@@ -57,9 +57,9 @@ export declare class DataGridToolbarView extends Base {
|
|
|
57
57
|
*/
|
|
58
58
|
export declare class DataGridToolbar extends Base implements INotifyPropertyChanged, IDataGridComponent {
|
|
59
59
|
static $t: Type;
|
|
60
|
-
private e;
|
|
61
60
|
private c;
|
|
62
|
-
private
|
|
61
|
+
private a;
|
|
62
|
+
private b;
|
|
63
63
|
s: number;
|
|
64
64
|
t: number;
|
|
65
65
|
g: XButton;
|
|
@@ -71,9 +71,9 @@ export declare class DataGridToolbar extends Base implements INotifyPropertyChan
|
|
|
71
71
|
notifySizeChanged(): void;
|
|
72
72
|
destroy(): void;
|
|
73
73
|
provideContainer(a: DomRenderer, b: ColumnChooser, c: ColumnPinning): void;
|
|
74
|
-
private
|
|
75
|
-
get
|
|
76
|
-
set
|
|
74
|
+
private d;
|
|
75
|
+
get e(): DataGrid;
|
|
76
|
+
set e(a: DataGrid);
|
|
77
77
|
private y;
|
|
78
78
|
get ar(): string;
|
|
79
79
|
set ar(a: string);
|
package/lib/EditorCell.d.ts
CHANGED
|
@@ -9,11 +9,11 @@ import { DomRenderer, NormalizedEvent } from "igniteui-webcomponents-core";
|
|
|
9
9
|
*/
|
|
10
10
|
export declare class EditorCell extends GridCellBase {
|
|
11
11
|
static $t: Type;
|
|
12
|
-
private
|
|
12
|
+
private cp;
|
|
13
13
|
private cw;
|
|
14
14
|
private cv;
|
|
15
|
-
private
|
|
16
|
-
private
|
|
15
|
+
private cm;
|
|
16
|
+
private cl;
|
|
17
17
|
private dc;
|
|
18
18
|
private dd;
|
|
19
19
|
private de;
|
|
@@ -30,9 +30,9 @@ export declare class EditorCell extends GridCellBase {
|
|
|
30
30
|
private cy;
|
|
31
31
|
get cz(): FontInfo;
|
|
32
32
|
set cz(a: FontInfo);
|
|
33
|
-
private
|
|
34
|
-
get
|
|
35
|
-
set
|
|
33
|
+
private cn;
|
|
34
|
+
get co(): EditorType;
|
|
35
|
+
set co(a: EditorType);
|
|
36
36
|
private df;
|
|
37
37
|
get dh(): any;
|
|
38
38
|
set dh(a: any);
|
|
@@ -55,11 +55,11 @@ export declare class EditorCell extends GridCellBase {
|
|
|
55
55
|
c7: boolean;
|
|
56
56
|
c5: boolean;
|
|
57
57
|
constructor(a: DomRenderer);
|
|
58
|
+
private cu;
|
|
59
|
+
private ct;
|
|
58
60
|
private cs;
|
|
59
61
|
private cr;
|
|
60
62
|
private cq;
|
|
61
|
-
private cp;
|
|
62
|
-
private co;
|
|
63
63
|
private ea;
|
|
64
64
|
private dy;
|
|
65
65
|
private dz;
|
package/lib/FilterCell.d.ts
CHANGED
|
@@ -19,9 +19,9 @@ export declare class FilterCell extends GridCellBase {
|
|
|
19
19
|
private c5;
|
|
20
20
|
private cv;
|
|
21
21
|
private cu;
|
|
22
|
-
private
|
|
22
|
+
private ck;
|
|
23
23
|
constructor(a: DomRenderer);
|
|
24
|
-
private
|
|
24
|
+
private ct;
|
|
25
25
|
private d1;
|
|
26
26
|
private dm;
|
|
27
27
|
private du;
|
|
@@ -31,7 +31,7 @@ export declare class FilterCell extends GridCellBase {
|
|
|
31
31
|
private d2;
|
|
32
32
|
private dp;
|
|
33
33
|
private dy;
|
|
34
|
-
private
|
|
34
|
+
private co;
|
|
35
35
|
private d4;
|
|
36
36
|
private di;
|
|
37
37
|
private dj;
|
|
@@ -46,25 +46,25 @@ export declare class FilterCell extends GridCellBase {
|
|
|
46
46
|
private dn;
|
|
47
47
|
private d3;
|
|
48
48
|
d5(a: number, b: number, c: number, d: number): void;
|
|
49
|
-
private
|
|
49
|
+
private cp;
|
|
50
50
|
dl(): void;
|
|
51
51
|
dk(): void;
|
|
52
52
|
private static readonly c9;
|
|
53
|
-
private
|
|
53
|
+
private cl;
|
|
54
54
|
private cw;
|
|
55
|
-
private
|
|
55
|
+
private cs;
|
|
56
56
|
private cz;
|
|
57
57
|
get cj(): DataSourceSchemaPropertyType;
|
|
58
58
|
set cj(a: DataSourceSchemaPropertyType);
|
|
59
|
-
private
|
|
60
|
-
get
|
|
61
|
-
set
|
|
59
|
+
private cm;
|
|
60
|
+
get cn(): EditorType;
|
|
61
|
+
set cn(a: EditorType);
|
|
62
62
|
private c0;
|
|
63
63
|
get c1(): boolean;
|
|
64
64
|
set c1(a: boolean);
|
|
65
|
-
private
|
|
66
|
-
get
|
|
67
|
-
set
|
|
65
|
+
private cq;
|
|
66
|
+
get cr(): GridFilterOperandsCollection;
|
|
67
|
+
set cr(a: GridFilterOperandsCollection);
|
|
68
68
|
private cx;
|
|
69
69
|
get cy(): FontInfo;
|
|
70
70
|
set cy(a: FontInfo);
|