igniteui-webcomponents-grids 4.0.4 → 4.2.3-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/igniteui-webcomponents-grids.umd.js +2059 -1378
- package/bundles/igniteui-webcomponents-grids.umd.min.js +1 -1
- package/esm2015/lib/BaseEditorView.js +30 -14
- package/esm2015/lib/CanvasGridCellBase.js +26 -26
- package/esm2015/lib/CanvasSummaryCell.js +2 -2
- package/esm2015/lib/CanvasTextHeaderCell.js +1 -1
- package/esm2015/lib/CheckboxListView_combined.js +553 -389
- package/esm2015/lib/ColumnChooserView_combined.js +9 -9
- package/esm2015/lib/ColumnFilterCondition_combined.js +32 -0
- package/esm2015/lib/ColumnGroupingView_combined.js +1 -1
- package/esm2015/lib/ColumnPinningView_combined.js +7 -7
- package/esm2015/lib/ComboEditorView.js +111 -105
- package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +401 -344
- package/esm2015/lib/DataGridCellLayoutPanel.js +5 -5
- package/esm2015/lib/DateEditorView.js +94 -87
- package/esm2015/lib/EditorCell.js +11 -11
- package/esm2015/lib/FilterCell.js +77 -61
- package/esm2015/lib/FilterCellPresenter.js +6 -3
- package/esm2015/lib/GridColumnFilterOptionsView_combined.js +8 -8
- package/esm2015/lib/GridColumnOptionsView_combined.js +47 -22
- package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +51 -25
- package/esm2015/lib/GridExpansionIndicatorView_combined.js +8 -8
- package/esm2015/lib/GridFilterDialogView_combined.js +5 -5
- package/esm2015/lib/GridSortIndicatorView_combined.js +9 -9
- package/esm2015/lib/ISummaryChooserView_combined.js +12 -11
- package/esm2015/lib/MultiColumnComboBoxView_combined.js +19 -19
- package/esm2015/lib/NumericEditorView.js +3 -3
- package/esm2015/lib/PropertyEditorView_combined.js +40 -40
- package/esm2015/lib/TextEditorView.js +82 -75
- package/esm2015/lib/igc-checkbox-list-component.js +155 -50
- package/esm2015/lib/igc-data-grid-comparison-operator-selector-component.js +104 -59
- package/esm2015/lib/igc-grid-column-options-component.js +21 -1
- package/esm2015/lib/igc-grid-column-summary-options-component.js +16 -2
- package/esm5/lib/BaseEditorView.js +34 -14
- package/esm5/lib/CanvasGridCellBase.js +26 -26
- package/esm5/lib/CanvasSummaryCell.js +2 -2
- package/esm5/lib/CanvasTextHeaderCell.js +1 -1
- package/esm5/lib/CheckboxListView_combined.js +579 -375
- package/esm5/lib/ColumnChooserView_combined.js +9 -9
- package/esm5/lib/ColumnFilterCondition_combined.js +32 -0
- package/esm5/lib/ColumnGroupingView_combined.js +1 -1
- package/esm5/lib/ColumnPinningView_combined.js +7 -7
- package/esm5/lib/ComboEditorView.js +108 -102
- package/esm5/lib/ComparisonOperatorSelectorView_combined.js +408 -343
- package/esm5/lib/DataGridCellLayoutPanel.js +5 -5
- package/esm5/lib/DateEditorView.js +93 -86
- package/esm5/lib/EditorCell.js +11 -11
- package/esm5/lib/FilterCell.js +81 -61
- package/esm5/lib/FilterCellPresenter.js +6 -3
- package/esm5/lib/GridColumnFilterOptionsView_combined.js +8 -8
- package/esm5/lib/GridColumnOptionsView_combined.js +55 -22
- package/esm5/lib/GridColumnSummaryOptionsView_combined.js +59 -25
- package/esm5/lib/GridExpansionIndicatorView_combined.js +8 -8
- package/esm5/lib/GridFilterDialogView_combined.js +5 -5
- package/esm5/lib/GridSortIndicatorView_combined.js +9 -9
- package/esm5/lib/ISummaryChooserView_combined.js +12 -11
- package/esm5/lib/MultiColumnComboBoxView_combined.js +19 -19
- package/esm5/lib/NumericEditorView.js +3 -3
- package/esm5/lib/PropertyEditorView_combined.js +40 -40
- package/esm5/lib/TextEditorView.js +82 -75
- package/esm5/lib/igc-checkbox-list-component.js +195 -50
- package/esm5/lib/igc-data-grid-comparison-operator-selector-component.js +117 -59
- package/esm5/lib/igc-grid-column-options-component.js +29 -1
- package/esm5/lib/igc-grid-column-summary-options-component.js +24 -2
- package/fesm2015/igniteui-webcomponents-grids.js +1935 -1395
- package/fesm5/igniteui-webcomponents-grids.js +2057 -1376
- package/grids/3rdpartylicenses.txt +445 -0
- package/grids/combined.js +44 -90
- package/grids/index.d.ts +15 -0
- package/grids/lib/common.d.ts +0 -4
- package/grids/lib/grid-toolbar-exporter-type.d.ts +3 -0
- package/grids/lib/igc-base-date-time-filtering-operand.d.ts +18 -0
- package/grids/lib/igc-base-toolbar-column-actions-directive.d.ts +2 -1
- package/grids/lib/igc-boolean-filtering-operand.d.ts +20 -0
- package/grids/lib/igc-cell-template-context.d.ts +2 -1
- package/grids/lib/igc-column-component.d.ts +3 -2
- package/grids/lib/igc-columns-auto-generated-event-args.d.ts +21 -0
- package/grids/lib/igc-date-filtering-operand.d.ts +20 -0
- package/grids/lib/igc-date-summary-operand.d.ts +75 -0
- package/grids/lib/igc-date-time-filtering-operand.d.ts +15 -0
- package/grids/lib/igc-display-density-base.d.ts +1 -1
- package/grids/lib/igc-exporter-options-base.d.ts +2 -0
- package/grids/lib/igc-filtering-expression.d.ts +33 -0
- package/grids/lib/igc-filtering-expressions-tree.d.ts +6 -4
- package/grids/lib/igc-filtering-operand.d.ts +4 -2
- package/grids/lib/igc-filtering-operation.d.ts +4 -0
- package/grids/lib/igc-grid-base-directive.d.ts +23 -2
- package/grids/lib/igc-grid-component.d.ts +4 -4
- package/grids/lib/igc-grid-edit-done-event-args.d.ts +5 -1
- package/grids/lib/igc-grid-selection-range.d.ts +1 -0
- package/grids/lib/igc-grid-toolbar-exporter-component.d.ts +2 -1
- package/grids/lib/igc-grouped-records.d.ts +1 -1
- package/grids/lib/igc-number-filtering-operand.d.ts +20 -0
- package/grids/lib/igc-number-summary-operand.d.ts +104 -0
- package/grids/lib/igc-pivot-date-dimension.d.ts +1 -20
- package/grids/lib/igc-pivot-grid-component.d.ts +12 -0
- package/grids/lib/igc-row-data-event-args.d.ts +4 -0
- package/grids/lib/igc-sorting-options.d.ts +3 -2
- package/grids/lib/igc-string-filtering-operand.d.ts +29 -0
- package/grids/lib/igc-summary-operand.d.ts +61 -0
- package/grids/lib/igc-time-filtering-operand.d.ts +15 -0
- package/grids/lib/igc-time-summary-operand.d.ts +49 -0
- package/grids/lib/sorting-options-mode.d.ts +3 -0
- package/grids/styles.css +1 -1
- package/grids/themes/dark/bootstrap.css +1 -1
- package/grids/themes/dark/fluent.css +1 -1
- package/grids/themes/dark/indigo.css +1 -1
- package/grids/themes/dark/material.css +1 -1
- package/grids/themes/light/bootstrap.css +1 -1
- package/grids/themes/light/fluent.css +1 -1
- package/grids/themes/light/indigo.css +1 -1
- package/grids/themes/light/material.css +1 -1
- package/lib/BaseEditorView.d.ts +12 -8
- package/lib/CheckboxListView_combined.d.ts +120 -96
- package/lib/ColumnFilterCondition_combined.d.ts +2 -0
- package/lib/ComboEditorView.d.ts +15 -14
- package/lib/ComboEditorView_ComboExternal.d.ts +1 -0
- package/lib/ComparisonOperatorSelectorView_combined.d.ts +105 -96
- package/lib/DateEditorView.d.ts +13 -12
- package/lib/FilterCell.d.ts +23 -20
- package/lib/GridColumnOptionsView_combined.d.ts +10 -5
- package/lib/GridColumnSummaryOptionsView_combined.d.ts +14 -9
- package/lib/IEditorView.d.ts +2 -0
- package/lib/TextEditorView.d.ts +10 -9
- package/lib/igc-checkbox-list-component.d.ts +40 -0
- package/lib/igc-data-grid-comparison-operator-selector-component.d.ts +11 -0
- package/lib/igc-grid-column-options-component.d.ts +8 -0
- package/lib/igc-grid-column-summary-options-component.d.ts +2 -0
- package/package.json +4 -4
package/lib/BaseEditorView.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Base, Type } from "igniteui-webcomponents-core";
|
|
2
2
|
import { IEditorView } from "./IEditorView";
|
|
3
3
|
import { DomRenderer } from "igniteui-webcomponents-core";
|
|
4
|
+
import { Brush } from "igniteui-webcomponents-core";
|
|
4
5
|
import { ICellActionManager } from "./ICellActionManager";
|
|
5
6
|
import { FontInfo } from "igniteui-webcomponents-core";
|
|
6
7
|
import { KeyEventArgs } from "igniteui-webcomponents-core";
|
|
@@ -23,14 +24,16 @@ export declare class BaseEditorView extends Base implements IEditorView {
|
|
|
23
24
|
isEnabled: boolean;
|
|
24
25
|
focusOnValueChanged: boolean;
|
|
25
26
|
showClearButton: boolean;
|
|
27
|
+
private x;
|
|
28
|
+
textColor: Brush;
|
|
26
29
|
valueProvided: (sender: IEditorView, value: any, ignoreValue: boolean) => void;
|
|
27
|
-
protected
|
|
30
|
+
protected q(a: any, b: boolean): void;
|
|
28
31
|
userTyping: (sender: IEditorView) => void;
|
|
29
|
-
protected
|
|
32
|
+
protected p(): void;
|
|
30
33
|
lostFocus: (sender: IEditorView) => void;
|
|
31
|
-
protected
|
|
34
|
+
protected o(): void;
|
|
32
35
|
gotFocus: (sender: IEditorView) => void;
|
|
33
|
-
protected
|
|
36
|
+
protected n(): void;
|
|
34
37
|
protected a: ICellActionManager;
|
|
35
38
|
constructor(a: DomRenderer, b: ICellActionManager);
|
|
36
39
|
setFont(a: FontInfo): void;
|
|
@@ -41,11 +44,12 @@ export declare class BaseEditorView extends Base implements IEditorView {
|
|
|
41
44
|
onEditStarted(): void;
|
|
42
45
|
cleanUp(): void;
|
|
43
46
|
focus(): void;
|
|
44
|
-
protected
|
|
47
|
+
protected s(): void;
|
|
45
48
|
getEditorValue(): any;
|
|
46
49
|
setEditorValue(a: any): void;
|
|
47
|
-
protected
|
|
48
|
-
protected
|
|
49
|
-
protected
|
|
50
|
+
protected u(a: string, b: any, c: any): void;
|
|
51
|
+
protected w(): void;
|
|
52
|
+
protected r(): void;
|
|
53
|
+
protected v(): void;
|
|
50
54
|
protected onInputKeyDown(a: any, b: KeyEventArgs): void;
|
|
51
55
|
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { Base, Type, INotifyPropertyChanged, PropertyChangedEventArgs } from "igniteui-webcomponents-core";
|
|
2
2
|
import { DomRenderer, DomWrapper } from "igniteui-webcomponents-core";
|
|
3
3
|
import { XInputGroup } from "igniteui-webcomponents-inputs";
|
|
4
|
-
import { Brush } from "igniteui-webcomponents-core";
|
|
5
4
|
import { XInput } from "igniteui-webcomponents-inputs";
|
|
6
5
|
import { ControlDisplayDensity } from "igniteui-webcomponents-core";
|
|
6
|
+
import { FontInfo } from "igniteui-webcomponents-core";
|
|
7
7
|
import { Thickness } from "igniteui-webcomponents-core";
|
|
8
8
|
import { CheckboxListIndexType } from "./CheckboxListIndexType";
|
|
9
9
|
import { Grid } from "./Grid";
|
|
10
10
|
import { GridSelectedKeysCollection } from "./GridSelectedKeysCollection";
|
|
11
11
|
import { InputGroupDisplayType } from "igniteui-webcomponents-inputs";
|
|
12
|
-
import { FontInfo } from "igniteui-webcomponents-core";
|
|
13
12
|
import { BaseControlTheme } from "igniteui-webcomponents-core";
|
|
13
|
+
import { Brush } from "igniteui-webcomponents-core";
|
|
14
14
|
import { ScrollbarStyle } from "igniteui-webcomponents-core";
|
|
15
15
|
import { CheckedChangedEventArgs } from "./CheckedChangedEventArgs";
|
|
16
16
|
import { DataGridCellEventArgs } from "./DataGridCellEventArgs";
|
|
@@ -20,38 +20,42 @@ import { SelectAllCheckboxChangedEventArgs } from "./SelectAllCheckboxChangedEve
|
|
|
20
20
|
*/
|
|
21
21
|
export declare class CheckboxListView extends Base {
|
|
22
22
|
static $t: Type;
|
|
23
|
-
private
|
|
24
|
-
private
|
|
23
|
+
private e;
|
|
24
|
+
private j;
|
|
25
25
|
private a;
|
|
26
|
+
private i;
|
|
26
27
|
private h;
|
|
27
|
-
private
|
|
28
|
+
private c;
|
|
28
29
|
constructor();
|
|
29
30
|
b: CheckboxList;
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
31
|
+
n(): void;
|
|
32
|
+
f: DomRenderer;
|
|
33
|
+
m(a: DomRenderer): void;
|
|
34
|
+
v(): void;
|
|
35
|
+
w(a: DomRenderer): void;
|
|
36
|
+
s(): void;
|
|
37
|
+
o(a: DomWrapper, b: any, c: boolean): void;
|
|
38
|
+
z(): void;
|
|
37
39
|
x(): void;
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
40
|
+
private k;
|
|
41
|
+
l(): void;
|
|
42
|
+
t(a: number, b: boolean): void;
|
|
43
|
+
u(a: boolean): void;
|
|
44
|
+
q(a: any): void;
|
|
45
|
+
private ah;
|
|
46
|
+
af(): void;
|
|
47
|
+
ai(): void;
|
|
46
48
|
ae(): void;
|
|
47
|
-
|
|
48
|
-
private
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
49
|
+
private d;
|
|
50
|
+
private g;
|
|
51
|
+
ag(a?: boolean): void;
|
|
52
|
+
private r;
|
|
53
|
+
ad(): void;
|
|
54
|
+
ab(): void;
|
|
55
|
+
ac(): void;
|
|
56
|
+
y(): void;
|
|
57
|
+
aa(a: Thickness): void;
|
|
58
|
+
p(a: any): void;
|
|
55
59
|
}
|
|
56
60
|
/**
|
|
57
61
|
* @hidden
|
|
@@ -63,106 +67,126 @@ export declare class CheckboxList extends Base implements INotifyPropertyChanged
|
|
|
63
67
|
private i;
|
|
64
68
|
private ab;
|
|
65
69
|
private d;
|
|
66
|
-
private
|
|
70
|
+
private ai;
|
|
67
71
|
private c;
|
|
68
72
|
private o;
|
|
69
73
|
private q;
|
|
70
74
|
r: XInputGroup;
|
|
71
75
|
p: XInput;
|
|
72
|
-
private
|
|
73
|
-
static readonly
|
|
74
|
-
static readonly
|
|
76
|
+
private aj;
|
|
77
|
+
static readonly dx: Brush;
|
|
78
|
+
static readonly bt: string;
|
|
75
79
|
private readonly e;
|
|
76
|
-
private
|
|
77
|
-
private readonly
|
|
80
|
+
private ag;
|
|
81
|
+
private readonly ah;
|
|
78
82
|
private f;
|
|
79
83
|
readonly g: GridSelectedKeysCollection;
|
|
80
84
|
private a;
|
|
81
85
|
b: string[];
|
|
82
86
|
propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
|
|
83
87
|
constructor();
|
|
84
|
-
private
|
|
85
|
-
private
|
|
86
|
-
private
|
|
88
|
+
private cr;
|
|
89
|
+
private cl;
|
|
90
|
+
private cm;
|
|
87
91
|
checkedChanged: (sender: any, args: CheckedChangedEventArgs) => void;
|
|
88
|
-
|
|
92
|
+
ci(a: number, b: boolean): void;
|
|
89
93
|
notifySizeChanged(): void;
|
|
90
94
|
destroy(): void;
|
|
91
95
|
provideContainer(a: DomRenderer, b: Grid, c: any): void;
|
|
92
96
|
provideSelectAllSection(a: any): void;
|
|
93
|
-
|
|
94
|
-
private
|
|
95
|
-
|
|
96
|
-
private av;
|
|
97
|
-
itemsSource: any;
|
|
98
|
-
private ax;
|
|
99
|
-
a4: string;
|
|
100
|
-
private az;
|
|
101
|
-
bn: string;
|
|
97
|
+
cb(a: any, b: DataGridCellEventArgs): void;
|
|
98
|
+
private b8;
|
|
99
|
+
cj(a: string): void;
|
|
102
100
|
private ay;
|
|
103
|
-
|
|
101
|
+
itemsSource: any;
|
|
102
|
+
private a0;
|
|
103
|
+
bc: string;
|
|
104
|
+
private a2;
|
|
105
|
+
b0: string;
|
|
106
|
+
private a1;
|
|
107
|
+
bg: string;
|
|
104
108
|
private s;
|
|
105
109
|
t: InputGroupDisplayType;
|
|
106
|
-
private
|
|
107
|
-
|
|
108
|
-
readonly
|
|
110
|
+
private au;
|
|
111
|
+
ax: number;
|
|
112
|
+
readonly av: number;
|
|
109
113
|
private ac;
|
|
110
|
-
|
|
114
|
+
ae: FontInfo;
|
|
111
115
|
private k;
|
|
112
116
|
l: CheckboxListIndexType;
|
|
113
117
|
private x;
|
|
114
118
|
y: BaseControlTheme;
|
|
115
119
|
private z;
|
|
116
120
|
aa: ControlDisplayDensity;
|
|
121
|
+
private dd;
|
|
122
|
+
du: Brush;
|
|
123
|
+
private db;
|
|
124
|
+
ds: Brush;
|
|
125
|
+
private de;
|
|
126
|
+
dv: Brush;
|
|
127
|
+
private dc;
|
|
128
|
+
dt: Brush;
|
|
129
|
+
private ad;
|
|
130
|
+
af: FontInfo;
|
|
131
|
+
private c7;
|
|
132
|
+
dl: Brush;
|
|
133
|
+
private c5;
|
|
134
|
+
dj: Brush;
|
|
135
|
+
private c8;
|
|
136
|
+
dm: Brush;
|
|
137
|
+
private c6;
|
|
138
|
+
dk: Brush;
|
|
139
|
+
private c9;
|
|
140
|
+
dn: Brush;
|
|
117
141
|
private v;
|
|
118
142
|
w: ScrollbarStyle;
|
|
119
|
-
private
|
|
120
|
-
|
|
121
|
-
protected
|
|
122
|
-
protected
|
|
123
|
-
private
|
|
124
|
-
private
|
|
125
|
-
private
|
|
126
|
-
|
|
127
|
-
|
|
143
|
+
private da;
|
|
144
|
+
dr: Brush;
|
|
145
|
+
protected cn(a: string, b: any, c: any): void;
|
|
146
|
+
protected cs(a: string, b: any, c: any): void;
|
|
147
|
+
private cz;
|
|
148
|
+
private c0;
|
|
149
|
+
private co;
|
|
150
|
+
cq(): void;
|
|
151
|
+
c1(): void;
|
|
128
152
|
updateHrMargin(a: Thickness): void;
|
|
129
153
|
provideHrElement(a: any): void;
|
|
130
|
-
|
|
131
|
-
private
|
|
154
|
+
ck(): void;
|
|
155
|
+
private cc;
|
|
132
156
|
private j;
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
private
|
|
144
|
-
|
|
145
|
-
private
|
|
146
|
-
|
|
147
|
-
private
|
|
148
|
-
|
|
149
|
-
readonly
|
|
157
|
+
cw(a: number): void;
|
|
158
|
+
b5(a: number): void;
|
|
159
|
+
cy(): void;
|
|
160
|
+
b9(): void;
|
|
161
|
+
cg(a: number, b: any, c: any): void;
|
|
162
|
+
cd(): void;
|
|
163
|
+
ce(a: number, b: any): void;
|
|
164
|
+
cf(a: number, b: any): void;
|
|
165
|
+
b6(a: any[]): void;
|
|
166
|
+
cx(a: any[]): void;
|
|
167
|
+
private bw;
|
|
168
|
+
bx: string;
|
|
169
|
+
private df;
|
|
170
|
+
dw: Brush;
|
|
171
|
+
private c3;
|
|
172
|
+
dh: Brush;
|
|
173
|
+
readonly ao: boolean;
|
|
174
|
+
private ar;
|
|
175
|
+
as: boolean;
|
|
176
|
+
static dp: Brush;
|
|
177
|
+
private c4;
|
|
178
|
+
di: Brush;
|
|
179
|
+
static dq: Brush;
|
|
180
|
+
private dg;
|
|
181
|
+
dy: Brush;
|
|
182
|
+
selectAllCheckboxChanged: (sender: any, args: SelectAllCheckboxChangedEventArgs) => void;
|
|
183
|
+
cp(a: boolean): void;
|
|
184
|
+
al(): boolean;
|
|
185
|
+
ak(): boolean;
|
|
186
|
+
private aw;
|
|
187
|
+
b7(): void;
|
|
150
188
|
private ap;
|
|
151
189
|
aq: boolean;
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
cw: Brush;
|
|
155
|
-
static cy: Brush;
|
|
156
|
-
private cu;
|
|
157
|
-
c2: Brush;
|
|
158
|
-
selectAllCheckboxChanged: (sender: any, args: SelectAllCheckboxChangedEventArgs) => void;
|
|
159
|
-
cc(a: boolean): void;
|
|
160
|
-
aj(): boolean;
|
|
161
|
-
ai(): boolean;
|
|
162
|
-
private at;
|
|
163
|
-
bu(): void;
|
|
164
|
-
private an;
|
|
165
|
-
ao: boolean;
|
|
166
|
-
private ak;
|
|
167
|
-
al: boolean;
|
|
190
|
+
private am;
|
|
191
|
+
an: boolean;
|
|
168
192
|
}
|
|
@@ -3141,6 +3141,8 @@ export declare class FilterRowDefinition extends DefinitionBase {
|
|
|
3141
3141
|
protected c2(a: any, b: PropertyChangedEventArgs): void;
|
|
3142
3142
|
cx(a: CellModel, b: Grid, c: any, d: any): void;
|
|
3143
3143
|
cz(a: CellModel, b: Grid, c: any, d: any): void;
|
|
3144
|
+
protected dg(): void;
|
|
3145
|
+
protected c9(): void;
|
|
3144
3146
|
}
|
|
3145
3147
|
/**
|
|
3146
3148
|
* @hidden
|
package/lib/ComboEditorView.d.ts
CHANGED
|
@@ -10,16 +10,16 @@ import { InputChangeEventArgs } from "igniteui-webcomponents-inputs";
|
|
|
10
10
|
*/
|
|
11
11
|
export declare class ComboEditorView extends BaseEditorView {
|
|
12
12
|
static $t: Type;
|
|
13
|
-
private y;
|
|
14
|
-
private x;
|
|
15
|
-
private aa;
|
|
16
13
|
private ab;
|
|
14
|
+
private aa;
|
|
17
15
|
private ad;
|
|
18
|
-
private
|
|
19
|
-
private
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
16
|
+
private ae;
|
|
17
|
+
private ag;
|
|
18
|
+
private y;
|
|
19
|
+
private ac;
|
|
20
|
+
af: any;
|
|
21
|
+
ai: string;
|
|
22
|
+
z: string[];
|
|
23
23
|
constructor(a: DomRenderer, b: BaseControlTheme, c: ICellActionManager);
|
|
24
24
|
setFont(a: FontInfo): void;
|
|
25
25
|
attachEvents(): void;
|
|
@@ -27,14 +27,15 @@ export declare class ComboEditorView extends BaseEditorView {
|
|
|
27
27
|
onTargetChanged(): void;
|
|
28
28
|
onEditStarted(): void;
|
|
29
29
|
onEditEnded(): void;
|
|
30
|
-
protected
|
|
31
|
-
|
|
32
|
-
protected
|
|
33
|
-
protected
|
|
34
|
-
private
|
|
30
|
+
protected s(): void;
|
|
31
|
+
al(): void;
|
|
32
|
+
protected u(a: string, b: any, c: any): void;
|
|
33
|
+
protected w(): void;
|
|
34
|
+
private ao;
|
|
35
|
+
protected v(): void;
|
|
35
36
|
private onComboValueChanged;
|
|
36
37
|
private onComboTextChanged;
|
|
37
|
-
private
|
|
38
|
+
private as;
|
|
38
39
|
protected onInputChanging(a: any, b: InputChangeEventArgs): void;
|
|
39
40
|
private onComboLostFocus;
|
|
40
41
|
private onComboGotFocus;
|
|
@@ -3,7 +3,7 @@ import { DomRenderer } from "igniteui-webcomponents-core";
|
|
|
3
3
|
import { XIcon } from "igniteui-webcomponents-inputs";
|
|
4
4
|
import { OperatorSelectorOpeningEventArgs } from "./OperatorSelectorOpeningEventArgs";
|
|
5
5
|
import { OperatorSelectorClosingEventArgs } from "./OperatorSelectorClosingEventArgs";
|
|
6
|
-
import { Popup } from "igniteui-webcomponents-
|
|
6
|
+
import { Popup } from "igniteui-webcomponents-core";
|
|
7
7
|
import { Rect } from "igniteui-webcomponents-core";
|
|
8
8
|
import { OperatorModel } from "./OperatorModel";
|
|
9
9
|
import { Grid } from "./Grid";
|
|
@@ -13,6 +13,7 @@ import { TemplateColumn } from "./TemplateColumn";
|
|
|
13
13
|
import { List$1 } from "igniteui-webcomponents-core";
|
|
14
14
|
import { ColumnComparisonConditionOperatorType } from "./ColumnComparisonConditionOperatorType";
|
|
15
15
|
import { DataSourceSchemaPropertyType } from "igniteui-webcomponents-core";
|
|
16
|
+
import { Brush } from "igniteui-webcomponents-core";
|
|
16
17
|
import { OperatorSelectorValueChangedEventArgs } from "./OperatorSelectorValueChangedEventArgs";
|
|
17
18
|
/**
|
|
18
19
|
* @hidden
|
|
@@ -33,15 +34,16 @@ export declare class ComparisonOperatorSelectorView extends Base {
|
|
|
33
34
|
g: DomRenderer;
|
|
34
35
|
a: ComparisonOperatorSelector;
|
|
35
36
|
constructor(a: ComparisonOperatorSelector);
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
37
|
+
u(a: any): void;
|
|
38
|
+
w(): Rect;
|
|
39
|
+
t(a: any, b: OperatorModel): void;
|
|
39
40
|
private q;
|
|
41
|
+
private s;
|
|
40
42
|
private r;
|
|
41
43
|
private n;
|
|
42
44
|
private onDocumentKeyDown;
|
|
43
45
|
private onDocumentMouseDown;
|
|
44
|
-
|
|
46
|
+
v(a: any): void;
|
|
45
47
|
}
|
|
46
48
|
/**
|
|
47
49
|
* @hidden
|
|
@@ -49,137 +51,144 @@ export declare class ComparisonOperatorSelectorView extends Base {
|
|
|
49
51
|
export declare class ComparisonOperatorSelector extends Base implements INotifyPropertyChanged {
|
|
50
52
|
static $t: Type;
|
|
51
53
|
propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
|
|
52
|
-
protected
|
|
53
|
-
protected
|
|
54
|
-
protected static readonly
|
|
55
|
-
protected static readonly
|
|
56
|
-
protected static readonly
|
|
57
|
-
protected static readonly
|
|
58
|
-
protected static readonly bl: string;
|
|
59
|
-
protected static readonly dj: string;
|
|
54
|
+
protected eg(a: string, b: any, c: any): void;
|
|
55
|
+
protected ei(a: string, b: any, c: any): void;
|
|
56
|
+
protected static readonly dw: string;
|
|
57
|
+
protected static readonly bt: string;
|
|
58
|
+
protected static readonly ca: string;
|
|
59
|
+
protected static readonly ad: string;
|
|
60
60
|
protected static readonly bn: string;
|
|
61
|
+
protected static readonly dl: string;
|
|
61
62
|
protected static readonly bp: string;
|
|
62
|
-
protected static readonly
|
|
63
|
-
protected static readonly bu: string;
|
|
64
|
-
protected static readonly bv: string;
|
|
65
|
-
protected static readonly b0: string;
|
|
66
|
-
protected static readonly b1: string;
|
|
63
|
+
protected static readonly br: string;
|
|
67
64
|
protected static readonly bo: string;
|
|
68
|
-
protected static readonly b7: string;
|
|
69
|
-
protected static readonly dp: string;
|
|
70
|
-
protected static readonly dq: string;
|
|
71
|
-
protected static readonly dx: string;
|
|
72
|
-
protected static readonly dk: string;
|
|
73
|
-
protected static readonly b3: string;
|
|
74
65
|
protected static readonly bw: string;
|
|
75
|
-
protected static readonly dn: string;
|
|
76
|
-
protected static readonly b6: string;
|
|
77
|
-
protected static readonly bz: string;
|
|
78
|
-
protected static readonly dl: string;
|
|
79
|
-
protected static readonly b4: string;
|
|
80
66
|
protected static readonly bx: string;
|
|
81
|
-
protected static readonly
|
|
67
|
+
protected static readonly b2: string;
|
|
68
|
+
protected static readonly b3: string;
|
|
69
|
+
protected static readonly bq: string;
|
|
70
|
+
protected static readonly b9: string;
|
|
71
|
+
protected static readonly ds: string;
|
|
72
|
+
protected static readonly dt: string;
|
|
73
|
+
protected static readonly d0: string;
|
|
74
|
+
protected static readonly dn: string;
|
|
82
75
|
protected static readonly b5: string;
|
|
83
76
|
protected static readonly by: string;
|
|
84
|
-
protected static readonly
|
|
85
|
-
protected static readonly
|
|
86
|
-
protected static readonly
|
|
77
|
+
protected static readonly dr: string;
|
|
78
|
+
protected static readonly b8: string;
|
|
79
|
+
protected static readonly b1: string;
|
|
80
|
+
protected static readonly dp: string;
|
|
81
|
+
protected static readonly b6: string;
|
|
82
|
+
protected static readonly bz: string;
|
|
83
|
+
protected static readonly dq: string;
|
|
84
|
+
protected static readonly b7: string;
|
|
85
|
+
protected static readonly b0: string;
|
|
86
|
+
protected static readonly dz: string;
|
|
87
87
|
protected static readonly dh: string;
|
|
88
88
|
protected static readonly di: string;
|
|
89
|
-
protected static readonly
|
|
89
|
+
protected static readonly dj: string;
|
|
90
|
+
protected static readonly dk: string;
|
|
91
|
+
protected static readonly b4: string;
|
|
92
|
+
protected static readonly dy: string;
|
|
93
|
+
protected static readonly du: string;
|
|
94
|
+
protected static readonly ab: string;
|
|
90
95
|
protected static readonly dv: string;
|
|
91
|
-
protected static readonly
|
|
92
|
-
protected static readonly
|
|
93
|
-
|
|
94
|
-
protected
|
|
95
|
-
protected static readonly ad: string;
|
|
96
|
-
private q;
|
|
97
|
-
protected readonly r: SRProvider;
|
|
96
|
+
protected static readonly ac: string;
|
|
97
|
+
protected static readonly af: string;
|
|
98
|
+
private r;
|
|
99
|
+
protected readonly s: SRProvider;
|
|
98
100
|
protected e: ComparisonOperatorSelectorView;
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
101
|
+
q: Popup;
|
|
102
|
+
p: XIcon;
|
|
103
|
+
o: XButton;
|
|
102
104
|
f: Grid;
|
|
103
|
-
|
|
105
|
+
n: TemplateColumn;
|
|
106
|
+
v: List$1<OperatorModel>;
|
|
104
107
|
u: List$1<OperatorModel>;
|
|
105
|
-
t: List$1<OperatorModel>;
|
|
106
108
|
private g;
|
|
107
109
|
i: OperatorModel;
|
|
108
|
-
private
|
|
110
|
+
private t;
|
|
109
111
|
private a;
|
|
110
112
|
b: ColumnComparisonConditionOperatorType;
|
|
111
|
-
|
|
112
|
-
|
|
113
|
+
ae: string;
|
|
114
|
+
x: number;
|
|
113
115
|
private c;
|
|
114
116
|
d: DataSourceSchemaPropertyType;
|
|
115
|
-
private
|
|
116
|
-
|
|
117
|
+
private w;
|
|
118
|
+
z: number;
|
|
119
|
+
private eo;
|
|
120
|
+
eq: Brush;
|
|
121
|
+
private en;
|
|
122
|
+
ep: Brush;
|
|
117
123
|
valueChanged: (sender: any, args: OperatorSelectorValueChangedEventArgs) => void;
|
|
118
124
|
opening: (sender: any, args: OperatorSelectorOpeningEventArgs) => void;
|
|
125
|
+
opened: (sender: any, args: OperatorSelectorOpeningEventArgs) => void;
|
|
119
126
|
closing: (sender: any, args: OperatorSelectorClosingEventArgs) => void;
|
|
120
|
-
readonly
|
|
121
|
-
readonly ci: string;
|
|
122
|
-
readonly ch: string;
|
|
123
|
-
readonly cx: string;
|
|
124
|
-
readonly cp: string;
|
|
125
|
-
readonly cq: string;
|
|
126
|
-
readonly cj: string;
|
|
127
|
+
readonly dd: string;
|
|
127
128
|
readonly ck: string;
|
|
129
|
+
readonly cj: string;
|
|
130
|
+
readonly cz: string;
|
|
131
|
+
readonly cr: string;
|
|
132
|
+
readonly cs: string;
|
|
133
|
+
readonly cl: string;
|
|
134
|
+
readonly cm: string;
|
|
135
|
+
readonly db: string;
|
|
136
|
+
readonly cb: string;
|
|
137
|
+
readonly dc: string;
|
|
138
|
+
readonly cc: string;
|
|
128
139
|
readonly c9: string;
|
|
129
|
-
readonly b9: string;
|
|
130
140
|
readonly da: string;
|
|
131
|
-
readonly
|
|
141
|
+
readonly dg: string;
|
|
132
142
|
readonly c7: string;
|
|
133
|
-
readonly
|
|
134
|
-
readonly
|
|
143
|
+
readonly cw: string;
|
|
144
|
+
readonly cp: string;
|
|
135
145
|
readonly c5: string;
|
|
136
146
|
readonly cu: string;
|
|
137
147
|
readonly cn: string;
|
|
138
|
-
readonly c3: string;
|
|
139
|
-
readonly cs: string;
|
|
140
|
-
readonly cl: string;
|
|
141
|
-
readonly c4: string;
|
|
142
|
-
readonly ct: string;
|
|
143
|
-
readonly cm: string;
|
|
144
148
|
readonly c6: string;
|
|
145
149
|
readonly cv: string;
|
|
146
150
|
readonly co: string;
|
|
147
|
-
readonly
|
|
148
|
-
readonly
|
|
149
|
-
readonly
|
|
151
|
+
readonly c8: string;
|
|
152
|
+
readonly cx: string;
|
|
153
|
+
readonly cq: string;
|
|
154
|
+
readonly df: string;
|
|
150
155
|
readonly c0: string;
|
|
151
156
|
readonly c1: string;
|
|
152
|
-
readonly cr: string;
|
|
153
|
-
readonly dc: string;
|
|
154
157
|
readonly c2: string;
|
|
155
|
-
readonly
|
|
158
|
+
readonly c3: string;
|
|
159
|
+
readonly ct: string;
|
|
160
|
+
readonly de: string;
|
|
161
|
+
readonly c4: string;
|
|
156
162
|
readonly cg: string;
|
|
157
|
-
readonly
|
|
158
|
-
readonly cb: string;
|
|
159
|
-
readonly cc: string;
|
|
163
|
+
readonly ci: string;
|
|
160
164
|
readonly cf: string;
|
|
161
|
-
readonly
|
|
165
|
+
readonly cd: string;
|
|
166
|
+
readonly ce: string;
|
|
167
|
+
readonly ch: string;
|
|
168
|
+
readonly cy: string;
|
|
162
169
|
constructor();
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
private
|
|
167
|
-
private
|
|
168
|
-
private
|
|
169
|
-
private
|
|
170
|
-
private
|
|
170
|
+
ej(a: any): void;
|
|
171
|
+
ea(): void;
|
|
172
|
+
eb(a: Popup, b: XIcon, c: Grid): void;
|
|
173
|
+
private eh;
|
|
174
|
+
private ed;
|
|
175
|
+
private ef;
|
|
176
|
+
private ee;
|
|
177
|
+
private bv;
|
|
178
|
+
private bu;
|
|
179
|
+
private d4;
|
|
171
180
|
private h;
|
|
172
|
-
private dz;
|
|
173
181
|
private d2;
|
|
174
|
-
private
|
|
182
|
+
private d5;
|
|
175
183
|
private d3;
|
|
176
|
-
x(): number;
|
|
177
|
-
eh(): void;
|
|
178
|
-
d5(): void;
|
|
179
|
-
dy(a: string, b: string, c: string, d: number): void;
|
|
180
|
-
d4(): void;
|
|
181
|
-
ef(a: string, b: number): void;
|
|
182
|
-
private d9;
|
|
183
184
|
private d6;
|
|
184
|
-
|
|
185
|
+
y(): number;
|
|
186
|
+
em(): void;
|
|
187
|
+
d8(): void;
|
|
188
|
+
d1(a: string, b: string, c: string, d: number): void;
|
|
189
|
+
d7(): void;
|
|
190
|
+
ek(a: string, b: number): void;
|
|
191
|
+
private ec;
|
|
192
|
+
private d9;
|
|
193
|
+
private el;
|
|
185
194
|
}
|