VisExpandModeAPI.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. "use strict";
  2. function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
  3. /*
  4. * Licensed Materials - Property of IBM
  5. * IBM Business Analytics (C) Copyright IBM Corp. 2019
  6. * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. */
  8. /**
  9. * @class VisExpandModeAPI
  10. * @hideconstructor
  11. * @classdesc API class that is used to get content for focus mode
  12. */
  13. define([], function () {
  14. var VisExpandModeAPI = function () {
  15. function VisExpandModeAPI() {
  16. _classCallCheck(this, VisExpandModeAPI);
  17. }
  18. /**
  19. * @function VisExpandModeAPI#renderExpandedModeContent
  20. * @description get the expand mode content for a given container
  21. * @param {DomNode} containerNode - the container node
  22. */
  23. VisExpandModeAPI.prototype.renderExpandedModeContent = function renderExpandedModeContent() {};
  24. /**
  25. * @function VisExpandModeAPI#restore
  26. * @description restore to pre-expanded mode
  27. */
  28. VisExpandModeAPI.prototype.restore = function restore() {};
  29. return VisExpandModeAPI;
  30. }();
  31. return VisExpandModeAPI;
  32. });
  33. //# sourceMappingURL=VisExpandModeAPI.js.map