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,13 @@
1
+ import { IDataSource } from "igniteui-webcomponents-core";
2
+ import { Type } from "igniteui-webcomponents-core";
3
+ /**
4
+ * @hidden
5
+ */
6
+ export interface IExternalListPanel {
7
+ createLocalDataSource(a: any): IDataSource;
8
+ onContentSizeChanged(): void;
9
+ }
10
+ /**
11
+ * @hidden
12
+ */
13
+ export declare let IExternalListPanel_$type: Type;
@@ -0,0 +1,13 @@
1
+ import { IDataSource } from "igniteui-webcomponents-core";
2
+ import { Type } from "igniteui-webcomponents-core";
3
+ /**
4
+ * @hidden
5
+ */
6
+ export interface IExternalToolPanel {
7
+ createLocalDataSource(a: any): IDataSource;
8
+ onContentSizeChanged(): void;
9
+ }
10
+ /**
11
+ * @hidden
12
+ */
13
+ export declare let IExternalToolPanel_$type: Type;
@@ -0,0 +1,13 @@
1
+ import { IDataSource } from "igniteui-webcomponents-core";
2
+ import { Type } from "igniteui-webcomponents-core";
3
+ /**
4
+ * @hidden
5
+ */
6
+ export interface IExternalToolbar {
7
+ createLocalDataSource(a: any): IDataSource;
8
+ onContentSizeChanged(): void;
9
+ }
10
+ /**
11
+ * @hidden
12
+ */
13
+ export declare let IExternalToolbar_$type: Type;
@@ -0,0 +1,25 @@
1
+ import { ListPanel } from "./ListPanel";
2
+ import { Type } from "igniteui-webcomponents-core";
3
+ import { Size } from "igniteui-webcomponents-core";
4
+ import { FontInfo } from "igniteui-webcomponents-core";
5
+ /**
6
+ * @hidden
7
+ */
8
+ export interface IListPanelView {
9
+ onInit(): void;
10
+ onContainerProvided(a: any): void;
11
+ setGridHeight(): void;
12
+ onTemplateProvided(a: any, b: any): void;
13
+ notifySizeChanged(a: Size): void;
14
+ measureString(a: string): number;
15
+ getDefaultCellTextStyle(): FontInfo;
16
+ getAvailableWidth(): number;
17
+ getContainer(a: any, b: (arg1: any) => void): void;
18
+ getUIContext(): any;
19
+ needsMeasure(): void;
20
+ model: ListPanel;
21
+ }
22
+ /**
23
+ * @hidden
24
+ */
25
+ export declare let IListPanelView_$type: Type;
@@ -0,0 +1,26 @@
1
+ import { PropertyEditorPanel } from "./PropertyEditorPanel";
2
+ import { Type } from "igniteui-webcomponents-core";
3
+ import { Size } from "igniteui-webcomponents-core";
4
+ import { FontInfo } from "igniteui-webcomponents-core";
5
+ /**
6
+ * @hidden
7
+ */
8
+ export interface IPropertyEditorPanelView {
9
+ onInit(): void;
10
+ onContainerProvided(a: any): void;
11
+ setupFilter(): void;
12
+ setGridHeight(): void;
13
+ onTemplateProvided(a: any, b: any): void;
14
+ notifySizeChanged(a: Size): void;
15
+ measureString(a: string): number;
16
+ getDefaultCellTextStyle(): FontInfo;
17
+ getAvailableWidth(): number;
18
+ getContainer(a: any, b: (arg1: any) => void): void;
19
+ getUIContext(): any;
20
+ needsMeasure(): void;
21
+ model: PropertyEditorPanel;
22
+ }
23
+ /**
24
+ * @hidden
25
+ */
26
+ export declare let IPropertyEditorPanelView_$type: Type;
@@ -0,0 +1,25 @@
1
+ import { ToolPanel } from "./ToolPanel";
2
+ import { Type } from "igniteui-webcomponents-core";
3
+ import { Size } from "igniteui-webcomponents-core";
4
+ import { FontInfo } from "igniteui-webcomponents-core";
5
+ /**
6
+ * @hidden
7
+ */
8
+ export interface IToolPanelView {
9
+ onInit(): void;
10
+ onContainerProvided(a: any): void;
11
+ setGridHeight(): void;
12
+ onTemplateProvided(a: any, b: any): void;
13
+ notifySizeChanged(a: Size): void;
14
+ measureString(a: string): number;
15
+ getDefaultCellTextStyle(): FontInfo;
16
+ getAvailableWidth(): number;
17
+ getContainer(a: any, b: (arg1: any) => void): void;
18
+ getUIContext(): any;
19
+ needsMeasure(): void;
20
+ model: ToolPanel;
21
+ }
22
+ /**
23
+ * @hidden
24
+ */
25
+ export declare let IToolPanelView_$type: Type;
@@ -0,0 +1,25 @@
1
+ import { Toolbar } from "./Toolbar";
2
+ import { Type } from "igniteui-webcomponents-core";
3
+ import { Size } from "igniteui-webcomponents-core";
4
+ import { FontInfo } from "igniteui-webcomponents-core";
5
+ /**
6
+ * @hidden
7
+ */
8
+ export interface IToolbarView {
9
+ onInit(): void;
10
+ onContainerProvided(a: any): void;
11
+ setGridHeight(): void;
12
+ onTemplateProvided(a: any, b: any): void;
13
+ notifySizeChanged(a: Size): void;
14
+ measureString(a: string): number;
15
+ getDefaultCellTextStyle(): FontInfo;
16
+ getAvailableWidth(): number;
17
+ getContainer(a: any, b: (arg1: any) => void): void;
18
+ getUIContext(): any;
19
+ needsMeasure(): void;
20
+ model: Toolbar;
21
+ }
22
+ /**
23
+ * @hidden
24
+ */
25
+ export declare let IToolbarView_$type: Type;
@@ -0,0 +1 @@
1
+ export { ListPanel } from "./ListPanelView_combined";
@@ -0,0 +1,8 @@
1
+ import { Base, Type } from "igniteui-webcomponents-core";
2
+ /**
3
+ * @hidden
4
+ */
5
+ export declare class ListPanelContentRefreshedEventArgs extends Base {
6
+ static $t: Type;
7
+ constructor();
8
+ }
@@ -0,0 +1,10 @@
1
+ import { Base, Type } from "igniteui-webcomponents-core";
2
+ /**
3
+ * @hidden
4
+ */
5
+ export declare class ListPanelDataBindingEventArgs extends Base {
6
+ static $t: Type;
7
+ a: number;
8
+ b: any;
9
+ c: any;
10
+ }
@@ -0,0 +1 @@
1
+ export { ListPanelDataSourceNotificationBridge } from "./ListPanelView_combined";
@@ -0,0 +1,22 @@
1
+ import { Base, Type } from "igniteui-webcomponents-core";
2
+ import { ListPanelItemPresenter } from "./ListPanelItemPresenter";
3
+ /**
4
+ * @hidden
5
+ */
6
+ export declare class ListPanelItemModel extends Base {
7
+ static $t: Type;
8
+ c: boolean;
9
+ l: number;
10
+ j: number;
11
+ private m;
12
+ n: any;
13
+ a: ListPanelItemPresenter;
14
+ private b;
15
+ e: boolean;
16
+ d: boolean;
17
+ f: boolean;
18
+ private g;
19
+ i: number;
20
+ private h;
21
+ k: number;
22
+ }
@@ -0,0 +1,9 @@
1
+ import { Base, Type } from "igniteui-webcomponents-core";
2
+ import { NativeUIContent } from "igniteui-webcomponents-core";
3
+ /**
4
+ * @hidden
5
+ */
6
+ export declare class ListPanelItemPresenter extends Base {
7
+ static $t: Type;
8
+ a: NativeUIContent;
9
+ }
@@ -0,0 +1 @@
1
+ export { ListPanelLayoutPanel } from "./ListPanelView_combined";
@@ -0,0 +1,9 @@
1
+ import { Type } from "igniteui-webcomponents-core";
2
+ export declare enum ListPanelOrientation {
3
+ Vertical = 0,
4
+ Horiztonal = 1
5
+ }
6
+ /**
7
+ * @hidden
8
+ */
9
+ export declare let ListPanelOrientation_$type: Type;
@@ -0,0 +1,10 @@
1
+ import { Base, Type } from "igniteui-webcomponents-core";
2
+ /**
3
+ * @hidden
4
+ */
5
+ export declare class ListPanelTemplateHeightRequestedEventArgs extends Base {
6
+ static $t: Type;
7
+ b: number;
8
+ c: any;
9
+ a: number;
10
+ }
@@ -0,0 +1,12 @@
1
+ import { Base, Type } from "igniteui-webcomponents-core";
2
+ import { ListPanelItemModel } from "./ListPanelItemModel";
3
+ import { NativeUIContent } from "igniteui-webcomponents-core";
4
+ /**
5
+ * @hidden
6
+ */
7
+ export declare class ListPanelTemplateItemUpdatingEventArgs extends Base {
8
+ static $t: Type;
9
+ a: ListPanelItemModel;
10
+ c: any;
11
+ b: NativeUIContent;
12
+ }
@@ -0,0 +1,10 @@
1
+ import { Base, Type } from "igniteui-webcomponents-core";
2
+ /**
3
+ * @hidden
4
+ */
5
+ export declare class ListPanelTemplateWidthRequestedEventArgs extends Base {
6
+ static $t: Type;
7
+ b: number;
8
+ c: any;
9
+ a: number;
10
+ }
@@ -0,0 +1 @@
1
+ export { ListPanelView } from "./ListPanelView_combined";
@@ -0,0 +1,197 @@
1
+ import { Base, Type, INotifyPropertyChanged, PropertyChangedEventArgs } from "igniteui-webcomponents-core";
2
+ import { DomRenderer, DomWrapper } from "igniteui-webcomponents-core";
3
+ import { RenderingContext } from "igniteui-webcomponents-core";
4
+ import { FontInfo } from "igniteui-webcomponents-core";
5
+ import { Size } from "igniteui-webcomponents-core";
6
+ import { NativeUIAbsolutePanel } from "igniteui-webcomponents-core";
7
+ import { NativeUIGrid } from "igniteui-webcomponents-core";
8
+ import { IDataSource } from "igniteui-webcomponents-core";
9
+ import { IExternalListPanel } from "./IExternalListPanel";
10
+ import { IExecutionContext } from "igniteui-webcomponents-core";
11
+ import { Brush } from "igniteui-webcomponents-core";
12
+ import { ListPanelOrientation } from "./ListPanelOrientation";
13
+ import { ListPanelItemModel } from "./ListPanelItemModel";
14
+ import { ListPanelContentRefreshedEventArgs } from "./ListPanelContentRefreshedEventArgs";
15
+ import { ListPanelTemplateItemUpdatingEventArgs } from "./ListPanelTemplateItemUpdatingEventArgs";
16
+ import { ListPanelTemplateWidthRequestedEventArgs } from "./ListPanelTemplateWidthRequestedEventArgs";
17
+ import { ListPanelTemplateHeightRequestedEventArgs } from "./ListPanelTemplateHeightRequestedEventArgs";
18
+ import { IDataSourceUpdateNotifier } from "igniteui-webcomponents-core";
19
+ import { NativeUIContainer } from "igniteui-webcomponents-core";
20
+ /**
21
+ * @hidden
22
+ */
23
+ export declare class ListPanelView extends Base {
24
+ static $t: Type;
25
+ private n;
26
+ private m;
27
+ constructor();
28
+ p(): any;
29
+ a: ListPanel;
30
+ v(): void;
31
+ i: DomRenderer;
32
+ l: DomWrapper;
33
+ e: RenderingContext;
34
+ k: DomWrapper;
35
+ t(a: DomRenderer): void;
36
+ y(): void;
37
+ x(): void;
38
+ s(): void;
39
+ z(): void;
40
+ private b;
41
+ private aa;
42
+ private c;
43
+ private _gridExternal;
44
+ d(): FontInfo;
45
+ u(): void;
46
+ w(): void;
47
+ r(): void;
48
+ g(): number;
49
+ h(a: string): number;
50
+ f: boolean;
51
+ private j;
52
+ q(a: any, b: (arg1: any) => void): void;
53
+ }
54
+ /**
55
+ * @hidden
56
+ */
57
+ export declare class ListPanel extends Base implements INotifyPropertyChanged {
58
+ static $t: Type;
59
+ o: ListPanelView;
60
+ u: NativeUIGrid;
61
+ private y;
62
+ private v;
63
+ private readonly w;
64
+ private h;
65
+ bv(a: NativeUIAbsolutePanel): void;
66
+ propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
67
+ constructor();
68
+ private a8;
69
+ cd(a: Size): void;
70
+ itemsSource: any;
71
+ private a;
72
+ actualDataSource: IDataSource;
73
+ private ag;
74
+ notifySizeChanged(): void;
75
+ destroy(): void;
76
+ provideContainer(a: DomRenderer): void;
77
+ private a0;
78
+ a7: number;
79
+ private ar;
80
+ av: number;
81
+ private r;
82
+ s: FontInfo;
83
+ t(): FontInfo;
84
+ private x;
85
+ readonly ah: boolean;
86
+ private a9;
87
+ protected ca(a: string, b: any, c: any): void;
88
+ private bm;
89
+ private as;
90
+ private aq;
91
+ private ap;
92
+ private ad;
93
+ private z;
94
+ private ac;
95
+ protected ch(): void;
96
+ private bo;
97
+ contentRefreshed: (sender: any, args: ListPanelContentRefreshedEventArgs) => void;
98
+ private cl;
99
+ private bp;
100
+ rowUpdating: (sender: any, args: ListPanelTemplateItemUpdatingEventArgs) => void;
101
+ private bs;
102
+ private br;
103
+ private q;
104
+ itemWidthRequested: (sender: any, args: ListPanelTemplateWidthRequestedEventArgs) => void;
105
+ itemHeightRequested: (sender: any, args: ListPanelTemplateHeightRequestedEventArgs) => void;
106
+ private bl;
107
+ private aw;
108
+ private ax;
109
+ private bq;
110
+ private g;
111
+ private p;
112
+ private co;
113
+ private ao;
114
+ private ck;
115
+ private a6;
116
+ private a5;
117
+ private al;
118
+ private ak;
119
+ private an;
120
+ private am;
121
+ private bk;
122
+ bt(): void;
123
+ cm(): void;
124
+ private b0;
125
+ private ae;
126
+ private ab;
127
+ private bz;
128
+ bu(): void;
129
+ cn(): void;
130
+ a4(): number;
131
+ a3(): number;
132
+ private ay;
133
+ private az;
134
+ private aj;
135
+ by(): void;
136
+ private bx;
137
+ private ci;
138
+ private cj;
139
+ cg(): void;
140
+ private bw;
141
+ private b8;
142
+ private d;
143
+ externalListPanel: IExternalListPanel;
144
+ protected ce(a: string, b: any, c: any): void;
145
+ c: IExecutionContext;
146
+ cp(): void;
147
+ cw(): Size;
148
+ b7(a: number, b: number): void;
149
+ cc(a: number, b: any, c: any): void;
150
+ b6(): void;
151
+ b9(a: number, b: any): void;
152
+ cb(a: number, b: any): void;
153
+ b4(a: number, b: any, c: any): void;
154
+ b1(): void;
155
+ b2(a: number, b: any): void;
156
+ b3(a: number, b: any): void;
157
+ a1(a: any): number;
158
+ a2(a: any[]): number;
159
+ static ct: Brush;
160
+ private cq;
161
+ cs: Brush;
162
+ static j: ListPanelOrientation;
163
+ private i;
164
+ k: ListPanelOrientation;
165
+ static af: boolean;
166
+ private aa;
167
+ ai: boolean;
168
+ static cu: Brush;
169
+ cr: Brush;
170
+ cv: Brush;
171
+ readonly au: number;
172
+ readonly at: number;
173
+ }
174
+ /**
175
+ * @hidden
176
+ */
177
+ export declare class ListPanelDataSourceNotificationBridge extends Base implements IDataSourceUpdateNotifier {
178
+ static $t: Type;
179
+ private a;
180
+ constructor(a: ListPanel);
181
+ rangeActualized(a: number, b: number): void;
182
+ notifySetItem(a: number, b: any, c: any): void;
183
+ notifyClearItems(): void;
184
+ notifyInsertItem(a: number, b: any): void;
185
+ notifyRemoveItem(a: number, b: any): void;
186
+ }
187
+ /**
188
+ * @hidden
189
+ */
190
+ export declare class ListPanelLayoutPanel extends Base {
191
+ static $t: Type;
192
+ private a;
193
+ constructor(a: NativeUIAbsolutePanel);
194
+ d(a: Size): void;
195
+ b(a: ListPanel, b: ListPanelItemModel): void;
196
+ c(a: NativeUIContainer): void;
197
+ }
@@ -51,7 +51,7 @@ export declare class PropertyEditorPanelView extends Base {
51
51
  */
52
52
  export declare class PropertyEditorPanel extends Base implements INotifyPropertyChanged {
53
53
  static $t: Type;
54
- private l;
54
+ l: PropertyEditorPanelView;
55
55
  v: NativeUIGrid;
56
56
  private r;
57
57
  private y;
@@ -5,6 +5,7 @@ import { PropertyEditorPropertyDescriptionChangedEventArgs } from "./PropertyEdi
5
5
  import { PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs } from "./PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs";
6
6
  import { ObservableCollection$1 } from "igniteui-webcomponents-core";
7
7
  import { TypeDescriptionContext } from "igniteui-webcomponents-core";
8
+ import { Dictionary$2 } from "igniteui-webcomponents-core";
8
9
  /**
9
10
  * @hidden
10
11
  */
@@ -66,19 +67,21 @@ export declare class PropertyEditorPropertyDescriptionCollection extends Observa
66
67
  */
67
68
  export declare class PropertyEditorDataSource extends Base implements INotifyPropertyChanged {
68
69
  static $t: Type;
69
- private i;
70
- l: string;
70
+ private k;
71
+ n: string;
71
72
  private a;
72
73
  b: TypeDescriptionContext;
73
- private f;
74
- g: PropertyEditorPropertyDescriptionCollection;
74
+ private g;
75
+ h: PropertyEditorPropertyDescriptionCollection;
75
76
  propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
76
- protected n(a: string, b: any, c: any): void;
77
- protected o(a: string, b: any, c: any): void;
78
- private e;
79
- private h;
80
- private p;
81
- d(a: string, b: boolean): PropertyEditorPropertyDescription;
77
+ protected p(a: string, b: any, c: any): void;
78
+ protected q(a: string, b: any, c: any): void;
79
+ static d(a: TypeDescriptionContext, b: string, c: Dictionary$2<string, PropertyEditorDataSource>): PropertyEditorDataSource;
80
+ private j;
81
+ private f;
82
+ private i;
83
+ private r;
84
+ e(a: string, b: boolean): PropertyEditorPropertyDescription;
82
85
  private c;
83
86
  }
84
87
  /**
@@ -21,7 +21,8 @@ export declare enum PropertyEditorValueType {
21
21
  DataRef = 18,
22
22
  TimeSpan = 19,
23
23
  Button = 20,
24
- Slider = 21
24
+ Slider = 21,
25
+ TemplateRef = 22
25
26
  }
26
27
  /**
27
28
  * @hidden
@@ -0,0 +1 @@
1
+ export { ToolAction } from "./ToolPanelView_combined";
@@ -0,0 +1 @@
1
+ export { ToolActionCheckbox } from "./ToolPanelView_combined";
@@ -0,0 +1 @@
1
+ export { ToolActionCollection } from "./ToolPanelView_combined";
@@ -0,0 +1 @@
1
+ export { ToolActionEventDetail } from "./ToolPanelView_combined";
@@ -0,0 +1 @@
1
+ export { ToolActionEventDetailCollection } from "./ToolPanelView_combined";
@@ -0,0 +1 @@
1
+ export { ToolActionGroupHeader } from "./ToolPanelView_combined";
@@ -0,0 +1 @@
1
+ export { ToolActionIconButton } from "./ToolPanelView_combined";
@@ -0,0 +1 @@
1
+ export { ToolActionIconMenu } from "./ToolPanelView_combined";
@@ -0,0 +1 @@
1
+ export { ToolActionLabel } from "./ToolPanelView_combined";
@@ -0,0 +1,16 @@
1
+ import { Base, Type } from "igniteui-webcomponents-core";
2
+ import { ToolPanelOrientation } from "./ToolPanelOrientation";
3
+ /**
4
+ * @hidden
5
+ */
6
+ export declare class ToolActionMeasurementContext extends Base {
7
+ static $t: Type;
8
+ constructor();
9
+ e: number;
10
+ g: number;
11
+ f: number;
12
+ a: ToolPanelOrientation;
13
+ b: number;
14
+ d: number;
15
+ c: number;
16
+ }
@@ -0,0 +1 @@
1
+ export { ToolActionMenuBase } from "./ToolPanelView_combined";
@@ -0,0 +1 @@
1
+ export { ToolActionNumberInput } from "./ToolPanelView_combined";
@@ -0,0 +1 @@
1
+ export { ToolActionPerformedEventArgs } from "./ToolPanelView_combined";
@@ -0,0 +1 @@
1
+ export { ToolActionRadio } from "./ToolPanelView_combined";
@@ -0,0 +1 @@
1
+ export { ToolActionSeparator } from "./ToolPanelView_combined";
@@ -0,0 +1,10 @@
1
+ import { Base, Type } from "igniteui-webcomponents-core";
2
+ import { ToolCommand } from "igniteui-webcomponents-core";
3
+ /**
4
+ * @hidden
5
+ */
6
+ export declare class ToolCommandEventArgs extends Base {
7
+ static $t: Type;
8
+ constructor();
9
+ a: ToolCommand;
10
+ }
@@ -0,0 +1 @@
1
+ export { ToolPanel } from "./ToolPanelView_combined";
@@ -0,0 +1,8 @@
1
+ import { Base, Type } from "igniteui-webcomponents-core";
2
+ /**
3
+ * @hidden
4
+ */
5
+ export declare class ToolPanelContentRefreshedEventArgs extends Base {
6
+ static $t: Type;
7
+ constructor();
8
+ }
@@ -0,0 +1,9 @@
1
+ import { Type } from "igniteui-webcomponents-core";
2
+ export declare enum ToolPanelOrientation {
3
+ Vertical = 0,
4
+ Horizontal = 1
5
+ }
6
+ /**
7
+ * @hidden
8
+ */
9
+ export declare let ToolPanelOrientation_$type: Type;
@@ -0,0 +1 @@
1
+ export { ToolPanelView } from "./ToolPanelView_combined";