igniteui-webcomponents-layouts 3.2.3 → 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 (242) hide show
  1. package/bundles/igniteui-webcomponents-layouts.umd.js +6905 -138
  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/ToolAction.js +7 -0
  25. package/esm2015/lib/ToolActionCheckbox.js +7 -0
  26. package/esm2015/lib/ToolActionCollection.js +7 -0
  27. package/esm2015/lib/ToolActionEventDetail.js +7 -0
  28. package/esm2015/lib/ToolActionEventDetailCollection.js +7 -0
  29. package/esm2015/lib/ToolActionGroupHeader.js +7 -0
  30. package/esm2015/lib/ToolActionIconButton.js +7 -0
  31. package/esm2015/lib/ToolActionIconMenu.js +7 -0
  32. package/esm2015/lib/ToolActionMeasurementContext.js +31 -0
  33. package/esm2015/lib/ToolActionMenuBase.js +7 -0
  34. package/esm2015/lib/ToolActionNumberInput.js +7 -0
  35. package/esm2015/lib/ToolActionPerformedEventArgs.js +7 -0
  36. package/esm2015/lib/ToolActionSeparator.js +7 -0
  37. package/esm2015/lib/ToolCommandEventArgs.js +20 -0
  38. package/esm2015/lib/ToolPanel.js +7 -0
  39. package/esm2015/lib/ToolPanelContentRefreshedEventArgs.js +19 -0
  40. package/esm2015/lib/ToolPanelOrientation.js +16 -0
  41. package/esm2015/lib/ToolPanelView.js +7 -0
  42. package/esm2015/lib/ToolPanelView_combined.js +1515 -0
  43. package/esm2015/lib/Toolbar.js +7 -0
  44. package/esm2015/lib/ToolbarIconManager.js +40 -0
  45. package/esm2015/lib/ToolbarOrientation.js +16 -0
  46. package/esm2015/lib/ToolbarView.js +7 -0
  47. package/esm2015/lib/ToolbarView_combined.js +387 -0
  48. package/esm2015/lib/igc-list-panel-component.js +457 -0
  49. package/esm2015/lib/igc-list-panel-content-refreshed-event-args.js +24 -0
  50. package/esm2015/lib/igc-list-panel-item-model.js +52 -0
  51. package/esm2015/lib/igc-list-panel-module.js +17 -0
  52. package/esm2015/lib/igc-list-panel-template-height-requested-event-args.js +42 -0
  53. package/esm2015/lib/igc-list-panel-template-item-updating-event-args.js +45 -0
  54. package/esm2015/lib/igc-list-panel-template-width-requested-event-args.js +42 -0
  55. package/esm2015/lib/igc-property-editor-panel-component.js +1 -5
  56. package/esm2015/lib/igc-tool-action-checkbox-component.js +49 -0
  57. package/esm2015/lib/igc-tool-action-checkbox-module.js +16 -0
  58. package/esm2015/lib/igc-tool-action-collection.js +48 -0
  59. package/esm2015/lib/igc-tool-action-component.js +312 -0
  60. package/esm2015/lib/igc-tool-action-event-detail-collection.js +48 -0
  61. package/esm2015/lib/igc-tool-action-event-detail.js +85 -0
  62. package/esm2015/lib/igc-tool-action-group-header-component.js +49 -0
  63. package/esm2015/lib/igc-tool-action-group-header-module.js +16 -0
  64. package/esm2015/lib/igc-tool-action-icon-button-component.js +49 -0
  65. package/esm2015/lib/igc-tool-action-icon-button-module.js +16 -0
  66. package/esm2015/lib/igc-tool-action-icon-menu-component.js +49 -0
  67. package/esm2015/lib/igc-tool-action-icon-menu-module.js +16 -0
  68. package/esm2015/lib/igc-tool-action-menu-base-component.js +89 -0
  69. package/esm2015/lib/igc-tool-action-module.js +16 -0
  70. package/esm2015/lib/igc-tool-action-number-input-component.js +49 -0
  71. package/esm2015/lib/igc-tool-action-number-input-module.js +16 -0
  72. package/esm2015/lib/igc-tool-action-performed-event-args.js +80 -0
  73. package/esm2015/lib/igc-tool-action-separator-component.js +49 -0
  74. package/esm2015/lib/igc-tool-action-separator-module.js +16 -0
  75. package/esm2015/lib/igc-tool-command-event-args.js +30 -0
  76. package/esm2015/lib/igc-tool-panel-component.js +379 -0
  77. package/esm2015/lib/igc-tool-panel-content-refreshed-event-args.js +24 -0
  78. package/esm2015/lib/igc-tool-panel-module.js +29 -0
  79. package/esm2015/lib/igc-toolbar-component.js +412 -0
  80. package/esm2015/lib/igc-toolbar-module.js +19 -0
  81. package/esm2015/public_api.js +73 -0
  82. package/esm5/lib/IExternalListPanel.js +11 -0
  83. package/esm5/lib/IExternalToolPanel.js +11 -0
  84. package/esm5/lib/IExternalToolbar.js +11 -0
  85. package/esm5/lib/IListPanelView.js +11 -0
  86. package/esm5/lib/IPropertyEditorPanelView.js +11 -0
  87. package/esm5/lib/IToolPanelView.js +11 -0
  88. package/esm5/lib/IToolbarView.js +11 -0
  89. package/esm5/lib/ListPanel.js +7 -0
  90. package/esm5/lib/ListPanelContentRefreshedEventArgs.js +20 -0
  91. package/esm5/lib/ListPanelDataBindingEventArgs.js +24 -0
  92. package/esm5/lib/ListPanelDataSourceNotificationBridge.js +7 -0
  93. package/esm5/lib/ListPanelItemModel.js +80 -0
  94. package/esm5/lib/ListPanelItemPresenter.js +22 -0
  95. package/esm5/lib/ListPanelLayoutPanel.js +7 -0
  96. package/esm5/lib/ListPanelOrientation.js +16 -0
  97. package/esm5/lib/ListPanelTemplateHeightRequestedEventArgs.js +24 -0
  98. package/esm5/lib/ListPanelTemplateItemUpdatingEventArgs.js +24 -0
  99. package/esm5/lib/ListPanelTemplateWidthRequestedEventArgs.js +24 -0
  100. package/esm5/lib/ListPanelView.js +7 -0
  101. package/esm5/lib/ListPanelView_combined.js +1045 -0
  102. package/esm5/lib/PropertyEditorPanelView_combined.js +100 -100
  103. package/esm5/lib/ToolAction.js +7 -0
  104. package/esm5/lib/ToolActionCheckbox.js +7 -0
  105. package/esm5/lib/ToolActionCollection.js +7 -0
  106. package/esm5/lib/ToolActionEventDetail.js +7 -0
  107. package/esm5/lib/ToolActionEventDetailCollection.js +7 -0
  108. package/esm5/lib/ToolActionGroupHeader.js +7 -0
  109. package/esm5/lib/ToolActionIconButton.js +7 -0
  110. package/esm5/lib/ToolActionIconMenu.js +7 -0
  111. package/esm5/lib/ToolActionMeasurementContext.js +33 -0
  112. package/esm5/lib/ToolActionMenuBase.js +7 -0
  113. package/esm5/lib/ToolActionNumberInput.js +7 -0
  114. package/esm5/lib/ToolActionPerformedEventArgs.js +7 -0
  115. package/esm5/lib/ToolActionSeparator.js +7 -0
  116. package/esm5/lib/ToolCommandEventArgs.js +22 -0
  117. package/esm5/lib/ToolPanel.js +7 -0
  118. package/esm5/lib/ToolPanelContentRefreshedEventArgs.js +20 -0
  119. package/esm5/lib/ToolPanelOrientation.js +16 -0
  120. package/esm5/lib/ToolPanelView.js +7 -0
  121. package/esm5/lib/ToolPanelView_combined.js +1663 -0
  122. package/esm5/lib/Toolbar.js +7 -0
  123. package/esm5/lib/ToolbarIconManager.js +44 -0
  124. package/esm5/lib/ToolbarOrientation.js +16 -0
  125. package/esm5/lib/ToolbarView.js +7 -0
  126. package/esm5/lib/ToolbarView_combined.js +459 -0
  127. package/esm5/lib/igc-list-panel-component.js +535 -0
  128. package/esm5/lib/igc-list-panel-content-refreshed-event-args.js +30 -0
  129. package/esm5/lib/igc-list-panel-item-model.js +74 -0
  130. package/esm5/lib/igc-list-panel-module.js +21 -0
  131. package/esm5/lib/igc-list-panel-template-height-requested-event-args.js +60 -0
  132. package/esm5/lib/igc-list-panel-template-item-updating-event-args.js +59 -0
  133. package/esm5/lib/igc-list-panel-template-width-requested-event-args.js +60 -0
  134. package/esm5/lib/igc-property-editor-panel-component.js +1 -5
  135. package/esm5/lib/igc-tool-action-checkbox-component.js +58 -0
  136. package/esm5/lib/igc-tool-action-checkbox-module.js +20 -0
  137. package/esm5/lib/igc-tool-action-collection.js +53 -0
  138. package/esm5/lib/igc-tool-action-component.js +388 -0
  139. package/esm5/lib/igc-tool-action-event-detail-collection.js +53 -0
  140. package/esm5/lib/igc-tool-action-event-detail.js +119 -0
  141. package/esm5/lib/igc-tool-action-group-header-component.js +58 -0
  142. package/esm5/lib/igc-tool-action-group-header-module.js +20 -0
  143. package/esm5/lib/igc-tool-action-icon-button-component.js +58 -0
  144. package/esm5/lib/igc-tool-action-icon-button-module.js +20 -0
  145. package/esm5/lib/igc-tool-action-icon-menu-component.js +58 -0
  146. package/esm5/lib/igc-tool-action-icon-menu-module.js +20 -0
  147. package/esm5/lib/igc-tool-action-menu-base-component.js +103 -0
  148. package/esm5/lib/igc-tool-action-module.js +20 -0
  149. package/esm5/lib/igc-tool-action-number-input-component.js +58 -0
  150. package/esm5/lib/igc-tool-action-number-input-module.js +20 -0
  151. package/esm5/lib/igc-tool-action-performed-event-args.js +98 -0
  152. package/esm5/lib/igc-tool-action-separator-component.js +58 -0
  153. package/esm5/lib/igc-tool-action-separator-module.js +20 -0
  154. package/esm5/lib/igc-tool-command-event-args.js +40 -0
  155. package/esm5/lib/igc-tool-panel-component.js +449 -0
  156. package/esm5/lib/igc-tool-panel-content-refreshed-event-args.js +30 -0
  157. package/esm5/lib/igc-tool-panel-module.js +33 -0
  158. package/esm5/lib/igc-toolbar-component.js +484 -0
  159. package/esm5/lib/igc-toolbar-module.js +23 -0
  160. package/esm5/public_api.js +73 -0
  161. package/fesm2015/igniteui-webcomponents-layouts.js +6030 -140
  162. package/fesm5/igniteui-webcomponents-layouts.js +6831 -140
  163. package/lib/IExternalListPanel.d.ts +13 -0
  164. package/lib/IExternalToolPanel.d.ts +13 -0
  165. package/lib/IExternalToolbar.d.ts +13 -0
  166. package/lib/IListPanelView.d.ts +25 -0
  167. package/lib/IPropertyEditorPanelView.d.ts +26 -0
  168. package/lib/IToolPanelView.d.ts +25 -0
  169. package/lib/IToolbarView.d.ts +25 -0
  170. package/lib/ListPanel.d.ts +1 -0
  171. package/lib/ListPanelContentRefreshedEventArgs.d.ts +8 -0
  172. package/lib/ListPanelDataBindingEventArgs.d.ts +10 -0
  173. package/lib/ListPanelDataSourceNotificationBridge.d.ts +1 -0
  174. package/lib/ListPanelItemModel.d.ts +22 -0
  175. package/lib/ListPanelItemPresenter.d.ts +9 -0
  176. package/lib/ListPanelLayoutPanel.d.ts +1 -0
  177. package/lib/ListPanelOrientation.d.ts +9 -0
  178. package/lib/ListPanelTemplateHeightRequestedEventArgs.d.ts +10 -0
  179. package/lib/ListPanelTemplateItemUpdatingEventArgs.d.ts +12 -0
  180. package/lib/ListPanelTemplateWidthRequestedEventArgs.d.ts +10 -0
  181. package/lib/ListPanelView.d.ts +1 -0
  182. package/lib/ListPanelView_combined.d.ts +197 -0
  183. package/lib/PropertyEditorPanelView_combined.d.ts +1 -1
  184. package/lib/ToolAction.d.ts +1 -0
  185. package/lib/ToolActionCheckbox.d.ts +1 -0
  186. package/lib/ToolActionCollection.d.ts +1 -0
  187. package/lib/ToolActionEventDetail.d.ts +1 -0
  188. package/lib/ToolActionEventDetailCollection.d.ts +1 -0
  189. package/lib/ToolActionGroupHeader.d.ts +1 -0
  190. package/lib/ToolActionIconButton.d.ts +1 -0
  191. package/lib/ToolActionIconMenu.d.ts +1 -0
  192. package/lib/ToolActionMeasurementContext.d.ts +16 -0
  193. package/lib/ToolActionMenuBase.d.ts +1 -0
  194. package/lib/ToolActionNumberInput.d.ts +1 -0
  195. package/lib/ToolActionPerformedEventArgs.d.ts +1 -0
  196. package/lib/ToolActionSeparator.d.ts +1 -0
  197. package/lib/ToolCommandEventArgs.d.ts +10 -0
  198. package/lib/ToolPanel.d.ts +1 -0
  199. package/lib/ToolPanelContentRefreshedEventArgs.d.ts +8 -0
  200. package/lib/ToolPanelOrientation.d.ts +9 -0
  201. package/lib/ToolPanelView.d.ts +1 -0
  202. package/lib/ToolPanelView_combined.d.ts +328 -0
  203. package/lib/Toolbar.d.ts +1 -0
  204. package/lib/ToolbarIconManager.d.ts +10 -0
  205. package/lib/ToolbarOrientation.d.ts +9 -0
  206. package/lib/ToolbarView.d.ts +1 -0
  207. package/lib/ToolbarView_combined.d.ts +98 -0
  208. package/lib/igc-list-panel-component.d.ts +122 -0
  209. package/lib/igc-list-panel-content-refreshed-event-args.d.ts +12 -0
  210. package/lib/igc-list-panel-item-model.d.ts +17 -0
  211. package/lib/igc-list-panel-module.d.ts +3 -0
  212. package/lib/igc-list-panel-template-height-requested-event-args.d.ts +15 -0
  213. package/lib/igc-list-panel-template-item-updating-event-args.d.ts +15 -0
  214. package/lib/igc-list-panel-template-width-requested-event-args.d.ts +15 -0
  215. package/lib/igc-property-editor-panel-component.d.ts +0 -2
  216. package/lib/igc-tool-action-checkbox-component.d.ts +16 -0
  217. package/lib/igc-tool-action-checkbox-module.d.ts +3 -0
  218. package/lib/igc-tool-action-collection.d.ts +8 -0
  219. package/lib/igc-tool-action-component.d.ts +64 -0
  220. package/lib/igc-tool-action-event-detail-collection.d.ts +8 -0
  221. package/lib/igc-tool-action-event-detail.d.ts +22 -0
  222. package/lib/igc-tool-action-group-header-component.d.ts +16 -0
  223. package/lib/igc-tool-action-group-header-module.d.ts +3 -0
  224. package/lib/igc-tool-action-icon-button-component.d.ts +16 -0
  225. package/lib/igc-tool-action-icon-button-module.d.ts +3 -0
  226. package/lib/igc-tool-action-icon-menu-component.d.ts +16 -0
  227. package/lib/igc-tool-action-icon-menu-module.d.ts +3 -0
  228. package/lib/igc-tool-action-menu-base-component.d.ts +24 -0
  229. package/lib/igc-tool-action-module.d.ts +3 -0
  230. package/lib/igc-tool-action-number-input-component.d.ts +16 -0
  231. package/lib/igc-tool-action-number-input-module.d.ts +3 -0
  232. package/lib/igc-tool-action-performed-event-args.d.ts +18 -0
  233. package/lib/igc-tool-action-separator-component.d.ts +16 -0
  234. package/lib/igc-tool-action-separator-module.d.ts +3 -0
  235. package/lib/igc-tool-command-event-args.d.ts +14 -0
  236. package/lib/igc-tool-panel-component.d.ts +83 -0
  237. package/lib/igc-tool-panel-content-refreshed-event-args.d.ts +12 -0
  238. package/lib/igc-tool-panel-module.d.ts +3 -0
  239. package/lib/igc-toolbar-component.d.ts +89 -0
  240. package/lib/igc-toolbar-module.d.ts +3 -0
  241. package/package.json +3 -3
  242. package/public_api.d.ts +73 -0
@@ -0,0 +1,60 @@
1
+ import { ListPanelTemplateHeightRequestedEventArgs as ListPanelTemplateHeightRequestedEventArgs_internal } from "./ListPanelTemplateHeightRequestedEventArgs";
2
+ var IgcListPanelTemplateHeightRequestedEventArgs = /** @class */ /*@__PURE__*/ (function () {
3
+ function IgcListPanelTemplateHeightRequestedEventArgs() {
4
+ this._implementation = this.createImplementation();
5
+ this._implementation.externalObject = this;
6
+ this.onImplementationCreated();
7
+ }
8
+ IgcListPanelTemplateHeightRequestedEventArgs.prototype.createImplementation = function () {
9
+ return new ListPanelTemplateHeightRequestedEventArgs_internal();
10
+ };
11
+ Object.defineProperty(IgcListPanelTemplateHeightRequestedEventArgs.prototype, "i", {
12
+ /**
13
+ * @hidden
14
+ */
15
+ get: function () {
16
+ return this._implementation;
17
+ },
18
+ enumerable: true,
19
+ configurable: true
20
+ });
21
+ IgcListPanelTemplateHeightRequestedEventArgs.prototype.onImplementationCreated = function () {
22
+ };
23
+ IgcListPanelTemplateHeightRequestedEventArgs.prototype._provideImplementation = function (i) {
24
+ this._implementation = i;
25
+ this._implementation.externalObject = this;
26
+ this.onImplementationCreated();
27
+ };
28
+ Object.defineProperty(IgcListPanelTemplateHeightRequestedEventArgs.prototype, "dataRow", {
29
+ get: function () {
30
+ return this.i.b;
31
+ },
32
+ set: function (v) {
33
+ this.i.b = +v;
34
+ },
35
+ enumerable: true,
36
+ configurable: true
37
+ });
38
+ Object.defineProperty(IgcListPanelTemplateHeightRequestedEventArgs.prototype, "dataItem", {
39
+ get: function () {
40
+ return this.i.c;
41
+ },
42
+ set: function (v) {
43
+ this.i.c = v;
44
+ },
45
+ enumerable: true,
46
+ configurable: true
47
+ });
48
+ Object.defineProperty(IgcListPanelTemplateHeightRequestedEventArgs.prototype, "height", {
49
+ get: function () {
50
+ return this.i.a;
51
+ },
52
+ set: function (v) {
53
+ this.i.a = +v;
54
+ },
55
+ enumerable: true,
56
+ configurable: true
57
+ });
58
+ return IgcListPanelTemplateHeightRequestedEventArgs;
59
+ }());
60
+ export { IgcListPanelTemplateHeightRequestedEventArgs };
@@ -0,0 +1,59 @@
1
+ import { IgcListPanelItemModel } from "./igc-list-panel-item-model";
2
+ import { ListPanelTemplateItemUpdatingEventArgs as ListPanelTemplateItemUpdatingEventArgs_internal } from "./ListPanelTemplateItemUpdatingEventArgs";
3
+ var IgcListPanelTemplateItemUpdatingEventArgs = /** @class */ /*@__PURE__*/ (function () {
4
+ function IgcListPanelTemplateItemUpdatingEventArgs() {
5
+ this._implementation = this.createImplementation();
6
+ this._implementation.externalObject = this;
7
+ this.onImplementationCreated();
8
+ }
9
+ IgcListPanelTemplateItemUpdatingEventArgs.prototype.createImplementation = function () {
10
+ return new ListPanelTemplateItemUpdatingEventArgs_internal();
11
+ };
12
+ Object.defineProperty(IgcListPanelTemplateItemUpdatingEventArgs.prototype, "i", {
13
+ /**
14
+ * @hidden
15
+ */
16
+ get: function () {
17
+ return this._implementation;
18
+ },
19
+ enumerable: true,
20
+ configurable: true
21
+ });
22
+ IgcListPanelTemplateItemUpdatingEventArgs.prototype.onImplementationCreated = function () {
23
+ };
24
+ IgcListPanelTemplateItemUpdatingEventArgs.prototype._provideImplementation = function (i) {
25
+ this._implementation = i;
26
+ this._implementation.externalObject = this;
27
+ this.onImplementationCreated();
28
+ };
29
+ Object.defineProperty(IgcListPanelTemplateItemUpdatingEventArgs.prototype, "model", {
30
+ get: function () {
31
+ if (this.i.a == null) {
32
+ return null;
33
+ }
34
+ if (!this.i.a.externalObject) {
35
+ var e = new IgcListPanelItemModel();
36
+ e._implementation = this.i.a;
37
+ this.i.a.externalObject = e;
38
+ }
39
+ return this.i.a.externalObject;
40
+ },
41
+ set: function (v) {
42
+ v == null ? this.i.a = null : this.i.a = v.i;
43
+ },
44
+ enumerable: true,
45
+ configurable: true
46
+ });
47
+ Object.defineProperty(IgcListPanelTemplateItemUpdatingEventArgs.prototype, "content", {
48
+ get: function () {
49
+ return this.i.c;
50
+ },
51
+ set: function (v) {
52
+ this.i.c = v;
53
+ },
54
+ enumerable: true,
55
+ configurable: true
56
+ });
57
+ return IgcListPanelTemplateItemUpdatingEventArgs;
58
+ }());
59
+ export { IgcListPanelTemplateItemUpdatingEventArgs };
@@ -0,0 +1,60 @@
1
+ import { ListPanelTemplateWidthRequestedEventArgs as ListPanelTemplateWidthRequestedEventArgs_internal } from "./ListPanelTemplateWidthRequestedEventArgs";
2
+ var IgcListPanelTemplateWidthRequestedEventArgs = /** @class */ /*@__PURE__*/ (function () {
3
+ function IgcListPanelTemplateWidthRequestedEventArgs() {
4
+ this._implementation = this.createImplementation();
5
+ this._implementation.externalObject = this;
6
+ this.onImplementationCreated();
7
+ }
8
+ IgcListPanelTemplateWidthRequestedEventArgs.prototype.createImplementation = function () {
9
+ return new ListPanelTemplateWidthRequestedEventArgs_internal();
10
+ };
11
+ Object.defineProperty(IgcListPanelTemplateWidthRequestedEventArgs.prototype, "i", {
12
+ /**
13
+ * @hidden
14
+ */
15
+ get: function () {
16
+ return this._implementation;
17
+ },
18
+ enumerable: true,
19
+ configurable: true
20
+ });
21
+ IgcListPanelTemplateWidthRequestedEventArgs.prototype.onImplementationCreated = function () {
22
+ };
23
+ IgcListPanelTemplateWidthRequestedEventArgs.prototype._provideImplementation = function (i) {
24
+ this._implementation = i;
25
+ this._implementation.externalObject = this;
26
+ this.onImplementationCreated();
27
+ };
28
+ Object.defineProperty(IgcListPanelTemplateWidthRequestedEventArgs.prototype, "dataRow", {
29
+ get: function () {
30
+ return this.i.b;
31
+ },
32
+ set: function (v) {
33
+ this.i.b = +v;
34
+ },
35
+ enumerable: true,
36
+ configurable: true
37
+ });
38
+ Object.defineProperty(IgcListPanelTemplateWidthRequestedEventArgs.prototype, "dataItem", {
39
+ get: function () {
40
+ return this.i.c;
41
+ },
42
+ set: function (v) {
43
+ this.i.c = v;
44
+ },
45
+ enumerable: true,
46
+ configurable: true
47
+ });
48
+ Object.defineProperty(IgcListPanelTemplateWidthRequestedEventArgs.prototype, "width", {
49
+ get: function () {
50
+ return this.i.a;
51
+ },
52
+ set: function (v) {
53
+ this.i.a = +v;
54
+ },
55
+ enumerable: true,
56
+ configurable: true
57
+ });
58
+ return IgcListPanelTemplateWidthRequestedEventArgs;
59
+ }());
60
+ export { IgcListPanelTemplateWidthRequestedEventArgs };
@@ -1,5 +1,5 @@
1
1
  import * as tslib_1 from "tslib";
2
- import { fromSize, brushToString, stringToBrush, ensureBool, initializePropertiesFromCss, NamePatcher, toSpinal, getAllPropertyNames, fromSpinal } from "igniteui-webcomponents-core";
2
+ import { brushToString, stringToBrush, ensureBool, initializePropertiesFromCss, NamePatcher, toSpinal, getAllPropertyNames, fromSpinal } from "igniteui-webcomponents-core";
3
3
  import { FontInfo } from "igniteui-webcomponents-core";
4
4
  import { WebComponentRenderer, PortalManager } from "igniteui-webcomponents-core";
5
5
  import { CollectionAdapter } from "igniteui-webcomponents-core";
@@ -517,10 +517,6 @@ var IgcPropertyEditorPanelComponent = /** @class */ /*@__PURE__*/ (function (_su
517
517
  }
518
518
  this._inStyling = false;
519
519
  };
520
- IgcPropertyEditorPanelComponent.prototype.getDesiredSize = function () {
521
- var iv = this.i.ea();
522
- return fromSize(iv);
523
- };
524
520
  IgcPropertyEditorPanelComponent.prototype.notifySetItem = function (index, oldItem, newItem) {
525
521
  this.i.dq(index, oldItem, newItem);
526
522
  };
@@ -0,0 +1,58 @@
1
+ import * as tslib_1 from "tslib";
2
+ import { IgcToolActionComponent } from "./igc-tool-action-component";
3
+ import { ToolActionCheckbox } from "./ToolActionCheckbox";
4
+ import { getAllPropertyNames, toSpinal } from "igniteui-webcomponents-core";
5
+ import { RegisterElementHelper } from "igniteui-webcomponents-core";
6
+ var IgcToolActionCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
7
+ tslib_1.__extends(IgcToolActionCheckboxComponent, _super);
8
+ function IgcToolActionCheckboxComponent() {
9
+ return _super.call(this) || this;
10
+ }
11
+ IgcToolActionCheckboxComponent.prototype.createImplementation = function () {
12
+ return new ToolActionCheckbox();
13
+ };
14
+ Object.defineProperty(IgcToolActionCheckboxComponent.prototype, "i", {
15
+ /**
16
+ * @hidden
17
+ */
18
+ get: function () {
19
+ return this._implementation;
20
+ },
21
+ enumerable: true,
22
+ configurable: true
23
+ });
24
+ IgcToolActionCheckboxComponent.prototype.connectedCallback = function () {
25
+ if (_super.prototype["connectedCallback"]) {
26
+ _super.prototype["connectedCallback"].call(this);
27
+ }
28
+ if (!this._attached) {
29
+ this._attached = true;
30
+ this._flushQueuedAttributes();
31
+ }
32
+ };
33
+ Object.defineProperty(IgcToolActionCheckboxComponent, "observedAttributes", {
34
+ get: function () {
35
+ if (IgcToolActionCheckboxComponent._observedAttributesIgcToolActionCheckboxComponent == null) {
36
+ var names = getAllPropertyNames(IgcToolActionCheckboxComponent);
37
+ for (var i = 0; i < names.length; i++) {
38
+ names[i] = toSpinal(names[i]);
39
+ }
40
+ IgcToolActionCheckboxComponent._observedAttributesIgcToolActionCheckboxComponent = names;
41
+ }
42
+ return IgcToolActionCheckboxComponent._observedAttributesIgcToolActionCheckboxComponent;
43
+ },
44
+ enumerable: true,
45
+ configurable: true
46
+ });
47
+ IgcToolActionCheckboxComponent.register = function () {
48
+ if (!IgcToolActionCheckboxComponent._isElementRegistered) {
49
+ IgcToolActionCheckboxComponent._isElementRegistered = true;
50
+ RegisterElementHelper.registerElement(IgcToolActionCheckboxComponent.htmlTagName, IgcToolActionCheckboxComponent);
51
+ }
52
+ };
53
+ IgcToolActionCheckboxComponent._observedAttributesIgcToolActionCheckboxComponent = null;
54
+ IgcToolActionCheckboxComponent.htmlTagName = "igc-tool-action-checkbox";
55
+ IgcToolActionCheckboxComponent._isElementRegistered = false;
56
+ return IgcToolActionCheckboxComponent;
57
+ }(IgcToolActionComponent));
58
+ export { IgcToolActionCheckboxComponent };
@@ -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 { IgcToolActionCheckboxComponent } from './igc-tool-action-checkbox-component';
8
+ import { ToolActionCheckbox } from './ToolActionCheckbox';
9
+ import { TypeRegistrar } from "igniteui-webcomponents-core";
10
+ var IgcToolActionCheckboxModule = /** @class */ /*@__PURE__*/ (function () {
11
+ function IgcToolActionCheckboxModule() {
12
+ }
13
+ IgcToolActionCheckboxModule.register = function () {
14
+ IgcToolActionCheckboxComponent.register();
15
+ TypeRegistrar.registerCons("IgcToolActionCheckboxComponent", IgcToolActionCheckboxComponent);
16
+ TypeRegistrar.register("ToolActionCheckbox", ToolActionCheckbox.$type);
17
+ };
18
+ return IgcToolActionCheckboxModule;
19
+ }());
20
+ export { IgcToolActionCheckboxModule };
@@ -0,0 +1,53 @@
1
+ import * as tslib_1 from "tslib";
2
+ import { IgCollection } from "igniteui-webcomponents-core";
3
+ import { markType } from "igniteui-webcomponents-core";
4
+ import { SyncableObservableCollection$2 } from "igniteui-webcomponents-core";
5
+ import { ToolAction as ToolAction_internal } from './ToolAction';
6
+ import { IgcToolActionComponent as IgcToolActionComponent } from './igc-tool-action-component';
7
+ var IgcToolActionCollection = /** @class */ /*@__PURE__*/ (function (_super) {
8
+ tslib_1.__extends(IgcToolActionCollection, _super);
9
+ function IgcToolActionCollection(list) {
10
+ var _this = _super.call(this) || this;
11
+ if (!IgcToolActionComponent.$type) {
12
+ IgcToolActionComponent.$type = markType(IgcToolActionComponent, "IgcToolActionComponent");
13
+ }
14
+ if (list) {
15
+ for (var i = 0; i < list.length; i++) {
16
+ _this.add(list[i]);
17
+ }
18
+ }
19
+ return _this;
20
+ }
21
+ IgcToolActionCollection.prototype._createInnerColl = function () {
22
+ if (!IgcToolActionComponent.$type) {
23
+ IgcToolActionComponent.$type = markType(IgcToolActionComponent, "IgcToolActionComponent");
24
+ }
25
+ var coll = new SyncableObservableCollection$2(IgcToolActionComponent.$type, ToolAction_internal.$type, 0);
26
+ coll.compare = function (ext, int) {
27
+ var comp = ext;
28
+ if (comp._implementation) {
29
+ comp = comp._implementation;
30
+ }
31
+ if (comp.equals) {
32
+ return comp.equals(int);
33
+ }
34
+ return comp === int;
35
+ };
36
+ coll.createTo = function (ext) {
37
+ return ext._implementation;
38
+ };
39
+ coll.createFrom = function (int) {
40
+ var ext = int.externalObject;
41
+ if (!ext) {
42
+ ext = new IgcToolActionComponent();
43
+ if (ext) {
44
+ ext._implementation = int;
45
+ }
46
+ }
47
+ return ext;
48
+ };
49
+ return coll;
50
+ };
51
+ return IgcToolActionCollection;
52
+ }(IgCollection));
53
+ export { IgcToolActionCollection };