igniteui-webcomponents-grids 4.2.2 → 4.2.4-alpha

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.
Files changed (72) hide show
  1. package/bundles/igniteui-webcomponents-grids.umd.js +1132 -799
  2. package/bundles/igniteui-webcomponents-grids.umd.min.js +1 -1
  3. package/esm2015/lib/BaseEditorView.js +30 -14
  4. package/esm2015/lib/CheckboxListView_combined.js +1 -0
  5. package/esm2015/lib/ColumnFilterCondition_combined.js +32 -0
  6. package/esm2015/lib/ComboEditorView.js +111 -105
  7. package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +400 -343
  8. package/esm2015/lib/DateEditorView.js +94 -87
  9. package/esm2015/lib/EditorCell.js +10 -10
  10. package/esm2015/lib/FilterCell.js +76 -60
  11. package/esm2015/lib/FilterCellPresenter.js +6 -3
  12. package/esm2015/lib/GridColumnOptionsView_combined.js +47 -22
  13. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +49 -23
  14. package/esm2015/lib/ISummaryChooserView_combined.js +1 -0
  15. package/esm2015/lib/NumericEditorView.js +3 -3
  16. package/esm2015/lib/TextEditorView.js +82 -75
  17. package/esm2015/lib/igc-data-grid-comparison-operator-selector-component.js +104 -59
  18. package/esm2015/lib/igc-grid-column-options-component.js +21 -1
  19. package/esm2015/lib/igc-grid-column-summary-options-component.js +16 -2
  20. package/esm5/lib/BaseEditorView.js +34 -14
  21. package/esm5/lib/CheckboxListView_combined.js +1 -0
  22. package/esm5/lib/ColumnFilterCondition_combined.js +32 -0
  23. package/esm5/lib/ComboEditorView.js +108 -102
  24. package/esm5/lib/ComparisonOperatorSelectorView_combined.js +407 -342
  25. package/esm5/lib/DateEditorView.js +93 -86
  26. package/esm5/lib/EditorCell.js +10 -10
  27. package/esm5/lib/FilterCell.js +80 -60
  28. package/esm5/lib/FilterCellPresenter.js +6 -3
  29. package/esm5/lib/GridColumnOptionsView_combined.js +55 -22
  30. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +57 -23
  31. package/esm5/lib/ISummaryChooserView_combined.js +1 -0
  32. package/esm5/lib/NumericEditorView.js +3 -3
  33. package/esm5/lib/TextEditorView.js +82 -75
  34. package/esm5/lib/igc-data-grid-comparison-operator-selector-component.js +117 -59
  35. package/esm5/lib/igc-grid-column-options-component.js +29 -1
  36. package/esm5/lib/igc-grid-column-summary-options-component.js +24 -2
  37. package/fesm2015/igniteui-webcomponents-grids.js +1076 -804
  38. package/fesm5/igniteui-webcomponents-grids.js +1132 -799
  39. package/grids/3rdpartylicenses.txt +445 -0
  40. package/grids/combined.js +44 -160
  41. package/grids/index.d.ts +2 -0
  42. package/grids/lib/igc-grid-base-directive.d.ts +14 -0
  43. package/grids/lib/igc-grid-edit-done-event-args.d.ts +5 -1
  44. package/grids/lib/igc-grid-selection-range.d.ts +1 -0
  45. package/grids/lib/igc-pivot-date-dimension.d.ts +1 -1
  46. package/grids/lib/igc-pivot-grid-column.d.ts +32 -0
  47. package/grids/lib/igc-pivot-grid-record.d.ts +28 -0
  48. package/grids/lib/igc-row-data-event-args.d.ts +4 -0
  49. package/grids/styles.css +1 -1
  50. package/grids/themes/dark/bootstrap.css +1 -1
  51. package/grids/themes/dark/fluent.css +1 -1
  52. package/grids/themes/dark/indigo.css +1 -1
  53. package/grids/themes/dark/material.css +1 -1
  54. package/grids/themes/light/bootstrap.css +1 -1
  55. package/grids/themes/light/fluent.css +1 -1
  56. package/grids/themes/light/indigo.css +1 -1
  57. package/grids/themes/light/material.css +1 -1
  58. package/lib/BaseEditorView.d.ts +12 -8
  59. package/lib/ColumnFilterCondition_combined.d.ts +2 -0
  60. package/lib/ComboEditorView.d.ts +15 -14
  61. package/lib/ComboEditorView_ComboExternal.d.ts +1 -0
  62. package/lib/ComparisonOperatorSelectorView_combined.d.ts +104 -95
  63. package/lib/DateEditorView.d.ts +13 -12
  64. package/lib/FilterCell.d.ts +23 -20
  65. package/lib/GridColumnOptionsView_combined.d.ts +10 -5
  66. package/lib/GridColumnSummaryOptionsView_combined.d.ts +13 -8
  67. package/lib/IEditorView.d.ts +2 -0
  68. package/lib/TextEditorView.d.ts +10 -9
  69. package/lib/igc-data-grid-comparison-operator-selector-component.d.ts +11 -0
  70. package/lib/igc-grid-column-options-component.d.ts +8 -0
  71. package/lib/igc-grid-column-summary-options-component.d.ts +2 -0
  72. package/package.json +4 -4
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'
@@ -2124,6 +2124,20 @@ public set selectedRows(value: any[]);
2124
2124
 
2125
2125
 
2126
2126
 
2127
+ /**
2128
+ * Select range(s) of cells between certain rows and columns of the grid.
2129
+ */
2130
+ public selectRange(arg: IgcGridSelectionRange[]): void;
2131
+
2132
+
2133
+
2134
+ /**
2135
+ * Get the currently selected ranges in the grid.
2136
+ */
2137
+ public getSelectedRanges(): IgcGridSelectionRange[];
2138
+
2139
+
2140
+
2127
2141
  /**
2128
2142
  *
2129
2143
  * Returns an array of the current cell selection in the form of `[{ column.field: cell.value }, ...]`.
@@ -15,7 +15,11 @@ import { IgcGridBaseDirective } from './igc-grid-base-directive';
15
15
  public set rowID(value: any);
16
16
  public get rowID(): any;
17
17
 
18
-
18
+ // deprecated
19
+ public set primaryKey(value: any);
20
+ public get primaryKey(): any;
21
+
22
+ // in a major version, remove the deprecated `rowID` and migrate to `key`
19
23
  public cellID?: { rowID: any; columnID: any; rowIndex: number; };
20
24
 
21
25
 
@@ -4,6 +4,7 @@
4
4
  /* jsonAPIPlainObject */
5
5
 
6
6
 
7
+ /* marshalByValue */
7
8
 
8
9
  export declare class IgcGridSelectionRange
9
10
  {
@@ -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: IgcPivotDimension, inOptions?: IgcPivotDateDimensionOptions);
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
+
@@ -12,6 +12,10 @@ import { IgcBaseEventArgs } from './igc-base-event-args';
12
12
  public set data(value: any);
13
13
  public get data(): any;
14
14
 
15
+
16
+ public set primaryKey(value: any);
17
+ public get primaryKey(): any;
18
+
15
19
  }
16
20
 
17
21