popover.js 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643
  1. "use strict";
  2. var __extends = (this && this.__extends) || (function () {
  3. var extendStatics = Object.setPrototypeOf ||
  4. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  5. function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
  6. return function (d, b) {
  7. extendStatics(d, b);
  8. function __() { this.constructor = d; }
  9. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  10. };
  11. })();
  12. /*!
  13. * devextreme-angular
  14. * Version: 19.1.16
  15. * Build date: Tue Oct 18 2022
  16. *
  17. * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
  18. *
  19. * This software may be modified and distributed under the terms
  20. * of the MIT license. See the LICENSE file in the root of the project for details.
  21. *
  22. * https://github.com/DevExpress/devextreme-angular
  23. */
  24. Object.defineProperty(exports, "__esModule", { value: true });
  25. var platform_browser_1 = require("@angular/platform-browser");
  26. var platform_browser_2 = require("@angular/platform-browser");
  27. var core_1 = require("@angular/core");
  28. var popover_1 = require("devextreme/ui/popover");
  29. var component_1 = require("../core/component");
  30. var template_host_1 = require("../core/template-host");
  31. var integration_1 = require("../core/integration");
  32. var template_1 = require("../core/template");
  33. var nested_option_1 = require("../core/nested-option");
  34. var watcher_helper_1 = require("../core/watcher-helper");
  35. var iterable_differ_helper_1 = require("../core/iterable-differ-helper");
  36. var animation_1 = require("./nested/animation");
  37. var hide_1 = require("./nested/hide");
  38. var show_1 = require("./nested/show");
  39. var hide_event_1 = require("./nested/hide-event");
  40. var position_1 = require("./nested/position");
  41. var at_1 = require("./nested/at");
  42. var boundary_offset_1 = require("./nested/boundary-offset");
  43. var collision_1 = require("./nested/collision");
  44. var my_1 = require("./nested/my");
  45. var offset_1 = require("./nested/offset");
  46. var show_event_1 = require("./nested/show-event");
  47. var toolbar_item_dxi_1 = require("./nested/toolbar-item-dxi");
  48. var toolbar_item_dxi_2 = require("./nested/toolbar-item-dxi");
  49. /**
  50. * The Popover is a widget that shows notifications within a box with an arrow pointing to a specified UI element.
  51. */
  52. var DxPopoverComponent = (function (_super) {
  53. __extends(DxPopoverComponent, _super);
  54. function DxPopoverComponent(elementRef, ngZone, templateHost, _watcherHelper, _idh, optionHost, transferState, platformId) {
  55. var _this = _super.call(this, elementRef, ngZone, templateHost, _watcherHelper, transferState, platformId) || this;
  56. _this._watcherHelper = _watcherHelper;
  57. _this._idh = _idh;
  58. _this._createEventEmitters([
  59. { subscribe: 'contentReady', emit: 'onContentReady' },
  60. { subscribe: 'disposing', emit: 'onDisposing' },
  61. { subscribe: 'hidden', emit: 'onHidden' },
  62. { subscribe: 'hiding', emit: 'onHiding' },
  63. { subscribe: 'initialized', emit: 'onInitialized' },
  64. { subscribe: 'optionChanged', emit: 'onOptionChanged' },
  65. { subscribe: 'showing', emit: 'onShowing' },
  66. { subscribe: 'shown', emit: 'onShown' },
  67. { subscribe: 'titleRendered', emit: 'onTitleRendered' },
  68. { emit: 'animationChange' },
  69. { emit: 'closeOnOutsideClickChange' },
  70. { emit: 'containerChange' },
  71. { emit: 'contentTemplateChange' },
  72. { emit: 'deferRenderingChange' },
  73. { emit: 'disabledChange' },
  74. { emit: 'elementAttrChange' },
  75. { emit: 'heightChange' },
  76. { emit: 'hideEventChange' },
  77. { emit: 'hintChange' },
  78. { emit: 'hoverStateEnabledChange' },
  79. { emit: 'maxHeightChange' },
  80. { emit: 'maxWidthChange' },
  81. { emit: 'minHeightChange' },
  82. { emit: 'minWidthChange' },
  83. { emit: 'positionChange' },
  84. { emit: 'rtlEnabledChange' },
  85. { emit: 'shadingChange' },
  86. { emit: 'shadingColorChange' },
  87. { emit: 'showCloseButtonChange' },
  88. { emit: 'showEventChange' },
  89. { emit: 'showTitleChange' },
  90. { emit: 'targetChange' },
  91. { emit: 'titleChange' },
  92. { emit: 'titleTemplateChange' },
  93. { emit: 'toolbarItemsChange' },
  94. { emit: 'visibleChange' },
  95. { emit: 'widthChange' }
  96. ]);
  97. _this._idh.setHost(_this);
  98. optionHost.setHost(_this);
  99. return _this;
  100. }
  101. Object.defineProperty(DxPopoverComponent.prototype, "animation", {
  102. get: /**
  103. * Configures widget visibility animations. This object contains two fields: show and hide.
  104. */
  105. function () {
  106. return this._getOption('animation');
  107. },
  108. set: function (value) {
  109. this._setOption('animation', value);
  110. },
  111. enumerable: true,
  112. configurable: true
  113. });
  114. Object.defineProperty(DxPopoverComponent.prototype, "closeOnOutsideClick", {
  115. get: /**
  116. * A Boolean value specifying whether or not the widget is closed if a user clicks outside of the popover window and outside the target element.
  117. */
  118. function () {
  119. return this._getOption('closeOnOutsideClick');
  120. },
  121. set: function (value) {
  122. this._setOption('closeOnOutsideClick', value);
  123. },
  124. enumerable: true,
  125. configurable: true
  126. });
  127. Object.defineProperty(DxPopoverComponent.prototype, "container", {
  128. get: /**
  129. * Specifies the container in which to place the widget.
  130. */
  131. function () {
  132. return this._getOption('container');
  133. },
  134. set: function (value) {
  135. this._setOption('container', value);
  136. },
  137. enumerable: true,
  138. configurable: true
  139. });
  140. Object.defineProperty(DxPopoverComponent.prototype, "contentTemplate", {
  141. get: /**
  142. * Specifies a custom template for the widget content.
  143. */
  144. function () {
  145. return this._getOption('contentTemplate');
  146. },
  147. set: function (value) {
  148. this._setOption('contentTemplate', value);
  149. },
  150. enumerable: true,
  151. configurable: true
  152. });
  153. Object.defineProperty(DxPopoverComponent.prototype, "deferRendering", {
  154. get: /**
  155. * Specifies whether to render the widget's content when it is displayed. If false, the content is rendered immediately.
  156. */
  157. function () {
  158. return this._getOption('deferRendering');
  159. },
  160. set: function (value) {
  161. this._setOption('deferRendering', value);
  162. },
  163. enumerable: true,
  164. configurable: true
  165. });
  166. Object.defineProperty(DxPopoverComponent.prototype, "disabled", {
  167. get: /**
  168. * Specifies whether the widget responds to user interaction.
  169. */
  170. function () {
  171. return this._getOption('disabled');
  172. },
  173. set: function (value) {
  174. this._setOption('disabled', value);
  175. },
  176. enumerable: true,
  177. configurable: true
  178. });
  179. Object.defineProperty(DxPopoverComponent.prototype, "elementAttr", {
  180. get: /**
  181. * Specifies the attributes to be attached to the widget's root element.
  182. */
  183. function () {
  184. return this._getOption('elementAttr');
  185. },
  186. set: function (value) {
  187. this._setOption('elementAttr', value);
  188. },
  189. enumerable: true,
  190. configurable: true
  191. });
  192. Object.defineProperty(DxPopoverComponent.prototype, "height", {
  193. get: /**
  194. * Specifies the widget's height.
  195. */
  196. function () {
  197. return this._getOption('height');
  198. },
  199. set: function (value) {
  200. this._setOption('height', value);
  201. },
  202. enumerable: true,
  203. configurable: true
  204. });
  205. Object.defineProperty(DxPopoverComponent.prototype, "hideEvent", {
  206. get: /**
  207. * Specifies options of popover hiding.
  208. */
  209. function () {
  210. return this._getOption('hideEvent');
  211. },
  212. set: function (value) {
  213. this._setOption('hideEvent', value);
  214. },
  215. enumerable: true,
  216. configurable: true
  217. });
  218. Object.defineProperty(DxPopoverComponent.prototype, "hint", {
  219. get: /**
  220. * Specifies text for a hint that appears when a user pauses on the widget.
  221. */
  222. function () {
  223. return this._getOption('hint');
  224. },
  225. set: function (value) {
  226. this._setOption('hint', value);
  227. },
  228. enumerable: true,
  229. configurable: true
  230. });
  231. Object.defineProperty(DxPopoverComponent.prototype, "hoverStateEnabled", {
  232. get: /**
  233. * Specifies whether the widget changes its state when a user pauses on it.
  234. */
  235. function () {
  236. return this._getOption('hoverStateEnabled');
  237. },
  238. set: function (value) {
  239. this._setOption('hoverStateEnabled', value);
  240. },
  241. enumerable: true,
  242. configurable: true
  243. });
  244. Object.defineProperty(DxPopoverComponent.prototype, "maxHeight", {
  245. get: /**
  246. * Specifies the maximum height the widget can reach while resizing.
  247. */
  248. function () {
  249. return this._getOption('maxHeight');
  250. },
  251. set: function (value) {
  252. this._setOption('maxHeight', value);
  253. },
  254. enumerable: true,
  255. configurable: true
  256. });
  257. Object.defineProperty(DxPopoverComponent.prototype, "maxWidth", {
  258. get: /**
  259. * Specifies the maximum width the widget can reach while resizing.
  260. */
  261. function () {
  262. return this._getOption('maxWidth');
  263. },
  264. set: function (value) {
  265. this._setOption('maxWidth', value);
  266. },
  267. enumerable: true,
  268. configurable: true
  269. });
  270. Object.defineProperty(DxPopoverComponent.prototype, "minHeight", {
  271. get: /**
  272. * Specifies the minimum height the widget can reach while resizing.
  273. */
  274. function () {
  275. return this._getOption('minHeight');
  276. },
  277. set: function (value) {
  278. this._setOption('minHeight', value);
  279. },
  280. enumerable: true,
  281. configurable: true
  282. });
  283. Object.defineProperty(DxPopoverComponent.prototype, "minWidth", {
  284. get: /**
  285. * Specifies the minimum width the widget can reach while resizing.
  286. */
  287. function () {
  288. return this._getOption('minWidth');
  289. },
  290. set: function (value) {
  291. this._setOption('minWidth', value);
  292. },
  293. enumerable: true,
  294. configurable: true
  295. });
  296. Object.defineProperty(DxPopoverComponent.prototype, "position", {
  297. get: /**
  298. * An object defining widget positioning options.
  299. */
  300. function () {
  301. return this._getOption('position');
  302. },
  303. set: function (value) {
  304. this._setOption('position', value);
  305. },
  306. enumerable: true,
  307. configurable: true
  308. });
  309. Object.defineProperty(DxPopoverComponent.prototype, "rtlEnabled", {
  310. get: /**
  311. * Switches the widget to a right-to-left representation.
  312. */
  313. function () {
  314. return this._getOption('rtlEnabled');
  315. },
  316. set: function (value) {
  317. this._setOption('rtlEnabled', value);
  318. },
  319. enumerable: true,
  320. configurable: true
  321. });
  322. Object.defineProperty(DxPopoverComponent.prototype, "shading", {
  323. get: /**
  324. * Specifies whether to shade the background when the widget is active.
  325. */
  326. function () {
  327. return this._getOption('shading');
  328. },
  329. set: function (value) {
  330. this._setOption('shading', value);
  331. },
  332. enumerable: true,
  333. configurable: true
  334. });
  335. Object.defineProperty(DxPopoverComponent.prototype, "shadingColor", {
  336. get: /**
  337. * Specifies the shading color.
  338. */
  339. function () {
  340. return this._getOption('shadingColor');
  341. },
  342. set: function (value) {
  343. this._setOption('shadingColor', value);
  344. },
  345. enumerable: true,
  346. configurable: true
  347. });
  348. Object.defineProperty(DxPopoverComponent.prototype, "showCloseButton", {
  349. get: /**
  350. * Specifies whether or not the widget displays the Close button.
  351. */
  352. function () {
  353. return this._getOption('showCloseButton');
  354. },
  355. set: function (value) {
  356. this._setOption('showCloseButton', value);
  357. },
  358. enumerable: true,
  359. configurable: true
  360. });
  361. Object.defineProperty(DxPopoverComponent.prototype, "showEvent", {
  362. get: /**
  363. * Specifies options for displaying the widget.
  364. */
  365. function () {
  366. return this._getOption('showEvent');
  367. },
  368. set: function (value) {
  369. this._setOption('showEvent', value);
  370. },
  371. enumerable: true,
  372. configurable: true
  373. });
  374. Object.defineProperty(DxPopoverComponent.prototype, "showTitle", {
  375. get: /**
  376. * A Boolean value specifying whether or not to display the title in the overlay window.
  377. */
  378. function () {
  379. return this._getOption('showTitle');
  380. },
  381. set: function (value) {
  382. this._setOption('showTitle', value);
  383. },
  384. enumerable: true,
  385. configurable: true
  386. });
  387. Object.defineProperty(DxPopoverComponent.prototype, "target", {
  388. get: /**
  389. * The target element associated with the widget.
  390. */
  391. function () {
  392. return this._getOption('target');
  393. },
  394. set: function (value) {
  395. this._setOption('target', value);
  396. },
  397. enumerable: true,
  398. configurable: true
  399. });
  400. Object.defineProperty(DxPopoverComponent.prototype, "title", {
  401. get: /**
  402. * The title in the overlay window.
  403. */
  404. function () {
  405. return this._getOption('title');
  406. },
  407. set: function (value) {
  408. this._setOption('title', value);
  409. },
  410. enumerable: true,
  411. configurable: true
  412. });
  413. Object.defineProperty(DxPopoverComponent.prototype, "titleTemplate", {
  414. get: /**
  415. * Specifies a custom template for the widget title. Does not apply if the title is defined.
  416. */
  417. function () {
  418. return this._getOption('titleTemplate');
  419. },
  420. set: function (value) {
  421. this._setOption('titleTemplate', value);
  422. },
  423. enumerable: true,
  424. configurable: true
  425. });
  426. Object.defineProperty(DxPopoverComponent.prototype, "toolbarItems", {
  427. get: /**
  428. * Configures toolbar items.
  429. */
  430. function () {
  431. return this._getOption('toolbarItems');
  432. },
  433. set: function (value) {
  434. this._setOption('toolbarItems', value);
  435. },
  436. enumerable: true,
  437. configurable: true
  438. });
  439. Object.defineProperty(DxPopoverComponent.prototype, "visible", {
  440. get: /**
  441. * A Boolean value specifying whether or not the widget is visible.
  442. */
  443. function () {
  444. return this._getOption('visible');
  445. },
  446. set: function (value) {
  447. this._setOption('visible', value);
  448. },
  449. enumerable: true,
  450. configurable: true
  451. });
  452. Object.defineProperty(DxPopoverComponent.prototype, "width", {
  453. get: /**
  454. * Specifies the widget's width.
  455. */
  456. function () {
  457. return this._getOption('width');
  458. },
  459. set: function (value) {
  460. this._setOption('width', value);
  461. },
  462. enumerable: true,
  463. configurable: true
  464. });
  465. Object.defineProperty(DxPopoverComponent.prototype, "toolbarItemsChildren", {
  466. get: function () {
  467. return this._getOption('toolbarItems');
  468. },
  469. set: function (value) {
  470. this.setChildren('toolbarItems', value);
  471. },
  472. enumerable: true,
  473. configurable: true
  474. });
  475. DxPopoverComponent.prototype._createInstance = function (element, options) {
  476. return new popover_1.default(element, options);
  477. };
  478. DxPopoverComponent.prototype.ngOnDestroy = function () {
  479. this._destroyWidget();
  480. };
  481. DxPopoverComponent.prototype.ngOnChanges = function (changes) {
  482. _super.prototype.ngOnChanges.call(this, changes);
  483. this.setupChanges('toolbarItems', changes);
  484. };
  485. DxPopoverComponent.prototype.setupChanges = function (prop, changes) {
  486. if (!(prop in this._optionsToUpdate)) {
  487. this._idh.setup(prop, changes);
  488. }
  489. };
  490. DxPopoverComponent.prototype.ngDoCheck = function () {
  491. this._idh.doCheck('toolbarItems');
  492. this._watcherHelper.checkWatchers();
  493. _super.prototype.ngDoCheck.call(this);
  494. _super.prototype.clearChangedOptions.call(this);
  495. };
  496. DxPopoverComponent.prototype._setOption = function (name, value) {
  497. var isSetup = this._idh.setupSingle(name, value);
  498. var isChanged = this._idh.getChanges(name, value) !== null;
  499. if (isSetup || isChanged) {
  500. _super.prototype._setOption.call(this, name, value);
  501. }
  502. };
  503. DxPopoverComponent.decorators = [
  504. { type: core_1.Component, args: [{
  505. selector: 'dx-popover',
  506. template: '<ng-content></ng-content>',
  507. providers: [
  508. template_host_1.DxTemplateHost,
  509. watcher_helper_1.WatcherHelper,
  510. nested_option_1.NestedOptionHost,
  511. iterable_differ_helper_1.IterableDifferHelper
  512. ]
  513. },] },
  514. ];
  515. /** @nocollapse */
  516. DxPopoverComponent.ctorParameters = function () { return [
  517. { type: core_1.ElementRef, },
  518. { type: core_1.NgZone, },
  519. { type: template_host_1.DxTemplateHost, },
  520. { type: watcher_helper_1.WatcherHelper, },
  521. { type: iterable_differ_helper_1.IterableDifferHelper, },
  522. { type: nested_option_1.NestedOptionHost, },
  523. { type: platform_browser_2.TransferState, },
  524. { type: undefined, decorators: [{ type: core_1.Inject, args: [core_1.PLATFORM_ID,] },] },
  525. ]; };
  526. DxPopoverComponent.propDecorators = {
  527. "animation": [{ type: core_1.Input },],
  528. "closeOnOutsideClick": [{ type: core_1.Input },],
  529. "container": [{ type: core_1.Input },],
  530. "contentTemplate": [{ type: core_1.Input },],
  531. "deferRendering": [{ type: core_1.Input },],
  532. "disabled": [{ type: core_1.Input },],
  533. "elementAttr": [{ type: core_1.Input },],
  534. "height": [{ type: core_1.Input },],
  535. "hideEvent": [{ type: core_1.Input },],
  536. "hint": [{ type: core_1.Input },],
  537. "hoverStateEnabled": [{ type: core_1.Input },],
  538. "maxHeight": [{ type: core_1.Input },],
  539. "maxWidth": [{ type: core_1.Input },],
  540. "minHeight": [{ type: core_1.Input },],
  541. "minWidth": [{ type: core_1.Input },],
  542. "position": [{ type: core_1.Input },],
  543. "rtlEnabled": [{ type: core_1.Input },],
  544. "shading": [{ type: core_1.Input },],
  545. "shadingColor": [{ type: core_1.Input },],
  546. "showCloseButton": [{ type: core_1.Input },],
  547. "showEvent": [{ type: core_1.Input },],
  548. "showTitle": [{ type: core_1.Input },],
  549. "target": [{ type: core_1.Input },],
  550. "title": [{ type: core_1.Input },],
  551. "titleTemplate": [{ type: core_1.Input },],
  552. "toolbarItems": [{ type: core_1.Input },],
  553. "visible": [{ type: core_1.Input },],
  554. "width": [{ type: core_1.Input },],
  555. "onContentReady": [{ type: core_1.Output },],
  556. "onDisposing": [{ type: core_1.Output },],
  557. "onHidden": [{ type: core_1.Output },],
  558. "onHiding": [{ type: core_1.Output },],
  559. "onInitialized": [{ type: core_1.Output },],
  560. "onOptionChanged": [{ type: core_1.Output },],
  561. "onShowing": [{ type: core_1.Output },],
  562. "onShown": [{ type: core_1.Output },],
  563. "onTitleRendered": [{ type: core_1.Output },],
  564. "animationChange": [{ type: core_1.Output },],
  565. "closeOnOutsideClickChange": [{ type: core_1.Output },],
  566. "containerChange": [{ type: core_1.Output },],
  567. "contentTemplateChange": [{ type: core_1.Output },],
  568. "deferRenderingChange": [{ type: core_1.Output },],
  569. "disabledChange": [{ type: core_1.Output },],
  570. "elementAttrChange": [{ type: core_1.Output },],
  571. "heightChange": [{ type: core_1.Output },],
  572. "hideEventChange": [{ type: core_1.Output },],
  573. "hintChange": [{ type: core_1.Output },],
  574. "hoverStateEnabledChange": [{ type: core_1.Output },],
  575. "maxHeightChange": [{ type: core_1.Output },],
  576. "maxWidthChange": [{ type: core_1.Output },],
  577. "minHeightChange": [{ type: core_1.Output },],
  578. "minWidthChange": [{ type: core_1.Output },],
  579. "positionChange": [{ type: core_1.Output },],
  580. "rtlEnabledChange": [{ type: core_1.Output },],
  581. "shadingChange": [{ type: core_1.Output },],
  582. "shadingColorChange": [{ type: core_1.Output },],
  583. "showCloseButtonChange": [{ type: core_1.Output },],
  584. "showEventChange": [{ type: core_1.Output },],
  585. "showTitleChange": [{ type: core_1.Output },],
  586. "targetChange": [{ type: core_1.Output },],
  587. "titleChange": [{ type: core_1.Output },],
  588. "titleTemplateChange": [{ type: core_1.Output },],
  589. "toolbarItemsChange": [{ type: core_1.Output },],
  590. "visibleChange": [{ type: core_1.Output },],
  591. "widthChange": [{ type: core_1.Output },],
  592. "toolbarItemsChildren": [{ type: core_1.ContentChildren, args: [toolbar_item_dxi_2.DxiToolbarItemComponent,] },],
  593. };
  594. return DxPopoverComponent;
  595. }(component_1.DxComponent));
  596. exports.DxPopoverComponent = DxPopoverComponent;
  597. var DxPopoverModule = (function () {
  598. function DxPopoverModule() {
  599. }
  600. DxPopoverModule.decorators = [
  601. { type: core_1.NgModule, args: [{
  602. imports: [
  603. animation_1.DxoAnimationModule,
  604. hide_1.DxoHideModule,
  605. show_1.DxoShowModule,
  606. hide_event_1.DxoHideEventModule,
  607. position_1.DxoPositionModule,
  608. at_1.DxoAtModule,
  609. boundary_offset_1.DxoBoundaryOffsetModule,
  610. collision_1.DxoCollisionModule,
  611. my_1.DxoMyModule,
  612. offset_1.DxoOffsetModule,
  613. show_event_1.DxoShowEventModule,
  614. toolbar_item_dxi_1.DxiToolbarItemModule,
  615. integration_1.DxIntegrationModule,
  616. template_1.DxTemplateModule,
  617. platform_browser_1.BrowserTransferStateModule
  618. ],
  619. declarations: [
  620. DxPopoverComponent
  621. ],
  622. exports: [
  623. DxPopoverComponent,
  624. animation_1.DxoAnimationModule,
  625. hide_1.DxoHideModule,
  626. show_1.DxoShowModule,
  627. hide_event_1.DxoHideEventModule,
  628. position_1.DxoPositionModule,
  629. at_1.DxoAtModule,
  630. boundary_offset_1.DxoBoundaryOffsetModule,
  631. collision_1.DxoCollisionModule,
  632. my_1.DxoMyModule,
  633. offset_1.DxoOffsetModule,
  634. show_event_1.DxoShowEventModule,
  635. toolbar_item_dxi_1.DxiToolbarItemModule,
  636. template_1.DxTemplateModule
  637. ]
  638. },] },
  639. ];
  640. return DxPopoverModule;
  641. }());
  642. exports.DxPopoverModule = DxPopoverModule;
  643. //# sourceMappingURL=popover.js.map