igniteui-webcomponents-layouts 3.2.4 → 3.5.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 +789 -157
- package/bundles/igniteui-webcomponents-layouts.umd.min.js +1 -1
- package/esm2015/lib/PropertyEditorPanelView_combined.js +20 -20
- package/esm2015/lib/PropertyEditorPropertyDescription_combined.js +84 -58
- package/esm2015/lib/PropertyEditorTreeTransformer.js +1 -0
- package/esm2015/lib/PropertyEditorValueType.js +2 -1
- package/esm2015/lib/ToolActionLabel.js +7 -0
- package/esm2015/lib/ToolActionRadio.js +7 -0
- package/esm2015/lib/ToolPanelView_combined.js +237 -53
- package/esm2015/lib/igc-list-panel-component.js +9 -0
- package/esm2015/lib/igc-list-panel-item-model.js +5 -0
- package/esm2015/lib/igc-list-panel-template-item-updating-event-args.js +11 -5
- package/esm2015/lib/igc-popup-component.js +7 -0
- package/esm2015/lib/igc-property-editor-data-source.js +7 -2
- package/esm2015/lib/igc-property-editor-description-object.js +5 -0
- package/esm2015/lib/igc-property-editor-panel-component.js +5 -0
- package/esm2015/lib/igc-property-editor-property-description-component.js +33 -5
- package/esm2015/lib/igc-tool-action-checkbox-component.js +14 -0
- package/esm2015/lib/igc-tool-action-component.js +21 -0
- package/esm2015/lib/igc-tool-action-event-detail.js +12 -6
- package/esm2015/lib/igc-tool-action-group-header-component.js +14 -0
- package/esm2015/lib/igc-tool-action-icon-button-component.js +14 -0
- package/esm2015/lib/igc-tool-action-icon-menu-component.js +14 -0
- package/esm2015/lib/igc-tool-action-label-component.js +63 -0
- package/esm2015/lib/igc-tool-action-label-module.js +16 -0
- package/esm2015/lib/igc-tool-action-menu-base-component.js +14 -0
- package/esm2015/lib/igc-tool-action-number-input-component.js +14 -0
- package/esm2015/lib/igc-tool-action-performed-event-args.js +11 -5
- package/esm2015/lib/igc-tool-action-radio-component.js +69 -0
- package/esm2015/lib/igc-tool-action-radio-module.js +16 -0
- package/esm2015/lib/igc-tool-action-separator-component.js +14 -0
- package/esm2015/lib/igc-tool-panel-component.js +13 -6
- package/esm2015/lib/igc-toolbar-component.js +5 -0
- package/esm2015/lib/igc-x-expansion-panel-component.js +7 -0
- package/esm2015/public_api.js +6 -0
- package/esm5/lib/PropertyEditorPanelView_combined.js +20 -20
- package/esm5/lib/PropertyEditorPropertyDescription_combined.js +82 -57
- package/esm5/lib/PropertyEditorTreeTransformer.js +1 -0
- package/esm5/lib/PropertyEditorValueType.js +2 -1
- package/esm5/lib/ToolActionLabel.js +7 -0
- package/esm5/lib/ToolActionRadio.js +7 -0
- package/esm5/lib/ToolPanelView_combined.js +241 -51
- package/esm5/lib/igc-list-panel-component.js +9 -0
- package/esm5/lib/igc-list-panel-item-model.js +5 -0
- package/esm5/lib/igc-list-panel-template-item-updating-event-args.js +11 -5
- package/esm5/lib/igc-popup-component.js +7 -0
- package/esm5/lib/igc-property-editor-data-source.js +7 -2
- package/esm5/lib/igc-property-editor-description-object.js +5 -0
- package/esm5/lib/igc-property-editor-panel-component.js +5 -0
- package/esm5/lib/igc-property-editor-property-description-component.js +33 -5
- package/esm5/lib/igc-tool-action-checkbox-component.js +14 -0
- package/esm5/lib/igc-tool-action-component.js +21 -0
- package/esm5/lib/igc-tool-action-event-detail.js +12 -6
- package/esm5/lib/igc-tool-action-group-header-component.js +14 -0
- package/esm5/lib/igc-tool-action-icon-button-component.js +14 -0
- package/esm5/lib/igc-tool-action-icon-menu-component.js +14 -0
- package/esm5/lib/igc-tool-action-label-component.js +72 -0
- package/esm5/lib/igc-tool-action-label-module.js +20 -0
- package/esm5/lib/igc-tool-action-menu-base-component.js +14 -0
- package/esm5/lib/igc-tool-action-number-input-component.js +14 -0
- package/esm5/lib/igc-tool-action-performed-event-args.js +11 -5
- package/esm5/lib/igc-tool-action-radio-component.js +82 -0
- package/esm5/lib/igc-tool-action-radio-module.js +20 -0
- package/esm5/lib/igc-tool-action-separator-component.js +14 -0
- package/esm5/lib/igc-tool-panel-component.js +13 -6
- package/esm5/lib/igc-toolbar-component.js +5 -0
- package/esm5/lib/igc-x-expansion-panel-component.js +7 -0
- package/esm5/public_api.js +6 -0
- package/fesm2015/igniteui-webcomponents-layouts.js +761 -162
- package/fesm5/igniteui-webcomponents-layouts.js +785 -159
- package/lib/PropertyEditorPropertyDescription_combined.d.ts +13 -10
- package/lib/PropertyEditorValueType.d.ts +2 -1
- package/lib/ToolActionLabel.d.ts +1 -0
- package/lib/ToolActionRadio.d.ts +1 -0
- package/lib/ToolPanelView_combined.d.ts +33 -6
- package/lib/igc-property-editor-property-description-component.d.ts +1 -0
- package/lib/igc-tool-action-checkbox-component.d.ts +1 -0
- package/lib/igc-tool-action-component.d.ts +1 -0
- package/lib/igc-tool-action-group-header-component.d.ts +1 -0
- package/lib/igc-tool-action-icon-button-component.d.ts +1 -0
- package/lib/igc-tool-action-icon-menu-component.d.ts +1 -0
- package/lib/igc-tool-action-label-component.d.ts +17 -0
- package/lib/igc-tool-action-label-module.d.ts +3 -0
- package/lib/igc-tool-action-menu-base-component.d.ts +1 -0
- package/lib/igc-tool-action-number-input-component.d.ts +1 -0
- package/lib/igc-tool-action-radio-component.d.ts +18 -0
- package/lib/igc-tool-action-radio-module.d.ts +3 -0
- package/lib/igc-tool-action-separator-component.d.ts +1 -0
- package/package.json +3 -3
- package/public_api.d.ts +6 -0
package/esm2015/public_api.js
CHANGED
|
@@ -27,6 +27,12 @@ export * from './lib/OnPopupEventArgs';
|
|
|
27
27
|
export * from './lib/igc-on-popup-event-args';
|
|
28
28
|
export * from './lib/OnClosedEventArgs';
|
|
29
29
|
export * from './lib/igc-on-closed-event-args';
|
|
30
|
+
export * from './lib/ToolActionLabel';
|
|
31
|
+
export * from './lib/igc-tool-action-label-component';
|
|
32
|
+
export * from './lib/igc-tool-action-label-module';
|
|
33
|
+
export * from './lib/ToolActionRadio';
|
|
34
|
+
export * from './lib/igc-tool-action-radio-component';
|
|
35
|
+
export * from './lib/igc-tool-action-radio-module';
|
|
30
36
|
export * from './lib/ToolActionSeparator';
|
|
31
37
|
export * from './lib/igc-tool-action-separator-component';
|
|
32
38
|
export * from './lib/igc-tool-action-separator-module';
|
|
@@ -414,11 +414,11 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
414
414
|
if (this.k == null) {
|
|
415
415
|
this.k = new PropertyEditorDataSource();
|
|
416
416
|
}
|
|
417
|
-
this.k.
|
|
417
|
+
this.k.n = this.b2;
|
|
418
418
|
}
|
|
419
419
|
if (this.properties == null || this.properties.count == 0) {
|
|
420
|
-
if (this.k.
|
|
421
|
-
this.actualProperties = this.k.
|
|
420
|
+
if (this.k.h != null) {
|
|
421
|
+
this.actualProperties = this.k.h;
|
|
422
422
|
}
|
|
423
423
|
}
|
|
424
424
|
else {
|
|
@@ -464,8 +464,8 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
464
464
|
this.k.b = this.h;
|
|
465
465
|
}
|
|
466
466
|
if (this.properties == null || this.properties.count == 0) {
|
|
467
|
-
if (this.k.
|
|
468
|
-
this.actualProperties = this.k.
|
|
467
|
+
if (this.k.h != null) {
|
|
468
|
+
this.actualProperties = this.k.h;
|
|
469
469
|
}
|
|
470
470
|
}
|
|
471
471
|
else {
|
|
@@ -559,7 +559,7 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
559
559
|
var c = _c.value;
|
|
560
560
|
var d = c.al;
|
|
561
561
|
if (this.k != null) {
|
|
562
|
-
var e = this.k.
|
|
562
|
+
var e = this.k.e(d, false);
|
|
563
563
|
if (e != null) {
|
|
564
564
|
if (c.p(e)) {
|
|
565
565
|
b = true;
|
|
@@ -609,11 +609,11 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
609
609
|
var _loop_1 = function (b) {
|
|
610
610
|
var c = b;
|
|
611
611
|
var d = this_1.c.getItemAtIndex(b);
|
|
612
|
-
if (this_1.v.
|
|
613
|
-
this_1.v.
|
|
612
|
+
if (this_1.v.a5 < c + 1) {
|
|
613
|
+
this_1.v.a7(c, 1, this_1.ar);
|
|
614
614
|
}
|
|
615
615
|
else {
|
|
616
|
-
this_1.v.
|
|
616
|
+
this_1.v.bd(c, 1, this_1.ar);
|
|
617
617
|
}
|
|
618
618
|
if (this_1.an.count < c + 1) {
|
|
619
619
|
this_1.an.add(new List$1(NativeUIComponent.$, 0));
|
|
@@ -630,16 +630,16 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
630
630
|
}
|
|
631
631
|
i.ar = new Thickness(1, 5, 5, 5, 0);
|
|
632
632
|
_this.v.aw(i);
|
|
633
|
-
_this.v.
|
|
634
|
-
_this.v.
|
|
633
|
+
_this.v.bb(i, c);
|
|
634
|
+
_this.v.ba(i, f);
|
|
635
635
|
e.add(i);
|
|
636
636
|
});
|
|
637
637
|
}
|
|
638
|
-
if (this_1.v.
|
|
639
|
-
this_1.v.
|
|
638
|
+
if (this_1.v.a2 < f + 1) {
|
|
639
|
+
this_1.v.a6(f, 1, g.h);
|
|
640
640
|
}
|
|
641
641
|
else {
|
|
642
|
-
this_1.v.
|
|
642
|
+
this_1.v.bc(f, 1, g.h);
|
|
643
643
|
}
|
|
644
644
|
var h = e._inner[f];
|
|
645
645
|
var i = "PropertyPath";
|
|
@@ -672,8 +672,8 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
672
672
|
var n = new HashSet$1(NativeUIComponent.$, 0);
|
|
673
673
|
for (var o = this.v.av - 1; o >= 0; o--) {
|
|
674
674
|
var p = this.v.au(o);
|
|
675
|
-
var q = this.v.
|
|
676
|
-
var r = this.v.
|
|
675
|
+
var q = this.v.a4(p);
|
|
676
|
+
var r = this.v.a3(p);
|
|
677
677
|
if ((q + 1) > a || (r + 1) > this.ap.count) {
|
|
678
678
|
n.add_1(p);
|
|
679
679
|
}
|
|
@@ -695,11 +695,11 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
695
695
|
this.an.removeAt(u);
|
|
696
696
|
}
|
|
697
697
|
}
|
|
698
|
-
while (this.v.
|
|
699
|
-
this.v.
|
|
698
|
+
while (this.v.a5 > a) {
|
|
699
|
+
this.v.a9(this.v.a5 - 1);
|
|
700
700
|
}
|
|
701
|
-
while (this.v.
|
|
702
|
-
this.v.
|
|
701
|
+
while (this.v.a2 > this.ap.count) {
|
|
702
|
+
this.v.a8(this.v.a2 - 1);
|
|
703
703
|
}
|
|
704
704
|
};
|
|
705
705
|
PropertyEditorPanel.prototype.dw = function (a, b) {
|
|
@@ -11,6 +11,7 @@ import { PropertyEditorPropertyDescriptionButtonClickEventArgs } from "./Propert
|
|
|
11
11
|
import { PropertyEditorPropertyDescriptionChangedEventArgs } from "./PropertyEditorPropertyDescriptionChangedEventArgs";
|
|
12
12
|
import { PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs } from "./PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs";
|
|
13
13
|
import { ObservableCollection$1 } from "igniteui-webcomponents-core";
|
|
14
|
+
import { Dictionary$2 } from "igniteui-webcomponents-core";
|
|
14
15
|
import { List$1 } from "igniteui-webcomponents-core";
|
|
15
16
|
import { stringEndsWith, stringContains, stringReplace } from "igniteui-webcomponents-core";
|
|
16
17
|
import { stringSplit } from "igniteui-webcomponents-core";
|
|
@@ -301,7 +302,7 @@ var PropertyEditorPropertyDescription = /** @class */ /*@__PURE__*/ (function (_
|
|
|
301
302
|
return this.e;
|
|
302
303
|
}
|
|
303
304
|
if (this.e != null) {
|
|
304
|
-
return this.e.
|
|
305
|
+
return this.e.e(a, false);
|
|
305
306
|
}
|
|
306
307
|
return null;
|
|
307
308
|
};
|
|
@@ -354,20 +355,21 @@ var PropertyEditorDataSource = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
354
355
|
tslib_1.__extends(PropertyEditorDataSource, _super);
|
|
355
356
|
function PropertyEditorDataSource() {
|
|
356
357
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
357
|
-
_this.
|
|
358
|
+
_this.k = null;
|
|
358
359
|
_this.a = null;
|
|
359
|
-
_this.
|
|
360
|
+
_this.g = null;
|
|
360
361
|
_this.propertyChanged = null;
|
|
362
|
+
_this.j = null;
|
|
361
363
|
return _this;
|
|
362
364
|
}
|
|
363
|
-
Object.defineProperty(PropertyEditorDataSource.prototype, "
|
|
365
|
+
Object.defineProperty(PropertyEditorDataSource.prototype, "n", {
|
|
364
366
|
get: function () {
|
|
365
|
-
return this.
|
|
367
|
+
return this.k;
|
|
366
368
|
},
|
|
367
369
|
set: function (a) {
|
|
368
|
-
var b = this.
|
|
369
|
-
this.
|
|
370
|
-
this.
|
|
370
|
+
var b = this.k;
|
|
371
|
+
this.k = a;
|
|
372
|
+
this.p("DescriptionType", b, this.k);
|
|
371
373
|
},
|
|
372
374
|
enumerable: true,
|
|
373
375
|
configurable: true
|
|
@@ -379,69 +381,76 @@ var PropertyEditorDataSource = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
379
381
|
set: function (a) {
|
|
380
382
|
var b = this.a;
|
|
381
383
|
this.a = a;
|
|
382
|
-
this.
|
|
384
|
+
this.p("Context", b, this.a);
|
|
383
385
|
},
|
|
384
386
|
enumerable: true,
|
|
385
387
|
configurable: true
|
|
386
388
|
});
|
|
387
|
-
Object.defineProperty(PropertyEditorDataSource.prototype, "
|
|
389
|
+
Object.defineProperty(PropertyEditorDataSource.prototype, "h", {
|
|
388
390
|
get: function () {
|
|
389
|
-
return this.
|
|
391
|
+
return this.g;
|
|
390
392
|
},
|
|
391
393
|
set: function (a) {
|
|
392
|
-
var b = this.
|
|
393
|
-
this.
|
|
394
|
-
this.
|
|
394
|
+
var b = this.g;
|
|
395
|
+
this.g = a;
|
|
396
|
+
this.p("Data", b, this.g);
|
|
395
397
|
},
|
|
396
398
|
enumerable: true,
|
|
397
399
|
configurable: true
|
|
398
400
|
});
|
|
399
|
-
PropertyEditorDataSource.prototype.
|
|
401
|
+
PropertyEditorDataSource.prototype.p = function (a, b, c) {
|
|
400
402
|
if (this.propertyChanged != null) {
|
|
401
403
|
this.propertyChanged(this, new PropertyChangedEventArgs(a));
|
|
402
404
|
}
|
|
403
|
-
this.
|
|
405
|
+
this.q(a, b, c);
|
|
404
406
|
};
|
|
405
|
-
PropertyEditorDataSource.prototype.
|
|
407
|
+
PropertyEditorDataSource.prototype.q = function (a, b, c) {
|
|
406
408
|
switch (a) {
|
|
407
409
|
case "DescriptionType":
|
|
408
|
-
this.
|
|
410
|
+
this.r();
|
|
409
411
|
break;
|
|
410
412
|
case "Context":
|
|
411
|
-
this.
|
|
413
|
+
this.r();
|
|
412
414
|
break;
|
|
413
415
|
}
|
|
414
416
|
};
|
|
415
|
-
PropertyEditorDataSource.
|
|
416
|
-
var
|
|
417
|
+
PropertyEditorDataSource.d = function (a, b, c) {
|
|
418
|
+
var d = new PropertyEditorDataSource();
|
|
419
|
+
d.j = c;
|
|
420
|
+
d.b = a;
|
|
421
|
+
d.n = b;
|
|
422
|
+
d.j = null;
|
|
423
|
+
return d;
|
|
424
|
+
};
|
|
425
|
+
PropertyEditorDataSource.prototype.f = function (a) {
|
|
417
426
|
var b = new PropertyEditorPropertyDescription();
|
|
418
427
|
b.al = a.propertyName;
|
|
419
|
-
b.n = this.
|
|
428
|
+
b.n = this.i(a);
|
|
420
429
|
b.ak = a.specificExternalType != null ? a.specificExternalType : a.specificType;
|
|
421
430
|
if (a.knownType == 9) {
|
|
422
431
|
b.ai = a.collectionElementType;
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
}
|
|
432
|
+
if (this.j != null && this.j.containsKey(b.ai)) {
|
|
433
|
+
b.e = this.j.item(b.ai);
|
|
434
|
+
}
|
|
435
|
+
else {
|
|
436
|
+
b.e = PropertyEditorDataSource.d(this.a, b.ai, this.j);
|
|
437
|
+
}
|
|
429
438
|
}
|
|
430
439
|
if (b.n == 8) {
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
}
|
|
440
|
+
if (this.j != null && this.j.containsKey(b.ak)) {
|
|
441
|
+
b.e = this.j.item(b.ak);
|
|
442
|
+
}
|
|
443
|
+
else {
|
|
444
|
+
b.e = PropertyEditorDataSource.d(this.a, b.ak, this.j);
|
|
445
|
+
}
|
|
437
446
|
}
|
|
438
447
|
if (b.n == 15) {
|
|
439
|
-
b.c = this.a.c(this.
|
|
448
|
+
b.c = this.a.c(this.n, b.al);
|
|
440
449
|
b.d = b.d;
|
|
441
450
|
}
|
|
442
451
|
return b;
|
|
443
452
|
};
|
|
444
|
-
PropertyEditorDataSource.prototype.
|
|
453
|
+
PropertyEditorDataSource.prototype.i = function (a) {
|
|
445
454
|
switch (a.knownType) {
|
|
446
455
|
case 10: return 10;
|
|
447
456
|
case 7: return 7;
|
|
@@ -451,6 +460,7 @@ var PropertyEditorDataSource = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
451
460
|
case 5: return 5;
|
|
452
461
|
case 16: return 14;
|
|
453
462
|
case 20: return 18;
|
|
463
|
+
case 22: return 22;
|
|
454
464
|
case 15: return 0;
|
|
455
465
|
case 3: return 3;
|
|
456
466
|
case 19: return 17;
|
|
@@ -472,31 +482,46 @@ var PropertyEditorDataSource = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
472
482
|
}
|
|
473
483
|
return 0;
|
|
474
484
|
};
|
|
475
|
-
PropertyEditorDataSource.prototype.
|
|
485
|
+
PropertyEditorDataSource.prototype.r = function () {
|
|
476
486
|
var a = new PropertyEditorPropertyDescriptionCollection();
|
|
477
|
-
if (this.
|
|
478
|
-
var b =
|
|
479
|
-
if (
|
|
487
|
+
if (this.n != null && this.b != null) {
|
|
488
|
+
var b = false;
|
|
489
|
+
if (this.j == null) {
|
|
490
|
+
b = true;
|
|
491
|
+
this.j = new Dictionary$2(String_$type, PropertyEditorDataSource.$, 0);
|
|
492
|
+
}
|
|
493
|
+
this.j.item(this.n, this);
|
|
494
|
+
var c = this.b.b(this.n);
|
|
495
|
+
if (c == null) {
|
|
480
496
|
return;
|
|
481
497
|
}
|
|
482
|
-
for (var
|
|
483
|
-
if (stringEndsWith(
|
|
498
|
+
for (var d = 0; d < c.length; d++) {
|
|
499
|
+
if (stringEndsWith(c[d], "@names")) {
|
|
500
|
+
continue;
|
|
501
|
+
}
|
|
502
|
+
if (stringEndsWith(c[d], "@nameBinding")) {
|
|
503
|
+
continue;
|
|
504
|
+
}
|
|
505
|
+
if (stringEndsWith(c[d], "@ngQueryList")) {
|
|
484
506
|
continue;
|
|
485
507
|
}
|
|
486
|
-
if (stringEndsWith(
|
|
508
|
+
if (stringEndsWith(c[d], "@mustSetInCode")) {
|
|
487
509
|
continue;
|
|
488
510
|
}
|
|
489
|
-
var
|
|
490
|
-
var
|
|
491
|
-
if (
|
|
511
|
+
var e = this.b.getMetadata(this.n, c[d]);
|
|
512
|
+
var f = this.f(e);
|
|
513
|
+
if (f.n == 0) {
|
|
492
514
|
continue;
|
|
493
515
|
}
|
|
494
|
-
a.add(
|
|
516
|
+
a.add(f);
|
|
517
|
+
}
|
|
518
|
+
if (b) {
|
|
519
|
+
this.j = null;
|
|
495
520
|
}
|
|
496
521
|
}
|
|
497
|
-
this.
|
|
522
|
+
this.h = a;
|
|
498
523
|
};
|
|
499
|
-
PropertyEditorDataSource.prototype.
|
|
524
|
+
PropertyEditorDataSource.prototype.e = function (a, b) {
|
|
500
525
|
if (a == null) {
|
|
501
526
|
return null;
|
|
502
527
|
}
|
|
@@ -519,9 +544,9 @@ var PropertyEditorDataSource = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
519
544
|
g = h.substr(0, k).trim();
|
|
520
545
|
f = h.substr(k + 2).trim();
|
|
521
546
|
}
|
|
522
|
-
if (f != null && f != this.
|
|
547
|
+
if (f != null && f != this.n) {
|
|
523
548
|
var l = this.c();
|
|
524
|
-
l.
|
|
549
|
+
l.n = f;
|
|
525
550
|
e = l;
|
|
526
551
|
continue;
|
|
527
552
|
}
|
|
@@ -539,19 +564,19 @@ var PropertyEditorDataSource = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
539
564
|
else {
|
|
540
565
|
if (e != null) {
|
|
541
566
|
var n = e;
|
|
542
|
-
var o = n.
|
|
567
|
+
var o = n.e(h, i);
|
|
543
568
|
if (o == null) {
|
|
544
569
|
return null;
|
|
545
570
|
}
|
|
546
571
|
e = o;
|
|
547
572
|
}
|
|
548
573
|
else {
|
|
549
|
-
if (this.
|
|
574
|
+
if (this.h == null) {
|
|
550
575
|
return null;
|
|
551
576
|
}
|
|
552
|
-
for (var p = 0; p < this.
|
|
553
|
-
if (Base.equalsStatic(this.
|
|
554
|
-
e = this.
|
|
577
|
+
for (var p = 0; p < this.h.count; p++) {
|
|
578
|
+
if (Base.equalsStatic(this.h._inner[p].al, h)) {
|
|
579
|
+
e = this.h._inner[p];
|
|
555
580
|
break;
|
|
556
581
|
}
|
|
557
582
|
}
|
|
@@ -568,7 +593,7 @@ var PropertyEditorDataSource = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
568
593
|
return ((function () {
|
|
569
594
|
var $ret = new PropertyEditorDataSource();
|
|
570
595
|
$ret.b = _this.b;
|
|
571
|
-
$ret.
|
|
596
|
+
$ret.n = _this.n;
|
|
572
597
|
return $ret;
|
|
573
598
|
})());
|
|
574
599
|
};
|
|
@@ -28,9 +28,10 @@ export var PropertyEditorValueType = /*@__PURE__*/ (function (PropertyEditorValu
|
|
|
28
28
|
PropertyEditorValueType[PropertyEditorValueType["TimeSpan"] = 19] = "TimeSpan";
|
|
29
29
|
PropertyEditorValueType[PropertyEditorValueType["Button"] = 20] = "Button";
|
|
30
30
|
PropertyEditorValueType[PropertyEditorValueType["Slider"] = 21] = "Slider";
|
|
31
|
+
PropertyEditorValueType[PropertyEditorValueType["TemplateRef"] = 22] = "TemplateRef";
|
|
31
32
|
return PropertyEditorValueType;
|
|
32
33
|
})({});
|
|
33
34
|
/**
|
|
34
35
|
* @hidden
|
|
35
36
|
*/
|
|
36
|
-
export var PropertyEditorValueType_$type = /*@__PURE__*/ markEnum('PropertyEditorValueType', 'Unhandled,0|Number,1|StringValue,2|Date,3|Brush,4|Color,5|BrushCollection,6|Boolean:boolean1,7|SubType,8|Collection,9|Array,10|Point,11|Size,12|Rect,13|ColorCollection,14|EnumValue,15|MethodRef,16|EventRef,17|DataRef,18|TimeSpan,19|Button,20|Slider,21');
|
|
37
|
+
export var PropertyEditorValueType_$type = /*@__PURE__*/ markEnum('PropertyEditorValueType', 'Unhandled,0|Number,1|StringValue,2|Date,3|Brush,4|Color,5|BrushCollection,6|Boolean:boolean1,7|SubType,8|Collection,9|Array,10|Point,11|Size,12|Rect,13|ColorCollection,14|EnumValue,15|MethodRef,16|EventRef,17|DataRef,18|TimeSpan,19|Button,20|Slider,21|TemplateRef,22');
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
|
+
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.
|
|
6
|
+
*/
|
|
7
|
+
export { ToolActionLabel } from "./ToolPanelView_combined";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
|
+
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.
|
|
6
|
+
*/
|
|
7
|
+
export { ToolActionRadio } from "./ToolPanelView_combined";
|