igniteui-webcomponents-data-grids 7.1.0-beta.1 → 7.1.0-beta.3
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-data-grids.umd.js +11002 -9831
- package/bundles/igniteui-webcomponents-data-grids.umd.min.js +1 -1
- package/esm2015/lib/AccessibilityRow.js +10 -10
- package/esm2015/lib/CanvasCellPresenterBase.js +12 -12
- package/esm2015/lib/CanvasContentCellModelHelper.js +12 -12
- package/esm2015/lib/CanvasDateTimeCellPresenter.js +8 -8
- package/esm2015/lib/CanvasGridCellBase.js +2 -2
- package/esm2015/lib/CanvasImageCellPresenter.js +9 -9
- package/esm2015/lib/CanvasNumericCellPresenter.js +8 -8
- package/esm2015/lib/CanvasSectionHeaderCellPresenter.js +9 -9
- package/esm2015/lib/CanvasSummaryCellPresenter.js +4 -4
- package/esm2015/lib/CanvasTemplateCellPresenter.js +5 -5
- package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +5 -5
- package/esm2015/lib/CanvasTextCellPresenter.js +9 -9
- package/esm2015/lib/CanvasTextHeaderCellPresenter.js +11 -11
- package/esm2015/lib/CellPath.js +79 -69
- package/esm2015/lib/CellPresenterBase.js +46 -46
- package/esm2015/lib/CheckboxListBridge.js +12 -0
- package/esm2015/lib/CheckboxListView_combined.js +329 -283
- package/esm2015/lib/ColumnChooserView_combined.js +11 -11
- package/esm2015/lib/ColumnFilterCondition_combined.js +7043 -6712
- package/esm2015/lib/ColumnGroupingView_combined.js +5 -5
- package/esm2015/lib/ColumnPinningView_combined.js +11 -11
- package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +7 -7
- package/esm2015/lib/ContentCellModelHelper.js +16 -16
- package/esm2015/lib/DataGridAccessibilityLayoutPanel.js +1 -1
- package/esm2015/lib/DataGridCellLayoutPanel.js +17 -17
- package/esm2015/lib/DataGridScrollerKeyboardListener.js +2 -2
- package/esm2015/lib/DataGridToolbarView_combined.js +2 -2
- package/esm2015/lib/DateTimeCellPresenter.js +9 -9
- package/esm2015/lib/DraggerView.js +1 -7
- package/esm2015/lib/EditorCell.js +290 -290
- package/esm2015/lib/EditorCellPresenter.js +27 -27
- package/esm2015/lib/FilterCell.js +267 -267
- package/esm2015/lib/FilterCellPresenter.js +17 -17
- package/esm2015/lib/GridCellBase.js +210 -202
- package/esm2015/lib/GridColumnFilterOptionsView_combined.js +13 -13
- package/esm2015/lib/GridColumnGroupOptionsView_combined.js +7 -7
- package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
- package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
- package/esm2015/lib/GridColumnOptionsView_combined.js +1 -1
- package/esm2015/lib/GridColumnPinOptionsView_combined.js +4 -4
- package/esm2015/lib/GridColumnSortOptionsView_combined.js +2 -2
- package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +7 -7
- package/esm2015/lib/GridExternalWrapper.js +12 -6
- package/esm2015/lib/GridFilterDialogView_combined.js +238 -187
- package/esm2015/lib/ISummaryChooserView_combined.js +4 -4
- package/esm2015/lib/ImageCell.js +58 -58
- package/esm2015/lib/ImageCellPresenter.js +17 -17
- package/esm2015/lib/MultiColumnComboBoxView_combined.js +9 -9
- package/esm2015/lib/NumericCell.js +8 -8
- package/esm2015/lib/NumericCellPresenter.js +9 -9
- package/esm2015/lib/PropertyEditorView_combined.js +19 -19
- package/esm2015/lib/SectionHeaderCell.js +30 -20
- package/esm2015/lib/SectionHeaderCellPresenter.js +10 -10
- package/esm2015/lib/SummaryCell.js +44 -44
- package/esm2015/lib/SummaryCellPresenter.js +9 -9
- package/esm2015/lib/TemplateCell.js +15 -15
- package/esm2015/lib/TemplateCellPresenter.js +6 -6
- package/esm2015/lib/TemplateHeader.js +8 -8
- package/esm2015/lib/TemplateHeaderCell.js +5 -5
- package/esm2015/lib/TemplateHeaderCellModel.js +18 -18
- package/esm2015/lib/TemplateHeaderCellPresenter.js +6 -6
- package/esm2015/lib/TemplateSectionHeader.js +2 -2
- package/esm2015/lib/TextCell.js +31 -30
- package/esm2015/lib/TextCellPresenter.js +10 -10
- package/esm2015/lib/TextHeaderCell.js +181 -175
- package/esm2015/lib/TextHeaderCellPresenter.js +66 -57
- package/esm2015/lib/VerticalSeparatorCell.js +37 -37
- package/esm2015/lib/igc-cell-info.js +195 -186
- package/esm2015/lib/igc-checkbox-list-component.js +42 -22
- package/esm2015/lib/igc-column-moving-separator-component.js +9 -9
- package/esm2015/lib/igc-column-resizing-separator-component.js +6 -6
- package/esm2015/lib/igc-combo-box-column-component.js +10 -10
- package/esm2015/lib/igc-data-binding-event-args.js +3 -0
- package/esm2015/lib/igc-data-grid-column-component.js +336 -276
- package/esm2015/lib/igc-data-grid-component.js +220 -32
- package/esm2015/lib/igc-data-grid-filter-dialog-component.js +67 -37
- package/esm2015/lib/igc-data-grid-toolbar-component.js +40 -8
- package/esm2015/lib/igc-date-time-cell-info.js +12 -12
- package/esm2015/lib/igc-date-time-column-component.js +23 -23
- package/esm2015/lib/igc-definition-base-component.js +64 -64
- package/esm2015/lib/igc-editor-cell-info.js +23 -23
- package/esm2015/lib/igc-filter-cell-info.js +26 -26
- package/esm2015/lib/igc-filter-row-definition-component.js +12 -12
- package/esm2015/lib/igc-header-component.js +24 -24
- package/esm2015/lib/igc-image-cell-info.js +6 -6
- package/esm2015/lib/igc-image-column-component.js +12 -12
- package/esm2015/lib/igc-multi-column-combo-box-component.js +160 -32
- package/esm2015/lib/igc-numeric-cell-info.js +28 -28
- package/esm2015/lib/igc-numeric-column-component.js +38 -38
- package/esm2015/lib/igc-section-header-cell-info.js +6 -6
- package/esm2015/lib/igc-section-header-component.js +36 -36
- package/esm2015/lib/igc-summary-cell-info.js +9 -9
- package/esm2015/lib/igc-summary-row-component.js +30 -30
- package/esm2015/lib/igc-summary-row-root-module.js +2 -0
- package/esm2015/lib/igc-summary-row-section-module.js +2 -0
- package/esm2015/lib/igc-template-cell-info.js +2 -2
- package/esm2015/lib/igc-template-header-cell-info.js +2 -2
- package/esm2015/lib/igc-text-cell-info.js +2 -2
- package/esm2015/lib/igc-text-column-component.js +9 -9
- package/esm2015/lib/igc-text-header-cell-info.js +67 -40
- package/esm5/lib/AccessibilityRow.js +10 -10
- package/esm5/lib/CanvasCellPresenterBase.js +12 -12
- package/esm5/lib/CanvasContentCellModelHelper.js +12 -12
- package/esm5/lib/CanvasDateTimeCellPresenter.js +8 -8
- package/esm5/lib/CanvasGridCellBase.js +2 -2
- package/esm5/lib/CanvasImageCellPresenter.js +9 -9
- package/esm5/lib/CanvasNumericCellPresenter.js +8 -8
- package/esm5/lib/CanvasSectionHeaderCellPresenter.js +9 -9
- package/esm5/lib/CanvasSummaryCellPresenter.js +4 -4
- package/esm5/lib/CanvasTemplateCellPresenter.js +5 -5
- package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +5 -5
- package/esm5/lib/CanvasTextCellPresenter.js +9 -9
- package/esm5/lib/CanvasTextHeaderCellPresenter.js +11 -11
- package/esm5/lib/CellPath.js +79 -65
- package/esm5/lib/CellPresenterBase.js +46 -46
- package/esm5/lib/CheckboxListBridge.js +12 -0
- package/esm5/lib/CheckboxListView_combined.js +332 -278
- package/esm5/lib/ColumnChooserView_combined.js +11 -11
- package/esm5/lib/ColumnFilterCondition_combined.js +6860 -6456
- package/esm5/lib/ColumnGroupingView_combined.js +5 -5
- package/esm5/lib/ColumnPinningView_combined.js +11 -11
- package/esm5/lib/ComparisonOperatorSelectorView_combined.js +7 -7
- package/esm5/lib/ContentCellModelHelper.js +16 -16
- package/esm5/lib/DataGridAccessibilityLayoutPanel.js +1 -1
- package/esm5/lib/DataGridCellLayoutPanel.js +17 -17
- package/esm5/lib/DataGridScrollerKeyboardListener.js +2 -2
- package/esm5/lib/DataGridToolbarView_combined.js +2 -2
- package/esm5/lib/DateTimeCellPresenter.js +9 -9
- package/esm5/lib/DraggerView.js +1 -7
- package/esm5/lib/EditorCell.js +276 -276
- package/esm5/lib/EditorCellPresenter.js +27 -27
- package/esm5/lib/FilterCell.js +257 -257
- package/esm5/lib/FilterCellPresenter.js +17 -17
- package/esm5/lib/GridCellBase.js +205 -193
- package/esm5/lib/GridColumnFilterOptionsView_combined.js +13 -13
- package/esm5/lib/GridColumnGroupOptionsView_combined.js +7 -7
- package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
- package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
- package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
- package/esm5/lib/GridColumnPinOptionsView_combined.js +4 -4
- package/esm5/lib/GridColumnSortOptionsView_combined.js +2 -2
- package/esm5/lib/GridColumnSummaryOptionsView_combined.js +7 -7
- package/esm5/lib/GridExternalWrapper.js +12 -6
- package/esm5/lib/GridFilterDialogView_combined.js +240 -177
- package/esm5/lib/ISummaryChooserView_combined.js +4 -4
- package/esm5/lib/ImageCell.js +57 -57
- package/esm5/lib/ImageCellPresenter.js +17 -17
- package/esm5/lib/MultiColumnComboBoxView_combined.js +9 -9
- package/esm5/lib/NumericCell.js +8 -8
- package/esm5/lib/NumericCellPresenter.js +9 -9
- package/esm5/lib/PropertyEditorView_combined.js +19 -19
- package/esm5/lib/SectionHeaderCell.js +30 -20
- package/esm5/lib/SectionHeaderCellPresenter.js +10 -10
- package/esm5/lib/SummaryCell.js +44 -44
- package/esm5/lib/SummaryCellPresenter.js +9 -9
- package/esm5/lib/TemplateCell.js +15 -15
- package/esm5/lib/TemplateCellPresenter.js +6 -6
- package/esm5/lib/TemplateHeader.js +8 -8
- package/esm5/lib/TemplateHeaderCell.js +5 -5
- package/esm5/lib/TemplateHeaderCellModel.js +17 -17
- package/esm5/lib/TemplateHeaderCellPresenter.js +6 -6
- package/esm5/lib/TemplateSectionHeader.js +2 -2
- package/esm5/lib/TextCell.js +31 -30
- package/esm5/lib/TextCellPresenter.js +10 -10
- package/esm5/lib/TextHeaderCell.js +185 -179
- package/esm5/lib/TextHeaderCellPresenter.js +66 -57
- package/esm5/lib/VerticalSeparatorCell.js +37 -37
- package/esm5/lib/igc-cell-info.js +207 -186
- package/esm5/lib/igc-checkbox-list-component.js +50 -22
- package/esm5/lib/igc-column-moving-separator-component.js +9 -9
- package/esm5/lib/igc-column-resizing-separator-component.js +6 -6
- package/esm5/lib/igc-combo-box-column-component.js +10 -10
- package/esm5/lib/igc-data-binding-event-args.js +3 -0
- package/esm5/lib/igc-data-grid-column-component.js +360 -276
- package/esm5/lib/igc-data-grid-component.js +240 -32
- package/esm5/lib/igc-data-grid-filter-dialog-component.js +79 -37
- package/esm5/lib/igc-data-grid-toolbar-component.js +40 -8
- package/esm5/lib/igc-date-time-cell-info.js +12 -12
- package/esm5/lib/igc-date-time-column-component.js +23 -23
- package/esm5/lib/igc-definition-base-component.js +64 -64
- package/esm5/lib/igc-editor-cell-info.js +23 -23
- package/esm5/lib/igc-filter-cell-info.js +26 -26
- package/esm5/lib/igc-filter-row-definition-component.js +12 -12
- package/esm5/lib/igc-header-component.js +24 -24
- package/esm5/lib/igc-image-cell-info.js +6 -6
- package/esm5/lib/igc-image-column-component.js +12 -12
- package/esm5/lib/igc-multi-column-combo-box-component.js +160 -32
- package/esm5/lib/igc-numeric-cell-info.js +28 -28
- package/esm5/lib/igc-numeric-column-component.js +38 -38
- package/esm5/lib/igc-section-header-cell-info.js +6 -6
- package/esm5/lib/igc-section-header-component.js +36 -36
- package/esm5/lib/igc-summary-cell-info.js +9 -9
- package/esm5/lib/igc-summary-row-component.js +29 -29
- package/esm5/lib/igc-summary-row-root-module.js +2 -0
- package/esm5/lib/igc-summary-row-section-module.js +2 -0
- package/esm5/lib/igc-template-cell-info.js +2 -2
- package/esm5/lib/igc-template-header-cell-info.js +2 -2
- package/esm5/lib/igc-text-cell-info.js +2 -2
- package/esm5/lib/igc-text-column-component.js +9 -9
- package/esm5/lib/igc-text-header-cell-info.js +79 -40
- package/fesm2015/igniteui-webcomponents-data-grids.js +10931 -9949
- package/fesm5/igniteui-webcomponents-data-grids.js +11002 -9831
- package/lib/CellPath.d.ts +21 -20
- package/lib/CheckboxListExternal.d.ts +3 -0
- package/lib/CheckboxListView_combined.d.ts +77 -71
- package/lib/ColumnFilterCondition_combined.d.ts +1759 -1699
- package/lib/EditorCell.d.ts +63 -63
- package/lib/FilterCell.d.ts +55 -55
- package/lib/GridCellBase.d.ts +82 -80
- package/lib/GridExternalWrapper.d.ts +2 -0
- package/lib/GridFilterDialogView_combined.d.ts +61 -52
- package/lib/ImageCell.d.ts +15 -15
- package/lib/NumericCell.d.ts +2 -2
- package/lib/SectionHeaderCell.d.ts +6 -4
- package/lib/SummaryCell.d.ts +10 -10
- package/lib/TemplateCell.d.ts +5 -5
- package/lib/TemplateHeader.d.ts +3 -3
- package/lib/TemplateHeaderCell.d.ts +2 -2
- package/lib/TemplateHeaderCellModel.d.ts +7 -7
- package/lib/TemplateSectionHeader.d.ts +2 -2
- package/lib/TextCell.d.ts +7 -7
- package/lib/TextHeaderCell.d.ts +30 -30
- package/lib/VerticalSeparatorCell.d.ts +8 -8
- package/lib/igc-cell-info.d.ts +3 -0
- package/lib/igc-checkbox-list-component.d.ts +10 -0
- package/lib/igc-data-grid-column-component.d.ts +30 -0
- package/lib/igc-data-grid-component.d.ts +27 -0
- package/lib/igc-data-grid-filter-dialog-component.d.ts +15 -0
- package/lib/igc-summary-row-component.d.ts +2 -2
- package/lib/igc-text-header-cell-info.d.ts +15 -0
- package/package.json +4 -4
|
@@ -394,9 +394,17 @@ export var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (functi
|
|
|
394
394
|
},
|
|
395
395
|
set: function (v) {
|
|
396
396
|
this.ensureContentPadding();
|
|
397
|
-
|
|
397
|
+
var __nv = +v;
|
|
398
|
+
if (this.i.im.bottom === __nv) {
|
|
399
|
+
return;
|
|
400
|
+
}
|
|
401
|
+
var __copy = new Thickness(2);
|
|
402
|
+
__copy.bottom = __nv;
|
|
403
|
+
__copy.left = this.i.im.left;
|
|
404
|
+
__copy.right = this.i.im.right;
|
|
405
|
+
__copy.top = this.i.im.top;
|
|
406
|
+
this.i.im = __copy;
|
|
398
407
|
this._a("contentPaddingBottom", this.i.im.bottom);
|
|
399
|
-
this.i.im = this.i.im;
|
|
400
408
|
},
|
|
401
409
|
enumerable: false,
|
|
402
410
|
configurable: true
|
|
@@ -407,9 +415,17 @@ export var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (functi
|
|
|
407
415
|
},
|
|
408
416
|
set: function (v) {
|
|
409
417
|
this.ensureContentPadding();
|
|
410
|
-
|
|
418
|
+
var __nv = +v;
|
|
419
|
+
if (this.i.im.left === __nv) {
|
|
420
|
+
return;
|
|
421
|
+
}
|
|
422
|
+
var __copy = new Thickness(2);
|
|
423
|
+
__copy.left = __nv;
|
|
424
|
+
__copy.bottom = this.i.im.bottom;
|
|
425
|
+
__copy.right = this.i.im.right;
|
|
426
|
+
__copy.top = this.i.im.top;
|
|
427
|
+
this.i.im = __copy;
|
|
411
428
|
this._a("contentPaddingLeft", this.i.im.left);
|
|
412
|
-
this.i.im = this.i.im;
|
|
413
429
|
},
|
|
414
430
|
enumerable: false,
|
|
415
431
|
configurable: true
|
|
@@ -420,9 +436,17 @@ export var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (functi
|
|
|
420
436
|
},
|
|
421
437
|
set: function (v) {
|
|
422
438
|
this.ensureContentPadding();
|
|
423
|
-
|
|
439
|
+
var __nv = +v;
|
|
440
|
+
if (this.i.im.right === __nv) {
|
|
441
|
+
return;
|
|
442
|
+
}
|
|
443
|
+
var __copy = new Thickness(2);
|
|
444
|
+
__copy.right = __nv;
|
|
445
|
+
__copy.bottom = this.i.im.bottom;
|
|
446
|
+
__copy.left = this.i.im.left;
|
|
447
|
+
__copy.top = this.i.im.top;
|
|
448
|
+
this.i.im = __copy;
|
|
424
449
|
this._a("contentPaddingRight", this.i.im.right);
|
|
425
|
-
this.i.im = this.i.im;
|
|
426
450
|
},
|
|
427
451
|
enumerable: false,
|
|
428
452
|
configurable: true
|
|
@@ -433,9 +457,17 @@ export var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (functi
|
|
|
433
457
|
},
|
|
434
458
|
set: function (v) {
|
|
435
459
|
this.ensureContentPadding();
|
|
436
|
-
|
|
460
|
+
var __nv = +v;
|
|
461
|
+
if (this.i.im.top === __nv) {
|
|
462
|
+
return;
|
|
463
|
+
}
|
|
464
|
+
var __copy = new Thickness(2);
|
|
465
|
+
__copy.top = __nv;
|
|
466
|
+
__copy.bottom = this.i.im.bottom;
|
|
467
|
+
__copy.left = this.i.im.left;
|
|
468
|
+
__copy.right = this.i.im.right;
|
|
469
|
+
this.i.im = __copy;
|
|
437
470
|
this._a("contentPaddingTop", this.i.im.top);
|
|
438
|
-
this.i.im = this.i.im;
|
|
439
471
|
},
|
|
440
472
|
enumerable: false,
|
|
441
473
|
configurable: true
|
|
@@ -452,9 +484,17 @@ export var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (functi
|
|
|
452
484
|
},
|
|
453
485
|
set: function (v) {
|
|
454
486
|
this.ensureActualContentPadding();
|
|
455
|
-
|
|
487
|
+
var __nv = +v;
|
|
488
|
+
if (this.i.il.bottom === __nv) {
|
|
489
|
+
return;
|
|
490
|
+
}
|
|
491
|
+
var __copy = new Thickness(2);
|
|
492
|
+
__copy.bottom = __nv;
|
|
493
|
+
__copy.left = this.i.il.left;
|
|
494
|
+
__copy.right = this.i.il.right;
|
|
495
|
+
__copy.top = this.i.il.top;
|
|
496
|
+
this.i.il = __copy;
|
|
456
497
|
this._a("actualContentPaddingBottom", this.i.il.bottom);
|
|
457
|
-
this.i.il = this.i.il;
|
|
458
498
|
},
|
|
459
499
|
enumerable: false,
|
|
460
500
|
configurable: true
|
|
@@ -465,9 +505,17 @@ export var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (functi
|
|
|
465
505
|
},
|
|
466
506
|
set: function (v) {
|
|
467
507
|
this.ensureActualContentPadding();
|
|
468
|
-
|
|
508
|
+
var __nv = +v;
|
|
509
|
+
if (this.i.il.left === __nv) {
|
|
510
|
+
return;
|
|
511
|
+
}
|
|
512
|
+
var __copy = new Thickness(2);
|
|
513
|
+
__copy.left = __nv;
|
|
514
|
+
__copy.bottom = this.i.il.bottom;
|
|
515
|
+
__copy.right = this.i.il.right;
|
|
516
|
+
__copy.top = this.i.il.top;
|
|
517
|
+
this.i.il = __copy;
|
|
469
518
|
this._a("actualContentPaddingLeft", this.i.il.left);
|
|
470
|
-
this.i.il = this.i.il;
|
|
471
519
|
},
|
|
472
520
|
enumerable: false,
|
|
473
521
|
configurable: true
|
|
@@ -478,9 +526,17 @@ export var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (functi
|
|
|
478
526
|
},
|
|
479
527
|
set: function (v) {
|
|
480
528
|
this.ensureActualContentPadding();
|
|
481
|
-
|
|
529
|
+
var __nv = +v;
|
|
530
|
+
if (this.i.il.right === __nv) {
|
|
531
|
+
return;
|
|
532
|
+
}
|
|
533
|
+
var __copy = new Thickness(2);
|
|
534
|
+
__copy.right = __nv;
|
|
535
|
+
__copy.bottom = this.i.il.bottom;
|
|
536
|
+
__copy.left = this.i.il.left;
|
|
537
|
+
__copy.top = this.i.il.top;
|
|
538
|
+
this.i.il = __copy;
|
|
482
539
|
this._a("actualContentPaddingRight", this.i.il.right);
|
|
483
|
-
this.i.il = this.i.il;
|
|
484
540
|
},
|
|
485
541
|
enumerable: false,
|
|
486
542
|
configurable: true
|
|
@@ -491,9 +547,17 @@ export var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (functi
|
|
|
491
547
|
},
|
|
492
548
|
set: function (v) {
|
|
493
549
|
this.ensureActualContentPadding();
|
|
494
|
-
|
|
550
|
+
var __nv = +v;
|
|
551
|
+
if (this.i.il.top === __nv) {
|
|
552
|
+
return;
|
|
553
|
+
}
|
|
554
|
+
var __copy = new Thickness(2);
|
|
555
|
+
__copy.top = __nv;
|
|
556
|
+
__copy.bottom = this.i.il.bottom;
|
|
557
|
+
__copy.left = this.i.il.left;
|
|
558
|
+
__copy.right = this.i.il.right;
|
|
559
|
+
this.i.il = __copy;
|
|
495
560
|
this._a("actualContentPaddingTop", this.i.il.top);
|
|
496
|
-
this.i.il = this.i.il;
|
|
497
561
|
},
|
|
498
562
|
enumerable: false,
|
|
499
563
|
configurable: true
|
|
@@ -510,9 +574,17 @@ export var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (functi
|
|
|
510
574
|
},
|
|
511
575
|
set: function (v) {
|
|
512
576
|
this.ensureCornerRadius();
|
|
513
|
-
|
|
577
|
+
var __nv = +v;
|
|
578
|
+
if (this.i.gx.c === __nv) {
|
|
579
|
+
return;
|
|
580
|
+
}
|
|
581
|
+
var __copy = new CornerRadius(2);
|
|
582
|
+
__copy.c = __nv;
|
|
583
|
+
__copy.b = this.i.gx.b;
|
|
584
|
+
__copy.d = this.i.gx.d;
|
|
585
|
+
__copy.e = this.i.gx.e;
|
|
586
|
+
this.i.gx = __copy;
|
|
514
587
|
this._a("cornerRadiusBottomRight", this.i.gx.c);
|
|
515
|
-
this.i.gx = this.i.gx;
|
|
516
588
|
},
|
|
517
589
|
enumerable: false,
|
|
518
590
|
configurable: true
|
|
@@ -523,9 +595,17 @@ export var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (functi
|
|
|
523
595
|
},
|
|
524
596
|
set: function (v) {
|
|
525
597
|
this.ensureCornerRadius();
|
|
526
|
-
|
|
598
|
+
var __nv = +v;
|
|
599
|
+
if (this.i.gx.b === __nv) {
|
|
600
|
+
return;
|
|
601
|
+
}
|
|
602
|
+
var __copy = new CornerRadius(2);
|
|
603
|
+
__copy.b = __nv;
|
|
604
|
+
__copy.c = this.i.gx.c;
|
|
605
|
+
__copy.d = this.i.gx.d;
|
|
606
|
+
__copy.e = this.i.gx.e;
|
|
607
|
+
this.i.gx = __copy;
|
|
527
608
|
this._a("cornerRadiusBottomLeft", this.i.gx.b);
|
|
528
|
-
this.i.gx = this.i.gx;
|
|
529
609
|
},
|
|
530
610
|
enumerable: false,
|
|
531
611
|
configurable: true
|
|
@@ -536,9 +616,17 @@ export var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (functi
|
|
|
536
616
|
},
|
|
537
617
|
set: function (v) {
|
|
538
618
|
this.ensureCornerRadius();
|
|
539
|
-
|
|
619
|
+
var __nv = +v;
|
|
620
|
+
if (this.i.gx.d === __nv) {
|
|
621
|
+
return;
|
|
622
|
+
}
|
|
623
|
+
var __copy = new CornerRadius(2);
|
|
624
|
+
__copy.d = __nv;
|
|
625
|
+
__copy.c = this.i.gx.c;
|
|
626
|
+
__copy.b = this.i.gx.b;
|
|
627
|
+
__copy.e = this.i.gx.e;
|
|
628
|
+
this.i.gx = __copy;
|
|
540
629
|
this._a("cornerRadiusTopLeft", this.i.gx.d);
|
|
541
|
-
this.i.gx = this.i.gx;
|
|
542
630
|
},
|
|
543
631
|
enumerable: false,
|
|
544
632
|
configurable: true
|
|
@@ -549,9 +637,17 @@ export var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (functi
|
|
|
549
637
|
},
|
|
550
638
|
set: function (v) {
|
|
551
639
|
this.ensureCornerRadius();
|
|
552
|
-
|
|
640
|
+
var __nv = +v;
|
|
641
|
+
if (this.i.gx.e === __nv) {
|
|
642
|
+
return;
|
|
643
|
+
}
|
|
644
|
+
var __copy = new CornerRadius(2);
|
|
645
|
+
__copy.e = __nv;
|
|
646
|
+
__copy.c = this.i.gx.c;
|
|
647
|
+
__copy.b = this.i.gx.b;
|
|
648
|
+
__copy.d = this.i.gx.d;
|
|
649
|
+
this.i.gx = __copy;
|
|
553
650
|
this._a("cornerRadiusTopRight", this.i.gx.e);
|
|
554
|
-
this.i.gx = this.i.gx;
|
|
555
651
|
},
|
|
556
652
|
enumerable: false,
|
|
557
653
|
configurable: true
|
|
@@ -568,9 +664,17 @@ export var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (functi
|
|
|
568
664
|
},
|
|
569
665
|
set: function (v) {
|
|
570
666
|
this.ensureActualCornerRadius();
|
|
571
|
-
|
|
667
|
+
var __nv = +v;
|
|
668
|
+
if (this.i.gw.c === __nv) {
|
|
669
|
+
return;
|
|
670
|
+
}
|
|
671
|
+
var __copy = new CornerRadius(2);
|
|
672
|
+
__copy.c = __nv;
|
|
673
|
+
__copy.b = this.i.gw.b;
|
|
674
|
+
__copy.d = this.i.gw.d;
|
|
675
|
+
__copy.e = this.i.gw.e;
|
|
676
|
+
this.i.gw = __copy;
|
|
572
677
|
this._a("actualCornerRadiusBottomRight", this.i.gw.c);
|
|
573
|
-
this.i.gw = this.i.gw;
|
|
574
678
|
},
|
|
575
679
|
enumerable: false,
|
|
576
680
|
configurable: true
|
|
@@ -581,9 +685,17 @@ export var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (functi
|
|
|
581
685
|
},
|
|
582
686
|
set: function (v) {
|
|
583
687
|
this.ensureActualCornerRadius();
|
|
584
|
-
|
|
688
|
+
var __nv = +v;
|
|
689
|
+
if (this.i.gw.b === __nv) {
|
|
690
|
+
return;
|
|
691
|
+
}
|
|
692
|
+
var __copy = new CornerRadius(2);
|
|
693
|
+
__copy.b = __nv;
|
|
694
|
+
__copy.c = this.i.gw.c;
|
|
695
|
+
__copy.d = this.i.gw.d;
|
|
696
|
+
__copy.e = this.i.gw.e;
|
|
697
|
+
this.i.gw = __copy;
|
|
585
698
|
this._a("actualCornerRadiusBottomLeft", this.i.gw.b);
|
|
586
|
-
this.i.gw = this.i.gw;
|
|
587
699
|
},
|
|
588
700
|
enumerable: false,
|
|
589
701
|
configurable: true
|
|
@@ -594,9 +706,17 @@ export var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (functi
|
|
|
594
706
|
},
|
|
595
707
|
set: function (v) {
|
|
596
708
|
this.ensureActualCornerRadius();
|
|
597
|
-
|
|
709
|
+
var __nv = +v;
|
|
710
|
+
if (this.i.gw.d === __nv) {
|
|
711
|
+
return;
|
|
712
|
+
}
|
|
713
|
+
var __copy = new CornerRadius(2);
|
|
714
|
+
__copy.d = __nv;
|
|
715
|
+
__copy.c = this.i.gw.c;
|
|
716
|
+
__copy.b = this.i.gw.b;
|
|
717
|
+
__copy.e = this.i.gw.e;
|
|
718
|
+
this.i.gw = __copy;
|
|
598
719
|
this._a("actualCornerRadiusTopLeft", this.i.gw.d);
|
|
599
|
-
this.i.gw = this.i.gw;
|
|
600
720
|
},
|
|
601
721
|
enumerable: false,
|
|
602
722
|
configurable: true
|
|
@@ -607,9 +727,17 @@ export var IgcMultiColumnComboBoxComponent = /** @class */ /*@__PURE__*/ (functi
|
|
|
607
727
|
},
|
|
608
728
|
set: function (v) {
|
|
609
729
|
this.ensureActualCornerRadius();
|
|
610
|
-
|
|
730
|
+
var __nv = +v;
|
|
731
|
+
if (this.i.gw.e === __nv) {
|
|
732
|
+
return;
|
|
733
|
+
}
|
|
734
|
+
var __copy = new CornerRadius(2);
|
|
735
|
+
__copy.e = __nv;
|
|
736
|
+
__copy.c = this.i.gw.c;
|
|
737
|
+
__copy.b = this.i.gw.b;
|
|
738
|
+
__copy.d = this.i.gw.d;
|
|
739
|
+
this.i.gw = __copy;
|
|
611
740
|
this._a("actualCornerRadiusTopRight", this.i.gw.e);
|
|
612
|
-
this.i.gw = this.i.gw;
|
|
613
741
|
},
|
|
614
742
|
enumerable: false,
|
|
615
743
|
configurable: true
|
|
@@ -28,10 +28,10 @@ var IgcNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
28
28
|
* Sets or gets the numeric value to use for the cell.
|
|
29
29
|
*/
|
|
30
30
|
get: function () {
|
|
31
|
-
return this.i.
|
|
31
|
+
return this.i.on;
|
|
32
32
|
},
|
|
33
33
|
set: function (v) {
|
|
34
|
-
this.i.
|
|
34
|
+
this.i.on = +v;
|
|
35
35
|
},
|
|
36
36
|
enumerable: false,
|
|
37
37
|
configurable: true
|
|
@@ -41,10 +41,10 @@ var IgcNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
41
41
|
* Sets or gets whether there is a decimal numeric value to use for the cell.
|
|
42
42
|
*/
|
|
43
43
|
get: function () {
|
|
44
|
-
return this.i.
|
|
44
|
+
return this.i.oi;
|
|
45
45
|
},
|
|
46
46
|
set: function (v) {
|
|
47
|
-
this.i.
|
|
47
|
+
this.i.oi = ensureBool(v);
|
|
48
48
|
},
|
|
49
49
|
enumerable: false,
|
|
50
50
|
configurable: true
|
|
@@ -54,24 +54,24 @@ var IgcNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
54
54
|
* The format string to apply to the value
|
|
55
55
|
*/
|
|
56
56
|
get: function () {
|
|
57
|
-
return this.i.
|
|
57
|
+
return this.i.pi;
|
|
58
58
|
},
|
|
59
59
|
set: function (v) {
|
|
60
|
-
this.i.
|
|
60
|
+
this.i.pi = v;
|
|
61
61
|
},
|
|
62
62
|
enumerable: false,
|
|
63
63
|
configurable: true
|
|
64
64
|
});
|
|
65
65
|
Object.defineProperty(IgcNumericCellInfo.prototype, "formatSpecifiers", {
|
|
66
66
|
get: function () {
|
|
67
|
-
return this.i.
|
|
67
|
+
return this.i.od;
|
|
68
68
|
},
|
|
69
69
|
set: function (v) {
|
|
70
70
|
if (v && !Array.isArray(v) && typeof (v) == "string") {
|
|
71
71
|
var re = /\s*(?:,|\s|$)\s*/gm;
|
|
72
72
|
v = v.split(re);
|
|
73
73
|
}
|
|
74
|
-
this.i.
|
|
74
|
+
this.i.od = v;
|
|
75
75
|
},
|
|
76
76
|
enumerable: false,
|
|
77
77
|
configurable: true
|
|
@@ -81,10 +81,10 @@ var IgcNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
81
81
|
* The format options to apply to the value
|
|
82
82
|
*/
|
|
83
83
|
get: function () {
|
|
84
|
-
return this.i.
|
|
84
|
+
return this.i.pa;
|
|
85
85
|
},
|
|
86
86
|
set: function (v) {
|
|
87
|
-
this.i.
|
|
87
|
+
this.i.pa = v;
|
|
88
88
|
},
|
|
89
89
|
enumerable: false,
|
|
90
90
|
configurable: true
|
|
@@ -94,10 +94,10 @@ var IgcNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
94
94
|
* Sets or gets the text prepended to a negative numeric value
|
|
95
95
|
*/
|
|
96
96
|
get: function () {
|
|
97
|
-
return this.i.
|
|
97
|
+
return this.i.pp;
|
|
98
98
|
},
|
|
99
99
|
set: function (v) {
|
|
100
|
-
this.i.
|
|
100
|
+
this.i.pp = v;
|
|
101
101
|
},
|
|
102
102
|
enumerable: false,
|
|
103
103
|
configurable: true
|
|
@@ -107,10 +107,10 @@ var IgcNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
107
107
|
* Sets or gets the text prepended to a positive numeric value
|
|
108
108
|
*/
|
|
109
109
|
get: function () {
|
|
110
|
-
return this.i.
|
|
110
|
+
return this.i.pu;
|
|
111
111
|
},
|
|
112
112
|
set: function (v) {
|
|
113
|
-
this.i.
|
|
113
|
+
this.i.pu = v;
|
|
114
114
|
},
|
|
115
115
|
enumerable: false,
|
|
116
116
|
configurable: true
|
|
@@ -120,10 +120,10 @@ var IgcNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
120
120
|
* Sets or gets the text appended to a negative numeric value
|
|
121
121
|
*/
|
|
122
122
|
get: function () {
|
|
123
|
-
return this.i.
|
|
123
|
+
return this.i.pr;
|
|
124
124
|
},
|
|
125
125
|
set: function (v) {
|
|
126
|
-
this.i.
|
|
126
|
+
this.i.pr = v;
|
|
127
127
|
},
|
|
128
128
|
enumerable: false,
|
|
129
129
|
configurable: true
|
|
@@ -133,10 +133,10 @@ var IgcNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
133
133
|
* Sets or gets the text appended to a positive numeric value
|
|
134
134
|
*/
|
|
135
135
|
get: function () {
|
|
136
|
-
return this.i.
|
|
136
|
+
return this.i.pw;
|
|
137
137
|
},
|
|
138
138
|
set: function (v) {
|
|
139
|
-
this.i.
|
|
139
|
+
this.i.pw = v;
|
|
140
140
|
},
|
|
141
141
|
enumerable: false,
|
|
142
142
|
configurable: true
|
|
@@ -146,10 +146,10 @@ var IgcNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
146
146
|
* The maximum number of decimal places to display when formatting
|
|
147
147
|
*/
|
|
148
148
|
get: function () {
|
|
149
|
-
return this.i.
|
|
149
|
+
return this.i.ow;
|
|
150
150
|
},
|
|
151
151
|
set: function (v) {
|
|
152
|
-
this.i.
|
|
152
|
+
this.i.ow = +v;
|
|
153
153
|
},
|
|
154
154
|
enumerable: false,
|
|
155
155
|
configurable: true
|
|
@@ -159,10 +159,10 @@ var IgcNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
159
159
|
* The minimum number of decimal places to display when formatting
|
|
160
160
|
*/
|
|
161
161
|
get: function () {
|
|
162
|
-
return this.i.
|
|
162
|
+
return this.i.oy;
|
|
163
163
|
},
|
|
164
164
|
set: function (v) {
|
|
165
|
-
this.i.
|
|
165
|
+
this.i.oy = +v;
|
|
166
166
|
},
|
|
167
167
|
enumerable: false,
|
|
168
168
|
configurable: true
|
|
@@ -172,10 +172,10 @@ var IgcNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
172
172
|
* The minimum number of integer digits to display when formatting
|
|
173
173
|
*/
|
|
174
174
|
get: function () {
|
|
175
|
-
return this.i.
|
|
175
|
+
return this.i.o0;
|
|
176
176
|
},
|
|
177
177
|
set: function (v) {
|
|
178
|
-
this.i.
|
|
178
|
+
this.i.o0 = +v;
|
|
179
179
|
},
|
|
180
180
|
enumerable: false,
|
|
181
181
|
configurable: true
|
|
@@ -185,10 +185,10 @@ var IgcNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
185
185
|
* Sets or gets if the grouping separator is shown
|
|
186
186
|
*/
|
|
187
187
|
get: function () {
|
|
188
|
-
return this.i.
|
|
188
|
+
return this.i.ol;
|
|
189
189
|
},
|
|
190
190
|
set: function (v) {
|
|
191
|
-
this.i.
|
|
191
|
+
this.i.ol = ensureBool(v);
|
|
192
192
|
},
|
|
193
193
|
enumerable: false,
|
|
194
194
|
configurable: true
|
|
@@ -198,10 +198,10 @@ var IgcNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
198
198
|
* Sets or gets if the value is treated as a percent and multiplied by 100 when formatted.
|
|
199
199
|
*/
|
|
200
200
|
get: function () {
|
|
201
|
-
return this.i.
|
|
201
|
+
return this.i.ok;
|
|
202
202
|
},
|
|
203
203
|
set: function (v) {
|
|
204
|
-
this.i.
|
|
204
|
+
this.i.ok = ensureBool(v);
|
|
205
205
|
},
|
|
206
206
|
enumerable: false,
|
|
207
207
|
configurable: true
|