igniteui-webcomponents-layouts 3.2.2 → 3.2.4

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 (244) hide show
  1. package/bundles/igniteui-webcomponents-layouts.umd.js +6913 -146
  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 +100 -100
  24. package/esm2015/lib/PropertyEditorTreeTransformer.js +8 -8
  25. package/esm2015/lib/ToolAction.js +7 -0
  26. package/esm2015/lib/ToolActionCheckbox.js +7 -0
  27. package/esm2015/lib/ToolActionCollection.js +7 -0
  28. package/esm2015/lib/ToolActionEventDetail.js +7 -0
  29. package/esm2015/lib/ToolActionEventDetailCollection.js +7 -0
  30. package/esm2015/lib/ToolActionGroupHeader.js +7 -0
  31. package/esm2015/lib/ToolActionIconButton.js +7 -0
  32. package/esm2015/lib/ToolActionIconMenu.js +7 -0
  33. package/esm2015/lib/ToolActionMeasurementContext.js +31 -0
  34. package/esm2015/lib/ToolActionMenuBase.js +7 -0
  35. package/esm2015/lib/ToolActionNumberInput.js +7 -0
  36. package/esm2015/lib/ToolActionPerformedEventArgs.js +7 -0
  37. package/esm2015/lib/ToolActionSeparator.js +7 -0
  38. package/esm2015/lib/ToolCommandEventArgs.js +20 -0
  39. package/esm2015/lib/ToolPanel.js +7 -0
  40. package/esm2015/lib/ToolPanelContentRefreshedEventArgs.js +19 -0
  41. package/esm2015/lib/ToolPanelOrientation.js +16 -0
  42. package/esm2015/lib/ToolPanelView.js +7 -0
  43. package/esm2015/lib/ToolPanelView_combined.js +1515 -0
  44. package/esm2015/lib/Toolbar.js +7 -0
  45. package/esm2015/lib/ToolbarIconManager.js +40 -0
  46. package/esm2015/lib/ToolbarOrientation.js +16 -0
  47. package/esm2015/lib/ToolbarView.js +7 -0
  48. package/esm2015/lib/ToolbarView_combined.js +387 -0
  49. package/esm2015/lib/igc-list-panel-component.js +457 -0
  50. package/esm2015/lib/igc-list-panel-content-refreshed-event-args.js +24 -0
  51. package/esm2015/lib/igc-list-panel-item-model.js +52 -0
  52. package/esm2015/lib/igc-list-panel-module.js +17 -0
  53. package/esm2015/lib/igc-list-panel-template-height-requested-event-args.js +42 -0
  54. package/esm2015/lib/igc-list-panel-template-item-updating-event-args.js +45 -0
  55. package/esm2015/lib/igc-list-panel-template-width-requested-event-args.js +42 -0
  56. package/esm2015/lib/igc-property-editor-panel-component.js +1 -5
  57. package/esm2015/lib/igc-tool-action-checkbox-component.js +49 -0
  58. package/esm2015/lib/igc-tool-action-checkbox-module.js +16 -0
  59. package/esm2015/lib/igc-tool-action-collection.js +48 -0
  60. package/esm2015/lib/igc-tool-action-component.js +312 -0
  61. package/esm2015/lib/igc-tool-action-event-detail-collection.js +48 -0
  62. package/esm2015/lib/igc-tool-action-event-detail.js +85 -0
  63. package/esm2015/lib/igc-tool-action-group-header-component.js +49 -0
  64. package/esm2015/lib/igc-tool-action-group-header-module.js +16 -0
  65. package/esm2015/lib/igc-tool-action-icon-button-component.js +49 -0
  66. package/esm2015/lib/igc-tool-action-icon-button-module.js +16 -0
  67. package/esm2015/lib/igc-tool-action-icon-menu-component.js +49 -0
  68. package/esm2015/lib/igc-tool-action-icon-menu-module.js +16 -0
  69. package/esm2015/lib/igc-tool-action-menu-base-component.js +89 -0
  70. package/esm2015/lib/igc-tool-action-module.js +16 -0
  71. package/esm2015/lib/igc-tool-action-number-input-component.js +49 -0
  72. package/esm2015/lib/igc-tool-action-number-input-module.js +16 -0
  73. package/esm2015/lib/igc-tool-action-performed-event-args.js +80 -0
  74. package/esm2015/lib/igc-tool-action-separator-component.js +49 -0
  75. package/esm2015/lib/igc-tool-action-separator-module.js +16 -0
  76. package/esm2015/lib/igc-tool-command-event-args.js +30 -0
  77. package/esm2015/lib/igc-tool-panel-component.js +379 -0
  78. package/esm2015/lib/igc-tool-panel-content-refreshed-event-args.js +24 -0
  79. package/esm2015/lib/igc-tool-panel-module.js +29 -0
  80. package/esm2015/lib/igc-toolbar-component.js +412 -0
  81. package/esm2015/lib/igc-toolbar-module.js +19 -0
  82. package/esm2015/public_api.js +73 -0
  83. package/esm5/lib/IExternalListPanel.js +11 -0
  84. package/esm5/lib/IExternalToolPanel.js +11 -0
  85. package/esm5/lib/IExternalToolbar.js +11 -0
  86. package/esm5/lib/IListPanelView.js +11 -0
  87. package/esm5/lib/IPropertyEditorPanelView.js +11 -0
  88. package/esm5/lib/IToolPanelView.js +11 -0
  89. package/esm5/lib/IToolbarView.js +11 -0
  90. package/esm5/lib/ListPanel.js +7 -0
  91. package/esm5/lib/ListPanelContentRefreshedEventArgs.js +20 -0
  92. package/esm5/lib/ListPanelDataBindingEventArgs.js +24 -0
  93. package/esm5/lib/ListPanelDataSourceNotificationBridge.js +7 -0
  94. package/esm5/lib/ListPanelItemModel.js +80 -0
  95. package/esm5/lib/ListPanelItemPresenter.js +22 -0
  96. package/esm5/lib/ListPanelLayoutPanel.js +7 -0
  97. package/esm5/lib/ListPanelOrientation.js +16 -0
  98. package/esm5/lib/ListPanelTemplateHeightRequestedEventArgs.js +24 -0
  99. package/esm5/lib/ListPanelTemplateItemUpdatingEventArgs.js +24 -0
  100. package/esm5/lib/ListPanelTemplateWidthRequestedEventArgs.js +24 -0
  101. package/esm5/lib/ListPanelView.js +7 -0
  102. package/esm5/lib/ListPanelView_combined.js +1045 -0
  103. package/esm5/lib/PropertyEditorPanelView_combined.js +100 -100
  104. package/esm5/lib/PropertyEditorTreeTransformer.js +8 -8
  105. package/esm5/lib/ToolAction.js +7 -0
  106. package/esm5/lib/ToolActionCheckbox.js +7 -0
  107. package/esm5/lib/ToolActionCollection.js +7 -0
  108. package/esm5/lib/ToolActionEventDetail.js +7 -0
  109. package/esm5/lib/ToolActionEventDetailCollection.js +7 -0
  110. package/esm5/lib/ToolActionGroupHeader.js +7 -0
  111. package/esm5/lib/ToolActionIconButton.js +7 -0
  112. package/esm5/lib/ToolActionIconMenu.js +7 -0
  113. package/esm5/lib/ToolActionMeasurementContext.js +33 -0
  114. package/esm5/lib/ToolActionMenuBase.js +7 -0
  115. package/esm5/lib/ToolActionNumberInput.js +7 -0
  116. package/esm5/lib/ToolActionPerformedEventArgs.js +7 -0
  117. package/esm5/lib/ToolActionSeparator.js +7 -0
  118. package/esm5/lib/ToolCommandEventArgs.js +22 -0
  119. package/esm5/lib/ToolPanel.js +7 -0
  120. package/esm5/lib/ToolPanelContentRefreshedEventArgs.js +20 -0
  121. package/esm5/lib/ToolPanelOrientation.js +16 -0
  122. package/esm5/lib/ToolPanelView.js +7 -0
  123. package/esm5/lib/ToolPanelView_combined.js +1663 -0
  124. package/esm5/lib/Toolbar.js +7 -0
  125. package/esm5/lib/ToolbarIconManager.js +44 -0
  126. package/esm5/lib/ToolbarOrientation.js +16 -0
  127. package/esm5/lib/ToolbarView.js +7 -0
  128. package/esm5/lib/ToolbarView_combined.js +459 -0
  129. package/esm5/lib/igc-list-panel-component.js +535 -0
  130. package/esm5/lib/igc-list-panel-content-refreshed-event-args.js +30 -0
  131. package/esm5/lib/igc-list-panel-item-model.js +74 -0
  132. package/esm5/lib/igc-list-panel-module.js +21 -0
  133. package/esm5/lib/igc-list-panel-template-height-requested-event-args.js +60 -0
  134. package/esm5/lib/igc-list-panel-template-item-updating-event-args.js +59 -0
  135. package/esm5/lib/igc-list-panel-template-width-requested-event-args.js +60 -0
  136. package/esm5/lib/igc-property-editor-panel-component.js +1 -5
  137. package/esm5/lib/igc-tool-action-checkbox-component.js +58 -0
  138. package/esm5/lib/igc-tool-action-checkbox-module.js +20 -0
  139. package/esm5/lib/igc-tool-action-collection.js +53 -0
  140. package/esm5/lib/igc-tool-action-component.js +388 -0
  141. package/esm5/lib/igc-tool-action-event-detail-collection.js +53 -0
  142. package/esm5/lib/igc-tool-action-event-detail.js +119 -0
  143. package/esm5/lib/igc-tool-action-group-header-component.js +58 -0
  144. package/esm5/lib/igc-tool-action-group-header-module.js +20 -0
  145. package/esm5/lib/igc-tool-action-icon-button-component.js +58 -0
  146. package/esm5/lib/igc-tool-action-icon-button-module.js +20 -0
  147. package/esm5/lib/igc-tool-action-icon-menu-component.js +58 -0
  148. package/esm5/lib/igc-tool-action-icon-menu-module.js +20 -0
  149. package/esm5/lib/igc-tool-action-menu-base-component.js +103 -0
  150. package/esm5/lib/igc-tool-action-module.js +20 -0
  151. package/esm5/lib/igc-tool-action-number-input-component.js +58 -0
  152. package/esm5/lib/igc-tool-action-number-input-module.js +20 -0
  153. package/esm5/lib/igc-tool-action-performed-event-args.js +98 -0
  154. package/esm5/lib/igc-tool-action-separator-component.js +58 -0
  155. package/esm5/lib/igc-tool-action-separator-module.js +20 -0
  156. package/esm5/lib/igc-tool-command-event-args.js +40 -0
  157. package/esm5/lib/igc-tool-panel-component.js +449 -0
  158. package/esm5/lib/igc-tool-panel-content-refreshed-event-args.js +30 -0
  159. package/esm5/lib/igc-tool-panel-module.js +33 -0
  160. package/esm5/lib/igc-toolbar-component.js +484 -0
  161. package/esm5/lib/igc-toolbar-module.js +23 -0
  162. package/esm5/public_api.js +73 -0
  163. package/fesm2015/igniteui-webcomponents-layouts.js +6038 -148
  164. package/fesm5/igniteui-webcomponents-layouts.js +6839 -148
  165. package/lib/IExternalListPanel.d.ts +13 -0
  166. package/lib/IExternalToolPanel.d.ts +13 -0
  167. package/lib/IExternalToolbar.d.ts +13 -0
  168. package/lib/IListPanelView.d.ts +25 -0
  169. package/lib/IPropertyEditorPanelView.d.ts +26 -0
  170. package/lib/IToolPanelView.d.ts +25 -0
  171. package/lib/IToolbarView.d.ts +25 -0
  172. package/lib/ListPanel.d.ts +1 -0
  173. package/lib/ListPanelContentRefreshedEventArgs.d.ts +8 -0
  174. package/lib/ListPanelDataBindingEventArgs.d.ts +10 -0
  175. package/lib/ListPanelDataSourceNotificationBridge.d.ts +1 -0
  176. package/lib/ListPanelItemModel.d.ts +22 -0
  177. package/lib/ListPanelItemPresenter.d.ts +9 -0
  178. package/lib/ListPanelLayoutPanel.d.ts +1 -0
  179. package/lib/ListPanelOrientation.d.ts +9 -0
  180. package/lib/ListPanelTemplateHeightRequestedEventArgs.d.ts +10 -0
  181. package/lib/ListPanelTemplateItemUpdatingEventArgs.d.ts +12 -0
  182. package/lib/ListPanelTemplateWidthRequestedEventArgs.d.ts +10 -0
  183. package/lib/ListPanelView.d.ts +1 -0
  184. package/lib/ListPanelView_combined.d.ts +197 -0
  185. package/lib/PropertyEditorPanelView_combined.d.ts +1 -1
  186. package/lib/ToolAction.d.ts +1 -0
  187. package/lib/ToolActionCheckbox.d.ts +1 -0
  188. package/lib/ToolActionCollection.d.ts +1 -0
  189. package/lib/ToolActionEventDetail.d.ts +1 -0
  190. package/lib/ToolActionEventDetailCollection.d.ts +1 -0
  191. package/lib/ToolActionGroupHeader.d.ts +1 -0
  192. package/lib/ToolActionIconButton.d.ts +1 -0
  193. package/lib/ToolActionIconMenu.d.ts +1 -0
  194. package/lib/ToolActionMeasurementContext.d.ts +16 -0
  195. package/lib/ToolActionMenuBase.d.ts +1 -0
  196. package/lib/ToolActionNumberInput.d.ts +1 -0
  197. package/lib/ToolActionPerformedEventArgs.d.ts +1 -0
  198. package/lib/ToolActionSeparator.d.ts +1 -0
  199. package/lib/ToolCommandEventArgs.d.ts +10 -0
  200. package/lib/ToolPanel.d.ts +1 -0
  201. package/lib/ToolPanelContentRefreshedEventArgs.d.ts +8 -0
  202. package/lib/ToolPanelOrientation.d.ts +9 -0
  203. package/lib/ToolPanelView.d.ts +1 -0
  204. package/lib/ToolPanelView_combined.d.ts +328 -0
  205. package/lib/Toolbar.d.ts +1 -0
  206. package/lib/ToolbarIconManager.d.ts +10 -0
  207. package/lib/ToolbarOrientation.d.ts +9 -0
  208. package/lib/ToolbarView.d.ts +1 -0
  209. package/lib/ToolbarView_combined.d.ts +98 -0
  210. package/lib/igc-list-panel-component.d.ts +122 -0
  211. package/lib/igc-list-panel-content-refreshed-event-args.d.ts +12 -0
  212. package/lib/igc-list-panel-item-model.d.ts +17 -0
  213. package/lib/igc-list-panel-module.d.ts +3 -0
  214. package/lib/igc-list-panel-template-height-requested-event-args.d.ts +15 -0
  215. package/lib/igc-list-panel-template-item-updating-event-args.d.ts +15 -0
  216. package/lib/igc-list-panel-template-width-requested-event-args.d.ts +15 -0
  217. package/lib/igc-property-editor-panel-component.d.ts +0 -2
  218. package/lib/igc-tool-action-checkbox-component.d.ts +16 -0
  219. package/lib/igc-tool-action-checkbox-module.d.ts +3 -0
  220. package/lib/igc-tool-action-collection.d.ts +8 -0
  221. package/lib/igc-tool-action-component.d.ts +64 -0
  222. package/lib/igc-tool-action-event-detail-collection.d.ts +8 -0
  223. package/lib/igc-tool-action-event-detail.d.ts +22 -0
  224. package/lib/igc-tool-action-group-header-component.d.ts +16 -0
  225. package/lib/igc-tool-action-group-header-module.d.ts +3 -0
  226. package/lib/igc-tool-action-icon-button-component.d.ts +16 -0
  227. package/lib/igc-tool-action-icon-button-module.d.ts +3 -0
  228. package/lib/igc-tool-action-icon-menu-component.d.ts +16 -0
  229. package/lib/igc-tool-action-icon-menu-module.d.ts +3 -0
  230. package/lib/igc-tool-action-menu-base-component.d.ts +24 -0
  231. package/lib/igc-tool-action-module.d.ts +3 -0
  232. package/lib/igc-tool-action-number-input-component.d.ts +16 -0
  233. package/lib/igc-tool-action-number-input-module.d.ts +3 -0
  234. package/lib/igc-tool-action-performed-event-args.d.ts +18 -0
  235. package/lib/igc-tool-action-separator-component.d.ts +16 -0
  236. package/lib/igc-tool-action-separator-module.d.ts +3 -0
  237. package/lib/igc-tool-command-event-args.d.ts +14 -0
  238. package/lib/igc-tool-panel-component.d.ts +83 -0
  239. package/lib/igc-tool-panel-content-refreshed-event-args.d.ts +12 -0
  240. package/lib/igc-tool-panel-module.d.ts +3 -0
  241. package/lib/igc-toolbar-component.d.ts +89 -0
  242. package/lib/igc-toolbar-module.d.ts +3 -0
  243. package/package.json +3 -3
  244. package/public_api.d.ts +73 -0
@@ -80,10 +80,10 @@ export let PropertyEditorPanelView = /*@__PURE__*/ (() => {
80
80
  this.e = new RenderingContext(new CanvasViewRenderer(), this.i.get2DCanvasContext(this.l));
81
81
  this.k = this.i.createElement("div");
82
82
  this.y();
83
- NativeUIComponent.z(this.p(), 7, (b) => {
83
+ NativeUIComponent.aa(this.p(), 7, (b) => {
84
84
  let c = b;
85
85
  this.a.dh(c, this.n);
86
- this.i.append(c.u);
86
+ this.i.append(c.v);
87
87
  });
88
88
  let b = Math.round(a.rootWrapper.width());
89
89
  let c = Math.round(a.rootWrapper.height());
@@ -190,14 +190,14 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
190
190
  this.bo = 0;
191
191
  this.bl = -1;
192
192
  this.k = null;
193
- NativeUIInputsFactory.k();
193
+ NativeUIInputsFactory.m();
194
194
  this.ap = new ObservableCollection$1(PropertyEditorPanelColumnDefinition.$, 0);
195
195
  let a = new PropertyEditorPanelView();
196
196
  a.a = this;
197
- let b = this.properties;
198
- b.collectionChanged = delegateCombine(b.collectionChanged, runOn(this, this.dx));
199
197
  this.l = a;
200
198
  this.l.v();
199
+ let b = this.properties;
200
+ b.collectionChanged = delegateCombine(b.collectionChanged, runOn(this, this.dx));
201
201
  }
202
202
  get x() {
203
203
  if (this.w == null) {
@@ -530,11 +530,11 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
530
530
  for (let b = 0; b < a; b++) {
531
531
  let c = b;
532
532
  let d = this.c.getItemAtIndex(b);
533
- if (this.v.az < c + 1) {
534
- this.v.a1(c, 1, this.ar);
533
+ if (this.v.a3 < c + 1) {
534
+ this.v.a5(c, 1, this.ar);
535
535
  }
536
536
  else {
537
- this.v.a7(c, 1, this.ar);
537
+ this.v.bb(c, 1, this.ar);
538
538
  }
539
539
  if (this.an.count < c + 1) {
540
540
  this.an.add(new List$1(NativeUIComponent.$, 0));
@@ -543,24 +543,24 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
543
543
  for (let f = 0; f < this.ap.count; f++) {
544
544
  let g = this.ap._inner[f];
545
545
  if (e.count < f + 1) {
546
- NativeUIComponent.aa(this.l.p(), 0, (h) => {
546
+ NativeUIComponent.ac(this.l.p(), 0, (h) => {
547
547
  let i = h;
548
548
  i.e = 1;
549
549
  if (g.a == 0) {
550
550
  i.d = 2;
551
551
  }
552
- i.an = new Thickness(1, 5, 5, 5, 0);
553
- this.v.as(i);
554
- this.v.a5(i, c);
555
- this.v.a4(i, f);
552
+ i.ar = new Thickness(1, 5, 5, 5, 0);
553
+ this.v.aw(i);
554
+ this.v.a9(i, c);
555
+ this.v.a8(i, f);
556
556
  e.add(i);
557
557
  });
558
558
  }
559
- if (this.v.aw < f + 1) {
560
- this.v.a0(f, 1, g.h);
559
+ if (this.v.a0 < f + 1) {
560
+ this.v.a4(f, 1, g.h);
561
561
  }
562
562
  else {
563
- this.v.a6(f, 1, g.h);
563
+ this.v.ba(f, 1, g.h);
564
564
  }
565
565
  let h = e._inner[f];
566
566
  let i = "PropertyPath";
@@ -579,23 +579,23 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
579
579
  }
580
580
  if (l == null) {
581
581
  let m = h;
582
- m.aw = null;
582
+ m.a0 = null;
583
583
  }
584
584
  }
585
585
  }
586
586
  let n = new HashSet$1(NativeUIComponent.$, 0);
587
- for (let o = this.v.ar - 1; o >= 0; o--) {
588
- let p = this.v.aq(o);
589
- let q = this.v.ay(p);
590
- let r = this.v.ax(p);
587
+ for (let o = this.v.av - 1; o >= 0; o--) {
588
+ let p = this.v.au(o);
589
+ let q = this.v.a2(p);
590
+ let r = this.v.a1(p);
591
591
  if ((q + 1) > a || (r + 1) > this.ap.count) {
592
592
  n.add_1(p);
593
593
  }
594
594
  }
595
- for (let s = this.v.ar - 1; s >= 0; s--) {
596
- let t = this.v.aq(s);
595
+ for (let s = this.v.av - 1; s >= 0; s--) {
596
+ let t = this.v.au(s);
597
597
  if (n.contains(t)) {
598
- this.v.au(s);
598
+ this.v.ay(s);
599
599
  }
600
600
  }
601
601
  for (let u = this.an.count - 1; u >= 0; u--) {
@@ -609,11 +609,11 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
609
609
  this.an.removeAt(u);
610
610
  }
611
611
  }
612
- while (this.v.az > a) {
613
- this.v.a3(this.v.az - 1);
612
+ while (this.v.a3 > a) {
613
+ this.v.a7(this.v.a3 - 1);
614
614
  }
615
- while (this.v.aw > this.ap.count) {
616
- this.v.a2(this.v.aw - 1);
615
+ while (this.v.a0 > this.ap.count) {
616
+ this.v.a6(this.v.a0 - 1);
617
617
  }
618
618
  }
619
619
  dw(a, b) {
@@ -1062,34 +1062,34 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
1062
1062
  }
1063
1063
  c7(a, b) {
1064
1064
  this.cq(b, (c, d) => {
1065
- c.ap = this.u();
1065
+ c.at = this.u();
1066
1066
  c.e = 1;
1067
1067
  let e = this.m(a, b.b, b.c);
1068
- c.v = e;
1069
- c.aq = this.b5(e);
1068
+ c.w = e;
1069
+ c.au = this.b5(e);
1070
1070
  });
1071
1071
  }
1072
1072
  c6(a, b) {
1073
1073
  this.cp(b, (c, d) => {
1074
1074
  c.e = 1;
1075
- c.at = 1;
1076
- c.aq = 2;
1075
+ c.ax = 1;
1076
+ c.au = 2;
1077
1077
  let e = this.m(a, b.b, b.c);
1078
- c.v = e;
1079
- c.au = (e.ad != null ? e.ad.toString() : "");
1078
+ c.w = e;
1079
+ c.ay = (e.ad != null ? e.ad.toString() : "");
1080
1080
  if (d) {
1081
- c.as = runOn(this, this.di);
1081
+ c.aw = runOn(this, this.di);
1082
1082
  }
1083
1083
  });
1084
1084
  }
1085
1085
  cq(a, b) {
1086
1086
  let c = a.a;
1087
- let d = c.aw;
1087
+ let d = c.a0;
1088
1088
  let e = false;
1089
1089
  if (d == null || d.c != 3) {
1090
1090
  e = true;
1091
- NativeUIComponent.z(this.l.p(), 3, (f) => {
1092
- c.aw = f;
1091
+ NativeUIComponent.aa(this.l.p(), 3, (f) => {
1092
+ c.a0 = f;
1093
1093
  b(f, e);
1094
1094
  });
1095
1095
  return;
@@ -1098,12 +1098,12 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
1098
1098
  }
1099
1099
  cp(a, b) {
1100
1100
  let c = a.a;
1101
- let d = c.aw;
1101
+ let d = c.a0;
1102
1102
  let e = false;
1103
1103
  if (d == null || d.c != 2) {
1104
1104
  e = true;
1105
- NativeUIComponent.z(this.l.p(), 2, (f) => {
1106
- c.aw = f;
1105
+ NativeUIComponent.aa(this.l.p(), 2, (f) => {
1106
+ c.a0 = f;
1107
1107
  b(f, e);
1108
1108
  });
1109
1109
  return;
@@ -1112,12 +1112,12 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
1112
1112
  }
1113
1113
  cm(a, b) {
1114
1114
  let c = a.a;
1115
- let d = c.aw;
1115
+ let d = c.a0;
1116
1116
  let e = false;
1117
1117
  if (d == null || d.c != 1) {
1118
1118
  e = true;
1119
- NativeUIComponent.z(this.l.p(), 1, (f) => {
1120
- c.aw = f;
1119
+ NativeUIComponent.aa(this.l.p(), 1, (f) => {
1120
+ c.a0 = f;
1121
1121
  b(f, e);
1122
1122
  });
1123
1123
  return;
@@ -1126,12 +1126,12 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
1126
1126
  }
1127
1127
  cr(a, b) {
1128
1128
  let c = a.a;
1129
- let d = c.aw;
1129
+ let d = c.a0;
1130
1130
  let e = false;
1131
1131
  if (d == null || d.c != 5) {
1132
1132
  e = true;
1133
- NativeUIComponent.z(this.l.p(), 5, (f) => {
1134
- c.aw = f;
1133
+ NativeUIComponent.aa(this.l.p(), 5, (f) => {
1134
+ c.a0 = f;
1135
1135
  b(f, e);
1136
1136
  });
1137
1137
  return;
@@ -1140,12 +1140,12 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
1140
1140
  }
1141
1141
  co(a, b) {
1142
1142
  let c = a.a;
1143
- let d = c.aw;
1143
+ let d = c.a0;
1144
1144
  let e = false;
1145
1145
  if (d == null || d.c != 4) {
1146
1146
  e = true;
1147
- NativeUIComponent.z(this.l.p(), 4, (f) => {
1148
- c.aw = f;
1147
+ NativeUIComponent.aa(this.l.p(), 4, (f) => {
1148
+ c.a0 = f;
1149
1149
  b(f, e);
1150
1150
  });
1151
1151
  return;
@@ -1154,12 +1154,12 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
1154
1154
  }
1155
1155
  cn(a, b) {
1156
1156
  let c = a.a;
1157
- let d = c.aw;
1157
+ let d = c.a0;
1158
1158
  let e = false;
1159
1159
  if (d == null || d.c != 6) {
1160
1160
  e = true;
1161
- NativeUIComponent.z(this.l.p(), 6, (f) => {
1162
- c.aw = f;
1161
+ NativeUIComponent.aa(this.l.p(), 6, (f) => {
1162
+ c.a0 = f;
1163
1163
  b(f, e);
1164
1164
  });
1165
1165
  return;
@@ -1169,18 +1169,18 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
1169
1169
  cw(a, b) {
1170
1170
  this.cm(b, (c, d) => {
1171
1171
  c.e = 1;
1172
- if (c.ar != 2) {
1173
- c.ar = 2;
1172
+ if (c.av != 2) {
1173
+ c.av = 2;
1174
1174
  }
1175
1175
  let e = this.m(a, b.b, b.c);
1176
- c.v = e;
1176
+ c.w = e;
1177
1177
  let f = e.ad;
1178
1178
  if (typeof e.ad === 'number' || typeof e.ad === 'number') {
1179
1179
  f = e.ad.toString();
1180
1180
  }
1181
- c.as = f;
1181
+ c.aw = f;
1182
1182
  if (d) {
1183
- c.aq = runOn(this, this.cd);
1183
+ c.au = runOn(this, this.cd);
1184
1184
  }
1185
1185
  });
1186
1186
  }
@@ -1188,7 +1188,7 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
1188
1188
  this.cr(b, (c, d) => {
1189
1189
  c.e = 1;
1190
1190
  let e = this.m(a, b.b, b.c);
1191
- c.v = e;
1191
+ c.w = e;
1192
1192
  let f = e.ad;
1193
1193
  if (typeof e.ad === 'number' || typeof e.ad === 'number') {
1194
1194
  f = e.ad;
@@ -1202,79 +1202,79 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
1202
1202
  if (f == null) {
1203
1203
  f = 0;
1204
1204
  }
1205
- c.aw = f;
1205
+ c.a0 = f;
1206
1206
  if (!isNaN_(e.z)) {
1207
- c.au = e.z;
1207
+ c.ay = e.z;
1208
1208
  }
1209
1209
  else {
1210
- c.au = 0;
1210
+ c.ay = 0;
1211
1211
  }
1212
1212
  if (!isNaN_(e.y)) {
1213
- c.at = e.y;
1213
+ c.ax = e.y;
1214
1214
  }
1215
1215
  else {
1216
- c.at = 100;
1216
+ c.ax = 100;
1217
1217
  }
1218
1218
  if (!isNaN_(e.aa)) {
1219
- c.av = e.aa;
1219
+ c.az = e.aa;
1220
1220
  }
1221
1221
  else {
1222
- c.av = 1;
1222
+ c.az = 1;
1223
1223
  }
1224
1224
  if (d) {
1225
- c.as = runOn(this, this.d3);
1225
+ c.aw = runOn(this, this.d3);
1226
1226
  }
1227
1227
  });
1228
1228
  }
1229
1229
  d3(a, b) {
1230
1230
  let c = a;
1231
- let d = c.v;
1231
+ let d = c.w;
1232
1232
  this.af = true;
1233
- d.ad = c.aw;
1233
+ d.ad = c.a0;
1234
1234
  this.af = false;
1235
1235
  this.dv(d);
1236
1236
  }
1237
1237
  c3(a, b) {
1238
1238
  this.co(b, (c, d) => {
1239
1239
  c.e = 1;
1240
- if (c.ap != 2) {
1241
- c.ap = 2;
1240
+ if (c.at != 2) {
1241
+ c.at = 2;
1242
1242
  }
1243
1243
  let e = this.m(a, b.b, b.c);
1244
- if (c.v != e) {
1244
+ if (c.w != e) {
1245
1245
  {
1246
- c.ar = null;
1246
+ c.av = null;
1247
1247
  }
1248
- c.v = e;
1249
- c.at = null;
1250
- c.as = this.b(this.a(e));
1251
- if (e.ad != c.at) {
1248
+ c.w = e;
1249
+ c.ax = null;
1250
+ c.aw = this.b(this.a(e));
1251
+ if (e.ad != c.ax) {
1252
1252
  if (typeof e.ad === 'number' || typeof e.ad === 'number') {
1253
- c.at = e.ad.toString();
1253
+ c.ax = e.ad.toString();
1254
1254
  }
1255
1255
  else {
1256
- c.at = e.ad;
1256
+ c.ax = e.ad;
1257
1257
  }
1258
1258
  }
1259
1259
  {
1260
- c.ar = runOn(this, this.ch);
1260
+ c.av = runOn(this, this.ch);
1261
1261
  }
1262
1262
  }
1263
1263
  else {
1264
- if (e.ad != c.at) {
1264
+ if (e.ad != c.ax) {
1265
1265
  if (typeof e.ad === 'number' || typeof e.ad === 'number') {
1266
- c.at = e.ad.toString();
1266
+ c.ax = e.ad.toString();
1267
1267
  }
1268
1268
  else {
1269
- c.at = e.ad;
1269
+ c.ax = e.ad;
1270
1270
  }
1271
1271
  }
1272
1272
  }
1273
1273
  if (d) {
1274
- if (c.ar == null) {
1275
- c.ar = runOn(this, this.ch);
1274
+ if (c.av == null) {
1275
+ c.av = runOn(this, this.ch);
1276
1276
  }
1277
- c.ah = BrushUtil.g(255, 255, 255, 255);
1277
+ c.aj = BrushUtil.g(255, 255, 255, 255);
1278
1278
  }
1279
1279
  });
1280
1280
  }
@@ -1286,25 +1286,25 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
1286
1286
  }
1287
1287
  ch(a, b) {
1288
1288
  let c = a;
1289
- let d = c.v;
1289
+ let d = c.w;
1290
1290
  this.af = true;
1291
- d.ad = c.at;
1291
+ d.ad = c.ax;
1292
1292
  d.am();
1293
1293
  this.af = false;
1294
1294
  this.dv(d);
1295
1295
  }
1296
1296
  di(a, b) {
1297
1297
  let c = a;
1298
- let d = c.v;
1298
+ let d = c.w;
1299
1299
  this.af = true;
1300
1300
  if (d.n == 1) {
1301
1301
  let e = 0;
1302
- let f = tryParseNumber(c.au, e);
1302
+ let f = tryParseNumber(c.ay, e);
1303
1303
  e = f.p1;
1304
1304
  d.ad = e;
1305
1305
  }
1306
1306
  else {
1307
- d.ad = c.au;
1307
+ d.ad = c.ay;
1308
1308
  }
1309
1309
  d.am();
1310
1310
  this.af = false;
@@ -1312,7 +1312,7 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
1312
1312
  }
1313
1313
  cd(a, b) {
1314
1314
  let c = a;
1315
- let d = c.v;
1315
+ let d = c.w;
1316
1316
  this.af = true;
1317
1317
  d.an();
1318
1318
  this.af = false;
@@ -1464,8 +1464,8 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
1464
1464
  ct(a, b) {
1465
1465
  this.cn(b, (c, d) => {
1466
1466
  c.e = 1;
1467
- if (!c.ar) {
1468
- c.ar = true;
1467
+ if (!c.av) {
1468
+ c.av = true;
1469
1469
  }
1470
1470
  let e = this.m(a, b.b, b.c);
1471
1471
  let f = e.ad;
@@ -1501,10 +1501,10 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
1501
1501
  }
1502
1502
  }
1503
1503
  let k = f;
1504
- c.as = k;
1505
- c.v = e;
1504
+ c.aw = k;
1505
+ c.w = e;
1506
1506
  if (d) {
1507
- c.aq = runOn(this, this.cf);
1507
+ c.au = runOn(this, this.cf);
1508
1508
  }
1509
1509
  });
1510
1510
  }
@@ -1530,9 +1530,9 @@ export let PropertyEditorPanel = /*@__PURE__*/ (() => {
1530
1530
  }
1531
1531
  cf(a, b) {
1532
1532
  let c = a;
1533
- let d = c.v;
1533
+ let d = c.w;
1534
1534
  this.af = true;
1535
- d.ad = c.as;
1535
+ d.ad = c.aw;
1536
1536
  d.am();
1537
1537
  this.af = false;
1538
1538
  this.dv(d);
@@ -23,7 +23,7 @@ export let PropertyEditorTreeTransformer = /*@__PURE__*/ (() => {
23
23
  this.b = null;
24
24
  this.b = a;
25
25
  this.a = new DescriptionTreeNode();
26
- this.a.h = b;
26
+ this.a.i = b;
27
27
  let c = new JsonDictionaryObject();
28
28
  }
29
29
  h(a, b, c) {
@@ -79,7 +79,7 @@ export let PropertyEditorTreeTransformer = /*@__PURE__*/ (() => {
79
79
  if (s != null && x < s.length) {
80
80
  let y = s[x];
81
81
  if (typeCast(DescriptionTreeNode.$, y) !== null && x == v) {
82
- y.h = u;
82
+ y.i = u;
83
83
  }
84
84
  w.add1(y);
85
85
  }
@@ -108,21 +108,21 @@ export let PropertyEditorTreeTransformer = /*@__PURE__*/ (() => {
108
108
  }
109
109
  else {
110
110
  let ae = c;
111
- if (!ae.b(g)) {
112
- ae.n(g, this.d(r, false, null), r);
111
+ if (!ae.c(g)) {
112
+ ae.o(g, this.d(r, false, null), r);
113
113
  }
114
114
  let af = ae.a(g);
115
115
  let ag = new List$1(String_$type, 1, f);
116
116
  ag.removeAt(0);
117
117
  let ah = this.c(stringJoin(".", ...ag.toArray()), b, af, r.specificExternalType, r);
118
118
  if (ah != null) {
119
- ae.n(g, ah, r);
119
+ ae.o(g, ah, r);
120
120
  }
121
121
  }
122
122
  }
123
123
  else {
124
124
  let ai = c;
125
- ai.n(g, this.e(b, r), r);
125
+ ai.o(g, this.e(b, r), r);
126
126
  }
127
127
  return null;
128
128
  }
@@ -175,10 +175,10 @@ export let PropertyEditorTreeTransformer = /*@__PURE__*/ (() => {
175
175
  else {
176
176
  let d = new DescriptionTreeNode();
177
177
  if (c != null) {
178
- d.h = c;
178
+ d.i = c;
179
179
  }
180
180
  else {
181
- d.h = a.specificExternalType != null ? a.specificExternalType : a.specificType;
181
+ d.i = a.specificExternalType != null ? a.specificExternalType : a.specificType;
182
182
  }
183
183
  return d;
184
184
  }
@@ -0,0 +1,7 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
+ */
7
+ export { ToolAction } from "./ToolPanelView_combined";
@@ -0,0 +1,7 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
+ */
7
+ export { ToolActionCheckbox } from "./ToolPanelView_combined";
@@ -0,0 +1,7 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
+ */
7
+ export { ToolActionCollection } from "./ToolPanelView_combined";
@@ -0,0 +1,7 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
+ */
7
+ export { ToolActionEventDetail } from "./ToolPanelView_combined";
@@ -0,0 +1,7 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
+ */
7
+ export { ToolActionEventDetailCollection } from "./ToolPanelView_combined";
@@ -0,0 +1,7 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
+ */
7
+ export { ToolActionGroupHeader } from "./ToolPanelView_combined";
@@ -0,0 +1,7 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
+ */
7
+ export { ToolActionIconButton } from "./ToolPanelView_combined";
@@ -0,0 +1,7 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
+ */
7
+ export { ToolActionIconMenu } from "./ToolPanelView_combined";
@@ -0,0 +1,31 @@
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 { Base, markType } from "igniteui-webcomponents-core";
8
+ /**
9
+ * @hidden
10
+ */
11
+ export let ToolActionMeasurementContext = /*@__PURE__*/ (() => {
12
+ class ToolActionMeasurementContext extends Base {
13
+ constructor() {
14
+ super();
15
+ this.e = 0;
16
+ this.g = 0;
17
+ this.f = 0;
18
+ this.a = 0;
19
+ this.b = 0;
20
+ this.d = 0;
21
+ this.c = 0;
22
+ this.e = NaN;
23
+ this.g = NaN;
24
+ this.f = NaN;
25
+ this.d = NaN;
26
+ this.c = NaN;
27
+ }
28
+ }
29
+ ToolActionMeasurementContext.$t = /*@__PURE__*/ markType(ToolActionMeasurementContext, 'ToolActionMeasurementContext');
30
+ return ToolActionMeasurementContext;
31
+ })();
@@ -0,0 +1,7 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
+ */
7
+ export { ToolActionMenuBase } from "./ToolPanelView_combined";
@@ -0,0 +1,7 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
+ */
7
+ export { ToolActionNumberInput } from "./ToolPanelView_combined";
@@ -0,0 +1,7 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
+ */
7
+ export { ToolActionPerformedEventArgs } from "./ToolPanelView_combined";
@@ -0,0 +1,7 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
+ */
7
+ export { ToolActionSeparator } from "./ToolPanelView_combined";