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
@@ -11,6 +11,7 @@ import { PropertyEditorPropertyDescriptionButtonClickEventArgs } from "./Propert
11
11
  import { PropertyEditorPropertyDescriptionChangedEventArgs } from "./PropertyEditorPropertyDescriptionChangedEventArgs";
12
12
  import { PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs } from "./PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs";
13
13
  import { ObservableCollection$1 } from "igniteui-webcomponents-core";
14
+ import { Dictionary$2 } from "igniteui-webcomponents-core";
14
15
  import { List$1 } from "igniteui-webcomponents-core";
15
16
  import { stringEndsWith, stringContains, stringReplace } from "igniteui-webcomponents-core";
16
17
  import { stringSplit } from "igniteui-webcomponents-core";
@@ -301,7 +302,7 @@ var PropertyEditorPropertyDescription = /** @class */ /*@__PURE__*/ (function (_
301
302
  return this.e;
302
303
  }
303
304
  if (this.e != null) {
304
- return this.e.d(a, false);
305
+ return this.e.e(a, false);
305
306
  }
306
307
  return null;
307
308
  };
@@ -354,20 +355,21 @@ var PropertyEditorDataSource = /** @class */ /*@__PURE__*/ (function (_super) {
354
355
  tslib_1.__extends(PropertyEditorDataSource, _super);
355
356
  function PropertyEditorDataSource() {
356
357
  var _this = _super !== null && _super.apply(this, arguments) || this;
357
- _this.i = null;
358
+ _this.k = null;
358
359
  _this.a = null;
359
- _this.f = null;
360
+ _this.g = null;
360
361
  _this.propertyChanged = null;
362
+ _this.j = null;
361
363
  return _this;
362
364
  }
363
- Object.defineProperty(PropertyEditorDataSource.prototype, "l", {
365
+ Object.defineProperty(PropertyEditorDataSource.prototype, "n", {
364
366
  get: function () {
365
- return this.i;
367
+ return this.k;
366
368
  },
367
369
  set: function (a) {
368
- var b = this.i;
369
- this.i = a;
370
- this.n("DescriptionType", b, this.i);
370
+ var b = this.k;
371
+ this.k = a;
372
+ this.p("DescriptionType", b, this.k);
371
373
  },
372
374
  enumerable: true,
373
375
  configurable: true
@@ -379,69 +381,76 @@ var PropertyEditorDataSource = /** @class */ /*@__PURE__*/ (function (_super) {
379
381
  set: function (a) {
380
382
  var b = this.a;
381
383
  this.a = a;
382
- this.n("Context", b, this.a);
384
+ this.p("Context", b, this.a);
383
385
  },
384
386
  enumerable: true,
385
387
  configurable: true
386
388
  });
387
- Object.defineProperty(PropertyEditorDataSource.prototype, "g", {
389
+ Object.defineProperty(PropertyEditorDataSource.prototype, "h", {
388
390
  get: function () {
389
- return this.f;
391
+ return this.g;
390
392
  },
391
393
  set: function (a) {
392
- var b = this.f;
393
- this.f = a;
394
- this.n("Data", b, this.f);
394
+ var b = this.g;
395
+ this.g = a;
396
+ this.p("Data", b, this.g);
395
397
  },
396
398
  enumerable: true,
397
399
  configurable: true
398
400
  });
399
- PropertyEditorDataSource.prototype.n = function (a, b, c) {
401
+ PropertyEditorDataSource.prototype.p = function (a, b, c) {
400
402
  if (this.propertyChanged != null) {
401
403
  this.propertyChanged(this, new PropertyChangedEventArgs(a));
402
404
  }
403
- this.o(a, b, c);
405
+ this.q(a, b, c);
404
406
  };
405
- PropertyEditorDataSource.prototype.o = function (a, b, c) {
407
+ PropertyEditorDataSource.prototype.q = function (a, b, c) {
406
408
  switch (a) {
407
409
  case "DescriptionType":
408
- this.p();
410
+ this.r();
409
411
  break;
410
412
  case "Context":
411
- this.p();
413
+ this.r();
412
414
  break;
413
415
  }
414
416
  };
415
- PropertyEditorDataSource.prototype.e = function (a) {
416
- var _this = this;
417
+ PropertyEditorDataSource.d = function (a, b, c) {
418
+ var d = new PropertyEditorDataSource();
419
+ d.j = c;
420
+ d.b = a;
421
+ d.n = b;
422
+ d.j = null;
423
+ return d;
424
+ };
425
+ PropertyEditorDataSource.prototype.f = function (a) {
417
426
  var b = new PropertyEditorPropertyDescription();
418
427
  b.al = a.propertyName;
419
- b.n = this.h(a);
428
+ b.n = this.i(a);
420
429
  b.ak = a.specificExternalType != null ? a.specificExternalType : a.specificType;
421
430
  if (a.knownType == 9) {
422
431
  b.ai = a.collectionElementType;
423
- b.e = ((function () {
424
- var $ret = new PropertyEditorDataSource();
425
- $ret.b = _this.a;
426
- $ret.l = b.ai;
427
- return $ret;
428
- })());
432
+ if (this.j != null && this.j.containsKey(b.ai)) {
433
+ b.e = this.j.item(b.ai);
434
+ }
435
+ else {
436
+ b.e = PropertyEditorDataSource.d(this.a, b.ai, this.j);
437
+ }
429
438
  }
430
439
  if (b.n == 8) {
431
- b.e = ((function () {
432
- var $ret = new PropertyEditorDataSource();
433
- $ret.b = _this.a;
434
- $ret.l = b.ak;
435
- return $ret;
436
- })());
440
+ if (this.j != null && this.j.containsKey(b.ak)) {
441
+ b.e = this.j.item(b.ak);
442
+ }
443
+ else {
444
+ b.e = PropertyEditorDataSource.d(this.a, b.ak, this.j);
445
+ }
437
446
  }
438
447
  if (b.n == 15) {
439
- b.c = this.a.c(this.l, b.al);
448
+ b.c = this.a.c(this.n, b.al);
440
449
  b.d = b.d;
441
450
  }
442
451
  return b;
443
452
  };
444
- PropertyEditorDataSource.prototype.h = function (a) {
453
+ PropertyEditorDataSource.prototype.i = function (a) {
445
454
  switch (a.knownType) {
446
455
  case 10: return 10;
447
456
  case 7: return 7;
@@ -451,6 +460,7 @@ var PropertyEditorDataSource = /** @class */ /*@__PURE__*/ (function (_super) {
451
460
  case 5: return 5;
452
461
  case 16: return 14;
453
462
  case 20: return 18;
463
+ case 22: return 22;
454
464
  case 15: return 0;
455
465
  case 3: return 3;
456
466
  case 19: return 17;
@@ -472,31 +482,46 @@ var PropertyEditorDataSource = /** @class */ /*@__PURE__*/ (function (_super) {
472
482
  }
473
483
  return 0;
474
484
  };
475
- PropertyEditorDataSource.prototype.p = function () {
485
+ PropertyEditorDataSource.prototype.r = function () {
476
486
  var a = new PropertyEditorPropertyDescriptionCollection();
477
- if (this.l != null && this.b != null) {
478
- var b = this.b.b(this.l);
479
- if (b == null) {
487
+ if (this.n != null && this.b != null) {
488
+ var b = false;
489
+ if (this.j == null) {
490
+ b = true;
491
+ this.j = new Dictionary$2(String_$type, PropertyEditorDataSource.$, 0);
492
+ }
493
+ this.j.item(this.n, this);
494
+ var c = this.b.b(this.n);
495
+ if (c == null) {
480
496
  return;
481
497
  }
482
- for (var c = 0; c < b.length; c++) {
483
- if (stringEndsWith(b[c], "@names")) {
498
+ for (var d = 0; d < c.length; d++) {
499
+ if (stringEndsWith(c[d], "@names")) {
500
+ continue;
501
+ }
502
+ if (stringEndsWith(c[d], "@nameBinding")) {
503
+ continue;
504
+ }
505
+ if (stringEndsWith(c[d], "@ngQueryList")) {
484
506
  continue;
485
507
  }
486
- if (stringEndsWith(b[c], "@nameBinding")) {
508
+ if (stringEndsWith(c[d], "@mustSetInCode")) {
487
509
  continue;
488
510
  }
489
- var d = this.b.getMetadata(this.l, b[c]);
490
- var e = this.e(d);
491
- if (e.n == 0) {
511
+ var e = this.b.getMetadata(this.n, c[d]);
512
+ var f = this.f(e);
513
+ if (f.n == 0) {
492
514
  continue;
493
515
  }
494
- a.add(e);
516
+ a.add(f);
517
+ }
518
+ if (b) {
519
+ this.j = null;
495
520
  }
496
521
  }
497
- this.g = a;
522
+ this.h = a;
498
523
  };
499
- PropertyEditorDataSource.prototype.d = function (a, b) {
524
+ PropertyEditorDataSource.prototype.e = function (a, b) {
500
525
  if (a == null) {
501
526
  return null;
502
527
  }
@@ -519,9 +544,9 @@ var PropertyEditorDataSource = /** @class */ /*@__PURE__*/ (function (_super) {
519
544
  g = h.substr(0, k).trim();
520
545
  f = h.substr(k + 2).trim();
521
546
  }
522
- if (f != null && f != this.l) {
547
+ if (f != null && f != this.n) {
523
548
  var l = this.c();
524
- l.l = f;
549
+ l.n = f;
525
550
  e = l;
526
551
  continue;
527
552
  }
@@ -539,19 +564,19 @@ var PropertyEditorDataSource = /** @class */ /*@__PURE__*/ (function (_super) {
539
564
  else {
540
565
  if (e != null) {
541
566
  var n = e;
542
- var o = n.d(h, i);
567
+ var o = n.e(h, i);
543
568
  if (o == null) {
544
569
  return null;
545
570
  }
546
571
  e = o;
547
572
  }
548
573
  else {
549
- if (this.g == null) {
574
+ if (this.h == null) {
550
575
  return null;
551
576
  }
552
- for (var p = 0; p < this.g.count; p++) {
553
- if (Base.equalsStatic(this.g._inner[p].al, h)) {
554
- e = this.g._inner[p];
577
+ for (var p = 0; p < this.h.count; p++) {
578
+ if (Base.equalsStatic(this.h._inner[p].al, h)) {
579
+ e = this.h._inner[p];
555
580
  break;
556
581
  }
557
582
  }
@@ -568,7 +593,7 @@ var PropertyEditorDataSource = /** @class */ /*@__PURE__*/ (function (_super) {
568
593
  return ((function () {
569
594
  var $ret = new PropertyEditorDataSource();
570
595
  $ret.b = _this.b;
571
- $ret.l = _this.l;
596
+ $ret.n = _this.n;
572
597
  return $ret;
573
598
  })());
574
599
  };
@@ -153,6 +153,7 @@ var PropertyEditorTreeTransformer = /** @class */ /*@__PURE__*/ (function (_supe
153
153
  case 5: return a.toString();
154
154
  case 16: return a;
155
155
  case 20: return a;
156
+ case 22: return a;
156
157
  case 15: return a;
157
158
  case 3: return a;
158
159
  case 19: return a;
@@ -28,9 +28,10 @@ export var PropertyEditorValueType = /*@__PURE__*/ (function (PropertyEditorValu
28
28
  PropertyEditorValueType[PropertyEditorValueType["TimeSpan"] = 19] = "TimeSpan";
29
29
  PropertyEditorValueType[PropertyEditorValueType["Button"] = 20] = "Button";
30
30
  PropertyEditorValueType[PropertyEditorValueType["Slider"] = 21] = "Slider";
31
+ PropertyEditorValueType[PropertyEditorValueType["TemplateRef"] = 22] = "TemplateRef";
31
32
  return PropertyEditorValueType;
32
33
  })({});
33
34
  /**
34
35
  * @hidden
35
36
  */
36
- export var PropertyEditorValueType_$type = /*@__PURE__*/ markEnum('PropertyEditorValueType', 'Unhandled,0|Number,1|StringValue,2|Date,3|Brush,4|Color,5|BrushCollection,6|Boolean:boolean1,7|SubType,8|Collection,9|Array,10|Point,11|Size,12|Rect,13|ColorCollection,14|EnumValue,15|MethodRef,16|EventRef,17|DataRef,18|TimeSpan,19|Button,20|Slider,21');
37
+ export var PropertyEditorValueType_$type = /*@__PURE__*/ markEnum('PropertyEditorValueType', 'Unhandled,0|Number,1|StringValue,2|Date,3|Brush,4|Color,5|BrushCollection,6|Boolean:boolean1,7|SubType,8|Collection,9|Array,10|Point,11|Size,12|Rect,13|ColorCollection,14|EnumValue,15|MethodRef,16|EventRef,17|DataRef,18|TimeSpan,19|Button,20|Slider,21|TemplateRef,22');
@@ -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,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 { ToolActionLabel } from "./ToolPanelView_combined";
@@ -0,0 +1,33 @@
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 * as tslib_1 from "tslib";
8
+ import { Base, markType } from "igniteui-webcomponents-core";
9
+ /**
10
+ * @hidden
11
+ */
12
+ var ToolActionMeasurementContext = /** @class */ /*@__PURE__*/ (function (_super) {
13
+ tslib_1.__extends(ToolActionMeasurementContext, _super);
14
+ function ToolActionMeasurementContext() {
15
+ var _this = _super.call(this) || this;
16
+ _this.e = 0;
17
+ _this.g = 0;
18
+ _this.f = 0;
19
+ _this.a = 0;
20
+ _this.b = 0;
21
+ _this.d = 0;
22
+ _this.c = 0;
23
+ _this.e = NaN;
24
+ _this.g = NaN;
25
+ _this.f = NaN;
26
+ _this.d = NaN;
27
+ _this.c = NaN;
28
+ return _this;
29
+ }
30
+ ToolActionMeasurementContext.$t = markType(ToolActionMeasurementContext, 'ToolActionMeasurementContext');
31
+ return ToolActionMeasurementContext;
32
+ }(Base));
33
+ export { ToolActionMeasurementContext };
@@ -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 { ToolActionRadio } 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";
@@ -0,0 +1,22 @@
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 * as tslib_1 from "tslib";
8
+ import { Base, markType } from "igniteui-webcomponents-core";
9
+ /**
10
+ * @hidden
11
+ */
12
+ var ToolCommandEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
13
+ tslib_1.__extends(ToolCommandEventArgs, _super);
14
+ function ToolCommandEventArgs() {
15
+ var _this = _super.call(this) || this;
16
+ _this.a = null;
17
+ return _this;
18
+ }
19
+ ToolCommandEventArgs.$t = markType(ToolCommandEventArgs, 'ToolCommandEventArgs');
20
+ return ToolCommandEventArgs;
21
+ }(Base));
22
+ export { ToolCommandEventArgs };
@@ -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 { ToolPanel } from "./ToolPanelView_combined";
@@ -0,0 +1,20 @@
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 * as tslib_1 from "tslib";
8
+ import { Base, markType } from "igniteui-webcomponents-core";
9
+ /**
10
+ * @hidden
11
+ */
12
+ var ToolPanelContentRefreshedEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
13
+ tslib_1.__extends(ToolPanelContentRefreshedEventArgs, _super);
14
+ function ToolPanelContentRefreshedEventArgs() {
15
+ return _super.call(this) || this;
16
+ }
17
+ ToolPanelContentRefreshedEventArgs.$t = markType(ToolPanelContentRefreshedEventArgs, 'ToolPanelContentRefreshedEventArgs');
18
+ return ToolPanelContentRefreshedEventArgs;
19
+ }(Base));
20
+ export { ToolPanelContentRefreshedEventArgs };
@@ -0,0 +1,16 @@
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 { markEnum } from "igniteui-webcomponents-core";
8
+ export var ToolPanelOrientation = /*@__PURE__*/ (function (ToolPanelOrientation) {
9
+ ToolPanelOrientation[ToolPanelOrientation["Vertical"] = 0] = "Vertical";
10
+ ToolPanelOrientation[ToolPanelOrientation["Horizontal"] = 1] = "Horizontal";
11
+ return ToolPanelOrientation;
12
+ })({});
13
+ /**
14
+ * @hidden
15
+ */
16
+ export var ToolPanelOrientation_$type = /*@__PURE__*/ markEnum('ToolPanelOrientation', 'Vertical,0|Horizontal,1');
@@ -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 { ToolPanelView } from "./ToolPanelView_combined";