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
@@ -0,0 +1,72 @@
1
+ import * as tslib_1 from "tslib";
2
+ import { IgcToolActionComponent } from "./igc-tool-action-component";
3
+ import { ToolActionIconButton } from "./ToolActionIconButton";
4
+ import { getAllPropertyNames, toSpinal } from "igniteui-webcomponents-core";
5
+ import { RegisterElementHelper } from "igniteui-webcomponents-core";
6
+ var IgcToolActionIconButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
7
+ tslib_1.__extends(IgcToolActionIconButtonComponent, _super);
8
+ function IgcToolActionIconButtonComponent() {
9
+ return _super.call(this) || this;
10
+ }
11
+ IgcToolActionIconButtonComponent.prototype.createImplementation = function () {
12
+ return new ToolActionIconButton();
13
+ };
14
+ Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "i", {
15
+ /**
16
+ * @hidden
17
+ */
18
+ get: function () {
19
+ return this._implementation;
20
+ },
21
+ enumerable: true,
22
+ configurable: true
23
+ });
24
+ IgcToolActionIconButtonComponent.prototype.connectedCallback = function () {
25
+ if (_super.prototype["connectedCallback"]) {
26
+ _super.prototype["connectedCallback"].call(this);
27
+ }
28
+ if (this.i.connectedCallback) {
29
+ this.i.connectedCallback();
30
+ }
31
+ if (!this._attached) {
32
+ this._attached = true;
33
+ this._flushQueuedAttributes();
34
+ }
35
+ };
36
+ IgcToolActionIconButtonComponent.prototype.disconnectedCallback = function () {
37
+ if (_super.prototype["disconnectedCallback"]) {
38
+ _super.prototype["disconnectedCallback"].call(this);
39
+ }
40
+ if (this.i.disconnectedCallback) {
41
+ this.i.disconnectedCallback();
42
+ }
43
+ if (this._attached) {
44
+ this._attached = false;
45
+ }
46
+ };
47
+ Object.defineProperty(IgcToolActionIconButtonComponent, "observedAttributes", {
48
+ get: function () {
49
+ if (IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent == null) {
50
+ var names = getAllPropertyNames(IgcToolActionIconButtonComponent);
51
+ for (var i = 0; i < names.length; i++) {
52
+ names[i] = toSpinal(names[i]);
53
+ }
54
+ IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent = names;
55
+ }
56
+ return IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent;
57
+ },
58
+ enumerable: true,
59
+ configurable: true
60
+ });
61
+ IgcToolActionIconButtonComponent.register = function () {
62
+ if (!IgcToolActionIconButtonComponent._isElementRegistered) {
63
+ IgcToolActionIconButtonComponent._isElementRegistered = true;
64
+ RegisterElementHelper.registerElement(IgcToolActionIconButtonComponent.htmlTagName, IgcToolActionIconButtonComponent);
65
+ }
66
+ };
67
+ IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent = null;
68
+ IgcToolActionIconButtonComponent.htmlTagName = "igc-tool-action-icon-button";
69
+ IgcToolActionIconButtonComponent._isElementRegistered = false;
70
+ return IgcToolActionIconButtonComponent;
71
+ }(IgcToolActionComponent));
72
+ export { IgcToolActionIconButtonComponent };
@@ -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 { IgcToolActionIconButtonComponent } from './igc-tool-action-icon-button-component';
8
+ import { ToolActionIconButton } from './ToolActionIconButton';
9
+ import { TypeRegistrar } from "igniteui-webcomponents-core";
10
+ var IgcToolActionIconButtonModule = /** @class */ /*@__PURE__*/ (function () {
11
+ function IgcToolActionIconButtonModule() {
12
+ }
13
+ IgcToolActionIconButtonModule.register = function () {
14
+ IgcToolActionIconButtonComponent.register();
15
+ TypeRegistrar.registerCons("IgcToolActionIconButtonComponent", IgcToolActionIconButtonComponent);
16
+ TypeRegistrar.register("ToolActionIconButton", ToolActionIconButton.$type);
17
+ };
18
+ return IgcToolActionIconButtonModule;
19
+ }());
20
+ export { IgcToolActionIconButtonModule };
@@ -0,0 +1,72 @@
1
+ import * as tslib_1 from "tslib";
2
+ import { IgcToolActionMenuBaseComponent } from "./igc-tool-action-menu-base-component";
3
+ import { ToolActionIconMenu } from "./ToolActionIconMenu";
4
+ import { getAllPropertyNames, toSpinal } from "igniteui-webcomponents-core";
5
+ import { RegisterElementHelper } from "igniteui-webcomponents-core";
6
+ var IgcToolActionIconMenuComponent = /** @class */ /*@__PURE__*/ (function (_super) {
7
+ tslib_1.__extends(IgcToolActionIconMenuComponent, _super);
8
+ function IgcToolActionIconMenuComponent() {
9
+ return _super.call(this) || this;
10
+ }
11
+ IgcToolActionIconMenuComponent.prototype.createImplementation = function () {
12
+ return new ToolActionIconMenu();
13
+ };
14
+ Object.defineProperty(IgcToolActionIconMenuComponent.prototype, "i", {
15
+ /**
16
+ * @hidden
17
+ */
18
+ get: function () {
19
+ return this._implementation;
20
+ },
21
+ enumerable: true,
22
+ configurable: true
23
+ });
24
+ IgcToolActionIconMenuComponent.prototype.connectedCallback = function () {
25
+ if (_super.prototype["connectedCallback"]) {
26
+ _super.prototype["connectedCallback"].call(this);
27
+ }
28
+ if (this.i.connectedCallback) {
29
+ this.i.connectedCallback();
30
+ }
31
+ if (!this._attached) {
32
+ this._attached = true;
33
+ this._flushQueuedAttributes();
34
+ }
35
+ };
36
+ IgcToolActionIconMenuComponent.prototype.disconnectedCallback = function () {
37
+ if (_super.prototype["disconnectedCallback"]) {
38
+ _super.prototype["disconnectedCallback"].call(this);
39
+ }
40
+ if (this.i.disconnectedCallback) {
41
+ this.i.disconnectedCallback();
42
+ }
43
+ if (this._attached) {
44
+ this._attached = false;
45
+ }
46
+ };
47
+ Object.defineProperty(IgcToolActionIconMenuComponent, "observedAttributes", {
48
+ get: function () {
49
+ if (IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent == null) {
50
+ var names = getAllPropertyNames(IgcToolActionIconMenuComponent);
51
+ for (var i = 0; i < names.length; i++) {
52
+ names[i] = toSpinal(names[i]);
53
+ }
54
+ IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent = names;
55
+ }
56
+ return IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent;
57
+ },
58
+ enumerable: true,
59
+ configurable: true
60
+ });
61
+ IgcToolActionIconMenuComponent.register = function () {
62
+ if (!IgcToolActionIconMenuComponent._isElementRegistered) {
63
+ IgcToolActionIconMenuComponent._isElementRegistered = true;
64
+ RegisterElementHelper.registerElement(IgcToolActionIconMenuComponent.htmlTagName, IgcToolActionIconMenuComponent);
65
+ }
66
+ };
67
+ IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent = null;
68
+ IgcToolActionIconMenuComponent.htmlTagName = "igc-tool-action-icon-menu";
69
+ IgcToolActionIconMenuComponent._isElementRegistered = false;
70
+ return IgcToolActionIconMenuComponent;
71
+ }(IgcToolActionMenuBaseComponent));
72
+ export { IgcToolActionIconMenuComponent };
@@ -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 { IgcToolActionIconMenuComponent } from './igc-tool-action-icon-menu-component';
8
+ import { ToolActionIconMenu } from './ToolActionIconMenu';
9
+ import { TypeRegistrar } from "igniteui-webcomponents-core";
10
+ var IgcToolActionIconMenuModule = /** @class */ /*@__PURE__*/ (function () {
11
+ function IgcToolActionIconMenuModule() {
12
+ }
13
+ IgcToolActionIconMenuModule.register = function () {
14
+ IgcToolActionIconMenuComponent.register();
15
+ TypeRegistrar.registerCons("IgcToolActionIconMenuComponent", IgcToolActionIconMenuComponent);
16
+ TypeRegistrar.register("ToolActionIconMenu", ToolActionIconMenu.$type);
17
+ };
18
+ return IgcToolActionIconMenuModule;
19
+ }());
20
+ export { IgcToolActionIconMenuModule };
@@ -0,0 +1,72 @@
1
+ import * as tslib_1 from "tslib";
2
+ import { IgcToolActionComponent } from "./igc-tool-action-component";
3
+ import { ToolActionLabel } from "./ToolActionLabel";
4
+ import { getAllPropertyNames, toSpinal } from "igniteui-webcomponents-core";
5
+ import { RegisterElementHelper } from "igniteui-webcomponents-core";
6
+ var IgcToolActionLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
7
+ tslib_1.__extends(IgcToolActionLabelComponent, _super);
8
+ function IgcToolActionLabelComponent() {
9
+ return _super.call(this) || this;
10
+ }
11
+ IgcToolActionLabelComponent.prototype.createImplementation = function () {
12
+ return new ToolActionLabel();
13
+ };
14
+ Object.defineProperty(IgcToolActionLabelComponent.prototype, "i", {
15
+ /**
16
+ * @hidden
17
+ */
18
+ get: function () {
19
+ return this._implementation;
20
+ },
21
+ enumerable: true,
22
+ configurable: true
23
+ });
24
+ IgcToolActionLabelComponent.prototype.connectedCallback = function () {
25
+ if (_super.prototype["connectedCallback"]) {
26
+ _super.prototype["connectedCallback"].call(this);
27
+ }
28
+ if (this.i.connectedCallback) {
29
+ this.i.connectedCallback();
30
+ }
31
+ if (!this._attached) {
32
+ this._attached = true;
33
+ this._flushQueuedAttributes();
34
+ }
35
+ };
36
+ IgcToolActionLabelComponent.prototype.disconnectedCallback = function () {
37
+ if (_super.prototype["disconnectedCallback"]) {
38
+ _super.prototype["disconnectedCallback"].call(this);
39
+ }
40
+ if (this.i.disconnectedCallback) {
41
+ this.i.disconnectedCallback();
42
+ }
43
+ if (this._attached) {
44
+ this._attached = false;
45
+ }
46
+ };
47
+ Object.defineProperty(IgcToolActionLabelComponent, "observedAttributes", {
48
+ get: function () {
49
+ if (IgcToolActionLabelComponent._observedAttributesIgcToolActionLabelComponent == null) {
50
+ var names = getAllPropertyNames(IgcToolActionLabelComponent);
51
+ for (var i = 0; i < names.length; i++) {
52
+ names[i] = toSpinal(names[i]);
53
+ }
54
+ IgcToolActionLabelComponent._observedAttributesIgcToolActionLabelComponent = names;
55
+ }
56
+ return IgcToolActionLabelComponent._observedAttributesIgcToolActionLabelComponent;
57
+ },
58
+ enumerable: true,
59
+ configurable: true
60
+ });
61
+ IgcToolActionLabelComponent.register = function () {
62
+ if (!IgcToolActionLabelComponent._isElementRegistered) {
63
+ IgcToolActionLabelComponent._isElementRegistered = true;
64
+ RegisterElementHelper.registerElement(IgcToolActionLabelComponent.htmlTagName, IgcToolActionLabelComponent);
65
+ }
66
+ };
67
+ IgcToolActionLabelComponent._observedAttributesIgcToolActionLabelComponent = null;
68
+ IgcToolActionLabelComponent.htmlTagName = "igc-tool-action-label";
69
+ IgcToolActionLabelComponent._isElementRegistered = false;
70
+ return IgcToolActionLabelComponent;
71
+ }(IgcToolActionComponent));
72
+ export { IgcToolActionLabelComponent };
@@ -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 { IgcToolActionLabelComponent } from './igc-tool-action-label-component';
8
+ import { ToolActionLabel } from './ToolActionLabel';
9
+ import { TypeRegistrar } from "igniteui-webcomponents-core";
10
+ var IgcToolActionLabelModule = /** @class */ /*@__PURE__*/ (function () {
11
+ function IgcToolActionLabelModule() {
12
+ }
13
+ IgcToolActionLabelModule.register = function () {
14
+ IgcToolActionLabelComponent.register();
15
+ TypeRegistrar.registerCons("IgcToolActionLabelComponent", IgcToolActionLabelComponent);
16
+ TypeRegistrar.register("ToolActionLabel", ToolActionLabel.$type);
17
+ };
18
+ return IgcToolActionLabelModule;
19
+ }());
20
+ export { IgcToolActionLabelModule };
@@ -0,0 +1,117 @@
1
+ import * as tslib_1 from "tslib";
2
+ import { IgcToolActionCollection } from "./igc-tool-action-collection";
3
+ import { IgcToolActionComponent } from "./igc-tool-action-component";
4
+ import { getAllPropertyNames, toSpinal } from "igniteui-webcomponents-core";
5
+ import { ToolActionCollection as ToolActionCollection_internal } from "./ToolActionCollection";
6
+ import { ToolAction } from "./ToolAction";
7
+ import { SyncableObservableCollection$1 } from "igniteui-webcomponents-core";
8
+ /**
9
+ * Represents base class for all tool actions in menu
10
+ */
11
+ var IgcToolActionMenuBaseComponent = /** @class */ /*@__PURE__*/ (function (_super) {
12
+ tslib_1.__extends(IgcToolActionMenuBaseComponent, _super);
13
+ function IgcToolActionMenuBaseComponent() {
14
+ var _this = _super.call(this) || this;
15
+ _this._actions = null;
16
+ return _this;
17
+ }
18
+ Object.defineProperty(IgcToolActionMenuBaseComponent.prototype, "i", {
19
+ /**
20
+ * @hidden
21
+ */
22
+ get: function () {
23
+ return this._implementation;
24
+ },
25
+ enumerable: true,
26
+ configurable: true
27
+ });
28
+ IgcToolActionMenuBaseComponent.prototype.connectedCallback = function () {
29
+ if (_super.prototype["connectedCallback"]) {
30
+ _super.prototype["connectedCallback"].call(this);
31
+ }
32
+ if (this.i.connectedCallback) {
33
+ this.i.connectedCallback();
34
+ }
35
+ if (!this._attached) {
36
+ this._attached = true;
37
+ this._flushQueuedAttributes();
38
+ }
39
+ };
40
+ IgcToolActionMenuBaseComponent.prototype.disconnectedCallback = function () {
41
+ if (_super.prototype["disconnectedCallback"]) {
42
+ _super.prototype["disconnectedCallback"].call(this);
43
+ }
44
+ if (this.i.disconnectedCallback) {
45
+ this.i.disconnectedCallback();
46
+ }
47
+ if (this._attached) {
48
+ this._attached = false;
49
+ }
50
+ };
51
+ Object.defineProperty(IgcToolActionMenuBaseComponent, "observedAttributes", {
52
+ get: function () {
53
+ if (IgcToolActionMenuBaseComponent._observedAttributesIgcToolActionMenuBaseComponent == null) {
54
+ var names = getAllPropertyNames(IgcToolActionMenuBaseComponent);
55
+ for (var i = 0; i < names.length; i++) {
56
+ names[i] = toSpinal(names[i]);
57
+ }
58
+ IgcToolActionMenuBaseComponent._observedAttributesIgcToolActionMenuBaseComponent = names;
59
+ }
60
+ return IgcToolActionMenuBaseComponent._observedAttributesIgcToolActionMenuBaseComponent;
61
+ },
62
+ enumerable: true,
63
+ configurable: true
64
+ });
65
+ Object.defineProperty(IgcToolActionMenuBaseComponent.prototype, "actions", {
66
+ /**
67
+ * Gets or sets the data or data source instance to which to bind the grid.
68
+ */
69
+ get: function () {
70
+ if (this._actions === null) {
71
+ var coll = new IgcToolActionCollection();
72
+ var innerColl = this.i.actions;
73
+ if (!innerColl) {
74
+ innerColl = new ToolActionCollection_internal();
75
+ }
76
+ this._actions = coll._fromInner(innerColl);
77
+ this.i.actions = innerColl;
78
+ }
79
+ return this._actions;
80
+ },
81
+ set: function (v) {
82
+ if (this._actions !== null) {
83
+ this._actions._setSyncTarget(null);
84
+ this._actions = null;
85
+ }
86
+ var coll = new IgcToolActionCollection();
87
+ this._actions = coll._fromOuter(v);
88
+ var syncColl = new SyncableObservableCollection$1(ToolAction.$type);
89
+ var innerColl = this.i.actions;
90
+ if (!innerColl) {
91
+ innerColl = new ToolActionCollection_internal();
92
+ }
93
+ syncColl._inner = innerColl;
94
+ syncColl.clear();
95
+ this._actions._setSyncTarget(syncColl);
96
+ this.i.actions = innerColl;
97
+ },
98
+ enumerable: true,
99
+ configurable: true
100
+ });
101
+ IgcToolActionMenuBaseComponent.prototype.findByName = function (name) {
102
+ var baseResult = _super.prototype.findByName.call(this, name);
103
+ if (baseResult) {
104
+ return baseResult;
105
+ }
106
+ if (this.actions != null && this.actions.findByName && this.actions.findByName(name)) {
107
+ return this.actions.findByName(name);
108
+ }
109
+ return null;
110
+ };
111
+ IgcToolActionMenuBaseComponent.prototype.fromInfo = function (info) {
112
+ this.i.a6(info);
113
+ };
114
+ IgcToolActionMenuBaseComponent._observedAttributesIgcToolActionMenuBaseComponent = null;
115
+ return IgcToolActionMenuBaseComponent;
116
+ }(IgcToolActionComponent));
117
+ export { IgcToolActionMenuBaseComponent };
@@ -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 { IgcToolActionComponent } from './igc-tool-action-component';
8
+ import { ToolAction } from './ToolAction';
9
+ import { TypeRegistrar } from "igniteui-webcomponents-core";
10
+ var IgcToolActionModule = /** @class */ /*@__PURE__*/ (function () {
11
+ function IgcToolActionModule() {
12
+ }
13
+ IgcToolActionModule.register = function () {
14
+ IgcToolActionComponent.register();
15
+ TypeRegistrar.registerCons("IgcToolActionComponent", IgcToolActionComponent);
16
+ TypeRegistrar.register("ToolAction", ToolAction.$type);
17
+ };
18
+ return IgcToolActionModule;
19
+ }());
20
+ export { IgcToolActionModule };
@@ -0,0 +1,72 @@
1
+ import * as tslib_1 from "tslib";
2
+ import { IgcToolActionComponent } from "./igc-tool-action-component";
3
+ import { ToolActionNumberInput } from "./ToolActionNumberInput";
4
+ import { getAllPropertyNames, toSpinal } from "igniteui-webcomponents-core";
5
+ import { RegisterElementHelper } from "igniteui-webcomponents-core";
6
+ var IgcToolActionNumberInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
7
+ tslib_1.__extends(IgcToolActionNumberInputComponent, _super);
8
+ function IgcToolActionNumberInputComponent() {
9
+ return _super.call(this) || this;
10
+ }
11
+ IgcToolActionNumberInputComponent.prototype.createImplementation = function () {
12
+ return new ToolActionNumberInput();
13
+ };
14
+ Object.defineProperty(IgcToolActionNumberInputComponent.prototype, "i", {
15
+ /**
16
+ * @hidden
17
+ */
18
+ get: function () {
19
+ return this._implementation;
20
+ },
21
+ enumerable: true,
22
+ configurable: true
23
+ });
24
+ IgcToolActionNumberInputComponent.prototype.connectedCallback = function () {
25
+ if (_super.prototype["connectedCallback"]) {
26
+ _super.prototype["connectedCallback"].call(this);
27
+ }
28
+ if (this.i.connectedCallback) {
29
+ this.i.connectedCallback();
30
+ }
31
+ if (!this._attached) {
32
+ this._attached = true;
33
+ this._flushQueuedAttributes();
34
+ }
35
+ };
36
+ IgcToolActionNumberInputComponent.prototype.disconnectedCallback = function () {
37
+ if (_super.prototype["disconnectedCallback"]) {
38
+ _super.prototype["disconnectedCallback"].call(this);
39
+ }
40
+ if (this.i.disconnectedCallback) {
41
+ this.i.disconnectedCallback();
42
+ }
43
+ if (this._attached) {
44
+ this._attached = false;
45
+ }
46
+ };
47
+ Object.defineProperty(IgcToolActionNumberInputComponent, "observedAttributes", {
48
+ get: function () {
49
+ if (IgcToolActionNumberInputComponent._observedAttributesIgcToolActionNumberInputComponent == null) {
50
+ var names = getAllPropertyNames(IgcToolActionNumberInputComponent);
51
+ for (var i = 0; i < names.length; i++) {
52
+ names[i] = toSpinal(names[i]);
53
+ }
54
+ IgcToolActionNumberInputComponent._observedAttributesIgcToolActionNumberInputComponent = names;
55
+ }
56
+ return IgcToolActionNumberInputComponent._observedAttributesIgcToolActionNumberInputComponent;
57
+ },
58
+ enumerable: true,
59
+ configurable: true
60
+ });
61
+ IgcToolActionNumberInputComponent.register = function () {
62
+ if (!IgcToolActionNumberInputComponent._isElementRegistered) {
63
+ IgcToolActionNumberInputComponent._isElementRegistered = true;
64
+ RegisterElementHelper.registerElement(IgcToolActionNumberInputComponent.htmlTagName, IgcToolActionNumberInputComponent);
65
+ }
66
+ };
67
+ IgcToolActionNumberInputComponent._observedAttributesIgcToolActionNumberInputComponent = null;
68
+ IgcToolActionNumberInputComponent.htmlTagName = "igc-tool-action-number-input";
69
+ IgcToolActionNumberInputComponent._isElementRegistered = false;
70
+ return IgcToolActionNumberInputComponent;
71
+ }(IgcToolActionComponent));
72
+ export { IgcToolActionNumberInputComponent };
@@ -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 { IgcToolActionNumberInputComponent } from './igc-tool-action-number-input-component';
8
+ import { ToolActionNumberInput } from './ToolActionNumberInput';
9
+ import { TypeRegistrar } from "igniteui-webcomponents-core";
10
+ var IgcToolActionNumberInputModule = /** @class */ /*@__PURE__*/ (function () {
11
+ function IgcToolActionNumberInputModule() {
12
+ }
13
+ IgcToolActionNumberInputModule.register = function () {
14
+ IgcToolActionNumberInputComponent.register();
15
+ TypeRegistrar.registerCons("IgcToolActionNumberInputComponent", IgcToolActionNumberInputComponent);
16
+ TypeRegistrar.register("ToolActionNumberInput", ToolActionNumberInput.$type);
17
+ };
18
+ return IgcToolActionNumberInputModule;
19
+ }());
20
+ export { IgcToolActionNumberInputModule };
@@ -0,0 +1,104 @@
1
+ import { IgcToolActionEventDetail } from "./igc-tool-action-event-detail";
2
+ import { IgcToolActionEventDetailCollection } from "./igc-tool-action-event-detail-collection";
3
+ import { ToolActionPerformedEventArgs as ToolActionPerformedEventArgs_internal } from "./ToolActionPerformedEventArgs";
4
+ import { ensureBool } from "igniteui-webcomponents-core";
5
+ import { ToolActionEventDetailCollection as ToolActionEventDetailCollection_internal } from "./ToolActionEventDetailCollection";
6
+ import { ToolActionEventDetail } from "./ToolActionEventDetail";
7
+ import { SyncableObservableCollection$1 } from "igniteui-webcomponents-core";
8
+ var IgcToolActionPerformedEventArgs = /** @class */ /*@__PURE__*/ (function () {
9
+ function IgcToolActionPerformedEventArgs() {
10
+ this._detailCollection = null;
11
+ this._implementation = this.createImplementation();
12
+ this._implementation.externalObject = this;
13
+ this.onImplementationCreated();
14
+ }
15
+ IgcToolActionPerformedEventArgs.prototype.createImplementation = function () {
16
+ return new ToolActionPerformedEventArgs_internal();
17
+ };
18
+ Object.defineProperty(IgcToolActionPerformedEventArgs.prototype, "i", {
19
+ /**
20
+ * @hidden
21
+ */
22
+ get: function () {
23
+ return this._implementation;
24
+ },
25
+ enumerable: true,
26
+ configurable: true
27
+ });
28
+ IgcToolActionPerformedEventArgs.prototype.onImplementationCreated = function () {
29
+ };
30
+ IgcToolActionPerformedEventArgs.prototype._provideImplementation = function (i) {
31
+ this._implementation = i;
32
+ this._implementation.externalObject = this;
33
+ this.onImplementationCreated();
34
+ };
35
+ Object.defineProperty(IgcToolActionPerformedEventArgs.prototype, "isAggregate", {
36
+ get: function () {
37
+ return this.i.c;
38
+ },
39
+ set: function (v) {
40
+ this.i.c = ensureBool(v);
41
+ },
42
+ enumerable: true,
43
+ configurable: true
44
+ });
45
+ Object.defineProperty(IgcToolActionPerformedEventArgs.prototype, "detail", {
46
+ get: function () {
47
+ var r = this.i.a;
48
+ if (r == null) {
49
+ return null;
50
+ }
51
+ if (!r.externalObject) {
52
+ var e = new IgcToolActionEventDetail();
53
+ if (e.i.setNativeElement) {
54
+ e.i.setNativeElement(r);
55
+ }
56
+ else {
57
+ e._implementation = r;
58
+ }
59
+ r.externalObject = e;
60
+ }
61
+ return r.externalObject;
62
+ },
63
+ set: function (v) {
64
+ v == null ? this.i.a = null : this.i.a = v.i;
65
+ },
66
+ enumerable: true,
67
+ configurable: true
68
+ });
69
+ Object.defineProperty(IgcToolActionPerformedEventArgs.prototype, "detailCollection", {
70
+ get: function () {
71
+ if (this._detailCollection === null) {
72
+ var coll = new IgcToolActionEventDetailCollection();
73
+ var innerColl = this.i.b;
74
+ if (!innerColl) {
75
+ innerColl = new ToolActionEventDetailCollection_internal();
76
+ }
77
+ this._detailCollection = coll._fromInner(innerColl);
78
+ this.i.b = innerColl;
79
+ }
80
+ return this._detailCollection;
81
+ },
82
+ set: function (v) {
83
+ if (this._detailCollection !== null) {
84
+ this._detailCollection._setSyncTarget(null);
85
+ this._detailCollection = null;
86
+ }
87
+ var coll = new IgcToolActionEventDetailCollection();
88
+ this._detailCollection = coll._fromOuter(v);
89
+ var syncColl = new SyncableObservableCollection$1(ToolActionEventDetail.$type);
90
+ var innerColl = this.i.b;
91
+ if (!innerColl) {
92
+ innerColl = new ToolActionEventDetailCollection_internal();
93
+ }
94
+ syncColl._inner = innerColl;
95
+ syncColl.clear();
96
+ this._detailCollection._setSyncTarget(syncColl);
97
+ this.i.b = innerColl;
98
+ },
99
+ enumerable: true,
100
+ configurable: true
101
+ });
102
+ return IgcToolActionPerformedEventArgs;
103
+ }());
104
+ export { IgcToolActionPerformedEventArgs };