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.
 
 
 
 

38 lines
740 B

  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = void 0;
  6. var initialState = {
  7. animating: false,
  8. autoplaying: null,
  9. currentDirection: 0,
  10. currentLeft: null,
  11. currentSlide: 0,
  12. direction: 1,
  13. dragging: false,
  14. edgeDragged: false,
  15. initialized: false,
  16. lazyLoadedList: [],
  17. listHeight: null,
  18. listWidth: null,
  19. scrolling: false,
  20. slideCount: null,
  21. slideHeight: null,
  22. slideWidth: null,
  23. swipeLeft: null,
  24. swiped: false,
  25. // used by swipeEvent. differentites between touch and swipe.
  26. swiping: false,
  27. touchObject: {
  28. startX: 0,
  29. startY: 0,
  30. curX: 0,
  31. curY: 0
  32. },
  33. trackStyle: {},
  34. trackWidth: 0
  35. };
  36. var _default = initialState;
  37. exports.default = _default;