1234567891011121314151617
  1. import { OverlayProxy } from '../../navigation/overlay-proxy';
  2. import { PopoverImpl } from './popover-impl';
  3. /**
  4. * @hidden
  5. */
  6. export class Popover extends OverlayProxy {
  7. constructor(app, component, data, opts = {}, config, deepLinker) {
  8. super(app, component, config, deepLinker);
  9. this.data = data;
  10. this.opts = opts;
  11. this.isOverlay = true;
  12. }
  13. getImplementation() {
  14. return new PopoverImpl(this._app, this._component, this.data, this.opts, this._config);
  15. }
  16. }
  17. //# sourceMappingURL=popover.js.map