123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- 'use strict';
- /**
- * Licensed Materials - Property of IBM
- * IBM Cognos Products: Storytelling (C) Copyright IBM Corp. 2018, 2019
- * 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 text1Id = UniqueId.get('text1_');
- var vis1Id = UniqueId.get('vis1_');
- 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: text1Id,
- type: 'widget',
- style: {
- width: '30.00%',
- height: '96.36%',
- top: '1.82%',
- left: '1.00%'
- }
- }, {
- id: vis1Id,
- type: 'widget',
- style: {
- width: '67.00%',
- height: '96.36%',
- top: '1.82%',
- left: '32.00%'
- }
- }]
- }]
- },
- widgets: (_widgets = {}, _widgets[text1Id] = {
- id: text1Id,
- type: 'text',
- placeholder: {
- iconType: 'list'
- },
- content: '<div class="staticContent"><span class="textFitted responsiveColor responsiveFontSize responsiveFontFamily"><ul><li><br></li></ul></span></div>',
- name: '',
- defaults: {
- fontSize: '20'
- }
- }, _widgets[vis1Id] = {
- id: vis1Id,
- type: 'multipurpose',
- placeholder: {
- iconType: 'vis'
- }
- }, _widgets)
- };
- }
- };
- });
- //# sourceMappingURL=SceneLayout5.js.map
|