igniteui-webcomponents-layouts 3.2.3 → 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.
Files changed (279) hide show
  1. package/bundles/igniteui-webcomponents-layouts.umd.js +7675 -276
  2. package/bundles/igniteui-webcomponents-layouts.umd.min.js +1 -1
  3. package/esm2015/lib/IExternalListPanel.js +11 -0
  4. package/esm2015/lib/IExternalToolPanel.js +11 -0
  5. package/esm2015/lib/IExternalToolbar.js +11 -0
  6. package/esm2015/lib/IListPanelView.js +11 -0
  7. package/esm2015/lib/IPropertyEditorPanelView.js +11 -0
  8. package/esm2015/lib/IToolPanelView.js +11 -0
  9. package/esm2015/lib/IToolbarView.js +11 -0
  10. package/esm2015/lib/ListPanel.js +7 -0
  11. package/esm2015/lib/ListPanelContentRefreshedEventArgs.js +19 -0
  12. package/esm2015/lib/ListPanelDataBindingEventArgs.js +22 -0
  13. package/esm2015/lib/ListPanelDataSourceNotificationBridge.js +7 -0
  14. package/esm2015/lib/ListPanelItemModel.js +62 -0
  15. package/esm2015/lib/ListPanelItemPresenter.js +20 -0
  16. package/esm2015/lib/ListPanelLayoutPanel.js +7 -0
  17. package/esm2015/lib/ListPanelOrientation.js +16 -0
  18. package/esm2015/lib/ListPanelTemplateHeightRequestedEventArgs.js +22 -0
  19. package/esm2015/lib/ListPanelTemplateItemUpdatingEventArgs.js +22 -0
  20. package/esm2015/lib/ListPanelTemplateWidthRequestedEventArgs.js +22 -0
  21. package/esm2015/lib/ListPanelView.js +7 -0
  22. package/esm2015/lib/ListPanelView_combined.js +972 -0
  23. package/esm2015/lib/PropertyEditorPanelView_combined.js +106 -106
  24. package/esm2015/lib/PropertyEditorPropertyDescription_combined.js +84 -58
  25. package/esm2015/lib/PropertyEditorTreeTransformer.js +1 -0
  26. package/esm2015/lib/PropertyEditorValueType.js +2 -1
  27. package/esm2015/lib/ToolAction.js +7 -0
  28. package/esm2015/lib/ToolActionCheckbox.js +7 -0
  29. package/esm2015/lib/ToolActionCollection.js +7 -0
  30. package/esm2015/lib/ToolActionEventDetail.js +7 -0
  31. package/esm2015/lib/ToolActionEventDetailCollection.js +7 -0
  32. package/esm2015/lib/ToolActionGroupHeader.js +7 -0
  33. package/esm2015/lib/ToolActionIconButton.js +7 -0
  34. package/esm2015/lib/ToolActionIconMenu.js +7 -0
  35. package/esm2015/lib/ToolActionLabel.js +7 -0
  36. package/esm2015/lib/ToolActionMeasurementContext.js +31 -0
  37. package/esm2015/lib/ToolActionMenuBase.js +7 -0
  38. package/esm2015/lib/ToolActionNumberInput.js +7 -0
  39. package/esm2015/lib/ToolActionPerformedEventArgs.js +7 -0
  40. package/esm2015/lib/ToolActionRadio.js +7 -0
  41. package/esm2015/lib/ToolActionSeparator.js +7 -0
  42. package/esm2015/lib/ToolCommandEventArgs.js +20 -0
  43. package/esm2015/lib/ToolPanel.js +7 -0
  44. package/esm2015/lib/ToolPanelContentRefreshedEventArgs.js +19 -0
  45. package/esm2015/lib/ToolPanelOrientation.js +16 -0
  46. package/esm2015/lib/ToolPanelView.js +7 -0
  47. package/esm2015/lib/ToolPanelView_combined.js +1699 -0
  48. package/esm2015/lib/Toolbar.js +7 -0
  49. package/esm2015/lib/ToolbarIconManager.js +40 -0
  50. package/esm2015/lib/ToolbarOrientation.js +16 -0
  51. package/esm2015/lib/ToolbarView.js +7 -0
  52. package/esm2015/lib/ToolbarView_combined.js +387 -0
  53. package/esm2015/lib/igc-list-panel-component.js +466 -0
  54. package/esm2015/lib/igc-list-panel-content-refreshed-event-args.js +24 -0
  55. package/esm2015/lib/igc-list-panel-item-model.js +57 -0
  56. package/esm2015/lib/igc-list-panel-module.js +17 -0
  57. package/esm2015/lib/igc-list-panel-template-height-requested-event-args.js +42 -0
  58. package/esm2015/lib/igc-list-panel-template-item-updating-event-args.js +51 -0
  59. package/esm2015/lib/igc-list-panel-template-width-requested-event-args.js +42 -0
  60. package/esm2015/lib/igc-popup-component.js +7 -0
  61. package/esm2015/lib/igc-property-editor-data-source.js +7 -2
  62. package/esm2015/lib/igc-property-editor-description-object.js +5 -0
  63. package/esm2015/lib/igc-property-editor-panel-component.js +6 -5
  64. package/esm2015/lib/igc-property-editor-property-description-component.js +33 -5
  65. package/esm2015/lib/igc-tool-action-checkbox-component.js +63 -0
  66. package/esm2015/lib/igc-tool-action-checkbox-module.js +16 -0
  67. package/esm2015/lib/igc-tool-action-collection.js +48 -0
  68. package/esm2015/lib/igc-tool-action-component.js +333 -0
  69. package/esm2015/lib/igc-tool-action-event-detail-collection.js +48 -0
  70. package/esm2015/lib/igc-tool-action-event-detail.js +91 -0
  71. package/esm2015/lib/igc-tool-action-group-header-component.js +63 -0
  72. package/esm2015/lib/igc-tool-action-group-header-module.js +16 -0
  73. package/esm2015/lib/igc-tool-action-icon-button-component.js +63 -0
  74. package/esm2015/lib/igc-tool-action-icon-button-module.js +16 -0
  75. package/esm2015/lib/igc-tool-action-icon-menu-component.js +63 -0
  76. package/esm2015/lib/igc-tool-action-icon-menu-module.js +16 -0
  77. package/esm2015/lib/igc-tool-action-label-component.js +63 -0
  78. package/esm2015/lib/igc-tool-action-label-module.js +16 -0
  79. package/esm2015/lib/igc-tool-action-menu-base-component.js +103 -0
  80. package/esm2015/lib/igc-tool-action-module.js +16 -0
  81. package/esm2015/lib/igc-tool-action-number-input-component.js +63 -0
  82. package/esm2015/lib/igc-tool-action-number-input-module.js +16 -0
  83. package/esm2015/lib/igc-tool-action-performed-event-args.js +86 -0
  84. package/esm2015/lib/igc-tool-action-radio-component.js +69 -0
  85. package/esm2015/lib/igc-tool-action-radio-module.js +16 -0
  86. package/esm2015/lib/igc-tool-action-separator-component.js +63 -0
  87. package/esm2015/lib/igc-tool-action-separator-module.js +16 -0
  88. package/esm2015/lib/igc-tool-command-event-args.js +30 -0
  89. package/esm2015/lib/igc-tool-panel-component.js +386 -0
  90. package/esm2015/lib/igc-tool-panel-content-refreshed-event-args.js +24 -0
  91. package/esm2015/lib/igc-tool-panel-module.js +29 -0
  92. package/esm2015/lib/igc-toolbar-component.js +417 -0
  93. package/esm2015/lib/igc-toolbar-module.js +19 -0
  94. package/esm2015/lib/igc-x-expansion-panel-component.js +7 -0
  95. package/esm2015/public_api.js +79 -0
  96. package/esm5/lib/IExternalListPanel.js +11 -0
  97. package/esm5/lib/IExternalToolPanel.js +11 -0
  98. package/esm5/lib/IExternalToolbar.js +11 -0
  99. package/esm5/lib/IListPanelView.js +11 -0
  100. package/esm5/lib/IPropertyEditorPanelView.js +11 -0
  101. package/esm5/lib/IToolPanelView.js +11 -0
  102. package/esm5/lib/IToolbarView.js +11 -0
  103. package/esm5/lib/ListPanel.js +7 -0
  104. package/esm5/lib/ListPanelContentRefreshedEventArgs.js +20 -0
  105. package/esm5/lib/ListPanelDataBindingEventArgs.js +24 -0
  106. package/esm5/lib/ListPanelDataSourceNotificationBridge.js +7 -0
  107. package/esm5/lib/ListPanelItemModel.js +80 -0
  108. package/esm5/lib/ListPanelItemPresenter.js +22 -0
  109. package/esm5/lib/ListPanelLayoutPanel.js +7 -0
  110. package/esm5/lib/ListPanelOrientation.js +16 -0
  111. package/esm5/lib/ListPanelTemplateHeightRequestedEventArgs.js +24 -0
  112. package/esm5/lib/ListPanelTemplateItemUpdatingEventArgs.js +24 -0
  113. package/esm5/lib/ListPanelTemplateWidthRequestedEventArgs.js +24 -0
  114. package/esm5/lib/ListPanelView.js +7 -0
  115. package/esm5/lib/ListPanelView_combined.js +1045 -0
  116. package/esm5/lib/PropertyEditorPanelView_combined.js +106 -106
  117. package/esm5/lib/PropertyEditorPropertyDescription_combined.js +82 -57
  118. package/esm5/lib/PropertyEditorTreeTransformer.js +1 -0
  119. package/esm5/lib/PropertyEditorValueType.js +2 -1
  120. package/esm5/lib/ToolAction.js +7 -0
  121. package/esm5/lib/ToolActionCheckbox.js +7 -0
  122. package/esm5/lib/ToolActionCollection.js +7 -0
  123. package/esm5/lib/ToolActionEventDetail.js +7 -0
  124. package/esm5/lib/ToolActionEventDetailCollection.js +7 -0
  125. package/esm5/lib/ToolActionGroupHeader.js +7 -0
  126. package/esm5/lib/ToolActionIconButton.js +7 -0
  127. package/esm5/lib/ToolActionIconMenu.js +7 -0
  128. package/esm5/lib/ToolActionLabel.js +7 -0
  129. package/esm5/lib/ToolActionMeasurementContext.js +33 -0
  130. package/esm5/lib/ToolActionMenuBase.js +7 -0
  131. package/esm5/lib/ToolActionNumberInput.js +7 -0
  132. package/esm5/lib/ToolActionPerformedEventArgs.js +7 -0
  133. package/esm5/lib/ToolActionRadio.js +7 -0
  134. package/esm5/lib/ToolActionSeparator.js +7 -0
  135. package/esm5/lib/ToolCommandEventArgs.js +22 -0
  136. package/esm5/lib/ToolPanel.js +7 -0
  137. package/esm5/lib/ToolPanelContentRefreshedEventArgs.js +20 -0
  138. package/esm5/lib/ToolPanelOrientation.js +16 -0
  139. package/esm5/lib/ToolPanelView.js +7 -0
  140. package/esm5/lib/ToolPanelView_combined.js +1853 -0
  141. package/esm5/lib/Toolbar.js +7 -0
  142. package/esm5/lib/ToolbarIconManager.js +44 -0
  143. package/esm5/lib/ToolbarOrientation.js +16 -0
  144. package/esm5/lib/ToolbarView.js +7 -0
  145. package/esm5/lib/ToolbarView_combined.js +459 -0
  146. package/esm5/lib/igc-list-panel-component.js +544 -0
  147. package/esm5/lib/igc-list-panel-content-refreshed-event-args.js +30 -0
  148. package/esm5/lib/igc-list-panel-item-model.js +79 -0
  149. package/esm5/lib/igc-list-panel-module.js +21 -0
  150. package/esm5/lib/igc-list-panel-template-height-requested-event-args.js +60 -0
  151. package/esm5/lib/igc-list-panel-template-item-updating-event-args.js +65 -0
  152. package/esm5/lib/igc-list-panel-template-width-requested-event-args.js +60 -0
  153. package/esm5/lib/igc-popup-component.js +7 -0
  154. package/esm5/lib/igc-property-editor-data-source.js +7 -2
  155. package/esm5/lib/igc-property-editor-description-object.js +5 -0
  156. package/esm5/lib/igc-property-editor-panel-component.js +6 -5
  157. package/esm5/lib/igc-property-editor-property-description-component.js +33 -5
  158. package/esm5/lib/igc-tool-action-checkbox-component.js +72 -0
  159. package/esm5/lib/igc-tool-action-checkbox-module.js +20 -0
  160. package/esm5/lib/igc-tool-action-collection.js +53 -0
  161. package/esm5/lib/igc-tool-action-component.js +409 -0
  162. package/esm5/lib/igc-tool-action-event-detail-collection.js +53 -0
  163. package/esm5/lib/igc-tool-action-event-detail.js +125 -0
  164. package/esm5/lib/igc-tool-action-group-header-component.js +72 -0
  165. package/esm5/lib/igc-tool-action-group-header-module.js +20 -0
  166. package/esm5/lib/igc-tool-action-icon-button-component.js +72 -0
  167. package/esm5/lib/igc-tool-action-icon-button-module.js +20 -0
  168. package/esm5/lib/igc-tool-action-icon-menu-component.js +72 -0
  169. package/esm5/lib/igc-tool-action-icon-menu-module.js +20 -0
  170. package/esm5/lib/igc-tool-action-label-component.js +72 -0
  171. package/esm5/lib/igc-tool-action-label-module.js +20 -0
  172. package/esm5/lib/igc-tool-action-menu-base-component.js +117 -0
  173. package/esm5/lib/igc-tool-action-module.js +20 -0
  174. package/esm5/lib/igc-tool-action-number-input-component.js +72 -0
  175. package/esm5/lib/igc-tool-action-number-input-module.js +20 -0
  176. package/esm5/lib/igc-tool-action-performed-event-args.js +104 -0
  177. package/esm5/lib/igc-tool-action-radio-component.js +82 -0
  178. package/esm5/lib/igc-tool-action-radio-module.js +20 -0
  179. package/esm5/lib/igc-tool-action-separator-component.js +72 -0
  180. package/esm5/lib/igc-tool-action-separator-module.js +20 -0
  181. package/esm5/lib/igc-tool-command-event-args.js +40 -0
  182. package/esm5/lib/igc-tool-panel-component.js +456 -0
  183. package/esm5/lib/igc-tool-panel-content-refreshed-event-args.js +30 -0
  184. package/esm5/lib/igc-tool-panel-module.js +33 -0
  185. package/esm5/lib/igc-toolbar-component.js +489 -0
  186. package/esm5/lib/igc-toolbar-module.js +23 -0
  187. package/esm5/lib/igc-x-expansion-panel-component.js +7 -0
  188. package/esm5/public_api.js +79 -0
  189. package/fesm2015/igniteui-webcomponents-layouts.js +6751 -262
  190. package/fesm5/igniteui-webcomponents-layouts.js +7595 -278
  191. package/lib/IExternalListPanel.d.ts +13 -0
  192. package/lib/IExternalToolPanel.d.ts +13 -0
  193. package/lib/IExternalToolbar.d.ts +13 -0
  194. package/lib/IListPanelView.d.ts +25 -0
  195. package/lib/IPropertyEditorPanelView.d.ts +26 -0
  196. package/lib/IToolPanelView.d.ts +25 -0
  197. package/lib/IToolbarView.d.ts +25 -0
  198. package/lib/ListPanel.d.ts +1 -0
  199. package/lib/ListPanelContentRefreshedEventArgs.d.ts +8 -0
  200. package/lib/ListPanelDataBindingEventArgs.d.ts +10 -0
  201. package/lib/ListPanelDataSourceNotificationBridge.d.ts +1 -0
  202. package/lib/ListPanelItemModel.d.ts +22 -0
  203. package/lib/ListPanelItemPresenter.d.ts +9 -0
  204. package/lib/ListPanelLayoutPanel.d.ts +1 -0
  205. package/lib/ListPanelOrientation.d.ts +9 -0
  206. package/lib/ListPanelTemplateHeightRequestedEventArgs.d.ts +10 -0
  207. package/lib/ListPanelTemplateItemUpdatingEventArgs.d.ts +12 -0
  208. package/lib/ListPanelTemplateWidthRequestedEventArgs.d.ts +10 -0
  209. package/lib/ListPanelView.d.ts +1 -0
  210. package/lib/ListPanelView_combined.d.ts +197 -0
  211. package/lib/PropertyEditorPanelView_combined.d.ts +1 -1
  212. package/lib/PropertyEditorPropertyDescription_combined.d.ts +13 -10
  213. package/lib/PropertyEditorValueType.d.ts +2 -1
  214. package/lib/ToolAction.d.ts +1 -0
  215. package/lib/ToolActionCheckbox.d.ts +1 -0
  216. package/lib/ToolActionCollection.d.ts +1 -0
  217. package/lib/ToolActionEventDetail.d.ts +1 -0
  218. package/lib/ToolActionEventDetailCollection.d.ts +1 -0
  219. package/lib/ToolActionGroupHeader.d.ts +1 -0
  220. package/lib/ToolActionIconButton.d.ts +1 -0
  221. package/lib/ToolActionIconMenu.d.ts +1 -0
  222. package/lib/ToolActionLabel.d.ts +1 -0
  223. package/lib/ToolActionMeasurementContext.d.ts +16 -0
  224. package/lib/ToolActionMenuBase.d.ts +1 -0
  225. package/lib/ToolActionNumberInput.d.ts +1 -0
  226. package/lib/ToolActionPerformedEventArgs.d.ts +1 -0
  227. package/lib/ToolActionRadio.d.ts +1 -0
  228. package/lib/ToolActionSeparator.d.ts +1 -0
  229. package/lib/ToolCommandEventArgs.d.ts +10 -0
  230. package/lib/ToolPanel.d.ts +1 -0
  231. package/lib/ToolPanelContentRefreshedEventArgs.d.ts +8 -0
  232. package/lib/ToolPanelOrientation.d.ts +9 -0
  233. package/lib/ToolPanelView.d.ts +1 -0
  234. package/lib/ToolPanelView_combined.d.ts +355 -0
  235. package/lib/Toolbar.d.ts +1 -0
  236. package/lib/ToolbarIconManager.d.ts +10 -0
  237. package/lib/ToolbarOrientation.d.ts +9 -0
  238. package/lib/ToolbarView.d.ts +1 -0
  239. package/lib/ToolbarView_combined.d.ts +98 -0
  240. package/lib/igc-list-panel-component.d.ts +122 -0
  241. package/lib/igc-list-panel-content-refreshed-event-args.d.ts +12 -0
  242. package/lib/igc-list-panel-item-model.d.ts +17 -0
  243. package/lib/igc-list-panel-module.d.ts +3 -0
  244. package/lib/igc-list-panel-template-height-requested-event-args.d.ts +15 -0
  245. package/lib/igc-list-panel-template-item-updating-event-args.d.ts +15 -0
  246. package/lib/igc-list-panel-template-width-requested-event-args.d.ts +15 -0
  247. package/lib/igc-property-editor-panel-component.d.ts +0 -2
  248. package/lib/igc-property-editor-property-description-component.d.ts +1 -0
  249. package/lib/igc-tool-action-checkbox-component.d.ts +17 -0
  250. package/lib/igc-tool-action-checkbox-module.d.ts +3 -0
  251. package/lib/igc-tool-action-collection.d.ts +8 -0
  252. package/lib/igc-tool-action-component.d.ts +65 -0
  253. package/lib/igc-tool-action-event-detail-collection.d.ts +8 -0
  254. package/lib/igc-tool-action-event-detail.d.ts +22 -0
  255. package/lib/igc-tool-action-group-header-component.d.ts +17 -0
  256. package/lib/igc-tool-action-group-header-module.d.ts +3 -0
  257. package/lib/igc-tool-action-icon-button-component.d.ts +17 -0
  258. package/lib/igc-tool-action-icon-button-module.d.ts +3 -0
  259. package/lib/igc-tool-action-icon-menu-component.d.ts +17 -0
  260. package/lib/igc-tool-action-icon-menu-module.d.ts +3 -0
  261. package/lib/igc-tool-action-label-component.d.ts +17 -0
  262. package/lib/igc-tool-action-label-module.d.ts +3 -0
  263. package/lib/igc-tool-action-menu-base-component.d.ts +25 -0
  264. package/lib/igc-tool-action-module.d.ts +3 -0
  265. package/lib/igc-tool-action-number-input-component.d.ts +17 -0
  266. package/lib/igc-tool-action-number-input-module.d.ts +3 -0
  267. package/lib/igc-tool-action-performed-event-args.d.ts +18 -0
  268. package/lib/igc-tool-action-radio-component.d.ts +18 -0
  269. package/lib/igc-tool-action-radio-module.d.ts +3 -0
  270. package/lib/igc-tool-action-separator-component.d.ts +17 -0
  271. package/lib/igc-tool-action-separator-module.d.ts +3 -0
  272. package/lib/igc-tool-command-event-args.d.ts +14 -0
  273. package/lib/igc-tool-panel-component.d.ts +83 -0
  274. package/lib/igc-tool-panel-content-refreshed-event-args.d.ts +12 -0
  275. package/lib/igc-tool-panel-module.d.ts +3 -0
  276. package/lib/igc-toolbar-component.d.ts +89 -0
  277. package/lib/igc-toolbar-module.d.ts +3 -0
  278. package/package.json +3 -3
  279. package/public_api.d.ts +79 -0
@@ -83,10 +83,10 @@ var PropertyEditorPanelView = /** @class */ /*@__PURE__*/ (function (_super) {
83
83
  this.e = new RenderingContext(new CanvasViewRenderer(), this.i.get2DCanvasContext(this.l));
84
84
  this.k = this.i.createElement("div");
85
85
  this.y();
86
- NativeUIComponent.z(this.p(), 7, function (b) {
86
+ NativeUIComponent.aa(this.p(), 7, function (b) {
87
87
  var c = b;
88
88
  _this.a.dh(c, _this.n);
89
- _this.i.append(c.u);
89
+ _this.i.append(c.v);
90
90
  });
91
91
  var b = Math.round(a.rootWrapper.width());
92
92
  var c = Math.round(a.rootWrapper.height());
@@ -193,14 +193,14 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
193
193
  _this.bo = 0;
194
194
  _this.bl = -1;
195
195
  _this.k = null;
196
- NativeUIInputsFactory.k();
196
+ NativeUIInputsFactory.m();
197
197
  _this.ap = new ObservableCollection$1(PropertyEditorPanelColumnDefinition.$, 0);
198
198
  var a = new PropertyEditorPanelView();
199
199
  a.a = _this;
200
- var b = _this.properties;
201
- b.collectionChanged = delegateCombine(b.collectionChanged, runOn(_this, _this.dx));
202
200
  _this.l = a;
203
201
  _this.l.v();
202
+ var b = _this.properties;
203
+ b.collectionChanged = delegateCombine(b.collectionChanged, runOn(_this, _this.dx));
204
204
  return _this;
205
205
  }
206
206
  Object.defineProperty(PropertyEditorPanel.prototype, "x", {
@@ -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.l = this.b2;
417
+ this.k.n = this.b2;
418
418
  }
419
419
  if (this.properties == null || this.properties.count == 0) {
420
- if (this.k.g != null) {
421
- this.actualProperties = this.k.g;
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.g != null) {
468
- this.actualProperties = this.k.g;
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.d(d, false);
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.az < c + 1) {
613
- this_1.v.a1(c, 1, this_1.ar);
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.a7(c, 1, this_1.ar);
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));
@@ -622,24 +622,24 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
622
622
  var _loop_2 = function (f) {
623
623
  var g = this_1.ap._inner[f];
624
624
  if (e.count < f + 1) {
625
- NativeUIComponent.aa(this_1.l.p(), 0, function (h) {
625
+ NativeUIComponent.ac(this_1.l.p(), 0, function (h) {
626
626
  var i = h;
627
627
  i.e = 1;
628
628
  if (g.a == 0) {
629
629
  i.d = 2;
630
630
  }
631
- i.an = new Thickness(1, 5, 5, 5, 0);
632
- _this.v.as(i);
633
- _this.v.a5(i, c);
634
- _this.v.a4(i, f);
631
+ i.ar = new Thickness(1, 5, 5, 5, 0);
632
+ _this.v.aw(i);
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.aw < f + 1) {
639
- this_1.v.a0(f, 1, g.h);
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.a6(f, 1, g.h);
642
+ this_1.v.bc(f, 1, g.h);
643
643
  }
644
644
  var h = e._inner[f];
645
645
  var i = "PropertyPath";
@@ -658,7 +658,7 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
658
658
  }
659
659
  if (l == null) {
660
660
  var m = h;
661
- m.aw = null;
661
+ m.a0 = null;
662
662
  }
663
663
  };
664
664
  for (var f = 0; f < this_1.ap.count; f++) {
@@ -670,18 +670,18 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
670
670
  _loop_1(b);
671
671
  }
672
672
  var n = new HashSet$1(NativeUIComponent.$, 0);
673
- for (var o = this.v.ar - 1; o >= 0; o--) {
674
- var p = this.v.aq(o);
675
- var q = this.v.ay(p);
676
- var r = this.v.ax(p);
673
+ for (var o = this.v.av - 1; o >= 0; o--) {
674
+ var p = this.v.au(o);
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
  }
680
680
  }
681
- for (var s = this.v.ar - 1; s >= 0; s--) {
682
- var t = this.v.aq(s);
681
+ for (var s = this.v.av - 1; s >= 0; s--) {
682
+ var t = this.v.au(s);
683
683
  if (n.contains(t)) {
684
- this.v.au(s);
684
+ this.v.ay(s);
685
685
  }
686
686
  }
687
687
  for (var u = this.an.count - 1; u >= 0; u--) {
@@ -695,11 +695,11 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
695
695
  this.an.removeAt(u);
696
696
  }
697
697
  }
698
- while (this.v.az > a) {
699
- this.v.a3(this.v.az - 1);
698
+ while (this.v.a5 > a) {
699
+ this.v.a9(this.v.a5 - 1);
700
700
  }
701
- while (this.v.aw > this.ap.count) {
702
- this.v.a2(this.v.aw - 1);
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) {
@@ -1166,35 +1166,35 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
1166
1166
  PropertyEditorPanel.prototype.c7 = function (a, b) {
1167
1167
  var _this = this;
1168
1168
  this.cq(b, function (c, d) {
1169
- c.ap = _this.u();
1169
+ c.at = _this.u();
1170
1170
  c.e = 1;
1171
1171
  var e = _this.m(a, b.b, b.c);
1172
- c.v = e;
1173
- c.aq = _this.b5(e);
1172
+ c.w = e;
1173
+ c.au = _this.b5(e);
1174
1174
  });
1175
1175
  };
1176
1176
  PropertyEditorPanel.prototype.c6 = function (a, b) {
1177
1177
  var _this = this;
1178
1178
  this.cp(b, function (c, d) {
1179
1179
  c.e = 1;
1180
- c.at = 1;
1181
- c.aq = 2;
1180
+ c.ax = 1;
1181
+ c.au = 2;
1182
1182
  var e = _this.m(a, b.b, b.c);
1183
- c.v = e;
1184
- c.au = (e.ad != null ? e.ad.toString() : "");
1183
+ c.w = e;
1184
+ c.ay = (e.ad != null ? e.ad.toString() : "");
1185
1185
  if (d) {
1186
- c.as = runOn(_this, _this.di);
1186
+ c.aw = runOn(_this, _this.di);
1187
1187
  }
1188
1188
  });
1189
1189
  };
1190
1190
  PropertyEditorPanel.prototype.cq = function (a, b) {
1191
1191
  var c = a.a;
1192
- var d = c.aw;
1192
+ var d = c.a0;
1193
1193
  var e = false;
1194
1194
  if (d == null || d.c != 3) {
1195
1195
  e = true;
1196
- NativeUIComponent.z(this.l.p(), 3, function (f) {
1197
- c.aw = f;
1196
+ NativeUIComponent.aa(this.l.p(), 3, function (f) {
1197
+ c.a0 = f;
1198
1198
  b(f, e);
1199
1199
  });
1200
1200
  return;
@@ -1203,12 +1203,12 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
1203
1203
  };
1204
1204
  PropertyEditorPanel.prototype.cp = function (a, b) {
1205
1205
  var c = a.a;
1206
- var d = c.aw;
1206
+ var d = c.a0;
1207
1207
  var e = false;
1208
1208
  if (d == null || d.c != 2) {
1209
1209
  e = true;
1210
- NativeUIComponent.z(this.l.p(), 2, function (f) {
1211
- c.aw = f;
1210
+ NativeUIComponent.aa(this.l.p(), 2, function (f) {
1211
+ c.a0 = f;
1212
1212
  b(f, e);
1213
1213
  });
1214
1214
  return;
@@ -1217,12 +1217,12 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
1217
1217
  };
1218
1218
  PropertyEditorPanel.prototype.cm = function (a, b) {
1219
1219
  var c = a.a;
1220
- var d = c.aw;
1220
+ var d = c.a0;
1221
1221
  var e = false;
1222
1222
  if (d == null || d.c != 1) {
1223
1223
  e = true;
1224
- NativeUIComponent.z(this.l.p(), 1, function (f) {
1225
- c.aw = f;
1224
+ NativeUIComponent.aa(this.l.p(), 1, function (f) {
1225
+ c.a0 = f;
1226
1226
  b(f, e);
1227
1227
  });
1228
1228
  return;
@@ -1231,12 +1231,12 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
1231
1231
  };
1232
1232
  PropertyEditorPanel.prototype.cr = function (a, b) {
1233
1233
  var c = a.a;
1234
- var d = c.aw;
1234
+ var d = c.a0;
1235
1235
  var e = false;
1236
1236
  if (d == null || d.c != 5) {
1237
1237
  e = true;
1238
- NativeUIComponent.z(this.l.p(), 5, function (f) {
1239
- c.aw = f;
1238
+ NativeUIComponent.aa(this.l.p(), 5, function (f) {
1239
+ c.a0 = f;
1240
1240
  b(f, e);
1241
1241
  });
1242
1242
  return;
@@ -1245,12 +1245,12 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
1245
1245
  };
1246
1246
  PropertyEditorPanel.prototype.co = function (a, b) {
1247
1247
  var c = a.a;
1248
- var d = c.aw;
1248
+ var d = c.a0;
1249
1249
  var e = false;
1250
1250
  if (d == null || d.c != 4) {
1251
1251
  e = true;
1252
- NativeUIComponent.z(this.l.p(), 4, function (f) {
1253
- c.aw = f;
1252
+ NativeUIComponent.aa(this.l.p(), 4, function (f) {
1253
+ c.a0 = f;
1254
1254
  b(f, e);
1255
1255
  });
1256
1256
  return;
@@ -1259,12 +1259,12 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
1259
1259
  };
1260
1260
  PropertyEditorPanel.prototype.cn = function (a, b) {
1261
1261
  var c = a.a;
1262
- var d = c.aw;
1262
+ var d = c.a0;
1263
1263
  var e = false;
1264
1264
  if (d == null || d.c != 6) {
1265
1265
  e = true;
1266
- NativeUIComponent.z(this.l.p(), 6, function (f) {
1267
- c.aw = f;
1266
+ NativeUIComponent.aa(this.l.p(), 6, function (f) {
1267
+ c.a0 = f;
1268
1268
  b(f, e);
1269
1269
  });
1270
1270
  return;
@@ -1275,18 +1275,18 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
1275
1275
  var _this = this;
1276
1276
  this.cm(b, function (c, d) {
1277
1277
  c.e = 1;
1278
- if (c.ar != 2) {
1279
- c.ar = 2;
1278
+ if (c.av != 2) {
1279
+ c.av = 2;
1280
1280
  }
1281
1281
  var e = _this.m(a, b.b, b.c);
1282
- c.v = e;
1282
+ c.w = e;
1283
1283
  var f = e.ad;
1284
1284
  if (typeof e.ad === 'number' || typeof e.ad === 'number') {
1285
1285
  f = e.ad.toString();
1286
1286
  }
1287
- c.as = f;
1287
+ c.aw = f;
1288
1288
  if (d) {
1289
- c.aq = runOn(_this, _this.cd);
1289
+ c.au = runOn(_this, _this.cd);
1290
1290
  }
1291
1291
  });
1292
1292
  };
@@ -1295,7 +1295,7 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
1295
1295
  this.cr(b, function (c, d) {
1296
1296
  c.e = 1;
1297
1297
  var e = _this.m(a, b.b, b.c);
1298
- c.v = e;
1298
+ c.w = e;
1299
1299
  var f = e.ad;
1300
1300
  if (typeof e.ad === 'number' || typeof e.ad === 'number') {
1301
1301
  f = e.ad;
@@ -1309,35 +1309,35 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
1309
1309
  if (f == null) {
1310
1310
  f = 0;
1311
1311
  }
1312
- c.aw = f;
1312
+ c.a0 = f;
1313
1313
  if (!isNaN_(e.z)) {
1314
- c.au = e.z;
1314
+ c.ay = e.z;
1315
1315
  }
1316
1316
  else {
1317
- c.au = 0;
1317
+ c.ay = 0;
1318
1318
  }
1319
1319
  if (!isNaN_(e.y)) {
1320
- c.at = e.y;
1320
+ c.ax = e.y;
1321
1321
  }
1322
1322
  else {
1323
- c.at = 100;
1323
+ c.ax = 100;
1324
1324
  }
1325
1325
  if (!isNaN_(e.aa)) {
1326
- c.av = e.aa;
1326
+ c.az = e.aa;
1327
1327
  }
1328
1328
  else {
1329
- c.av = 1;
1329
+ c.az = 1;
1330
1330
  }
1331
1331
  if (d) {
1332
- c.as = runOn(_this, _this.d3);
1332
+ c.aw = runOn(_this, _this.d3);
1333
1333
  }
1334
1334
  });
1335
1335
  };
1336
1336
  PropertyEditorPanel.prototype.d3 = function (a, b) {
1337
1337
  var c = a;
1338
- var d = c.v;
1338
+ var d = c.w;
1339
1339
  this.af = true;
1340
- d.ad = c.aw;
1340
+ d.ad = c.a0;
1341
1341
  this.af = false;
1342
1342
  this.dv(d);
1343
1343
  };
@@ -1345,44 +1345,44 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
1345
1345
  var _this = this;
1346
1346
  this.co(b, function (c, d) {
1347
1347
  c.e = 1;
1348
- if (c.ap != 2) {
1349
- c.ap = 2;
1348
+ if (c.at != 2) {
1349
+ c.at = 2;
1350
1350
  }
1351
1351
  var e = _this.m(a, b.b, b.c);
1352
- if (c.v != e) {
1352
+ if (c.w != e) {
1353
1353
  {
1354
- c.ar = null;
1354
+ c.av = null;
1355
1355
  }
1356
- c.v = e;
1357
- c.at = null;
1358
- c.as = _this.b(_this.a(e));
1359
- if (e.ad != c.at) {
1356
+ c.w = e;
1357
+ c.ax = null;
1358
+ c.aw = _this.b(_this.a(e));
1359
+ if (e.ad != c.ax) {
1360
1360
  if (typeof e.ad === 'number' || typeof e.ad === 'number') {
1361
- c.at = e.ad.toString();
1361
+ c.ax = e.ad.toString();
1362
1362
  }
1363
1363
  else {
1364
- c.at = e.ad;
1364
+ c.ax = e.ad;
1365
1365
  }
1366
1366
  }
1367
1367
  {
1368
- c.ar = runOn(_this, _this.ch);
1368
+ c.av = runOn(_this, _this.ch);
1369
1369
  }
1370
1370
  }
1371
1371
  else {
1372
- if (e.ad != c.at) {
1372
+ if (e.ad != c.ax) {
1373
1373
  if (typeof e.ad === 'number' || typeof e.ad === 'number') {
1374
- c.at = e.ad.toString();
1374
+ c.ax = e.ad.toString();
1375
1375
  }
1376
1376
  else {
1377
- c.at = e.ad;
1377
+ c.ax = e.ad;
1378
1378
  }
1379
1379
  }
1380
1380
  }
1381
1381
  if (d) {
1382
- if (c.ar == null) {
1383
- c.ar = runOn(_this, _this.ch);
1382
+ if (c.av == null) {
1383
+ c.av = runOn(_this, _this.ch);
1384
1384
  }
1385
- c.ah = BrushUtil.g(255, 255, 255, 255);
1385
+ c.aj = BrushUtil.g(255, 255, 255, 255);
1386
1386
  }
1387
1387
  });
1388
1388
  };
@@ -1394,25 +1394,25 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
1394
1394
  };
1395
1395
  PropertyEditorPanel.prototype.ch = function (a, b) {
1396
1396
  var c = a;
1397
- var d = c.v;
1397
+ var d = c.w;
1398
1398
  this.af = true;
1399
- d.ad = c.at;
1399
+ d.ad = c.ax;
1400
1400
  d.am();
1401
1401
  this.af = false;
1402
1402
  this.dv(d);
1403
1403
  };
1404
1404
  PropertyEditorPanel.prototype.di = function (a, b) {
1405
1405
  var c = a;
1406
- var d = c.v;
1406
+ var d = c.w;
1407
1407
  this.af = true;
1408
1408
  if (d.n == 1) {
1409
1409
  var e = 0;
1410
- var f = tryParseNumber(c.au, e);
1410
+ var f = tryParseNumber(c.ay, e);
1411
1411
  e = f.p1;
1412
1412
  d.ad = e;
1413
1413
  }
1414
1414
  else {
1415
- d.ad = c.au;
1415
+ d.ad = c.ay;
1416
1416
  }
1417
1417
  d.am();
1418
1418
  this.af = false;
@@ -1420,7 +1420,7 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
1420
1420
  };
1421
1421
  PropertyEditorPanel.prototype.cd = function (a, b) {
1422
1422
  var c = a;
1423
- var d = c.v;
1423
+ var d = c.w;
1424
1424
  this.af = true;
1425
1425
  d.an();
1426
1426
  this.af = false;
@@ -1574,8 +1574,8 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
1574
1574
  var _this = this;
1575
1575
  this.cn(b, function (c, d) {
1576
1576
  c.e = 1;
1577
- if (!c.ar) {
1578
- c.ar = true;
1577
+ if (!c.av) {
1578
+ c.av = true;
1579
1579
  }
1580
1580
  var e = _this.m(a, b.b, b.c);
1581
1581
  var f = e.ad;
@@ -1611,10 +1611,10 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
1611
1611
  }
1612
1612
  }
1613
1613
  var k = f;
1614
- c.as = k;
1615
- c.v = e;
1614
+ c.aw = k;
1615
+ c.w = e;
1616
1616
  if (d) {
1617
- c.aq = runOn(_this, _this.cf);
1617
+ c.au = runOn(_this, _this.cf);
1618
1618
  }
1619
1619
  });
1620
1620
  };
@@ -1640,9 +1640,9 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
1640
1640
  };
1641
1641
  PropertyEditorPanel.prototype.cf = function (a, b) {
1642
1642
  var c = a;
1643
- var d = c.v;
1643
+ var d = c.w;
1644
1644
  this.af = true;
1645
- d.ad = c.as;
1645
+ d.ad = c.aw;
1646
1646
  d.am();
1647
1647
  this.af = false;
1648
1648
  this.dv(d);