123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- 'use strict';
- /**
- * Licensed Materials - Property of IBM
- * IBM Cognos Products: Storytelling (C) Copyright IBM Corp. 2018
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- define(['baglass/core-client/js/core-client/utils/UniqueId'], function (UniqueId) {
- return {
- get: function get() {
- var _widgets;
- var multi1Id = UniqueId.get('multi1_');
- var multi2Id = UniqueId.get('multi2_');
- var multi3Id = UniqueId.get('multi3_');
- var multi4Id = UniqueId.get('multi4_');
- var multi5Id = UniqueId.get('multi5_');
- return {
- layout: {
- type: 'container',
- templateName: 'Template1',
- items: [{
- type: 'genericPage',
- layoutPositioning: 'relative',
- css: 'templateBox aspectRatio_default',
- items: [{
- type: 'templateIndicator',
- style: {
- 'top': '0%',
- 'left': '0%',
- 'right': '0%',
- 'bottom': '0%'
- }
- }, {
- id: multi1Id,
- type: 'widget',
- style: {
- width: '24.50%',
- height: '32.12%',
- top: '1.82%',
- left: '1.00%'
- }
- }, {
- id: multi2Id,
- type: 'widget',
- style: {
- width: '24.50%',
- height: '32.12%',
- top: '1.82%',
- left: '25.50%'
- }
- }, {
- id: multi3Id,
- type: 'widget',
- style: {
- width: '24.50%',
- height: '32.12%',
- top: '1.82%',
- left: '50.00%'
- }
- }, {
- id: multi4Id,
- type: 'widget',
- style: {
- width: '24.50%',
- height: '32.12%',
- top: '1.82%',
- left: '74.50%'
- }
- }, {
- id: multi5Id,
- type: 'widget',
- style: {
- width: '98.00%',
- height: '64.24%',
- top: '33.94%',
- left: '1.00%'
- }
- }]
- }]
- },
- widgets: (_widgets = {}, _widgets[multi1Id] = {
- id: multi1Id,
- type: 'multipurpose'
- }, _widgets[multi2Id] = {
- id: multi2Id,
- type: 'multipurpose'
- }, _widgets[multi3Id] = {
- id: multi3Id,
- type: 'multipurpose'
- }, _widgets[multi4Id] = {
- id: multi4Id,
- type: 'multipurpose'
- }, _widgets[multi5Id] = {
- id: multi5Id,
- type: 'multipurpose'
- }, _widgets)
- };
- }
- };
- });
- //# sourceMappingURL=SceneLayout11.js.map
|