igniteui-webcomponents-layouts 3.2.2 → 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 (244) hide show
  1. package/bundles/igniteui-webcomponents-layouts.umd.js +6913 -146
  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/PropertyEditorTreeTransformer.js +8 -8
  25. package/esm2015/lib/ToolAction.js +7 -0
  26. package/esm2015/lib/ToolActionCheckbox.js +7 -0
  27. package/esm2015/lib/ToolActionCollection.js +7 -0
  28. package/esm2015/lib/ToolActionEventDetail.js +7 -0
  29. package/esm2015/lib/ToolActionEventDetailCollection.js +7 -0
  30. package/esm2015/lib/ToolActionGroupHeader.js +7 -0
  31. package/esm2015/lib/ToolActionIconButton.js +7 -0
  32. package/esm2015/lib/ToolActionIconMenu.js +7 -0
  33. package/esm2015/lib/ToolActionMeasurementContext.js +31 -0
  34. package/esm2015/lib/ToolActionMenuBase.js +7 -0
  35. package/esm2015/lib/ToolActionNumberInput.js +7 -0
  36. package/esm2015/lib/ToolActionPerformedEventArgs.js +7 -0
  37. package/esm2015/lib/ToolActionSeparator.js +7 -0
  38. package/esm2015/lib/ToolCommandEventArgs.js +20 -0
  39. package/esm2015/lib/ToolPanel.js +7 -0
  40. package/esm2015/lib/ToolPanelContentRefreshedEventArgs.js +19 -0
  41. package/esm2015/lib/ToolPanelOrientation.js +16 -0
  42. package/esm2015/lib/ToolPanelView.js +7 -0
  43. package/esm2015/lib/ToolPanelView_combined.js +1515 -0
  44. package/esm2015/lib/Toolbar.js +7 -0
  45. package/esm2015/lib/ToolbarIconManager.js +40 -0
  46. package/esm2015/lib/ToolbarOrientation.js +16 -0
  47. package/esm2015/lib/ToolbarView.js +7 -0
  48. package/esm2015/lib/ToolbarView_combined.js +387 -0
  49. package/esm2015/lib/igc-list-panel-component.js +457 -0
  50. package/esm2015/lib/igc-list-panel-content-refreshed-event-args.js +24 -0
  51. package/esm2015/lib/igc-list-panel-item-model.js +52 -0
  52. package/esm2015/lib/igc-list-panel-module.js +17 -0
  53. package/esm2015/lib/igc-list-panel-template-height-requested-event-args.js +42 -0
  54. package/esm2015/lib/igc-list-panel-template-item-updating-event-args.js +45 -0
  55. package/esm2015/lib/igc-list-panel-template-width-requested-event-args.js +42 -0
  56. package/esm2015/lib/igc-property-editor-panel-component.js +1 -5
  57. package/esm2015/lib/igc-tool-action-checkbox-component.js +49 -0
  58. package/esm2015/lib/igc-tool-action-checkbox-module.js +16 -0
  59. package/esm2015/lib/igc-tool-action-collection.js +48 -0
  60. package/esm2015/lib/igc-tool-action-component.js +312 -0
  61. package/esm2015/lib/igc-tool-action-event-detail-collection.js +48 -0
  62. package/esm2015/lib/igc-tool-action-event-detail.js +85 -0
  63. package/esm2015/lib/igc-tool-action-group-header-component.js +49 -0
  64. package/esm2015/lib/igc-tool-action-group-header-module.js +16 -0
  65. package/esm2015/lib/igc-tool-action-icon-button-component.js +49 -0
  66. package/esm2015/lib/igc-tool-action-icon-button-module.js +16 -0
  67. package/esm2015/lib/igc-tool-action-icon-menu-component.js +49 -0
  68. package/esm2015/lib/igc-tool-action-icon-menu-module.js +16 -0
  69. package/esm2015/lib/igc-tool-action-menu-base-component.js +89 -0
  70. package/esm2015/lib/igc-tool-action-module.js +16 -0
  71. package/esm2015/lib/igc-tool-action-number-input-component.js +49 -0
  72. package/esm2015/lib/igc-tool-action-number-input-module.js +16 -0
  73. package/esm2015/lib/igc-tool-action-performed-event-args.js +80 -0
  74. package/esm2015/lib/igc-tool-action-separator-component.js +49 -0
  75. package/esm2015/lib/igc-tool-action-separator-module.js +16 -0
  76. package/esm2015/lib/igc-tool-command-event-args.js +30 -0
  77. package/esm2015/lib/igc-tool-panel-component.js +379 -0
  78. package/esm2015/lib/igc-tool-panel-content-refreshed-event-args.js +24 -0
  79. package/esm2015/lib/igc-tool-panel-module.js +29 -0
  80. package/esm2015/lib/igc-toolbar-component.js +412 -0
  81. package/esm2015/lib/igc-toolbar-module.js +19 -0
  82. package/esm2015/public_api.js +73 -0
  83. package/esm5/lib/IExternalListPanel.js +11 -0
  84. package/esm5/lib/IExternalToolPanel.js +11 -0
  85. package/esm5/lib/IExternalToolbar.js +11 -0
  86. package/esm5/lib/IListPanelView.js +11 -0
  87. package/esm5/lib/IPropertyEditorPanelView.js +11 -0
  88. package/esm5/lib/IToolPanelView.js +11 -0
  89. package/esm5/lib/IToolbarView.js +11 -0
  90. package/esm5/lib/ListPanel.js +7 -0
  91. package/esm5/lib/ListPanelContentRefreshedEventArgs.js +20 -0
  92. package/esm5/lib/ListPanelDataBindingEventArgs.js +24 -0
  93. package/esm5/lib/ListPanelDataSourceNotificationBridge.js +7 -0
  94. package/esm5/lib/ListPanelItemModel.js +80 -0
  95. package/esm5/lib/ListPanelItemPresenter.js +22 -0
  96. package/esm5/lib/ListPanelLayoutPanel.js +7 -0
  97. package/esm5/lib/ListPanelOrientation.js +16 -0
  98. package/esm5/lib/ListPanelTemplateHeightRequestedEventArgs.js +24 -0
  99. package/esm5/lib/ListPanelTemplateItemUpdatingEventArgs.js +24 -0
  100. package/esm5/lib/ListPanelTemplateWidthRequestedEventArgs.js +24 -0
  101. package/esm5/lib/ListPanelView.js +7 -0
  102. package/esm5/lib/ListPanelView_combined.js +1045 -0
  103. package/esm5/lib/PropertyEditorPanelView_combined.js +100 -100
  104. package/esm5/lib/PropertyEditorTreeTransformer.js +8 -8
  105. package/esm5/lib/ToolAction.js +7 -0
  106. package/esm5/lib/ToolActionCheckbox.js +7 -0
  107. package/esm5/lib/ToolActionCollection.js +7 -0
  108. package/esm5/lib/ToolActionEventDetail.js +7 -0
  109. package/esm5/lib/ToolActionEventDetailCollection.js +7 -0
  110. package/esm5/lib/ToolActionGroupHeader.js +7 -0
  111. package/esm5/lib/ToolActionIconButton.js +7 -0
  112. package/esm5/lib/ToolActionIconMenu.js +7 -0
  113. package/esm5/lib/ToolActionMeasurementContext.js +33 -0
  114. package/esm5/lib/ToolActionMenuBase.js +7 -0
  115. package/esm5/lib/ToolActionNumberInput.js +7 -0
  116. package/esm5/lib/ToolActionPerformedEventArgs.js +7 -0
  117. package/esm5/lib/ToolActionSeparator.js +7 -0
  118. package/esm5/lib/ToolCommandEventArgs.js +22 -0
  119. package/esm5/lib/ToolPanel.js +7 -0
  120. package/esm5/lib/ToolPanelContentRefreshedEventArgs.js +20 -0
  121. package/esm5/lib/ToolPanelOrientation.js +16 -0
  122. package/esm5/lib/ToolPanelView.js +7 -0
  123. package/esm5/lib/ToolPanelView_combined.js +1663 -0
  124. package/esm5/lib/Toolbar.js +7 -0
  125. package/esm5/lib/ToolbarIconManager.js +44 -0
  126. package/esm5/lib/ToolbarOrientation.js +16 -0
  127. package/esm5/lib/ToolbarView.js +7 -0
  128. package/esm5/lib/ToolbarView_combined.js +459 -0
  129. package/esm5/lib/igc-list-panel-component.js +535 -0
  130. package/esm5/lib/igc-list-panel-content-refreshed-event-args.js +30 -0
  131. package/esm5/lib/igc-list-panel-item-model.js +74 -0
  132. package/esm5/lib/igc-list-panel-module.js +21 -0
  133. package/esm5/lib/igc-list-panel-template-height-requested-event-args.js +60 -0
  134. package/esm5/lib/igc-list-panel-template-item-updating-event-args.js +59 -0
  135. package/esm5/lib/igc-list-panel-template-width-requested-event-args.js +60 -0
  136. package/esm5/lib/igc-property-editor-panel-component.js +1 -5
  137. package/esm5/lib/igc-tool-action-checkbox-component.js +58 -0
  138. package/esm5/lib/igc-tool-action-checkbox-module.js +20 -0
  139. package/esm5/lib/igc-tool-action-collection.js +53 -0
  140. package/esm5/lib/igc-tool-action-component.js +388 -0
  141. package/esm5/lib/igc-tool-action-event-detail-collection.js +53 -0
  142. package/esm5/lib/igc-tool-action-event-detail.js +119 -0
  143. package/esm5/lib/igc-tool-action-group-header-component.js +58 -0
  144. package/esm5/lib/igc-tool-action-group-header-module.js +20 -0
  145. package/esm5/lib/igc-tool-action-icon-button-component.js +58 -0
  146. package/esm5/lib/igc-tool-action-icon-button-module.js +20 -0
  147. package/esm5/lib/igc-tool-action-icon-menu-component.js +58 -0
  148. package/esm5/lib/igc-tool-action-icon-menu-module.js +20 -0
  149. package/esm5/lib/igc-tool-action-menu-base-component.js +103 -0
  150. package/esm5/lib/igc-tool-action-module.js +20 -0
  151. package/esm5/lib/igc-tool-action-number-input-component.js +58 -0
  152. package/esm5/lib/igc-tool-action-number-input-module.js +20 -0
  153. package/esm5/lib/igc-tool-action-performed-event-args.js +98 -0
  154. package/esm5/lib/igc-tool-action-separator-component.js +58 -0
  155. package/esm5/lib/igc-tool-action-separator-module.js +20 -0
  156. package/esm5/lib/igc-tool-command-event-args.js +40 -0
  157. package/esm5/lib/igc-tool-panel-component.js +449 -0
  158. package/esm5/lib/igc-tool-panel-content-refreshed-event-args.js +30 -0
  159. package/esm5/lib/igc-tool-panel-module.js +33 -0
  160. package/esm5/lib/igc-toolbar-component.js +484 -0
  161. package/esm5/lib/igc-toolbar-module.js +23 -0
  162. package/esm5/public_api.js +73 -0
  163. package/fesm2015/igniteui-webcomponents-layouts.js +6038 -148
  164. package/fesm5/igniteui-webcomponents-layouts.js +6839 -148
  165. package/lib/IExternalListPanel.d.ts +13 -0
  166. package/lib/IExternalToolPanel.d.ts +13 -0
  167. package/lib/IExternalToolbar.d.ts +13 -0
  168. package/lib/IListPanelView.d.ts +25 -0
  169. package/lib/IPropertyEditorPanelView.d.ts +26 -0
  170. package/lib/IToolPanelView.d.ts +25 -0
  171. package/lib/IToolbarView.d.ts +25 -0
  172. package/lib/ListPanel.d.ts +1 -0
  173. package/lib/ListPanelContentRefreshedEventArgs.d.ts +8 -0
  174. package/lib/ListPanelDataBindingEventArgs.d.ts +10 -0
  175. package/lib/ListPanelDataSourceNotificationBridge.d.ts +1 -0
  176. package/lib/ListPanelItemModel.d.ts +22 -0
  177. package/lib/ListPanelItemPresenter.d.ts +9 -0
  178. package/lib/ListPanelLayoutPanel.d.ts +1 -0
  179. package/lib/ListPanelOrientation.d.ts +9 -0
  180. package/lib/ListPanelTemplateHeightRequestedEventArgs.d.ts +10 -0
  181. package/lib/ListPanelTemplateItemUpdatingEventArgs.d.ts +12 -0
  182. package/lib/ListPanelTemplateWidthRequestedEventArgs.d.ts +10 -0
  183. package/lib/ListPanelView.d.ts +1 -0
  184. package/lib/ListPanelView_combined.d.ts +197 -0
  185. package/lib/PropertyEditorPanelView_combined.d.ts +1 -1
  186. package/lib/ToolAction.d.ts +1 -0
  187. package/lib/ToolActionCheckbox.d.ts +1 -0
  188. package/lib/ToolActionCollection.d.ts +1 -0
  189. package/lib/ToolActionEventDetail.d.ts +1 -0
  190. package/lib/ToolActionEventDetailCollection.d.ts +1 -0
  191. package/lib/ToolActionGroupHeader.d.ts +1 -0
  192. package/lib/ToolActionIconButton.d.ts +1 -0
  193. package/lib/ToolActionIconMenu.d.ts +1 -0
  194. package/lib/ToolActionMeasurementContext.d.ts +16 -0
  195. package/lib/ToolActionMenuBase.d.ts +1 -0
  196. package/lib/ToolActionNumberInput.d.ts +1 -0
  197. package/lib/ToolActionPerformedEventArgs.d.ts +1 -0
  198. package/lib/ToolActionSeparator.d.ts +1 -0
  199. package/lib/ToolCommandEventArgs.d.ts +10 -0
  200. package/lib/ToolPanel.d.ts +1 -0
  201. package/lib/ToolPanelContentRefreshedEventArgs.d.ts +8 -0
  202. package/lib/ToolPanelOrientation.d.ts +9 -0
  203. package/lib/ToolPanelView.d.ts +1 -0
  204. package/lib/ToolPanelView_combined.d.ts +328 -0
  205. package/lib/Toolbar.d.ts +1 -0
  206. package/lib/ToolbarIconManager.d.ts +10 -0
  207. package/lib/ToolbarOrientation.d.ts +9 -0
  208. package/lib/ToolbarView.d.ts +1 -0
  209. package/lib/ToolbarView_combined.d.ts +98 -0
  210. package/lib/igc-list-panel-component.d.ts +122 -0
  211. package/lib/igc-list-panel-content-refreshed-event-args.d.ts +12 -0
  212. package/lib/igc-list-panel-item-model.d.ts +17 -0
  213. package/lib/igc-list-panel-module.d.ts +3 -0
  214. package/lib/igc-list-panel-template-height-requested-event-args.d.ts +15 -0
  215. package/lib/igc-list-panel-template-item-updating-event-args.d.ts +15 -0
  216. package/lib/igc-list-panel-template-width-requested-event-args.d.ts +15 -0
  217. package/lib/igc-property-editor-panel-component.d.ts +0 -2
  218. package/lib/igc-tool-action-checkbox-component.d.ts +16 -0
  219. package/lib/igc-tool-action-checkbox-module.d.ts +3 -0
  220. package/lib/igc-tool-action-collection.d.ts +8 -0
  221. package/lib/igc-tool-action-component.d.ts +64 -0
  222. package/lib/igc-tool-action-event-detail-collection.d.ts +8 -0
  223. package/lib/igc-tool-action-event-detail.d.ts +22 -0
  224. package/lib/igc-tool-action-group-header-component.d.ts +16 -0
  225. package/lib/igc-tool-action-group-header-module.d.ts +3 -0
  226. package/lib/igc-tool-action-icon-button-component.d.ts +16 -0
  227. package/lib/igc-tool-action-icon-button-module.d.ts +3 -0
  228. package/lib/igc-tool-action-icon-menu-component.d.ts +16 -0
  229. package/lib/igc-tool-action-icon-menu-module.d.ts +3 -0
  230. package/lib/igc-tool-action-menu-base-component.d.ts +24 -0
  231. package/lib/igc-tool-action-module.d.ts +3 -0
  232. package/lib/igc-tool-action-number-input-component.d.ts +16 -0
  233. package/lib/igc-tool-action-number-input-module.d.ts +3 -0
  234. package/lib/igc-tool-action-performed-event-args.d.ts +18 -0
  235. package/lib/igc-tool-action-separator-component.d.ts +16 -0
  236. package/lib/igc-tool-action-separator-module.d.ts +3 -0
  237. package/lib/igc-tool-command-event-args.d.ts +14 -0
  238. package/lib/igc-tool-panel-component.d.ts +83 -0
  239. package/lib/igc-tool-panel-content-refreshed-event-args.d.ts +12 -0
  240. package/lib/igc-tool-panel-module.d.ts +3 -0
  241. package/lib/igc-toolbar-component.d.ts +89 -0
  242. package/lib/igc-toolbar-module.d.ts +3 -0
  243. package/package.json +3 -3
  244. package/public_api.d.ts +73 -0
@@ -0,0 +1,412 @@
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.autoGeneratedActions != null && this.autoGeneratedActions.findByName && this.autoGeneratedActions.findByName(name)) {
344
+ return this.autoGeneratedActions.findByName(name);
345
+ }
346
+ if (this.actions != null && this.actions.findByName && this.actions.findByName(name)) {
347
+ return this.actions.findByName(name);
348
+ }
349
+ if (this.actualActions != null && this.actualActions.findByName && this.actualActions.findByName(name)) {
350
+ return this.actualActions.findByName(name);
351
+ }
352
+ return null;
353
+ }
354
+ get hasUserValues() {
355
+ return this._hasUserValues;
356
+ }
357
+ __m(propertyName) {
358
+ if (!this._inStyling) {
359
+ this._hasUserValues.add(propertyName);
360
+ }
361
+ }
362
+ _styling(container, component, parent) {
363
+ if (this._inStyling) {
364
+ return;
365
+ }
366
+ this._inStyling = true;
367
+ this._stylingContainer = container;
368
+ this._stylingParent = component;
369
+ let genericPrefix = "";
370
+ let typeName = this.i.$type.name;
371
+ if (typeName.indexOf("Xam") === 0) {
372
+ typeName = typeName.substring(3);
373
+ }
374
+ genericPrefix = toSpinal("ToolbarComponent");
375
+ let additionalPrefixes = [];
376
+ let prefix = toSpinal(typeName);
377
+ additionalPrefixes.push(prefix + "-");
378
+ let b = this.i.$type.baseType;
379
+ while (b && b.name != "Object" &&
380
+ b.name != "Base" &&
381
+ b.name != "Control" &&
382
+ b.Name != "DependencyObject" &&
383
+ b.Name != "FrameworkElement") {
384
+ typeName = b.name;
385
+ if (typeName.indexOf("Xam") === 0) {
386
+ typeName = typeName.substring(3);
387
+ }
388
+ let basePrefix = toSpinal(typeName);
389
+ additionalPrefixes.push(basePrefix + "-");
390
+ b = b.baseType;
391
+ }
392
+ if (parent) {
393
+ let parentTypeName = parent.i.$type.name;
394
+ if (parentTypeName.indexOf("Xam") === 0) {
395
+ parentTypeName = parentTypeName.substring(3);
396
+ }
397
+ let parentPrefix = toSpinal(parentTypeName);
398
+ additionalPrefixes.push(parentPrefix + "-" + genericPrefix + "-");
399
+ additionalPrefixes.push(parentPrefix + "-" + prefix + "-");
400
+ }
401
+ initializePropertiesFromCss(container, this, genericPrefix + "-", this.hasUserValues, false, additionalPrefixes);
402
+ if (this._otherStyling) {
403
+ this._otherStyling(container, component, parent);
404
+ }
405
+ this._inStyling = false;
406
+ }
407
+ }
408
+ IgcToolbarComponent._observedAttributesIgcToolbarComponent = null;
409
+ IgcToolbarComponent.htmlTagName = "igc-toolbar";
410
+ IgcToolbarComponent._isElementRegistered = false;
411
+ return IgcToolbarComponent;
412
+ })();
@@ -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
+ }
@@ -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,74 @@ 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/ToolActionSeparator';
31
+ export * from './lib/igc-tool-action-separator-component';
32
+ export * from './lib/igc-tool-action-separator-module';
33
+ export * from './lib/ToolActionIconButton';
34
+ export * from './lib/igc-tool-action-icon-button-component';
35
+ export * from './lib/igc-tool-action-icon-button-module';
36
+ export * from './lib/ToolActionGroupHeader';
37
+ export * from './lib/igc-tool-action-group-header-component';
38
+ export * from './lib/igc-tool-action-group-header-module';
39
+ export * from './lib/ToolActionIconMenu';
40
+ export * from './lib/igc-tool-action-icon-menu-component';
41
+ export * from './lib/igc-tool-action-icon-menu-module';
42
+ export * from './lib/ToolActionCheckbox';
43
+ export * from './lib/igc-tool-action-checkbox-component';
44
+ export * from './lib/igc-tool-action-checkbox-module';
45
+ export * from './lib/ToolActionNumberInput';
46
+ export * from './lib/igc-tool-action-number-input-component';
47
+ export * from './lib/igc-tool-action-number-input-module';
48
+ export * from './lib/ToolAction';
49
+ export * from './lib/igc-tool-action-component';
50
+ export * from './lib/igc-tool-action-module';
51
+ export * from './lib/igc-tool-action-collection';
52
+ export * from './lib/ToolActionCollection';
53
+ export * from './lib/ToolActionMenuBase';
54
+ export * from './lib/igc-tool-action-menu-base-component';
55
+ export * from './lib/IExternalToolbar';
56
+ export * from './lib/IToolbarView';
57
+ export * from './lib/Toolbar';
58
+ export * from './lib/ToolbarOrientation';
59
+ export * from './lib/ToolPanelOrientation';
60
+ export * from './lib/ToolCommandEventArgs';
61
+ export * from './lib/igc-tool-command-event-args';
62
+ export * from './lib/ToolPanelContentRefreshedEventArgs';
63
+ export * from './lib/igc-tool-panel-content-refreshed-event-args';
64
+ export * from './lib/ToolActionPerformedEventArgs';
65
+ export * from './lib/igc-tool-action-performed-event-args';
66
+ export * from './lib/ToolActionEventDetail';
67
+ export * from './lib/igc-tool-action-event-detail';
68
+ export * from './lib/igc-tool-action-event-detail-collection';
69
+ export * from './lib/ToolActionEventDetailCollection';
70
+ export * from './lib/ToolbarIconManager';
71
+ export * from './lib/IExternalToolPanel';
72
+ export * from './lib/IToolPanelView';
73
+ export * from './lib/ToolPanel';
74
+ export * from './lib/ToolActionMeasurementContext';
21
75
  export * from './lib/Popup';
22
76
  export * from './lib/Popup_OuterAnimationInfo';
23
77
  export * from './lib/Popup_InnerAnimationInfo';
24
78
  export * from './lib/XExpansionPanel';
79
+ export * from './lib/IExternalListPanel';
80
+ export * from './lib/IListPanelView';
81
+ export * from './lib/ListPanel';
82
+ export * from './lib/ListPanelContentRefreshedEventArgs';
83
+ export * from './lib/igc-list-panel-content-refreshed-event-args';
84
+ export * from './lib/ListPanelOrientation';
85
+ export * from './lib/ListPanelTemplateHeightRequestedEventArgs';
86
+ export * from './lib/igc-list-panel-template-height-requested-event-args';
87
+ export * from './lib/ListPanelTemplateWidthRequestedEventArgs';
88
+ export * from './lib/igc-list-panel-template-width-requested-event-args';
89
+ export * from './lib/ListPanelTemplateItemUpdatingEventArgs';
90
+ export * from './lib/igc-list-panel-template-item-updating-event-args';
91
+ export * from './lib/ListPanelDataBindingEventArgs';
92
+ export * from './lib/ListPanelDataSourceNotificationBridge';
93
+ export * from './lib/ListPanelLayoutPanel';
94
+ export * from './lib/ListPanelItemModel';
95
+ export * from './lib/igc-list-panel-item-model';
96
+ export * from './lib/ListPanelItemPresenter';
97
+ export * from './lib/IPropertyEditorPanelView';
25
98
  export * from './lib/PropertyEditorPanel';
26
99
  export * from './lib/PropertyEditorPanelColumnType';
27
100
  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');
@@ -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 IPropertyEditorPanelView_$type = /*@__PURE__*/ new Type(null, 'IPropertyEditorPanelView');
@@ -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 IToolPanelView_$type = /*@__PURE__*/ new Type(null, 'IToolPanelView');
@@ -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 IToolbarView_$type = /*@__PURE__*/ new Type(null, 'IToolbarView');
@@ -0,0 +1,7 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
+ */
7
+ export { ListPanel } from "./ListPanelView_combined";
@@ -0,0 +1,20 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
+ */
7
+ import * as tslib_1 from "tslib";
8
+ import { Base, markType } from "igniteui-webcomponents-core";
9
+ /**
10
+ * @hidden
11
+ */
12
+ var ListPanelContentRefreshedEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
13
+ tslib_1.__extends(ListPanelContentRefreshedEventArgs, _super);
14
+ function ListPanelContentRefreshedEventArgs() {
15
+ return _super.call(this) || this;
16
+ }
17
+ ListPanelContentRefreshedEventArgs.$t = markType(ListPanelContentRefreshedEventArgs, 'ListPanelContentRefreshedEventArgs');
18
+ return ListPanelContentRefreshedEventArgs;
19
+ }(Base));
20
+ export { ListPanelContentRefreshedEventArgs };