SceneLayout4.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. 'use strict';
  2. /**
  3. * Licensed Materials - Property of IBM
  4. * IBM Cognos Products: Storytelling (C) Copyright IBM Corp. 2018
  5. * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  6. */
  7. define(['baglass/core-client/js/core-client/utils/UniqueId'], function (UniqueId) {
  8. return {
  9. get: function get() {
  10. var _widgets;
  11. var multi1Id = UniqueId.get('multi1_');
  12. return {
  13. layout: {
  14. type: 'container',
  15. templateName: 'Template1',
  16. items: [{
  17. type: 'genericPage',
  18. layoutPositioning: 'relative',
  19. css: 'templateBox aspectRatio_default',
  20. items: [{
  21. type: 'templateIndicator',
  22. style: {
  23. 'top': '0%',
  24. 'left': '0%',
  25. 'right': '0%',
  26. 'bottom': '0%'
  27. }
  28. }, {
  29. id: multi1Id,
  30. type: 'widget',
  31. style: {
  32. width: '98.00%',
  33. height: '96.36%',
  34. top: '1.82%',
  35. left: '1.00%'
  36. }
  37. }]
  38. }]
  39. },
  40. widgets: (_widgets = {}, _widgets[multi1Id] = {
  41. id: multi1Id,
  42. type: 'multipurpose'
  43. }, _widgets)
  44. };
  45. }
  46. };
  47. });
  48. //# sourceMappingURL=SceneLayout4.js.map