igniteui-webcomponents-layouts 7.1.0-beta.2 → 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-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
|
@@ -75,36 +75,36 @@ let IgcToolActionFieldSelectorComponent = /*@__PURE__*/ (() => {
|
|
|
75
75
|
* Gets or sets if the tool action is checked.
|
|
76
76
|
*/
|
|
77
77
|
get dataSource() {
|
|
78
|
-
return this.i.
|
|
78
|
+
return this.i.h4;
|
|
79
79
|
}
|
|
80
80
|
set dataSource(v) {
|
|
81
|
-
this.i.
|
|
81
|
+
this.i.h4 = v;
|
|
82
82
|
}
|
|
83
83
|
get legendTarget() {
|
|
84
|
-
return this.i.
|
|
84
|
+
return this.i.i0;
|
|
85
85
|
}
|
|
86
86
|
set legendTarget(v) {
|
|
87
|
-
this.i.
|
|
87
|
+
this.i.i0 = v;
|
|
88
88
|
}
|
|
89
89
|
/**
|
|
90
90
|
* Gets or sets if the tool action is checked.
|
|
91
91
|
*/
|
|
92
92
|
get fieldType() {
|
|
93
|
-
return this.i.
|
|
93
|
+
return this.i.h8;
|
|
94
94
|
}
|
|
95
95
|
set fieldType(v) {
|
|
96
|
-
this.i.
|
|
97
|
-
this._a("fieldType", enumToString(ToolActionFieldSelectorType_$type, this.i.
|
|
96
|
+
this.i.h8 = ensureEnum(ToolActionFieldSelectorType_$type, v);
|
|
97
|
+
this._a("fieldType", enumToString(ToolActionFieldSelectorType_$type, this.i.h8));
|
|
98
98
|
}
|
|
99
99
|
/**
|
|
100
100
|
* Gets or sets if the list only takes one selection at a time.
|
|
101
101
|
*/
|
|
102
102
|
get singleSelection() {
|
|
103
|
-
return this.i.
|
|
103
|
+
return this.i.ij;
|
|
104
104
|
}
|
|
105
105
|
set singleSelection(v) {
|
|
106
|
-
this.i.
|
|
107
|
-
this._a("singleSelection", this.i.
|
|
106
|
+
this.i.ij = ensureBool(v);
|
|
107
|
+
this._a("singleSelection", this.i.ij);
|
|
108
108
|
}
|
|
109
109
|
/**
|
|
110
110
|
* Gets or sets a list of aggregations to use, if null a default list is used instead.
|
|
@@ -113,12 +113,12 @@ let IgcToolActionFieldSelectorComponent = /*@__PURE__*/ (() => {
|
|
|
113
113
|
get aggregations() {
|
|
114
114
|
if (this._aggregations === null) {
|
|
115
115
|
let coll = new IgcToolActionFieldSelectorAggregationsCollection();
|
|
116
|
-
let innerColl = this.i.
|
|
116
|
+
let innerColl = this.i.h5;
|
|
117
117
|
if (!innerColl) {
|
|
118
118
|
innerColl = new ToolActionFieldSelectorAggregationsCollection_internal();
|
|
119
119
|
}
|
|
120
120
|
this._aggregations = coll._fromInner(innerColl);
|
|
121
|
-
this.i.
|
|
121
|
+
this.i.h5 = innerColl;
|
|
122
122
|
}
|
|
123
123
|
return this._aggregations;
|
|
124
124
|
}
|
|
@@ -130,24 +130,24 @@ let IgcToolActionFieldSelectorComponent = /*@__PURE__*/ (() => {
|
|
|
130
130
|
let coll = new IgcToolActionFieldSelectorAggregationsCollection();
|
|
131
131
|
this._aggregations = coll._fromOuter(v);
|
|
132
132
|
let syncColl = new SyncableObservableCollection$1(ToolActionFieldSelectorAggregation.$type);
|
|
133
|
-
let innerColl = this.i.
|
|
133
|
+
let innerColl = this.i.h5;
|
|
134
134
|
if (!innerColl) {
|
|
135
135
|
innerColl = new ToolActionFieldSelectorAggregationsCollection_internal();
|
|
136
136
|
}
|
|
137
137
|
syncColl._inner = innerColl;
|
|
138
138
|
syncColl.clear();
|
|
139
139
|
this._aggregations._setSyncTarget(syncColl);
|
|
140
|
-
this.i.
|
|
140
|
+
this.i.h5 = innerColl;
|
|
141
141
|
}
|
|
142
142
|
/**
|
|
143
143
|
* Gets or sets if the data source has to be updated when changes are made.
|
|
144
144
|
*/
|
|
145
145
|
get updateDataSource() {
|
|
146
|
-
return this.i.
|
|
146
|
+
return this.i.ik;
|
|
147
147
|
}
|
|
148
148
|
set updateDataSource(v) {
|
|
149
|
-
this.i.
|
|
150
|
-
this._a("updateDataSource", this.i.
|
|
149
|
+
this.i.ik = ensureBool(v);
|
|
150
|
+
this._a("updateDataSource", this.i.ik);
|
|
151
151
|
}
|
|
152
152
|
/**
|
|
153
153
|
* Used to set default values when using custom aggregations, will be overriden otherwise
|
|
@@ -155,12 +155,12 @@ let IgcToolActionFieldSelectorComponent = /*@__PURE__*/ (() => {
|
|
|
155
155
|
get selectedAggregations() {
|
|
156
156
|
if (this._selectedAggregations === null) {
|
|
157
157
|
let coll = new IgcToolActionFieldSelectorSelectedAggregationsCollection();
|
|
158
|
-
let innerColl = this.i.
|
|
158
|
+
let innerColl = this.i.h7;
|
|
159
159
|
if (!innerColl) {
|
|
160
160
|
innerColl = new ToolActionFieldSelectorSelectedAggregationsCollection_internal();
|
|
161
161
|
}
|
|
162
162
|
this._selectedAggregations = coll._fromInner(innerColl);
|
|
163
|
-
this.i.
|
|
163
|
+
this.i.h7 = innerColl;
|
|
164
164
|
}
|
|
165
165
|
return this._selectedAggregations;
|
|
166
166
|
}
|
|
@@ -172,70 +172,70 @@ let IgcToolActionFieldSelectorComponent = /*@__PURE__*/ (() => {
|
|
|
172
172
|
let coll = new IgcToolActionFieldSelectorSelectedAggregationsCollection();
|
|
173
173
|
this._selectedAggregations = coll._fromOuter(v);
|
|
174
174
|
let syncColl = new SyncableObservableCollection$1(ToolActionFieldSelectorSelectedAggregation.$type);
|
|
175
|
-
let innerColl = this.i.
|
|
175
|
+
let innerColl = this.i.h7;
|
|
176
176
|
if (!innerColl) {
|
|
177
177
|
innerColl = new ToolActionFieldSelectorSelectedAggregationsCollection_internal();
|
|
178
178
|
}
|
|
179
179
|
syncColl._inner = innerColl;
|
|
180
180
|
syncColl.clear();
|
|
181
181
|
this._selectedAggregations._setSyncTarget(syncColl);
|
|
182
|
-
this.i.
|
|
182
|
+
this.i.h7 = innerColl;
|
|
183
183
|
}
|
|
184
184
|
get paddingLeft() {
|
|
185
|
-
return this.i.
|
|
185
|
+
return this.i.iu;
|
|
186
186
|
}
|
|
187
187
|
set paddingLeft(v) {
|
|
188
|
-
this.i.
|
|
189
|
-
this._a("paddingLeft", this.i.
|
|
188
|
+
this.i.iu = +v;
|
|
189
|
+
this._a("paddingLeft", this.i.iu);
|
|
190
190
|
}
|
|
191
191
|
get actualPaddingLeft() {
|
|
192
|
-
return this.i.
|
|
192
|
+
return this.i.iq;
|
|
193
193
|
}
|
|
194
194
|
set actualPaddingLeft(v) {
|
|
195
|
-
this.i.
|
|
196
|
-
this._a("actualPaddingLeft", this.i.
|
|
195
|
+
this.i.iq = +v;
|
|
196
|
+
this._a("actualPaddingLeft", this.i.iq);
|
|
197
197
|
}
|
|
198
198
|
get paddingRight() {
|
|
199
|
-
return this.i.
|
|
199
|
+
return this.i.iv;
|
|
200
200
|
}
|
|
201
201
|
set paddingRight(v) {
|
|
202
|
-
this.i.
|
|
203
|
-
this._a("paddingRight", this.i.
|
|
202
|
+
this.i.iv = +v;
|
|
203
|
+
this._a("paddingRight", this.i.iv);
|
|
204
204
|
}
|
|
205
205
|
get actualPaddingRight() {
|
|
206
|
-
return this.i.
|
|
206
|
+
return this.i.ir;
|
|
207
207
|
}
|
|
208
208
|
set actualPaddingRight(v) {
|
|
209
|
-
this.i.
|
|
210
|
-
this._a("actualPaddingRight", this.i.
|
|
209
|
+
this.i.ir = +v;
|
|
210
|
+
this._a("actualPaddingRight", this.i.ir);
|
|
211
211
|
}
|
|
212
212
|
get paddingBottom() {
|
|
213
|
-
return this.i.
|
|
213
|
+
return this.i.it;
|
|
214
214
|
}
|
|
215
215
|
set paddingBottom(v) {
|
|
216
|
-
this.i.
|
|
217
|
-
this._a("paddingBottom", this.i.
|
|
216
|
+
this.i.it = +v;
|
|
217
|
+
this._a("paddingBottom", this.i.it);
|
|
218
218
|
}
|
|
219
219
|
get actualPaddingBottom() {
|
|
220
|
-
return this.i.
|
|
220
|
+
return this.i.ip;
|
|
221
221
|
}
|
|
222
222
|
set actualPaddingBottom(v) {
|
|
223
|
-
this.i.
|
|
224
|
-
this._a("actualPaddingBottom", this.i.
|
|
223
|
+
this.i.ip = +v;
|
|
224
|
+
this._a("actualPaddingBottom", this.i.ip);
|
|
225
225
|
}
|
|
226
226
|
get paddingTop() {
|
|
227
|
-
return this.i.
|
|
227
|
+
return this.i.iw;
|
|
228
228
|
}
|
|
229
229
|
set paddingTop(v) {
|
|
230
|
-
this.i.
|
|
231
|
-
this._a("paddingTop", this.i.
|
|
230
|
+
this.i.iw = +v;
|
|
231
|
+
this._a("paddingTop", this.i.iw);
|
|
232
232
|
}
|
|
233
233
|
get actualPaddingTop() {
|
|
234
|
-
return this.i.
|
|
234
|
+
return this.i.is;
|
|
235
235
|
}
|
|
236
236
|
set actualPaddingTop(v) {
|
|
237
|
-
this.i.
|
|
238
|
-
this._a("actualPaddingTop", this.i.
|
|
237
|
+
this.i.is = +v;
|
|
238
|
+
this._a("actualPaddingTop", this.i.is);
|
|
239
239
|
}
|
|
240
240
|
findByName(name) {
|
|
241
241
|
var baseResult = super.findByName(name);
|
|
@@ -65,21 +65,21 @@ let IgcToolActionGroupHeaderComponent = /*@__PURE__*/ (() => {
|
|
|
65
65
|
* Gets the actual back icon color.
|
|
66
66
|
*/
|
|
67
67
|
get actualBackIconColor() {
|
|
68
|
-
return brushToString(this.i.
|
|
68
|
+
return brushToString(this.i.h6);
|
|
69
69
|
}
|
|
70
70
|
set actualBackIconColor(v) {
|
|
71
|
-
this.i.
|
|
72
|
-
this._a("actualBackIconColor", brushToString(this.i.
|
|
71
|
+
this.i.h6 = stringToBrush(v);
|
|
72
|
+
this._a("actualBackIconColor", brushToString(this.i.h6));
|
|
73
73
|
}
|
|
74
74
|
/**
|
|
75
75
|
* Gets or sets the icon color for the back button.
|
|
76
76
|
*/
|
|
77
77
|
get backIconColor() {
|
|
78
|
-
return brushToString(this.i.
|
|
78
|
+
return brushToString(this.i.h7);
|
|
79
79
|
}
|
|
80
80
|
set backIconColor(v) {
|
|
81
|
-
this.i.
|
|
82
|
-
this._a("backIconColor", brushToString(this.i.
|
|
81
|
+
this.i.h7 = stringToBrush(v);
|
|
82
|
+
this._a("backIconColor", brushToString(this.i.h7));
|
|
83
83
|
}
|
|
84
84
|
exportVisualData() {
|
|
85
85
|
let iv = this.i.ct();
|
|
@@ -69,83 +69,83 @@ let IgcToolActionIconButtonComponent = /*@__PURE__*/ (() => {
|
|
|
69
69
|
* Gets or sets how long it takes before the tooltip is displayed (in milliseconds).
|
|
70
70
|
*/
|
|
71
71
|
get tooltipDelay() {
|
|
72
|
-
return this.i.
|
|
72
|
+
return this.i.i6;
|
|
73
73
|
}
|
|
74
74
|
set tooltipDelay(v) {
|
|
75
|
-
this.i.
|
|
76
|
-
this._a("tooltipDelay", this.i.
|
|
75
|
+
this.i.i6 = +v;
|
|
76
|
+
this._a("tooltipDelay", this.i.i6);
|
|
77
77
|
}
|
|
78
78
|
/**
|
|
79
79
|
* Gets the actual delay before the tooltip is displayed (in milliseconds).
|
|
80
80
|
*/
|
|
81
81
|
get actualTooltipDelay() {
|
|
82
|
-
return this.i.
|
|
82
|
+
return this.i.i5;
|
|
83
83
|
}
|
|
84
84
|
set actualTooltipDelay(v) {
|
|
85
|
-
this.i.
|
|
86
|
-
this._a("actualTooltipDelay", this.i.
|
|
85
|
+
this.i.i5 = +v;
|
|
86
|
+
this._a("actualTooltipDelay", this.i.i5);
|
|
87
87
|
}
|
|
88
88
|
get contentPaddingLeft() {
|
|
89
|
-
return this.i.
|
|
89
|
+
return this.i.iz;
|
|
90
90
|
}
|
|
91
91
|
set contentPaddingLeft(v) {
|
|
92
|
-
this.i.
|
|
93
|
-
this._a("contentPaddingLeft", this.i.
|
|
92
|
+
this.i.iz = +v;
|
|
93
|
+
this._a("contentPaddingLeft", this.i.iz);
|
|
94
94
|
}
|
|
95
95
|
get actualContentPaddingLeft() {
|
|
96
|
-
return this.i.
|
|
96
|
+
return this.i.iv;
|
|
97
97
|
}
|
|
98
98
|
set actualContentPaddingLeft(v) {
|
|
99
|
-
this.i.
|
|
100
|
-
this._a("actualContentPaddingLeft", this.i.
|
|
99
|
+
this.i.iv = +v;
|
|
100
|
+
this._a("actualContentPaddingLeft", this.i.iv);
|
|
101
101
|
}
|
|
102
102
|
get contentPaddingTop() {
|
|
103
|
-
return this.i.
|
|
103
|
+
return this.i.i1;
|
|
104
104
|
}
|
|
105
105
|
set contentPaddingTop(v) {
|
|
106
|
-
this.i.
|
|
107
|
-
this._a("contentPaddingTop", this.i.
|
|
106
|
+
this.i.i1 = +v;
|
|
107
|
+
this._a("contentPaddingTop", this.i.i1);
|
|
108
108
|
}
|
|
109
109
|
get actualContentPaddingTop() {
|
|
110
|
-
return this.i.
|
|
110
|
+
return this.i.ix;
|
|
111
111
|
}
|
|
112
112
|
set actualContentPaddingTop(v) {
|
|
113
|
-
this.i.
|
|
114
|
-
this._a("actualContentPaddingTop", this.i.
|
|
113
|
+
this.i.ix = +v;
|
|
114
|
+
this._a("actualContentPaddingTop", this.i.ix);
|
|
115
115
|
}
|
|
116
116
|
get contentPaddingRight() {
|
|
117
|
-
return this.i.
|
|
117
|
+
return this.i.i0;
|
|
118
118
|
}
|
|
119
119
|
set contentPaddingRight(v) {
|
|
120
|
-
this.i.
|
|
121
|
-
this._a("contentPaddingRight", this.i.
|
|
120
|
+
this.i.i0 = +v;
|
|
121
|
+
this._a("contentPaddingRight", this.i.i0);
|
|
122
122
|
}
|
|
123
123
|
get actualContentPaddingRight() {
|
|
124
|
-
return this.i.
|
|
124
|
+
return this.i.iw;
|
|
125
125
|
}
|
|
126
126
|
set actualContentPaddingRight(v) {
|
|
127
|
-
this.i.
|
|
128
|
-
this._a("actualContentPaddingRight", this.i.
|
|
127
|
+
this.i.iw = +v;
|
|
128
|
+
this._a("actualContentPaddingRight", this.i.iw);
|
|
129
129
|
}
|
|
130
130
|
get contentPaddingBottom() {
|
|
131
|
-
return this.i.
|
|
131
|
+
return this.i.iy;
|
|
132
132
|
}
|
|
133
133
|
set contentPaddingBottom(v) {
|
|
134
|
-
this.i.
|
|
135
|
-
this._a("contentPaddingBottom", this.i.
|
|
134
|
+
this.i.iy = +v;
|
|
135
|
+
this._a("contentPaddingBottom", this.i.iy);
|
|
136
136
|
}
|
|
137
137
|
get actualContentPaddingBottom() {
|
|
138
|
-
return this.i.
|
|
138
|
+
return this.i.iu;
|
|
139
139
|
}
|
|
140
140
|
set actualContentPaddingBottom(v) {
|
|
141
|
-
this.i.
|
|
142
|
-
this._a("actualContentPaddingBottom", this.i.
|
|
141
|
+
this.i.iu = +v;
|
|
142
|
+
this._a("actualContentPaddingBottom", this.i.iu);
|
|
143
143
|
}
|
|
144
144
|
get isOpen() {
|
|
145
145
|
return this.i.bb;
|
|
146
146
|
}
|
|
147
147
|
openSubMenu() {
|
|
148
|
-
this.i.
|
|
148
|
+
this.i.gn();
|
|
149
149
|
}
|
|
150
150
|
closeSubmenu() {
|
|
151
151
|
this.i.fi();
|
|
@@ -65,31 +65,31 @@ let IgcToolActionIconMenuComponent = /*@__PURE__*/ (() => {
|
|
|
65
65
|
* Gets or sets the stroke color of the arrow icon.
|
|
66
66
|
*/
|
|
67
67
|
get arrowStroke() {
|
|
68
|
-
return brushToString(this.i.
|
|
68
|
+
return brushToString(this.i.kn);
|
|
69
69
|
}
|
|
70
70
|
set arrowStroke(v) {
|
|
71
|
-
this.i.
|
|
72
|
-
this._a("arrowStroke", brushToString(this.i.
|
|
71
|
+
this.i.kn = stringToBrush(v);
|
|
72
|
+
this._a("arrowStroke", brushToString(this.i.kn));
|
|
73
73
|
}
|
|
74
74
|
/**
|
|
75
75
|
* Gets the actual stroke color of the arrow icon.
|
|
76
76
|
*/
|
|
77
77
|
get actualArrowStroke() {
|
|
78
|
-
return brushToString(this.i.
|
|
78
|
+
return brushToString(this.i.km);
|
|
79
79
|
}
|
|
80
80
|
set actualArrowStroke(v) {
|
|
81
|
-
this.i.
|
|
82
|
-
this._a("actualArrowStroke", brushToString(this.i.
|
|
81
|
+
this.i.km = stringToBrush(v);
|
|
82
|
+
this._a("actualArrowStroke", brushToString(this.i.km));
|
|
83
83
|
}
|
|
84
84
|
/**
|
|
85
85
|
* Gets or sets whether the arrow icon should be shown.
|
|
86
86
|
*/
|
|
87
87
|
get showArrowIcon() {
|
|
88
|
-
return this.i.
|
|
88
|
+
return this.i.kc;
|
|
89
89
|
}
|
|
90
90
|
set showArrowIcon(v) {
|
|
91
|
-
this.i.
|
|
92
|
-
this._a("showArrowIcon", this.i.
|
|
91
|
+
this.i.kc = ensureBool(v);
|
|
92
|
+
this._a("showArrowIcon", this.i.kc);
|
|
93
93
|
}
|
|
94
94
|
exportVisualData() {
|
|
95
95
|
let iv = this.i.ct();
|
|
@@ -65,11 +65,11 @@ let IgcToolActionNumberInputComponent = /*@__PURE__*/ (() => {
|
|
|
65
65
|
* Gets or sets the value for the input.
|
|
66
66
|
*/
|
|
67
67
|
get value() {
|
|
68
|
-
return this.i.
|
|
68
|
+
return this.i.hy;
|
|
69
69
|
}
|
|
70
70
|
set value(v) {
|
|
71
|
-
this.i.
|
|
72
|
-
this._a("value", this.i.
|
|
71
|
+
this.i.hy = +v;
|
|
72
|
+
this._a("value", this.i.hy);
|
|
73
73
|
}
|
|
74
74
|
exportVisualData() {
|
|
75
75
|
let iv = this.i.ct();
|
|
@@ -65,10 +65,10 @@ let IgcToolActionRadioComponent = /*@__PURE__*/ (() => {
|
|
|
65
65
|
* Gets or sets the channel this radio button belongs to.
|
|
66
66
|
*/
|
|
67
67
|
get channel() {
|
|
68
|
-
return this.i.
|
|
68
|
+
return this.i.h5;
|
|
69
69
|
}
|
|
70
70
|
set channel(v) {
|
|
71
|
-
this.i.
|
|
71
|
+
this.i.h5 = v;
|
|
72
72
|
}
|
|
73
73
|
/**
|
|
74
74
|
* Gets or sets a shorthand title for this radio option. Used by
|
|
@@ -77,111 +77,124 @@ let IgcToolActionRadioComponent = /*@__PURE__*/ (() => {
|
|
|
77
77
|
* for more compact display.
|
|
78
78
|
*/
|
|
79
79
|
get shorthandTitle() {
|
|
80
|
-
return this.i.
|
|
80
|
+
return this.i.ib;
|
|
81
81
|
}
|
|
82
82
|
set shorthandTitle(v) {
|
|
83
|
-
this.i.
|
|
83
|
+
this.i.ib = v;
|
|
84
84
|
}
|
|
85
85
|
/**
|
|
86
86
|
* Gets or sets if the tool action is checked.
|
|
87
87
|
*/
|
|
88
88
|
get isChecked() {
|
|
89
|
-
return this.i.
|
|
89
|
+
return this.i.hx;
|
|
90
90
|
}
|
|
91
91
|
set isChecked(v) {
|
|
92
|
-
this.i.
|
|
93
|
-
this._a("isChecked", this.i.
|
|
92
|
+
this.i.hx = ensureBool(v);
|
|
93
|
+
this._a("isChecked", this.i.hx);
|
|
94
94
|
}
|
|
95
95
|
/**
|
|
96
96
|
* Gets or sets if the checked state of the radio is handled manually by the user. The radio
|
|
97
97
|
* well not become selected when clicked if this property is true.
|
|
98
98
|
*/
|
|
99
99
|
get isManual() {
|
|
100
|
-
return this.i.
|
|
100
|
+
return this.i.hy;
|
|
101
101
|
}
|
|
102
102
|
set isManual(v) {
|
|
103
|
-
this.i.
|
|
104
|
-
this._a("isManual", this.i.
|
|
103
|
+
this.i.hy = ensureBool(v);
|
|
104
|
+
this._a("isManual", this.i.hy);
|
|
105
|
+
}
|
|
106
|
+
/**
|
|
107
|
+
* Gets or sets whether the radio can be unchecked by clicking it again. When true, the radio
|
|
108
|
+
* behaves like a checkbox for the on-state — clicking a checked radio will uncheck it, leaving
|
|
109
|
+
* the channel with no selection. Channel exclusivity is still enforced when the radio is checked
|
|
110
|
+
* (siblings in the same channel will be deselected). Defaults to false.
|
|
111
|
+
*/
|
|
112
|
+
get isToggleable() {
|
|
113
|
+
return this.i.hz;
|
|
114
|
+
}
|
|
115
|
+
set isToggleable(v) {
|
|
116
|
+
this.i.hz = ensureBool(v);
|
|
117
|
+
this._a("isToggleable", this.i.hz);
|
|
105
118
|
}
|
|
106
119
|
/**
|
|
107
120
|
* Gets or sets the background color of the radio when in the unchecked state.
|
|
108
121
|
*/
|
|
109
122
|
get uncheckedBackgroundColor() {
|
|
110
|
-
return brushToString(this.i.
|
|
123
|
+
return brushToString(this.i.iq);
|
|
111
124
|
}
|
|
112
125
|
set uncheckedBackgroundColor(v) {
|
|
113
|
-
this.i.
|
|
114
|
-
this._a("uncheckedBackgroundColor", brushToString(this.i.
|
|
126
|
+
this.i.iq = stringToBrush(v);
|
|
127
|
+
this._a("uncheckedBackgroundColor", brushToString(this.i.iq));
|
|
115
128
|
}
|
|
116
129
|
/**
|
|
117
130
|
* Gets the actual background color of the radio when in the unchecked state.
|
|
118
131
|
*/
|
|
119
132
|
get actualUncheckedBackgroundColor() {
|
|
120
|
-
return brushToString(this.i.
|
|
133
|
+
return brushToString(this.i.il);
|
|
121
134
|
}
|
|
122
135
|
set actualUncheckedBackgroundColor(v) {
|
|
123
|
-
this.i.
|
|
124
|
-
this._a("actualUncheckedBackgroundColor", brushToString(this.i.
|
|
136
|
+
this.i.il = stringToBrush(v);
|
|
137
|
+
this._a("actualUncheckedBackgroundColor", brushToString(this.i.il));
|
|
125
138
|
}
|
|
126
139
|
/**
|
|
127
140
|
* Gets or sets the background color of the radio when in the checked state.
|
|
128
141
|
*/
|
|
129
142
|
get checkedBackgroundColor() {
|
|
130
|
-
return brushToString(this.i.
|
|
143
|
+
return brushToString(this.i.io);
|
|
131
144
|
}
|
|
132
145
|
set checkedBackgroundColor(v) {
|
|
133
|
-
this.i.
|
|
134
|
-
this._a("checkedBackgroundColor", brushToString(this.i.
|
|
146
|
+
this.i.io = stringToBrush(v);
|
|
147
|
+
this._a("checkedBackgroundColor", brushToString(this.i.io));
|
|
135
148
|
}
|
|
136
149
|
/**
|
|
137
150
|
* Gets the actual background color of the radio when in the checked state.
|
|
138
151
|
*/
|
|
139
152
|
get actualCheckedBackgroundColor() {
|
|
140
|
-
return brushToString(this.i.
|
|
153
|
+
return brushToString(this.i.ij);
|
|
141
154
|
}
|
|
142
155
|
set actualCheckedBackgroundColor(v) {
|
|
143
|
-
this.i.
|
|
144
|
-
this._a("actualCheckedBackgroundColor", brushToString(this.i.
|
|
156
|
+
this.i.ij = stringToBrush(v);
|
|
157
|
+
this._a("actualCheckedBackgroundColor", brushToString(this.i.ij));
|
|
145
158
|
}
|
|
146
159
|
/**
|
|
147
160
|
* Gets or sets the border color of the radio when in the unchecked state.
|
|
148
161
|
*/
|
|
149
162
|
get uncheckedBorderColor() {
|
|
150
|
-
return brushToString(this.i.
|
|
163
|
+
return brushToString(this.i.ir);
|
|
151
164
|
}
|
|
152
165
|
set uncheckedBorderColor(v) {
|
|
153
|
-
this.i.
|
|
154
|
-
this._a("uncheckedBorderColor", brushToString(this.i.
|
|
166
|
+
this.i.ir = stringToBrush(v);
|
|
167
|
+
this._a("uncheckedBorderColor", brushToString(this.i.ir));
|
|
155
168
|
}
|
|
156
169
|
/**
|
|
157
170
|
* Gets the actual border color of the radio when in the unchecked state.
|
|
158
171
|
*/
|
|
159
172
|
get actualUncheckedBorderColor() {
|
|
160
|
-
return brushToString(this.i.
|
|
173
|
+
return brushToString(this.i.im);
|
|
161
174
|
}
|
|
162
175
|
set actualUncheckedBorderColor(v) {
|
|
163
|
-
this.i.
|
|
164
|
-
this._a("actualUncheckedBorderColor", brushToString(this.i.
|
|
176
|
+
this.i.im = stringToBrush(v);
|
|
177
|
+
this._a("actualUncheckedBorderColor", brushToString(this.i.im));
|
|
165
178
|
}
|
|
166
179
|
/**
|
|
167
180
|
* Gets or sets the border color of the radio when in the checked state.
|
|
168
181
|
*/
|
|
169
182
|
get checkedBorderColor() {
|
|
170
|
-
return brushToString(this.i.
|
|
183
|
+
return brushToString(this.i.ip);
|
|
171
184
|
}
|
|
172
185
|
set checkedBorderColor(v) {
|
|
173
|
-
this.i.
|
|
174
|
-
this._a("checkedBorderColor", brushToString(this.i.
|
|
186
|
+
this.i.ip = stringToBrush(v);
|
|
187
|
+
this._a("checkedBorderColor", brushToString(this.i.ip));
|
|
175
188
|
}
|
|
176
189
|
/**
|
|
177
190
|
* Gets the actual border color of the radio when in the checked state.
|
|
178
191
|
*/
|
|
179
192
|
get actualCheckedBorderColor() {
|
|
180
|
-
return brushToString(this.i.
|
|
193
|
+
return brushToString(this.i.ik);
|
|
181
194
|
}
|
|
182
195
|
set actualCheckedBorderColor(v) {
|
|
183
|
-
this.i.
|
|
184
|
-
this._a("actualCheckedBorderColor", brushToString(this.i.
|
|
196
|
+
this.i.ik = stringToBrush(v);
|
|
197
|
+
this._a("actualCheckedBorderColor", brushToString(this.i.ik));
|
|
185
198
|
}
|
|
186
199
|
exportVisualData() {
|
|
187
200
|
let iv = this.i.ct();
|
|
@@ -67,37 +67,37 @@ let IgcToolActionRadioGroupComponent = /*@__PURE__*/ (() => {
|
|
|
67
67
|
* When null, defaults to the ToolPanel's cell text style with a slightly smaller font size.
|
|
68
68
|
*/
|
|
69
69
|
get selectedTextStyle() {
|
|
70
|
-
if (this.i.
|
|
70
|
+
if (this.i.hy == null) {
|
|
71
71
|
return null;
|
|
72
72
|
}
|
|
73
|
-
return this.i.
|
|
73
|
+
return this.i.hy.fontString;
|
|
74
74
|
}
|
|
75
75
|
set selectedTextStyle(v) {
|
|
76
76
|
let fi = new FontInfo();
|
|
77
77
|
fi.fontString = v;
|
|
78
|
-
this.i.
|
|
79
|
-
this._a("selectedTextStyle", this.i.
|
|
78
|
+
this.i.hy = fi;
|
|
79
|
+
this._a("selectedTextStyle", this.i.hy != null ? this.i.hy.fontString : "");
|
|
80
80
|
}
|
|
81
81
|
/**
|
|
82
82
|
* Gets or sets the color for the selected radio display text.
|
|
83
83
|
* When null, defaults to a lightened version of the ToolPanel's text color.
|
|
84
84
|
*/
|
|
85
85
|
get selectedTextColor() {
|
|
86
|
-
return brushToString(this.i.
|
|
86
|
+
return brushToString(this.i.ia);
|
|
87
87
|
}
|
|
88
88
|
set selectedTextColor(v) {
|
|
89
|
-
this.i.
|
|
90
|
-
this._a("selectedTextColor", brushToString(this.i.
|
|
89
|
+
this.i.ia = stringToBrush(v);
|
|
90
|
+
this._a("selectedTextColor", brushToString(this.i.ia));
|
|
91
91
|
}
|
|
92
92
|
/**
|
|
93
93
|
* Gets the resolved color for the selected radio display text.
|
|
94
94
|
*/
|
|
95
95
|
get actualSelectedTextColor() {
|
|
96
|
-
return brushToString(this.i.
|
|
96
|
+
return brushToString(this.i.h9);
|
|
97
97
|
}
|
|
98
98
|
set actualSelectedTextColor(v) {
|
|
99
|
-
this.i.
|
|
100
|
-
this._a("actualSelectedTextColor", brushToString(this.i.
|
|
99
|
+
this.i.h9 = stringToBrush(v);
|
|
100
|
+
this._a("actualSelectedTextColor", brushToString(this.i.h9));
|
|
101
101
|
}
|
|
102
102
|
exportVisualData() {
|
|
103
103
|
let iv = this.i.ct();
|
|
@@ -65,21 +65,21 @@ let IgcToolActionSeparatorComponent = /*@__PURE__*/ (() => {
|
|
|
65
65
|
* Gets or sets the size of the separator.
|
|
66
66
|
*/
|
|
67
67
|
get size() {
|
|
68
|
-
return this.i.
|
|
68
|
+
return this.i.hy;
|
|
69
69
|
}
|
|
70
70
|
set size(v) {
|
|
71
|
-
this.i.
|
|
72
|
-
this._a("size", this.i.
|
|
71
|
+
this.i.hy = +v;
|
|
72
|
+
this._a("size", this.i.hy);
|
|
73
73
|
}
|
|
74
74
|
/**
|
|
75
75
|
* Gets or sets whether to use group header styling or regular styling on this separator.
|
|
76
76
|
*/
|
|
77
77
|
get isGroupHeaderSeparator() {
|
|
78
|
-
return this.i.
|
|
78
|
+
return this.i.hw;
|
|
79
79
|
}
|
|
80
80
|
set isGroupHeaderSeparator(v) {
|
|
81
|
-
this.i.
|
|
82
|
-
this._a("isGroupHeaderSeparator", this.i.
|
|
81
|
+
this.i.hw = ensureBool(v);
|
|
82
|
+
this._a("isGroupHeaderSeparator", this.i.hw);
|
|
83
83
|
}
|
|
84
84
|
exportVisualData() {
|
|
85
85
|
let iv = this.i.ct();
|
|
@@ -65,11 +65,11 @@ let IgcToolActionSubPanelComponent = /*@__PURE__*/ (() => {
|
|
|
65
65
|
* Gets or sets the spacing between items.
|
|
66
66
|
*/
|
|
67
67
|
get itemSpacing() {
|
|
68
|
-
return this.i.
|
|
68
|
+
return this.i.hy;
|
|
69
69
|
}
|
|
70
70
|
set itemSpacing(v) {
|
|
71
|
-
this.i.
|
|
72
|
-
this._a("itemSpacing", this.i.
|
|
71
|
+
this.i.hy = +v;
|
|
72
|
+
this._a("itemSpacing", this.i.hy);
|
|
73
73
|
}
|
|
74
74
|
exportVisualData() {
|
|
75
75
|
let iv = this.i.ct();
|