You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

constants.ts 672B

123456789101112131415161718192021222324
  1. /**
  2. * An enumeration of the different display layouts supported by the application.
  3. *
  4. * @type {Object}
  5. */
  6. export const LAYOUTS = {
  7. HORIZONTAL_FILMSTRIP_VIEW: 'horizontal-filmstrip-view',
  8. TILE_VIEW: 'tile-view',
  9. VERTICAL_FILMSTRIP_VIEW: 'vertical-filmstrip-view',
  10. STAGE_FILMSTRIP_VIEW: 'stage-filmstrip-view'
  11. };
  12. /**
  13. * The CSS class to apply so CSS can modify the app layout.
  14. *
  15. * @private
  16. */
  17. export const LAYOUT_CLASSNAMES = {
  18. [LAYOUTS.HORIZONTAL_FILMSTRIP_VIEW]: 'horizontal-filmstrip',
  19. [LAYOUTS.TILE_VIEW]: 'tile-view',
  20. [LAYOUTS.VERTICAL_FILMSTRIP_VIEW]: 'vertical-filmstrip',
  21. [LAYOUTS.STAGE_FILMSTRIP_VIEW]: 'stage-filmstrip'
  22. };