igniteui-webcomponents-layouts 6.3.1 → 7.0.0
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 +487 -484
- package/bundles/igniteui-webcomponents-layouts.umd.min.js +1 -1
- package/esm2015/lib/PropertyEditorDataSource_combined.js +3 -0
- package/esm2015/lib/PropertyEditorTreeTransformer.js +11 -11
- package/esm2015/lib/igc-tool-panel-module.js +6 -6
- package/esm5/lib/PropertyEditorDataSource_combined.js +3 -0
- package/esm5/lib/PropertyEditorTreeTransformer.js +11 -11
- package/esm5/lib/igc-tool-panel-module.js +6 -6
- package/fesm2015/igniteui-webcomponents-layouts.js +395 -392
- package/fesm5/igniteui-webcomponents-layouts.js +487 -484
- package/package.json +3 -3
|
@@ -14975,6 +14975,9 @@ var PropertyEditorDataSource = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14975
14975
|
if (stringEndsWith(c[d], "@stringUnion")) {
|
|
14976
14976
|
continue;
|
|
14977
14977
|
}
|
|
14978
|
+
if (stringEndsWith(c[d], "@constantValues")) {
|
|
14979
|
+
continue;
|
|
14980
|
+
}
|
|
14978
14981
|
var e = this.b.getMetadata(this.n, c[d]);
|
|
14979
14982
|
var f = this.f(e);
|
|
14980
14983
|
if (f.w == 0) {
|
|
@@ -38119,70 +38122,126 @@ https://www.infragistics.com/legal/license/igultimate-eula
|
|
|
38119
38122
|
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
38120
38123
|
*/
|
|
38121
38124
|
|
|
38122
|
-
var
|
|
38123
|
-
|
|
38124
|
-
|
|
38125
|
-
this
|
|
38126
|
-
this.onImplementationCreated();
|
|
38127
|
-
if (this._initializeAdapters) {
|
|
38128
|
-
this._initializeAdapters();
|
|
38129
|
-
}
|
|
38125
|
+
var IgcToolActionSeparatorComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
38126
|
+
__extends(IgcToolActionSeparatorComponent, _super);
|
|
38127
|
+
function IgcToolActionSeparatorComponent() {
|
|
38128
|
+
return _super.call(this) || this;
|
|
38130
38129
|
}
|
|
38131
|
-
|
|
38132
|
-
return new
|
|
38130
|
+
IgcToolActionSeparatorComponent.prototype.createImplementation = function () {
|
|
38131
|
+
return new ToolActionSeparator();
|
|
38133
38132
|
};
|
|
38134
|
-
Object.defineProperty(
|
|
38133
|
+
Object.defineProperty(IgcToolActionSeparatorComponent.prototype, "i", {
|
|
38135
38134
|
/**
|
|
38136
|
-
|
|
38137
|
-
|
|
38135
|
+
* @hidden
|
|
38136
|
+
*/
|
|
38138
38137
|
get: function () {
|
|
38139
38138
|
return this._implementation;
|
|
38140
38139
|
},
|
|
38141
38140
|
enumerable: false,
|
|
38142
38141
|
configurable: true
|
|
38143
38142
|
});
|
|
38144
|
-
|
|
38143
|
+
IgcToolActionSeparatorComponent.prototype.connectedCallback = function () {
|
|
38144
|
+
if (_super.prototype["connectedCallback"]) {
|
|
38145
|
+
_super.prototype["connectedCallback"].call(this);
|
|
38146
|
+
}
|
|
38147
|
+
if (this.i.connectedCallback) {
|
|
38148
|
+
this.i.connectedCallback();
|
|
38149
|
+
}
|
|
38150
|
+
if (this.updateContentChildren) {
|
|
38151
|
+
this.updateContentChildren();
|
|
38152
|
+
}
|
|
38153
|
+
else if (this._updateAdapters) {
|
|
38154
|
+
this._updateAdapters();
|
|
38155
|
+
}
|
|
38156
|
+
if (!this._attached) {
|
|
38157
|
+
this._attached = true;
|
|
38158
|
+
this._flushQueuedAttributes();
|
|
38159
|
+
}
|
|
38145
38160
|
};
|
|
38146
|
-
|
|
38147
|
-
|
|
38148
|
-
|
|
38149
|
-
|
|
38150
|
-
if (this.
|
|
38151
|
-
this.
|
|
38161
|
+
IgcToolActionSeparatorComponent.prototype.disconnectedCallback = function () {
|
|
38162
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
38163
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
38164
|
+
}
|
|
38165
|
+
if (this.i.disconnectedCallback) {
|
|
38166
|
+
this.i.disconnectedCallback();
|
|
38167
|
+
}
|
|
38168
|
+
if (this._attached) {
|
|
38169
|
+
this._attached = false;
|
|
38152
38170
|
}
|
|
38153
38171
|
};
|
|
38154
|
-
Object.defineProperty(
|
|
38172
|
+
Object.defineProperty(IgcToolActionSeparatorComponent, "observedAttributes", {
|
|
38155
38173
|
get: function () {
|
|
38156
|
-
|
|
38157
|
-
|
|
38158
|
-
|
|
38159
|
-
|
|
38160
|
-
if (!r.externalObject) {
|
|
38161
|
-
var e = IgcToolActionComponent._createFromInternal(r);
|
|
38162
|
-
if (e) {
|
|
38163
|
-
e._implementation = r;
|
|
38174
|
+
if (IgcToolActionSeparatorComponent._observedAttributesIgcToolActionSeparatorComponent == null) {
|
|
38175
|
+
var names = getAllPropertyNames(IgcToolActionSeparatorComponent);
|
|
38176
|
+
for (var i = 0; i < names.length; i++) {
|
|
38177
|
+
names[i] = toSpinal(names[i]);
|
|
38164
38178
|
}
|
|
38165
|
-
|
|
38179
|
+
IgcToolActionSeparatorComponent._observedAttributesIgcToolActionSeparatorComponent = names;
|
|
38166
38180
|
}
|
|
38167
|
-
return
|
|
38181
|
+
return IgcToolActionSeparatorComponent._observedAttributesIgcToolActionSeparatorComponent;
|
|
38182
|
+
},
|
|
38183
|
+
enumerable: false,
|
|
38184
|
+
configurable: true
|
|
38185
|
+
});
|
|
38186
|
+
IgcToolActionSeparatorComponent.register = function () {
|
|
38187
|
+
if (!IgcToolActionSeparatorComponent._isElementRegistered) {
|
|
38188
|
+
IgcToolActionSeparatorComponent._isElementRegistered = true;
|
|
38189
|
+
RegisterElementHelper.registerElement(IgcToolActionSeparatorComponent.htmlTagName, IgcToolActionSeparatorComponent);
|
|
38190
|
+
}
|
|
38191
|
+
};
|
|
38192
|
+
Object.defineProperty(IgcToolActionSeparatorComponent.prototype, "size", {
|
|
38193
|
+
/**
|
|
38194
|
+
* Gets or sets the size of the separator.
|
|
38195
|
+
*/
|
|
38196
|
+
get: function () {
|
|
38197
|
+
return this.i.ho;
|
|
38168
38198
|
},
|
|
38169
38199
|
set: function (v) {
|
|
38170
|
-
|
|
38200
|
+
this.i.ho = +v;
|
|
38201
|
+
this._a("size", this.i.ho);
|
|
38171
38202
|
},
|
|
38172
38203
|
enumerable: false,
|
|
38173
38204
|
configurable: true
|
|
38174
38205
|
});
|
|
38175
|
-
Object.defineProperty(
|
|
38206
|
+
Object.defineProperty(IgcToolActionSeparatorComponent.prototype, "isGroupHeaderSeparator", {
|
|
38207
|
+
/**
|
|
38208
|
+
* Gets or sets whether to use group header styling or regular styling on this separator.
|
|
38209
|
+
*/
|
|
38176
38210
|
get: function () {
|
|
38177
|
-
return this.i.
|
|
38211
|
+
return this.i.hm;
|
|
38178
38212
|
},
|
|
38179
38213
|
set: function (v) {
|
|
38180
|
-
this.i.
|
|
38214
|
+
this.i.hm = ensureBool(v);
|
|
38215
|
+
this._a("isGroupHeaderSeparator", this.i.hm);
|
|
38181
38216
|
},
|
|
38182
38217
|
enumerable: false,
|
|
38183
38218
|
configurable: true
|
|
38184
38219
|
});
|
|
38185
|
-
|
|
38220
|
+
IgcToolActionSeparatorComponent.prototype.exportVisualData = function () {
|
|
38221
|
+
var iv = this.i.cr();
|
|
38222
|
+
return (iv);
|
|
38223
|
+
};
|
|
38224
|
+
IgcToolActionSeparatorComponent._observedAttributesIgcToolActionSeparatorComponent = null;
|
|
38225
|
+
IgcToolActionSeparatorComponent.htmlTagName = "igc-tool-action-separator";
|
|
38226
|
+
IgcToolActionSeparatorComponent._isElementRegistered = false;
|
|
38227
|
+
return IgcToolActionSeparatorComponent;
|
|
38228
|
+
}(IgcToolActionComponent));
|
|
38229
|
+
|
|
38230
|
+
/*
|
|
38231
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
38232
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
38233
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
38234
|
+
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
38235
|
+
*/
|
|
38236
|
+
var IgcToolActionSeparatorModule = /** @class */ /*@__PURE__*/ (function () {
|
|
38237
|
+
function IgcToolActionSeparatorModule() {
|
|
38238
|
+
}
|
|
38239
|
+
IgcToolActionSeparatorModule.register = function () {
|
|
38240
|
+
IgcToolActionSeparatorComponent.register();
|
|
38241
|
+
TypeRegistrar.registerCons("IgcToolActionSeparatorComponent", IgcToolActionSeparatorComponent);
|
|
38242
|
+
TypeRegistrar.register("ToolActionSeparator", ToolActionSeparator.$type);
|
|
38243
|
+
};
|
|
38244
|
+
return IgcToolActionSeparatorModule;
|
|
38186
38245
|
}());
|
|
38187
38246
|
|
|
38188
38247
|
/*
|
|
@@ -38192,18 +38251,15 @@ https://www.infragistics.com/legal/license/igultimate-eula
|
|
|
38192
38251
|
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
38193
38252
|
*/
|
|
38194
38253
|
|
|
38195
|
-
var
|
|
38196
|
-
__extends(
|
|
38197
|
-
function
|
|
38198
|
-
|
|
38199
|
-
_this._popupOpening = null;
|
|
38200
|
-
_this._popupOpening_wrapped = null;
|
|
38201
|
-
return _this;
|
|
38254
|
+
var IgcToolActionRadioComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
38255
|
+
__extends(IgcToolActionRadioComponent, _super);
|
|
38256
|
+
function IgcToolActionRadioComponent() {
|
|
38257
|
+
return _super.call(this) || this;
|
|
38202
38258
|
}
|
|
38203
|
-
|
|
38204
|
-
return new
|
|
38259
|
+
IgcToolActionRadioComponent.prototype.createImplementation = function () {
|
|
38260
|
+
return new ToolActionRadio();
|
|
38205
38261
|
};
|
|
38206
|
-
Object.defineProperty(
|
|
38262
|
+
Object.defineProperty(IgcToolActionRadioComponent.prototype, "i", {
|
|
38207
38263
|
/**
|
|
38208
38264
|
* @hidden
|
|
38209
38265
|
*/
|
|
@@ -38213,7 +38269,7 @@ var IgcToolActionIconButtonComponent = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
38213
38269
|
enumerable: false,
|
|
38214
38270
|
configurable: true
|
|
38215
38271
|
});
|
|
38216
|
-
|
|
38272
|
+
IgcToolActionRadioComponent.prototype.connectedCallback = function () {
|
|
38217
38273
|
if (_super.prototype["connectedCallback"]) {
|
|
38218
38274
|
_super.prototype["connectedCallback"].call(this);
|
|
38219
38275
|
}
|
|
@@ -38231,7 +38287,7 @@ var IgcToolActionIconButtonComponent = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
38231
38287
|
this._flushQueuedAttributes();
|
|
38232
38288
|
}
|
|
38233
38289
|
};
|
|
38234
|
-
|
|
38290
|
+
IgcToolActionRadioComponent.prototype.disconnectedCallback = function () {
|
|
38235
38291
|
if (_super.prototype["disconnectedCallback"]) {
|
|
38236
38292
|
_super.prototype["disconnectedCallback"].call(this);
|
|
38237
38293
|
}
|
|
@@ -38242,335 +38298,189 @@ var IgcToolActionIconButtonComponent = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
38242
38298
|
this._attached = false;
|
|
38243
38299
|
}
|
|
38244
38300
|
};
|
|
38245
|
-
Object.defineProperty(
|
|
38301
|
+
Object.defineProperty(IgcToolActionRadioComponent, "observedAttributes", {
|
|
38246
38302
|
get: function () {
|
|
38247
|
-
if (
|
|
38248
|
-
var names = getAllPropertyNames(
|
|
38303
|
+
if (IgcToolActionRadioComponent._observedAttributesIgcToolActionRadioComponent == null) {
|
|
38304
|
+
var names = getAllPropertyNames(IgcToolActionRadioComponent);
|
|
38249
38305
|
for (var i = 0; i < names.length; i++) {
|
|
38250
38306
|
names[i] = toSpinal(names[i]);
|
|
38251
38307
|
}
|
|
38252
|
-
|
|
38308
|
+
IgcToolActionRadioComponent._observedAttributesIgcToolActionRadioComponent = names;
|
|
38253
38309
|
}
|
|
38254
|
-
return
|
|
38310
|
+
return IgcToolActionRadioComponent._observedAttributesIgcToolActionRadioComponent;
|
|
38255
38311
|
},
|
|
38256
38312
|
enumerable: false,
|
|
38257
38313
|
configurable: true
|
|
38258
38314
|
});
|
|
38259
|
-
|
|
38260
|
-
if (!
|
|
38261
|
-
|
|
38262
|
-
RegisterElementHelper.registerElement(
|
|
38315
|
+
IgcToolActionRadioComponent.register = function () {
|
|
38316
|
+
if (!IgcToolActionRadioComponent._isElementRegistered) {
|
|
38317
|
+
IgcToolActionRadioComponent._isElementRegistered = true;
|
|
38318
|
+
RegisterElementHelper.registerElement(IgcToolActionRadioComponent.htmlTagName, IgcToolActionRadioComponent);
|
|
38263
38319
|
}
|
|
38264
38320
|
};
|
|
38265
|
-
Object.defineProperty(
|
|
38321
|
+
Object.defineProperty(IgcToolActionRadioComponent.prototype, "channel", {
|
|
38266
38322
|
/**
|
|
38267
|
-
* Gets or sets
|
|
38323
|
+
* Gets or sets the channel this radio button belongs to.
|
|
38268
38324
|
*/
|
|
38269
38325
|
get: function () {
|
|
38270
|
-
return this.i.
|
|
38326
|
+
return this.i.hu;
|
|
38271
38327
|
},
|
|
38272
38328
|
set: function (v) {
|
|
38273
|
-
this.i.
|
|
38274
|
-
this._a("tooltipDelay", this.i.iw);
|
|
38329
|
+
this.i.hu = v;
|
|
38275
38330
|
},
|
|
38276
38331
|
enumerable: false,
|
|
38277
38332
|
configurable: true
|
|
38278
38333
|
});
|
|
38279
|
-
Object.defineProperty(
|
|
38334
|
+
Object.defineProperty(IgcToolActionRadioComponent.prototype, "isChecked", {
|
|
38280
38335
|
/**
|
|
38281
|
-
* Gets
|
|
38336
|
+
* Gets or sets if the tool action is checked.
|
|
38282
38337
|
*/
|
|
38283
38338
|
get: function () {
|
|
38284
|
-
return this.i.
|
|
38339
|
+
return this.i.hn;
|
|
38285
38340
|
},
|
|
38286
38341
|
set: function (v) {
|
|
38287
|
-
this.i.
|
|
38288
|
-
this._a("
|
|
38342
|
+
this.i.hn = ensureBool(v);
|
|
38343
|
+
this._a("isChecked", this.i.hn);
|
|
38289
38344
|
},
|
|
38290
38345
|
enumerable: false,
|
|
38291
38346
|
configurable: true
|
|
38292
38347
|
});
|
|
38293
|
-
Object.defineProperty(
|
|
38348
|
+
Object.defineProperty(IgcToolActionRadioComponent.prototype, "isManual", {
|
|
38349
|
+
/**
|
|
38350
|
+
* Gets or sets if the checked state of the radio is handled manually by the user. The radio
|
|
38351
|
+
* well not become selected when clicked if this property is true.
|
|
38352
|
+
*/
|
|
38294
38353
|
get: function () {
|
|
38295
|
-
return this.i.
|
|
38354
|
+
return this.i.ho;
|
|
38296
38355
|
},
|
|
38297
38356
|
set: function (v) {
|
|
38298
|
-
this.i.
|
|
38299
|
-
this._a("
|
|
38357
|
+
this.i.ho = ensureBool(v);
|
|
38358
|
+
this._a("isManual", this.i.ho);
|
|
38300
38359
|
},
|
|
38301
38360
|
enumerable: false,
|
|
38302
38361
|
configurable: true
|
|
38303
38362
|
});
|
|
38304
|
-
Object.defineProperty(
|
|
38363
|
+
Object.defineProperty(IgcToolActionRadioComponent.prototype, "uncheckedBackgroundColor", {
|
|
38364
|
+
/**
|
|
38365
|
+
* Gets or sets the background color of the radio when in the unchecked state.
|
|
38366
|
+
*/
|
|
38305
38367
|
get: function () {
|
|
38306
|
-
return this.i.
|
|
38368
|
+
return brushToString(this.i.ia);
|
|
38307
38369
|
},
|
|
38308
38370
|
set: function (v) {
|
|
38309
|
-
this.i.
|
|
38310
|
-
this._a("
|
|
38371
|
+
this.i.ia = stringToBrush(v);
|
|
38372
|
+
this._a("uncheckedBackgroundColor", brushToString(this.i.ia));
|
|
38311
38373
|
},
|
|
38312
38374
|
enumerable: false,
|
|
38313
38375
|
configurable: true
|
|
38314
38376
|
});
|
|
38315
|
-
Object.defineProperty(
|
|
38377
|
+
Object.defineProperty(IgcToolActionRadioComponent.prototype, "actualUncheckedBackgroundColor", {
|
|
38378
|
+
/**
|
|
38379
|
+
* Gets the actual background color of the radio when in the unchecked state.
|
|
38380
|
+
*/
|
|
38316
38381
|
get: function () {
|
|
38317
|
-
return this.i.
|
|
38382
|
+
return brushToString(this.i.h6);
|
|
38318
38383
|
},
|
|
38319
38384
|
set: function (v) {
|
|
38320
|
-
this.i.
|
|
38321
|
-
this._a("
|
|
38385
|
+
this.i.h6 = stringToBrush(v);
|
|
38386
|
+
this._a("actualUncheckedBackgroundColor", brushToString(this.i.h6));
|
|
38322
38387
|
},
|
|
38323
38388
|
enumerable: false,
|
|
38324
38389
|
configurable: true
|
|
38325
38390
|
});
|
|
38326
|
-
Object.defineProperty(
|
|
38391
|
+
Object.defineProperty(IgcToolActionRadioComponent.prototype, "checkedBackgroundColor", {
|
|
38392
|
+
/**
|
|
38393
|
+
* Gets or sets the background color of the radio when in the checked state.
|
|
38394
|
+
*/
|
|
38327
38395
|
get: function () {
|
|
38328
|
-
return this.i.
|
|
38396
|
+
return brushToString(this.i.h8);
|
|
38329
38397
|
},
|
|
38330
38398
|
set: function (v) {
|
|
38331
|
-
this.i.
|
|
38332
|
-
this._a("
|
|
38399
|
+
this.i.h8 = stringToBrush(v);
|
|
38400
|
+
this._a("checkedBackgroundColor", brushToString(this.i.h8));
|
|
38333
38401
|
},
|
|
38334
38402
|
enumerable: false,
|
|
38335
38403
|
configurable: true
|
|
38336
38404
|
});
|
|
38337
|
-
Object.defineProperty(
|
|
38405
|
+
Object.defineProperty(IgcToolActionRadioComponent.prototype, "actualCheckedBackgroundColor", {
|
|
38406
|
+
/**
|
|
38407
|
+
* Gets the actual background color of the radio when in the checked state.
|
|
38408
|
+
*/
|
|
38338
38409
|
get: function () {
|
|
38339
|
-
return this.i.
|
|
38410
|
+
return brushToString(this.i.h4);
|
|
38340
38411
|
},
|
|
38341
38412
|
set: function (v) {
|
|
38342
|
-
this.i.
|
|
38343
|
-
this._a("
|
|
38413
|
+
this.i.h4 = stringToBrush(v);
|
|
38414
|
+
this._a("actualCheckedBackgroundColor", brushToString(this.i.h4));
|
|
38344
38415
|
},
|
|
38345
38416
|
enumerable: false,
|
|
38346
38417
|
configurable: true
|
|
38347
38418
|
});
|
|
38348
|
-
Object.defineProperty(
|
|
38419
|
+
Object.defineProperty(IgcToolActionRadioComponent.prototype, "uncheckedBorderColor", {
|
|
38420
|
+
/**
|
|
38421
|
+
* Gets or sets the border color of the radio when in the unchecked state.
|
|
38422
|
+
*/
|
|
38349
38423
|
get: function () {
|
|
38350
|
-
return this.i.
|
|
38424
|
+
return brushToString(this.i.ib);
|
|
38351
38425
|
},
|
|
38352
38426
|
set: function (v) {
|
|
38353
|
-
this.i.
|
|
38354
|
-
this._a("
|
|
38427
|
+
this.i.ib = stringToBrush(v);
|
|
38428
|
+
this._a("uncheckedBorderColor", brushToString(this.i.ib));
|
|
38355
38429
|
},
|
|
38356
38430
|
enumerable: false,
|
|
38357
38431
|
configurable: true
|
|
38358
38432
|
});
|
|
38359
|
-
Object.defineProperty(
|
|
38360
|
-
get: function () {
|
|
38361
|
-
return this.i.io;
|
|
38362
|
-
},
|
|
38363
|
-
set: function (v) {
|
|
38364
|
-
this.i.io = +v;
|
|
38365
|
-
this._a("contentPaddingBottom", this.i.io);
|
|
38366
|
-
},
|
|
38367
|
-
enumerable: false,
|
|
38368
|
-
configurable: true
|
|
38369
|
-
});
|
|
38370
|
-
Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "actualContentPaddingBottom", {
|
|
38371
|
-
get: function () {
|
|
38372
|
-
return this.i.ij;
|
|
38373
|
-
},
|
|
38374
|
-
set: function (v) {
|
|
38375
|
-
this.i.ij = +v;
|
|
38376
|
-
this._a("actualContentPaddingBottom", this.i.ij);
|
|
38377
|
-
},
|
|
38378
|
-
enumerable: false,
|
|
38379
|
-
configurable: true
|
|
38380
|
-
});
|
|
38381
|
-
Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "isOpen", {
|
|
38382
|
-
get: function () {
|
|
38383
|
-
return this.i.ba;
|
|
38384
|
-
},
|
|
38385
|
-
enumerable: false,
|
|
38386
|
-
configurable: true
|
|
38387
|
-
});
|
|
38388
|
-
IgcToolActionIconButtonComponent.prototype.openSubMenu = function () {
|
|
38389
|
-
this.i.gf();
|
|
38390
|
-
};
|
|
38391
|
-
IgcToolActionIconButtonComponent.prototype.closeSubmenu = function () {
|
|
38392
|
-
this.i.fd();
|
|
38393
|
-
};
|
|
38394
|
-
IgcToolActionIconButtonComponent.prototype.exportVisualData = function () {
|
|
38395
|
-
var iv = this.i.cr();
|
|
38396
|
-
return (iv);
|
|
38397
|
-
};
|
|
38398
|
-
Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "popupOpening", {
|
|
38399
|
-
get: function () {
|
|
38400
|
-
return this._popupOpening;
|
|
38401
|
-
},
|
|
38402
|
-
set: function (ev) {
|
|
38403
|
-
var _this = this;
|
|
38404
|
-
if (this._popupOpening_wrapped !== null) {
|
|
38405
|
-
this.i.popupOpening = delegateRemove(this.i.popupOpening, this._popupOpening_wrapped);
|
|
38406
|
-
this._popupOpening_wrapped = null;
|
|
38407
|
-
this._popupOpening = null;
|
|
38408
|
-
}
|
|
38409
|
-
this._popupOpening = ev;
|
|
38410
|
-
this._popupOpening_wrapped = function (o, e) {
|
|
38411
|
-
var outerArgs = new IgcToolActionPopupOpeningEventArgs();
|
|
38412
|
-
outerArgs._provideImplementation(e);
|
|
38413
|
-
if (_this.beforePopupOpening) {
|
|
38414
|
-
_this.beforePopupOpening(_this, outerArgs);
|
|
38415
|
-
}
|
|
38416
|
-
if (_this._popupOpening) {
|
|
38417
|
-
_this._popupOpening(_this, outerArgs);
|
|
38418
|
-
}
|
|
38419
|
-
};
|
|
38420
|
-
this.i.popupOpening = delegateCombine(this.i.popupOpening, this._popupOpening_wrapped);
|
|
38421
|
-
;
|
|
38422
|
-
},
|
|
38423
|
-
enumerable: false,
|
|
38424
|
-
configurable: true
|
|
38425
|
-
});
|
|
38426
|
-
IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent = null;
|
|
38427
|
-
IgcToolActionIconButtonComponent.htmlTagName = "igc-tool-action-icon-button";
|
|
38428
|
-
IgcToolActionIconButtonComponent._isElementRegistered = false;
|
|
38429
|
-
return IgcToolActionIconButtonComponent;
|
|
38430
|
-
}(IgcToolActionComponent));
|
|
38431
|
-
|
|
38432
|
-
/*
|
|
38433
|
-
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
38434
|
-
https://www.infragistics.com/legal/license/igultimate-la
|
|
38435
|
-
https://www.infragistics.com/legal/license/igultimate-eula
|
|
38436
|
-
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
38437
|
-
*/
|
|
38438
|
-
var IgcToolActionIconButtonModule = /** @class */ /*@__PURE__*/ (function () {
|
|
38439
|
-
function IgcToolActionIconButtonModule() {
|
|
38440
|
-
}
|
|
38441
|
-
IgcToolActionIconButtonModule.register = function () {
|
|
38442
|
-
IgcToolActionIconButtonComponent.register();
|
|
38443
|
-
TypeRegistrar.registerCons("IgcToolActionIconButtonComponent", IgcToolActionIconButtonComponent);
|
|
38444
|
-
TypeRegistrar.register("ToolActionIconButton", ToolActionIconButton.$type);
|
|
38445
|
-
};
|
|
38446
|
-
return IgcToolActionIconButtonModule;
|
|
38447
|
-
}());
|
|
38448
|
-
|
|
38449
|
-
/*
|
|
38450
|
-
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
38451
|
-
https://www.infragistics.com/legal/license/igultimate-la
|
|
38452
|
-
https://www.infragistics.com/legal/license/igultimate-eula
|
|
38453
|
-
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
38454
|
-
*/
|
|
38455
|
-
|
|
38456
|
-
var IgcToolActionIconMenuComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
38457
|
-
__extends(IgcToolActionIconMenuComponent, _super);
|
|
38458
|
-
function IgcToolActionIconMenuComponent() {
|
|
38459
|
-
return _super.call(this) || this;
|
|
38460
|
-
}
|
|
38461
|
-
IgcToolActionIconMenuComponent.prototype.createImplementation = function () {
|
|
38462
|
-
return new ToolActionIconMenu();
|
|
38463
|
-
};
|
|
38464
|
-
Object.defineProperty(IgcToolActionIconMenuComponent.prototype, "i", {
|
|
38465
|
-
/**
|
|
38466
|
-
* @hidden
|
|
38467
|
-
*/
|
|
38468
|
-
get: function () {
|
|
38469
|
-
return this._implementation;
|
|
38470
|
-
},
|
|
38471
|
-
enumerable: false,
|
|
38472
|
-
configurable: true
|
|
38473
|
-
});
|
|
38474
|
-
IgcToolActionIconMenuComponent.prototype.connectedCallback = function () {
|
|
38475
|
-
if (_super.prototype["connectedCallback"]) {
|
|
38476
|
-
_super.prototype["connectedCallback"].call(this);
|
|
38477
|
-
}
|
|
38478
|
-
if (this.i.connectedCallback) {
|
|
38479
|
-
this.i.connectedCallback();
|
|
38480
|
-
}
|
|
38481
|
-
if (this.updateContentChildren) {
|
|
38482
|
-
this.updateContentChildren();
|
|
38483
|
-
}
|
|
38484
|
-
else if (this._updateAdapters) {
|
|
38485
|
-
this._updateAdapters();
|
|
38486
|
-
}
|
|
38487
|
-
if (!this._attached) {
|
|
38488
|
-
this._attached = true;
|
|
38489
|
-
this._flushQueuedAttributes();
|
|
38490
|
-
}
|
|
38491
|
-
};
|
|
38492
|
-
IgcToolActionIconMenuComponent.prototype.disconnectedCallback = function () {
|
|
38493
|
-
if (_super.prototype["disconnectedCallback"]) {
|
|
38494
|
-
_super.prototype["disconnectedCallback"].call(this);
|
|
38495
|
-
}
|
|
38496
|
-
if (this.i.disconnectedCallback) {
|
|
38497
|
-
this.i.disconnectedCallback();
|
|
38498
|
-
}
|
|
38499
|
-
if (this._attached) {
|
|
38500
|
-
this._attached = false;
|
|
38501
|
-
}
|
|
38502
|
-
};
|
|
38503
|
-
Object.defineProperty(IgcToolActionIconMenuComponent, "observedAttributes", {
|
|
38504
|
-
get: function () {
|
|
38505
|
-
if (IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent == null) {
|
|
38506
|
-
var names = getAllPropertyNames(IgcToolActionIconMenuComponent);
|
|
38507
|
-
for (var i = 0; i < names.length; i++) {
|
|
38508
|
-
names[i] = toSpinal(names[i]);
|
|
38509
|
-
}
|
|
38510
|
-
IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent = names;
|
|
38511
|
-
}
|
|
38512
|
-
return IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent;
|
|
38513
|
-
},
|
|
38514
|
-
enumerable: false,
|
|
38515
|
-
configurable: true
|
|
38516
|
-
});
|
|
38517
|
-
IgcToolActionIconMenuComponent.register = function () {
|
|
38518
|
-
if (!IgcToolActionIconMenuComponent._isElementRegistered) {
|
|
38519
|
-
IgcToolActionIconMenuComponent._isElementRegistered = true;
|
|
38520
|
-
RegisterElementHelper.registerElement(IgcToolActionIconMenuComponent.htmlTagName, IgcToolActionIconMenuComponent);
|
|
38521
|
-
}
|
|
38522
|
-
};
|
|
38523
|
-
Object.defineProperty(IgcToolActionIconMenuComponent.prototype, "arrowStroke", {
|
|
38433
|
+
Object.defineProperty(IgcToolActionRadioComponent.prototype, "actualUncheckedBorderColor", {
|
|
38524
38434
|
/**
|
|
38525
|
-
* Gets
|
|
38435
|
+
* Gets the actual border color of the radio when in the unchecked state.
|
|
38526
38436
|
*/
|
|
38527
38437
|
get: function () {
|
|
38528
|
-
return brushToString(this.i.
|
|
38438
|
+
return brushToString(this.i.h7);
|
|
38529
38439
|
},
|
|
38530
38440
|
set: function (v) {
|
|
38531
|
-
this.i.
|
|
38532
|
-
this._a("
|
|
38441
|
+
this.i.h7 = stringToBrush(v);
|
|
38442
|
+
this._a("actualUncheckedBorderColor", brushToString(this.i.h7));
|
|
38533
38443
|
},
|
|
38534
38444
|
enumerable: false,
|
|
38535
38445
|
configurable: true
|
|
38536
38446
|
});
|
|
38537
|
-
Object.defineProperty(
|
|
38447
|
+
Object.defineProperty(IgcToolActionRadioComponent.prototype, "checkedBorderColor", {
|
|
38538
38448
|
/**
|
|
38539
|
-
* Gets the
|
|
38449
|
+
* Gets or sets the border color of the radio when in the checked state.
|
|
38540
38450
|
*/
|
|
38541
38451
|
get: function () {
|
|
38542
|
-
return brushToString(this.i.
|
|
38452
|
+
return brushToString(this.i.h9);
|
|
38543
38453
|
},
|
|
38544
38454
|
set: function (v) {
|
|
38545
|
-
this.i.
|
|
38546
|
-
this._a("
|
|
38455
|
+
this.i.h9 = stringToBrush(v);
|
|
38456
|
+
this._a("checkedBorderColor", brushToString(this.i.h9));
|
|
38547
38457
|
},
|
|
38548
38458
|
enumerable: false,
|
|
38549
38459
|
configurable: true
|
|
38550
38460
|
});
|
|
38551
|
-
Object.defineProperty(
|
|
38461
|
+
Object.defineProperty(IgcToolActionRadioComponent.prototype, "actualCheckedBorderColor", {
|
|
38552
38462
|
/**
|
|
38553
|
-
* Gets
|
|
38463
|
+
* Gets the actual border color of the radio when in the checked state.
|
|
38554
38464
|
*/
|
|
38555
38465
|
get: function () {
|
|
38556
|
-
return this.i.
|
|
38466
|
+
return brushToString(this.i.h5);
|
|
38557
38467
|
},
|
|
38558
38468
|
set: function (v) {
|
|
38559
|
-
this.i.
|
|
38560
|
-
this._a("
|
|
38469
|
+
this.i.h5 = stringToBrush(v);
|
|
38470
|
+
this._a("actualCheckedBorderColor", brushToString(this.i.h5));
|
|
38561
38471
|
},
|
|
38562
38472
|
enumerable: false,
|
|
38563
38473
|
configurable: true
|
|
38564
38474
|
});
|
|
38565
|
-
|
|
38475
|
+
IgcToolActionRadioComponent.prototype.exportVisualData = function () {
|
|
38566
38476
|
var iv = this.i.cr();
|
|
38567
38477
|
return (iv);
|
|
38568
38478
|
};
|
|
38569
|
-
|
|
38570
|
-
|
|
38571
|
-
|
|
38572
|
-
return
|
|
38573
|
-
}(
|
|
38479
|
+
IgcToolActionRadioComponent._observedAttributesIgcToolActionRadioComponent = null;
|
|
38480
|
+
IgcToolActionRadioComponent.htmlTagName = "igc-tool-action-radio";
|
|
38481
|
+
IgcToolActionRadioComponent._isElementRegistered = false;
|
|
38482
|
+
return IgcToolActionRadioComponent;
|
|
38483
|
+
}(IgcToolActionComponent));
|
|
38574
38484
|
|
|
38575
38485
|
/*
|
|
38576
38486
|
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
@@ -38578,15 +38488,15 @@ https://www.infragistics.com/legal/license/igultimate-la
|
|
|
38578
38488
|
https://www.infragistics.com/legal/license/igultimate-eula
|
|
38579
38489
|
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
38580
38490
|
*/
|
|
38581
|
-
var
|
|
38582
|
-
function
|
|
38491
|
+
var IgcToolActionRadioModule = /** @class */ /*@__PURE__*/ (function () {
|
|
38492
|
+
function IgcToolActionRadioModule() {
|
|
38583
38493
|
}
|
|
38584
|
-
|
|
38585
|
-
|
|
38586
|
-
TypeRegistrar.registerCons("
|
|
38587
|
-
TypeRegistrar.register("
|
|
38494
|
+
IgcToolActionRadioModule.register = function () {
|
|
38495
|
+
IgcToolActionRadioComponent.register();
|
|
38496
|
+
TypeRegistrar.registerCons("IgcToolActionRadioComponent", IgcToolActionRadioComponent);
|
|
38497
|
+
TypeRegistrar.register("ToolActionRadio", ToolActionRadio.$type);
|
|
38588
38498
|
};
|
|
38589
|
-
return
|
|
38499
|
+
return IgcToolActionRadioModule;
|
|
38590
38500
|
}());
|
|
38591
38501
|
|
|
38592
38502
|
/*
|
|
@@ -38596,15 +38506,15 @@ https://www.infragistics.com/legal/license/igultimate-eula
|
|
|
38596
38506
|
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
38597
38507
|
*/
|
|
38598
38508
|
|
|
38599
|
-
var
|
|
38600
|
-
__extends(
|
|
38601
|
-
function
|
|
38509
|
+
var IgcToolActionButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
38510
|
+
__extends(IgcToolActionButtonComponent, _super);
|
|
38511
|
+
function IgcToolActionButtonComponent() {
|
|
38602
38512
|
return _super.call(this) || this;
|
|
38603
38513
|
}
|
|
38604
|
-
|
|
38605
|
-
return new
|
|
38514
|
+
IgcToolActionButtonComponent.prototype.createImplementation = function () {
|
|
38515
|
+
return new ToolActionButton();
|
|
38606
38516
|
};
|
|
38607
|
-
Object.defineProperty(
|
|
38517
|
+
Object.defineProperty(IgcToolActionButtonComponent.prototype, "i", {
|
|
38608
38518
|
/**
|
|
38609
38519
|
* @hidden
|
|
38610
38520
|
*/
|
|
@@ -38614,7 +38524,7 @@ var IgcToolActionSeparatorComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
38614
38524
|
enumerable: false,
|
|
38615
38525
|
configurable: true
|
|
38616
38526
|
});
|
|
38617
|
-
|
|
38527
|
+
IgcToolActionButtonComponent.prototype.connectedCallback = function () {
|
|
38618
38528
|
if (_super.prototype["connectedCallback"]) {
|
|
38619
38529
|
_super.prototype["connectedCallback"].call(this);
|
|
38620
38530
|
}
|
|
@@ -38632,7 +38542,7 @@ var IgcToolActionSeparatorComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
38632
38542
|
this._flushQueuedAttributes();
|
|
38633
38543
|
}
|
|
38634
38544
|
};
|
|
38635
|
-
|
|
38545
|
+
IgcToolActionButtonComponent.prototype.disconnectedCallback = function () {
|
|
38636
38546
|
if (_super.prototype["disconnectedCallback"]) {
|
|
38637
38547
|
_super.prototype["disconnectedCallback"].call(this);
|
|
38638
38548
|
}
|
|
@@ -38643,62 +38553,62 @@ var IgcToolActionSeparatorComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
38643
38553
|
this._attached = false;
|
|
38644
38554
|
}
|
|
38645
38555
|
};
|
|
38646
|
-
Object.defineProperty(
|
|
38556
|
+
Object.defineProperty(IgcToolActionButtonComponent, "observedAttributes", {
|
|
38647
38557
|
get: function () {
|
|
38648
|
-
if (
|
|
38649
|
-
var names = getAllPropertyNames(
|
|
38558
|
+
if (IgcToolActionButtonComponent._observedAttributesIgcToolActionButtonComponent == null) {
|
|
38559
|
+
var names = getAllPropertyNames(IgcToolActionButtonComponent);
|
|
38650
38560
|
for (var i = 0; i < names.length; i++) {
|
|
38651
38561
|
names[i] = toSpinal(names[i]);
|
|
38652
38562
|
}
|
|
38653
|
-
|
|
38563
|
+
IgcToolActionButtonComponent._observedAttributesIgcToolActionButtonComponent = names;
|
|
38654
38564
|
}
|
|
38655
|
-
return
|
|
38565
|
+
return IgcToolActionButtonComponent._observedAttributesIgcToolActionButtonComponent;
|
|
38656
38566
|
},
|
|
38657
38567
|
enumerable: false,
|
|
38658
38568
|
configurable: true
|
|
38659
38569
|
});
|
|
38660
|
-
|
|
38661
|
-
if (!
|
|
38662
|
-
|
|
38663
|
-
RegisterElementHelper.registerElement(
|
|
38570
|
+
IgcToolActionButtonComponent.register = function () {
|
|
38571
|
+
if (!IgcToolActionButtonComponent._isElementRegistered) {
|
|
38572
|
+
IgcToolActionButtonComponent._isElementRegistered = true;
|
|
38573
|
+
RegisterElementHelper.registerElement(IgcToolActionButtonComponent.htmlTagName, IgcToolActionButtonComponent);
|
|
38664
38574
|
}
|
|
38665
38575
|
};
|
|
38666
|
-
Object.defineProperty(
|
|
38576
|
+
Object.defineProperty(IgcToolActionButtonComponent.prototype, "displayType", {
|
|
38667
38577
|
/**
|
|
38668
|
-
* Gets or sets the
|
|
38578
|
+
* Gets or sets the display type for the button.
|
|
38669
38579
|
*/
|
|
38670
38580
|
get: function () {
|
|
38671
|
-
return this.i.
|
|
38581
|
+
return this.i.hm;
|
|
38672
38582
|
},
|
|
38673
38583
|
set: function (v) {
|
|
38674
|
-
this.i.
|
|
38675
|
-
this._a("
|
|
38584
|
+
this.i.hm = ensureEnum(ToolActionButtonDisplayType_$type, v);
|
|
38585
|
+
this._a("displayType", enumToString(ToolActionButtonDisplayType_$type, this.i.hm));
|
|
38676
38586
|
},
|
|
38677
38587
|
enumerable: false,
|
|
38678
38588
|
configurable: true
|
|
38679
38589
|
});
|
|
38680
|
-
Object.defineProperty(
|
|
38590
|
+
Object.defineProperty(IgcToolActionButtonComponent.prototype, "cornerRadius", {
|
|
38681
38591
|
/**
|
|
38682
|
-
* Gets or sets
|
|
38592
|
+
* Gets or sets the button corner radius.
|
|
38683
38593
|
*/
|
|
38684
38594
|
get: function () {
|
|
38685
|
-
return this.i.
|
|
38595
|
+
return this.i.hq;
|
|
38686
38596
|
},
|
|
38687
38597
|
set: function (v) {
|
|
38688
|
-
this.i.
|
|
38689
|
-
this._a("
|
|
38598
|
+
this.i.hq = +v;
|
|
38599
|
+
this._a("cornerRadius", this.i.hq);
|
|
38690
38600
|
},
|
|
38691
38601
|
enumerable: false,
|
|
38692
38602
|
configurable: true
|
|
38693
38603
|
});
|
|
38694
|
-
|
|
38604
|
+
IgcToolActionButtonComponent.prototype.exportVisualData = function () {
|
|
38695
38605
|
var iv = this.i.cr();
|
|
38696
38606
|
return (iv);
|
|
38697
38607
|
};
|
|
38698
|
-
|
|
38699
|
-
|
|
38700
|
-
|
|
38701
|
-
return
|
|
38608
|
+
IgcToolActionButtonComponent._observedAttributesIgcToolActionButtonComponent = null;
|
|
38609
|
+
IgcToolActionButtonComponent.htmlTagName = "igc-tool-action-button";
|
|
38610
|
+
IgcToolActionButtonComponent._isElementRegistered = false;
|
|
38611
|
+
return IgcToolActionButtonComponent;
|
|
38702
38612
|
}(IgcToolActionComponent));
|
|
38703
38613
|
|
|
38704
38614
|
/*
|
|
@@ -38707,15 +38617,15 @@ https://www.infragistics.com/legal/license/igultimate-la
|
|
|
38707
38617
|
https://www.infragistics.com/legal/license/igultimate-eula
|
|
38708
38618
|
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
38709
38619
|
*/
|
|
38710
|
-
var
|
|
38711
|
-
function
|
|
38620
|
+
var IgcToolActionButtonModule = /** @class */ /*@__PURE__*/ (function () {
|
|
38621
|
+
function IgcToolActionButtonModule() {
|
|
38712
38622
|
}
|
|
38713
|
-
|
|
38714
|
-
|
|
38715
|
-
TypeRegistrar.registerCons("
|
|
38716
|
-
TypeRegistrar.register("
|
|
38623
|
+
IgcToolActionButtonModule.register = function () {
|
|
38624
|
+
IgcToolActionButtonComponent.register();
|
|
38625
|
+
TypeRegistrar.registerCons("IgcToolActionButtonComponent", IgcToolActionButtonComponent);
|
|
38626
|
+
TypeRegistrar.register("ToolActionButton", ToolActionButton.$type);
|
|
38717
38627
|
};
|
|
38718
|
-
return
|
|
38628
|
+
return IgcToolActionButtonModule;
|
|
38719
38629
|
}());
|
|
38720
38630
|
|
|
38721
38631
|
/*
|
|
@@ -38840,15 +38750,91 @@ https://www.infragistics.com/legal/license/igultimate-eula
|
|
|
38840
38750
|
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
38841
38751
|
*/
|
|
38842
38752
|
|
|
38843
|
-
var
|
|
38844
|
-
|
|
38845
|
-
|
|
38846
|
-
|
|
38753
|
+
var IgcToolActionPopupOpeningEventArgs = /** @class */ /*@__PURE__*/ (function () {
|
|
38754
|
+
function IgcToolActionPopupOpeningEventArgs() {
|
|
38755
|
+
this._implementation = this.createImplementation();
|
|
38756
|
+
this._implementation.externalObject = this;
|
|
38757
|
+
this.onImplementationCreated();
|
|
38758
|
+
if (this._initializeAdapters) {
|
|
38759
|
+
this._initializeAdapters();
|
|
38760
|
+
}
|
|
38847
38761
|
}
|
|
38848
|
-
|
|
38849
|
-
return new
|
|
38762
|
+
IgcToolActionPopupOpeningEventArgs.prototype.createImplementation = function () {
|
|
38763
|
+
return new ToolActionPopupOpeningEventArgs();
|
|
38850
38764
|
};
|
|
38851
|
-
Object.defineProperty(
|
|
38765
|
+
Object.defineProperty(IgcToolActionPopupOpeningEventArgs.prototype, "i", {
|
|
38766
|
+
/**
|
|
38767
|
+
* @hidden
|
|
38768
|
+
*/
|
|
38769
|
+
get: function () {
|
|
38770
|
+
return this._implementation;
|
|
38771
|
+
},
|
|
38772
|
+
enumerable: false,
|
|
38773
|
+
configurable: true
|
|
38774
|
+
});
|
|
38775
|
+
IgcToolActionPopupOpeningEventArgs.prototype.onImplementationCreated = function () {
|
|
38776
|
+
};
|
|
38777
|
+
IgcToolActionPopupOpeningEventArgs.prototype._provideImplementation = function (i) {
|
|
38778
|
+
this._implementation = i;
|
|
38779
|
+
this._implementation.externalObject = this;
|
|
38780
|
+
this.onImplementationCreated();
|
|
38781
|
+
if (this._initializeAdapters) {
|
|
38782
|
+
this._initializeAdapters();
|
|
38783
|
+
}
|
|
38784
|
+
};
|
|
38785
|
+
Object.defineProperty(IgcToolActionPopupOpeningEventArgs.prototype, "sourceAction", {
|
|
38786
|
+
get: function () {
|
|
38787
|
+
var r = this.i.a;
|
|
38788
|
+
if (r == null) {
|
|
38789
|
+
return null;
|
|
38790
|
+
}
|
|
38791
|
+
if (!r.externalObject) {
|
|
38792
|
+
var e = IgcToolActionComponent._createFromInternal(r);
|
|
38793
|
+
if (e) {
|
|
38794
|
+
e._implementation = r;
|
|
38795
|
+
}
|
|
38796
|
+
r.externalObject = e;
|
|
38797
|
+
}
|
|
38798
|
+
return r.externalObject;
|
|
38799
|
+
},
|
|
38800
|
+
set: function (v) {
|
|
38801
|
+
v == null ? this.i.a = null : this.i.a = v.i;
|
|
38802
|
+
},
|
|
38803
|
+
enumerable: false,
|
|
38804
|
+
configurable: true
|
|
38805
|
+
});
|
|
38806
|
+
Object.defineProperty(IgcToolActionPopupOpeningEventArgs.prototype, "cancel", {
|
|
38807
|
+
get: function () {
|
|
38808
|
+
return this.i.b;
|
|
38809
|
+
},
|
|
38810
|
+
set: function (v) {
|
|
38811
|
+
this.i.b = ensureBool(v);
|
|
38812
|
+
},
|
|
38813
|
+
enumerable: false,
|
|
38814
|
+
configurable: true
|
|
38815
|
+
});
|
|
38816
|
+
return IgcToolActionPopupOpeningEventArgs;
|
|
38817
|
+
}());
|
|
38818
|
+
|
|
38819
|
+
/*
|
|
38820
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
38821
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
38822
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
38823
|
+
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
38824
|
+
*/
|
|
38825
|
+
|
|
38826
|
+
var IgcToolActionIconButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
38827
|
+
__extends(IgcToolActionIconButtonComponent, _super);
|
|
38828
|
+
function IgcToolActionIconButtonComponent() {
|
|
38829
|
+
var _this = _super.call(this) || this;
|
|
38830
|
+
_this._popupOpening = null;
|
|
38831
|
+
_this._popupOpening_wrapped = null;
|
|
38832
|
+
return _this;
|
|
38833
|
+
}
|
|
38834
|
+
IgcToolActionIconButtonComponent.prototype.createImplementation = function () {
|
|
38835
|
+
return new ToolActionIconButton();
|
|
38836
|
+
};
|
|
38837
|
+
Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "i", {
|
|
38852
38838
|
/**
|
|
38853
38839
|
* @hidden
|
|
38854
38840
|
*/
|
|
@@ -38858,7 +38844,7 @@ var IgcToolActionRadioComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
38858
38844
|
enumerable: false,
|
|
38859
38845
|
configurable: true
|
|
38860
38846
|
});
|
|
38861
|
-
|
|
38847
|
+
IgcToolActionIconButtonComponent.prototype.connectedCallback = function () {
|
|
38862
38848
|
if (_super.prototype["connectedCallback"]) {
|
|
38863
38849
|
_super.prototype["connectedCallback"].call(this);
|
|
38864
38850
|
}
|
|
@@ -38876,7 +38862,7 @@ var IgcToolActionRadioComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
38876
38862
|
this._flushQueuedAttributes();
|
|
38877
38863
|
}
|
|
38878
38864
|
};
|
|
38879
|
-
|
|
38865
|
+
IgcToolActionIconButtonComponent.prototype.disconnectedCallback = function () {
|
|
38880
38866
|
if (_super.prototype["disconnectedCallback"]) {
|
|
38881
38867
|
_super.prototype["disconnectedCallback"].call(this);
|
|
38882
38868
|
}
|
|
@@ -38887,188 +38873,191 @@ var IgcToolActionRadioComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
38887
38873
|
this._attached = false;
|
|
38888
38874
|
}
|
|
38889
38875
|
};
|
|
38890
|
-
Object.defineProperty(
|
|
38876
|
+
Object.defineProperty(IgcToolActionIconButtonComponent, "observedAttributes", {
|
|
38891
38877
|
get: function () {
|
|
38892
|
-
if (
|
|
38893
|
-
var names = getAllPropertyNames(
|
|
38878
|
+
if (IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent == null) {
|
|
38879
|
+
var names = getAllPropertyNames(IgcToolActionIconButtonComponent);
|
|
38894
38880
|
for (var i = 0; i < names.length; i++) {
|
|
38895
38881
|
names[i] = toSpinal(names[i]);
|
|
38896
38882
|
}
|
|
38897
|
-
|
|
38883
|
+
IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent = names;
|
|
38898
38884
|
}
|
|
38899
|
-
return
|
|
38885
|
+
return IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent;
|
|
38900
38886
|
},
|
|
38901
38887
|
enumerable: false,
|
|
38902
38888
|
configurable: true
|
|
38903
38889
|
});
|
|
38904
|
-
|
|
38905
|
-
if (!
|
|
38906
|
-
|
|
38907
|
-
RegisterElementHelper.registerElement(
|
|
38890
|
+
IgcToolActionIconButtonComponent.register = function () {
|
|
38891
|
+
if (!IgcToolActionIconButtonComponent._isElementRegistered) {
|
|
38892
|
+
IgcToolActionIconButtonComponent._isElementRegistered = true;
|
|
38893
|
+
RegisterElementHelper.registerElement(IgcToolActionIconButtonComponent.htmlTagName, IgcToolActionIconButtonComponent);
|
|
38908
38894
|
}
|
|
38909
38895
|
};
|
|
38910
|
-
Object.defineProperty(
|
|
38896
|
+
Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "tooltipDelay", {
|
|
38911
38897
|
/**
|
|
38912
|
-
* Gets or sets the
|
|
38898
|
+
* Gets or sets how long it takes before the tooltip is displayed (in milliseconds).
|
|
38913
38899
|
*/
|
|
38914
38900
|
get: function () {
|
|
38915
|
-
return this.i.
|
|
38901
|
+
return this.i.iw;
|
|
38916
38902
|
},
|
|
38917
38903
|
set: function (v) {
|
|
38918
|
-
this.i.
|
|
38904
|
+
this.i.iw = +v;
|
|
38905
|
+
this._a("tooltipDelay", this.i.iw);
|
|
38919
38906
|
},
|
|
38920
38907
|
enumerable: false,
|
|
38921
38908
|
configurable: true
|
|
38922
38909
|
});
|
|
38923
|
-
Object.defineProperty(
|
|
38910
|
+
Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "actualTooltipDelay", {
|
|
38924
38911
|
/**
|
|
38925
|
-
* Gets
|
|
38912
|
+
* Gets the actual delay before the tooltip is displayed (in milliseconds).
|
|
38926
38913
|
*/
|
|
38927
38914
|
get: function () {
|
|
38928
|
-
return this.i.
|
|
38915
|
+
return this.i.iv;
|
|
38929
38916
|
},
|
|
38930
38917
|
set: function (v) {
|
|
38931
|
-
this.i.
|
|
38932
|
-
this._a("
|
|
38918
|
+
this.i.iv = +v;
|
|
38919
|
+
this._a("actualTooltipDelay", this.i.iv);
|
|
38933
38920
|
},
|
|
38934
|
-
enumerable: false,
|
|
38935
|
-
configurable: true
|
|
38936
|
-
});
|
|
38937
|
-
Object.defineProperty(
|
|
38938
|
-
/**
|
|
38939
|
-
* Gets or sets if the checked state of the radio is handled manually by the user. The radio
|
|
38940
|
-
* well not become selected when clicked if this property is true.
|
|
38941
|
-
*/
|
|
38921
|
+
enumerable: false,
|
|
38922
|
+
configurable: true
|
|
38923
|
+
});
|
|
38924
|
+
Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "contentPaddingLeft", {
|
|
38942
38925
|
get: function () {
|
|
38943
|
-
return this.i.
|
|
38926
|
+
return this.i.ip;
|
|
38944
38927
|
},
|
|
38945
38928
|
set: function (v) {
|
|
38946
|
-
this.i.
|
|
38947
|
-
this._a("
|
|
38929
|
+
this.i.ip = +v;
|
|
38930
|
+
this._a("contentPaddingLeft", this.i.ip);
|
|
38948
38931
|
},
|
|
38949
38932
|
enumerable: false,
|
|
38950
38933
|
configurable: true
|
|
38951
38934
|
});
|
|
38952
|
-
Object.defineProperty(
|
|
38953
|
-
/**
|
|
38954
|
-
* Gets or sets the background color of the radio when in the unchecked state.
|
|
38955
|
-
*/
|
|
38935
|
+
Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "actualContentPaddingLeft", {
|
|
38956
38936
|
get: function () {
|
|
38957
|
-
return
|
|
38937
|
+
return this.i.ik;
|
|
38958
38938
|
},
|
|
38959
38939
|
set: function (v) {
|
|
38960
|
-
this.i.
|
|
38961
|
-
this._a("
|
|
38940
|
+
this.i.ik = +v;
|
|
38941
|
+
this._a("actualContentPaddingLeft", this.i.ik);
|
|
38962
38942
|
},
|
|
38963
38943
|
enumerable: false,
|
|
38964
38944
|
configurable: true
|
|
38965
38945
|
});
|
|
38966
|
-
Object.defineProperty(
|
|
38967
|
-
/**
|
|
38968
|
-
* Gets the actual background color of the radio when in the unchecked state.
|
|
38969
|
-
*/
|
|
38946
|
+
Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "contentPaddingTop", {
|
|
38970
38947
|
get: function () {
|
|
38971
|
-
return
|
|
38948
|
+
return this.i.ir;
|
|
38972
38949
|
},
|
|
38973
38950
|
set: function (v) {
|
|
38974
|
-
this.i.
|
|
38975
|
-
this._a("
|
|
38951
|
+
this.i.ir = +v;
|
|
38952
|
+
this._a("contentPaddingTop", this.i.ir);
|
|
38976
38953
|
},
|
|
38977
38954
|
enumerable: false,
|
|
38978
38955
|
configurable: true
|
|
38979
38956
|
});
|
|
38980
|
-
Object.defineProperty(
|
|
38981
|
-
/**
|
|
38982
|
-
* Gets or sets the background color of the radio when in the checked state.
|
|
38983
|
-
*/
|
|
38957
|
+
Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "actualContentPaddingTop", {
|
|
38984
38958
|
get: function () {
|
|
38985
|
-
return
|
|
38959
|
+
return this.i.im;
|
|
38986
38960
|
},
|
|
38987
38961
|
set: function (v) {
|
|
38988
|
-
this.i.
|
|
38989
|
-
this._a("
|
|
38962
|
+
this.i.im = +v;
|
|
38963
|
+
this._a("actualContentPaddingTop", this.i.im);
|
|
38990
38964
|
},
|
|
38991
38965
|
enumerable: false,
|
|
38992
38966
|
configurable: true
|
|
38993
38967
|
});
|
|
38994
|
-
Object.defineProperty(
|
|
38995
|
-
/**
|
|
38996
|
-
* Gets the actual background color of the radio when in the checked state.
|
|
38997
|
-
*/
|
|
38968
|
+
Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "contentPaddingRight", {
|
|
38998
38969
|
get: function () {
|
|
38999
|
-
return
|
|
38970
|
+
return this.i.iq;
|
|
39000
38971
|
},
|
|
39001
38972
|
set: function (v) {
|
|
39002
|
-
this.i.
|
|
39003
|
-
this._a("
|
|
38973
|
+
this.i.iq = +v;
|
|
38974
|
+
this._a("contentPaddingRight", this.i.iq);
|
|
39004
38975
|
},
|
|
39005
38976
|
enumerable: false,
|
|
39006
38977
|
configurable: true
|
|
39007
38978
|
});
|
|
39008
|
-
Object.defineProperty(
|
|
39009
|
-
/**
|
|
39010
|
-
* Gets or sets the border color of the radio when in the unchecked state.
|
|
39011
|
-
*/
|
|
38979
|
+
Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "actualContentPaddingRight", {
|
|
39012
38980
|
get: function () {
|
|
39013
|
-
return
|
|
38981
|
+
return this.i.il;
|
|
39014
38982
|
},
|
|
39015
38983
|
set: function (v) {
|
|
39016
|
-
this.i.
|
|
39017
|
-
this._a("
|
|
38984
|
+
this.i.il = +v;
|
|
38985
|
+
this._a("actualContentPaddingRight", this.i.il);
|
|
39018
38986
|
},
|
|
39019
38987
|
enumerable: false,
|
|
39020
38988
|
configurable: true
|
|
39021
38989
|
});
|
|
39022
|
-
Object.defineProperty(
|
|
39023
|
-
/**
|
|
39024
|
-
* Gets the actual border color of the radio when in the unchecked state.
|
|
39025
|
-
*/
|
|
38990
|
+
Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "contentPaddingBottom", {
|
|
39026
38991
|
get: function () {
|
|
39027
|
-
return
|
|
38992
|
+
return this.i.io;
|
|
39028
38993
|
},
|
|
39029
38994
|
set: function (v) {
|
|
39030
|
-
this.i.
|
|
39031
|
-
this._a("
|
|
38995
|
+
this.i.io = +v;
|
|
38996
|
+
this._a("contentPaddingBottom", this.i.io);
|
|
39032
38997
|
},
|
|
39033
38998
|
enumerable: false,
|
|
39034
38999
|
configurable: true
|
|
39035
39000
|
});
|
|
39036
|
-
Object.defineProperty(
|
|
39037
|
-
/**
|
|
39038
|
-
* Gets or sets the border color of the radio when in the checked state.
|
|
39039
|
-
*/
|
|
39001
|
+
Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "actualContentPaddingBottom", {
|
|
39040
39002
|
get: function () {
|
|
39041
|
-
return
|
|
39003
|
+
return this.i.ij;
|
|
39042
39004
|
},
|
|
39043
39005
|
set: function (v) {
|
|
39044
|
-
this.i.
|
|
39045
|
-
this._a("
|
|
39006
|
+
this.i.ij = +v;
|
|
39007
|
+
this._a("actualContentPaddingBottom", this.i.ij);
|
|
39046
39008
|
},
|
|
39047
39009
|
enumerable: false,
|
|
39048
39010
|
configurable: true
|
|
39049
39011
|
});
|
|
39050
|
-
Object.defineProperty(
|
|
39051
|
-
/**
|
|
39052
|
-
* Gets the actual border color of the radio when in the checked state.
|
|
39053
|
-
*/
|
|
39012
|
+
Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "isOpen", {
|
|
39054
39013
|
get: function () {
|
|
39055
|
-
return
|
|
39056
|
-
},
|
|
39057
|
-
set: function (v) {
|
|
39058
|
-
this.i.h5 = stringToBrush(v);
|
|
39059
|
-
this._a("actualCheckedBorderColor", brushToString(this.i.h5));
|
|
39014
|
+
return this.i.ba;
|
|
39060
39015
|
},
|
|
39061
39016
|
enumerable: false,
|
|
39062
39017
|
configurable: true
|
|
39063
39018
|
});
|
|
39064
|
-
|
|
39019
|
+
IgcToolActionIconButtonComponent.prototype.openSubMenu = function () {
|
|
39020
|
+
this.i.gf();
|
|
39021
|
+
};
|
|
39022
|
+
IgcToolActionIconButtonComponent.prototype.closeSubmenu = function () {
|
|
39023
|
+
this.i.fd();
|
|
39024
|
+
};
|
|
39025
|
+
IgcToolActionIconButtonComponent.prototype.exportVisualData = function () {
|
|
39065
39026
|
var iv = this.i.cr();
|
|
39066
39027
|
return (iv);
|
|
39067
39028
|
};
|
|
39068
|
-
|
|
39069
|
-
|
|
39070
|
-
|
|
39071
|
-
|
|
39029
|
+
Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "popupOpening", {
|
|
39030
|
+
get: function () {
|
|
39031
|
+
return this._popupOpening;
|
|
39032
|
+
},
|
|
39033
|
+
set: function (ev) {
|
|
39034
|
+
var _this = this;
|
|
39035
|
+
if (this._popupOpening_wrapped !== null) {
|
|
39036
|
+
this.i.popupOpening = delegateRemove(this.i.popupOpening, this._popupOpening_wrapped);
|
|
39037
|
+
this._popupOpening_wrapped = null;
|
|
39038
|
+
this._popupOpening = null;
|
|
39039
|
+
}
|
|
39040
|
+
this._popupOpening = ev;
|
|
39041
|
+
this._popupOpening_wrapped = function (o, e) {
|
|
39042
|
+
var outerArgs = new IgcToolActionPopupOpeningEventArgs();
|
|
39043
|
+
outerArgs._provideImplementation(e);
|
|
39044
|
+
if (_this.beforePopupOpening) {
|
|
39045
|
+
_this.beforePopupOpening(_this, outerArgs);
|
|
39046
|
+
}
|
|
39047
|
+
if (_this._popupOpening) {
|
|
39048
|
+
_this._popupOpening(_this, outerArgs);
|
|
39049
|
+
}
|
|
39050
|
+
};
|
|
39051
|
+
this.i.popupOpening = delegateCombine(this.i.popupOpening, this._popupOpening_wrapped);
|
|
39052
|
+
;
|
|
39053
|
+
},
|
|
39054
|
+
enumerable: false,
|
|
39055
|
+
configurable: true
|
|
39056
|
+
});
|
|
39057
|
+
IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent = null;
|
|
39058
|
+
IgcToolActionIconButtonComponent.htmlTagName = "igc-tool-action-icon-button";
|
|
39059
|
+
IgcToolActionIconButtonComponent._isElementRegistered = false;
|
|
39060
|
+
return IgcToolActionIconButtonComponent;
|
|
39072
39061
|
}(IgcToolActionComponent));
|
|
39073
39062
|
|
|
39074
39063
|
/*
|
|
@@ -39077,15 +39066,15 @@ https://www.infragistics.com/legal/license/igultimate-la
|
|
|
39077
39066
|
https://www.infragistics.com/legal/license/igultimate-eula
|
|
39078
39067
|
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
39079
39068
|
*/
|
|
39080
|
-
var
|
|
39081
|
-
function
|
|
39069
|
+
var IgcToolActionIconButtonModule = /** @class */ /*@__PURE__*/ (function () {
|
|
39070
|
+
function IgcToolActionIconButtonModule() {
|
|
39082
39071
|
}
|
|
39083
|
-
|
|
39084
|
-
|
|
39085
|
-
TypeRegistrar.registerCons("
|
|
39086
|
-
TypeRegistrar.register("
|
|
39072
|
+
IgcToolActionIconButtonModule.register = function () {
|
|
39073
|
+
IgcToolActionIconButtonComponent.register();
|
|
39074
|
+
TypeRegistrar.registerCons("IgcToolActionIconButtonComponent", IgcToolActionIconButtonComponent);
|
|
39075
|
+
TypeRegistrar.register("ToolActionIconButton", ToolActionIconButton.$type);
|
|
39087
39076
|
};
|
|
39088
|
-
return
|
|
39077
|
+
return IgcToolActionIconButtonModule;
|
|
39089
39078
|
}());
|
|
39090
39079
|
|
|
39091
39080
|
/*
|
|
@@ -39095,15 +39084,15 @@ https://www.infragistics.com/legal/license/igultimate-eula
|
|
|
39095
39084
|
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
39096
39085
|
*/
|
|
39097
39086
|
|
|
39098
|
-
var
|
|
39099
|
-
__extends(
|
|
39100
|
-
function
|
|
39087
|
+
var IgcToolActionIconMenuComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
39088
|
+
__extends(IgcToolActionIconMenuComponent, _super);
|
|
39089
|
+
function IgcToolActionIconMenuComponent() {
|
|
39101
39090
|
return _super.call(this) || this;
|
|
39102
39091
|
}
|
|
39103
|
-
|
|
39104
|
-
return new
|
|
39092
|
+
IgcToolActionIconMenuComponent.prototype.createImplementation = function () {
|
|
39093
|
+
return new ToolActionIconMenu();
|
|
39105
39094
|
};
|
|
39106
|
-
Object.defineProperty(
|
|
39095
|
+
Object.defineProperty(IgcToolActionIconMenuComponent.prototype, "i", {
|
|
39107
39096
|
/**
|
|
39108
39097
|
* @hidden
|
|
39109
39098
|
*/
|
|
@@ -39113,7 +39102,7 @@ var IgcToolActionButtonComponent = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
39113
39102
|
enumerable: false,
|
|
39114
39103
|
configurable: true
|
|
39115
39104
|
});
|
|
39116
|
-
|
|
39105
|
+
IgcToolActionIconMenuComponent.prototype.connectedCallback = function () {
|
|
39117
39106
|
if (_super.prototype["connectedCallback"]) {
|
|
39118
39107
|
_super.prototype["connectedCallback"].call(this);
|
|
39119
39108
|
}
|
|
@@ -39131,7 +39120,7 @@ var IgcToolActionButtonComponent = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
39131
39120
|
this._flushQueuedAttributes();
|
|
39132
39121
|
}
|
|
39133
39122
|
};
|
|
39134
|
-
|
|
39123
|
+
IgcToolActionIconMenuComponent.prototype.disconnectedCallback = function () {
|
|
39135
39124
|
if (_super.prototype["disconnectedCallback"]) {
|
|
39136
39125
|
_super.prototype["disconnectedCallback"].call(this);
|
|
39137
39126
|
}
|
|
@@ -39142,63 +39131,77 @@ var IgcToolActionButtonComponent = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
39142
39131
|
this._attached = false;
|
|
39143
39132
|
}
|
|
39144
39133
|
};
|
|
39145
|
-
Object.defineProperty(
|
|
39134
|
+
Object.defineProperty(IgcToolActionIconMenuComponent, "observedAttributes", {
|
|
39146
39135
|
get: function () {
|
|
39147
|
-
if (
|
|
39148
|
-
var names = getAllPropertyNames(
|
|
39136
|
+
if (IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent == null) {
|
|
39137
|
+
var names = getAllPropertyNames(IgcToolActionIconMenuComponent);
|
|
39149
39138
|
for (var i = 0; i < names.length; i++) {
|
|
39150
39139
|
names[i] = toSpinal(names[i]);
|
|
39151
39140
|
}
|
|
39152
|
-
|
|
39141
|
+
IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent = names;
|
|
39153
39142
|
}
|
|
39154
|
-
return
|
|
39143
|
+
return IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent;
|
|
39155
39144
|
},
|
|
39156
39145
|
enumerable: false,
|
|
39157
39146
|
configurable: true
|
|
39158
39147
|
});
|
|
39159
|
-
|
|
39160
|
-
if (!
|
|
39161
|
-
|
|
39162
|
-
RegisterElementHelper.registerElement(
|
|
39148
|
+
IgcToolActionIconMenuComponent.register = function () {
|
|
39149
|
+
if (!IgcToolActionIconMenuComponent._isElementRegistered) {
|
|
39150
|
+
IgcToolActionIconMenuComponent._isElementRegistered = true;
|
|
39151
|
+
RegisterElementHelper.registerElement(IgcToolActionIconMenuComponent.htmlTagName, IgcToolActionIconMenuComponent);
|
|
39163
39152
|
}
|
|
39164
39153
|
};
|
|
39165
|
-
Object.defineProperty(
|
|
39154
|
+
Object.defineProperty(IgcToolActionIconMenuComponent.prototype, "arrowStroke", {
|
|
39166
39155
|
/**
|
|
39167
|
-
* Gets or sets the
|
|
39156
|
+
* Gets or sets the stroke color of the arrow icon.
|
|
39168
39157
|
*/
|
|
39169
39158
|
get: function () {
|
|
39170
|
-
return this.i.
|
|
39159
|
+
return brushToString(this.i.kd);
|
|
39171
39160
|
},
|
|
39172
39161
|
set: function (v) {
|
|
39173
|
-
this.i.
|
|
39174
|
-
this._a("
|
|
39162
|
+
this.i.kd = stringToBrush(v);
|
|
39163
|
+
this._a("arrowStroke", brushToString(this.i.kd));
|
|
39175
39164
|
},
|
|
39176
39165
|
enumerable: false,
|
|
39177
39166
|
configurable: true
|
|
39178
39167
|
});
|
|
39179
|
-
Object.defineProperty(
|
|
39168
|
+
Object.defineProperty(IgcToolActionIconMenuComponent.prototype, "actualArrowStroke", {
|
|
39180
39169
|
/**
|
|
39181
|
-
* Gets
|
|
39170
|
+
* Gets the actual stroke color of the arrow icon.
|
|
39182
39171
|
*/
|
|
39183
39172
|
get: function () {
|
|
39184
|
-
return this.i.
|
|
39173
|
+
return brushToString(this.i.kc);
|
|
39185
39174
|
},
|
|
39186
39175
|
set: function (v) {
|
|
39187
|
-
this.i.
|
|
39188
|
-
this._a("
|
|
39176
|
+
this.i.kc = stringToBrush(v);
|
|
39177
|
+
this._a("actualArrowStroke", brushToString(this.i.kc));
|
|
39189
39178
|
},
|
|
39190
39179
|
enumerable: false,
|
|
39191
39180
|
configurable: true
|
|
39192
39181
|
});
|
|
39193
|
-
|
|
39182
|
+
Object.defineProperty(IgcToolActionIconMenuComponent.prototype, "showArrowIcon", {
|
|
39183
|
+
/**
|
|
39184
|
+
* Gets or sets whether the arrow icon should be shown.
|
|
39185
|
+
*/
|
|
39186
|
+
get: function () {
|
|
39187
|
+
return this.i.j1;
|
|
39188
|
+
},
|
|
39189
|
+
set: function (v) {
|
|
39190
|
+
this.i.j1 = ensureBool(v);
|
|
39191
|
+
this._a("showArrowIcon", this.i.j1);
|
|
39192
|
+
},
|
|
39193
|
+
enumerable: false,
|
|
39194
|
+
configurable: true
|
|
39195
|
+
});
|
|
39196
|
+
IgcToolActionIconMenuComponent.prototype.exportVisualData = function () {
|
|
39194
39197
|
var iv = this.i.cr();
|
|
39195
39198
|
return (iv);
|
|
39196
39199
|
};
|
|
39197
|
-
|
|
39198
|
-
|
|
39199
|
-
|
|
39200
|
-
return
|
|
39201
|
-
}(
|
|
39200
|
+
IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent = null;
|
|
39201
|
+
IgcToolActionIconMenuComponent.htmlTagName = "igc-tool-action-icon-menu";
|
|
39202
|
+
IgcToolActionIconMenuComponent._isElementRegistered = false;
|
|
39203
|
+
return IgcToolActionIconMenuComponent;
|
|
39204
|
+
}(IgcToolActionIconButtonComponent));
|
|
39202
39205
|
|
|
39203
39206
|
/*
|
|
39204
39207
|
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
@@ -39206,15 +39209,15 @@ https://www.infragistics.com/legal/license/igultimate-la
|
|
|
39206
39209
|
https://www.infragistics.com/legal/license/igultimate-eula
|
|
39207
39210
|
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
39208
39211
|
*/
|
|
39209
|
-
var
|
|
39210
|
-
function
|
|
39212
|
+
var IgcToolActionIconMenuModule = /** @class */ /*@__PURE__*/ (function () {
|
|
39213
|
+
function IgcToolActionIconMenuModule() {
|
|
39211
39214
|
}
|
|
39212
|
-
|
|
39213
|
-
|
|
39214
|
-
TypeRegistrar.registerCons("
|
|
39215
|
-
TypeRegistrar.register("
|
|
39215
|
+
IgcToolActionIconMenuModule.register = function () {
|
|
39216
|
+
IgcToolActionIconMenuComponent.register();
|
|
39217
|
+
TypeRegistrar.registerCons("IgcToolActionIconMenuComponent", IgcToolActionIconMenuComponent);
|
|
39218
|
+
TypeRegistrar.register("ToolActionIconMenu", ToolActionIconMenu.$type);
|
|
39216
39219
|
};
|
|
39217
|
-
return
|
|
39220
|
+
return IgcToolActionIconMenuModule;
|
|
39218
39221
|
}());
|
|
39219
39222
|
|
|
39220
39223
|
/*
|
|
@@ -40877,10 +40880,7 @@ var IgcToolPanelModule = /** @class */ /*@__PURE__*/ (function () {
|
|
|
40877
40880
|
IgcToolActionGroupHeaderModule.register();
|
|
40878
40881
|
IgcToolActionFieldSelectorModule.register();
|
|
40879
40882
|
IgcToolActionNumberInputModule.register();
|
|
40880
|
-
IgcToolActionIconButtonModule.register();
|
|
40881
|
-
IgcToolActionIconMenuModule.register();
|
|
40882
40883
|
IgcToolActionSeparatorModule.register();
|
|
40883
|
-
IgcToolActionSubPanelModule.register();
|
|
40884
40884
|
IgcToolActionRadioModule.register();
|
|
40885
40885
|
IgcToolActionButtonModule.register();
|
|
40886
40886
|
IgcXInputGroupModule.register();
|
|
@@ -40889,6 +40889,9 @@ var IgcToolPanelModule = /** @class */ /*@__PURE__*/ (function () {
|
|
|
40889
40889
|
IgcXIconModule.register();
|
|
40890
40890
|
IgcColorEditorModule.register();
|
|
40891
40891
|
IgcMultiSliderModule.register();
|
|
40892
|
+
IgcToolActionSubPanelModule.register();
|
|
40893
|
+
IgcToolActionIconButtonModule.register();
|
|
40894
|
+
IgcToolActionIconMenuModule.register();
|
|
40892
40895
|
IgcToolPanelComponent.register();
|
|
40893
40896
|
TypeRegistrar.registerCons('IgcToolPanelComponent', IgcToolPanelComponent);
|
|
40894
40897
|
TypeRegistrar.registerCons('IgcToolPanelComponent', IgcToolPanelComponent);
|
|
@@ -42706,18 +42709,18 @@ var PropertyEditorTreeTransformer = /** @class */ /*@__PURE__*/ (function (_supe
|
|
|
42706
42709
|
var a = new DescriptionSerializerBuilder();
|
|
42707
42710
|
var b = new DescriptionSerializer();
|
|
42708
42711
|
var c = "root";
|
|
42709
|
-
a.
|
|
42710
|
-
a.
|
|
42711
|
-
a.
|
|
42712
|
-
a.
|
|
42713
|
-
a.
|
|
42714
|
-
a.
|
|
42712
|
+
a.appendLine("{");
|
|
42713
|
+
a.increaseTabLevel();
|
|
42714
|
+
a.appendLine("\"descriptions\": {");
|
|
42715
|
+
a.increaseTabLevel();
|
|
42716
|
+
a.append("\"" + c + "\"");
|
|
42717
|
+
a.append(": ");
|
|
42715
42718
|
b.y(this.c, this.b, a);
|
|
42716
|
-
a.
|
|
42717
|
-
a.
|
|
42718
|
-
a.
|
|
42719
|
-
a.
|
|
42720
|
-
a.
|
|
42719
|
+
a.appendLine("");
|
|
42720
|
+
a.decreaseTabLevel();
|
|
42721
|
+
a.append("}");
|
|
42722
|
+
a.decreaseTabLevel();
|
|
42723
|
+
a.appendLine("}");
|
|
42721
42724
|
return a.toString();
|
|
42722
42725
|
};
|
|
42723
42726
|
PropertyEditorTreeTransformer.$t = markType(PropertyEditorTreeTransformer, 'PropertyEditorTreeTransformer');
|