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
|
@@ -27,38 +27,38 @@ export class IgcFilterCellInfo extends IgcCellInfo {
|
|
|
27
27
|
* Gets or sets whether the cell is hit test visible.
|
|
28
28
|
*/
|
|
29
29
|
get dataType() {
|
|
30
|
-
return this.i.
|
|
30
|
+
return this.i.oh;
|
|
31
31
|
}
|
|
32
32
|
set dataType(v) {
|
|
33
|
-
this.i.
|
|
33
|
+
this.i.oh = ensureEnum(DataSourceSchemaPropertyType_$type, v);
|
|
34
34
|
}
|
|
35
35
|
/**
|
|
36
36
|
* Gets or sets the current filter to display in the cell.
|
|
37
37
|
*/
|
|
38
38
|
get filter() {
|
|
39
|
-
return this.i.
|
|
39
|
+
return this.i.of;
|
|
40
40
|
}
|
|
41
41
|
set filter(v) {
|
|
42
|
-
this.i.
|
|
42
|
+
this.i.of = v;
|
|
43
43
|
}
|
|
44
44
|
/**
|
|
45
45
|
* Gets or sets the current filter expression applied to the column.
|
|
46
46
|
*/
|
|
47
47
|
get filterExpression() {
|
|
48
|
-
return this.i.
|
|
48
|
+
return this.i.oj;
|
|
49
49
|
}
|
|
50
50
|
set filterExpression(v) {
|
|
51
|
-
this.i.
|
|
51
|
+
this.i.oj = v;
|
|
52
52
|
}
|
|
53
53
|
get filterOperands() {
|
|
54
54
|
if (this._filterOperands === null) {
|
|
55
55
|
let coll = new IgcGridFilterOperandsCollection();
|
|
56
|
-
let innerColl = this.i.
|
|
56
|
+
let innerColl = this.i.ol;
|
|
57
57
|
if (!innerColl) {
|
|
58
58
|
innerColl = new GridFilterOperandsCollection_internal();
|
|
59
59
|
}
|
|
60
60
|
this._filterOperands = coll._fromInner(innerColl);
|
|
61
|
-
this.i.
|
|
61
|
+
this.i.ol = innerColl;
|
|
62
62
|
}
|
|
63
63
|
return this._filterOperands;
|
|
64
64
|
}
|
|
@@ -70,62 +70,62 @@ export class IgcFilterCellInfo extends IgcCellInfo {
|
|
|
70
70
|
let coll = new IgcGridFilterOperandsCollection();
|
|
71
71
|
this._filterOperands = coll._fromOuter(v);
|
|
72
72
|
let syncColl = new SyncableObservableCollection$1(FilterOperand.$type);
|
|
73
|
-
let innerColl = this.i.
|
|
73
|
+
let innerColl = this.i.ol;
|
|
74
74
|
if (!innerColl) {
|
|
75
75
|
innerColl = new GridFilterOperandsCollection_internal();
|
|
76
76
|
}
|
|
77
77
|
syncColl._inner = innerColl;
|
|
78
78
|
syncColl.clear();
|
|
79
79
|
this._filterOperands._setSyncTarget(syncColl);
|
|
80
|
-
this.i.
|
|
80
|
+
this.i.ol = innerColl;
|
|
81
81
|
}
|
|
82
82
|
get operatorType() {
|
|
83
|
-
return this.i.
|
|
83
|
+
return this.i.od;
|
|
84
84
|
}
|
|
85
85
|
set operatorType(v) {
|
|
86
|
-
this.i.
|
|
86
|
+
this.i.od = v;
|
|
87
87
|
}
|
|
88
88
|
get filterValue() {
|
|
89
|
-
return this.i.
|
|
89
|
+
return this.i.oz;
|
|
90
90
|
}
|
|
91
91
|
set filterValue(v) {
|
|
92
|
-
this.i.
|
|
92
|
+
this.i.oz = v;
|
|
93
93
|
}
|
|
94
94
|
get selectorTop() {
|
|
95
|
-
return this.i.
|
|
95
|
+
return this.i.ot;
|
|
96
96
|
}
|
|
97
97
|
set selectorTop(v) {
|
|
98
|
-
this.i.
|
|
98
|
+
this.i.ot = +v;
|
|
99
99
|
}
|
|
100
100
|
get selectorLeft() {
|
|
101
|
-
return this.i.
|
|
101
|
+
return this.i.os;
|
|
102
102
|
}
|
|
103
103
|
set selectorLeft(v) {
|
|
104
|
-
this.i.
|
|
104
|
+
this.i.os = +v;
|
|
105
105
|
}
|
|
106
106
|
get editorTop() {
|
|
107
|
-
return this.i.
|
|
107
|
+
return this.i.or;
|
|
108
108
|
}
|
|
109
109
|
set editorTop(v) {
|
|
110
|
-
this.i.
|
|
110
|
+
this.i.or = +v;
|
|
111
111
|
}
|
|
112
112
|
get editorLeft() {
|
|
113
|
-
return this.i.
|
|
113
|
+
return this.i.oq;
|
|
114
114
|
}
|
|
115
115
|
set editorLeft(v) {
|
|
116
|
-
this.i.
|
|
116
|
+
this.i.oq = +v;
|
|
117
117
|
}
|
|
118
118
|
get clearIconTop() {
|
|
119
|
-
return this.i.
|
|
119
|
+
return this.i.op;
|
|
120
120
|
}
|
|
121
121
|
set clearIconTop(v) {
|
|
122
|
-
this.i.
|
|
122
|
+
this.i.op = +v;
|
|
123
123
|
}
|
|
124
124
|
get clearIconLeft() {
|
|
125
|
-
return this.i.
|
|
125
|
+
return this.i.oo;
|
|
126
126
|
}
|
|
127
127
|
set clearIconLeft(v) {
|
|
128
|
-
this.i.
|
|
128
|
+
this.i.oo = +v;
|
|
129
129
|
}
|
|
130
130
|
findByName(name) {
|
|
131
131
|
var baseResult = super.findByName(name);
|
|
@@ -65,41 +65,41 @@ let IgcFilterRowDefinitionComponent = /*@__PURE__*/ (() => {
|
|
|
65
65
|
* Gets or sets the amount of left padding to use for the cell content for this column.
|
|
66
66
|
*/
|
|
67
67
|
get paddingLeft() {
|
|
68
|
-
return this.i.
|
|
68
|
+
return this.i.g8;
|
|
69
69
|
}
|
|
70
70
|
set paddingLeft(v) {
|
|
71
|
-
this.i.
|
|
72
|
-
this._a("paddingLeft", this.i.
|
|
71
|
+
this.i.g8 = +v;
|
|
72
|
+
this._a("paddingLeft", this.i.g8);
|
|
73
73
|
}
|
|
74
74
|
/**
|
|
75
75
|
* Gets or sets the amount of top padding to use for the cell content for this column.
|
|
76
76
|
*/
|
|
77
77
|
get paddingTop() {
|
|
78
|
-
return this.i.
|
|
78
|
+
return this.i.ha;
|
|
79
79
|
}
|
|
80
80
|
set paddingTop(v) {
|
|
81
|
-
this.i.
|
|
82
|
-
this._a("paddingTop", this.i.
|
|
81
|
+
this.i.ha = +v;
|
|
82
|
+
this._a("paddingTop", this.i.ha);
|
|
83
83
|
}
|
|
84
84
|
/**
|
|
85
85
|
* Gets or sets the amount of right padding to use for the cell content of this column.
|
|
86
86
|
*/
|
|
87
87
|
get paddingRight() {
|
|
88
|
-
return this.i.
|
|
88
|
+
return this.i.g9;
|
|
89
89
|
}
|
|
90
90
|
set paddingRight(v) {
|
|
91
|
-
this.i.
|
|
92
|
-
this._a("paddingRight", this.i.
|
|
91
|
+
this.i.g9 = +v;
|
|
92
|
+
this._a("paddingRight", this.i.g9);
|
|
93
93
|
}
|
|
94
94
|
/**
|
|
95
95
|
* Gets or sets the amount of bottom padding to use for the cell content of this column.
|
|
96
96
|
*/
|
|
97
97
|
get paddingBottom() {
|
|
98
|
-
return this.i.
|
|
98
|
+
return this.i.g7;
|
|
99
99
|
}
|
|
100
100
|
set paddingBottom(v) {
|
|
101
|
-
this.i.
|
|
102
|
-
this._a("paddingBottom", this.i.
|
|
101
|
+
this.i.g7 = +v;
|
|
102
|
+
this._a("paddingBottom", this.i.g7);
|
|
103
103
|
}
|
|
104
104
|
}
|
|
105
105
|
IgcFilterRowDefinitionComponent._observedAttributesIgcFilterRowDefinitionComponent = null;
|
|
@@ -55,75 +55,75 @@ let IgcHeaderComponent = /*@__PURE__*/ (() => {
|
|
|
55
55
|
* Gets or sets the color to use for the sort indicator icon
|
|
56
56
|
*/
|
|
57
57
|
get sortIndicatorColor() {
|
|
58
|
-
return brushToString(this.i.
|
|
58
|
+
return brushToString(this.i.ht);
|
|
59
59
|
}
|
|
60
60
|
set sortIndicatorColor(v) {
|
|
61
|
-
this.i.
|
|
62
|
-
this._a("sortIndicatorColor", brushToString(this.i.
|
|
61
|
+
this.i.ht = stringToBrush(v);
|
|
62
|
+
this._a("sortIndicatorColor", brushToString(this.i.ht));
|
|
63
63
|
}
|
|
64
64
|
/**
|
|
65
65
|
* Gets the actual background color that is used for the cells when they are selected
|
|
66
66
|
*/
|
|
67
67
|
get actualSortIndicatorColor() {
|
|
68
|
-
return brushToString(this.i.
|
|
68
|
+
return brushToString(this.i.hr);
|
|
69
69
|
}
|
|
70
70
|
set actualSortIndicatorColor(v) {
|
|
71
|
-
this.i.
|
|
72
|
-
this._a("actualSortIndicatorColor", brushToString(this.i.
|
|
71
|
+
this.i.hr = stringToBrush(v);
|
|
72
|
+
this._a("actualSortIndicatorColor", brushToString(this.i.hr));
|
|
73
73
|
}
|
|
74
74
|
get sortIndicatorStyle() {
|
|
75
|
-
return this.i.
|
|
75
|
+
return this.i.g6;
|
|
76
76
|
}
|
|
77
77
|
set sortIndicatorStyle(v) {
|
|
78
|
-
this.i.
|
|
79
|
-
this._a("sortIndicatorStyle", enumToString(SortIndicatorStyle_$type, this.i.
|
|
78
|
+
this.i.g6 = ensureEnum(SortIndicatorStyle_$type, v);
|
|
79
|
+
this._a("sortIndicatorStyle", enumToString(SortIndicatorStyle_$type, this.i.g6));
|
|
80
80
|
}
|
|
81
81
|
get actualSortIndicatorStyle() {
|
|
82
|
-
return this.i.
|
|
82
|
+
return this.i.g5;
|
|
83
83
|
}
|
|
84
84
|
set actualSortIndicatorStyle(v) {
|
|
85
|
-
this.i.
|
|
86
|
-
this._a("actualSortIndicatorStyle", enumToString(SortIndicatorStyle_$type, this.i.
|
|
85
|
+
this.i.g5 = ensureEnum(SortIndicatorStyle_$type, v);
|
|
86
|
+
this._a("actualSortIndicatorStyle", enumToString(SortIndicatorStyle_$type, this.i.g5));
|
|
87
87
|
}
|
|
88
88
|
/**
|
|
89
89
|
* Gets or sets the amount of left padding to use for the cell content.
|
|
90
90
|
*/
|
|
91
91
|
get paddingLeft() {
|
|
92
|
-
return this.i.
|
|
92
|
+
return this.i.hc;
|
|
93
93
|
}
|
|
94
94
|
set paddingLeft(v) {
|
|
95
|
-
this.i.
|
|
96
|
-
this._a("paddingLeft", this.i.
|
|
95
|
+
this.i.hc = +v;
|
|
96
|
+
this._a("paddingLeft", this.i.hc);
|
|
97
97
|
}
|
|
98
98
|
/**
|
|
99
99
|
* Gets or sets the amount of top padding to use for the cell content.
|
|
100
100
|
*/
|
|
101
101
|
get paddingTop() {
|
|
102
|
-
return this.i.
|
|
102
|
+
return this.i.he;
|
|
103
103
|
}
|
|
104
104
|
set paddingTop(v) {
|
|
105
|
-
this.i.
|
|
106
|
-
this._a("paddingTop", this.i.
|
|
105
|
+
this.i.he = +v;
|
|
106
|
+
this._a("paddingTop", this.i.he);
|
|
107
107
|
}
|
|
108
108
|
/**
|
|
109
109
|
* Gets or sets the amount of right padding to use for the cell content.
|
|
110
110
|
*/
|
|
111
111
|
get paddingRight() {
|
|
112
|
-
return this.i.
|
|
112
|
+
return this.i.hd;
|
|
113
113
|
}
|
|
114
114
|
set paddingRight(v) {
|
|
115
|
-
this.i.
|
|
116
|
-
this._a("paddingRight", this.i.
|
|
115
|
+
this.i.hd = +v;
|
|
116
|
+
this._a("paddingRight", this.i.hd);
|
|
117
117
|
}
|
|
118
118
|
/**
|
|
119
119
|
* Gets or sets the amount of bottom padding to use for the cell content.
|
|
120
120
|
*/
|
|
121
121
|
get paddingBottom() {
|
|
122
|
-
return this.i.
|
|
122
|
+
return this.i.hb;
|
|
123
123
|
}
|
|
124
124
|
set paddingBottom(v) {
|
|
125
|
-
this.i.
|
|
126
|
-
this._a("paddingBottom", this.i.
|
|
125
|
+
this.i.hb = +v;
|
|
126
|
+
this._a("paddingBottom", this.i.hb);
|
|
127
127
|
}
|
|
128
128
|
}
|
|
129
129
|
IgcHeaderComponent._observedAttributesIgcHeaderComponent = null;
|
|
@@ -23,27 +23,27 @@ export class IgcImageCellInfo extends IgcCellInfo {
|
|
|
23
23
|
* Sets or gets the resource path to use to get the image for the cell.
|
|
24
24
|
*/
|
|
25
25
|
get imagePath() {
|
|
26
|
-
return this.i.
|
|
26
|
+
return this.i.ok;
|
|
27
27
|
}
|
|
28
28
|
set imagePath(v) {
|
|
29
|
-
this.i.
|
|
29
|
+
this.i.ok = v;
|
|
30
30
|
}
|
|
31
31
|
/**
|
|
32
32
|
* Sets or gets the image stretching behavior for the image.
|
|
33
33
|
*/
|
|
34
34
|
get imageStretchOption() {
|
|
35
|
-
return this.i.
|
|
35
|
+
return this.i.of;
|
|
36
36
|
}
|
|
37
37
|
set imageStretchOption(v) {
|
|
38
|
-
this.i.
|
|
38
|
+
this.i.of = ensureEnum(ImageStretchOptions_$type, v);
|
|
39
39
|
}
|
|
40
40
|
/**
|
|
41
41
|
* Sets or gets the image resource type. Indicates which type of resource should be fetched and how ImagePath should be interpreted.
|
|
42
42
|
*/
|
|
43
43
|
get imageResourceType() {
|
|
44
|
-
return this.i.
|
|
44
|
+
return this.i.od;
|
|
45
45
|
}
|
|
46
46
|
set imageResourceType(v) {
|
|
47
|
-
this.i.
|
|
47
|
+
this.i.od = ensureEnum(ImageResourceType_$type, v);
|
|
48
48
|
}
|
|
49
49
|
}
|
|
@@ -67,48 +67,48 @@ let IgcImageColumnComponent = /*@__PURE__*/ (() => {
|
|
|
67
67
|
* Gets or sets the stretch option to use when rendering images
|
|
68
68
|
*/
|
|
69
69
|
get imageStretchOption() {
|
|
70
|
-
return this.i.
|
|
70
|
+
return this.i.s4;
|
|
71
71
|
}
|
|
72
72
|
set imageStretchOption(v) {
|
|
73
|
-
this.i.
|
|
74
|
-
this._a("imageStretchOption", enumToString(ImageStretchOptions_$type, this.i.
|
|
73
|
+
this.i.s4 = ensureEnum(ImageStretchOptions_$type, v);
|
|
74
|
+
this._a("imageStretchOption", enumToString(ImageStretchOptions_$type, this.i.s4));
|
|
75
75
|
}
|
|
76
76
|
/**
|
|
77
77
|
* Gets or sets the editor type used for editing cells in this column.
|
|
78
78
|
*/
|
|
79
79
|
get editorType() {
|
|
80
|
-
return this.i.
|
|
80
|
+
return this.i.s0;
|
|
81
81
|
}
|
|
82
82
|
set editorType(v) {
|
|
83
|
-
this.i.
|
|
84
|
-
this._a("editorType", enumToString(EditorType_$type, this.i.
|
|
83
|
+
this.i.s0 = ensureEnum(EditorType_$type, v);
|
|
84
|
+
this._a("editorType", enumToString(EditorType_$type, this.i.s0));
|
|
85
85
|
}
|
|
86
86
|
/**
|
|
87
87
|
* Gets or sets the ComboBox data source.
|
|
88
88
|
*/
|
|
89
89
|
get editorDataSource() {
|
|
90
|
-
return this.i.
|
|
90
|
+
return this.i.s5;
|
|
91
91
|
}
|
|
92
92
|
set editorDataSource(v) {
|
|
93
|
-
this.i.
|
|
93
|
+
this.i.s5 = v;
|
|
94
94
|
}
|
|
95
95
|
/**
|
|
96
96
|
* Gets or sets the ComboBox text field.
|
|
97
97
|
*/
|
|
98
98
|
get editorTextField() {
|
|
99
|
-
return this.i.
|
|
99
|
+
return this.i.s6;
|
|
100
100
|
}
|
|
101
101
|
set editorTextField(v) {
|
|
102
|
-
this.i.
|
|
102
|
+
this.i.s6 = v;
|
|
103
103
|
}
|
|
104
104
|
/**
|
|
105
105
|
* Gets or sets the ComboBox value field.
|
|
106
106
|
*/
|
|
107
107
|
get editorValueField() {
|
|
108
|
-
return this.i.
|
|
108
|
+
return this.i.s7;
|
|
109
109
|
}
|
|
110
110
|
set editorValueField(v) {
|
|
111
|
-
this.i.
|
|
111
|
+
this.i.s7 = v;
|
|
112
112
|
}
|
|
113
113
|
}
|
|
114
114
|
IgcImageColumnComponent._observedAttributesIgcImageColumnComponent = null;
|
|
@@ -327,36 +327,68 @@ let IgcMultiColumnComboBoxComponent = /*@__PURE__*/ (() => {
|
|
|
327
327
|
}
|
|
328
328
|
set contentPaddingBottom(v) {
|
|
329
329
|
this.ensureContentPadding();
|
|
330
|
-
|
|
330
|
+
const __nv = +v;
|
|
331
|
+
if (this.i.im.bottom === __nv) {
|
|
332
|
+
return;
|
|
333
|
+
}
|
|
334
|
+
const __copy = new Thickness(2);
|
|
335
|
+
__copy.bottom = __nv;
|
|
336
|
+
__copy.left = this.i.im.left;
|
|
337
|
+
__copy.right = this.i.im.right;
|
|
338
|
+
__copy.top = this.i.im.top;
|
|
339
|
+
this.i.im = __copy;
|
|
331
340
|
this._a("contentPaddingBottom", this.i.im.bottom);
|
|
332
|
-
this.i.im = this.i.im;
|
|
333
341
|
}
|
|
334
342
|
get contentPaddingLeft() {
|
|
335
343
|
return this.i.im ? this.i.im.left : NaN;
|
|
336
344
|
}
|
|
337
345
|
set contentPaddingLeft(v) {
|
|
338
346
|
this.ensureContentPadding();
|
|
339
|
-
|
|
347
|
+
const __nv = +v;
|
|
348
|
+
if (this.i.im.left === __nv) {
|
|
349
|
+
return;
|
|
350
|
+
}
|
|
351
|
+
const __copy = new Thickness(2);
|
|
352
|
+
__copy.left = __nv;
|
|
353
|
+
__copy.bottom = this.i.im.bottom;
|
|
354
|
+
__copy.right = this.i.im.right;
|
|
355
|
+
__copy.top = this.i.im.top;
|
|
356
|
+
this.i.im = __copy;
|
|
340
357
|
this._a("contentPaddingLeft", this.i.im.left);
|
|
341
|
-
this.i.im = this.i.im;
|
|
342
358
|
}
|
|
343
359
|
get contentPaddingRight() {
|
|
344
360
|
return this.i.im ? this.i.im.right : NaN;
|
|
345
361
|
}
|
|
346
362
|
set contentPaddingRight(v) {
|
|
347
363
|
this.ensureContentPadding();
|
|
348
|
-
|
|
364
|
+
const __nv = +v;
|
|
365
|
+
if (this.i.im.right === __nv) {
|
|
366
|
+
return;
|
|
367
|
+
}
|
|
368
|
+
const __copy = new Thickness(2);
|
|
369
|
+
__copy.right = __nv;
|
|
370
|
+
__copy.bottom = this.i.im.bottom;
|
|
371
|
+
__copy.left = this.i.im.left;
|
|
372
|
+
__copy.top = this.i.im.top;
|
|
373
|
+
this.i.im = __copy;
|
|
349
374
|
this._a("contentPaddingRight", this.i.im.right);
|
|
350
|
-
this.i.im = this.i.im;
|
|
351
375
|
}
|
|
352
376
|
get contentPaddingTop() {
|
|
353
377
|
return this.i.im ? this.i.im.top : NaN;
|
|
354
378
|
}
|
|
355
379
|
set contentPaddingTop(v) {
|
|
356
380
|
this.ensureContentPadding();
|
|
357
|
-
|
|
381
|
+
const __nv = +v;
|
|
382
|
+
if (this.i.im.top === __nv) {
|
|
383
|
+
return;
|
|
384
|
+
}
|
|
385
|
+
const __copy = new Thickness(2);
|
|
386
|
+
__copy.top = __nv;
|
|
387
|
+
__copy.bottom = this.i.im.bottom;
|
|
388
|
+
__copy.left = this.i.im.left;
|
|
389
|
+
__copy.right = this.i.im.right;
|
|
390
|
+
this.i.im = __copy;
|
|
358
391
|
this._a("contentPaddingTop", this.i.im.top);
|
|
359
|
-
this.i.im = this.i.im;
|
|
360
392
|
}
|
|
361
393
|
ensureContentPadding() {
|
|
362
394
|
if (this.i.im) {
|
|
@@ -369,36 +401,68 @@ let IgcMultiColumnComboBoxComponent = /*@__PURE__*/ (() => {
|
|
|
369
401
|
}
|
|
370
402
|
set actualContentPaddingBottom(v) {
|
|
371
403
|
this.ensureActualContentPadding();
|
|
372
|
-
|
|
404
|
+
const __nv = +v;
|
|
405
|
+
if (this.i.il.bottom === __nv) {
|
|
406
|
+
return;
|
|
407
|
+
}
|
|
408
|
+
const __copy = new Thickness(2);
|
|
409
|
+
__copy.bottom = __nv;
|
|
410
|
+
__copy.left = this.i.il.left;
|
|
411
|
+
__copy.right = this.i.il.right;
|
|
412
|
+
__copy.top = this.i.il.top;
|
|
413
|
+
this.i.il = __copy;
|
|
373
414
|
this._a("actualContentPaddingBottom", this.i.il.bottom);
|
|
374
|
-
this.i.il = this.i.il;
|
|
375
415
|
}
|
|
376
416
|
get actualContentPaddingLeft() {
|
|
377
417
|
return this.i.il ? this.i.il.left : NaN;
|
|
378
418
|
}
|
|
379
419
|
set actualContentPaddingLeft(v) {
|
|
380
420
|
this.ensureActualContentPadding();
|
|
381
|
-
|
|
421
|
+
const __nv = +v;
|
|
422
|
+
if (this.i.il.left === __nv) {
|
|
423
|
+
return;
|
|
424
|
+
}
|
|
425
|
+
const __copy = new Thickness(2);
|
|
426
|
+
__copy.left = __nv;
|
|
427
|
+
__copy.bottom = this.i.il.bottom;
|
|
428
|
+
__copy.right = this.i.il.right;
|
|
429
|
+
__copy.top = this.i.il.top;
|
|
430
|
+
this.i.il = __copy;
|
|
382
431
|
this._a("actualContentPaddingLeft", this.i.il.left);
|
|
383
|
-
this.i.il = this.i.il;
|
|
384
432
|
}
|
|
385
433
|
get actualContentPaddingRight() {
|
|
386
434
|
return this.i.il ? this.i.il.right : NaN;
|
|
387
435
|
}
|
|
388
436
|
set actualContentPaddingRight(v) {
|
|
389
437
|
this.ensureActualContentPadding();
|
|
390
|
-
|
|
438
|
+
const __nv = +v;
|
|
439
|
+
if (this.i.il.right === __nv) {
|
|
440
|
+
return;
|
|
441
|
+
}
|
|
442
|
+
const __copy = new Thickness(2);
|
|
443
|
+
__copy.right = __nv;
|
|
444
|
+
__copy.bottom = this.i.il.bottom;
|
|
445
|
+
__copy.left = this.i.il.left;
|
|
446
|
+
__copy.top = this.i.il.top;
|
|
447
|
+
this.i.il = __copy;
|
|
391
448
|
this._a("actualContentPaddingRight", this.i.il.right);
|
|
392
|
-
this.i.il = this.i.il;
|
|
393
449
|
}
|
|
394
450
|
get actualContentPaddingTop() {
|
|
395
451
|
return this.i.il ? this.i.il.top : NaN;
|
|
396
452
|
}
|
|
397
453
|
set actualContentPaddingTop(v) {
|
|
398
454
|
this.ensureActualContentPadding();
|
|
399
|
-
|
|
455
|
+
const __nv = +v;
|
|
456
|
+
if (this.i.il.top === __nv) {
|
|
457
|
+
return;
|
|
458
|
+
}
|
|
459
|
+
const __copy = new Thickness(2);
|
|
460
|
+
__copy.top = __nv;
|
|
461
|
+
__copy.bottom = this.i.il.bottom;
|
|
462
|
+
__copy.left = this.i.il.left;
|
|
463
|
+
__copy.right = this.i.il.right;
|
|
464
|
+
this.i.il = __copy;
|
|
400
465
|
this._a("actualContentPaddingTop", this.i.il.top);
|
|
401
|
-
this.i.il = this.i.il;
|
|
402
466
|
}
|
|
403
467
|
ensureActualContentPadding() {
|
|
404
468
|
if (this.i.il) {
|
|
@@ -411,36 +475,68 @@ let IgcMultiColumnComboBoxComponent = /*@__PURE__*/ (() => {
|
|
|
411
475
|
}
|
|
412
476
|
set cornerRadiusBottomRight(v) {
|
|
413
477
|
this.ensureCornerRadius();
|
|
414
|
-
|
|
478
|
+
const __nv = +v;
|
|
479
|
+
if (this.i.gx.c === __nv) {
|
|
480
|
+
return;
|
|
481
|
+
}
|
|
482
|
+
const __copy = new CornerRadius(2);
|
|
483
|
+
__copy.c = __nv;
|
|
484
|
+
__copy.b = this.i.gx.b;
|
|
485
|
+
__copy.d = this.i.gx.d;
|
|
486
|
+
__copy.e = this.i.gx.e;
|
|
487
|
+
this.i.gx = __copy;
|
|
415
488
|
this._a("cornerRadiusBottomRight", this.i.gx.c);
|
|
416
|
-
this.i.gx = this.i.gx;
|
|
417
489
|
}
|
|
418
490
|
get cornerRadiusBottomLeft() {
|
|
419
491
|
return this.i.gx ? this.i.gx.b : NaN;
|
|
420
492
|
}
|
|
421
493
|
set cornerRadiusBottomLeft(v) {
|
|
422
494
|
this.ensureCornerRadius();
|
|
423
|
-
|
|
495
|
+
const __nv = +v;
|
|
496
|
+
if (this.i.gx.b === __nv) {
|
|
497
|
+
return;
|
|
498
|
+
}
|
|
499
|
+
const __copy = new CornerRadius(2);
|
|
500
|
+
__copy.b = __nv;
|
|
501
|
+
__copy.c = this.i.gx.c;
|
|
502
|
+
__copy.d = this.i.gx.d;
|
|
503
|
+
__copy.e = this.i.gx.e;
|
|
504
|
+
this.i.gx = __copy;
|
|
424
505
|
this._a("cornerRadiusBottomLeft", this.i.gx.b);
|
|
425
|
-
this.i.gx = this.i.gx;
|
|
426
506
|
}
|
|
427
507
|
get cornerRadiusTopLeft() {
|
|
428
508
|
return this.i.gx ? this.i.gx.d : NaN;
|
|
429
509
|
}
|
|
430
510
|
set cornerRadiusTopLeft(v) {
|
|
431
511
|
this.ensureCornerRadius();
|
|
432
|
-
|
|
512
|
+
const __nv = +v;
|
|
513
|
+
if (this.i.gx.d === __nv) {
|
|
514
|
+
return;
|
|
515
|
+
}
|
|
516
|
+
const __copy = new CornerRadius(2);
|
|
517
|
+
__copy.d = __nv;
|
|
518
|
+
__copy.c = this.i.gx.c;
|
|
519
|
+
__copy.b = this.i.gx.b;
|
|
520
|
+
__copy.e = this.i.gx.e;
|
|
521
|
+
this.i.gx = __copy;
|
|
433
522
|
this._a("cornerRadiusTopLeft", this.i.gx.d);
|
|
434
|
-
this.i.gx = this.i.gx;
|
|
435
523
|
}
|
|
436
524
|
get cornerRadiusTopRight() {
|
|
437
525
|
return this.i.gx ? this.i.gx.e : NaN;
|
|
438
526
|
}
|
|
439
527
|
set cornerRadiusTopRight(v) {
|
|
440
528
|
this.ensureCornerRadius();
|
|
441
|
-
|
|
529
|
+
const __nv = +v;
|
|
530
|
+
if (this.i.gx.e === __nv) {
|
|
531
|
+
return;
|
|
532
|
+
}
|
|
533
|
+
const __copy = new CornerRadius(2);
|
|
534
|
+
__copy.e = __nv;
|
|
535
|
+
__copy.c = this.i.gx.c;
|
|
536
|
+
__copy.b = this.i.gx.b;
|
|
537
|
+
__copy.d = this.i.gx.d;
|
|
538
|
+
this.i.gx = __copy;
|
|
442
539
|
this._a("cornerRadiusTopRight", this.i.gx.e);
|
|
443
|
-
this.i.gx = this.i.gx;
|
|
444
540
|
}
|
|
445
541
|
ensureCornerRadius() {
|
|
446
542
|
if (this.i.gx) {
|
|
@@ -453,36 +549,68 @@ let IgcMultiColumnComboBoxComponent = /*@__PURE__*/ (() => {
|
|
|
453
549
|
}
|
|
454
550
|
set actualCornerRadiusBottomRight(v) {
|
|
455
551
|
this.ensureActualCornerRadius();
|
|
456
|
-
|
|
552
|
+
const __nv = +v;
|
|
553
|
+
if (this.i.gw.c === __nv) {
|
|
554
|
+
return;
|
|
555
|
+
}
|
|
556
|
+
const __copy = new CornerRadius(2);
|
|
557
|
+
__copy.c = __nv;
|
|
558
|
+
__copy.b = this.i.gw.b;
|
|
559
|
+
__copy.d = this.i.gw.d;
|
|
560
|
+
__copy.e = this.i.gw.e;
|
|
561
|
+
this.i.gw = __copy;
|
|
457
562
|
this._a("actualCornerRadiusBottomRight", this.i.gw.c);
|
|
458
|
-
this.i.gw = this.i.gw;
|
|
459
563
|
}
|
|
460
564
|
get actualCornerRadiusBottomLeft() {
|
|
461
565
|
return this.i.gw ? this.i.gw.b : NaN;
|
|
462
566
|
}
|
|
463
567
|
set actualCornerRadiusBottomLeft(v) {
|
|
464
568
|
this.ensureActualCornerRadius();
|
|
465
|
-
|
|
569
|
+
const __nv = +v;
|
|
570
|
+
if (this.i.gw.b === __nv) {
|
|
571
|
+
return;
|
|
572
|
+
}
|
|
573
|
+
const __copy = new CornerRadius(2);
|
|
574
|
+
__copy.b = __nv;
|
|
575
|
+
__copy.c = this.i.gw.c;
|
|
576
|
+
__copy.d = this.i.gw.d;
|
|
577
|
+
__copy.e = this.i.gw.e;
|
|
578
|
+
this.i.gw = __copy;
|
|
466
579
|
this._a("actualCornerRadiusBottomLeft", this.i.gw.b);
|
|
467
|
-
this.i.gw = this.i.gw;
|
|
468
580
|
}
|
|
469
581
|
get actualCornerRadiusTopLeft() {
|
|
470
582
|
return this.i.gw ? this.i.gw.d : NaN;
|
|
471
583
|
}
|
|
472
584
|
set actualCornerRadiusTopLeft(v) {
|
|
473
585
|
this.ensureActualCornerRadius();
|
|
474
|
-
|
|
586
|
+
const __nv = +v;
|
|
587
|
+
if (this.i.gw.d === __nv) {
|
|
588
|
+
return;
|
|
589
|
+
}
|
|
590
|
+
const __copy = new CornerRadius(2);
|
|
591
|
+
__copy.d = __nv;
|
|
592
|
+
__copy.c = this.i.gw.c;
|
|
593
|
+
__copy.b = this.i.gw.b;
|
|
594
|
+
__copy.e = this.i.gw.e;
|
|
595
|
+
this.i.gw = __copy;
|
|
475
596
|
this._a("actualCornerRadiusTopLeft", this.i.gw.d);
|
|
476
|
-
this.i.gw = this.i.gw;
|
|
477
597
|
}
|
|
478
598
|
get actualCornerRadiusTopRight() {
|
|
479
599
|
return this.i.gw ? this.i.gw.e : NaN;
|
|
480
600
|
}
|
|
481
601
|
set actualCornerRadiusTopRight(v) {
|
|
482
602
|
this.ensureActualCornerRadius();
|
|
483
|
-
|
|
603
|
+
const __nv = +v;
|
|
604
|
+
if (this.i.gw.e === __nv) {
|
|
605
|
+
return;
|
|
606
|
+
}
|
|
607
|
+
const __copy = new CornerRadius(2);
|
|
608
|
+
__copy.e = __nv;
|
|
609
|
+
__copy.c = this.i.gw.c;
|
|
610
|
+
__copy.b = this.i.gw.b;
|
|
611
|
+
__copy.d = this.i.gw.d;
|
|
612
|
+
this.i.gw = __copy;
|
|
484
613
|
this._a("actualCornerRadiusTopRight", this.i.gw.e);
|
|
485
|
-
this.i.gw = this.i.gw;
|
|
486
614
|
}
|
|
487
615
|
ensureActualCornerRadius() {
|
|
488
616
|
if (this.i.gw) {
|