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,24 @@
1
+ import { ToolPanelContentRefreshedEventArgs as ToolPanelContentRefreshedEventArgs_internal } from "./ToolPanelContentRefreshedEventArgs";
2
+ export class IgcToolPanelContentRefreshedEventArgs {
3
+ createImplementation() {
4
+ return new ToolPanelContentRefreshedEventArgs_internal();
5
+ }
6
+ /**
7
+ * @hidden
8
+ */
9
+ get i() {
10
+ return this._implementation;
11
+ }
12
+ onImplementationCreated() {
13
+ }
14
+ constructor() {
15
+ this._implementation = this.createImplementation();
16
+ this._implementation.externalObject = this;
17
+ this.onImplementationCreated();
18
+ }
19
+ _provideImplementation(i) {
20
+ this._implementation = i;
21
+ this._implementation.externalObject = this;
22
+ this.onImplementationCreated();
23
+ }
24
+ }
@@ -0,0 +1,29 @@
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 { IgcListPanelModule } from './igc-list-panel-module';
8
+ import { IgcToolActionCheckboxModule } from './igc-tool-action-checkbox-module';
9
+ import { IgcToolActionGroupHeaderModule } from './igc-tool-action-group-header-module';
10
+ import { IgcToolActionNumberInputModule } from './igc-tool-action-number-input-module';
11
+ import { IgcToolActionIconButtonModule } from './igc-tool-action-icon-button-module';
12
+ import { IgcToolActionIconMenuModule } from './igc-tool-action-icon-menu-module';
13
+ import { IgcToolPanelComponent } from './igc-tool-panel-component';
14
+ import { ToolPanel } from './ToolPanel';
15
+ import { TypeRegistrar } from "igniteui-webcomponents-core";
16
+ export class IgcToolPanelModule {
17
+ static register() {
18
+ IgcListPanelModule.register();
19
+ IgcToolActionCheckboxModule.register();
20
+ IgcToolActionGroupHeaderModule.register();
21
+ IgcToolActionNumberInputModule.register();
22
+ IgcToolActionIconButtonModule.register();
23
+ IgcToolActionIconMenuModule.register();
24
+ IgcToolPanelComponent.register();
25
+ TypeRegistrar.registerCons('IgcToolPanelComponent', IgcToolPanelComponent);
26
+ TypeRegistrar.registerCons('IgcToolPanelComponent', IgcToolPanelComponent);
27
+ TypeRegistrar.register('ToolPanel', ToolPanel.$type);
28
+ }
29
+ }
@@ -0,0 +1,417 @@
1
+ import { ensureEnum, brushToString, stringToBrush, initializePropertiesFromCss, NamePatcher, toSpinal, enumToString, getAllPropertyNames, fromSpinal } from "igniteui-webcomponents-core";
2
+ import { FontInfo } from "igniteui-webcomponents-core";
3
+ import { WebComponentRenderer, PortalManager } from "igniteui-webcomponents-core";
4
+ import { CollectionAdapter } from "igniteui-webcomponents-core";
5
+ import { NotifyCollectionChangedAction } from "igniteui-webcomponents-core";
6
+ import { RegisterElementHelper } from "igniteui-webcomponents-core";
7
+ import { Toolbar } from "./Toolbar";
8
+ import { IgcHTMLElement } from "igniteui-webcomponents-core";
9
+ import { SyncableObservableCollection$1 } from "igniteui-webcomponents-core";
10
+ import { ToolbarOrientation_$type } from './ToolbarOrientation';
11
+ import { ToolActionCollection as ToolActionCollection_internal } from "./ToolActionCollection";
12
+ import { ToolAction } from "./ToolAction";
13
+ import { IgcToolActionComponent } from "./igc-tool-action-component";
14
+ import { IgcToolActionCollection } from "./igc-tool-action-collection";
15
+ export let IgcToolbarComponent = /*@__PURE__*/ (() => {
16
+ class IgcToolbarComponent extends IgcHTMLElement {
17
+ constructor() {
18
+ super();
19
+ this._implementation = null;
20
+ this.contentActions = [];
21
+ /**
22
+ * The actions actually present in the editor. Do not directly modify this array.
23
+ * This array's contents can be modified by using the actions property or providing child content.
24
+ */
25
+ this.combinedActions = [];
26
+ this._actions = null;
27
+ this._actionsAdapter = null;
28
+ this._disconnected = false;
29
+ this._settingAttributes = false;
30
+ this._attached = false;
31
+ this._queuedSetAttributes = [];
32
+ this._updatingFromAttribute = false;
33
+ this._autoGeneratedActions = null;
34
+ this._actualActions = null;
35
+ this.__p = null;
36
+ this._hasUserValues = new Set();
37
+ this._stylingContainer = null;
38
+ this._stylingParent = null;
39
+ this._inStyling = false;
40
+ if (this._styling) {
41
+ NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this));
42
+ }
43
+ this._implementation = this.createImplementation();
44
+ this._implementation.externalObject = this;
45
+ this._portalManager = new PortalManager("toolbarContent");
46
+ this._webComponentRenderer = new WebComponentRenderer(this, document, true, {}, this._portalManager);
47
+ this._webComponentWrapper = this._webComponentRenderer.createElement("div");
48
+ this._webComponentRenderer.updateRoot(this._webComponentWrapper);
49
+ this._webComponentWrapper.setStyleProperty("display", "block");
50
+ this._webComponentWrapper.setStyleProperty("width", "100%");
51
+ this._webComponentWrapper.setStyleProperty("height", "100%");
52
+ this._actionsAdapter = new CollectionAdapter(this.contentActions, this.i.actions, this.combinedActions, (c) => c.i, (i) => {
53
+ if (this._webComponentRenderer && this._webComponentRenderer.rootWrapper.getNativeElement().parentElement) {
54
+ i._styling(this, this, this);
55
+ }
56
+ }, (i) => { });
57
+ this.i.provideContainer(this._webComponentRenderer);
58
+ this.i.notifySizeChanged();
59
+ let mut = new MutationObserver((list) => {
60
+ for (var mutation of list) {
61
+ if (mutation.type == 'childList') {
62
+ this.updateContentProperties();
63
+ }
64
+ }
65
+ });
66
+ mut.observe(this, {
67
+ childList: true
68
+ });
69
+ this._webComponentRenderer.addSizeWatcher(() => {
70
+ this.i.notifySizeChanged();
71
+ });
72
+ }
73
+ set height(value) {
74
+ this._height = value;
75
+ this.style.height = value;
76
+ this.i.notifySizeChanged();
77
+ }
78
+ get height() {
79
+ return this._height;
80
+ }
81
+ set width(value) {
82
+ this._width = value;
83
+ this.style.width = value;
84
+ this.i.notifySizeChanged();
85
+ }
86
+ get width() {
87
+ return this._width;
88
+ }
89
+ /**
90
+ * A collection of manually added actions for the editor.
91
+ */
92
+ get actions() {
93
+ if (this._actions === null) {
94
+ let coll = new IgcToolActionCollection();
95
+ let inner = coll._innerColl;
96
+ inner.addListener((sender, e) => {
97
+ switch (e.action) {
98
+ case NotifyCollectionChangedAction.Add:
99
+ this._actionsAdapter.insertManualItem(e.newStartingIndex, e.newItems.item(0));
100
+ break;
101
+ case NotifyCollectionChangedAction.Remove:
102
+ this._actionsAdapter.removeManualItemAt(e.oldStartingIndex);
103
+ break;
104
+ case NotifyCollectionChangedAction.Replace:
105
+ this._actionsAdapter.removeManualItemAt(e.oldStartingIndex);
106
+ this._actionsAdapter.insertManualItem(e.newStartingIndex, e.newItems.item(0));
107
+ break;
108
+ case NotifyCollectionChangedAction.Reset:
109
+ this._actionsAdapter.clearManualItems();
110
+ break;
111
+ }
112
+ });
113
+ this._actions = coll;
114
+ }
115
+ return this._actions;
116
+ }
117
+ // supports angular themes or custom properties set in CSS
118
+ updateStyle() {
119
+ this._styling(this, this);
120
+ }
121
+ destroy() {
122
+ this._implementation.destroy();
123
+ this._webComponentRenderer.destroy();
124
+ }
125
+ updateContentProperties() {
126
+ this.contentActions.length = 0;
127
+ for (var i = 0; i < this.children.length; i++) {
128
+ if (this.children[i] instanceof IgcToolActionComponent) {
129
+ this.contentActions.push(this.children[i]);
130
+ }
131
+ }
132
+ if (this._actionsAdapter != null) {
133
+ this._actionsAdapter.notifyContentChanged();
134
+ }
135
+ }
136
+ createImplementation() {
137
+ return new Toolbar();
138
+ }
139
+ get i() {
140
+ return this._implementation;
141
+ }
142
+ disconnectedCallback() {
143
+ this._disconnected = true;
144
+ }
145
+ connectedCallback() {
146
+ if (this._disconnected) {
147
+ this._disconnected = false;
148
+ return;
149
+ }
150
+ this.classList.add("ig-toolbar");
151
+ this.classList.add("igc-toolbar");
152
+ var rootWrapper = this._webComponentRenderer.rootWrapper;
153
+ var rootElement = rootWrapper.getNativeElement();
154
+ this.appendChild(rootElement);
155
+ this._attached = true;
156
+ this.style.display = "block";
157
+ this.style.height = this._height;
158
+ this.style.width = this._width;
159
+ this._flushQueuedAttributes();
160
+ // supports themes or custom properties set in CSS
161
+ this._styling(this, this);
162
+ for (let i = 0; i < this.combinedActions.length; i++) {
163
+ let s = this.combinedActions[i];
164
+ s._styling(this, this, this);
165
+ }
166
+ this.afterContentInit();
167
+ }
168
+ afterContentInit() {
169
+ this.i.notifySizeChanged();
170
+ }
171
+ _enqueueSetAttribute(attrName, attrValue) {
172
+ this._queuedSetAttributes.push({ attrName: attrName, attrValue: attrValue });
173
+ }
174
+ _flushQueuedAttributes() {
175
+ this._settingAttributes = true;
176
+ for (let i = 0; i < this._queuedSetAttributes.length; i++) {
177
+ this.setAttribute(this._queuedSetAttributes[i].attrName, this._queuedSetAttributes[i].attrValue);
178
+ }
179
+ this._settingAttributes = false;
180
+ this._queuedSetAttributes.length = 0;
181
+ }
182
+ _a(attrName, attrValue) {
183
+ if (this._updatingFromAttribute) {
184
+ return;
185
+ }
186
+ if (attrValue) {
187
+ attrValue = attrValue.toString();
188
+ }
189
+ this._settingAttributes = true;
190
+ attrName = toSpinal(attrName);
191
+ if (this._attached) {
192
+ this.setAttribute(attrName, attrValue);
193
+ }
194
+ else {
195
+ this._enqueueSetAttribute(attrName, attrValue);
196
+ }
197
+ this._settingAttributes = false;
198
+ }
199
+ static get observedAttributes() {
200
+ if (IgcToolbarComponent._observedAttributesIgcToolbarComponent == null) {
201
+ let names = getAllPropertyNames(IgcToolbarComponent);
202
+ for (let i = 0; i < names.length; i++) {
203
+ names[i] = toSpinal(names[i]);
204
+ }
205
+ IgcToolbarComponent._observedAttributesIgcToolbarComponent = names;
206
+ }
207
+ return IgcToolbarComponent._observedAttributesIgcToolbarComponent;
208
+ }
209
+ attributeChangedCallback(name, oldValue, newValue) {
210
+ if (this._settingAttributes) {
211
+ return;
212
+ }
213
+ let setName = fromSpinal(name);
214
+ this._updatingFromAttribute = true;
215
+ this[setName] = newValue;
216
+ this._updatingFromAttribute = false;
217
+ }
218
+ static register() {
219
+ if (!IgcToolbarComponent._isElementRegistered) {
220
+ IgcToolbarComponent._isElementRegistered = true;
221
+ RegisterElementHelper.registerElement(IgcToolbarComponent.htmlTagName, IgcToolbarComponent);
222
+ }
223
+ }
224
+ /**
225
+ * Gets or sets the data or data source instance to which to bind the grid.
226
+ */
227
+ get autoGeneratedActions() {
228
+ if (this._autoGeneratedActions === null) {
229
+ let coll = new IgcToolActionCollection();
230
+ let innerColl = this.i.autoGeneratedActions;
231
+ if (!innerColl) {
232
+ innerColl = new ToolActionCollection_internal();
233
+ }
234
+ this._autoGeneratedActions = coll._fromInner(innerColl);
235
+ this.i.autoGeneratedActions = innerColl;
236
+ }
237
+ return this._autoGeneratedActions;
238
+ }
239
+ set autoGeneratedActions(v) {
240
+ if (this._autoGeneratedActions !== null) {
241
+ this._autoGeneratedActions._setSyncTarget(null);
242
+ this._autoGeneratedActions = null;
243
+ }
244
+ let coll = new IgcToolActionCollection();
245
+ this._autoGeneratedActions = coll._fromOuter(v);
246
+ let syncColl = new SyncableObservableCollection$1(ToolAction.$type);
247
+ let innerColl = this.i.autoGeneratedActions;
248
+ if (!innerColl) {
249
+ innerColl = new ToolActionCollection_internal();
250
+ }
251
+ syncColl._inner = innerColl;
252
+ syncColl.clear();
253
+ this._autoGeneratedActions._setSyncTarget(syncColl);
254
+ this.i.autoGeneratedActions = innerColl;
255
+ }
256
+ /**
257
+ * Gets or sets the data or data source instance to which to bind the grid.
258
+ */
259
+ get actualActions() {
260
+ if (this._actualActions === null) {
261
+ let coll = new IgcToolActionCollection();
262
+ let innerColl = this.i.actualActions;
263
+ if (!innerColl) {
264
+ innerColl = new ToolActionCollection_internal();
265
+ }
266
+ this._actualActions = coll._fromInner(innerColl);
267
+ this.i.actualActions = innerColl;
268
+ }
269
+ return this._actualActions;
270
+ }
271
+ set actualActions(v) {
272
+ if (this._actualActions !== null) {
273
+ this._actualActions._setSyncTarget(null);
274
+ this._actualActions = null;
275
+ }
276
+ let coll = new IgcToolActionCollection();
277
+ this._actualActions = coll._fromOuter(v);
278
+ let syncColl = new SyncableObservableCollection$1(ToolAction.$type);
279
+ let innerColl = this.i.actualActions;
280
+ if (!innerColl) {
281
+ innerColl = new ToolActionCollection_internal();
282
+ }
283
+ syncColl._inner = innerColl;
284
+ syncColl.clear();
285
+ this._actualActions._setSyncTarget(syncColl);
286
+ this.i.actualActions = innerColl;
287
+ }
288
+ /**
289
+ * Gets or sets the color to use for the background of the component.
290
+ */
291
+ get orientation() {
292
+ return this.i.j;
293
+ }
294
+ set orientation(v) {
295
+ this.i.j = ensureEnum(ToolbarOrientation_$type, v);
296
+ this._a("orientation", enumToString(ToolbarOrientation_$type, this.i.j));
297
+ }
298
+ /**
299
+ * Gets or sets the color to use for the background of the component.
300
+ */
301
+ get target() {
302
+ return this.i.w;
303
+ }
304
+ set target(v) {
305
+ this.i.w = v;
306
+ }
307
+ /**
308
+ * Gets or sets the color to use for the background of the component.
309
+ */
310
+ get backgroundColor() {
311
+ return brushToString(this.i.ay);
312
+ }
313
+ set backgroundColor(v) {
314
+ this.i.ay = stringToBrush(v);
315
+ this._a("backgroundColor", brushToString(this.i.ay));
316
+ }
317
+ /**
318
+ * Gets or sets the color to use for the text of the component.
319
+ */
320
+ get textColor() {
321
+ return brushToString(this.i.a1);
322
+ }
323
+ set textColor(v) {
324
+ this.i.a1 = stringToBrush(v);
325
+ this._a("textColor", brushToString(this.i.a1));
326
+ }
327
+ /**
328
+ * Gets or Sets the property name that contains the values.
329
+ */
330
+ get cellTextStyle() {
331
+ if (this.i.o == null) {
332
+ return null;
333
+ }
334
+ return this.i.o.fontString;
335
+ }
336
+ set cellTextStyle(v) {
337
+ let fi = new FontInfo();
338
+ fi.fontString = v;
339
+ this.i.o = fi;
340
+ this._a("cellTextStyle", this.i.o != null ? this.i.o.fontString : "");
341
+ }
342
+ findByName(name) {
343
+ if (this.findEphemera) {
344
+ if (name && name.indexOf("@@e:") == 0) {
345
+ return this.findEphemera(name);
346
+ }
347
+ }
348
+ if (this.autoGeneratedActions != null && this.autoGeneratedActions.findByName && this.autoGeneratedActions.findByName(name)) {
349
+ return this.autoGeneratedActions.findByName(name);
350
+ }
351
+ if (this.actions != null && this.actions.findByName && this.actions.findByName(name)) {
352
+ return this.actions.findByName(name);
353
+ }
354
+ if (this.actualActions != null && this.actualActions.findByName && this.actualActions.findByName(name)) {
355
+ return this.actualActions.findByName(name);
356
+ }
357
+ return null;
358
+ }
359
+ get hasUserValues() {
360
+ return this._hasUserValues;
361
+ }
362
+ __m(propertyName) {
363
+ if (!this._inStyling) {
364
+ this._hasUserValues.add(propertyName);
365
+ }
366
+ }
367
+ _styling(container, component, parent) {
368
+ if (this._inStyling) {
369
+ return;
370
+ }
371
+ this._inStyling = true;
372
+ this._stylingContainer = container;
373
+ this._stylingParent = component;
374
+ let genericPrefix = "";
375
+ let typeName = this.i.$type.name;
376
+ if (typeName.indexOf("Xam") === 0) {
377
+ typeName = typeName.substring(3);
378
+ }
379
+ genericPrefix = toSpinal("ToolbarComponent");
380
+ let additionalPrefixes = [];
381
+ let prefix = toSpinal(typeName);
382
+ additionalPrefixes.push(prefix + "-");
383
+ let b = this.i.$type.baseType;
384
+ while (b && b.name != "Object" &&
385
+ b.name != "Base" &&
386
+ b.name != "Control" &&
387
+ b.Name != "DependencyObject" &&
388
+ b.Name != "FrameworkElement") {
389
+ typeName = b.name;
390
+ if (typeName.indexOf("Xam") === 0) {
391
+ typeName = typeName.substring(3);
392
+ }
393
+ let basePrefix = toSpinal(typeName);
394
+ additionalPrefixes.push(basePrefix + "-");
395
+ b = b.baseType;
396
+ }
397
+ if (parent) {
398
+ let parentTypeName = parent.i.$type.name;
399
+ if (parentTypeName.indexOf("Xam") === 0) {
400
+ parentTypeName = parentTypeName.substring(3);
401
+ }
402
+ let parentPrefix = toSpinal(parentTypeName);
403
+ additionalPrefixes.push(parentPrefix + "-" + genericPrefix + "-");
404
+ additionalPrefixes.push(parentPrefix + "-" + prefix + "-");
405
+ }
406
+ initializePropertiesFromCss(container, this, genericPrefix + "-", this.hasUserValues, false, additionalPrefixes);
407
+ if (this._otherStyling) {
408
+ this._otherStyling(container, component, parent);
409
+ }
410
+ this._inStyling = false;
411
+ }
412
+ }
413
+ IgcToolbarComponent._observedAttributesIgcToolbarComponent = null;
414
+ IgcToolbarComponent.htmlTagName = "igc-toolbar";
415
+ IgcToolbarComponent._isElementRegistered = false;
416
+ return IgcToolbarComponent;
417
+ })();
@@ -0,0 +1,19 @@
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 { IgcToolPanelModule } from './igc-tool-panel-module';
8
+ import { IgcToolbarComponent } from './igc-toolbar-component';
9
+ import { Toolbar } from './Toolbar';
10
+ import { TypeRegistrar } from "igniteui-webcomponents-core";
11
+ export class IgcToolbarModule {
12
+ static register() {
13
+ IgcToolPanelModule.register();
14
+ IgcToolbarComponent.register();
15
+ TypeRegistrar.registerCons('IgcToolbarComponent', IgcToolbarComponent);
16
+ TypeRegistrar.registerCons('IgcToolbarComponent', IgcToolbarComponent);
17
+ TypeRegistrar.register('Toolbar', Toolbar.$type);
18
+ }
19
+ }
@@ -369,6 +369,11 @@ export let IgcXExpansionPanelComponent = /*@__PURE__*/ (() => {
369
369
  this._a("actualAmbientShadowColor", brushToString(this.i.bi));
370
370
  }
371
371
  findByName(name) {
372
+ if (this.findEphemera) {
373
+ if (name && name.indexOf("@@e:") == 0) {
374
+ return this.findEphemera(name);
375
+ }
376
+ }
372
377
  return null;
373
378
  }
374
379
  get hasUserValues() {
@@ -469,6 +474,7 @@ export let IgcXExpansionPanelComponent = /*@__PURE__*/ (() => {
469
474
  }
470
475
  };
471
476
  this.i.onCollapsed = delegateCombine(this.i.onCollapsed, this._onCollapsed_wrapped);
477
+ ;
472
478
  }
473
479
  get onExpanded() {
474
480
  return this._onExpanded;
@@ -491,6 +497,7 @@ export let IgcXExpansionPanelComponent = /*@__PURE__*/ (() => {
491
497
  }
492
498
  };
493
499
  this.i.onExpanded = delegateCombine(this.i.onExpanded, this._onExpanded_wrapped);
500
+ ;
494
501
  }
495
502
  }
496
503
  IgcXExpansionPanelComponent._observedAttributesIgcXExpansionPanelComponent = null;
@@ -4,9 +4,18 @@ export * from './lib/igc-popup-module';
4
4
  export * from './lib/igc-popup-component';
5
5
  export * from './lib/igc-property-editor-panel-module';
6
6
  export * from './lib/igc-property-editor-panel-component';
7
+ export * from './lib/igc-list-panel-component';
8
+ export * from './lib/igc-list-panel-module';
9
+ export * from './lib/igc-tool-panel-component';
10
+ export * from './lib/igc-toolbar-component';
11
+ export * from './lib/igc-tool-panel-module';
12
+ export * from './lib/igc-toolbar-module';
13
+ export * from './lib/ToolbarView';
14
+ export * from './lib/ToolPanelView';
7
15
  export * from './lib/PopupView';
8
16
  export * from './lib/ExpansionPanelView';
9
17
  export * from './lib/ExpansionPanelUtilities';
18
+ export * from './lib/ListPanelView';
10
19
  export * from './lib/PropertyEditorPanelView';
11
20
  export * from './lib/PopupAlignment';
12
21
  export * from './lib/PopupDirection';
@@ -18,10 +27,80 @@ export * from './lib/OnPopupEventArgs';
18
27
  export * from './lib/igc-on-popup-event-args';
19
28
  export * from './lib/OnClosedEventArgs';
20
29
  export * from './lib/igc-on-closed-event-args';
30
+ export * from './lib/ToolActionLabel';
31
+ export * from './lib/igc-tool-action-label-component';
32
+ export * from './lib/igc-tool-action-label-module';
33
+ export * from './lib/ToolActionRadio';
34
+ export * from './lib/igc-tool-action-radio-component';
35
+ export * from './lib/igc-tool-action-radio-module';
36
+ export * from './lib/ToolActionSeparator';
37
+ export * from './lib/igc-tool-action-separator-component';
38
+ export * from './lib/igc-tool-action-separator-module';
39
+ export * from './lib/ToolActionIconButton';
40
+ export * from './lib/igc-tool-action-icon-button-component';
41
+ export * from './lib/igc-tool-action-icon-button-module';
42
+ export * from './lib/ToolActionGroupHeader';
43
+ export * from './lib/igc-tool-action-group-header-component';
44
+ export * from './lib/igc-tool-action-group-header-module';
45
+ export * from './lib/ToolActionIconMenu';
46
+ export * from './lib/igc-tool-action-icon-menu-component';
47
+ export * from './lib/igc-tool-action-icon-menu-module';
48
+ export * from './lib/ToolActionCheckbox';
49
+ export * from './lib/igc-tool-action-checkbox-component';
50
+ export * from './lib/igc-tool-action-checkbox-module';
51
+ export * from './lib/ToolActionNumberInput';
52
+ export * from './lib/igc-tool-action-number-input-component';
53
+ export * from './lib/igc-tool-action-number-input-module';
54
+ export * from './lib/ToolAction';
55
+ export * from './lib/igc-tool-action-component';
56
+ export * from './lib/igc-tool-action-module';
57
+ export * from './lib/igc-tool-action-collection';
58
+ export * from './lib/ToolActionCollection';
59
+ export * from './lib/ToolActionMenuBase';
60
+ export * from './lib/igc-tool-action-menu-base-component';
61
+ export * from './lib/IExternalToolbar';
62
+ export * from './lib/IToolbarView';
63
+ export * from './lib/Toolbar';
64
+ export * from './lib/ToolbarOrientation';
65
+ export * from './lib/ToolPanelOrientation';
66
+ export * from './lib/ToolCommandEventArgs';
67
+ export * from './lib/igc-tool-command-event-args';
68
+ export * from './lib/ToolPanelContentRefreshedEventArgs';
69
+ export * from './lib/igc-tool-panel-content-refreshed-event-args';
70
+ export * from './lib/ToolActionPerformedEventArgs';
71
+ export * from './lib/igc-tool-action-performed-event-args';
72
+ export * from './lib/ToolActionEventDetail';
73
+ export * from './lib/igc-tool-action-event-detail';
74
+ export * from './lib/igc-tool-action-event-detail-collection';
75
+ export * from './lib/ToolActionEventDetailCollection';
76
+ export * from './lib/ToolbarIconManager';
77
+ export * from './lib/IExternalToolPanel';
78
+ export * from './lib/IToolPanelView';
79
+ export * from './lib/ToolPanel';
80
+ export * from './lib/ToolActionMeasurementContext';
21
81
  export * from './lib/Popup';
22
82
  export * from './lib/Popup_OuterAnimationInfo';
23
83
  export * from './lib/Popup_InnerAnimationInfo';
24
84
  export * from './lib/XExpansionPanel';
85
+ export * from './lib/IExternalListPanel';
86
+ export * from './lib/IListPanelView';
87
+ export * from './lib/ListPanel';
88
+ export * from './lib/ListPanelContentRefreshedEventArgs';
89
+ export * from './lib/igc-list-panel-content-refreshed-event-args';
90
+ export * from './lib/ListPanelOrientation';
91
+ export * from './lib/ListPanelTemplateHeightRequestedEventArgs';
92
+ export * from './lib/igc-list-panel-template-height-requested-event-args';
93
+ export * from './lib/ListPanelTemplateWidthRequestedEventArgs';
94
+ export * from './lib/igc-list-panel-template-width-requested-event-args';
95
+ export * from './lib/ListPanelTemplateItemUpdatingEventArgs';
96
+ export * from './lib/igc-list-panel-template-item-updating-event-args';
97
+ export * from './lib/ListPanelDataBindingEventArgs';
98
+ export * from './lib/ListPanelDataSourceNotificationBridge';
99
+ export * from './lib/ListPanelLayoutPanel';
100
+ export * from './lib/ListPanelItemModel';
101
+ export * from './lib/igc-list-panel-item-model';
102
+ export * from './lib/ListPanelItemPresenter';
103
+ export * from './lib/IPropertyEditorPanelView';
25
104
  export * from './lib/PropertyEditorPanel';
26
105
  export * from './lib/PropertyEditorPanelColumnType';
27
106
  export * from './lib/PropertyEditorPanelColumnFieldType';
@@ -0,0 +1,11 @@
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 { Type } from "igniteui-webcomponents-core";
8
+ /**
9
+ * @hidden
10
+ */
11
+ export var IExternalListPanel_$type = /*@__PURE__*/ new Type(null, 'IExternalListPanel');
@@ -0,0 +1,11 @@
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 { Type } from "igniteui-webcomponents-core";
8
+ /**
9
+ * @hidden
10
+ */
11
+ export var IExternalToolPanel_$type = /*@__PURE__*/ new Type(null, 'IExternalToolPanel');
@@ -0,0 +1,11 @@
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 { Type } from "igniteui-webcomponents-core";
8
+ /**
9
+ * @hidden
10
+ */
11
+ export var IExternalToolbar_$type = /*@__PURE__*/ new Type(null, 'IExternalToolbar');
@@ -0,0 +1,11 @@
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 { Type } from "igniteui-webcomponents-core";
8
+ /**
9
+ * @hidden
10
+ */
11
+ export var IListPanelView_$type = /*@__PURE__*/ new Type(null, 'IListPanelView');