initial-state.js 694 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. swiping: false,
  26. touchObject: {
  27. startX: 0,
  28. startY: 0,
  29. curX: 0,
  30. curY: 0
  31. },
  32. trackStyle: {},
  33. trackWidth: 0,
  34. targetSlide: 0
  35. };
  36. var _default = initialState;
  37. exports.default = _default;