Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

LargeContainer.js 748B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /**
  2. * Base class for all Large containers which we can show.
  3. */
  4. export default class LargeContainer {
  5. /**
  6. * Show this container.
  7. * @returns Promise
  8. */
  9. show () {
  10. }
  11. /**
  12. * Hide this container.
  13. * @returns Promise
  14. */
  15. hide () {
  16. }
  17. /**
  18. * Resize this container.
  19. * @param {number} containerWidth available width
  20. * @param {number} containerHeight available height
  21. * @param {boolean} animate if container should animate it's resize process
  22. */
  23. resize (containerWidth, containerHeight, animate) {
  24. }
  25. /**
  26. * Handler for "hover in" events.
  27. */
  28. onHoverIn (e) {
  29. }
  30. /**
  31. * Handler for "hover out" events.
  32. */
  33. onHoverOut (e) {
  34. }
  35. }