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
|
@@ -55,96 +55,96 @@ let IgcSummaryRowComponent = /*@__PURE__*/ (() => {
|
|
|
55
55
|
* Gets or sets the background color for summary cells when selected.
|
|
56
56
|
*/
|
|
57
57
|
get selectedBackground() {
|
|
58
|
-
return brushToString(this.i.
|
|
58
|
+
return brushToString(this.i.h0);
|
|
59
59
|
}
|
|
60
60
|
set selectedBackground(v) {
|
|
61
|
-
this.i.
|
|
62
|
-
this._a("selectedBackground", brushToString(this.i.
|
|
61
|
+
this.i.h0 = stringToBrush(v);
|
|
62
|
+
this._a("selectedBackground", brushToString(this.i.h0));
|
|
63
63
|
}
|
|
64
64
|
/**
|
|
65
65
|
* Gets the actual background color for summary cells when selected.
|
|
66
66
|
*/
|
|
67
67
|
get actualSelectedBackground() {
|
|
68
|
-
return brushToString(this.i.
|
|
68
|
+
return brushToString(this.i.hx);
|
|
69
69
|
}
|
|
70
70
|
set actualSelectedBackground(v) {
|
|
71
|
-
this.i.
|
|
72
|
-
this._a("actualSelectedBackground", brushToString(this.i.
|
|
71
|
+
this.i.hx = stringToBrush(v);
|
|
72
|
+
this._a("actualSelectedBackground", brushToString(this.i.hx));
|
|
73
73
|
}
|
|
74
74
|
/**
|
|
75
75
|
* Gets or sets the text color for the summary labels.
|
|
76
76
|
*/
|
|
77
77
|
get summaryLabelTextColor() {
|
|
78
|
-
return brushToString(this.i.
|
|
78
|
+
return brushToString(this.i.h1);
|
|
79
79
|
}
|
|
80
80
|
set summaryLabelTextColor(v) {
|
|
81
|
-
this.i.
|
|
82
|
-
this._a("summaryLabelTextColor", brushToString(this.i.
|
|
81
|
+
this.i.h1 = stringToBrush(v);
|
|
82
|
+
this._a("summaryLabelTextColor", brushToString(this.i.h1));
|
|
83
83
|
}
|
|
84
84
|
/**
|
|
85
85
|
* Gets the actual text color for the summary labels.
|
|
86
86
|
*/
|
|
87
87
|
get actualSummaryLabelTextColor() {
|
|
88
|
-
return brushToString(this.i.
|
|
88
|
+
return brushToString(this.i.hy);
|
|
89
89
|
}
|
|
90
90
|
set actualSummaryLabelTextColor(v) {
|
|
91
|
-
this.i.
|
|
92
|
-
this._a("actualSummaryLabelTextColor", brushToString(this.i.
|
|
91
|
+
this.i.hy = stringToBrush(v);
|
|
92
|
+
this._a("actualSummaryLabelTextColor", brushToString(this.i.hy));
|
|
93
93
|
}
|
|
94
94
|
/**
|
|
95
95
|
* Gets or sets the text style for the summary labels.
|
|
96
96
|
*/
|
|
97
|
-
get
|
|
98
|
-
if (this.i.
|
|
97
|
+
get summaryLabelTextStyle() {
|
|
98
|
+
if (this.i.summaryLabelTextStyle == null) {
|
|
99
99
|
return null;
|
|
100
100
|
}
|
|
101
|
-
return this.i.
|
|
101
|
+
return this.i.summaryLabelTextStyle.fontString;
|
|
102
102
|
}
|
|
103
|
-
set
|
|
103
|
+
set summaryLabelTextStyle(v) {
|
|
104
104
|
let fi = new FontInfo();
|
|
105
105
|
fi.fontString = v;
|
|
106
|
-
this.i.
|
|
107
|
-
this._a("
|
|
106
|
+
this.i.summaryLabelTextStyle = fi;
|
|
107
|
+
this._a("summaryLabelTextStyle", this.i.summaryLabelTextStyle != null ? this.i.summaryLabelTextStyle.fontString : "");
|
|
108
108
|
}
|
|
109
109
|
/**
|
|
110
110
|
* Gets or sets the amount of left padding to use for the cell content for this column.
|
|
111
111
|
*/
|
|
112
112
|
get paddingLeft() {
|
|
113
|
-
return this.i.
|
|
113
|
+
return this.i.hd;
|
|
114
114
|
}
|
|
115
115
|
set paddingLeft(v) {
|
|
116
|
-
this.i.
|
|
117
|
-
this._a("paddingLeft", this.i.
|
|
116
|
+
this.i.hd = +v;
|
|
117
|
+
this._a("paddingLeft", this.i.hd);
|
|
118
118
|
}
|
|
119
119
|
/**
|
|
120
120
|
* Gets or sets the amount of top padding to use for the cell content for this column.
|
|
121
121
|
*/
|
|
122
122
|
get paddingTop() {
|
|
123
|
-
return this.i.
|
|
123
|
+
return this.i.hf;
|
|
124
124
|
}
|
|
125
125
|
set paddingTop(v) {
|
|
126
|
-
this.i.
|
|
127
|
-
this._a("paddingTop", this.i.
|
|
126
|
+
this.i.hf = +v;
|
|
127
|
+
this._a("paddingTop", this.i.hf);
|
|
128
128
|
}
|
|
129
129
|
/**
|
|
130
130
|
* Gets or sets the amount of right padding to use for the cell content of this column.
|
|
131
131
|
*/
|
|
132
132
|
get paddingRight() {
|
|
133
|
-
return this.i.
|
|
133
|
+
return this.i.he;
|
|
134
134
|
}
|
|
135
135
|
set paddingRight(v) {
|
|
136
|
-
this.i.
|
|
137
|
-
this._a("paddingRight", this.i.
|
|
136
|
+
this.i.he = +v;
|
|
137
|
+
this._a("paddingRight", this.i.he);
|
|
138
138
|
}
|
|
139
139
|
/**
|
|
140
140
|
* Gets or sets the amount of bottom padding to use for the cell content of this column.
|
|
141
141
|
*/
|
|
142
142
|
get paddingBottom() {
|
|
143
|
-
return this.i.
|
|
143
|
+
return this.i.hc;
|
|
144
144
|
}
|
|
145
145
|
set paddingBottom(v) {
|
|
146
|
-
this.i.
|
|
147
|
-
this._a("paddingBottom", this.i.
|
|
146
|
+
this.i.hc = +v;
|
|
147
|
+
this._a("paddingBottom", this.i.hc);
|
|
148
148
|
}
|
|
149
149
|
}
|
|
150
150
|
IgcSummaryRowComponent._observedAttributesIgcSummaryRowComponent = null;
|
|
@@ -4,11 +4,13 @@ https://www.infragistics.com/legal/license/igultimate-la
|
|
|
4
4
|
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
5
|
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
6
|
*/
|
|
7
|
+
import { IgcSummaryCellInfo } from './igc-summary-cell-info';
|
|
7
8
|
import { IgcSummaryRowRootComponent } from './igc-summary-row-root-component';
|
|
8
9
|
import { SummaryRowRoot } from './SummaryRowRoot';
|
|
9
10
|
import { TypeRegistrar } from "igniteui-webcomponents-core";
|
|
10
11
|
export class IgcSummaryRowRootModule {
|
|
11
12
|
static register() {
|
|
13
|
+
TypeRegistrar.registerCons("IgcSummaryCellInfo", IgcSummaryCellInfo);
|
|
12
14
|
IgcSummaryRowRootComponent.register();
|
|
13
15
|
TypeRegistrar.registerCons("IgcSummaryRowRootComponent", IgcSummaryRowRootComponent);
|
|
14
16
|
TypeRegistrar.register("SummaryRowRoot", SummaryRowRoot.$type);
|
|
@@ -4,11 +4,13 @@ https://www.infragistics.com/legal/license/igultimate-la
|
|
|
4
4
|
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
5
|
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
6
|
*/
|
|
7
|
+
import { IgcSummaryCellInfo } from './igc-summary-cell-info';
|
|
7
8
|
import { IgcSummaryRowSectionComponent } from './igc-summary-row-section-component';
|
|
8
9
|
import { SummaryRowSection } from './SummaryRowSection';
|
|
9
10
|
import { TypeRegistrar } from "igniteui-webcomponents-core";
|
|
10
11
|
export class IgcSummaryRowSectionModule {
|
|
11
12
|
static register() {
|
|
13
|
+
TypeRegistrar.registerCons("IgcSummaryCellInfo", IgcSummaryCellInfo);
|
|
12
14
|
IgcSummaryRowSectionComponent.register();
|
|
13
15
|
TypeRegistrar.registerCons("IgcSummaryRowSectionComponent", IgcSummaryRowSectionComponent);
|
|
14
16
|
TypeRegistrar.register("SummaryRowSection", SummaryRowSection.$type);
|
|
@@ -21,9 +21,9 @@ export class IgcTemplateHeaderCellInfo extends IgcTemplateCellInfo {
|
|
|
21
21
|
* Sets or gets whether the filter UI should be visible in the header.
|
|
22
22
|
*/
|
|
23
23
|
get isFilterUIVisible() {
|
|
24
|
-
return this.i.
|
|
24
|
+
return this.i.oh;
|
|
25
25
|
}
|
|
26
26
|
set isFilterUIVisible(v) {
|
|
27
|
-
this.i.
|
|
27
|
+
this.i.oh = ensureBool(v);
|
|
28
28
|
}
|
|
29
29
|
}
|
|
@@ -66,38 +66,38 @@ let IgcTextColumnComponent = /*@__PURE__*/ (() => {
|
|
|
66
66
|
* Gets or sets the editor type used for editing cells in this column.
|
|
67
67
|
*/
|
|
68
68
|
get editorType() {
|
|
69
|
-
return this.i.
|
|
69
|
+
return this.i.s0;
|
|
70
70
|
}
|
|
71
71
|
set editorType(v) {
|
|
72
|
-
this.i.
|
|
73
|
-
this._a("editorType", enumToString(EditorType_$type, this.i.
|
|
72
|
+
this.i.s0 = ensureEnum(EditorType_$type, v);
|
|
73
|
+
this._a("editorType", enumToString(EditorType_$type, this.i.s0));
|
|
74
74
|
}
|
|
75
75
|
/**
|
|
76
76
|
* Gets or sets the ComboBox data source.
|
|
77
77
|
*/
|
|
78
78
|
get editorDataSource() {
|
|
79
|
-
return this.i.
|
|
79
|
+
return this.i.s1;
|
|
80
80
|
}
|
|
81
81
|
set editorDataSource(v) {
|
|
82
|
-
this.i.
|
|
82
|
+
this.i.s1 = v;
|
|
83
83
|
}
|
|
84
84
|
/**
|
|
85
85
|
* Gets or sets the ComboBox text field.
|
|
86
86
|
*/
|
|
87
87
|
get editorTextField() {
|
|
88
|
-
return this.i.
|
|
88
|
+
return this.i.s3;
|
|
89
89
|
}
|
|
90
90
|
set editorTextField(v) {
|
|
91
|
-
this.i.
|
|
91
|
+
this.i.s3 = v;
|
|
92
92
|
}
|
|
93
93
|
/**
|
|
94
94
|
* Gets or sets the ComboBox value field.
|
|
95
95
|
*/
|
|
96
96
|
get editorValueField() {
|
|
97
|
-
return this.i.
|
|
97
|
+
return this.i.s4;
|
|
98
98
|
}
|
|
99
99
|
set editorValueField(v) {
|
|
100
|
-
this.i.
|
|
100
|
+
this.i.s4 = v;
|
|
101
101
|
}
|
|
102
102
|
}
|
|
103
103
|
IgcTextColumnComponent._observedAttributesIgcTextColumnComponent = null;
|
|
@@ -26,157 +26,184 @@ export class IgcTextHeaderCellInfo extends IgcTextCellInfo {
|
|
|
26
26
|
* Sets or gets whether the filter UI should be visible in the header.
|
|
27
27
|
*/
|
|
28
28
|
get isColumnOptionsEnabled() {
|
|
29
|
-
return this.i.
|
|
29
|
+
return this.i.ot;
|
|
30
30
|
}
|
|
31
31
|
set isColumnOptionsEnabled(v) {
|
|
32
|
-
this.i.
|
|
32
|
+
this.i.ot = ensureBool(v);
|
|
33
33
|
}
|
|
34
34
|
get sortIndicatorStyle() {
|
|
35
|
-
return this.i.
|
|
35
|
+
return this.i.ol;
|
|
36
36
|
}
|
|
37
37
|
set sortIndicatorStyle(v) {
|
|
38
|
-
this.i.
|
|
38
|
+
this.i.ol = ensureEnum(SortIndicatorStyle_$type, v);
|
|
39
39
|
}
|
|
40
40
|
/**
|
|
41
41
|
* Gets or sets the alignment of the column options icon within the header cell.
|
|
42
42
|
*/
|
|
43
43
|
get columnOptionsIconAlignment() {
|
|
44
|
-
return this.i.
|
|
44
|
+
return this.i.oh;
|
|
45
45
|
}
|
|
46
46
|
set columnOptionsIconAlignment(v) {
|
|
47
|
-
this.i.
|
|
47
|
+
this.i.oh = ensureEnum(ColumnOptionsIconAlignment_$type, v);
|
|
48
48
|
}
|
|
49
49
|
/**
|
|
50
50
|
* Gets or sets the color for the column options icon in the header.
|
|
51
51
|
*/
|
|
52
52
|
get columnOptionsIconColor() {
|
|
53
|
-
return brushToString(this.i.
|
|
53
|
+
return brushToString(this.i.qo);
|
|
54
54
|
}
|
|
55
55
|
set columnOptionsIconColor(v) {
|
|
56
|
-
this.i.
|
|
56
|
+
this.i.qo = stringToBrush(v);
|
|
57
57
|
}
|
|
58
58
|
/**
|
|
59
59
|
* Gets or sets how the column option icon will behave in the header.
|
|
60
60
|
*/
|
|
61
61
|
get columnOptionsIconBehavior() {
|
|
62
|
-
return this.i.
|
|
62
|
+
return this.i.oj;
|
|
63
63
|
}
|
|
64
64
|
set columnOptionsIconBehavior(v) {
|
|
65
|
-
this.i.
|
|
65
|
+
this.i.oj = ensureEnum(ColumnOptionsIconBehavior_$type, v);
|
|
66
66
|
}
|
|
67
67
|
/**
|
|
68
68
|
* Gets or sets the column options theme.
|
|
69
69
|
*/
|
|
70
70
|
get columnOptionsTheme() {
|
|
71
|
-
return this.i.
|
|
71
|
+
return this.i.on;
|
|
72
72
|
}
|
|
73
73
|
set columnOptionsTheme(v) {
|
|
74
|
-
this.i.
|
|
74
|
+
this.i.on = ensureEnum(BaseControlTheme_$type, v);
|
|
75
75
|
}
|
|
76
76
|
/**
|
|
77
77
|
* Gets or sets the column options dropdown background color.
|
|
78
78
|
*/
|
|
79
79
|
get columnOptionsBackground() {
|
|
80
|
-
return brushToString(this.i.
|
|
80
|
+
return brushToString(this.i.qj);
|
|
81
81
|
}
|
|
82
82
|
set columnOptionsBackground(v) {
|
|
83
|
-
this.i.
|
|
83
|
+
this.i.qj = stringToBrush(v);
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* Gets or sets the scrollbar background color for checkbox lists in the column options dialog.
|
|
87
|
+
*/
|
|
88
|
+
get columnOptionsScrollbarBackground() {
|
|
89
|
+
return brushToString(this.i.qq);
|
|
90
|
+
}
|
|
91
|
+
set columnOptionsScrollbarBackground(v) {
|
|
92
|
+
this.i.qq = stringToBrush(v);
|
|
93
|
+
}
|
|
94
|
+
/**
|
|
95
|
+
* Gets or sets the scrollbar thumb hover background color for checkbox lists in the column options dialog.
|
|
96
|
+
*/
|
|
97
|
+
get columnOptionsScrollbarHoverBackground() {
|
|
98
|
+
return brushToString(this.i.qr);
|
|
99
|
+
}
|
|
100
|
+
set columnOptionsScrollbarHoverBackground(v) {
|
|
101
|
+
this.i.qr = stringToBrush(v);
|
|
102
|
+
}
|
|
103
|
+
/**
|
|
104
|
+
* Gets or sets the scrollbar thumb active (dragging) background color for checkbox lists in the column options dialog.
|
|
105
|
+
*/
|
|
106
|
+
get columnOptionsScrollbarActiveBackground() {
|
|
107
|
+
return brushToString(this.i.qp);
|
|
108
|
+
}
|
|
109
|
+
set columnOptionsScrollbarActiveBackground(v) {
|
|
110
|
+
this.i.qp = stringToBrush(v);
|
|
84
111
|
}
|
|
85
112
|
/**
|
|
86
113
|
* Gets or sets the text color for text inside the column options menu.
|
|
87
114
|
*/
|
|
88
115
|
get columnOptionsTextColor() {
|
|
89
|
-
return brushToString(this.i.
|
|
116
|
+
return brushToString(this.i.qt);
|
|
90
117
|
}
|
|
91
118
|
set columnOptionsTextColor(v) {
|
|
92
|
-
this.i.
|
|
119
|
+
this.i.qt = stringToBrush(v);
|
|
93
120
|
}
|
|
94
121
|
/**
|
|
95
122
|
* Gets or sets the font settings for text inside the column options menu.
|
|
96
123
|
*/
|
|
97
124
|
get columnOptionsTextStyle() {
|
|
98
|
-
if (this.i.
|
|
125
|
+
if (this.i.or == null) {
|
|
99
126
|
return null;
|
|
100
127
|
}
|
|
101
|
-
return this.i.
|
|
128
|
+
return this.i.or.fontString;
|
|
102
129
|
}
|
|
103
130
|
set columnOptionsTextStyle(v) {
|
|
104
131
|
let fi = new FontInfo();
|
|
105
132
|
fi.fontString = v;
|
|
106
|
-
this.i.
|
|
133
|
+
this.i.or = fi;
|
|
107
134
|
}
|
|
108
135
|
get columnOptionsHoverBackgroundColor() {
|
|
109
|
-
return brushToString(this.i.
|
|
136
|
+
return brushToString(this.i.qn);
|
|
110
137
|
}
|
|
111
138
|
set columnOptionsHoverBackgroundColor(v) {
|
|
112
|
-
this.i.
|
|
139
|
+
this.i.qn = stringToBrush(v);
|
|
113
140
|
}
|
|
114
141
|
get columnOptionsToolTipBackgroundColor() {
|
|
115
|
-
return brushToString(this.i.
|
|
142
|
+
return brushToString(this.i.qu);
|
|
116
143
|
}
|
|
117
144
|
set columnOptionsToolTipBackgroundColor(v) {
|
|
118
|
-
this.i.
|
|
145
|
+
this.i.qu = stringToBrush(v);
|
|
119
146
|
}
|
|
120
147
|
get columnOptionsToolTipTextColor() {
|
|
121
|
-
return brushToString(this.i.
|
|
148
|
+
return brushToString(this.i.qv);
|
|
122
149
|
}
|
|
123
150
|
set columnOptionsToolTipTextColor(v) {
|
|
124
|
-
this.i.
|
|
151
|
+
this.i.qv = stringToBrush(v);
|
|
125
152
|
}
|
|
126
153
|
get columnOptionsHighlightColor() {
|
|
127
|
-
return brushToString(this.i.
|
|
154
|
+
return brushToString(this.i.qm);
|
|
128
155
|
}
|
|
129
156
|
set columnOptionsHighlightColor(v) {
|
|
130
|
-
this.i.
|
|
157
|
+
this.i.qm = stringToBrush(v);
|
|
131
158
|
}
|
|
132
159
|
/**
|
|
133
160
|
* Gets or sets the color of separators inside the column options menu.
|
|
134
161
|
*/
|
|
135
162
|
get columnOptionsSeparatorColor() {
|
|
136
|
-
return brushToString(this.i.
|
|
163
|
+
return brushToString(this.i.qs);
|
|
137
164
|
}
|
|
138
165
|
set columnOptionsSeparatorColor(v) {
|
|
139
|
-
this.i.
|
|
166
|
+
this.i.qs = stringToBrush(v);
|
|
140
167
|
}
|
|
141
168
|
/**
|
|
142
169
|
* Gets or sets the background color for group headers inside the column options menu.
|
|
143
170
|
*/
|
|
144
171
|
get columnOptionsGroupHeaderBackground() {
|
|
145
|
-
return brushToString(this.i.
|
|
172
|
+
return brushToString(this.i.qk);
|
|
146
173
|
}
|
|
147
174
|
set columnOptionsGroupHeaderBackground(v) {
|
|
148
|
-
this.i.
|
|
175
|
+
this.i.qk = stringToBrush(v);
|
|
149
176
|
}
|
|
150
177
|
/**
|
|
151
178
|
* Gets or sets the text color for group headers inside the column options menu.
|
|
152
179
|
*/
|
|
153
180
|
get columnOptionsGroupHeaderTextColor() {
|
|
154
|
-
return brushToString(this.i.
|
|
181
|
+
return brushToString(this.i.ql);
|
|
155
182
|
}
|
|
156
183
|
set columnOptionsGroupHeaderTextColor(v) {
|
|
157
|
-
this.i.
|
|
184
|
+
this.i.ql = stringToBrush(v);
|
|
158
185
|
}
|
|
159
186
|
get columnOptionsGroupHeaderTextStyle() {
|
|
160
|
-
if (this.i.
|
|
187
|
+
if (this.i.oq == null) {
|
|
161
188
|
return null;
|
|
162
189
|
}
|
|
163
|
-
return this.i.
|
|
190
|
+
return this.i.oq.fontString;
|
|
164
191
|
}
|
|
165
192
|
set columnOptionsGroupHeaderTextStyle(v) {
|
|
166
193
|
let fi = new FontInfo();
|
|
167
194
|
fi.fontString = v;
|
|
168
|
-
this.i.
|
|
195
|
+
this.i.oq = fi;
|
|
169
196
|
}
|
|
170
197
|
get columnOptionsAccentColor() {
|
|
171
|
-
return brushToString(this.i.
|
|
198
|
+
return brushToString(this.i.qi);
|
|
172
199
|
}
|
|
173
200
|
set columnOptionsAccentColor(v) {
|
|
174
|
-
this.i.
|
|
201
|
+
this.i.qi = stringToBrush(v);
|
|
175
202
|
}
|
|
176
203
|
get columnOptionsRowHeight() {
|
|
177
|
-
return this.i.
|
|
204
|
+
return this.i.o5;
|
|
178
205
|
}
|
|
179
206
|
set columnOptionsRowHeight(v) {
|
|
180
|
-
this.i.
|
|
207
|
+
this.i.o5 = +v;
|
|
181
208
|
}
|
|
182
209
|
}
|
|
@@ -37,22 +37,22 @@ export var AccessibilityRow = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
37
37
|
configurable: true
|
|
38
38
|
});
|
|
39
39
|
AccessibilityRow.prototype.j = function (a, b) {
|
|
40
|
-
if (!this.b.d(a.l.
|
|
41
|
-
this.b.s(a.l.
|
|
40
|
+
if (!this.b.d(a.l.a6)) {
|
|
41
|
+
this.b.s(a.l.a6, a);
|
|
42
42
|
}
|
|
43
|
-
else if (this.b.item(a.l.
|
|
44
|
-
this.b.item(a.l.
|
|
43
|
+
else if (this.b.item(a.l.a6) != a) {
|
|
44
|
+
this.b.item(a.l.a6, a);
|
|
45
45
|
}
|
|
46
46
|
b.setAttribute("id", this.g(a));
|
|
47
47
|
b.setAttribute("role", this.f);
|
|
48
|
-
if (a.l.
|
|
48
|
+
if (a.l.a1) {
|
|
49
49
|
b.setAttribute("aria-colindex", "1");
|
|
50
50
|
b.setAttribute("aria-colspan", this.d.toString());
|
|
51
51
|
}
|
|
52
52
|
else {
|
|
53
|
-
b.setAttribute("aria-colindex", (a.l.
|
|
53
|
+
b.setAttribute("aria-colindex", (a.l.a6 + 1).toString());
|
|
54
54
|
}
|
|
55
|
-
if (a.
|
|
55
|
+
if (a.c2 == 1) {
|
|
56
56
|
b.setAttribute("aria-selected", "true");
|
|
57
57
|
}
|
|
58
58
|
else {
|
|
@@ -98,11 +98,11 @@ export var AccessibilityRow = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
98
98
|
this.b.u();
|
|
99
99
|
};
|
|
100
100
|
AccessibilityRow.prototype.g = function (a) {
|
|
101
|
-
if (a.l.aj || (a.l.
|
|
102
|
-
if (a.l.
|
|
101
|
+
if (a.l.aj || (a.l.ao && !a.l.h)) {
|
|
102
|
+
if (a.l.a1) {
|
|
103
103
|
return "cellid" + this.i + "r" + this.c + "span";
|
|
104
104
|
}
|
|
105
|
-
return "cellid" + this.i + "r" + this.c + "c" + a.l.
|
|
105
|
+
return "cellid" + this.i + "r" + this.c + "c" + a.l.a6;
|
|
106
106
|
}
|
|
107
107
|
return null;
|
|
108
108
|
};
|
|
@@ -25,28 +25,28 @@ export var CanvasCellPresenterBase = /** @class */ /*@__PURE__*/ (function (_sup
|
|
|
25
25
|
};
|
|
26
26
|
CanvasCellPresenterBase.prototype.b = function (a) {
|
|
27
27
|
this.a.cf(a.c);
|
|
28
|
-
if (a.bc(CellModel.
|
|
29
|
-
this.a.cn(a.
|
|
28
|
+
if (a.bc(CellModel.e3) || a.bc(CellModel.e7) || a.bc(CellModel.e5) || a.bc(CellModel.e1)) {
|
|
29
|
+
this.a.cn(a.e2, a.e6, a.e4, a.e0);
|
|
30
30
|
}
|
|
31
31
|
if (a.a5) {
|
|
32
|
-
this.a.ch(a.
|
|
32
|
+
this.a.ch(a.nn, a.eq, a.ev, a.et, a.eo);
|
|
33
33
|
}
|
|
34
|
-
if (a.
|
|
35
|
-
this.a.ck(a.
|
|
36
|
-
this.a.cu(a.
|
|
34
|
+
if (a.bv) {
|
|
35
|
+
this.a.ck(a.gd);
|
|
36
|
+
this.a.cu(a.ib);
|
|
37
37
|
}
|
|
38
38
|
if (a.a7) {
|
|
39
|
-
if (a.
|
|
39
|
+
if (a.bn && !this.a.z) {
|
|
40
40
|
this.a.b5();
|
|
41
41
|
}
|
|
42
|
-
if (a.bc(CellModel.
|
|
43
|
-
this.a.cg(a.
|
|
42
|
+
if (a.bc(CellModel.en)) {
|
|
43
|
+
this.a.cg(a.nm.color);
|
|
44
44
|
}
|
|
45
|
-
if (a.bc(CellModel.
|
|
46
|
-
this.a.cm(a.
|
|
45
|
+
if (a.bc(CellModel.ez)) {
|
|
46
|
+
this.a.cm(a.ct);
|
|
47
47
|
}
|
|
48
48
|
}
|
|
49
|
-
if (a.
|
|
49
|
+
if (a.bv && a.bn) {
|
|
50
50
|
this.a.cx(a);
|
|
51
51
|
}
|
|
52
52
|
};
|
|
@@ -25,28 +25,28 @@ export var CanvasContentCellModelHelper = /** @class */ /*@__PURE__*/ (function
|
|
|
25
25
|
};
|
|
26
26
|
CanvasContentCellModelHelper.a = function (a, b, c) {
|
|
27
27
|
if (b.a7) {
|
|
28
|
-
if (b.bc(CellModel.
|
|
29
|
-
var d = Math.min(1, Math.max(0, b.
|
|
30
|
-
var e = b.
|
|
28
|
+
if (b.bc(CellModel.fs) || b.bc(CellModel.ex) || b.bc(CellModel.ia) || b.bb("IsRowPinned") || b.bb("IsRowSticky") || b.bb("PinnedRowOpacity")) {
|
|
29
|
+
var d = Math.min(1, Math.max(0, b.da));
|
|
30
|
+
var e = b.cs * (1 - d);
|
|
31
31
|
c.ci(e);
|
|
32
|
-
if (b.
|
|
33
|
-
c.cy(b.
|
|
32
|
+
if (b.bn) {
|
|
33
|
+
c.cy(b.cs * d);
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
|
-
if (b.bc(CellModel.
|
|
37
|
-
CanvasContentCellModelHelper.c(c, b.
|
|
38
|
-
if (b.
|
|
39
|
-
c.cw(b.
|
|
36
|
+
if (b.bc(CellModel.e8)) {
|
|
37
|
+
CanvasContentCellModelHelper.c(c, b.no);
|
|
38
|
+
if (b.bn) {
|
|
39
|
+
c.cw(b.no);
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
|
-
if (b.bc(CellModel.
|
|
42
|
+
if (b.bc(CellModel.gz)) {
|
|
43
43
|
}
|
|
44
|
-
if (b.bc(CellModel.
|
|
44
|
+
if (b.bc(CellModel.gf) || b.bc(CellModel.h9)) {
|
|
45
45
|
var f = b.g;
|
|
46
46
|
var g = b.i;
|
|
47
47
|
c.cl(f);
|
|
48
48
|
c.ct(g);
|
|
49
|
-
if (b.
|
|
49
|
+
if (b.bn) {
|
|
50
50
|
c.cv(f, g);
|
|
51
51
|
}
|
|
52
52
|
}
|
|
@@ -29,22 +29,22 @@ export var CanvasDateTimeCellPresenter = /** @class */ /*@__PURE__*/ (function (
|
|
|
29
29
|
_super.prototype.b.call(this, a);
|
|
30
30
|
var b = a;
|
|
31
31
|
if (a.a7) {
|
|
32
|
-
if (a.bc(DateTimeCellModel.
|
|
32
|
+
if (a.bc(DateTimeCellModel.oo) || a.bc(DateTimeCellModel.op) || a.bc(DateTimeCellModel.on) || a.bc(DateTimeCellModel.g2) || a.bc(DateTimeCellModel.h8)) {
|
|
33
33
|
this.e(b);
|
|
34
|
-
this.d.cr(b.
|
|
34
|
+
this.d.cr(b.k4);
|
|
35
35
|
}
|
|
36
36
|
CanvasContentCellModelHelper.a(this.a.bq, b, this.a);
|
|
37
37
|
}
|
|
38
38
|
};
|
|
39
39
|
CanvasDateTimeCellPresenter.prototype.e = function (a) {
|
|
40
|
-
if (a.
|
|
41
|
-
a.
|
|
40
|
+
if (a.l1 != null) {
|
|
41
|
+
a.k4 = a.l1;
|
|
42
42
|
return;
|
|
43
43
|
}
|
|
44
|
-
a.
|
|
45
|
-
if (a.
|
|
46
|
-
if (!(typeCast(Date_$type, a.
|
|
47
|
-
a.
|
|
44
|
+
a.k4 = a.o0(a.om);
|
|
45
|
+
if (a.k4 == stringEmpty()) {
|
|
46
|
+
if (!(typeCast(Date_$type, a.il) !== null)) {
|
|
47
|
+
a.k4 = a.il.toString();
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
};
|
|
@@ -631,8 +631,8 @@ export var CanvasGridCellBase = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
631
631
|
if (this.a1 != b) {
|
|
632
632
|
this.a1 = b;
|
|
633
633
|
}
|
|
634
|
-
var c = a.
|
|
635
|
-
var d = a.
|
|
634
|
+
var c = a.ib * 0.2;
|
|
635
|
+
var d = a.gd * 0.6;
|
|
636
636
|
if (this.a2 >= c && this.a2 <= d) {
|
|
637
637
|
return;
|
|
638
638
|
}
|