TabLayout.js 713 B

123456789101112131415161718192021222324252627282930313233
  1. 'use strict';
  2. /**
  3. * Licensed Materials - Property of IBM
  4. * IBM Cognos Products: BI Cloud (C) Copyright IBM Corp. 2017
  5. * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  6. */
  7. define(['../../app/nls/StringResources'], function (stringResources) {
  8. return {
  9. layout: {
  10. type: 'tab',
  11. layoutPositioning: 'relative',
  12. items: [{
  13. type: 'absolute',
  14. title: stringResources.get('defaultTabTitle', {
  15. index: 1
  16. })
  17. }],
  18. style: {
  19. height: '100%'
  20. },
  21. pageSize: {
  22. width: 1280,
  23. height: 720
  24. },
  25. showGrid: true,
  26. snapGrid: true,
  27. snapObjects: true
  28. }
  29. };
  30. });
  31. //# sourceMappingURL=TabLayout.js.map