igniteui-webcomponents-layouts 7.1.0-beta.2 → 7.1.0-beta.4
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 +5588 -4983
- package/bundles/igniteui-webcomponents-layouts.umd.min.js +1 -1
- package/esm2015/lib/NativeUILayoutFactory_combined.js +4759 -4439
- package/esm2015/lib/PropertyEditorPanelView_combined.js +7 -7
- package/esm2015/lib/igc-combo-editor-component.js +160 -32
- 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 +29 -29
- package/esm2015/lib/igc-tool-action-checkbox-group-component.js +10 -10
- package/esm2015/lib/igc-tool-action-checkbox-list-component.js +40 -40
- 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 +61 -61
- 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 +31 -31
- 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 +47 -34
- package/esm2015/lib/igc-tool-action-radio-group-component.js +10 -10
- 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 +283 -253
- package/esm2015/lib/igc-toolbar-component.js +117 -87
- package/esm5/lib/NativeUILayoutFactory_combined.js +4573 -4197
- package/esm5/lib/PropertyEditorPanelView_combined.js +7 -7
- package/esm5/lib/igc-combo-editor-component.js +160 -32
- 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 +29 -29
- package/esm5/lib/igc-tool-action-checkbox-group-component.js +10 -10
- package/esm5/lib/igc-tool-action-checkbox-list-component.js +40 -40
- 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 +61 -61
- 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 +31 -31
- 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 +51 -34
- package/esm5/lib/igc-tool-action-radio-group-component.js +10 -10
- 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 +295 -253
- package/esm5/lib/igc-toolbar-component.js +129 -87
- package/fesm2015/igniteui-webcomponents-layouts.js +5752 -5231
- package/fesm5/igniteui-webcomponents-layouts.js +5588 -4983
- package/lib/NativeUILayoutFactory_combined.d.ts +1040 -997
- package/lib/igc-tool-action-radio-component.d.ts +8 -0
- package/lib/igc-tool-panel-component.d.ts +15 -0
- package/lib/igc-toolbar-component.d.ts +15 -0
- package/package.json +3 -3
|
@@ -80,42 +80,42 @@ let IgcToolActionCheckboxListComponent = /*@__PURE__*/ (() => {
|
|
|
80
80
|
* Gets or sets if the tool action is checked.
|
|
81
81
|
*/
|
|
82
82
|
get selectedMemberPath() {
|
|
83
|
-
return this.i.
|
|
83
|
+
return this.i.il;
|
|
84
84
|
}
|
|
85
85
|
set selectedMemberPath(v) {
|
|
86
|
-
this.i.
|
|
86
|
+
this.i.il = v;
|
|
87
87
|
}
|
|
88
88
|
/**
|
|
89
89
|
* Gets or sets if the select all row is shown.
|
|
90
90
|
*/
|
|
91
91
|
get showSelectAll() {
|
|
92
|
-
return this.i.
|
|
92
|
+
return this.i.h2;
|
|
93
93
|
}
|
|
94
94
|
set showSelectAll(v) {
|
|
95
|
-
this.i.
|
|
96
|
-
this._a("showSelectAll", this.i.
|
|
95
|
+
this.i.h2 = ensureBool(v);
|
|
96
|
+
this._a("showSelectAll", this.i.h2);
|
|
97
97
|
}
|
|
98
98
|
/**
|
|
99
99
|
* Gets or sets if the tool action is checked.
|
|
100
100
|
*/
|
|
101
101
|
get dataMemberPath() {
|
|
102
|
-
return this.i.
|
|
102
|
+
return this.i.ie;
|
|
103
103
|
}
|
|
104
104
|
set dataMemberPath(v) {
|
|
105
|
-
this.i.
|
|
105
|
+
this.i.ie = v;
|
|
106
106
|
}
|
|
107
107
|
/**
|
|
108
108
|
* Gets or sets if the tool action is checked.
|
|
109
109
|
*/
|
|
110
110
|
get primaryKey() {
|
|
111
|
-
return this.i.
|
|
111
|
+
return this.i.hw;
|
|
112
112
|
}
|
|
113
113
|
set primaryKey(v) {
|
|
114
114
|
if (v && !Array.isArray(v) && typeof (v) == "string") {
|
|
115
115
|
const re = /\s*(?:,|\s|$)\s*/gm;
|
|
116
116
|
v = v.split(re);
|
|
117
117
|
}
|
|
118
|
-
this.i.
|
|
118
|
+
this.i.hw = v;
|
|
119
119
|
}
|
|
120
120
|
/**
|
|
121
121
|
|
|
@@ -123,12 +123,12 @@ let IgcToolActionCheckboxListComponent = /*@__PURE__*/ (() => {
|
|
|
123
123
|
get selectedKeys() {
|
|
124
124
|
if (this._selectedKeys === null) {
|
|
125
125
|
let coll = new IgcLayoutSelectedKeysCollection();
|
|
126
|
-
let innerColl = this.i.
|
|
126
|
+
let innerColl = this.i.hx;
|
|
127
127
|
if (!innerColl) {
|
|
128
128
|
innerColl = new LayoutSelectedKeysCollection_internal();
|
|
129
129
|
}
|
|
130
130
|
this._selectedKeys = coll._fromInner(innerColl);
|
|
131
|
-
this.i.
|
|
131
|
+
this.i.hx = innerColl;
|
|
132
132
|
}
|
|
133
133
|
return this._selectedKeys;
|
|
134
134
|
}
|
|
@@ -140,104 +140,104 @@ let IgcToolActionCheckboxListComponent = /*@__PURE__*/ (() => {
|
|
|
140
140
|
let coll = new IgcLayoutSelectedKeysCollection();
|
|
141
141
|
this._selectedKeys = coll._fromOuter(v);
|
|
142
142
|
let syncColl = new SyncableObservableCollection$1(LayoutPrimaryKeyValue.$type);
|
|
143
|
-
let innerColl = this.i.
|
|
143
|
+
let innerColl = this.i.hx;
|
|
144
144
|
if (!innerColl) {
|
|
145
145
|
innerColl = new LayoutSelectedKeysCollection_internal();
|
|
146
146
|
}
|
|
147
147
|
syncColl._inner = innerColl;
|
|
148
148
|
syncColl.clear();
|
|
149
149
|
this._selectedKeys._setSyncTarget(syncColl);
|
|
150
|
-
this.i.
|
|
150
|
+
this.i.hx = innerColl;
|
|
151
151
|
}
|
|
152
152
|
/**
|
|
153
153
|
|
|
154
154
|
*/
|
|
155
155
|
get indexType() {
|
|
156
|
-
return this.i.
|
|
156
|
+
return this.i.hy;
|
|
157
157
|
}
|
|
158
158
|
set indexType(v) {
|
|
159
|
-
this.i.
|
|
160
|
-
this._a("indexType", enumToString(ToolActionCheckboxListIndexType_$type, this.i.
|
|
159
|
+
this.i.hy = ensureEnum(ToolActionCheckboxListIndexType_$type, v);
|
|
160
|
+
this._a("indexType", enumToString(ToolActionCheckboxListIndexType_$type, this.i.hy));
|
|
161
161
|
}
|
|
162
162
|
/**
|
|
163
163
|
* Gets or sets the background color of the checkbox when in the unchecked state.
|
|
164
164
|
*/
|
|
165
165
|
get uncheckedBackgroundColor() {
|
|
166
|
-
return brushToString(this.i.
|
|
166
|
+
return brushToString(this.i.i6);
|
|
167
167
|
}
|
|
168
168
|
set uncheckedBackgroundColor(v) {
|
|
169
|
-
this.i.
|
|
170
|
-
this._a("uncheckedBackgroundColor", brushToString(this.i.
|
|
169
|
+
this.i.i6 = stringToBrush(v);
|
|
170
|
+
this._a("uncheckedBackgroundColor", brushToString(this.i.i6));
|
|
171
171
|
}
|
|
172
172
|
/**
|
|
173
173
|
* Gets the actual background color of the checkbox when in the unchecked state.
|
|
174
174
|
*/
|
|
175
175
|
get actualUncheckedBackgroundColor() {
|
|
176
|
-
return brushToString(this.i.
|
|
176
|
+
return brushToString(this.i.i2);
|
|
177
177
|
}
|
|
178
178
|
set actualUncheckedBackgroundColor(v) {
|
|
179
|
-
this.i.
|
|
180
|
-
this._a("actualUncheckedBackgroundColor", brushToString(this.i.
|
|
179
|
+
this.i.i2 = stringToBrush(v);
|
|
180
|
+
this._a("actualUncheckedBackgroundColor", brushToString(this.i.i2));
|
|
181
181
|
}
|
|
182
182
|
/**
|
|
183
183
|
* Gets or sets the background color of the checkbox when in the checked state.
|
|
184
184
|
*/
|
|
185
185
|
get checkedBackgroundColor() {
|
|
186
|
-
return brushToString(this.i.
|
|
186
|
+
return brushToString(this.i.i4);
|
|
187
187
|
}
|
|
188
188
|
set checkedBackgroundColor(v) {
|
|
189
|
-
this.i.
|
|
190
|
-
this._a("checkedBackgroundColor", brushToString(this.i.
|
|
189
|
+
this.i.i4 = stringToBrush(v);
|
|
190
|
+
this._a("checkedBackgroundColor", brushToString(this.i.i4));
|
|
191
191
|
}
|
|
192
192
|
/**
|
|
193
193
|
* Gets the actual background color of the checkbox when in the checked state.
|
|
194
194
|
*/
|
|
195
195
|
get actualCheckedBackgroundColor() {
|
|
196
|
-
return brushToString(this.i.
|
|
196
|
+
return brushToString(this.i.i0);
|
|
197
197
|
}
|
|
198
198
|
set actualCheckedBackgroundColor(v) {
|
|
199
|
-
this.i.
|
|
200
|
-
this._a("actualCheckedBackgroundColor", brushToString(this.i.
|
|
199
|
+
this.i.i0 = stringToBrush(v);
|
|
200
|
+
this._a("actualCheckedBackgroundColor", brushToString(this.i.i0));
|
|
201
201
|
}
|
|
202
202
|
/**
|
|
203
203
|
* Gets or sets the border color of the checkbox when in the unchecked state.
|
|
204
204
|
*/
|
|
205
205
|
get uncheckedBorderColor() {
|
|
206
|
-
return brushToString(this.i.
|
|
206
|
+
return brushToString(this.i.i7);
|
|
207
207
|
}
|
|
208
208
|
set uncheckedBorderColor(v) {
|
|
209
|
-
this.i.
|
|
210
|
-
this._a("uncheckedBorderColor", brushToString(this.i.
|
|
209
|
+
this.i.i7 = stringToBrush(v);
|
|
210
|
+
this._a("uncheckedBorderColor", brushToString(this.i.i7));
|
|
211
211
|
}
|
|
212
212
|
/**
|
|
213
213
|
* Gets the actual border color of the checkbox when in the unchecked state.
|
|
214
214
|
*/
|
|
215
215
|
get actualUncheckedBorderColor() {
|
|
216
|
-
return brushToString(this.i.
|
|
216
|
+
return brushToString(this.i.i3);
|
|
217
217
|
}
|
|
218
218
|
set actualUncheckedBorderColor(v) {
|
|
219
|
-
this.i.
|
|
220
|
-
this._a("actualUncheckedBorderColor", brushToString(this.i.
|
|
219
|
+
this.i.i3 = stringToBrush(v);
|
|
220
|
+
this._a("actualUncheckedBorderColor", brushToString(this.i.i3));
|
|
221
221
|
}
|
|
222
222
|
/**
|
|
223
223
|
* Gets or sets the border color of the checkbox when in the checked state.
|
|
224
224
|
*/
|
|
225
225
|
get checkedBorderColor() {
|
|
226
|
-
return brushToString(this.i.
|
|
226
|
+
return brushToString(this.i.i5);
|
|
227
227
|
}
|
|
228
228
|
set checkedBorderColor(v) {
|
|
229
|
-
this.i.
|
|
230
|
-
this._a("checkedBorderColor", brushToString(this.i.
|
|
229
|
+
this.i.i5 = stringToBrush(v);
|
|
230
|
+
this._a("checkedBorderColor", brushToString(this.i.i5));
|
|
231
231
|
}
|
|
232
232
|
/**
|
|
233
233
|
* Gets the actual border color of the checkbox when in the checked state.
|
|
234
234
|
*/
|
|
235
235
|
get actualCheckedBorderColor() {
|
|
236
|
-
return brushToString(this.i.
|
|
236
|
+
return brushToString(this.i.i1);
|
|
237
237
|
}
|
|
238
238
|
set actualCheckedBorderColor(v) {
|
|
239
|
-
this.i.
|
|
240
|
-
this._a("actualCheckedBorderColor", brushToString(this.i.
|
|
239
|
+
this.i.i1 = stringToBrush(v);
|
|
240
|
+
this._a("actualCheckedBorderColor", brushToString(this.i.i1));
|
|
241
241
|
}
|
|
242
242
|
findByName(name) {
|
|
243
243
|
var baseResult = super.findByName(name);
|
|
@@ -65,11 +65,11 @@ let IgcToolActionColorEditorComponent = /*@__PURE__*/ (() => {
|
|
|
65
65
|
* Gets or sets the value for the input.
|
|
66
66
|
*/
|
|
67
67
|
get value() {
|
|
68
|
-
return brushToString(this.i.
|
|
68
|
+
return brushToString(this.i.h2);
|
|
69
69
|
}
|
|
70
70
|
set value(v) {
|
|
71
|
-
this.i.
|
|
72
|
-
this._a("value", brushToString(this.i.
|
|
71
|
+
this.i.h2 = stringToBrush(v);
|
|
72
|
+
this._a("value", brushToString(this.i.h2));
|
|
73
73
|
}
|
|
74
74
|
exportVisualData() {
|
|
75
75
|
let iv = this.i.ct();
|
|
@@ -79,19 +79,19 @@ let IgcToolActionComboComponent = /*@__PURE__*/ (() => {
|
|
|
79
79
|
* Gets or sets the field to use to get the displayed values.
|
|
80
80
|
*/
|
|
81
81
|
get displayMemberPath() {
|
|
82
|
-
return this.i.
|
|
82
|
+
return this.i.h0;
|
|
83
83
|
}
|
|
84
84
|
set displayMemberPath(v) {
|
|
85
|
-
this.i.
|
|
85
|
+
this.i.h0 = v;
|
|
86
86
|
}
|
|
87
87
|
/**
|
|
88
88
|
* Gets or sets the field to use to get the values to use.
|
|
89
89
|
*/
|
|
90
90
|
get valueMemberPath() {
|
|
91
|
-
return this.i.
|
|
91
|
+
return this.i.h4;
|
|
92
92
|
}
|
|
93
93
|
set valueMemberPath(v) {
|
|
94
|
-
this.i.
|
|
94
|
+
this.i.h4 = v;
|
|
95
95
|
}
|
|
96
96
|
/**
|
|
97
97
|
|
|
@@ -99,12 +99,12 @@ let IgcToolActionComboComponent = /*@__PURE__*/ (() => {
|
|
|
99
99
|
get selectedValues() {
|
|
100
100
|
if (this._selectedValues === null) {
|
|
101
101
|
let coll = new IgcLayoutSelectedItemsCollection();
|
|
102
|
-
let innerColl = this.i.
|
|
102
|
+
let innerColl = this.i.hw;
|
|
103
103
|
if (!innerColl) {
|
|
104
104
|
innerColl = new LayoutSelectedItemsCollection_internal();
|
|
105
105
|
}
|
|
106
106
|
this._selectedValues = coll._fromInner(innerColl);
|
|
107
|
-
this.i.
|
|
107
|
+
this.i.hw = innerColl;
|
|
108
108
|
}
|
|
109
109
|
return this._selectedValues;
|
|
110
110
|
}
|
|
@@ -116,14 +116,14 @@ let IgcToolActionComboComponent = /*@__PURE__*/ (() => {
|
|
|
116
116
|
let coll = new IgcLayoutSelectedItemsCollection();
|
|
117
117
|
this._selectedValues = coll._fromOuter(v);
|
|
118
118
|
let syncColl = new SyncableObservableCollection$1(Base.$type);
|
|
119
|
-
let innerColl = this.i.
|
|
119
|
+
let innerColl = this.i.hw;
|
|
120
120
|
if (!innerColl) {
|
|
121
121
|
innerColl = new LayoutSelectedItemsCollection_internal();
|
|
122
122
|
}
|
|
123
123
|
syncColl._inner = innerColl;
|
|
124
124
|
syncColl.clear();
|
|
125
125
|
this._selectedValues._setSyncTarget(syncColl);
|
|
126
|
-
this.i.
|
|
126
|
+
this.i.hw = innerColl;
|
|
127
127
|
}
|
|
128
128
|
exportVisualData() {
|
|
129
129
|
let iv = this.i.ct();
|
|
@@ -436,101 +436,101 @@ let IgcToolActionComponent = /*@__PURE__*/ (() => {
|
|
|
436
436
|
* Gets the actual hover background used by the tool action.
|
|
437
437
|
*/
|
|
438
438
|
get actualHoverBackground() {
|
|
439
|
-
return brushToString(this.i.
|
|
439
|
+
return brushToString(this.i.hi);
|
|
440
440
|
}
|
|
441
441
|
set actualHoverBackground(v) {
|
|
442
|
-
this.i.
|
|
443
|
-
this._a("actualHoverBackground", brushToString(this.i.
|
|
442
|
+
this.i.hi = stringToBrush(v);
|
|
443
|
+
this._a("actualHoverBackground", brushToString(this.i.hi));
|
|
444
444
|
}
|
|
445
445
|
/**
|
|
446
446
|
* Gets or sets the hover background for this tool action.
|
|
447
447
|
*/
|
|
448
448
|
get hoverBackground() {
|
|
449
|
-
return brushToString(this.i.
|
|
449
|
+
return brushToString(this.i.hq);
|
|
450
450
|
}
|
|
451
451
|
set hoverBackground(v) {
|
|
452
|
-
this.i.
|
|
453
|
-
this._a("hoverBackground", brushToString(this.i.
|
|
452
|
+
this.i.hq = stringToBrush(v);
|
|
453
|
+
this._a("hoverBackground", brushToString(this.i.hq));
|
|
454
454
|
}
|
|
455
455
|
/**
|
|
456
456
|
* Gets the actual background used by the tool action.
|
|
457
457
|
*/
|
|
458
458
|
get actualBackground() {
|
|
459
|
-
return brushToString(this.i.
|
|
459
|
+
return brushToString(this.i.hf);
|
|
460
460
|
}
|
|
461
461
|
set actualBackground(v) {
|
|
462
|
-
this.i.
|
|
463
|
-
this._a("actualBackground", brushToString(this.i.
|
|
462
|
+
this.i.hf = stringToBrush(v);
|
|
463
|
+
this._a("actualBackground", brushToString(this.i.hf));
|
|
464
464
|
}
|
|
465
465
|
/**
|
|
466
466
|
* Gets or sets the background color of the tool action.
|
|
467
467
|
*/
|
|
468
468
|
get background() {
|
|
469
|
-
return brushToString(this.i.
|
|
469
|
+
return brushToString(this.i.hn);
|
|
470
470
|
}
|
|
471
471
|
set background(v) {
|
|
472
|
-
this.i.
|
|
473
|
-
this._a("background", brushToString(this.i.
|
|
472
|
+
this.i.hn = stringToBrush(v);
|
|
473
|
+
this._a("background", brushToString(this.i.hn));
|
|
474
474
|
}
|
|
475
475
|
/**
|
|
476
476
|
* Gets the actual label text color.
|
|
477
477
|
*/
|
|
478
478
|
get actualTextColor() {
|
|
479
|
-
return brushToString(this.i.
|
|
479
|
+
return brushToString(this.i.hm);
|
|
480
480
|
}
|
|
481
481
|
set actualTextColor(v) {
|
|
482
|
-
this.i.
|
|
483
|
-
this._a("actualTextColor", brushToString(this.i.
|
|
482
|
+
this.i.hm = stringToBrush(v);
|
|
483
|
+
this._a("actualTextColor", brushToString(this.i.hm));
|
|
484
484
|
}
|
|
485
485
|
/**
|
|
486
486
|
* Gets or sets the label text color.
|
|
487
487
|
*/
|
|
488
488
|
get textColor() {
|
|
489
|
-
return brushToString(this.i.
|
|
489
|
+
return brushToString(this.i.hu);
|
|
490
490
|
}
|
|
491
491
|
set textColor(v) {
|
|
492
|
-
this.i.
|
|
493
|
-
this._a("textColor", brushToString(this.i.
|
|
492
|
+
this.i.hu = stringToBrush(v);
|
|
493
|
+
this._a("textColor", brushToString(this.i.hu));
|
|
494
494
|
}
|
|
495
495
|
/**
|
|
496
496
|
* Gets the actual label text color.
|
|
497
497
|
*/
|
|
498
498
|
get actualSubtitleTextColor() {
|
|
499
|
-
return brushToString(this.i.
|
|
499
|
+
return brushToString(this.i.hl);
|
|
500
500
|
}
|
|
501
501
|
set actualSubtitleTextColor(v) {
|
|
502
|
-
this.i.
|
|
503
|
-
this._a("actualSubtitleTextColor", brushToString(this.i.
|
|
502
|
+
this.i.hl = stringToBrush(v);
|
|
503
|
+
this._a("actualSubtitleTextColor", brushToString(this.i.hl));
|
|
504
504
|
}
|
|
505
505
|
/**
|
|
506
506
|
* Gets or sets the label text color.
|
|
507
507
|
*/
|
|
508
508
|
get subtitleTextColor() {
|
|
509
|
-
return brushToString(this.i.
|
|
509
|
+
return brushToString(this.i.ht);
|
|
510
510
|
}
|
|
511
511
|
set subtitleTextColor(v) {
|
|
512
|
-
this.i.
|
|
513
|
-
this._a("subtitleTextColor", brushToString(this.i.
|
|
512
|
+
this.i.ht = stringToBrush(v);
|
|
513
|
+
this._a("subtitleTextColor", brushToString(this.i.ht));
|
|
514
514
|
}
|
|
515
515
|
/**
|
|
516
516
|
* Gets the actual label text color when the tool is disabled.
|
|
517
517
|
*/
|
|
518
518
|
get actualDisabledTextColor() {
|
|
519
|
-
return brushToString(this.i.
|
|
519
|
+
return brushToString(this.i.hg);
|
|
520
520
|
}
|
|
521
521
|
set actualDisabledTextColor(v) {
|
|
522
|
-
this.i.
|
|
523
|
-
this._a("actualDisabledTextColor", brushToString(this.i.
|
|
522
|
+
this.i.hg = stringToBrush(v);
|
|
523
|
+
this._a("actualDisabledTextColor", brushToString(this.i.hg));
|
|
524
524
|
}
|
|
525
525
|
/**
|
|
526
526
|
* Gets or sets the label text color when the tool is disabled.
|
|
527
527
|
*/
|
|
528
528
|
get disabledTextColor() {
|
|
529
|
-
return brushToString(this.i.
|
|
529
|
+
return brushToString(this.i.ho);
|
|
530
530
|
}
|
|
531
531
|
set disabledTextColor(v) {
|
|
532
|
-
this.i.
|
|
533
|
-
this._a("disabledTextColor", brushToString(this.i.
|
|
532
|
+
this.i.ho = stringToBrush(v);
|
|
533
|
+
this._a("disabledTextColor", brushToString(this.i.ho));
|
|
534
534
|
}
|
|
535
535
|
/**
|
|
536
536
|
* Gets the actual font used.
|
|
@@ -595,18 +595,18 @@ let IgcToolActionComponent = /*@__PURE__*/ (() => {
|
|
|
595
595
|
this._a("isHighlighted", this.i.ba);
|
|
596
596
|
}
|
|
597
597
|
get actualAccentColor() {
|
|
598
|
-
return brushToString(this.i.
|
|
598
|
+
return brushToString(this.i.he);
|
|
599
599
|
}
|
|
600
600
|
set actualAccentColor(v) {
|
|
601
|
-
this.i.
|
|
602
|
-
this._a("actualAccentColor", brushToString(this.i.
|
|
601
|
+
this.i.he = stringToBrush(v);
|
|
602
|
+
this._a("actualAccentColor", brushToString(this.i.he));
|
|
603
603
|
}
|
|
604
604
|
get accentColor() {
|
|
605
|
-
return brushToString(this.i.
|
|
605
|
+
return brushToString(this.i.hd);
|
|
606
606
|
}
|
|
607
607
|
set accentColor(v) {
|
|
608
|
-
this.i.
|
|
609
|
-
this._a("accentColor", brushToString(this.i.
|
|
608
|
+
this.i.hd = stringToBrush(v);
|
|
609
|
+
this._a("accentColor", brushToString(this.i.hd));
|
|
610
610
|
}
|
|
611
611
|
/**
|
|
612
612
|
* Gets or sets the display density to use for the action.
|
|
@@ -656,11 +656,11 @@ let IgcToolActionComponent = /*@__PURE__*/ (() => {
|
|
|
656
656
|
* Gets or sets the title horizontal alignment.
|
|
657
657
|
*/
|
|
658
658
|
get titleHorizontalAlignment() {
|
|
659
|
-
return this.i.
|
|
659
|
+
return this.i.hb;
|
|
660
660
|
}
|
|
661
661
|
set titleHorizontalAlignment(v) {
|
|
662
|
-
this.i.
|
|
663
|
-
this._a("titleHorizontalAlignment", enumToString(HorizontalAlignment_$type, this.i.
|
|
662
|
+
this.i.hb = ensureEnum(HorizontalAlignment_$type, v);
|
|
663
|
+
this._a("titleHorizontalAlignment", enumToString(HorizontalAlignment_$type, this.i.hb));
|
|
664
664
|
}
|
|
665
665
|
get iconName() {
|
|
666
666
|
return this.i.ee;
|
|
@@ -718,21 +718,21 @@ let IgcToolActionComponent = /*@__PURE__*/ (() => {
|
|
|
718
718
|
* Gets or sets the icon fill color.
|
|
719
719
|
*/
|
|
720
720
|
get iconFill() {
|
|
721
|
-
return brushToString(this.i.
|
|
721
|
+
return brushToString(this.i.hr);
|
|
722
722
|
}
|
|
723
723
|
set iconFill(v) {
|
|
724
|
-
this.i.
|
|
725
|
-
this._a("iconFill", brushToString(this.i.
|
|
724
|
+
this.i.hr = stringToBrush(v);
|
|
725
|
+
this._a("iconFill", brushToString(this.i.hr));
|
|
726
726
|
}
|
|
727
727
|
/**
|
|
728
728
|
* Gets the actual icon fill color.
|
|
729
729
|
*/
|
|
730
730
|
get actualIconFill() {
|
|
731
|
-
return brushToString(this.i.
|
|
731
|
+
return brushToString(this.i.hj);
|
|
732
732
|
}
|
|
733
733
|
set actualIconFill(v) {
|
|
734
|
-
this.i.
|
|
735
|
-
this._a("actualIconFill", brushToString(this.i.
|
|
734
|
+
this.i.hj = stringToBrush(v);
|
|
735
|
+
this._a("actualIconFill", brushToString(this.i.hj));
|
|
736
736
|
}
|
|
737
737
|
/**
|
|
738
738
|
* Gets or sets the icon fill colors.
|
|
@@ -748,21 +748,21 @@ let IgcToolActionComponent = /*@__PURE__*/ (() => {
|
|
|
748
748
|
* Gets or sets the icon stroke color.
|
|
749
749
|
*/
|
|
750
750
|
get iconStroke() {
|
|
751
|
-
return brushToString(this.i.
|
|
751
|
+
return brushToString(this.i.hs);
|
|
752
752
|
}
|
|
753
753
|
set iconStroke(v) {
|
|
754
|
-
this.i.
|
|
755
|
-
this._a("iconStroke", brushToString(this.i.
|
|
754
|
+
this.i.hs = stringToBrush(v);
|
|
755
|
+
this._a("iconStroke", brushToString(this.i.hs));
|
|
756
756
|
}
|
|
757
757
|
/**
|
|
758
758
|
* Gets the actual icon stroke color.
|
|
759
759
|
*/
|
|
760
760
|
get actualIconStroke() {
|
|
761
|
-
return brushToString(this.i.
|
|
761
|
+
return brushToString(this.i.hk);
|
|
762
762
|
}
|
|
763
763
|
set actualIconStroke(v) {
|
|
764
|
-
this.i.
|
|
765
|
-
this._a("actualIconStroke", brushToString(this.i.
|
|
764
|
+
this.i.hk = stringToBrush(v);
|
|
765
|
+
this._a("actualIconStroke", brushToString(this.i.hk));
|
|
766
766
|
}
|
|
767
767
|
/**
|
|
768
768
|
* Gets or sets the icon stroke colors.
|
|
@@ -828,11 +828,11 @@ let IgcToolActionComponent = /*@__PURE__*/ (() => {
|
|
|
828
828
|
* Gets or sets the tool action visibility.
|
|
829
829
|
*/
|
|
830
830
|
get visibility() {
|
|
831
|
-
return this.i.
|
|
831
|
+
return this.i.hv;
|
|
832
832
|
}
|
|
833
833
|
set visibility(v) {
|
|
834
|
-
this.i.
|
|
835
|
-
this._a("visibility", enumToString(Visibility_$type, this.i.
|
|
834
|
+
this.i.hv = ensureEnum(Visibility_$type, v);
|
|
835
|
+
this._a("visibility", enumToString(Visibility_$type, this.i.hv));
|
|
836
836
|
}
|
|
837
837
|
/**
|
|
838
838
|
* Gets or sets if the tool action will close its parent dropdown when executed by the user.
|
|
@@ -873,18 +873,18 @@ let IgcToolActionComponent = /*@__PURE__*/ (() => {
|
|
|
873
873
|
this._a("actualHighlightRadius", this.i.bx);
|
|
874
874
|
}
|
|
875
875
|
get highlightColor() {
|
|
876
|
-
return brushToString(this.i.
|
|
876
|
+
return brushToString(this.i.hp);
|
|
877
877
|
}
|
|
878
878
|
set highlightColor(v) {
|
|
879
|
-
this.i.
|
|
880
|
-
this._a("highlightColor", brushToString(this.i.
|
|
879
|
+
this.i.hp = stringToBrush(v);
|
|
880
|
+
this._a("highlightColor", brushToString(this.i.hp));
|
|
881
881
|
}
|
|
882
882
|
get actualHighlightColor() {
|
|
883
|
-
return brushToString(this.i.
|
|
883
|
+
return brushToString(this.i.hh);
|
|
884
884
|
}
|
|
885
885
|
set actualHighlightColor(v) {
|
|
886
|
-
this.i.
|
|
887
|
-
this._a("actualHighlightColor", brushToString(this.i.
|
|
886
|
+
this.i.hh = stringToBrush(v);
|
|
887
|
+
this._a("actualHighlightColor", brushToString(this.i.hh));
|
|
888
888
|
}
|
|
889
889
|
findByName(name) {
|
|
890
890
|
if (this.findEphemera) {
|
|
@@ -954,7 +954,7 @@ let IgcToolActionComponent = /*@__PURE__*/ (() => {
|
|
|
954
954
|
this._inStyling = false;
|
|
955
955
|
}
|
|
956
956
|
openSubMenu() {
|
|
957
|
-
this.i.
|
|
957
|
+
this.i.gn();
|
|
958
958
|
}
|
|
959
959
|
closeSubmenu() {
|
|
960
960
|
this.i.fi();
|