igniteui-webcomponents-layouts 7.0.0 → 7.0.1
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-layouts.umd.js +5037 -4563
- package/bundles/igniteui-webcomponents-layouts.umd.min.js +1 -1
- package/esm2015/lib/ComboEditorView_combined.js +27 -27
- package/esm2015/lib/ExpansionPanelView_combined.js +7 -7
- package/esm2015/lib/GridColumnProviderOnAttachingOverrideEventArgs.js +18 -0
- package/esm2015/lib/ListPanelView_combined.js +1 -1
- package/esm2015/lib/NativeUILayoutFactory_combined.js +4314 -4089
- package/esm2015/lib/PropertyEditorPanelView_combined.js +26 -26
- package/esm2015/lib/TooltipTextPresenter.js +2 -2
- package/esm2015/lib/igc-tool-action-button-component.js +6 -6
- package/esm2015/lib/igc-tool-action-button-pair-component.js +103 -103
- package/esm2015/lib/igc-tool-action-checkbox-component.js +27 -27
- package/esm2015/lib/igc-tool-action-checkbox-list-component.js +97 -17
- package/esm2015/lib/igc-tool-action-color-editor-component.js +3 -3
- package/esm2015/lib/igc-tool-action-combo-component.js +8 -8
- package/esm2015/lib/igc-tool-action-component.js +94 -80
- package/esm2015/lib/igc-tool-action-field-selector-component.js +45 -45
- package/esm2015/lib/igc-tool-action-group-header-component.js +6 -6
- package/esm2015/lib/igc-tool-action-icon-button-component.js +32 -32
- package/esm2015/lib/igc-tool-action-icon-menu-component.js +9 -9
- package/esm2015/lib/igc-tool-action-number-input-component.js +3 -3
- package/esm2015/lib/igc-tool-action-radio-component.js +32 -32
- package/esm2015/lib/igc-tool-action-separator-component.js +6 -6
- package/esm2015/lib/igc-tool-action-sub-panel-component.js +3 -3
- package/esm2015/lib/igc-tool-action-text-input-component.js +2 -2
- package/esm2015/lib/igc-tool-panel-component.js +156 -142
- package/esm2015/lib/igc-toolbar-component.js +99 -87
- package/esm2015/public_api.js +1 -0
- package/esm5/lib/ComboEditorView_combined.js +27 -27
- package/esm5/lib/ExpansionPanelView_combined.js +7 -7
- package/esm5/lib/GridColumnProviderOnAttachingOverrideEventArgs.js +21 -0
- package/esm5/lib/ListPanelView_combined.js +1 -1
- package/esm5/lib/NativeUILayoutFactory_combined.js +4171 -3886
- package/esm5/lib/PropertyEditorPanelView_combined.js +26 -26
- package/esm5/lib/TooltipTextPresenter.js +2 -2
- package/esm5/lib/igc-tool-action-button-component.js +6 -6
- package/esm5/lib/igc-tool-action-button-pair-component.js +103 -103
- package/esm5/lib/igc-tool-action-checkbox-component.js +27 -27
- package/esm5/lib/igc-tool-action-checkbox-list-component.js +129 -17
- package/esm5/lib/igc-tool-action-color-editor-component.js +3 -3
- package/esm5/lib/igc-tool-action-combo-component.js +8 -8
- package/esm5/lib/igc-tool-action-component.js +102 -80
- package/esm5/lib/igc-tool-action-field-selector-component.js +45 -45
- package/esm5/lib/igc-tool-action-group-header-component.js +6 -6
- package/esm5/lib/igc-tool-action-icon-button-component.js +32 -32
- package/esm5/lib/igc-tool-action-icon-menu-component.js +9 -9
- package/esm5/lib/igc-tool-action-number-input-component.js +3 -3
- package/esm5/lib/igc-tool-action-radio-component.js +32 -32
- package/esm5/lib/igc-tool-action-separator-component.js +6 -6
- package/esm5/lib/igc-tool-action-sub-panel-component.js +3 -3
- package/esm5/lib/igc-tool-action-text-input-component.js +2 -2
- package/esm5/lib/igc-tool-panel-component.js +164 -142
- package/esm5/lib/igc-toolbar-component.js +103 -91
- package/esm5/public_api.js +1 -0
- package/fesm2015/igniteui-webcomponents-layouts.js +5112 -4750
- package/fesm5/igniteui-webcomponents-layouts.js +5037 -4564
- package/lib/GridColumnProviderOnAttachingOverrideEventArgs.d.ts +8 -0
- package/lib/NativeUILayoutFactory_combined.d.ts +972 -935
- package/lib/igc-tool-action-checkbox-list-component.d.ts +40 -0
- package/lib/igc-tool-action-component.d.ts +4 -0
- package/lib/igc-tool-panel-component.d.ts +4 -0
- package/lib/igc-toolbar-component.d.ts +7 -1
- package/package.json +3 -3
- package/public_api.d.ts +1 -0
|
@@ -86,20 +86,20 @@ export var IgcToolActionFieldSelectorComponent = /** @class */ /*@__PURE__*/ (fu
|
|
|
86
86
|
* Gets or sets if the tool action is checked.
|
|
87
87
|
*/
|
|
88
88
|
get: function () {
|
|
89
|
-
return this.i.
|
|
89
|
+
return this.i.hy;
|
|
90
90
|
},
|
|
91
91
|
set: function (v) {
|
|
92
|
-
this.i.
|
|
92
|
+
this.i.hy = v;
|
|
93
93
|
},
|
|
94
94
|
enumerable: false,
|
|
95
95
|
configurable: true
|
|
96
96
|
});
|
|
97
97
|
Object.defineProperty(IgcToolActionFieldSelectorComponent.prototype, "legendTarget", {
|
|
98
98
|
get: function () {
|
|
99
|
-
return this.i.
|
|
99
|
+
return this.i.iu;
|
|
100
100
|
},
|
|
101
101
|
set: function (v) {
|
|
102
|
-
this.i.
|
|
102
|
+
this.i.iu = v;
|
|
103
103
|
},
|
|
104
104
|
enumerable: false,
|
|
105
105
|
configurable: true
|
|
@@ -109,11 +109,11 @@ export var IgcToolActionFieldSelectorComponent = /** @class */ /*@__PURE__*/ (fu
|
|
|
109
109
|
* Gets or sets if the tool action is checked.
|
|
110
110
|
*/
|
|
111
111
|
get: function () {
|
|
112
|
-
return this.i.
|
|
112
|
+
return this.i.h2;
|
|
113
113
|
},
|
|
114
114
|
set: function (v) {
|
|
115
|
-
this.i.
|
|
116
|
-
this._a("fieldType", enumToString(ToolActionFieldSelectorType_$type, this.i.
|
|
115
|
+
this.i.h2 = ensureEnum(ToolActionFieldSelectorType_$type, v);
|
|
116
|
+
this._a("fieldType", enumToString(ToolActionFieldSelectorType_$type, this.i.h2));
|
|
117
117
|
},
|
|
118
118
|
enumerable: false,
|
|
119
119
|
configurable: true
|
|
@@ -123,11 +123,11 @@ export var IgcToolActionFieldSelectorComponent = /** @class */ /*@__PURE__*/ (fu
|
|
|
123
123
|
* Gets or sets if the list only takes one selection at a time.
|
|
124
124
|
*/
|
|
125
125
|
get: function () {
|
|
126
|
-
return this.i.
|
|
126
|
+
return this.i.ic;
|
|
127
127
|
},
|
|
128
128
|
set: function (v) {
|
|
129
|
-
this.i.
|
|
130
|
-
this._a("singleSelection", this.i.
|
|
129
|
+
this.i.ic = ensureBool(v);
|
|
130
|
+
this._a("singleSelection", this.i.ic);
|
|
131
131
|
},
|
|
132
132
|
enumerable: false,
|
|
133
133
|
configurable: true
|
|
@@ -140,12 +140,12 @@ export var IgcToolActionFieldSelectorComponent = /** @class */ /*@__PURE__*/ (fu
|
|
|
140
140
|
get: function () {
|
|
141
141
|
if (this._aggregations === null) {
|
|
142
142
|
var coll = new IgcToolActionFieldSelectorAggregationsCollection();
|
|
143
|
-
var innerColl = this.i.
|
|
143
|
+
var innerColl = this.i.hz;
|
|
144
144
|
if (!innerColl) {
|
|
145
145
|
innerColl = new ToolActionFieldSelectorAggregationsCollection_internal();
|
|
146
146
|
}
|
|
147
147
|
this._aggregations = coll._fromInner(innerColl);
|
|
148
|
-
this.i.
|
|
148
|
+
this.i.hz = innerColl;
|
|
149
149
|
}
|
|
150
150
|
return this._aggregations;
|
|
151
151
|
},
|
|
@@ -157,14 +157,14 @@ export var IgcToolActionFieldSelectorComponent = /** @class */ /*@__PURE__*/ (fu
|
|
|
157
157
|
var coll = new IgcToolActionFieldSelectorAggregationsCollection();
|
|
158
158
|
this._aggregations = coll._fromOuter(v);
|
|
159
159
|
var syncColl = new SyncableObservableCollection$1(ToolActionFieldSelectorAggregation.$type);
|
|
160
|
-
var innerColl = this.i.
|
|
160
|
+
var innerColl = this.i.hz;
|
|
161
161
|
if (!innerColl) {
|
|
162
162
|
innerColl = new ToolActionFieldSelectorAggregationsCollection_internal();
|
|
163
163
|
}
|
|
164
164
|
syncColl._inner = innerColl;
|
|
165
165
|
syncColl.clear();
|
|
166
166
|
this._aggregations._setSyncTarget(syncColl);
|
|
167
|
-
this.i.
|
|
167
|
+
this.i.hz = innerColl;
|
|
168
168
|
},
|
|
169
169
|
enumerable: false,
|
|
170
170
|
configurable: true
|
|
@@ -174,11 +174,11 @@ export var IgcToolActionFieldSelectorComponent = /** @class */ /*@__PURE__*/ (fu
|
|
|
174
174
|
* Gets or sets if the data source has to be updated when changes are made.
|
|
175
175
|
*/
|
|
176
176
|
get: function () {
|
|
177
|
-
return this.i.
|
|
177
|
+
return this.i.id;
|
|
178
178
|
},
|
|
179
179
|
set: function (v) {
|
|
180
|
-
this.i.
|
|
181
|
-
this._a("updateDataSource", this.i.
|
|
180
|
+
this.i.id = ensureBool(v);
|
|
181
|
+
this._a("updateDataSource", this.i.id);
|
|
182
182
|
},
|
|
183
183
|
enumerable: false,
|
|
184
184
|
configurable: true
|
|
@@ -190,12 +190,12 @@ export var IgcToolActionFieldSelectorComponent = /** @class */ /*@__PURE__*/ (fu
|
|
|
190
190
|
get: function () {
|
|
191
191
|
if (this._selectedAggregations === null) {
|
|
192
192
|
var coll = new IgcToolActionFieldSelectorSelectedAggregationsCollection();
|
|
193
|
-
var innerColl = this.i.
|
|
193
|
+
var innerColl = this.i.h1;
|
|
194
194
|
if (!innerColl) {
|
|
195
195
|
innerColl = new ToolActionFieldSelectorSelectedAggregationsCollection_internal();
|
|
196
196
|
}
|
|
197
197
|
this._selectedAggregations = coll._fromInner(innerColl);
|
|
198
|
-
this.i.
|
|
198
|
+
this.i.h1 = innerColl;
|
|
199
199
|
}
|
|
200
200
|
return this._selectedAggregations;
|
|
201
201
|
},
|
|
@@ -207,102 +207,102 @@ export var IgcToolActionFieldSelectorComponent = /** @class */ /*@__PURE__*/ (fu
|
|
|
207
207
|
var coll = new IgcToolActionFieldSelectorSelectedAggregationsCollection();
|
|
208
208
|
this._selectedAggregations = coll._fromOuter(v);
|
|
209
209
|
var syncColl = new SyncableObservableCollection$1(ToolActionFieldSelectorSelectedAggregation.$type);
|
|
210
|
-
var innerColl = this.i.
|
|
210
|
+
var innerColl = this.i.h1;
|
|
211
211
|
if (!innerColl) {
|
|
212
212
|
innerColl = new ToolActionFieldSelectorSelectedAggregationsCollection_internal();
|
|
213
213
|
}
|
|
214
214
|
syncColl._inner = innerColl;
|
|
215
215
|
syncColl.clear();
|
|
216
216
|
this._selectedAggregations._setSyncTarget(syncColl);
|
|
217
|
-
this.i.
|
|
217
|
+
this.i.h1 = innerColl;
|
|
218
218
|
},
|
|
219
219
|
enumerable: false,
|
|
220
220
|
configurable: true
|
|
221
221
|
});
|
|
222
222
|
Object.defineProperty(IgcToolActionFieldSelectorComponent.prototype, "paddingLeft", {
|
|
223
223
|
get: function () {
|
|
224
|
-
return this.i.
|
|
224
|
+
return this.i.io;
|
|
225
225
|
},
|
|
226
226
|
set: function (v) {
|
|
227
|
-
this.i.
|
|
228
|
-
this._a("paddingLeft", this.i.
|
|
227
|
+
this.i.io = +v;
|
|
228
|
+
this._a("paddingLeft", this.i.io);
|
|
229
229
|
},
|
|
230
230
|
enumerable: false,
|
|
231
231
|
configurable: true
|
|
232
232
|
});
|
|
233
233
|
Object.defineProperty(IgcToolActionFieldSelectorComponent.prototype, "actualPaddingLeft", {
|
|
234
234
|
get: function () {
|
|
235
|
-
return this.i.
|
|
235
|
+
return this.i.ij;
|
|
236
236
|
},
|
|
237
237
|
set: function (v) {
|
|
238
|
-
this.i.
|
|
239
|
-
this._a("actualPaddingLeft", this.i.
|
|
238
|
+
this.i.ij = +v;
|
|
239
|
+
this._a("actualPaddingLeft", this.i.ij);
|
|
240
240
|
},
|
|
241
241
|
enumerable: false,
|
|
242
242
|
configurable: true
|
|
243
243
|
});
|
|
244
244
|
Object.defineProperty(IgcToolActionFieldSelectorComponent.prototype, "paddingRight", {
|
|
245
245
|
get: function () {
|
|
246
|
-
return this.i.
|
|
246
|
+
return this.i.ip;
|
|
247
247
|
},
|
|
248
248
|
set: function (v) {
|
|
249
|
-
this.i.
|
|
250
|
-
this._a("paddingRight", this.i.
|
|
249
|
+
this.i.ip = +v;
|
|
250
|
+
this._a("paddingRight", this.i.ip);
|
|
251
251
|
},
|
|
252
252
|
enumerable: false,
|
|
253
253
|
configurable: true
|
|
254
254
|
});
|
|
255
255
|
Object.defineProperty(IgcToolActionFieldSelectorComponent.prototype, "actualPaddingRight", {
|
|
256
256
|
get: function () {
|
|
257
|
-
return this.i.
|
|
257
|
+
return this.i.ik;
|
|
258
258
|
},
|
|
259
259
|
set: function (v) {
|
|
260
|
-
this.i.
|
|
261
|
-
this._a("actualPaddingRight", this.i.
|
|
260
|
+
this.i.ik = +v;
|
|
261
|
+
this._a("actualPaddingRight", this.i.ik);
|
|
262
262
|
},
|
|
263
263
|
enumerable: false,
|
|
264
264
|
configurable: true
|
|
265
265
|
});
|
|
266
266
|
Object.defineProperty(IgcToolActionFieldSelectorComponent.prototype, "paddingBottom", {
|
|
267
267
|
get: function () {
|
|
268
|
-
return this.i.
|
|
268
|
+
return this.i.im;
|
|
269
269
|
},
|
|
270
270
|
set: function (v) {
|
|
271
|
-
this.i.
|
|
272
|
-
this._a("paddingBottom", this.i.
|
|
271
|
+
this.i.im = +v;
|
|
272
|
+
this._a("paddingBottom", this.i.im);
|
|
273
273
|
},
|
|
274
274
|
enumerable: false,
|
|
275
275
|
configurable: true
|
|
276
276
|
});
|
|
277
277
|
Object.defineProperty(IgcToolActionFieldSelectorComponent.prototype, "actualPaddingBottom", {
|
|
278
278
|
get: function () {
|
|
279
|
-
return this.i.
|
|
279
|
+
return this.i.ii;
|
|
280
280
|
},
|
|
281
281
|
set: function (v) {
|
|
282
|
-
this.i.
|
|
283
|
-
this._a("actualPaddingBottom", this.i.
|
|
282
|
+
this.i.ii = +v;
|
|
283
|
+
this._a("actualPaddingBottom", this.i.ii);
|
|
284
284
|
},
|
|
285
285
|
enumerable: false,
|
|
286
286
|
configurable: true
|
|
287
287
|
});
|
|
288
288
|
Object.defineProperty(IgcToolActionFieldSelectorComponent.prototype, "paddingTop", {
|
|
289
289
|
get: function () {
|
|
290
|
-
return this.i.
|
|
290
|
+
return this.i.iq;
|
|
291
291
|
},
|
|
292
292
|
set: function (v) {
|
|
293
|
-
this.i.
|
|
294
|
-
this._a("paddingTop", this.i.
|
|
293
|
+
this.i.iq = +v;
|
|
294
|
+
this._a("paddingTop", this.i.iq);
|
|
295
295
|
},
|
|
296
296
|
enumerable: false,
|
|
297
297
|
configurable: true
|
|
298
298
|
});
|
|
299
299
|
Object.defineProperty(IgcToolActionFieldSelectorComponent.prototype, "actualPaddingTop", {
|
|
300
300
|
get: function () {
|
|
301
|
-
return this.i.
|
|
301
|
+
return this.i.il;
|
|
302
302
|
},
|
|
303
303
|
set: function (v) {
|
|
304
|
-
this.i.
|
|
305
|
-
this._a("actualPaddingTop", this.i.
|
|
304
|
+
this.i.il = +v;
|
|
305
|
+
this._a("actualPaddingTop", this.i.il);
|
|
306
306
|
},
|
|
307
307
|
enumerable: false,
|
|
308
308
|
configurable: true
|
|
@@ -75,11 +75,11 @@ export var IgcToolActionGroupHeaderComponent = /** @class */ /*@__PURE__*/ (func
|
|
|
75
75
|
* Gets the actual back icon color.
|
|
76
76
|
*/
|
|
77
77
|
get: function () {
|
|
78
|
-
return brushToString(this.i.
|
|
78
|
+
return brushToString(this.i.h1);
|
|
79
79
|
},
|
|
80
80
|
set: function (v) {
|
|
81
|
-
this.i.
|
|
82
|
-
this._a("actualBackIconColor", brushToString(this.i.
|
|
81
|
+
this.i.h1 = stringToBrush(v);
|
|
82
|
+
this._a("actualBackIconColor", brushToString(this.i.h1));
|
|
83
83
|
},
|
|
84
84
|
enumerable: false,
|
|
85
85
|
configurable: true
|
|
@@ -89,11 +89,11 @@ export var IgcToolActionGroupHeaderComponent = /** @class */ /*@__PURE__*/ (func
|
|
|
89
89
|
* Gets or sets the icon color for the back button.
|
|
90
90
|
*/
|
|
91
91
|
get: function () {
|
|
92
|
-
return brushToString(this.i.
|
|
92
|
+
return brushToString(this.i.h2);
|
|
93
93
|
},
|
|
94
94
|
set: function (v) {
|
|
95
|
-
this.i.
|
|
96
|
-
this._a("backIconColor", brushToString(this.i.
|
|
95
|
+
this.i.h2 = stringToBrush(v);
|
|
96
|
+
this._a("backIconColor", brushToString(this.i.h2));
|
|
97
97
|
},
|
|
98
98
|
enumerable: false,
|
|
99
99
|
configurable: true
|
|
@@ -80,11 +80,11 @@ export var IgcToolActionIconButtonComponent = /** @class */ /*@__PURE__*/ (funct
|
|
|
80
80
|
* Gets or sets how long it takes before the tooltip is displayed (in milliseconds).
|
|
81
81
|
*/
|
|
82
82
|
get: function () {
|
|
83
|
-
return this.i.
|
|
83
|
+
return this.i.i0;
|
|
84
84
|
},
|
|
85
85
|
set: function (v) {
|
|
86
|
-
this.i.
|
|
87
|
-
this._a("tooltipDelay", this.i.
|
|
86
|
+
this.i.i0 = +v;
|
|
87
|
+
this._a("tooltipDelay", this.i.i0);
|
|
88
88
|
},
|
|
89
89
|
enumerable: false,
|
|
90
90
|
configurable: true
|
|
@@ -94,99 +94,99 @@ export var IgcToolActionIconButtonComponent = /** @class */ /*@__PURE__*/ (funct
|
|
|
94
94
|
* Gets the actual delay before the tooltip is displayed (in milliseconds).
|
|
95
95
|
*/
|
|
96
96
|
get: function () {
|
|
97
|
-
return this.i.
|
|
97
|
+
return this.i.iz;
|
|
98
98
|
},
|
|
99
99
|
set: function (v) {
|
|
100
|
-
this.i.
|
|
101
|
-
this._a("actualTooltipDelay", this.i.
|
|
100
|
+
this.i.iz = +v;
|
|
101
|
+
this._a("actualTooltipDelay", this.i.iz);
|
|
102
102
|
},
|
|
103
103
|
enumerable: false,
|
|
104
104
|
configurable: true
|
|
105
105
|
});
|
|
106
106
|
Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "contentPaddingLeft", {
|
|
107
107
|
get: function () {
|
|
108
|
-
return this.i.
|
|
108
|
+
return this.i.it;
|
|
109
109
|
},
|
|
110
110
|
set: function (v) {
|
|
111
|
-
this.i.
|
|
112
|
-
this._a("contentPaddingLeft", this.i.
|
|
111
|
+
this.i.it = +v;
|
|
112
|
+
this._a("contentPaddingLeft", this.i.it);
|
|
113
113
|
},
|
|
114
114
|
enumerable: false,
|
|
115
115
|
configurable: true
|
|
116
116
|
});
|
|
117
117
|
Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "actualContentPaddingLeft", {
|
|
118
118
|
get: function () {
|
|
119
|
-
return this.i.
|
|
119
|
+
return this.i.ip;
|
|
120
120
|
},
|
|
121
121
|
set: function (v) {
|
|
122
|
-
this.i.
|
|
123
|
-
this._a("actualContentPaddingLeft", this.i.
|
|
122
|
+
this.i.ip = +v;
|
|
123
|
+
this._a("actualContentPaddingLeft", this.i.ip);
|
|
124
124
|
},
|
|
125
125
|
enumerable: false,
|
|
126
126
|
configurable: true
|
|
127
127
|
});
|
|
128
128
|
Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "contentPaddingTop", {
|
|
129
129
|
get: function () {
|
|
130
|
-
return this.i.
|
|
130
|
+
return this.i.iv;
|
|
131
131
|
},
|
|
132
132
|
set: function (v) {
|
|
133
|
-
this.i.
|
|
134
|
-
this._a("contentPaddingTop", this.i.
|
|
133
|
+
this.i.iv = +v;
|
|
134
|
+
this._a("contentPaddingTop", this.i.iv);
|
|
135
135
|
},
|
|
136
136
|
enumerable: false,
|
|
137
137
|
configurable: true
|
|
138
138
|
});
|
|
139
139
|
Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "actualContentPaddingTop", {
|
|
140
140
|
get: function () {
|
|
141
|
-
return this.i.
|
|
141
|
+
return this.i.ir;
|
|
142
142
|
},
|
|
143
143
|
set: function (v) {
|
|
144
|
-
this.i.
|
|
145
|
-
this._a("actualContentPaddingTop", this.i.
|
|
144
|
+
this.i.ir = +v;
|
|
145
|
+
this._a("actualContentPaddingTop", this.i.ir);
|
|
146
146
|
},
|
|
147
147
|
enumerable: false,
|
|
148
148
|
configurable: true
|
|
149
149
|
});
|
|
150
150
|
Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "contentPaddingRight", {
|
|
151
151
|
get: function () {
|
|
152
|
-
return this.i.
|
|
152
|
+
return this.i.iu;
|
|
153
153
|
},
|
|
154
154
|
set: function (v) {
|
|
155
|
-
this.i.
|
|
156
|
-
this._a("contentPaddingRight", this.i.
|
|
155
|
+
this.i.iu = +v;
|
|
156
|
+
this._a("contentPaddingRight", this.i.iu);
|
|
157
157
|
},
|
|
158
158
|
enumerable: false,
|
|
159
159
|
configurable: true
|
|
160
160
|
});
|
|
161
161
|
Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "actualContentPaddingRight", {
|
|
162
162
|
get: function () {
|
|
163
|
-
return this.i.
|
|
163
|
+
return this.i.iq;
|
|
164
164
|
},
|
|
165
165
|
set: function (v) {
|
|
166
|
-
this.i.
|
|
167
|
-
this._a("actualContentPaddingRight", this.i.
|
|
166
|
+
this.i.iq = +v;
|
|
167
|
+
this._a("actualContentPaddingRight", this.i.iq);
|
|
168
168
|
},
|
|
169
169
|
enumerable: false,
|
|
170
170
|
configurable: true
|
|
171
171
|
});
|
|
172
172
|
Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "contentPaddingBottom", {
|
|
173
173
|
get: function () {
|
|
174
|
-
return this.i.
|
|
174
|
+
return this.i.is;
|
|
175
175
|
},
|
|
176
176
|
set: function (v) {
|
|
177
|
-
this.i.
|
|
178
|
-
this._a("contentPaddingBottom", this.i.
|
|
177
|
+
this.i.is = +v;
|
|
178
|
+
this._a("contentPaddingBottom", this.i.is);
|
|
179
179
|
},
|
|
180
180
|
enumerable: false,
|
|
181
181
|
configurable: true
|
|
182
182
|
});
|
|
183
183
|
Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "actualContentPaddingBottom", {
|
|
184
184
|
get: function () {
|
|
185
|
-
return this.i.
|
|
185
|
+
return this.i.io;
|
|
186
186
|
},
|
|
187
187
|
set: function (v) {
|
|
188
|
-
this.i.
|
|
189
|
-
this._a("actualContentPaddingBottom", this.i.
|
|
188
|
+
this.i.io = +v;
|
|
189
|
+
this._a("actualContentPaddingBottom", this.i.io);
|
|
190
190
|
},
|
|
191
191
|
enumerable: false,
|
|
192
192
|
configurable: true
|
|
@@ -199,10 +199,10 @@ export var IgcToolActionIconButtonComponent = /** @class */ /*@__PURE__*/ (funct
|
|
|
199
199
|
configurable: true
|
|
200
200
|
});
|
|
201
201
|
IgcToolActionIconButtonComponent.prototype.openSubMenu = function () {
|
|
202
|
-
this.i.
|
|
202
|
+
this.i.gh();
|
|
203
203
|
};
|
|
204
204
|
IgcToolActionIconButtonComponent.prototype.closeSubmenu = function () {
|
|
205
|
-
this.i.
|
|
205
|
+
this.i.ff();
|
|
206
206
|
};
|
|
207
207
|
IgcToolActionIconButtonComponent.prototype.exportVisualData = function () {
|
|
208
208
|
var iv = this.i.cr();
|
|
@@ -75,11 +75,11 @@ export var IgcToolActionIconMenuComponent = /** @class */ /*@__PURE__*/ (functio
|
|
|
75
75
|
* Gets or sets the stroke color of the arrow icon.
|
|
76
76
|
*/
|
|
77
77
|
get: function () {
|
|
78
|
-
return brushToString(this.i.
|
|
78
|
+
return brushToString(this.i.kh);
|
|
79
79
|
},
|
|
80
80
|
set: function (v) {
|
|
81
|
-
this.i.
|
|
82
|
-
this._a("arrowStroke", brushToString(this.i.
|
|
81
|
+
this.i.kh = stringToBrush(v);
|
|
82
|
+
this._a("arrowStroke", brushToString(this.i.kh));
|
|
83
83
|
},
|
|
84
84
|
enumerable: false,
|
|
85
85
|
configurable: true
|
|
@@ -89,11 +89,11 @@ export var IgcToolActionIconMenuComponent = /** @class */ /*@__PURE__*/ (functio
|
|
|
89
89
|
* Gets the actual stroke color of the arrow icon.
|
|
90
90
|
*/
|
|
91
91
|
get: function () {
|
|
92
|
-
return brushToString(this.i.
|
|
92
|
+
return brushToString(this.i.kg);
|
|
93
93
|
},
|
|
94
94
|
set: function (v) {
|
|
95
|
-
this.i.
|
|
96
|
-
this._a("actualArrowStroke", brushToString(this.i.
|
|
95
|
+
this.i.kg = stringToBrush(v);
|
|
96
|
+
this._a("actualArrowStroke", brushToString(this.i.kg));
|
|
97
97
|
},
|
|
98
98
|
enumerable: false,
|
|
99
99
|
configurable: true
|
|
@@ -103,11 +103,11 @@ export var IgcToolActionIconMenuComponent = /** @class */ /*@__PURE__*/ (functio
|
|
|
103
103
|
* Gets or sets whether the arrow icon should be shown.
|
|
104
104
|
*/
|
|
105
105
|
get: function () {
|
|
106
|
-
return this.i.
|
|
106
|
+
return this.i.j5;
|
|
107
107
|
},
|
|
108
108
|
set: function (v) {
|
|
109
|
-
this.i.
|
|
110
|
-
this._a("showArrowIcon", this.i.
|
|
109
|
+
this.i.j5 = ensureBool(v);
|
|
110
|
+
this._a("showArrowIcon", this.i.j5);
|
|
111
111
|
},
|
|
112
112
|
enumerable: false,
|
|
113
113
|
configurable: true
|
|
@@ -75,11 +75,11 @@ export var IgcToolActionNumberInputComponent = /** @class */ /*@__PURE__*/ (func
|
|
|
75
75
|
* Gets or sets the value for the input.
|
|
76
76
|
*/
|
|
77
77
|
get: function () {
|
|
78
|
-
return this.i.
|
|
78
|
+
return this.i.hs;
|
|
79
79
|
},
|
|
80
80
|
set: function (v) {
|
|
81
|
-
this.i.
|
|
82
|
-
this._a("value", this.i.
|
|
81
|
+
this.i.hs = +v;
|
|
82
|
+
this._a("value", this.i.hs);
|
|
83
83
|
},
|
|
84
84
|
enumerable: false,
|
|
85
85
|
configurable: true
|
|
@@ -75,10 +75,10 @@ export var IgcToolActionRadioComponent = /** @class */ /*@__PURE__*/ (function (
|
|
|
75
75
|
* Gets or sets the channel this radio button belongs to.
|
|
76
76
|
*/
|
|
77
77
|
get: function () {
|
|
78
|
-
return this.i.
|
|
78
|
+
return this.i.hy;
|
|
79
79
|
},
|
|
80
80
|
set: function (v) {
|
|
81
|
-
this.i.
|
|
81
|
+
this.i.hy = v;
|
|
82
82
|
},
|
|
83
83
|
enumerable: false,
|
|
84
84
|
configurable: true
|
|
@@ -88,11 +88,11 @@ export var IgcToolActionRadioComponent = /** @class */ /*@__PURE__*/ (function (
|
|
|
88
88
|
* Gets or sets if the tool action is checked.
|
|
89
89
|
*/
|
|
90
90
|
get: function () {
|
|
91
|
-
return this.i.
|
|
91
|
+
return this.i.hr;
|
|
92
92
|
},
|
|
93
93
|
set: function (v) {
|
|
94
|
-
this.i.
|
|
95
|
-
this._a("isChecked", this.i.
|
|
94
|
+
this.i.hr = ensureBool(v);
|
|
95
|
+
this._a("isChecked", this.i.hr);
|
|
96
96
|
},
|
|
97
97
|
enumerable: false,
|
|
98
98
|
configurable: true
|
|
@@ -103,11 +103,11 @@ export var IgcToolActionRadioComponent = /** @class */ /*@__PURE__*/ (function (
|
|
|
103
103
|
* well not become selected when clicked if this property is true.
|
|
104
104
|
*/
|
|
105
105
|
get: function () {
|
|
106
|
-
return this.i.
|
|
106
|
+
return this.i.hs;
|
|
107
107
|
},
|
|
108
108
|
set: function (v) {
|
|
109
|
-
this.i.
|
|
110
|
-
this._a("isManual", this.i.
|
|
109
|
+
this.i.hs = ensureBool(v);
|
|
110
|
+
this._a("isManual", this.i.hs);
|
|
111
111
|
},
|
|
112
112
|
enumerable: false,
|
|
113
113
|
configurable: true
|
|
@@ -117,11 +117,11 @@ export var IgcToolActionRadioComponent = /** @class */ /*@__PURE__*/ (function (
|
|
|
117
117
|
* Gets or sets the background color of the radio when in the unchecked state.
|
|
118
118
|
*/
|
|
119
119
|
get: function () {
|
|
120
|
-
return brushToString(this.i.
|
|
120
|
+
return brushToString(this.i.ie);
|
|
121
121
|
},
|
|
122
122
|
set: function (v) {
|
|
123
|
-
this.i.
|
|
124
|
-
this._a("uncheckedBackgroundColor", brushToString(this.i.
|
|
123
|
+
this.i.ie = stringToBrush(v);
|
|
124
|
+
this._a("uncheckedBackgroundColor", brushToString(this.i.ie));
|
|
125
125
|
},
|
|
126
126
|
enumerable: false,
|
|
127
127
|
configurable: true
|
|
@@ -131,11 +131,11 @@ export var IgcToolActionRadioComponent = /** @class */ /*@__PURE__*/ (function (
|
|
|
131
131
|
* Gets the actual background color of the radio when in the unchecked state.
|
|
132
132
|
*/
|
|
133
133
|
get: function () {
|
|
134
|
-
return brushToString(this.i.
|
|
134
|
+
return brushToString(this.i.ia);
|
|
135
135
|
},
|
|
136
136
|
set: function (v) {
|
|
137
|
-
this.i.
|
|
138
|
-
this._a("actualUncheckedBackgroundColor", brushToString(this.i.
|
|
137
|
+
this.i.ia = stringToBrush(v);
|
|
138
|
+
this._a("actualUncheckedBackgroundColor", brushToString(this.i.ia));
|
|
139
139
|
},
|
|
140
140
|
enumerable: false,
|
|
141
141
|
configurable: true
|
|
@@ -145,11 +145,11 @@ export var IgcToolActionRadioComponent = /** @class */ /*@__PURE__*/ (function (
|
|
|
145
145
|
* Gets or sets the background color of the radio when in the checked state.
|
|
146
146
|
*/
|
|
147
147
|
get: function () {
|
|
148
|
-
return brushToString(this.i.
|
|
148
|
+
return brushToString(this.i.ic);
|
|
149
149
|
},
|
|
150
150
|
set: function (v) {
|
|
151
|
-
this.i.
|
|
152
|
-
this._a("checkedBackgroundColor", brushToString(this.i.
|
|
151
|
+
this.i.ic = stringToBrush(v);
|
|
152
|
+
this._a("checkedBackgroundColor", brushToString(this.i.ic));
|
|
153
153
|
},
|
|
154
154
|
enumerable: false,
|
|
155
155
|
configurable: true
|
|
@@ -159,11 +159,11 @@ export var IgcToolActionRadioComponent = /** @class */ /*@__PURE__*/ (function (
|
|
|
159
159
|
* Gets the actual background color of the radio when in the checked state.
|
|
160
160
|
*/
|
|
161
161
|
get: function () {
|
|
162
|
-
return brushToString(this.i.
|
|
162
|
+
return brushToString(this.i.h8);
|
|
163
163
|
},
|
|
164
164
|
set: function (v) {
|
|
165
|
-
this.i.
|
|
166
|
-
this._a("actualCheckedBackgroundColor", brushToString(this.i.
|
|
165
|
+
this.i.h8 = stringToBrush(v);
|
|
166
|
+
this._a("actualCheckedBackgroundColor", brushToString(this.i.h8));
|
|
167
167
|
},
|
|
168
168
|
enumerable: false,
|
|
169
169
|
configurable: true
|
|
@@ -173,11 +173,11 @@ export var IgcToolActionRadioComponent = /** @class */ /*@__PURE__*/ (function (
|
|
|
173
173
|
* Gets or sets the border color of the radio when in the unchecked state.
|
|
174
174
|
*/
|
|
175
175
|
get: function () {
|
|
176
|
-
return brushToString(this.i.
|
|
176
|
+
return brushToString(this.i.ig);
|
|
177
177
|
},
|
|
178
178
|
set: function (v) {
|
|
179
|
-
this.i.
|
|
180
|
-
this._a("uncheckedBorderColor", brushToString(this.i.
|
|
179
|
+
this.i.ig = stringToBrush(v);
|
|
180
|
+
this._a("uncheckedBorderColor", brushToString(this.i.ig));
|
|
181
181
|
},
|
|
182
182
|
enumerable: false,
|
|
183
183
|
configurable: true
|
|
@@ -187,11 +187,11 @@ export var IgcToolActionRadioComponent = /** @class */ /*@__PURE__*/ (function (
|
|
|
187
187
|
* Gets the actual border color of the radio when in the unchecked state.
|
|
188
188
|
*/
|
|
189
189
|
get: function () {
|
|
190
|
-
return brushToString(this.i.
|
|
190
|
+
return brushToString(this.i.ib);
|
|
191
191
|
},
|
|
192
192
|
set: function (v) {
|
|
193
|
-
this.i.
|
|
194
|
-
this._a("actualUncheckedBorderColor", brushToString(this.i.
|
|
193
|
+
this.i.ib = stringToBrush(v);
|
|
194
|
+
this._a("actualUncheckedBorderColor", brushToString(this.i.ib));
|
|
195
195
|
},
|
|
196
196
|
enumerable: false,
|
|
197
197
|
configurable: true
|
|
@@ -201,11 +201,11 @@ export var IgcToolActionRadioComponent = /** @class */ /*@__PURE__*/ (function (
|
|
|
201
201
|
* Gets or sets the border color of the radio when in the checked state.
|
|
202
202
|
*/
|
|
203
203
|
get: function () {
|
|
204
|
-
return brushToString(this.i.
|
|
204
|
+
return brushToString(this.i.id);
|
|
205
205
|
},
|
|
206
206
|
set: function (v) {
|
|
207
|
-
this.i.
|
|
208
|
-
this._a("checkedBorderColor", brushToString(this.i.
|
|
207
|
+
this.i.id = stringToBrush(v);
|
|
208
|
+
this._a("checkedBorderColor", brushToString(this.i.id));
|
|
209
209
|
},
|
|
210
210
|
enumerable: false,
|
|
211
211
|
configurable: true
|
|
@@ -215,11 +215,11 @@ export var IgcToolActionRadioComponent = /** @class */ /*@__PURE__*/ (function (
|
|
|
215
215
|
* Gets the actual border color of the radio when in the checked state.
|
|
216
216
|
*/
|
|
217
217
|
get: function () {
|
|
218
|
-
return brushToString(this.i.
|
|
218
|
+
return brushToString(this.i.h9);
|
|
219
219
|
},
|
|
220
220
|
set: function (v) {
|
|
221
|
-
this.i.
|
|
222
|
-
this._a("actualCheckedBorderColor", brushToString(this.i.
|
|
221
|
+
this.i.h9 = stringToBrush(v);
|
|
222
|
+
this._a("actualCheckedBorderColor", brushToString(this.i.h9));
|
|
223
223
|
},
|
|
224
224
|
enumerable: false,
|
|
225
225
|
configurable: true
|