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
@@ -13,28 +13,29 @@ export let WebTabGroupPaneDescription = /*@__PURE__*/ (() => {
13
13
  class WebTabGroupPaneDescription extends WebDockManagerPaneDescription {
14
14
  constructor() {
15
15
  super();
16
- this.w = null;
17
- this.x = null;
16
+ this.y = null;
17
+ this.z = null;
18
18
  this.m = null;
19
- this.s = 0;
20
- this.r = 0;
19
+ this.u = 0;
20
+ this.t = 0;
21
21
  this.p = false;
22
+ this.q = false;
22
23
  }
23
24
  get_type() {
24
25
  return "WebTabGroupPane";
25
26
  }
26
27
  get id() {
27
- return this.w;
28
+ return this.y;
28
29
  }
29
30
  set id(a) {
30
- this.w = a;
31
+ this.y = a;
31
32
  this.g("Id");
32
33
  }
33
34
  get paneType() {
34
- return this.x;
35
+ return this.z;
35
36
  }
36
37
  set paneType(a) {
37
- this.x = a;
38
+ this.z = a;
38
39
  this.g("PaneType");
39
40
  }
40
41
  get panes() {
@@ -45,17 +46,17 @@ export let WebTabGroupPaneDescription = /*@__PURE__*/ (() => {
45
46
  this.g("Panes");
46
47
  }
47
48
  get size() {
48
- return this.s;
49
+ return this.u;
49
50
  }
50
51
  set size(a) {
51
- this.s = a;
52
+ this.u = a;
52
53
  this.g("Size");
53
54
  }
54
55
  get selectedIndex() {
55
- return this.r;
56
+ return this.t;
56
57
  }
57
58
  set selectedIndex(a) {
58
- this.r = a;
59
+ this.t = a;
59
60
  this.g("SelectedIndex");
60
61
  }
61
62
  get allowEmpty() {
@@ -65,6 +66,13 @@ export let WebTabGroupPaneDescription = /*@__PURE__*/ (() => {
65
66
  this.p = a;
66
67
  this.g("AllowEmpty");
67
68
  }
69
+ get isMaximized() {
70
+ return this.q;
71
+ }
72
+ set isMaximized(a) {
73
+ this.q = a;
74
+ this.g("IsMaximized");
75
+ }
68
76
  }
69
77
  WebTabGroupPaneDescription.$t = markType(WebTabGroupPaneDescription, 'WebTabGroupPaneDescription', WebDockManagerPaneDescription.$);
70
78
  WebTabGroupPaneDescription.__marshalByValue1 = true;
@@ -36,6 +36,7 @@ export let WebTabGroupPaneDescriptionMetadata = /*@__PURE__*/ (() => {
36
36
  a.item("Size", "Number:double");
37
37
  a.item("SelectedIndex", "Number:double");
38
38
  a.item("AllowEmpty", "Boolean");
39
+ a.item("IsMaximized", "Boolean");
39
40
  WebTabGroupPaneDescriptionMetadata.e(a);
40
41
  }
41
42
  static d(a) {
@@ -157,6 +157,9 @@ var CanvasViewRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
157
157
  this.j.stroke();
158
158
  }
159
159
  this.j.globalAlpha = 1;
160
+ if (a.ai != null) {
161
+ this.j.setLineDash(new Array(0));
162
+ }
160
163
  };
161
164
  CanvasViewRenderer.prototype.h$q = function (a) {
162
165
  if (a._visibility != 0) {
@@ -234,6 +237,9 @@ var CanvasViewRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
234
237
  if (a._opacity < 1 || this.e < 1) {
235
238
  this.j.globalAlpha = 1;
236
239
  }
240
+ if (a.ai != null) {
241
+ this.j.setLineDash(new Array(0));
242
+ }
237
243
  };
238
244
  CanvasViewRenderer.prototype.h$o = function (a) {
239
245
  if (a == null) {
@@ -735,6 +741,9 @@ var CanvasViewRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
735
741
  this.j.stroke();
736
742
  }
737
743
  this.j.globalAlpha = 1;
744
+ if (a.ai != null) {
745
+ this.j.setLineDash(new Array(0));
746
+ }
738
747
  };
739
748
  CanvasViewRenderer.prototype.h$s = function (a) {
740
749
  if (a.an == null || a.an.count < 1) {
@@ -809,6 +818,9 @@ var CanvasViewRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
809
818
  this.j.stroke();
810
819
  }
811
820
  this.j.globalAlpha = 1;
821
+ if (a.ai != null) {
822
+ this.j.setLineDash(new Array(0));
823
+ }
812
824
  };
813
825
  CanvasViewRenderer.prototype.h$n = function (a, b) {
814
826
  if (b._visibility == 1) {
@@ -911,6 +923,9 @@ var CanvasViewRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
911
923
  this.j.stroke();
912
924
  }
913
925
  this.j.globalAlpha = 1;
926
+ if (a.ai != null) {
927
+ this.j.setLineDash(new Array(0));
928
+ }
914
929
  };
915
930
  CanvasViewRenderer.prototype.h$ac = function (a) {
916
931
  this.j.beginPath();
@@ -14,9 +14,9 @@ var WebComboChangeEventArgsDetailDescription = /** @class */ /*@__PURE__*/ (func
14
14
  __extends(WebComboChangeEventArgsDetailDescription, _super);
15
15
  function WebComboChangeEventArgsDetailDescription() {
16
16
  var _this = _super.call(this) || this;
17
- _this.m = null;
18
- _this.i = null;
19
- _this.l = null;
17
+ _this.h = null;
18
+ _this.k = null;
19
+ _this.n = null;
20
20
  return _this;
21
21
  }
22
22
  WebComboChangeEventArgsDetailDescription.prototype.get_type = function () {
@@ -31,10 +31,10 @@ var WebComboChangeEventArgsDetailDescription = /** @class */ /*@__PURE__*/ (func
31
31
  });
32
32
  Object.defineProperty(WebComboChangeEventArgsDetailDescription.prototype, "newValue", {
33
33
  get: function () {
34
- return this.m;
34
+ return this.h;
35
35
  },
36
36
  set: function (a) {
37
- this.m = a;
37
+ this.h = a;
38
38
  this.g("NewValue");
39
39
  },
40
40
  enumerable: false,
@@ -42,10 +42,10 @@ var WebComboChangeEventArgsDetailDescription = /** @class */ /*@__PURE__*/ (func
42
42
  });
43
43
  Object.defineProperty(WebComboChangeEventArgsDetailDescription.prototype, "items", {
44
44
  get: function () {
45
- return this.i;
45
+ return this.k;
46
46
  },
47
47
  set: function (a) {
48
- this.i = a;
48
+ this.k = a;
49
49
  this.g("Items");
50
50
  },
51
51
  enumerable: false,
@@ -53,10 +53,10 @@ var WebComboChangeEventArgsDetailDescription = /** @class */ /*@__PURE__*/ (func
53
53
  });
54
54
  Object.defineProperty(WebComboChangeEventArgsDetailDescription.prototype, "changeType", {
55
55
  get: function () {
56
- return this.l;
56
+ return this.n;
57
57
  },
58
58
  set: function (a) {
59
- this.l = a;
59
+ this.n = a;
60
60
  this.g("ChangeType");
61
61
  },
62
62
  enumerable: false,
@@ -31,7 +31,7 @@ var WebComboChangeEventArgsDetailDescriptionMetadata = /** @class */ /*@__PURE__
31
31
  a.item("__skipModuleRegisterWebComponents", "Boolean");
32
32
  a.item("__importTypesWebComponents", "String:igniteui-webcomponents");
33
33
  a.item("__skipSuffix", "Boolean");
34
- a.item("NewValue", "String");
34
+ a.item("NewValue", "Array:string");
35
35
  a.item("Items", "Unknown");
36
36
  a.item("ChangeType", "(wc:Type)ExportedType:string:ComboChangeType");
37
37
  a.item("ChangeType@stringUnion", "WebComponents;React");
@@ -14,26 +14,28 @@ var WebContentPaneDescription = /** @class */ /*@__PURE__*/ (function (_super) {
14
14
  __extends(WebContentPaneDescription, _super);
15
15
  function WebContentPaneDescription() {
16
16
  var _this = _super.call(this) || this;
17
+ _this.as = null;
18
+ _this.at = null;
17
19
  _this.ao = null;
18
- _this.ap = null;
19
- _this.ak = null;
20
- _this.am = null;
21
- _this.an = null;
22
20
  _this.aq = null;
23
21
  _this.ar = null;
24
- _this.al = null;
25
- _this.af = 0;
26
- _this.n = false;
27
- _this.q = false;
28
- _this.r = false;
22
+ _this.au = null;
23
+ _this.av = null;
24
+ _this.ap = null;
25
+ _this.aj = 0;
29
26
  _this.o = false;
27
+ _this.r = false;
28
+ _this.s = false;
30
29
  _this.p = false;
31
- _this.ag = 0;
30
+ _this.n = false;
31
+ _this.q = false;
32
+ _this.ak = 0;
33
+ _this.x = false;
34
+ _this.w = false;
35
+ _this.aw = null;
32
36
  _this.v = false;
33
- _this.as = null;
34
- _this.u = false;
35
- _this.s = false;
36
37
  _this.t = false;
38
+ _this.u = false;
37
39
  return _this;
38
40
  }
39
41
  WebContentPaneDescription.prototype.get_type = function () {
@@ -41,10 +43,10 @@ var WebContentPaneDescription = /** @class */ /*@__PURE__*/ (function (_super) {
41
43
  };
42
44
  Object.defineProperty(WebContentPaneDescription.prototype, "id", {
43
45
  get: function () {
44
- return this.ao;
46
+ return this.as;
45
47
  },
46
48
  set: function (a) {
47
- this.ao = a;
49
+ this.as = a;
48
50
  this.g("Id");
49
51
  },
50
52
  enumerable: false,
@@ -52,10 +54,10 @@ var WebContentPaneDescription = /** @class */ /*@__PURE__*/ (function (_super) {
52
54
  });
53
55
  Object.defineProperty(WebContentPaneDescription.prototype, "paneType", {
54
56
  get: function () {
55
- return this.ap;
57
+ return this.at;
56
58
  },
57
59
  set: function (a) {
58
- this.ap = a;
60
+ this.at = a;
59
61
  this.g("PaneType");
60
62
  },
61
63
  enumerable: false,
@@ -63,10 +65,10 @@ var WebContentPaneDescription = /** @class */ /*@__PURE__*/ (function (_super) {
63
65
  });
64
66
  Object.defineProperty(WebContentPaneDescription.prototype, "contentId", {
65
67
  get: function () {
66
- return this.ak;
68
+ return this.ao;
67
69
  },
68
70
  set: function (a) {
69
- this.ak = a;
71
+ this.ao = a;
70
72
  this.g("ContentId");
71
73
  },
72
74
  enumerable: false,
@@ -74,10 +76,10 @@ var WebContentPaneDescription = /** @class */ /*@__PURE__*/ (function (_super) {
74
76
  });
75
77
  Object.defineProperty(WebContentPaneDescription.prototype, "header", {
76
78
  get: function () {
77
- return this.am;
79
+ return this.aq;
78
80
  },
79
81
  set: function (a) {
80
- this.am = a;
82
+ this.aq = a;
81
83
  this.g("Header");
82
84
  },
83
85
  enumerable: false,
@@ -85,10 +87,10 @@ var WebContentPaneDescription = /** @class */ /*@__PURE__*/ (function (_super) {
85
87
  });
86
88
  Object.defineProperty(WebContentPaneDescription.prototype, "headerId", {
87
89
  get: function () {
88
- return this.an;
90
+ return this.ar;
89
91
  },
90
92
  set: function (a) {
91
- this.an = a;
93
+ this.ar = a;
92
94
  this.g("HeaderId");
93
95
  },
94
96
  enumerable: false,
@@ -96,10 +98,10 @@ var WebContentPaneDescription = /** @class */ /*@__PURE__*/ (function (_super) {
96
98
  });
97
99
  Object.defineProperty(WebContentPaneDescription.prototype, "tabHeaderId", {
98
100
  get: function () {
99
- return this.aq;
101
+ return this.au;
100
102
  },
101
103
  set: function (a) {
102
- this.aq = a;
104
+ this.au = a;
103
105
  this.g("TabHeaderId");
104
106
  },
105
107
  enumerable: false,
@@ -107,10 +109,10 @@ var WebContentPaneDescription = /** @class */ /*@__PURE__*/ (function (_super) {
107
109
  });
108
110
  Object.defineProperty(WebContentPaneDescription.prototype, "unpinnedHeaderId", {
109
111
  get: function () {
110
- return this.ar;
112
+ return this.av;
111
113
  },
112
114
  set: function (a) {
113
- this.ar = a;
115
+ this.av = a;
114
116
  this.g("UnpinnedHeaderId");
115
117
  },
116
118
  enumerable: false,
@@ -118,10 +120,10 @@ var WebContentPaneDescription = /** @class */ /*@__PURE__*/ (function (_super) {
118
120
  });
119
121
  Object.defineProperty(WebContentPaneDescription.prototype, "floatingHeaderId", {
120
122
  get: function () {
121
- return this.al;
123
+ return this.ap;
122
124
  },
123
125
  set: function (a) {
124
- this.al = a;
126
+ this.ap = a;
125
127
  this.g("FloatingHeaderId");
126
128
  },
127
129
  enumerable: false,
@@ -129,10 +131,10 @@ var WebContentPaneDescription = /** @class */ /*@__PURE__*/ (function (_super) {
129
131
  });
130
132
  Object.defineProperty(WebContentPaneDescription.prototype, "size", {
131
133
  get: function () {
132
- return this.af;
134
+ return this.aj;
133
135
  },
134
136
  set: function (a) {
135
- this.af = a;
137
+ this.aj = a;
136
138
  this.g("Size");
137
139
  },
138
140
  enumerable: false,
@@ -140,10 +142,10 @@ var WebContentPaneDescription = /** @class */ /*@__PURE__*/ (function (_super) {
140
142
  });
141
143
  Object.defineProperty(WebContentPaneDescription.prototype, "allowClose", {
142
144
  get: function () {
143
- return this.n;
145
+ return this.o;
144
146
  },
145
147
  set: function (a) {
146
- this.n = a;
148
+ this.o = a;
147
149
  this.g("AllowClose");
148
150
  },
149
151
  enumerable: false,
@@ -151,10 +153,10 @@ var WebContentPaneDescription = /** @class */ /*@__PURE__*/ (function (_super) {
151
153
  });
152
154
  Object.defineProperty(WebContentPaneDescription.prototype, "allowMaximize", {
153
155
  get: function () {
154
- return this.q;
156
+ return this.r;
155
157
  },
156
158
  set: function (a) {
157
- this.q = a;
159
+ this.r = a;
158
160
  this.g("AllowMaximize");
159
161
  },
160
162
  enumerable: false,
@@ -162,10 +164,10 @@ var WebContentPaneDescription = /** @class */ /*@__PURE__*/ (function (_super) {
162
164
  });
163
165
  Object.defineProperty(WebContentPaneDescription.prototype, "allowPinning", {
164
166
  get: function () {
165
- return this.r;
167
+ return this.s;
166
168
  },
167
169
  set: function (a) {
168
- this.r = a;
170
+ this.s = a;
169
171
  this.g("AllowPinning");
170
172
  },
171
173
  enumerable: false,
@@ -173,21 +175,32 @@ var WebContentPaneDescription = /** @class */ /*@__PURE__*/ (function (_super) {
173
175
  });
174
176
  Object.defineProperty(WebContentPaneDescription.prototype, "allowDocking", {
175
177
  get: function () {
176
- return this.o;
178
+ return this.p;
177
179
  },
178
180
  set: function (a) {
179
- this.o = a;
181
+ this.p = a;
180
182
  this.g("AllowDocking");
181
183
  },
182
184
  enumerable: false,
183
185
  configurable: true
184
186
  });
187
+ Object.defineProperty(WebContentPaneDescription.prototype, "acceptsInnerDock", {
188
+ get: function () {
189
+ return this.n;
190
+ },
191
+ set: function (a) {
192
+ this.n = a;
193
+ this.g("AcceptsInnerDock");
194
+ },
195
+ enumerable: false,
196
+ configurable: true
197
+ });
185
198
  Object.defineProperty(WebContentPaneDescription.prototype, "allowFloating", {
186
199
  get: function () {
187
- return this.p;
200
+ return this.q;
188
201
  },
189
202
  set: function (a) {
190
- this.p = a;
203
+ this.q = a;
191
204
  this.g("AllowFloating");
192
205
  },
193
206
  enumerable: false,
@@ -195,10 +208,10 @@ var WebContentPaneDescription = /** @class */ /*@__PURE__*/ (function (_super) {
195
208
  });
196
209
  Object.defineProperty(WebContentPaneDescription.prototype, "unpinnedSize", {
197
210
  get: function () {
198
- return this.ag;
211
+ return this.ak;
199
212
  },
200
213
  set: function (a) {
201
- this.ag = a;
214
+ this.ak = a;
202
215
  this.g("UnpinnedSize");
203
216
  },
204
217
  enumerable: false,
@@ -206,21 +219,32 @@ var WebContentPaneDescription = /** @class */ /*@__PURE__*/ (function (_super) {
206
219
  });
207
220
  Object.defineProperty(WebContentPaneDescription.prototype, "isPinned", {
208
221
  get: function () {
209
- return this.v;
222
+ return this.x;
210
223
  },
211
224
  set: function (a) {
212
- this.v = a;
225
+ this.x = a;
213
226
  this.g("IsPinned");
214
227
  },
215
228
  enumerable: false,
216
229
  configurable: true
217
230
  });
231
+ Object.defineProperty(WebContentPaneDescription.prototype, "isMaximized", {
232
+ get: function () {
233
+ return this.w;
234
+ },
235
+ set: function (a) {
236
+ this.w = a;
237
+ this.g("IsMaximized");
238
+ },
239
+ enumerable: false,
240
+ configurable: true
241
+ });
218
242
  Object.defineProperty(WebContentPaneDescription.prototype, "unpinnedLocation", {
219
243
  get: function () {
220
- return this.as;
244
+ return this.aw;
221
245
  },
222
246
  set: function (a) {
223
- this.as = a;
247
+ this.aw = a;
224
248
  this.g("UnpinnedLocation");
225
249
  },
226
250
  enumerable: false,
@@ -228,10 +252,10 @@ var WebContentPaneDescription = /** @class */ /*@__PURE__*/ (function (_super) {
228
252
  });
229
253
  Object.defineProperty(WebContentPaneDescription.prototype, "hidden", {
230
254
  get: function () {
231
- return this.u;
255
+ return this.v;
232
256
  },
233
257
  set: function (a) {
234
- this.u = a;
258
+ this.v = a;
235
259
  this.g("Hidden");
236
260
  },
237
261
  enumerable: false,
@@ -239,10 +263,10 @@ var WebContentPaneDescription = /** @class */ /*@__PURE__*/ (function (_super) {
239
263
  });
240
264
  Object.defineProperty(WebContentPaneDescription.prototype, "disabled", {
241
265
  get: function () {
242
- return this.s;
266
+ return this.t;
243
267
  },
244
268
  set: function (a) {
245
- this.s = a;
269
+ this.t = a;
246
270
  this.g("Disabled");
247
271
  },
248
272
  enumerable: false,
@@ -250,10 +274,10 @@ var WebContentPaneDescription = /** @class */ /*@__PURE__*/ (function (_super) {
250
274
  });
251
275
  Object.defineProperty(WebContentPaneDescription.prototype, "documentOnly", {
252
276
  get: function () {
253
- return this.t;
277
+ return this.u;
254
278
  },
255
279
  set: function (a) {
256
- this.t = a;
280
+ this.u = a;
257
281
  this.g("DocumentOnly");
258
282
  },
259
283
  enumerable: false,
@@ -47,9 +47,11 @@ var WebContentPaneDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_
47
47
  a.item("AllowMaximize", "Boolean");
48
48
  a.item("AllowPinning", "Boolean");
49
49
  a.item("AllowDocking", "Boolean");
50
+ a.item("AcceptsInnerDock", "Boolean");
50
51
  a.item("AllowFloating", "Boolean");
51
52
  a.item("UnpinnedSize", "Number:double");
52
53
  a.item("IsPinned", "Boolean");
54
+ a.item("IsMaximized", "Boolean");
53
55
  a.item("UnpinnedLocation", "ExportedType:string:UnpinnedLocation");
54
56
  a.item("UnpinnedLocation@stringUnion", "WebComponents;React");
55
57
  a.item("UnpinnedLocation@names", "Top;Bottom;Left;Right");
@@ -18,13 +18,14 @@ var WebDockManagerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
18
18
  _this.l = null;
19
19
  _this.p = null;
20
20
  _this.h = null;
21
- _this.u = false;
22
- _this.aa = null;
21
+ _this.v = false;
22
+ _this.ac = null;
23
23
  _this.m = null;
24
24
  _this.r = null;
25
25
  _this.t = false;
26
- _this.v = false;
27
- _this.z = null;
26
+ _this.w = false;
27
+ _this.u = false;
28
+ _this.ab = null;
28
29
  return _this;
29
30
  }
30
31
  WebDockManagerDescription.prototype.get_type = function () {
@@ -83,10 +84,10 @@ var WebDockManagerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
83
84
  });
84
85
  Object.defineProperty(WebDockManagerDescription.prototype, "allowMaximize", {
85
86
  get: function () {
86
- return this.u;
87
+ return this.v;
87
88
  },
88
89
  set: function (a) {
89
- this.u = a;
90
+ this.v = a;
90
91
  this.g("AllowMaximize");
91
92
  },
92
93
  enumerable: false,
@@ -94,10 +95,10 @@ var WebDockManagerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
94
95
  });
95
96
  Object.defineProperty(WebDockManagerDescription.prototype, "showHeaderIconOnHover", {
96
97
  get: function () {
97
- return this.aa;
98
+ return this.ac;
98
99
  },
99
100
  set: function (a) {
100
- this.aa = a;
101
+ this.ac = a;
101
102
  this.g("ShowHeaderIconOnHover");
102
103
  },
103
104
  enumerable: false,
@@ -138,21 +139,32 @@ var WebDockManagerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
138
139
  });
139
140
  Object.defineProperty(WebDockManagerDescription.prototype, "disableKeyboardNavigation", {
140
141
  get: function () {
141
- return this.v;
142
+ return this.w;
142
143
  },
143
144
  set: function (a) {
144
- this.v = a;
145
+ this.w = a;
145
146
  this.g("DisableKeyboardNavigation");
146
147
  },
147
148
  enumerable: false,
148
149
  configurable: true
149
150
  });
151
+ Object.defineProperty(WebDockManagerDescription.prototype, "allowInnerDock", {
152
+ get: function () {
153
+ return this.u;
154
+ },
155
+ set: function (a) {
156
+ this.u = a;
157
+ this.g("AllowInnerDock");
158
+ },
159
+ enumerable: false,
160
+ configurable: true
161
+ });
150
162
  Object.defineProperty(WebDockManagerDescription.prototype, "layoutChangeRef", {
151
163
  get: function () {
152
- return this.z;
164
+ return this.ab;
153
165
  },
154
166
  set: function (a) {
155
- this.z = a;
167
+ this.ab = a;
156
168
  this.g("LayoutChangeRef");
157
169
  },
158
170
  enumerable: false,
@@ -55,6 +55,7 @@ var WebDockManagerDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_
55
55
  a.item("ResourceStrings", "ExportedType:WebDockManagerResourceStrings");
56
56
  a.item("AllowFloatingPanesResize", "Boolean");
57
57
  a.item("DisableKeyboardNavigation", "Boolean");
58
+ a.item("AllowInnerDock", "Boolean");
58
59
  a.item("LayoutChangeRef", "EventRef::layoutChange:customEvent");
59
60
  };
60
61
  WebDockManagerDescriptionMetadata.d = function (a) {
@@ -14,8 +14,9 @@ var WebDockingIndicatorDescription = /** @class */ /*@__PURE__*/ (function (_sup
14
14
  __extends(WebDockingIndicatorDescription, _super);
15
15
  function WebDockingIndicatorDescription() {
16
16
  var _this = _super.call(this) || this;
17
- _this.j = null;
17
+ _this.k = null;
18
18
  _this.h = false;
19
+ _this.j = null;
19
20
  return _this;
20
21
  }
21
22
  WebDockingIndicatorDescription.prototype.get_type = function () {
@@ -30,10 +31,10 @@ var WebDockingIndicatorDescription = /** @class */ /*@__PURE__*/ (function (_sup
30
31
  });
31
32
  Object.defineProperty(WebDockingIndicatorDescription.prototype, "position", {
32
33
  get: function () {
33
- return this.j;
34
+ return this.k;
34
35
  },
35
36
  set: function (a) {
36
- this.j = a;
37
+ this.k = a;
37
38
  this.g("Position");
38
39
  },
39
40
  enumerable: false,
@@ -50,6 +51,17 @@ var WebDockingIndicatorDescription = /** @class */ /*@__PURE__*/ (function (_sup
50
51
  enumerable: false,
51
52
  configurable: true
52
53
  });
54
+ Object.defineProperty(WebDockingIndicatorDescription.prototype, "direction", {
55
+ get: function () {
56
+ return this.j;
57
+ },
58
+ set: function (a) {
59
+ this.j = a;
60
+ this.g("Direction");
61
+ },
62
+ enumerable: false,
63
+ configurable: true
64
+ });
53
65
  WebDockingIndicatorDescription.$t = markType(WebDockingIndicatorDescription, 'WebDockingIndicatorDescription', Description.$);
54
66
  return WebDockingIndicatorDescription;
55
67
  }(Description));
@@ -35,6 +35,7 @@ var WebDockingIndicatorDescriptionMetadata = /** @class */ /*@__PURE__*/ (functi
35
35
  a.item("Position@stringUnion", "WebComponents;React");
36
36
  a.item("Position@names", "Left;OuterLeft;Right;OuterRight;Top;OuterTop;Bottom;OuterBottom;Center");
37
37
  a.item("IsRoot", "Boolean");
38
+ a.item("Direction", "String");
38
39
  };
39
40
  WebDockingIndicatorDescriptionMetadata.d = function (a) {
40
41
  WebDockingIndicatorDescriptionMetadata.b(a);