igniteui-angular-core 16.1.0-beta.2 → 16.1.0-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/bundles/igniteui-angular-core.umd.js +206 -127
  2. package/bundles/igniteui-angular-core.umd.min.js +1 -1
  3. package/esm2015/lib/CanvasViewRenderer.js +15 -0
  4. package/esm2015/lib/WebComboChangeEventArgsDetailDescription.js +9 -9
  5. package/esm2015/lib/WebComboChangeEventArgsDetailDescriptionMetadata.js +1 -1
  6. package/esm2015/lib/WebContentPaneDescription.js +69 -53
  7. package/esm2015/lib/WebContentPaneDescriptionMetadata.js +2 -0
  8. package/esm2015/lib/WebDockManagerDescription.js +20 -12
  9. package/esm2015/lib/WebDockManagerDescriptionMetadata.js +1 -0
  10. package/esm2015/lib/WebDockingIndicatorDescription.js +11 -3
  11. package/esm2015/lib/WebDockingIndicatorDescriptionMetadata.js +1 -0
  12. package/esm2015/lib/WebSplitPaneDescription.js +25 -17
  13. package/esm2015/lib/WebSplitPaneDescriptionMetadata.js +1 -0
  14. package/esm2015/lib/WebStepperDescription.js +6 -14
  15. package/esm2015/lib/WebStepperDescriptionMetadata.js +0 -2
  16. package/esm2015/lib/WebTabGroupPaneDescription.js +20 -12
  17. package/esm2015/lib/WebTabGroupPaneDescriptionMetadata.js +1 -0
  18. package/esm5/lib/CanvasViewRenderer.js +15 -0
  19. package/esm5/lib/WebComboChangeEventArgsDetailDescription.js +9 -9
  20. package/esm5/lib/WebComboChangeEventArgsDetailDescriptionMetadata.js +1 -1
  21. package/esm5/lib/WebContentPaneDescription.js +77 -53
  22. package/esm5/lib/WebContentPaneDescriptionMetadata.js +2 -0
  23. package/esm5/lib/WebDockManagerDescription.js +24 -12
  24. package/esm5/lib/WebDockManagerDescriptionMetadata.js +1 -0
  25. package/esm5/lib/WebDockingIndicatorDescription.js +15 -3
  26. package/esm5/lib/WebDockingIndicatorDescriptionMetadata.js +1 -0
  27. package/esm5/lib/WebSplitPaneDescription.js +29 -17
  28. package/esm5/lib/WebSplitPaneDescriptionMetadata.js +1 -0
  29. package/esm5/lib/WebStepperDescription.js +6 -18
  30. package/esm5/lib/WebStepperDescriptionMetadata.js +0 -2
  31. package/esm5/lib/WebTabGroupPaneDescription.js +24 -12
  32. package/esm5/lib/WebTabGroupPaneDescriptionMetadata.js +1 -0
  33. package/fesm2015/igniteui-angular-core.js +182 -123
  34. package/fesm5/igniteui-angular-core.js +206 -127
  35. package/lib/WebComboChangeEventArgsDetailDescription.d.ts +5 -5
  36. package/lib/WebContentPaneDescription.d.ts +26 -20
  37. package/lib/WebDockManagerDescription.d.ts +7 -4
  38. package/lib/WebDockingIndicatorDescription.d.ts +4 -1
  39. package/lib/WebSplitPaneDescription.d.ts +9 -6
  40. package/lib/WebStepperDescription.d.ts +2 -5
  41. package/lib/WebTabGroupPaneDescription.d.ts +7 -4
  42. package/package.json +1 -1
@@ -35928,6 +35928,9 @@
35928
35928
  this.j.stroke();
35929
35929
  }
35930
35930
  this.j.globalAlpha = 1;
35931
+ if (a.ai != null) {
35932
+ this.j.setLineDash(new Array(0));
35933
+ }
35931
35934
  };
35932
35935
  CanvasViewRenderer.prototype.h$q = function (a) {
35933
35936
  if (a._visibility != 0) {
@@ -36005,6 +36008,9 @@
36005
36008
  if (a._opacity < 1 || this.e < 1) {
36006
36009
  this.j.globalAlpha = 1;
36007
36010
  }
36011
+ if (a.ai != null) {
36012
+ this.j.setLineDash(new Array(0));
36013
+ }
36008
36014
  };
36009
36015
  CanvasViewRenderer.prototype.h$o = function (a) {
36010
36016
  if (a == null) {
@@ -36506,6 +36512,9 @@
36506
36512
  this.j.stroke();
36507
36513
  }
36508
36514
  this.j.globalAlpha = 1;
36515
+ if (a.ai != null) {
36516
+ this.j.setLineDash(new Array(0));
36517
+ }
36509
36518
  };
36510
36519
  CanvasViewRenderer.prototype.h$s = function (a) {
36511
36520
  if (a.an == null || a.an.count < 1) {
@@ -36580,6 +36589,9 @@
36580
36589
  this.j.stroke();
36581
36590
  }
36582
36591
  this.j.globalAlpha = 1;
36592
+ if (a.ai != null) {
36593
+ this.j.setLineDash(new Array(0));
36594
+ }
36583
36595
  };
36584
36596
  CanvasViewRenderer.prototype.h$n = function (a, b) {
36585
36597
  if (b._visibility == 1) {
@@ -36682,6 +36694,9 @@
36682
36694
  this.j.stroke();
36683
36695
  }
36684
36696
  this.j.globalAlpha = 1;
36697
+ if (a.ai != null) {
36698
+ this.j.setLineDash(new Array(0));
36699
+ }
36685
36700
  };
36686
36701
  CanvasViewRenderer.prototype.h$ac = function (a) {
36687
36702
  this.j.beginPath();
@@ -183812,26 +183827,28 @@
183812
183827
  tslib.__extends(WebContentPaneDescription, _super);
183813
183828
  function WebContentPaneDescription() {
183814
183829
  var _this = _super.call(this) || this;
183830
+ _this.as = null;
183831
+ _this.at = null;
183815
183832
  _this.ao = null;
183816
- _this.ap = null;
183817
- _this.ak = null;
183818
- _this.am = null;
183819
- _this.an = null;
183820
183833
  _this.aq = null;
183821
183834
  _this.ar = null;
183822
- _this.al = null;
183823
- _this.af = 0;
183824
- _this.n = false;
183825
- _this.q = false;
183826
- _this.r = false;
183835
+ _this.au = null;
183836
+ _this.av = null;
183837
+ _this.ap = null;
183838
+ _this.aj = 0;
183827
183839
  _this.o = false;
183840
+ _this.r = false;
183841
+ _this.s = false;
183828
183842
  _this.p = false;
183829
- _this.ag = 0;
183843
+ _this.n = false;
183844
+ _this.q = false;
183845
+ _this.ak = 0;
183846
+ _this.x = false;
183847
+ _this.w = false;
183848
+ _this.aw = null;
183830
183849
  _this.v = false;
183831
- _this.as = null;
183832
- _this.u = false;
183833
- _this.s = false;
183834
183850
  _this.t = false;
183851
+ _this.u = false;
183835
183852
  return _this;
183836
183853
  }
183837
183854
  WebContentPaneDescription.prototype.get_type = function () {
@@ -183839,10 +183856,10 @@
183839
183856
  };
183840
183857
  Object.defineProperty(WebContentPaneDescription.prototype, "id", {
183841
183858
  get: function () {
183842
- return this.ao;
183859
+ return this.as;
183843
183860
  },
183844
183861
  set: function (a) {
183845
- this.ao = a;
183862
+ this.as = a;
183846
183863
  this.g("Id");
183847
183864
  },
183848
183865
  enumerable: false,
@@ -183850,10 +183867,10 @@
183850
183867
  });
183851
183868
  Object.defineProperty(WebContentPaneDescription.prototype, "paneType", {
183852
183869
  get: function () {
183853
- return this.ap;
183870
+ return this.at;
183854
183871
  },
183855
183872
  set: function (a) {
183856
- this.ap = a;
183873
+ this.at = a;
183857
183874
  this.g("PaneType");
183858
183875
  },
183859
183876
  enumerable: false,
@@ -183861,10 +183878,10 @@
183861
183878
  });
183862
183879
  Object.defineProperty(WebContentPaneDescription.prototype, "contentId", {
183863
183880
  get: function () {
183864
- return this.ak;
183881
+ return this.ao;
183865
183882
  },
183866
183883
  set: function (a) {
183867
- this.ak = a;
183884
+ this.ao = a;
183868
183885
  this.g("ContentId");
183869
183886
  },
183870
183887
  enumerable: false,
@@ -183872,10 +183889,10 @@
183872
183889
  });
183873
183890
  Object.defineProperty(WebContentPaneDescription.prototype, "header", {
183874
183891
  get: function () {
183875
- return this.am;
183892
+ return this.aq;
183876
183893
  },
183877
183894
  set: function (a) {
183878
- this.am = a;
183895
+ this.aq = a;
183879
183896
  this.g("Header");
183880
183897
  },
183881
183898
  enumerable: false,
@@ -183883,10 +183900,10 @@
183883
183900
  });
183884
183901
  Object.defineProperty(WebContentPaneDescription.prototype, "headerId", {
183885
183902
  get: function () {
183886
- return this.an;
183903
+ return this.ar;
183887
183904
  },
183888
183905
  set: function (a) {
183889
- this.an = a;
183906
+ this.ar = a;
183890
183907
  this.g("HeaderId");
183891
183908
  },
183892
183909
  enumerable: false,
@@ -183894,10 +183911,10 @@
183894
183911
  });
183895
183912
  Object.defineProperty(WebContentPaneDescription.prototype, "tabHeaderId", {
183896
183913
  get: function () {
183897
- return this.aq;
183914
+ return this.au;
183898
183915
  },
183899
183916
  set: function (a) {
183900
- this.aq = a;
183917
+ this.au = a;
183901
183918
  this.g("TabHeaderId");
183902
183919
  },
183903
183920
  enumerable: false,
@@ -183905,10 +183922,10 @@
183905
183922
  });
183906
183923
  Object.defineProperty(WebContentPaneDescription.prototype, "unpinnedHeaderId", {
183907
183924
  get: function () {
183908
- return this.ar;
183925
+ return this.av;
183909
183926
  },
183910
183927
  set: function (a) {
183911
- this.ar = a;
183928
+ this.av = a;
183912
183929
  this.g("UnpinnedHeaderId");
183913
183930
  },
183914
183931
  enumerable: false,
@@ -183916,10 +183933,10 @@
183916
183933
  });
183917
183934
  Object.defineProperty(WebContentPaneDescription.prototype, "floatingHeaderId", {
183918
183935
  get: function () {
183919
- return this.al;
183936
+ return this.ap;
183920
183937
  },
183921
183938
  set: function (a) {
183922
- this.al = a;
183939
+ this.ap = a;
183923
183940
  this.g("FloatingHeaderId");
183924
183941
  },
183925
183942
  enumerable: false,
@@ -183927,10 +183944,10 @@
183927
183944
  });
183928
183945
  Object.defineProperty(WebContentPaneDescription.prototype, "size", {
183929
183946
  get: function () {
183930
- return this.af;
183947
+ return this.aj;
183931
183948
  },
183932
183949
  set: function (a) {
183933
- this.af = a;
183950
+ this.aj = a;
183934
183951
  this.g("Size");
183935
183952
  },
183936
183953
  enumerable: false,
@@ -183938,10 +183955,10 @@
183938
183955
  });
183939
183956
  Object.defineProperty(WebContentPaneDescription.prototype, "allowClose", {
183940
183957
  get: function () {
183941
- return this.n;
183958
+ return this.o;
183942
183959
  },
183943
183960
  set: function (a) {
183944
- this.n = a;
183961
+ this.o = a;
183945
183962
  this.g("AllowClose");
183946
183963
  },
183947
183964
  enumerable: false,
@@ -183949,10 +183966,10 @@
183949
183966
  });
183950
183967
  Object.defineProperty(WebContentPaneDescription.prototype, "allowMaximize", {
183951
183968
  get: function () {
183952
- return this.q;
183969
+ return this.r;
183953
183970
  },
183954
183971
  set: function (a) {
183955
- this.q = a;
183972
+ this.r = a;
183956
183973
  this.g("AllowMaximize");
183957
183974
  },
183958
183975
  enumerable: false,
@@ -183960,10 +183977,10 @@
183960
183977
  });
183961
183978
  Object.defineProperty(WebContentPaneDescription.prototype, "allowPinning", {
183962
183979
  get: function () {
183963
- return this.r;
183980
+ return this.s;
183964
183981
  },
183965
183982
  set: function (a) {
183966
- this.r = a;
183983
+ this.s = a;
183967
183984
  this.g("AllowPinning");
183968
183985
  },
183969
183986
  enumerable: false,
@@ -183971,21 +183988,32 @@
183971
183988
  });
183972
183989
  Object.defineProperty(WebContentPaneDescription.prototype, "allowDocking", {
183973
183990
  get: function () {
183974
- return this.o;
183991
+ return this.p;
183975
183992
  },
183976
183993
  set: function (a) {
183977
- this.o = a;
183994
+ this.p = a;
183978
183995
  this.g("AllowDocking");
183979
183996
  },
183980
183997
  enumerable: false,
183981
183998
  configurable: true
183982
183999
  });
184000
+ Object.defineProperty(WebContentPaneDescription.prototype, "acceptsInnerDock", {
184001
+ get: function () {
184002
+ return this.n;
184003
+ },
184004
+ set: function (a) {
184005
+ this.n = a;
184006
+ this.g("AcceptsInnerDock");
184007
+ },
184008
+ enumerable: false,
184009
+ configurable: true
184010
+ });
183983
184011
  Object.defineProperty(WebContentPaneDescription.prototype, "allowFloating", {
183984
184012
  get: function () {
183985
- return this.p;
184013
+ return this.q;
183986
184014
  },
183987
184015
  set: function (a) {
183988
- this.p = a;
184016
+ this.q = a;
183989
184017
  this.g("AllowFloating");
183990
184018
  },
183991
184019
  enumerable: false,
@@ -183993,10 +184021,10 @@
183993
184021
  });
183994
184022
  Object.defineProperty(WebContentPaneDescription.prototype, "unpinnedSize", {
183995
184023
  get: function () {
183996
- return this.ag;
184024
+ return this.ak;
183997
184025
  },
183998
184026
  set: function (a) {
183999
- this.ag = a;
184027
+ this.ak = a;
184000
184028
  this.g("UnpinnedSize");
184001
184029
  },
184002
184030
  enumerable: false,
@@ -184004,21 +184032,32 @@
184004
184032
  });
184005
184033
  Object.defineProperty(WebContentPaneDescription.prototype, "isPinned", {
184006
184034
  get: function () {
184007
- return this.v;
184035
+ return this.x;
184008
184036
  },
184009
184037
  set: function (a) {
184010
- this.v = a;
184038
+ this.x = a;
184011
184039
  this.g("IsPinned");
184012
184040
  },
184013
184041
  enumerable: false,
184014
184042
  configurable: true
184015
184043
  });
184044
+ Object.defineProperty(WebContentPaneDescription.prototype, "isMaximized", {
184045
+ get: function () {
184046
+ return this.w;
184047
+ },
184048
+ set: function (a) {
184049
+ this.w = a;
184050
+ this.g("IsMaximized");
184051
+ },
184052
+ enumerable: false,
184053
+ configurable: true
184054
+ });
184016
184055
  Object.defineProperty(WebContentPaneDescription.prototype, "unpinnedLocation", {
184017
184056
  get: function () {
184018
- return this.as;
184057
+ return this.aw;
184019
184058
  },
184020
184059
  set: function (a) {
184021
- this.as = a;
184060
+ this.aw = a;
184022
184061
  this.g("UnpinnedLocation");
184023
184062
  },
184024
184063
  enumerable: false,
@@ -184026,10 +184065,10 @@
184026
184065
  });
184027
184066
  Object.defineProperty(WebContentPaneDescription.prototype, "hidden", {
184028
184067
  get: function () {
184029
- return this.u;
184068
+ return this.v;
184030
184069
  },
184031
184070
  set: function (a) {
184032
- this.u = a;
184071
+ this.v = a;
184033
184072
  this.g("Hidden");
184034
184073
  },
184035
184074
  enumerable: false,
@@ -184037,10 +184076,10 @@
184037
184076
  });
184038
184077
  Object.defineProperty(WebContentPaneDescription.prototype, "disabled", {
184039
184078
  get: function () {
184040
- return this.s;
184079
+ return this.t;
184041
184080
  },
184042
184081
  set: function (a) {
184043
- this.s = a;
184082
+ this.t = a;
184044
184083
  this.g("Disabled");
184045
184084
  },
184046
184085
  enumerable: false,
@@ -184048,10 +184087,10 @@
184048
184087
  });
184049
184088
  Object.defineProperty(WebContentPaneDescription.prototype, "documentOnly", {
184050
184089
  get: function () {
184051
- return this.t;
184090
+ return this.u;
184052
184091
  },
184053
184092
  set: function (a) {
184054
- this.t = a;
184093
+ this.u = a;
184055
184094
  this.g("DocumentOnly");
184056
184095
  },
184057
184096
  enumerable: false,
@@ -184107,9 +184146,11 @@
184107
184146
  a.item("AllowMaximize", "Boolean");
184108
184147
  a.item("AllowPinning", "Boolean");
184109
184148
  a.item("AllowDocking", "Boolean");
184149
+ a.item("AcceptsInnerDock", "Boolean");
184110
184150
  a.item("AllowFloating", "Boolean");
184111
184151
  a.item("UnpinnedSize", "Number:double");
184112
184152
  a.item("IsPinned", "Boolean");
184153
+ a.item("IsMaximized", "Boolean");
184113
184154
  a.item("UnpinnedLocation", "ExportedType:string:UnpinnedLocation");
184114
184155
  a.item("UnpinnedLocation@stringUnion", "WebComponents;React");
184115
184156
  a.item("UnpinnedLocation@names", "Top;Bottom;Left;Right");
@@ -202583,9 +202624,9 @@
202583
202624
  tslib.__extends(WebComboChangeEventArgsDetailDescription, _super);
202584
202625
  function WebComboChangeEventArgsDetailDescription() {
202585
202626
  var _this = _super.call(this) || this;
202586
- _this.m = null;
202587
- _this.i = null;
202588
- _this.l = null;
202627
+ _this.h = null;
202628
+ _this.k = null;
202629
+ _this.n = null;
202589
202630
  return _this;
202590
202631
  }
202591
202632
  WebComboChangeEventArgsDetailDescription.prototype.get_type = function () {
@@ -202600,10 +202641,10 @@
202600
202641
  });
202601
202642
  Object.defineProperty(WebComboChangeEventArgsDetailDescription.prototype, "newValue", {
202602
202643
  get: function () {
202603
- return this.m;
202644
+ return this.h;
202604
202645
  },
202605
202646
  set: function (a) {
202606
- this.m = a;
202647
+ this.h = a;
202607
202648
  this.g("NewValue");
202608
202649
  },
202609
202650
  enumerable: false,
@@ -202611,10 +202652,10 @@
202611
202652
  });
202612
202653
  Object.defineProperty(WebComboChangeEventArgsDetailDescription.prototype, "items", {
202613
202654
  get: function () {
202614
- return this.i;
202655
+ return this.k;
202615
202656
  },
202616
202657
  set: function (a) {
202617
- this.i = a;
202658
+ this.k = a;
202618
202659
  this.g("Items");
202619
202660
  },
202620
202661
  enumerable: false,
@@ -202622,10 +202663,10 @@
202622
202663
  });
202623
202664
  Object.defineProperty(WebComboChangeEventArgsDetailDescription.prototype, "changeType", {
202624
202665
  get: function () {
202625
- return this.l;
202666
+ return this.n;
202626
202667
  },
202627
202668
  set: function (a) {
202628
- this.l = a;
202669
+ this.n = a;
202629
202670
  this.g("ChangeType");
202630
202671
  },
202631
202672
  enumerable: false,
@@ -202666,7 +202707,7 @@
202666
202707
  a.item("__skipModuleRegisterWebComponents", "Boolean");
202667
202708
  a.item("__importTypesWebComponents", "String:igniteui-webcomponents");
202668
202709
  a.item("__skipSuffix", "Boolean");
202669
- a.item("NewValue", "String");
202710
+ a.item("NewValue", "Array:string");
202670
202711
  a.item("Items", "Unknown");
202671
202712
  a.item("ChangeType", "(wc:Type)ExportedType:string:ComboChangeType");
202672
202713
  a.item("ChangeType@stringUnion", "WebComponents;React");
@@ -205104,8 +205145,9 @@
205104
205145
  tslib.__extends(WebDockingIndicatorDescription, _super);
205105
205146
  function WebDockingIndicatorDescription() {
205106
205147
  var _this = _super.call(this) || this;
205107
- _this.j = null;
205148
+ _this.k = null;
205108
205149
  _this.h = false;
205150
+ _this.j = null;
205109
205151
  return _this;
205110
205152
  }
205111
205153
  WebDockingIndicatorDescription.prototype.get_type = function () {
@@ -205120,10 +205162,10 @@
205120
205162
  });
205121
205163
  Object.defineProperty(WebDockingIndicatorDescription.prototype, "position", {
205122
205164
  get: function () {
205123
- return this.j;
205165
+ return this.k;
205124
205166
  },
205125
205167
  set: function (a) {
205126
- this.j = a;
205168
+ this.k = a;
205127
205169
  this.g("Position");
205128
205170
  },
205129
205171
  enumerable: false,
@@ -205140,6 +205182,17 @@
205140
205182
  enumerable: false,
205141
205183
  configurable: true
205142
205184
  });
205185
+ Object.defineProperty(WebDockingIndicatorDescription.prototype, "direction", {
205186
+ get: function () {
205187
+ return this.j;
205188
+ },
205189
+ set: function (a) {
205190
+ this.j = a;
205191
+ this.g("Direction");
205192
+ },
205193
+ enumerable: false,
205194
+ configurable: true
205195
+ });
205143
205196
  WebDockingIndicatorDescription.$t = markType(WebDockingIndicatorDescription, 'WebDockingIndicatorDescription', Description.$);
205144
205197
  return WebDockingIndicatorDescription;
205145
205198
  }(Description));
@@ -205177,6 +205230,7 @@
205177
205230
  a.item("Position@stringUnion", "WebComponents;React");
205178
205231
  a.item("Position@names", "Left;OuterLeft;Right;OuterRight;Top;OuterTop;Bottom;OuterBottom;Center");
205179
205232
  a.item("IsRoot", "Boolean");
205233
+ a.item("Direction", "String");
205180
205234
  };
205181
205235
  WebDockingIndicatorDescriptionMetadata.d = function (a) {
205182
205236
  WebDockingIndicatorDescriptionMetadata.b(a);
@@ -205205,13 +205259,14 @@
205205
205259
  _this.l = null;
205206
205260
  _this.p = null;
205207
205261
  _this.h = null;
205208
- _this.u = false;
205209
- _this.aa = null;
205262
+ _this.v = false;
205263
+ _this.ac = null;
205210
205264
  _this.m = null;
205211
205265
  _this.r = null;
205212
205266
  _this.t = false;
205213
- _this.v = false;
205214
- _this.z = null;
205267
+ _this.w = false;
205268
+ _this.u = false;
205269
+ _this.ab = null;
205215
205270
  return _this;
205216
205271
  }
205217
205272
  WebDockManagerDescription.prototype.get_type = function () {
@@ -205270,10 +205325,10 @@
205270
205325
  });
205271
205326
  Object.defineProperty(WebDockManagerDescription.prototype, "allowMaximize", {
205272
205327
  get: function () {
205273
- return this.u;
205328
+ return this.v;
205274
205329
  },
205275
205330
  set: function (a) {
205276
- this.u = a;
205331
+ this.v = a;
205277
205332
  this.g("AllowMaximize");
205278
205333
  },
205279
205334
  enumerable: false,
@@ -205281,10 +205336,10 @@
205281
205336
  });
205282
205337
  Object.defineProperty(WebDockManagerDescription.prototype, "showHeaderIconOnHover", {
205283
205338
  get: function () {
205284
- return this.aa;
205339
+ return this.ac;
205285
205340
  },
205286
205341
  set: function (a) {
205287
- this.aa = a;
205342
+ this.ac = a;
205288
205343
  this.g("ShowHeaderIconOnHover");
205289
205344
  },
205290
205345
  enumerable: false,
@@ -205325,21 +205380,32 @@
205325
205380
  });
205326
205381
  Object.defineProperty(WebDockManagerDescription.prototype, "disableKeyboardNavigation", {
205327
205382
  get: function () {
205328
- return this.v;
205383
+ return this.w;
205329
205384
  },
205330
205385
  set: function (a) {
205331
- this.v = a;
205386
+ this.w = a;
205332
205387
  this.g("DisableKeyboardNavigation");
205333
205388
  },
205334
205389
  enumerable: false,
205335
205390
  configurable: true
205336
205391
  });
205392
+ Object.defineProperty(WebDockManagerDescription.prototype, "allowInnerDock", {
205393
+ get: function () {
205394
+ return this.u;
205395
+ },
205396
+ set: function (a) {
205397
+ this.u = a;
205398
+ this.g("AllowInnerDock");
205399
+ },
205400
+ enumerable: false,
205401
+ configurable: true
205402
+ });
205337
205403
  Object.defineProperty(WebDockManagerDescription.prototype, "layoutChangeRef", {
205338
205404
  get: function () {
205339
- return this.z;
205405
+ return this.ab;
205340
205406
  },
205341
205407
  set: function (a) {
205342
- this.z = a;
205408
+ this.ab = a;
205343
205409
  this.g("LayoutChangeRef");
205344
205410
  },
205345
205411
  enumerable: false,
@@ -205459,16 +205525,17 @@
205459
205525
  tslib.__extends(WebSplitPaneDescription, _super);
205460
205526
  function WebSplitPaneDescription() {
205461
205527
  var _this = _super.call(this) || this;
205462
- _this.ac = null;
205463
205528
  _this.ae = null;
205464
- _this.ad = null;
205529
+ _this.ag = null;
205530
+ _this.af = null;
205465
205531
  _this.m = null;
205466
- _this.x = 0;
205532
+ _this.z = 0;
205467
205533
  _this.o = null;
205468
- _this.w = 0;
205469
- _this.v = 0;
205534
+ _this.y = 0;
205535
+ _this.x = 0;
205470
205536
  _this.s = false;
205471
205537
  _this.r = false;
205538
+ _this.t = false;
205472
205539
  return _this;
205473
205540
  }
205474
205541
  WebSplitPaneDescription.prototype.get_type = function () {
@@ -205476,10 +205543,10 @@
205476
205543
  };
205477
205544
  Object.defineProperty(WebSplitPaneDescription.prototype, "id", {
205478
205545
  get: function () {
205479
- return this.ac;
205546
+ return this.ae;
205480
205547
  },
205481
205548
  set: function (a) {
205482
- this.ac = a;
205549
+ this.ae = a;
205483
205550
  this.g("Id");
205484
205551
  },
205485
205552
  enumerable: false,
@@ -205487,10 +205554,10 @@
205487
205554
  });
205488
205555
  Object.defineProperty(WebSplitPaneDescription.prototype, "paneType", {
205489
205556
  get: function () {
205490
- return this.ae;
205557
+ return this.ag;
205491
205558
  },
205492
205559
  set: function (a) {
205493
- this.ae = a;
205560
+ this.ag = a;
205494
205561
  this.g("PaneType");
205495
205562
  },
205496
205563
  enumerable: false,
@@ -205498,10 +205565,10 @@
205498
205565
  });
205499
205566
  Object.defineProperty(WebSplitPaneDescription.prototype, "orientation", {
205500
205567
  get: function () {
205501
- return this.ad;
205568
+ return this.af;
205502
205569
  },
205503
205570
  set: function (a) {
205504
- this.ad = a;
205571
+ this.af = a;
205505
205572
  this.g("Orientation");
205506
205573
  },
205507
205574
  enumerable: false,
@@ -205520,10 +205587,10 @@
205520
205587
  });
205521
205588
  Object.defineProperty(WebSplitPaneDescription.prototype, "size", {
205522
205589
  get: function () {
205523
- return this.x;
205590
+ return this.z;
205524
205591
  },
205525
205592
  set: function (a) {
205526
- this.x = a;
205593
+ this.z = a;
205527
205594
  this.g("Size");
205528
205595
  },
205529
205596
  enumerable: false,
@@ -205542,10 +205609,10 @@
205542
205609
  });
205543
205610
  Object.defineProperty(WebSplitPaneDescription.prototype, "floatingWidth", {
205544
205611
  get: function () {
205545
- return this.w;
205612
+ return this.y;
205546
205613
  },
205547
205614
  set: function (a) {
205548
- this.w = a;
205615
+ this.y = a;
205549
205616
  this.g("FloatingWidth");
205550
205617
  },
205551
205618
  enumerable: false,
@@ -205553,10 +205620,10 @@
205553
205620
  });
205554
205621
  Object.defineProperty(WebSplitPaneDescription.prototype, "floatingHeight", {
205555
205622
  get: function () {
205556
- return this.v;
205623
+ return this.x;
205557
205624
  },
205558
205625
  set: function (a) {
205559
- this.v = a;
205626
+ this.x = a;
205560
205627
  this.g("FloatingHeight");
205561
205628
  },
205562
205629
  enumerable: false,
@@ -205584,6 +205651,17 @@
205584
205651
  enumerable: false,
205585
205652
  configurable: true
205586
205653
  });
205654
+ Object.defineProperty(WebSplitPaneDescription.prototype, "isMaximized", {
205655
+ get: function () {
205656
+ return this.t;
205657
+ },
205658
+ set: function (a) {
205659
+ this.t = a;
205660
+ this.g("IsMaximized");
205661
+ },
205662
+ enumerable: false,
205663
+ configurable: true
205664
+ });
205587
205665
  WebSplitPaneDescription.$t = markType(WebSplitPaneDescription, 'WebSplitPaneDescription', WebDockManagerPaneDescription.$);
205588
205666
  WebSplitPaneDescription.__marshalByValue1 = true;
205589
205667
  WebSplitPaneDescription.__marshalByValueAlias1 = "SplitPane";
@@ -205634,6 +205712,7 @@
205634
205712
  a.item("FloatingHeight", "Number:double");
205635
205713
  a.item("FloatingResizable", "Boolean");
205636
205714
  a.item("AllowEmpty", "Boolean");
205715
+ a.item("IsMaximized", "Boolean");
205637
205716
  WebSplitPaneDescriptionMetadata.e(a);
205638
205717
  };
205639
205718
  WebSplitPaneDescriptionMetadata.d = function (a) {
@@ -206078,6 +206157,7 @@
206078
206157
  a.item("ResourceStrings", "ExportedType:WebDockManagerResourceStrings");
206079
206158
  a.item("AllowFloatingPanesResize", "Boolean");
206080
206159
  a.item("DisableKeyboardNavigation", "Boolean");
206160
+ a.item("AllowInnerDock", "Boolean");
206081
206161
  a.item("LayoutChangeRef", "EventRef::layoutChange:customEvent");
206082
206162
  };
206083
206163
  WebDockManagerDescriptionMetadata.d = function (a) {
@@ -206289,12 +206369,13 @@
206289
206369
  tslib.__extends(WebTabGroupPaneDescription, _super);
206290
206370
  function WebTabGroupPaneDescription() {
206291
206371
  var _this = _super.call(this) || this;
206292
- _this.w = null;
206293
- _this.x = null;
206372
+ _this.y = null;
206373
+ _this.z = null;
206294
206374
  _this.m = null;
206295
- _this.s = 0;
206296
- _this.r = 0;
206375
+ _this.u = 0;
206376
+ _this.t = 0;
206297
206377
  _this.p = false;
206378
+ _this.q = false;
206298
206379
  return _this;
206299
206380
  }
206300
206381
  WebTabGroupPaneDescription.prototype.get_type = function () {
@@ -206302,10 +206383,10 @@
206302
206383
  };
206303
206384
  Object.defineProperty(WebTabGroupPaneDescription.prototype, "id", {
206304
206385
  get: function () {
206305
- return this.w;
206386
+ return this.y;
206306
206387
  },
206307
206388
  set: function (a) {
206308
- this.w = a;
206389
+ this.y = a;
206309
206390
  this.g("Id");
206310
206391
  },
206311
206392
  enumerable: false,
@@ -206313,10 +206394,10 @@
206313
206394
  });
206314
206395
  Object.defineProperty(WebTabGroupPaneDescription.prototype, "paneType", {
206315
206396
  get: function () {
206316
- return this.x;
206397
+ return this.z;
206317
206398
  },
206318
206399
  set: function (a) {
206319
- this.x = a;
206400
+ this.z = a;
206320
206401
  this.g("PaneType");
206321
206402
  },
206322
206403
  enumerable: false,
@@ -206335,10 +206416,10 @@
206335
206416
  });
206336
206417
  Object.defineProperty(WebTabGroupPaneDescription.prototype, "size", {
206337
206418
  get: function () {
206338
- return this.s;
206419
+ return this.u;
206339
206420
  },
206340
206421
  set: function (a) {
206341
- this.s = a;
206422
+ this.u = a;
206342
206423
  this.g("Size");
206343
206424
  },
206344
206425
  enumerable: false,
@@ -206346,10 +206427,10 @@
206346
206427
  });
206347
206428
  Object.defineProperty(WebTabGroupPaneDescription.prototype, "selectedIndex", {
206348
206429
  get: function () {
206349
- return this.r;
206430
+ return this.t;
206350
206431
  },
206351
206432
  set: function (a) {
206352
- this.r = a;
206433
+ this.t = a;
206353
206434
  this.g("SelectedIndex");
206354
206435
  },
206355
206436
  enumerable: false,
@@ -206366,6 +206447,17 @@
206366
206447
  enumerable: false,
206367
206448
  configurable: true
206368
206449
  });
206450
+ Object.defineProperty(WebTabGroupPaneDescription.prototype, "isMaximized", {
206451
+ get: function () {
206452
+ return this.q;
206453
+ },
206454
+ set: function (a) {
206455
+ this.q = a;
206456
+ this.g("IsMaximized");
206457
+ },
206458
+ enumerable: false,
206459
+ configurable: true
206460
+ });
206369
206461
  WebTabGroupPaneDescription.$t = markType(WebTabGroupPaneDescription, 'WebTabGroupPaneDescription', WebDockManagerPaneDescription.$);
206370
206462
  WebTabGroupPaneDescription.__marshalByValue1 = true;
206371
206463
  WebTabGroupPaneDescription.__marshalByValueAlias1 = "TabGroupPane";
@@ -206409,6 +206501,7 @@
206409
206501
  a.item("Size", "Number:double");
206410
206502
  a.item("SelectedIndex", "Number:double");
206411
206503
  a.item("AllowEmpty", "Boolean");
206504
+ a.item("IsMaximized", "Boolean");
206412
206505
  WebTabGroupPaneDescriptionMetadata.e(a);
206413
206506
  };
206414
206507
  WebTabGroupPaneDescriptionMetadata.d = function (a) {
@@ -224968,12 +225061,11 @@
224968
225061
  var _this = _super.call(this) || this;
224969
225062
  _this.h = null;
224970
225063
  _this.q = null;
224971
- _this.s = null;
225064
+ _this.r = null;
224972
225065
  _this.k = false;
224973
225066
  _this.j = false;
224974
225067
  _this.p = null;
224975
- _this.t = null;
224976
- _this.r = null;
225068
+ _this.s = null;
224977
225069
  _this.o = null;
224978
225070
  _this.n = null;
224979
225071
  return _this;
@@ -225012,10 +225104,10 @@
225012
225104
  });
225013
225105
  Object.defineProperty(WebStepperDescription.prototype, "stepType", {
225014
225106
  get: function () {
225015
- return this.s;
225107
+ return this.r;
225016
225108
  },
225017
225109
  set: function (a) {
225018
- this.s = a;
225110
+ this.r = a;
225019
225111
  this.g("StepType");
225020
225112
  },
225021
225113
  enumerable: false,
@@ -225056,26 +225148,15 @@
225056
225148
  });
225057
225149
  Object.defineProperty(WebStepperDescription.prototype, "titlePosition", {
225058
225150
  get: function () {
225059
- return this.t;
225151
+ return this.s;
225060
225152
  },
225061
225153
  set: function (a) {
225062
- this.t = a;
225154
+ this.s = a;
225063
225155
  this.g("TitlePosition");
225064
225156
  },
225065
225157
  enumerable: false,
225066
225158
  configurable: true
225067
225159
  });
225068
- Object.defineProperty(WebStepperDescription.prototype, "size", {
225069
- get: function () {
225070
- return this.r;
225071
- },
225072
- set: function (a) {
225073
- this.r = a;
225074
- this.g("Size");
225075
- },
225076
- enumerable: false,
225077
- configurable: true
225078
- });
225079
225160
  Object.defineProperty(WebStepperDescription.prototype, "activeStepChangingRef", {
225080
225161
  get: function () {
225081
225162
  return this.o;
@@ -225149,8 +225230,6 @@
225149
225230
  a.item("TitlePosition", "ExportedType:string:StepperTitlePosition");
225150
225231
  a.item("TitlePosition@stringUnion", "WebComponents;React");
225151
225232
  a.item("TitlePosition@names", "Top;Bottom;Start;End");
225152
- a.item("Size", "ExportedType:string:SizableComponentSize");
225153
- a.item("Size@names", "Large;Small;Medium");
225154
225233
  a.item("ActiveStepChangingRef", "EventRef::activeStepChanging");
225155
225234
  a.item("ActiveStepChangedRef", "EventRef::activeStepChanged");
225156
225235
  };