igniteui-webcomponents-layouts 7.0.0 → 7.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/igniteui-webcomponents-layouts.umd.js +5037 -4563
- package/bundles/igniteui-webcomponents-layouts.umd.min.js +1 -1
- package/esm2015/lib/ComboEditorView_combined.js +27 -27
- package/esm2015/lib/ExpansionPanelView_combined.js +7 -7
- package/esm2015/lib/GridColumnProviderOnAttachingOverrideEventArgs.js +18 -0
- package/esm2015/lib/ListPanelView_combined.js +1 -1
- package/esm2015/lib/NativeUILayoutFactory_combined.js +4314 -4089
- package/esm2015/lib/PropertyEditorPanelView_combined.js +26 -26
- package/esm2015/lib/TooltipTextPresenter.js +2 -2
- package/esm2015/lib/igc-tool-action-button-component.js +6 -6
- package/esm2015/lib/igc-tool-action-button-pair-component.js +103 -103
- package/esm2015/lib/igc-tool-action-checkbox-component.js +27 -27
- package/esm2015/lib/igc-tool-action-checkbox-list-component.js +97 -17
- package/esm2015/lib/igc-tool-action-color-editor-component.js +3 -3
- package/esm2015/lib/igc-tool-action-combo-component.js +8 -8
- package/esm2015/lib/igc-tool-action-component.js +94 -80
- package/esm2015/lib/igc-tool-action-field-selector-component.js +45 -45
- package/esm2015/lib/igc-tool-action-group-header-component.js +6 -6
- package/esm2015/lib/igc-tool-action-icon-button-component.js +32 -32
- package/esm2015/lib/igc-tool-action-icon-menu-component.js +9 -9
- package/esm2015/lib/igc-tool-action-number-input-component.js +3 -3
- package/esm2015/lib/igc-tool-action-radio-component.js +32 -32
- package/esm2015/lib/igc-tool-action-separator-component.js +6 -6
- package/esm2015/lib/igc-tool-action-sub-panel-component.js +3 -3
- package/esm2015/lib/igc-tool-action-text-input-component.js +2 -2
- package/esm2015/lib/igc-tool-panel-component.js +156 -142
- package/esm2015/lib/igc-toolbar-component.js +99 -87
- package/esm2015/public_api.js +1 -0
- package/esm5/lib/ComboEditorView_combined.js +27 -27
- package/esm5/lib/ExpansionPanelView_combined.js +7 -7
- package/esm5/lib/GridColumnProviderOnAttachingOverrideEventArgs.js +21 -0
- package/esm5/lib/ListPanelView_combined.js +1 -1
- package/esm5/lib/NativeUILayoutFactory_combined.js +4171 -3886
- package/esm5/lib/PropertyEditorPanelView_combined.js +26 -26
- package/esm5/lib/TooltipTextPresenter.js +2 -2
- package/esm5/lib/igc-tool-action-button-component.js +6 -6
- package/esm5/lib/igc-tool-action-button-pair-component.js +103 -103
- package/esm5/lib/igc-tool-action-checkbox-component.js +27 -27
- package/esm5/lib/igc-tool-action-checkbox-list-component.js +129 -17
- package/esm5/lib/igc-tool-action-color-editor-component.js +3 -3
- package/esm5/lib/igc-tool-action-combo-component.js +8 -8
- package/esm5/lib/igc-tool-action-component.js +102 -80
- package/esm5/lib/igc-tool-action-field-selector-component.js +45 -45
- package/esm5/lib/igc-tool-action-group-header-component.js +6 -6
- package/esm5/lib/igc-tool-action-icon-button-component.js +32 -32
- package/esm5/lib/igc-tool-action-icon-menu-component.js +9 -9
- package/esm5/lib/igc-tool-action-number-input-component.js +3 -3
- package/esm5/lib/igc-tool-action-radio-component.js +32 -32
- package/esm5/lib/igc-tool-action-separator-component.js +6 -6
- package/esm5/lib/igc-tool-action-sub-panel-component.js +3 -3
- package/esm5/lib/igc-tool-action-text-input-component.js +2 -2
- package/esm5/lib/igc-tool-panel-component.js +164 -142
- package/esm5/lib/igc-toolbar-component.js +103 -91
- package/esm5/public_api.js +1 -0
- package/fesm2015/igniteui-webcomponents-layouts.js +5112 -4750
- package/fesm5/igniteui-webcomponents-layouts.js +5037 -4564
- package/lib/GridColumnProviderOnAttachingOverrideEventArgs.d.ts +8 -0
- package/lib/NativeUILayoutFactory_combined.d.ts +972 -935
- package/lib/igc-tool-action-checkbox-list-component.d.ts +40 -0
- package/lib/igc-tool-action-component.d.ts +4 -0
- package/lib/igc-tool-panel-component.d.ts +4 -0
- package/lib/igc-toolbar-component.d.ts +7 -1
- package/package.json +3 -3
- package/public_api.d.ts +1 -0
|
@@ -352,101 +352,101 @@ let IgcToolbarComponent = /*@__PURE__*/ (() => {
|
|
|
352
352
|
* Gets or sets the color to use for the background of the component.
|
|
353
353
|
*/
|
|
354
354
|
get backgroundColor() {
|
|
355
|
-
return brushToString(this.i.
|
|
355
|
+
return brushToString(this.i.fs);
|
|
356
356
|
}
|
|
357
357
|
set backgroundColor(v) {
|
|
358
|
-
this.i.
|
|
359
|
-
this._a("backgroundColor", brushToString(this.i.
|
|
358
|
+
this.i.fs = stringToBrush(v);
|
|
359
|
+
this._a("backgroundColor", brushToString(this.i.fs));
|
|
360
360
|
}
|
|
361
361
|
/**
|
|
362
362
|
* Gets or sets the background color for submenus.
|
|
363
363
|
*/
|
|
364
364
|
get submenuBackgroundColor() {
|
|
365
|
-
return brushToString(this.i.
|
|
365
|
+
return brushToString(this.i.f6);
|
|
366
366
|
}
|
|
367
367
|
set submenuBackgroundColor(v) {
|
|
368
|
-
this.i.
|
|
369
|
-
this._a("submenuBackgroundColor", brushToString(this.i.
|
|
368
|
+
this.i.f6 = stringToBrush(v);
|
|
369
|
+
this._a("submenuBackgroundColor", brushToString(this.i.f6));
|
|
370
370
|
}
|
|
371
371
|
/**
|
|
372
372
|
* Gets or sets the group header background color.
|
|
373
373
|
*/
|
|
374
374
|
get groupHeaderBackgroundColor() {
|
|
375
|
-
return brushToString(this.i.
|
|
375
|
+
return brushToString(this.i.fx);
|
|
376
376
|
}
|
|
377
377
|
set groupHeaderBackgroundColor(v) {
|
|
378
|
-
this.i.
|
|
379
|
-
this._a("groupHeaderBackgroundColor", brushToString(this.i.
|
|
378
|
+
this.i.fx = stringToBrush(v);
|
|
379
|
+
this._a("groupHeaderBackgroundColor", brushToString(this.i.fx));
|
|
380
380
|
}
|
|
381
381
|
/**
|
|
382
382
|
* Gets or sets the separator background color.
|
|
383
383
|
*/
|
|
384
384
|
get separatorBackgroundColor() {
|
|
385
|
-
return brushToString(this.i.
|
|
385
|
+
return brushToString(this.i.f5);
|
|
386
386
|
}
|
|
387
387
|
set separatorBackgroundColor(v) {
|
|
388
|
-
this.i.
|
|
389
|
-
this._a("separatorBackgroundColor", brushToString(this.i.
|
|
388
|
+
this.i.f5 = stringToBrush(v);
|
|
389
|
+
this._a("separatorBackgroundColor", brushToString(this.i.f5));
|
|
390
390
|
}
|
|
391
391
|
/**
|
|
392
392
|
* Gets or sets the hover background color.
|
|
393
393
|
*/
|
|
394
394
|
get hoverBackgroundColor() {
|
|
395
|
-
return brushToString(this.i.
|
|
395
|
+
return brushToString(this.i.f1);
|
|
396
396
|
}
|
|
397
397
|
set hoverBackgroundColor(v) {
|
|
398
|
-
this.i.
|
|
399
|
-
this._a("hoverBackgroundColor", brushToString(this.i.
|
|
398
|
+
this.i.f1 = stringToBrush(v);
|
|
399
|
+
this._a("hoverBackgroundColor", brushToString(this.i.f1));
|
|
400
400
|
}
|
|
401
401
|
/**
|
|
402
402
|
* Gets or sets the color to use for the text of the component.
|
|
403
403
|
*/
|
|
404
404
|
get textColor() {
|
|
405
|
-
return brushToString(this.i.
|
|
405
|
+
return brushToString(this.i.f8);
|
|
406
406
|
}
|
|
407
407
|
set textColor(v) {
|
|
408
|
-
this.i.
|
|
409
|
-
this._a("textColor", brushToString(this.i.
|
|
408
|
+
this.i.f8 = stringToBrush(v);
|
|
409
|
+
this._a("textColor", brushToString(this.i.f8));
|
|
410
410
|
}
|
|
411
411
|
/**
|
|
412
412
|
* Gets or sets the color to use for the text in disabled tool actions.
|
|
413
413
|
*/
|
|
414
414
|
get disabledTextColor() {
|
|
415
|
-
return brushToString(this.i.
|
|
415
|
+
return brushToString(this.i.fv);
|
|
416
416
|
}
|
|
417
417
|
set disabledTextColor(v) {
|
|
418
|
-
this.i.
|
|
419
|
-
this._a("disabledTextColor", brushToString(this.i.
|
|
418
|
+
this.i.fv = stringToBrush(v);
|
|
419
|
+
this._a("disabledTextColor", brushToString(this.i.fv));
|
|
420
420
|
}
|
|
421
421
|
/**
|
|
422
422
|
* Gets or sets the text color for group header tool actions.
|
|
423
423
|
*/
|
|
424
424
|
get groupHeaderTextColor() {
|
|
425
|
-
return brushToString(this.i.
|
|
425
|
+
return brushToString(this.i.fz);
|
|
426
426
|
}
|
|
427
427
|
set groupHeaderTextColor(v) {
|
|
428
|
-
this.i.
|
|
429
|
-
this._a("groupHeaderTextColor", brushToString(this.i.
|
|
428
|
+
this.i.fz = stringToBrush(v);
|
|
429
|
+
this._a("groupHeaderTextColor", brushToString(this.i.fz));
|
|
430
430
|
}
|
|
431
431
|
/**
|
|
432
432
|
* Gets or sets the tooltip text color.
|
|
433
433
|
*/
|
|
434
434
|
get toolTipTextColor() {
|
|
435
|
-
return brushToString(this.i.
|
|
435
|
+
return brushToString(this.i.ga);
|
|
436
436
|
}
|
|
437
437
|
set toolTipTextColor(v) {
|
|
438
|
-
this.i.
|
|
439
|
-
this._a("toolTipTextColor", brushToString(this.i.
|
|
438
|
+
this.i.ga = stringToBrush(v);
|
|
439
|
+
this._a("toolTipTextColor", brushToString(this.i.ga));
|
|
440
440
|
}
|
|
441
441
|
/**
|
|
442
442
|
* Gets or sets the tooltip background color.
|
|
443
443
|
*/
|
|
444
444
|
get toolTipBackgroundColor() {
|
|
445
|
-
return brushToString(this.i.
|
|
445
|
+
return brushToString(this.i.f9);
|
|
446
446
|
}
|
|
447
447
|
set toolTipBackgroundColor(v) {
|
|
448
|
-
this.i.
|
|
449
|
-
this._a("toolTipBackgroundColor", brushToString(this.i.
|
|
448
|
+
this.i.f9 = stringToBrush(v);
|
|
449
|
+
this._a("toolTipBackgroundColor", brushToString(this.i.f9));
|
|
450
450
|
}
|
|
451
451
|
/**
|
|
452
452
|
* Gets or sets the tooltip corner radius.
|
|
@@ -472,21 +472,21 @@ let IgcToolbarComponent = /*@__PURE__*/ (() => {
|
|
|
472
472
|
* Gets or sets the fill color of icons in the ToolPanel.
|
|
473
473
|
*/
|
|
474
474
|
get iconFill() {
|
|
475
|
-
return brushToString(this.i.
|
|
475
|
+
return brushToString(this.i.f2);
|
|
476
476
|
}
|
|
477
477
|
set iconFill(v) {
|
|
478
|
-
this.i.
|
|
479
|
-
this._a("iconFill", brushToString(this.i.
|
|
478
|
+
this.i.f2 = stringToBrush(v);
|
|
479
|
+
this._a("iconFill", brushToString(this.i.f2));
|
|
480
480
|
}
|
|
481
481
|
/**
|
|
482
482
|
* Gets or sets the stroke color of icons in the ToolPanel.
|
|
483
483
|
*/
|
|
484
484
|
get iconStroke() {
|
|
485
|
-
return brushToString(this.i.
|
|
485
|
+
return brushToString(this.i.f3);
|
|
486
486
|
}
|
|
487
487
|
set iconStroke(v) {
|
|
488
|
-
this.i.
|
|
489
|
-
this._a("iconStroke", brushToString(this.i.
|
|
488
|
+
this.i.f3 = stringToBrush(v);
|
|
489
|
+
this._a("iconStroke", brushToString(this.i.f3));
|
|
490
490
|
}
|
|
491
491
|
/**
|
|
492
492
|
* Gets or sets the text style.
|
|
@@ -660,61 +660,68 @@ let IgcToolbarComponent = /*@__PURE__*/ (() => {
|
|
|
660
660
|
this._a("highlightRadius", this.i.bf);
|
|
661
661
|
}
|
|
662
662
|
get highlightColor() {
|
|
663
|
-
return brushToString(this.i.
|
|
663
|
+
return brushToString(this.i.f0);
|
|
664
664
|
}
|
|
665
665
|
set highlightColor(v) {
|
|
666
|
-
this.i.
|
|
667
|
-
this._a("highlightColor", brushToString(this.i.
|
|
666
|
+
this.i.f0 = stringToBrush(v);
|
|
667
|
+
this._a("highlightColor", brushToString(this.i.f0));
|
|
668
|
+
}
|
|
669
|
+
get accentColor() {
|
|
670
|
+
return brushToString(this.i.fr);
|
|
671
|
+
}
|
|
672
|
+
set accentColor(v) {
|
|
673
|
+
this.i.fr = stringToBrush(v);
|
|
674
|
+
this._a("accentColor", brushToString(this.i.fr));
|
|
668
675
|
}
|
|
669
676
|
/**
|
|
670
677
|
* Gets or sets the stroke color for all icon menu dropdown arrows.
|
|
671
678
|
*/
|
|
672
679
|
get menuArrowStroke() {
|
|
673
|
-
return brushToString(this.i.
|
|
680
|
+
return brushToString(this.i.f4);
|
|
674
681
|
}
|
|
675
682
|
set menuArrowStroke(v) {
|
|
676
|
-
this.i.
|
|
677
|
-
this._a("menuArrowStroke", brushToString(this.i.
|
|
683
|
+
this.i.f4 = stringToBrush(v);
|
|
684
|
+
this._a("menuArrowStroke", brushToString(this.i.f4));
|
|
678
685
|
}
|
|
679
686
|
/**
|
|
680
687
|
* Gets or sets the background color of the radio when in the unchecked state.
|
|
681
688
|
*/
|
|
682
689
|
get uncheckedBackgroundColor() {
|
|
683
|
-
return brushToString(this.i.
|
|
690
|
+
return brushToString(this.i.gb);
|
|
684
691
|
}
|
|
685
692
|
set uncheckedBackgroundColor(v) {
|
|
686
|
-
this.i.
|
|
687
|
-
this._a("uncheckedBackgroundColor", brushToString(this.i.
|
|
693
|
+
this.i.gb = stringToBrush(v);
|
|
694
|
+
this._a("uncheckedBackgroundColor", brushToString(this.i.gb));
|
|
688
695
|
}
|
|
689
696
|
/**
|
|
690
697
|
* Gets or sets the background color of the radio when in the checked state.
|
|
691
698
|
*/
|
|
692
699
|
get checkedBackgroundColor() {
|
|
693
|
-
return brushToString(this.i.
|
|
700
|
+
return brushToString(this.i.ft);
|
|
694
701
|
}
|
|
695
702
|
set checkedBackgroundColor(v) {
|
|
696
|
-
this.i.
|
|
697
|
-
this._a("checkedBackgroundColor", brushToString(this.i.
|
|
703
|
+
this.i.ft = stringToBrush(v);
|
|
704
|
+
this._a("checkedBackgroundColor", brushToString(this.i.ft));
|
|
698
705
|
}
|
|
699
706
|
/**
|
|
700
707
|
* Gets or sets the border color of the radio when in the unchecked state.
|
|
701
708
|
*/
|
|
702
709
|
get uncheckedBorderColor() {
|
|
703
|
-
return brushToString(this.i.
|
|
710
|
+
return brushToString(this.i.gc);
|
|
704
711
|
}
|
|
705
712
|
set uncheckedBorderColor(v) {
|
|
706
|
-
this.i.
|
|
707
|
-
this._a("uncheckedBorderColor", brushToString(this.i.
|
|
713
|
+
this.i.gc = stringToBrush(v);
|
|
714
|
+
this._a("uncheckedBorderColor", brushToString(this.i.gc));
|
|
708
715
|
}
|
|
709
716
|
/**
|
|
710
717
|
* Gets or sets the border color of the radio when in the checked state.
|
|
711
718
|
*/
|
|
712
719
|
get checkedBorderColor() {
|
|
713
|
-
return brushToString(this.i.
|
|
720
|
+
return brushToString(this.i.fu);
|
|
714
721
|
}
|
|
715
722
|
set checkedBorderColor(v) {
|
|
716
|
-
this.i.
|
|
717
|
-
this._a("checkedBorderColor", brushToString(this.i.
|
|
723
|
+
this.i.fu = stringToBrush(v);
|
|
724
|
+
this._a("checkedBorderColor", brushToString(this.i.fu));
|
|
718
725
|
}
|
|
719
726
|
/**
|
|
720
727
|
* Gets or sets the row height that should be used.
|
|
@@ -730,21 +737,21 @@ let IgcToolbarComponent = /*@__PURE__*/ (() => {
|
|
|
730
737
|
* Gets or sets the text color for subtitles.
|
|
731
738
|
*/
|
|
732
739
|
get subtitleTextColor() {
|
|
733
|
-
return brushToString(this.i.
|
|
740
|
+
return brushToString(this.i.f7);
|
|
734
741
|
}
|
|
735
742
|
set subtitleTextColor(v) {
|
|
736
|
-
this.i.
|
|
737
|
-
this._a("subtitleTextColor", brushToString(this.i.
|
|
743
|
+
this.i.f7 = stringToBrush(v);
|
|
744
|
+
this._a("subtitleTextColor", brushToString(this.i.f7));
|
|
738
745
|
}
|
|
739
746
|
/**
|
|
740
747
|
* Gets or sets the text color for group header subtitles.
|
|
741
748
|
*/
|
|
742
749
|
get groupHeaderSubtitleTextColor() {
|
|
743
|
-
return brushToString(this.i.
|
|
750
|
+
return brushToString(this.i.fy);
|
|
744
751
|
}
|
|
745
752
|
set groupHeaderSubtitleTextColor(v) {
|
|
746
|
-
this.i.
|
|
747
|
-
this._a("groupHeaderSubtitleTextColor", brushToString(this.i.
|
|
753
|
+
this.i.fy = stringToBrush(v);
|
|
754
|
+
this._a("groupHeaderSubtitleTextColor", brushToString(this.i.fy));
|
|
748
755
|
}
|
|
749
756
|
/**
|
|
750
757
|
* Gets or sets the dropdown delay time in milliseconds.
|
|
@@ -776,9 +783,6 @@ let IgcToolbarComponent = /*@__PURE__*/ (() => {
|
|
|
776
783
|
this.i.v = ensureEnum(ScrollbarStyle_$type, v);
|
|
777
784
|
this._a("scrollbarStyle", enumToString(ScrollbarStyle_$type, this.i.v));
|
|
778
785
|
}
|
|
779
|
-
get isOpen() {
|
|
780
|
-
return this.i.av;
|
|
781
|
-
}
|
|
782
786
|
findByName(name) {
|
|
783
787
|
if (this.findEphemera) {
|
|
784
788
|
if (name && name.indexOf("@@e:") == 0) {
|
|
@@ -850,14 +854,22 @@ let IgcToolbarComponent = /*@__PURE__*/ (() => {
|
|
|
850
854
|
this._inStyling = false;
|
|
851
855
|
}
|
|
852
856
|
flushRefresh() {
|
|
853
|
-
this.i.
|
|
857
|
+
this.i.d3();
|
|
858
|
+
}
|
|
859
|
+
/**
|
|
860
|
+
* Is a dropdown menu or tooltip currently open.
|
|
861
|
+
|
|
862
|
+
*/
|
|
863
|
+
isOpen() {
|
|
864
|
+
let iv = this.i.av();
|
|
865
|
+
return (iv);
|
|
854
866
|
}
|
|
855
867
|
/**
|
|
856
868
|
* Get the desired size the toolbar wants to be.
|
|
857
869
|
|
|
858
870
|
*/
|
|
859
871
|
getDesiredSize() {
|
|
860
|
-
let iv = this.i.
|
|
872
|
+
let iv = this.i.ge();
|
|
861
873
|
return fromSize(iv);
|
|
862
874
|
}
|
|
863
875
|
/**
|
|
@@ -865,111 +877,111 @@ let IgcToolbarComponent = /*@__PURE__*/ (() => {
|
|
|
865
877
|
|
|
866
878
|
*/
|
|
867
879
|
closeSubmenus() {
|
|
868
|
-
this.i.
|
|
880
|
+
this.i.d0();
|
|
869
881
|
}
|
|
870
882
|
onCommandStateChanged(id, type, value) {
|
|
871
883
|
this.i.onCommandStateChanged(id, ensureEnum(ToolCommandStateType_$type, type), value);
|
|
872
884
|
}
|
|
873
885
|
registerIconFromText(iconCollection, iconName, iconText) {
|
|
874
|
-
this.i.
|
|
886
|
+
this.i.ek(iconCollection, iconName, iconText);
|
|
875
887
|
}
|
|
876
888
|
getIconFromCache(iconCollection, iconName) {
|
|
877
|
-
let iv = this.i.
|
|
889
|
+
let iv = this.i.cr(iconCollection, iconName);
|
|
878
890
|
return (iv);
|
|
879
891
|
}
|
|
880
892
|
registerMultiPathSVG(iconCollection, iconName, multiPathSVG) {
|
|
881
|
-
this.i.
|
|
893
|
+
this.i.em(iconCollection, iconName, multiPathSVG);
|
|
882
894
|
}
|
|
883
895
|
getMultiPathSVGFromCache(iconCollection, iconName) {
|
|
884
896
|
let iv = this.i.a(iconCollection, iconName);
|
|
885
897
|
return (iv);
|
|
886
898
|
}
|
|
887
899
|
registerIconFromDataURL(iconCollection, iconName, dataURL) {
|
|
888
|
-
this.i.
|
|
900
|
+
this.i.ej(iconCollection, iconName, dataURL);
|
|
889
901
|
}
|
|
890
902
|
getDataURLFromCache(iconCollection, iconName) {
|
|
891
|
-
let iv = this.i.
|
|
903
|
+
let iv = this.i.cq(iconCollection, iconName);
|
|
892
904
|
return (iv);
|
|
893
905
|
}
|
|
894
906
|
registerIconSource(iconCollection, iconName, source) {
|
|
895
|
-
this.i.
|
|
907
|
+
this.i.el(iconCollection, iconName, source);
|
|
896
908
|
}
|
|
897
909
|
getIconSource(iconCollection, iconName) {
|
|
898
910
|
let iv = this.i.b8(iconCollection, iconName);
|
|
899
911
|
return (iv);
|
|
900
912
|
}
|
|
901
913
|
setBrushContextItem(key, value) {
|
|
902
|
-
this.i.
|
|
914
|
+
this.i.ep(key, stringToBrush(value));
|
|
903
915
|
}
|
|
904
916
|
getBrushContextItem(key) {
|
|
905
|
-
let iv = this.i.
|
|
917
|
+
let iv = this.i.fw(key);
|
|
906
918
|
return brushToString(iv);
|
|
907
919
|
}
|
|
908
920
|
setBrushCollectionContextItem(key, value) {
|
|
909
|
-
this.i.
|
|
921
|
+
this.i.eo(key, toBrushCollection(value));
|
|
910
922
|
}
|
|
911
923
|
getBrushCollectionContextItem(key) {
|
|
912
924
|
let iv = this.i.b(key);
|
|
913
925
|
return fromBrushCollection(iv);
|
|
914
926
|
}
|
|
915
927
|
setDoubleContextItem(key, value) {
|
|
916
|
-
this.i.
|
|
928
|
+
this.i.et(key, value);
|
|
917
929
|
}
|
|
918
930
|
getDoubleContextItem(key) {
|
|
919
931
|
let iv = this.i.bd(key);
|
|
920
932
|
return (iv);
|
|
921
933
|
}
|
|
922
934
|
setIntContextItem(key, value) {
|
|
923
|
-
this.i.
|
|
935
|
+
this.i.e0(key, value);
|
|
924
936
|
}
|
|
925
937
|
getExternalDoubleContextItem(key) {
|
|
926
938
|
let iv = this.i.be(key);
|
|
927
939
|
return (iv);
|
|
928
940
|
}
|
|
929
941
|
setExternalDoubleContextItem(key, value) {
|
|
930
|
-
this.i.
|
|
942
|
+
this.i.ey(key, value);
|
|
931
943
|
}
|
|
932
944
|
getIntContextItem(key) {
|
|
933
945
|
let iv = this.i.bx(key);
|
|
934
946
|
return (iv);
|
|
935
947
|
}
|
|
936
948
|
setExternalIntContextItem(key, value) {
|
|
937
|
-
this.i.
|
|
949
|
+
this.i.ez(key, value);
|
|
938
950
|
}
|
|
939
951
|
getExternalIntContextItem(key) {
|
|
940
952
|
let iv = this.i.bw(key);
|
|
941
953
|
return (iv);
|
|
942
954
|
}
|
|
943
955
|
setStringContextItem(key, value) {
|
|
944
|
-
this.i.
|
|
956
|
+
this.i.e1(key, value);
|
|
945
957
|
}
|
|
946
958
|
getStringContextItem(key) {
|
|
947
|
-
let iv = this.i.
|
|
959
|
+
let iv = this.i.cs(key);
|
|
948
960
|
return (iv);
|
|
949
961
|
}
|
|
950
962
|
setBoolContextItem(key, value) {
|
|
951
|
-
this.i.
|
|
963
|
+
this.i.en(key, value);
|
|
952
964
|
}
|
|
953
965
|
getBoolContextItem(key) {
|
|
954
966
|
let iv = this.i.au(key);
|
|
955
967
|
return (iv);
|
|
956
968
|
}
|
|
957
969
|
setColorContextItem(key, value) {
|
|
958
|
-
this.i.
|
|
970
|
+
this.i.eq(key, stringToColor(value));
|
|
959
971
|
}
|
|
960
972
|
getColorContextItem(key) {
|
|
961
|
-
let iv = this.i.
|
|
973
|
+
let iv = this.i.gd(key);
|
|
962
974
|
return colorToString(iv);
|
|
963
975
|
}
|
|
964
976
|
setDataContextItem(key, value) {
|
|
965
|
-
this.i.
|
|
977
|
+
this.i.es(key, value);
|
|
966
978
|
}
|
|
967
979
|
getDataContextItem(key) {
|
|
968
980
|
let iv = this.i.b3(key);
|
|
969
981
|
return (iv);
|
|
970
982
|
}
|
|
971
983
|
setExternalDataContextItem(key, value) {
|
|
972
|
-
this.i.
|
|
984
|
+
this.i.ex(key, value);
|
|
973
985
|
}
|
|
974
986
|
getExternalDataContextItem(key) {
|
|
975
987
|
let iv = this.i.b7(key);
|
|
@@ -988,7 +1000,7 @@ let IgcToolbarComponent = /*@__PURE__*/ (() => {
|
|
|
988
1000
|
|
|
989
1001
|
*/
|
|
990
1002
|
exportSerializedVisualData() {
|
|
991
|
-
let iv = this.i.
|
|
1003
|
+
let iv = this.i.cp();
|
|
992
1004
|
return (iv);
|
|
993
1005
|
}
|
|
994
1006
|
/**
|
package/esm2015/public_api.js
CHANGED
|
@@ -73,6 +73,7 @@ export * from './lib/ToolActionCheckboxList';
|
|
|
73
73
|
export * from './lib/igc-tool-action-checkbox-list-component';
|
|
74
74
|
export * from './lib/igc-tool-action-checkbox-list-module';
|
|
75
75
|
export * from './lib/ToolActionCheckboxListIndexType';
|
|
76
|
+
export * from './lib/GridColumnProviderOnAttachingOverrideEventArgs';
|
|
76
77
|
export * from './lib/ToolActionFieldSelectorType';
|
|
77
78
|
export * from './lib/ToolActionFieldSelectorEventType';
|
|
78
79
|
export * from './lib/ToolActionFieldSelectorAggregation';
|
|
@@ -242,22 +242,22 @@ export var ComboEditor = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
242
242
|
function ComboEditor() {
|
|
243
243
|
var _this = _super.call(this) || this;
|
|
244
244
|
_this.d0 = null;
|
|
245
|
-
_this.kl = XInputGroup.m.
|
|
246
|
-
_this.km = XInputGroup.m.
|
|
245
|
+
_this.kl = XInputGroup.m.af(ComboEditor.ag, enumGetBox(InputGroupDisplayType_$type, 0), "BackgroundColor");
|
|
246
|
+
_this.km = XInputGroup.m.af(ComboEditor.ag, enumGetBox(InputGroupDisplayType_$type, 0), "BorderColor");
|
|
247
247
|
_this.c8 = XInputGroup.m.i(ComboEditor.ag, enumGetBox(InputGroupDisplayType_$type, 0), "BorderWidth");
|
|
248
|
-
_this.k6 = XInputGroup.m.
|
|
249
|
-
_this.ji = XInputGroup.m.
|
|
250
|
-
_this.kn = XInputGroup.m.
|
|
248
|
+
_this.k6 = XInputGroup.m.ak(ComboEditor.ag, enumGetBox(InputGroupDisplayType_$type, 0), "ContentPadding");
|
|
249
|
+
_this.ji = XInputGroup.m.z(ComboEditor.ag, enumGetBox(InputGroupDisplayType_$type, 0), "CornerRadius");
|
|
250
|
+
_this.kn = XInputGroup.m.af(ComboEditor.ag, enumGetBox(InputGroupDisplayType_$type, 0), "FocusBorderColor");
|
|
251
251
|
_this.c9 = XInputGroup.m.i(ComboEditor.ag, enumGetBox(InputGroupDisplayType_$type, 0), "FocusBorderWidth");
|
|
252
|
-
_this.ko = XInputGroup.m.
|
|
252
|
+
_this.ko = XInputGroup.m.af(ComboEditor.ag, enumGetBox(InputGroupDisplayType_$type, 0), "FocusUnderlineColor");
|
|
253
253
|
_this.da = XInputGroup.m.i(ComboEditor.ag, enumGetBox(InputGroupDisplayType_$type, 0), "FocusUnderlineOpacity");
|
|
254
254
|
_this.db = XInputGroup.m.i(ComboEditor.ag, enumGetBox(InputGroupDisplayType_$type, 0), "FocusUnderlineRippleOpacity");
|
|
255
|
-
_this.kp = XInputGroup.m.
|
|
255
|
+
_this.kp = XInputGroup.m.af(ComboEditor.ag, enumGetBox(InputGroupDisplayType_$type, 0), "HoverUnderlineColor");
|
|
256
256
|
_this.dc = XInputGroup.m.i(ComboEditor.ag, enumGetBox(InputGroupDisplayType_$type, 0), "HoverUnderlineOpacity");
|
|
257
257
|
_this.dd = XInputGroup.m.i(ComboEditor.ag, enumGetBox(InputGroupDisplayType_$type, 0), "HoverUnderlineWidth");
|
|
258
|
-
_this.kq = XInputGroup.m.
|
|
258
|
+
_this.kq = XInputGroup.m.af(ComboEditor.ag, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineColor");
|
|
259
259
|
_this.de = XInputGroup.m.i(ComboEditor.ag, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineOpacity");
|
|
260
|
-
_this.kr = XInputGroup.m.
|
|
260
|
+
_this.kr = XInputGroup.m.af(ComboEditor.ag, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineRippleColor");
|
|
261
261
|
_this.df = XInputGroup.m.i(ComboEditor.ag, enumGetBox(InputGroupDisplayType_$type, 0), "FocusUnderlineRippleOpacity");
|
|
262
262
|
_this.dg = XInputGroup.m.i(ComboEditor.ag, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineRippleWidth");
|
|
263
263
|
_this.dh = XInputGroup.m.i(ComboEditor.ag, enumGetBox(InputGroupDisplayType_$type, 0), "HoverUnderlineWidth");
|
|
@@ -267,33 +267,33 @@ export var ComboEditor = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
267
267
|
_this.bl = false;
|
|
268
268
|
_this.c = null;
|
|
269
269
|
_this.ju = null;
|
|
270
|
-
_this.jj = ThemeResolver.
|
|
270
|
+
_this.jj = ThemeResolver.ah(ComboEditor.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "BackgroundColor");
|
|
271
271
|
_this.af = 0;
|
|
272
272
|
_this.ae = 1;
|
|
273
273
|
_this.jv = null;
|
|
274
|
-
_this.jk = ThemeResolver.
|
|
274
|
+
_this.jk = ThemeResolver.ah(ComboEditor.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "BorderColor");
|
|
275
275
|
_this.cm = NaN;
|
|
276
276
|
_this.cc = ThemeResolver.k(ComboEditor.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "BorderWidth");
|
|
277
277
|
_this.k3 = new Thickness(1, NaN, NaN, NaN, NaN);
|
|
278
|
-
_this.k2 = ThemeResolver.
|
|
278
|
+
_this.k2 = ThemeResolver.am(ComboEditor.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "ContentPadding");
|
|
279
279
|
_this.jf = new CornerRadius(1, NaN, NaN, NaN, NaN);
|
|
280
|
-
_this.je = ThemeResolver.
|
|
280
|
+
_this.je = ThemeResolver.ab(ComboEditor.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "CornerRadius");
|
|
281
281
|
_this.b = null;
|
|
282
282
|
_this.al = 0;
|
|
283
283
|
_this.ak = 0;
|
|
284
284
|
_this.bw = true;
|
|
285
285
|
_this.jw = null;
|
|
286
|
-
_this.jl = ThemeResolver.
|
|
286
|
+
_this.jl = ThemeResolver.ah(ComboEditor.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "FocusBorderColor");
|
|
287
287
|
_this.cn = NaN;
|
|
288
288
|
_this.cd = ThemeResolver.k(ComboEditor.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "FocusBorderWidth");
|
|
289
289
|
_this.jx = null;
|
|
290
|
-
_this.jm = ThemeResolver.
|
|
290
|
+
_this.jm = ThemeResolver.ah(ComboEditor.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "FocusUnderlineColor");
|
|
291
291
|
_this.co = NaN;
|
|
292
292
|
_this.ce = ThemeResolver.k(ComboEditor.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "FocusUnderlineOpacity");
|
|
293
293
|
_this.cp = NaN;
|
|
294
294
|
_this.cf = ThemeResolver.k(ComboEditor.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "FocusUnderlineRippleOpacity");
|
|
295
295
|
_this.jy = null;
|
|
296
|
-
_this.jn = ThemeResolver.
|
|
296
|
+
_this.jn = ThemeResolver.ah(ComboEditor.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "HoverUnderlineColor");
|
|
297
297
|
_this.cq = NaN;
|
|
298
298
|
_this.cg = ThemeResolver.k(ComboEditor.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "HoverUnderlineOpacity");
|
|
299
299
|
_this.cr = NaN;
|
|
@@ -319,11 +319,11 @@ export var ComboEditor = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
319
319
|
_this.au = null;
|
|
320
320
|
_this.ar = null;
|
|
321
321
|
_this.j3 = null;
|
|
322
|
-
_this.js = ThemeResolver.
|
|
322
|
+
_this.js = ThemeResolver.ah(ComboEditor.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineColor");
|
|
323
323
|
_this.cs = NaN;
|
|
324
324
|
_this.ci = ThemeResolver.k(ComboEditor.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineOpacity");
|
|
325
325
|
_this.j4 = null;
|
|
326
|
-
_this.jt = ThemeResolver.
|
|
326
|
+
_this.jt = ThemeResolver.ah(ComboEditor.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineRippleColor");
|
|
327
327
|
_this.ct = NaN;
|
|
328
328
|
_this.cj = ThemeResolver.k(ComboEditor.ag, XInputGroup.m, enumGetBox(InputGroupDisplayType_$type, 0), "UnderlineRippleOpacity");
|
|
329
329
|
_this.cu = NaN;
|
|
@@ -2092,7 +2092,7 @@ export var ComboEditor = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2092
2092
|
_this.bd.bz = runOn(_this, _this.hk);
|
|
2093
2093
|
_this.g7(_this.bu);
|
|
2094
2094
|
_this.bd.b6 = ComboEditor.d2;
|
|
2095
|
-
_this.bd.cc = BrushUtil.
|
|
2095
|
+
_this.bd.cc = BrushUtil.l(255, 0, 0, 0);
|
|
2096
2096
|
_this.bd.bn = runOn(_this, _this.ic);
|
|
2097
2097
|
});
|
|
2098
2098
|
};
|
|
@@ -2500,11 +2500,11 @@ export var ComboEditor = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2500
2500
|
_this.ad.as = 1;
|
|
2501
2501
|
_this.ad.an = 0;
|
|
2502
2502
|
_this.ad.r = 1;
|
|
2503
|
-
_this.a8.a8 = BrushUtil.
|
|
2504
|
-
_this.ac.h8 = BrushUtil.
|
|
2505
|
-
_this.ac.h2 = BrushUtil.
|
|
2503
|
+
_this.a8.a8 = BrushUtil.l(255, 255, 255, 255);
|
|
2504
|
+
_this.ac.h8 = BrushUtil.l(255, 200, 200, 200);
|
|
2505
|
+
_this.ac.h2 = BrushUtil.l(255, 100, 100, 100);
|
|
2506
2506
|
_this.ac.ef = 32;
|
|
2507
|
-
_this.ad.h6 = BrushUtil.
|
|
2507
|
+
_this.ad.h6 = BrushUtil.l(0, 0, 0, 0);
|
|
2508
2508
|
_this.ad.by = false;
|
|
2509
2509
|
_this.ad.bt = false;
|
|
2510
2510
|
var d = _this.ad;
|
|
@@ -2896,13 +2896,13 @@ export var ComboEditor = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2896
2896
|
};
|
|
2897
2897
|
ComboEditor.$t = markType(ComboEditor, 'ComboEditor', Base.$, [INotifyPropertyChanged_$type]);
|
|
2898
2898
|
ComboEditor.ag = 1;
|
|
2899
|
-
ComboEditor.ki = ThemeResolver.
|
|
2900
|
-
ComboEditor.kk = ThemeResolver.
|
|
2901
|
-
ComboEditor.kj = BrushUtil.
|
|
2899
|
+
ComboEditor.ki = ThemeResolver.aj(ComboEditor.ag, XLabel.de, XLabel.c7);
|
|
2900
|
+
ComboEditor.kk = ThemeResolver.aj(ComboEditor.ag, XLabel.de, XLabel.c7);
|
|
2901
|
+
ComboEditor.kj = BrushUtil.l(255, 255, 255, 255);
|
|
2902
2902
|
ComboEditor.ay = null;
|
|
2903
2903
|
ComboEditor.et = "ActualNoMatchesFoundLabelBackgroundColor";
|
|
2904
2904
|
ComboEditor.az = null;
|
|
2905
|
-
ComboEditor.ks = BrushUtil.
|
|
2905
|
+
ComboEditor.ks = BrushUtil.l(221, 0, 0, 0);
|
|
2906
2906
|
ComboEditor.d2 = "M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z";
|
|
2907
2907
|
ComboEditor.d4 = "M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z";
|
|
2908
2908
|
ComboEditor.d3 = "M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14z";
|
|
@@ -235,7 +235,7 @@ export var ExpansionPanelView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
235
235
|
}
|
|
236
236
|
};
|
|
237
237
|
ExpansionPanelView.$t = markType(ExpansionPanelView, 'ExpansionPanelView');
|
|
238
|
-
ExpansionPanelView.al = BrushUtil.
|
|
238
|
+
ExpansionPanelView.al = BrushUtil.l(255, 33, 150, 243);
|
|
239
239
|
ExpansionPanelView.t = "M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z";
|
|
240
240
|
ExpansionPanelView.s = "M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14z";
|
|
241
241
|
return ExpansionPanelView;
|
|
@@ -796,12 +796,12 @@ export var XExpansionPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
796
796
|
this.n = !this.n;
|
|
797
797
|
};
|
|
798
798
|
XExpansionPanel.$t = markType(XExpansionPanel, 'XExpansionPanel', Base.$, [INotifyPropertyChanged_$type]);
|
|
799
|
-
XExpansionPanel.bs = BrushUtil.
|
|
800
|
-
XExpansionPanel.bt = BrushUtil.
|
|
799
|
+
XExpansionPanel.bs = BrushUtil.l(188, 0, 0, 0);
|
|
800
|
+
XExpansionPanel.bt = BrushUtil.l(188, 0, 0, 0);
|
|
801
801
|
XExpansionPanel.r = 2;
|
|
802
|
-
XExpansionPanel.bu = BrushUtil.
|
|
803
|
-
XExpansionPanel.bw = BrushUtil.
|
|
804
|
-
XExpansionPanel.bv = BrushUtil.
|
|
805
|
-
XExpansionPanel.br = BrushUtil.
|
|
802
|
+
XExpansionPanel.bu = BrushUtil.l(255, 245, 245, 245);
|
|
803
|
+
XExpansionPanel.bw = BrushUtil.l(66, 0, 0, 0);
|
|
804
|
+
XExpansionPanel.bv = BrushUtil.l(30, 0, 0, 0);
|
|
805
|
+
XExpansionPanel.br = BrushUtil.l(20, 0, 0, 0);
|
|
806
806
|
return XExpansionPanel;
|
|
807
807
|
}(Base));
|
|
@@ -0,0 +1,21 @@
|
|
|
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
|
+
import { __extends } from "tslib";
|
|
8
|
+
import { EventArgs, markType } from "igniteui-webcomponents-core";
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
export var GridColumnProviderOnAttachingOverrideEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
13
|
+
__extends(GridColumnProviderOnAttachingOverrideEventArgs, _super);
|
|
14
|
+
function GridColumnProviderOnAttachingOverrideEventArgs() {
|
|
15
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
16
|
+
_this.b = null;
|
|
17
|
+
return _this;
|
|
18
|
+
}
|
|
19
|
+
GridColumnProviderOnAttachingOverrideEventArgs.$t = markType(GridColumnProviderOnAttachingOverrideEventArgs, 'GridColumnProviderOnAttachingOverrideEventArgs', EventArgs.$);
|
|
20
|
+
return GridColumnProviderOnAttachingOverrideEventArgs;
|
|
21
|
+
}(EventArgs));
|
|
@@ -3446,7 +3446,7 @@ export var ListPanel = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3446
3446
|
ListPanel.h4 = null;
|
|
3447
3447
|
ListPanel.ac = 0;
|
|
3448
3448
|
ListPanel.bu = false;
|
|
3449
|
-
ListPanel.h5 = BrushUtil.
|
|
3449
|
+
ListPanel.h5 = BrushUtil.l(255, 24, 29, 31);
|
|
3450
3450
|
return ListPanel;
|
|
3451
3451
|
}(Base));
|
|
3452
3452
|
/**
|