@dotss/tictoccroc 0.0.0 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (159) hide show
  1. package/dist/LessonNotesSection-a2QNdQtj.js +196 -0
  2. package/dist/index.d.ts +1 -0
  3. package/dist/index.mjs +109 -52
  4. package/dist/shared/components/Calendar/Calendar.d.ts +3 -2
  5. package/dist/shared/components/Calendar/Calendar.mjs +1 -1
  6. package/dist/shared/components/Carousel/Carousel.d.ts +1 -1
  7. package/dist/shared/components/Carousel/Carousel.mjs +13 -13
  8. package/dist/shared/components/Carousel/CarouselSlide/CarouselSlide.d.ts +1 -1
  9. package/dist/shared/components/Carousel/CarouselSlide/CarouselSlide.mjs +1 -1
  10. package/dist/shared/components/Image/Image.d.ts +1 -1
  11. package/dist/shared/components/Image/Image.mjs +94 -93
  12. package/dist/shared/components/ImageZoomDialog/ImageBlock/ImageBlock.mjs +12 -26
  13. package/dist/shared/components/ImageZoomDialog/ImageZoomDialog.mjs +77 -98
  14. package/dist/shared/components/ImageZoomDialog/ImageZoomDialogContent/ImageZoomDialogContent.mjs +4 -4
  15. package/dist/shared/components/ImageZoomDialog/ImageZoomDialogFooter/ImageZoomDialogFooter.mjs +4 -4
  16. package/dist/shared/components/ImageZoomDialog/ImageZoomDialogToolbar/ImageZoomDialogToolbar.mjs +1 -1
  17. package/dist/shared/components/LoadingAnnouncer/LoadingAnnouncer.d.ts +7 -0
  18. package/dist/shared/components/LoadingAnnouncer/LoadingAnnouncer.mjs +19 -0
  19. package/dist/shared/components/LoadingAnnouncer/index.d.ts +3 -0
  20. package/dist/shared/components/LoadingAnnouncer/index.mjs +4 -0
  21. package/dist/shared/components/Masonry/Masonry.d.ts +12 -0
  22. package/dist/shared/components/Masonry/Masonry.mjs +220 -0
  23. package/dist/shared/components/Masonry/Masonry.utils.d.ts +7 -0
  24. package/dist/shared/components/Masonry/Masonry.utils.mjs +76 -0
  25. package/dist/shared/components/Masonry/MasonryBlock/MasonryBlock.d.ts +11 -0
  26. package/dist/shared/components/Masonry/MasonryBlock/MasonryBlock.mjs +77 -0
  27. package/dist/shared/components/Masonry/MasonryBlock/index.d.ts +3 -0
  28. package/dist/shared/components/Masonry/MasonryBlock/index.mjs +4 -0
  29. package/dist/shared/components/Masonry/index.d.ts +4 -0
  30. package/dist/shared/components/Masonry/index.mjs +6 -0
  31. package/dist/shared/components/Roller/Roller.d.ts +1 -2
  32. package/dist/shared/components/Roller/Roller.mjs +7 -120
  33. package/dist/shared/components/Roller/RollerBlock/RollerBlock.d.ts +1 -1
  34. package/dist/shared/components/Roller/RollerBlock/RollerBlock.mjs +1 -1
  35. package/dist/shared/components/Roller/index.mjs +3 -3
  36. package/dist/shared/components/Scheduler/ScheduleBlock/ScheduleBlock.d.ts +2 -5
  37. package/dist/shared/components/Scheduler/ScheduleBlock/ScheduleBlock.mjs +1 -1
  38. package/dist/shared/components/Scheduler/ScheduleEvent/ScheduleEvent.d.ts +1 -1
  39. package/dist/shared/components/Scheduler/ScheduleEvent/ScheduleEvent.mjs +2 -2
  40. package/dist/shared/components/Scheduler/Scheduler.d.ts +4 -4
  41. package/dist/shared/components/Scheduler/Scheduler.mjs +167 -178
  42. package/dist/shared/components/Swiper/Swiper.d.ts +1 -1
  43. package/dist/shared/components/Swiper/Swiper.mjs +77 -97
  44. package/dist/shared/components/Swiper/SwiperBlock/SwiperBlock.d.ts +1 -1
  45. package/dist/shared/components/Swiper/SwiperBlock/SwiperBlock.mjs +1 -1
  46. package/dist/shared/components/TimePicker/TimePicker.d.ts +2 -2
  47. package/dist/shared/components/TimePicker/TimePicker.mjs +1 -1
  48. package/dist/shared/components/index.d.ts +14 -1
  49. package/dist/shared/components/index.mjs +40 -28
  50. package/dist/shared/utils/birthDateToAge/birthDateToAge.test.mjs +9 -10
  51. package/dist/shared/utils/getDateRange/getDateRange.d.ts +1 -1
  52. package/dist/shared/utils/getDateRange/getDateRange.test.mjs +27 -28
  53. package/dist/shared/utils/getImageUrl/getImageUrl.test.mjs +19 -20
  54. package/dist/shared/utils/getTimeRange/getTimeRange.test.mjs +22 -23
  55. package/dist/shared/utils/getVimeoId/getVimeoId.test.mjs +11 -12
  56. package/dist/shared/utils/index.d.ts +1 -0
  57. package/dist/shared/utils/index.mjs +6 -4
  58. package/dist/shared/utils/isAndroid/isAndroid.test.mjs +9 -10
  59. package/dist/shared/utils/isApp/isApp.test.mjs +14 -15
  60. package/dist/shared/utils/isDesktop/isDesktop.test.mjs +8 -9
  61. package/dist/shared/utils/isServer/isServer.test.mjs +10 -11
  62. package/dist/shared/utils/objectToQueryString/objectToQueryString.test.mjs +7 -7
  63. package/dist/shared/utils/parseQueryString/parseQueryString.test.mjs +10 -11
  64. package/dist/shared/utils/share/index.d.ts +2 -0
  65. package/dist/shared/utils/share/index.mjs +4 -0
  66. package/dist/shared/utils/share/share.d.ts +9 -0
  67. package/dist/shared/utils/share/share.mjs +15 -0
  68. package/dist/shared/utils/share/share.test.d.ts +1 -0
  69. package/dist/shared/utils/share/share.test.mjs +31 -0
  70. package/dist/teacher/profile/components/AbilityCollection/AbilityBadge/AbilityBadge.d.ts +15 -0
  71. package/dist/teacher/profile/components/AbilityCollection/AbilityBadge/AbilityBadge.mjs +441 -0
  72. package/dist/teacher/profile/components/AbilityCollection/AbilityBadge/index.d.ts +3 -0
  73. package/dist/teacher/profile/components/AbilityCollection/AbilityBadge/index.mjs +5 -0
  74. package/dist/teacher/profile/components/AbilityCollection/AbilityCollection.d.ts +6 -0
  75. package/dist/teacher/profile/components/AbilityCollection/AbilityCollection.mjs +111 -0
  76. package/dist/teacher/profile/components/AbilityCollection/AbilityCollection.utils.d.ts +6 -0
  77. package/dist/teacher/profile/components/AbilityCollection/AbilityCollection.utils.mjs +43 -0
  78. package/dist/teacher/profile/components/AbilityCollection/index.d.ts +5 -0
  79. package/dist/teacher/profile/components/AbilityCollection/index.mjs +8 -0
  80. package/dist/teacher/profile/components/ActivityGallery/ActivityGallery.d.ts +11 -0
  81. package/dist/teacher/profile/components/ActivityGallery/ActivityGallery.mjs +101 -0
  82. package/dist/teacher/profile/components/ActivityGallery/ActivityGalleryItem/ActivityGalleryItem.d.ts +8 -0
  83. package/dist/teacher/profile/components/ActivityGallery/ActivityGalleryItem/ActivityGalleryItem.mjs +124 -0
  84. package/dist/teacher/profile/components/ActivityGallery/ActivityGalleryItem/index.d.ts +3 -0
  85. package/dist/teacher/profile/components/ActivityGallery/ActivityGalleryItem/index.mjs +4 -0
  86. package/dist/teacher/profile/components/ActivityGallery/index.d.ts +4 -0
  87. package/dist/teacher/profile/components/ActivityGallery/index.mjs +6 -0
  88. package/dist/teacher/profile/components/AvailableScheduleSection/AvailableScheduleSection.d.ts +22 -0
  89. package/dist/teacher/profile/components/AvailableScheduleSection/AvailableScheduleSection.mjs +179 -0
  90. package/dist/teacher/profile/components/AvailableScheduleSection/index.d.ts +3 -0
  91. package/dist/teacher/profile/components/AvailableScheduleSection/index.mjs +4 -0
  92. package/dist/teacher/profile/components/CareerSection/CareerItem/CareerItem.d.ts +10 -0
  93. package/dist/teacher/profile/components/CareerSection/CareerItem/CareerItem.mjs +136 -0
  94. package/dist/teacher/profile/components/CareerSection/CareerItem/index.d.ts +3 -0
  95. package/dist/teacher/profile/components/CareerSection/CareerItem/index.mjs +4 -0
  96. package/dist/teacher/profile/components/CareerSection/CareerSection.d.ts +9 -0
  97. package/dist/teacher/profile/components/CareerSection/CareerSection.mjs +185 -0
  98. package/dist/teacher/profile/components/CareerSection/index.d.ts +4 -0
  99. package/dist/teacher/profile/components/CareerSection/index.mjs +6 -0
  100. package/dist/teacher/profile/components/CertificationSection/CertificationItem/CertificationItem.d.ts +8 -0
  101. package/dist/teacher/profile/components/CertificationSection/CertificationItem/CertificationItem.mjs +91 -0
  102. package/dist/teacher/profile/components/CertificationSection/CertificationItem/index.d.ts +3 -0
  103. package/dist/teacher/profile/components/CertificationSection/CertificationItem/index.mjs +4 -0
  104. package/dist/teacher/profile/components/CertificationSection/CertificationSection.d.ts +9 -0
  105. package/dist/teacher/profile/components/CertificationSection/CertificationSection.mjs +152 -0
  106. package/dist/teacher/profile/components/CertificationSection/index.d.ts +4 -0
  107. package/dist/teacher/profile/components/CertificationSection/index.mjs +6 -0
  108. package/dist/teacher/profile/components/EducationSection/EducationItem/EducationItem.d.ts +9 -0
  109. package/dist/teacher/profile/components/EducationSection/EducationItem/EducationItem.mjs +105 -0
  110. package/dist/teacher/profile/components/EducationSection/EducationItem/index.d.ts +3 -0
  111. package/dist/teacher/profile/components/EducationSection/EducationItem/index.mjs +4 -0
  112. package/dist/teacher/profile/components/EducationSection/EducationSection.d.ts +9 -0
  113. package/dist/teacher/profile/components/EducationSection/EducationSection.mjs +152 -0
  114. package/dist/teacher/profile/components/EducationSection/index.d.ts +4 -0
  115. package/dist/teacher/profile/components/EducationSection/index.mjs +6 -0
  116. package/dist/teacher/profile/components/LessonNotesSection/LessonNote/LessonNote.d.ts +9 -0
  117. package/dist/teacher/profile/components/LessonNotesSection/LessonNote/LessonNote.mjs +54 -0
  118. package/dist/teacher/profile/components/LessonNotesSection/LessonNote/index.d.ts +3 -0
  119. package/dist/teacher/profile/components/LessonNotesSection/LessonNote/index.mjs +4 -0
  120. package/dist/teacher/profile/components/LessonNotesSection/LessonNotesSection.d.ts +7 -0
  121. package/dist/teacher/profile/components/LessonNotesSection/LessonNotesSection.mjs +8 -0
  122. package/dist/teacher/profile/components/LessonNotesSection/LessonNotesSection.utils.d.ts +4 -0
  123. package/dist/teacher/profile/components/LessonNotesSection/LessonNotesSection.utils.mjs +13 -0
  124. package/dist/teacher/profile/components/LessonNotesSection/index.d.ts +4 -0
  125. package/dist/teacher/profile/components/LessonNotesSection/index.mjs +6 -0
  126. package/dist/teacher/profile/components/ParentReviewSection/ParentReviewCard/ParentReviewCard.d.ts +10 -0
  127. package/dist/teacher/profile/components/ParentReviewSection/ParentReviewCard/ParentReviewCard.mjs +103 -0
  128. package/dist/teacher/profile/components/ParentReviewSection/ParentReviewCard/index.d.ts +3 -0
  129. package/dist/teacher/profile/components/ParentReviewSection/ParentReviewCard/index.mjs +4 -0
  130. package/dist/teacher/profile/components/ParentReviewSection/ParentReviewSection.d.ts +7 -0
  131. package/dist/teacher/profile/components/ParentReviewSection/ParentReviewSection.mjs +79 -0
  132. package/dist/teacher/profile/components/ParentReviewSection/ParentReviewSection.utils.d.ts +4 -0
  133. package/dist/teacher/profile/components/ParentReviewSection/ParentReviewSection.utils.mjs +13 -0
  134. package/dist/teacher/profile/components/ParentReviewSection/index.d.ts +4 -0
  135. package/dist/teacher/profile/components/ParentReviewSection/index.mjs +6 -0
  136. package/dist/teacher/profile/components/PreferredActivityKeywordGroup/PreferredActivityKeywordGroup.d.ts +9 -0
  137. package/dist/teacher/profile/components/PreferredActivityKeywordGroup/PreferredActivityKeywordGroup.mjs +37 -0
  138. package/dist/teacher/profile/components/PreferredActivityKeywordGroup/index.d.ts +3 -0
  139. package/dist/teacher/profile/components/PreferredActivityKeywordGroup/index.mjs +4 -0
  140. package/dist/teacher/profile/components/PreferredAgeGroup/PreferredAgeGroup.d.ts +8 -0
  141. package/dist/teacher/profile/components/PreferredAgeGroup/PreferredAgeGroup.mjs +32 -0
  142. package/dist/teacher/profile/components/PreferredAgeGroup/PreferredAgeGroup.utils.d.ts +18 -0
  143. package/dist/teacher/profile/components/PreferredAgeGroup/PreferredAgeGroup.utils.mjs +14 -0
  144. package/dist/teacher/profile/components/PreferredAgeGroup/index.d.ts +4 -0
  145. package/dist/teacher/profile/components/PreferredAgeGroup/index.mjs +6 -0
  146. package/dist/teacher/profile/components/ProfileSummary/ProfileSummary.d.ts +25 -1
  147. package/dist/teacher/profile/components/ProfileSummary/ProfileSummary.mjs +413 -5
  148. package/dist/teacher/profile/components/ProfileSummary/index.d.ts +2 -1
  149. package/dist/teacher/profile/components/StatBadgeCollection/StatBadge/StatBadge.d.ts +7 -0
  150. package/dist/teacher/profile/components/StatBadgeCollection/StatBadge/StatBadge.mjs +105 -0
  151. package/dist/teacher/profile/components/StatBadgeCollection/StatBadge/index.d.ts +3 -0
  152. package/dist/teacher/profile/components/StatBadgeCollection/StatBadge/index.mjs +4 -0
  153. package/dist/teacher/profile/components/StatBadgeCollection/StatBadgeCollection.d.ts +6 -0
  154. package/dist/teacher/profile/components/StatBadgeCollection/StatBadgeCollection.mjs +28 -0
  155. package/dist/teacher/profile/components/StatBadgeCollection/index.d.ts +4 -0
  156. package/dist/teacher/profile/components/StatBadgeCollection/index.mjs +6 -0
  157. package/dist/teacher/profile/components/index.d.ts +24 -0
  158. package/dist/teacher/profile/components/index.mjs +46 -0
  159. package/package.json +2 -2
@@ -1,31 +1,31 @@
1
1
  import { jsxs as D, jsx as m } from "react/jsx-runtime";
2
- import { useState as X, useRef as u, Children as be, isValidElement as ye, useEffect as j, cloneElement as le } from "react";
3
- import { Flexbox as h, Box as ue, Typography as B } from "@thedotscorp/ui";
4
- import $e from "@thedotscorp/ui/core/useTheme";
5
- import w from "dayjs";
6
- import ke from "./ScheduleEvent/ScheduleEvent.mjs";
7
- import { generateWeek as Q, getDayScheduleEvents as Se, resolvePositionedScheduleEventsForDate as Ee, getMinutesFromMidnight as de } from "./Scheduler.utils.mjs";
8
- const A = Array.from({ length: 34 }).map((Z, N) => {
9
- const b = Math.floor((N + 14) / 2) % 24, E = (N + 14) % 2 === 0 ? "00" : "30", M = w().hour(b).minute(parseInt(E)), R = w(), K = R.hour(), y = R.minute(), F = K === b && (y < 30 && E === "00" || y >= 30 && E === "30");
2
+ import { useState as j, useRef as d, Children as $e, isValidElement as ke, useEffect as N, cloneElement as de } from "react";
3
+ import { Flexbox as h, Box as fe, Typography as C } from "@dotss/ui";
4
+ import Ee from "@dotss/ui/core/useTheme";
5
+ import v from "dayjs";
6
+ import Se from "./ScheduleEvent/ScheduleEvent.mjs";
7
+ import { generateWeek as Q, getDayScheduleEvents as Le, resolvePositionedScheduleEventsForDate as Re, getMinutesFromMidnight as me } from "./Scheduler.utils.mjs";
8
+ const R = Array.from({ length: 34 }).map((Z, W) => {
9
+ const y = Math.floor((W + 14) / 2) % 24, $ = (W + 14) % 2 === 0 ? "00" : "30", T = v().hour(y).minute(parseInt($)), M = v(), B = M.hour(), k = M.minute(), A = B === y && (k < 30 && $ === "00" || k >= 30 && $ === "30");
10
10
  return {
11
- time: M.format("HH:mm"),
12
- label: M.format("A h시 m분"),
13
- isCurrentTime: F
11
+ time: T.format("HH:mm"),
12
+ label: T.format("A h시 m분"),
13
+ isCurrentTime: A
14
14
  };
15
15
  });
16
- function Ce({
16
+ function Te({
17
17
  children: Z,
18
- date: N = w(),
19
- legend: b,
20
- containerRef: E,
21
- renderScheduleBlock: M,
22
- onDateChange: R,
23
- ...K
18
+ date: W = v(),
19
+ legend: y,
20
+ minScheduleBlockHeight: $ = 20,
21
+ renderScheduleBlock: T,
22
+ onDateChange: M,
23
+ ...B
24
24
  }) {
25
25
  const {
26
- palette: { grey: y }
27
- } = $e(), [F, x] = X(N.startOf("week")), [H, fe] = X(20), [T, g] = X(0), [Y, $] = X(0), [me, he] = X(""), O = u(null), pe = u(null), G = u(null), ee = u(0), te = u(0), z = u(!1), I = u(!1), C = u(!1), W = u(0), re = u(0), ne = u(0), oe = u(0), V = u(!1), L = u(null), P = u(0), U = u(0), k = u(0), p = u(null), _ = be.toArray(Z).filter(ye).map((e) => {
28
- if (e.type === ke) {
26
+ palette: { grey: k }
27
+ } = Ee(), [A, F] = j(W.startOf("week")), [H, he] = j(20), [Y, w] = j(0), [z, E] = j(0), [pe, ve] = j(""), O = d(null), ee = d(null), te = d(null), G = d(null), re = d(0), ne = d(0), I = d(!1), X = d(!1), q = d(!1), U = d(0), oe = d(0), ae = d(0), se = d(0), V = d(!1), L = d(null), K = d(0), P = d(0), S = d(0), p = d(null), _ = $e.toArray(Z).filter(ke).map((e) => {
28
+ if (e.type === Se) {
29
29
  const { startDate: n, endDate: a } = e.props;
30
30
  return {
31
31
  startDate: n,
@@ -34,38 +34,38 @@ function Ce({
34
34
  };
35
35
  }
36
36
  return null;
37
- }).filter(Boolean), ae = [
38
- Q(F.subtract(1, "week"), _),
39
- Q(F, _),
40
- Q(F.add(1, "week"), _)
41
- ], se = (e, n) => (a) => {
37
+ }).filter(Boolean), ie = [
38
+ Q(A.subtract(1, "week"), _),
39
+ Q(A, _),
40
+ Q(A.add(1, "week"), _)
41
+ ], ce = (e, n) => (a) => {
42
42
  const o = Number(a.currentTarget.dataset.row), i = Number(a.currentTarget.dataset.col);
43
- g(o), $(i), he(`${e.format("dddd")} ${e.format("D")}일 ${n}`);
44
- }, ie = (e) => {
45
- var v, S;
43
+ w(o), E(i), ve(`${e.format("dddd")} ${e.format("D")}일 ${n}`);
44
+ }, le = (e) => {
45
+ var g, b;
46
46
  const n = Number(e.currentTarget.dataset.row), a = Number(e.currentTarget.dataset.col);
47
47
  let o = n, i = a;
48
48
  switch (e.key) {
49
49
  case "ArrowUp": {
50
- e.preventDefault(), n === 0 && (a - 1 < 0 ? (x((t) => t.add(-1, "week")), g(A.length - 1), $(6), k.current = requestAnimationFrame(() => {
50
+ e.preventDefault(), n === 0 && (a - 1 < 0 ? (F((t) => t.add(-1, "week")), w(R.length - 1), E(6), S.current = requestAnimationFrame(() => {
51
51
  var t, r;
52
52
  (r = (t = p.current) == null ? void 0 : t.querySelector(
53
- `[data-row="${A.length - 1}"][data-col="6"][data-week="1"]`
53
+ `[data-row="${R.length - 1}"][data-col="6"][data-week="1"]`
54
54
  )) == null || r.focus();
55
- })) : (g(A.length - 1), $(a - 1), k.current = requestAnimationFrame(() => {
55
+ })) : (w(R.length - 1), E(a - 1), S.current = requestAnimationFrame(() => {
56
56
  var t, r;
57
57
  (r = (t = p.current) == null ? void 0 : t.querySelector(
58
- `[data-row="${A.length - 1}"][data-col="${a - 1}"][data-week="1"]`
58
+ `[data-row="${R.length - 1}"][data-col="${a - 1}"][data-week="1"]`
59
59
  )) == null || r.focus();
60
60
  }))), o = Math.max(n - 1, 0);
61
61
  break;
62
62
  }
63
63
  case "ArrowDown": {
64
- if (e.preventDefault(), n === A.length - 1) {
65
- a + 1 > 6 ? (x((t) => t.add(1, "week")), g(0), $(0), k.current = requestAnimationFrame(() => {
64
+ if (e.preventDefault(), n === R.length - 1) {
65
+ a + 1 > 6 ? (F((t) => t.add(1, "week")), w(0), E(0), S.current = requestAnimationFrame(() => {
66
66
  var t, r;
67
67
  (r = (t = p.current) == null ? void 0 : t.querySelector('[data-row="0"][data-col="0"][data-week="1"]')) == null || r.focus();
68
- })) : (g(0), $(i + 1), k.current = requestAnimationFrame(() => {
68
+ })) : (w(0), E(i + 1), S.current = requestAnimationFrame(() => {
69
69
  var t, r;
70
70
  (r = (t = p.current) == null ? void 0 : t.querySelector(
71
71
  `[data-row="0"][data-col="${i + 1}"][data-week="1"]`
@@ -73,12 +73,12 @@ function Ce({
73
73
  }));
74
74
  return;
75
75
  }
76
- o = Math.min(n + 1, A.length - 1);
76
+ o = Math.min(n + 1, R.length - 1);
77
77
  break;
78
78
  }
79
79
  case "ArrowLeft": {
80
80
  if (e.preventDefault(), a === 0) {
81
- x((s) => s.add(-1, "week")), g(o), $(6), k.current = requestAnimationFrame(() => {
81
+ F((s) => s.add(-1, "week")), w(o), E(6), S.current = requestAnimationFrame(() => {
82
82
  var s, t;
83
83
  (t = (s = p.current) == null ? void 0 : s.querySelector(`[data-row="${o}"][data-col="6"][data-week="1"]`)) == null || t.focus();
84
84
  });
@@ -89,7 +89,7 @@ function Ce({
89
89
  }
90
90
  case "ArrowRight": {
91
91
  if (e.preventDefault(), a === 6) {
92
- x((s) => s.add(1, "week")), g(o), $(0), k.current = requestAnimationFrame(() => {
92
+ F((s) => s.add(1, "week")), w(o), E(0), S.current = requestAnimationFrame(() => {
93
93
  var s, t;
94
94
  (t = (s = p.current) == null ? void 0 : s.querySelector(`[data-row="${o}"][data-col="0"][data-week="1"]`)) == null || t.focus();
95
95
  });
@@ -105,9 +105,9 @@ function Ce({
105
105
  e.preventDefault(), e.currentTarget.click();
106
106
  break;
107
107
  }
108
- g(o), $(i), (S = (v = p.current) == null ? void 0 : v.querySelector(`[data-row="${o}"][data-col="${i}"][data-week="1"]`)) == null || S.focus();
109
- }, ve = (e) => (n) => {
110
- var i, v, S, d, s, t;
108
+ w(o), E(i), (b = (g = p.current) == null ? void 0 : g.querySelector(`[data-row="${o}"][data-col="${i}"][data-week="1"]`)) == null || b.focus();
109
+ }, we = (e) => (n) => {
110
+ var i, g, b, l, s, t;
111
111
  const a = n.currentTarget.dataset.startDate, o = n.currentTarget.dataset.endDate;
112
112
  if (!(!a || !o)) {
113
113
  switch (n.key) {
@@ -119,12 +119,12 @@ function Ce({
119
119
  break;
120
120
  case "ArrowUp": {
121
121
  n.preventDefault();
122
- const r = n.currentTarget.previousElementSibling, l = !!(r != null && r.getAttribute("data-is-event"));
123
- if (r && l)
124
- r.focus(), g(T - 1);
122
+ const r = n.currentTarget.previousElementSibling, u = !!(r != null && r.getAttribute("data-is-event"));
123
+ if (r && u)
124
+ r.focus(), w(Y - 1);
125
125
  else {
126
126
  const c = (i = n.currentTarget.parentElement) == null ? void 0 : i.querySelector(
127
- `[data-time="${w(a).add(-30, "minute").format("HH:mm")}"]`
127
+ `[data-time="${v(a).add(-30, "minute").format("HH:mm")}"]`
128
128
  );
129
129
  c == null || c.focus();
130
130
  }
@@ -132,38 +132,38 @@ function Ce({
132
132
  }
133
133
  case "ArrowLeft": {
134
134
  n.preventDefault();
135
- const r = n.currentTarget.previousElementSibling, l = !!(r != null && r.getAttribute("data-is-event"));
136
- if (r && l)
135
+ const r = n.currentTarget.previousElementSibling, u = !!(r != null && r.getAttribute("data-is-event"));
136
+ if (r && u)
137
137
  r.focus();
138
138
  else {
139
- if (Y === 0) {
140
- x((f) => f.add(-1, "week")), g(0), $(6), k.current = requestAnimationFrame(() => {
141
- var f, q;
142
- (q = (f = p.current) == null ? void 0 : f.querySelector('[data-row="0"][data-col="6"][data-week="1"]')) == null || q.focus();
139
+ if (z === 0) {
140
+ F((f) => f.add(-1, "week")), w(0), E(6), S.current = requestAnimationFrame(() => {
141
+ var f, x;
142
+ (x = (f = p.current) == null ? void 0 : f.querySelector('[data-row="0"][data-col="6"][data-week="1"]')) == null || x.focus();
143
143
  });
144
144
  return;
145
145
  }
146
- (S = (v = p.current) == null ? void 0 : v.querySelector(
147
- `[data-row="${T}"][data-col="${Y - 1}"][data-week="1"]`
148
- )) == null || S.focus();
146
+ (b = (g = p.current) == null ? void 0 : g.querySelector(
147
+ `[data-row="${Y}"][data-col="${z - 1}"][data-week="1"]`
148
+ )) == null || b.focus();
149
149
  }
150
150
  break;
151
151
  }
152
152
  case "ArrowRight": {
153
153
  n.preventDefault();
154
- const r = n.currentTarget.nextElementSibling, l = !!(r != null && r.getAttribute("data-is-event"));
155
- if (r && l)
154
+ const r = n.currentTarget.nextElementSibling, u = !!(r != null && r.getAttribute("data-is-event"));
155
+ if (r && u)
156
156
  r.focus();
157
157
  else {
158
- if (Y === 6) {
159
- x((f) => f.add(1, "week")), g(0), $(0), k.current = requestAnimationFrame(() => {
160
- var f, q;
161
- (q = (f = p.current) == null ? void 0 : f.querySelector('[data-row="0"][data-col="0"][data-week="1"]')) == null || q.focus();
158
+ if (z === 6) {
159
+ F((f) => f.add(1, "week")), w(0), E(0), S.current = requestAnimationFrame(() => {
160
+ var f, x;
161
+ (x = (f = p.current) == null ? void 0 : f.querySelector('[data-row="0"][data-col="0"][data-week="1"]')) == null || x.focus();
162
162
  });
163
163
  return;
164
164
  }
165
- (s = (d = p.current) == null ? void 0 : d.querySelector(
166
- `[data-row="${T}"][data-col="${Y + 1}"][data-week="1"]`
165
+ (s = (l = p.current) == null ? void 0 : l.querySelector(
166
+ `[data-row="${Y}"][data-col="${z + 1}"][data-week="1"]`
167
167
  )) == null || s.focus();
168
168
  }
169
169
  break;
@@ -171,12 +171,12 @@ function Ce({
171
171
  case "ArrowDown":
172
172
  {
173
173
  n.preventDefault();
174
- const r = n.currentTarget.nextElementSibling, l = !!(r != null && r.getAttribute("data-is-event"));
175
- if (r && l)
176
- r.focus(), g(T + 1);
174
+ const r = n.currentTarget.nextElementSibling, u = !!(r != null && r.getAttribute("data-is-event"));
175
+ if (r && u)
176
+ r.focus(), w(Y + 1);
177
177
  else {
178
178
  const c = (t = n.currentTarget.parentElement) == null ? void 0 : t.querySelector(
179
- `[data-time="${w(o).format("HH:mm")}"]`
179
+ `[data-time="${v(o).format("HH:mm")}"]`
180
180
  );
181
181
  c == null || c.focus();
182
182
  }
@@ -186,70 +186,73 @@ function Ce({
186
186
  e == null || e(n);
187
187
  }
188
188
  };
189
- return j(() => {
189
+ return N(() => {
190
190
  const e = () => {
191
- var n;
192
- if (E != null && E.current && G.current) {
193
- const a = E.current.offsetHeight, o = G.current.offsetHeight, i = ((n = pe.current) == null ? void 0 : n.offsetHeight) ?? 0, v = (a - o - i) / A.length;
194
- fe(v < 20 ? 20 : v);
191
+ var n, a, o;
192
+ if (G.current) {
193
+ const i = ((a = (n = O.current) == null ? void 0 : n.parentElement) == null ? void 0 : a.offsetHeight) ?? 0, g = G.current.offsetHeight, b = ((o = te.current) == null ? void 0 : o.offsetHeight) ?? 0, l = (i - g - b) / R.length;
194
+ he(
195
+ l < $ ? $ : l
196
+ );
195
197
  }
196
198
  };
197
199
  return e(), window.addEventListener("resize", e), () => {
198
200
  window.removeEventListener("resize", e);
199
201
  };
200
- }, [E, b]), j(() => {
201
- const e = O.current;
202
+ }, [$, y]), N(() => {
203
+ const e = ee.current;
202
204
  if (!e) return;
203
205
  const n = () => {
204
- re.current = e.offsetWidth;
206
+ oe.current = e.offsetWidth;
205
207
  };
206
208
  n();
207
209
  const a = (t, r) => {
208
- C.current || (L.current && (e.removeEventListener("transitionend", L.current), L.current = null), ee.current = t, te.current = r, V.current = !1, z.current = !0, W.current = 0);
209
- }, o = (t, r, l) => {
210
- if (!z.current) return;
211
- const c = t - ee.current, f = r - te.current;
212
- if (W.current = c, !V.current && (ne.current = Math.abs(c), oe.current = Math.abs(f), V.current = !0, oe.current > ne.current)) {
213
- z.current = !1;
210
+ q.current || (L.current && (e.removeEventListener("transitionend", L.current), L.current = null), re.current = t, ne.current = r, V.current = !1, I.current = !0, U.current = 0);
211
+ }, o = (t, r, u) => {
212
+ if (!I.current) return;
213
+ const c = t - re.current, f = r - ne.current;
214
+ if (U.current = c, !V.current && (ae.current = Math.abs(c), se.current = Math.abs(f), V.current = !0, se.current > ae.current)) {
215
+ I.current = !1;
214
216
  return;
215
217
  }
216
- l.cancelable && l.preventDefault(), e.style.transition = "none", e.style.transform = `translate3d(${W.current}px, 0, 0)`, e.style.cursor = "grabbing";
218
+ u.cancelable && u.preventDefault(), e.style.transition = "none", e.style.transform = `translate3d(${U.current}px, 0, 0)`, e.style.cursor = "grabbing";
217
219
  }, i = () => {
218
- if (e.style.cursor = "grab", !z.current) return;
219
- z.current = !1, I.current = !1, C.current = !0;
220
- const t = W.current, r = re.current, l = r * 0.2;
221
- e.style.transition = "transform 300ms cubic-bezier(0.25, 1, 0.5, 1)", t > l ? (e.style.transform = `translate3d(${r}px, 0, 0)`, L.current = (c) => {
222
- c.propertyName === "transform" && (P.current = requestAnimationFrame(() => {
223
- x((f) => f.add(-1, "week")), U.current = requestAnimationFrame(() => {
224
- e.style.transition = "none", e.style.transform = "translate3d(0, 0, 0)", I.current = !0, C.current = !1;
220
+ if (e.style.cursor = "grab", !I.current) return;
221
+ I.current = !1, X.current = !1, q.current = !0;
222
+ const t = U.current, r = oe.current, u = r * 0.2;
223
+ e.style.transition = "transform 300ms cubic-bezier(0.25, 1, 0.5, 1)", t > u ? (e.style.transform = `translate3d(${r}px, 0, 0)`, L.current = (c) => {
224
+ c.propertyName === "transform" && (K.current = requestAnimationFrame(() => {
225
+ F((f) => f.add(-1, "week")), P.current = requestAnimationFrame(() => {
226
+ e.style.transition = "none", e.style.transform = "translate3d(0, 0, 0)", X.current = !0, q.current = !1;
225
227
  });
226
228
  }));
227
- }, e.addEventListener("transitionend", L.current)) : t < -l ? (e.style.transform = `translate3d(-${r}px, 0, 0)`, L.current = (c) => {
228
- c.propertyName === "transform" && (P.current = requestAnimationFrame(() => {
229
- x((f) => f.add(1, "week")), U.current = requestAnimationFrame(() => {
230
- e.style.transition = "none", e.style.transform = "translate3d(0, 0, 0)", I.current = !0, C.current = !1;
229
+ }, e.addEventListener("transitionend", L.current)) : t < -u ? (e.style.transform = `translate3d(-${r}px, 0, 0)`, L.current = (c) => {
230
+ c.propertyName === "transform" && (K.current = requestAnimationFrame(() => {
231
+ F((f) => f.add(1, "week")), P.current = requestAnimationFrame(() => {
232
+ e.style.transition = "none", e.style.transform = "translate3d(0, 0, 0)", X.current = !0, q.current = !1;
231
233
  });
232
234
  }));
233
- }, e.addEventListener("transitionend", L.current)) : (C.current = !1, I.current = !0, e.style.transform = "translate3d(0, 0, 0)");
234
- }, v = (t) => a(t.touches[0].clientX, t.touches[0].clientY), S = (t) => o(t.touches[0].clientX, t.touches[0].clientY, t), d = (t) => a(t.clientX, t.clientY), s = (t) => o(t.clientX, t.clientY, t);
235
- return window.addEventListener("resize", n), e.addEventListener("touchstart", v), e.addEventListener("touchmove", S), e.addEventListener("touchend", i), e.addEventListener("touchcancel", i), e.addEventListener("mousedown", d), e.addEventListener("mousemove", s), e.addEventListener("mouseup", i), e.addEventListener("mouseleave", i), () => {
236
- window.removeEventListener("resize", n), e.removeEventListener("touchstart", v), e.removeEventListener("touchmove", S), e.removeEventListener("touchend", i), e.removeEventListener("touchcancel", i), e.removeEventListener("mousedown", d), e.removeEventListener("mousemove", s), e.removeEventListener("mouseup", i), e.removeEventListener("mouseleave", i), L.current && e.removeEventListener("transitionend", L.current);
235
+ }, e.addEventListener("transitionend", L.current)) : (q.current = !1, X.current = !0, e.style.transform = "translate3d(0, 0, 0)");
236
+ }, g = (t) => a(t.touches[0].clientX, t.touches[0].clientY), b = (t) => o(t.touches[0].clientX, t.touches[0].clientY, t), l = (t) => a(t.clientX, t.clientY), s = (t) => o(t.clientX, t.clientY, t);
237
+ return window.addEventListener("resize", n), e.addEventListener("touchstart", g), e.addEventListener("touchmove", b), e.addEventListener("touchend", i), e.addEventListener("touchcancel", i), e.addEventListener("mousedown", l), e.addEventListener("mousemove", s), e.addEventListener("mouseup", i), e.addEventListener("mouseleave", i), () => {
238
+ window.removeEventListener("resize", n), e.removeEventListener("touchstart", g), e.removeEventListener("touchmove", b), e.removeEventListener("touchend", i), e.removeEventListener("touchcancel", i), e.removeEventListener("mousedown", l), e.removeEventListener("mousemove", s), e.removeEventListener("mouseup", i), e.removeEventListener("mouseleave", i), L.current && e.removeEventListener("transitionend", L.current);
237
239
  };
238
- }, []), j(() => {
240
+ }, []), N(() => {
239
241
  const e = p.current, n = (a) => {
240
- C.current && !I.current && a.stopPropagation();
242
+ q.current && !X.current && a.stopPropagation();
241
243
  };
242
244
  return e == null || e.addEventListener("click", n), () => {
243
245
  e == null || e.removeEventListener("click", n);
244
246
  };
245
- }, []), j(() => {
246
- R == null || R(F);
247
- }, [F, R]), j(() => () => {
248
- P.current && cancelAnimationFrame(P.current), U.current && cancelAnimationFrame(U.current), k.current && cancelAnimationFrame(k.current);
249
- }, []), /* @__PURE__ */ D(h, { tag: "section", flex: 1, flexDirection: "column", "aria-label": "일정 안내", ...K, children: [
250
- b && (b == null ? void 0 : b.length) > 0 && /* @__PURE__ */ m(
247
+ }, []), N(() => {
248
+ M == null || M(A);
249
+ }, [A, M]), N(() => () => {
250
+ K.current && cancelAnimationFrame(K.current), P.current && cancelAnimationFrame(P.current), S.current && cancelAnimationFrame(S.current);
251
+ }, []), /* @__PURE__ */ D(h, { ref: O, flex: 1, flexDirection: "column", "aria-label": "일정 안내", ...B, children: [
252
+ y && (y == null ? void 0 : y.length) > 0 && /* @__PURE__ */ m(
251
253
  h,
252
254
  {
255
+ ref: te,
253
256
  justifyContent: "flex-end",
254
257
  alignItems: "center",
255
258
  gap: 3,
@@ -257,21 +260,21 @@ function Ce({
257
260
  pr: 4,
258
261
  role: "group",
259
262
  "aria-label": "일정 종류 안내",
260
- children: b == null ? void 0 : b.map(({ text: e, color: n }) => /* @__PURE__ */ D(h, { alignItems: "center", gap: 1, children: [
263
+ children: y == null ? void 0 : y.map(({ text: e, color: n }) => /* @__PURE__ */ D(h, { alignItems: "center", gap: 1, children: [
261
264
  /* @__PURE__ */ m(
262
- ue,
265
+ fe,
263
266
  {
264
267
  "aria-hidden": !0,
265
268
  inlineCSS: {
266
269
  width: 14,
267
270
  height: 14,
268
- border: `1px solid ${y[30]}`,
271
+ border: `1px solid ${k[30]}`,
269
272
  borderRadius: 4,
270
273
  backgroundColor: n
271
274
  }
272
275
  }
273
276
  ),
274
- /* @__PURE__ */ m(B, { variant: "c3R", color: "grey.70", children: e })
277
+ /* @__PURE__ */ m(C, { variant: "c3R", color: "grey.70", children: e })
275
278
  ] }, `legend-${e}-${n}`))
276
279
  }
277
280
  ),
@@ -287,12 +290,12 @@ function Ce({
287
290
  position: "sticky",
288
291
  top: 0,
289
292
  zIndex: 2,
290
- borderBottom: `1px solid ${y[20]}`,
291
- backgroundColor: y.white
293
+ borderBottom: `1px solid ${k[20]}`,
294
+ backgroundColor: k.white
292
295
  },
293
296
  children: [
294
297
  /* @__PURE__ */ D(
295
- B,
298
+ C,
296
299
  {
297
300
  variant: "h4B",
298
301
  textAlign: "center",
@@ -300,12 +303,12 @@ function Ce({
300
303
  width: 48
301
304
  },
302
305
  children: [
303
- F.month() + 1,
306
+ A.month() + 1,
304
307
  "월"
305
308
  ]
306
309
  }
307
310
  ),
308
- /* @__PURE__ */ m(h, { alignItems: "center", flexGrow: 1, children: ae[1].days.map((e) => /* @__PURE__ */ D(
311
+ /* @__PURE__ */ m(h, { alignItems: "center", flexGrow: 1, children: ie[1].days.map((e) => /* @__PURE__ */ D(
309
312
  h,
310
313
  {
311
314
  flexDirection: "column",
@@ -314,8 +317,8 @@ function Ce({
314
317
  role: "columnheader",
315
318
  "aria-label": `${e.format("dddd")} (${e.format("D")}일)`,
316
319
  children: [
317
- /* @__PURE__ */ m(B, { variant: "c3R", color: e.day() === 0 ? "pink.90" : void 0, children: e.format("ddd") }),
318
- /* @__PURE__ */ m(B, { variant: "c3M", color: e.day() === 0 ? "pink.100" : void 0, children: e.format("D") })
320
+ /* @__PURE__ */ m(C, { variant: "c3R", children: e.format("ddd") }),
321
+ /* @__PURE__ */ m(C, { variant: "c3M", children: e.format("D") })
319
322
  ]
320
323
  },
321
324
  e.day()
@@ -332,11 +335,11 @@ function Ce({
332
335
  position: "sticky",
333
336
  left: 0,
334
337
  maxHeight: "fit-content",
335
- backgroundColor: y.white,
338
+ backgroundColor: k.white,
336
339
  zIndex: 1
337
340
  },
338
341
  children: [
339
- A.map(({ time: e, label: n, isCurrentTime: a }) => /* @__PURE__ */ m(
342
+ R.map(({ time: e, label: n, isCurrentTime: a }) => /* @__PURE__ */ m(
340
343
  h,
341
344
  {
342
345
  justifyContent: "center",
@@ -346,11 +349,12 @@ function Ce({
346
349
  "aria-current": a ? "time" : void 0,
347
350
  style: {
348
351
  width: 48,
349
- minHeight: H,
352
+ height: H,
353
+ minHeight: $,
350
354
  zIndex: 1
351
355
  },
352
356
  children: /* @__PURE__ */ m(
353
- B,
357
+ C,
354
358
  {
355
359
  variant: "c3M",
356
360
  color: "grey.70",
@@ -392,14 +396,14 @@ function Ce({
392
396
  children: /* @__PURE__ */ m(
393
397
  h,
394
398
  {
395
- ref: O,
399
+ ref: ee,
396
400
  alignItems: "flex-start",
397
401
  justifyContent: "center",
398
402
  flex: 1,
399
403
  inlineCSS: {
400
404
  transform: "translate3d(0, 0, 0)"
401
405
  },
402
- children: ae.map(({ days: e, scheduleEvents: n }, a) => /* @__PURE__ */ m(
406
+ children: ie.map(({ days: e, scheduleEvents: n }, a) => /* @__PURE__ */ m(
403
407
  h,
404
408
  {
405
409
  role: "rowgroup",
@@ -410,8 +414,8 @@ function Ce({
410
414
  minWidth: "100%"
411
415
  },
412
416
  children: e.map((o, i) => {
413
- const v = Se(n, o), S = Ee(
414
- v,
417
+ const g = Le(n, o), b = Re(
418
+ g,
415
419
  o
416
420
  );
417
421
  return /* @__PURE__ */ m(
@@ -420,7 +424,7 @@ function Ce({
420
424
  role: "row",
421
425
  "aria-label": `${o.format("dddd")} ${o.format("D")}일`,
422
426
  style: {
423
- borderLeft: `1px solid ${y[20]}`
427
+ borderLeft: `1px solid ${k[20]}`
424
428
  },
425
429
  children: /* @__PURE__ */ D(
426
430
  h,
@@ -431,84 +435,86 @@ function Ce({
431
435
  flex: 1
432
436
  },
433
437
  children: [
434
- A.map(({ time: d, label: s, isCurrentTime: t }, r) => {
435
- const l = a === 1 && r === T && i === Y;
436
- if (typeof M == "function") {
437
- const c = M(
438
+ R.map(({ time: l, label: s, isCurrentTime: t }, r) => {
439
+ const u = a === 1 && r === Y && i === z;
440
+ if (typeof T == "function") {
441
+ const c = T(
438
442
  o.format("YYYY-MM-DD"),
439
- d
443
+ l
440
444
  );
441
- return le(c, {
442
- key: `schedule-block-${o}-${r}-${i}-${d}`,
443
- onKeyDown: ie,
444
- onFocus: se(o, s),
445
+ return de(c, {
446
+ key: `schedule-block-${o}-${r}-${i}-${l}`,
447
+ onKeyDown: le,
448
+ onFocus: ce(o, s),
445
449
  role: "gridcell",
446
450
  "data-row": r,
447
451
  "data-col": i,
448
452
  "data-week": a,
449
- "data-time": d,
453
+ "data-time": l,
450
454
  "aria-current": t ? "time" : void 0,
451
- tabIndex: l ? 0 : -1,
455
+ tabIndex: u ? 0 : -1,
452
456
  "aria-label": `${o.format("dddd")} ${o.format("D")}일 ${s}`,
453
457
  ...c.props,
454
458
  style: {
455
459
  ...c.props.style,
456
- borderTop: r > 0 ? `1px solid ${y[20]}` : void 0,
457
- minHeight: H,
460
+ borderTop: r > 0 ? `1px solid ${k[20]}` : void 0,
461
+ height: H,
462
+ minHeight: $,
458
463
  zIndex: 0
459
464
  }
460
465
  });
461
466
  }
462
467
  return /* @__PURE__ */ m(
463
- ue,
468
+ fe,
464
469
  {
465
- onKeyDown: ie,
466
- onFocus: se(o, s),
470
+ onKeyDown: le,
471
+ onFocus: ce(o, s),
467
472
  role: "gridcell",
468
473
  "data-row": r,
469
474
  "data-col": i,
470
475
  "data-week": a,
471
- "data-time": d,
476
+ "data-time": l,
472
477
  "aria-current": t ? "time" : void 0,
473
- tabIndex: l ? 0 : -1,
478
+ tabIndex: u ? 0 : -1,
474
479
  "aria-label": `${o.format("dddd")} ${o.format("D")}일 ${s}`,
475
480
  style: {
476
- borderTop: r > 0 ? `1px solid ${y[20]}` : void 0,
477
- minHeight: H,
481
+ borderTop: r > 0 ? `1px solid ${k[20]}` : void 0,
482
+ height: H,
483
+ minHeight: $,
478
484
  zIndex: 0
479
485
  }
480
486
  },
481
- `schedule-block-${o}-${r}-${i}-${d}`
487
+ `schedule-block-${o}-${r}-${i}-${l}`
482
488
  );
483
489
  }),
484
- S.map(
485
- ({ children: d, startDate: s, endDate: t, totalColumns: r, columnIndex: l }) => {
486
- const c = de(s), f = de(t), q = (c - 7 * 60) / 30 * H, we = (f - c) / 30 * H, ce = 100 / r, ge = l * ce, J = d;
490
+ b.map(
491
+ ({ children: l, startDate: s, endDate: t, totalColumns: r, columnIndex: u }) => {
492
+ const c = me(s), f = me(t), x = Math.floor((c - 7 * 60) / 30), ge = (c - 7 * 60) / 30 * H, be = (f - c) / 30 * H, ue = 100 / r, ye = u * ue, J = l;
487
493
  return /* @__PURE__ */ m(
488
494
  h,
489
495
  {
490
496
  style: {
491
497
  position: "absolute",
492
- top: `${q + 1}px`,
493
- left: `${ge}%`,
494
- width: `${ce}%`,
495
- height: `${we - 1}px`,
498
+ top: `${ge + (x > 0 ? 1 : 0)}px`,
499
+ left: `${ye}%`,
500
+ width: `${ue}%`,
501
+ height: `${be - (x > 0 ? 1 : 0)}px`,
496
502
  zIndex: 1
497
503
  },
498
- children: le(J, {
504
+ children: de(J, {
499
505
  role: "button",
500
506
  tabIndex: a === 1 ? 0 : -1,
501
- onKeyDown: ve(J.props.onKeyDown),
507
+ onKeyDown: we(J.props.onKeyDown),
502
508
  "data-start-date": s,
503
- "data-start-time": w(s).format("HH:mm"),
509
+ "data-start-time": v(s).format("HH:mm"),
504
510
  "data-end-date": t,
505
- "data-end-time": w(t).format("HH:mm"),
511
+ "data-end-time": v(t).format("HH:mm"),
506
512
  "data-is-event": !0,
507
- "aria-label": `${w(s).format("dddd")} ${w(s).format("D")}일 ${w(s).format("A h시")}부터 ${w(t).format("dddd")} ${w(t).format("D")}일 ${w(t).format("A h시")}까지의 일정`,
513
+ "aria-label": `${v(s).format("dddd")} ${v(s).format("D")}일 ${v(s).format("A h시")}부터 ${v(t).format("dddd")} ${v(t).format("D")}일 ${v(t).format("A h시")}까지의 일정`,
508
514
  ...J.props
509
515
  })
510
516
  },
511
- `${s}-${t}-${l}-${r}`
517
+ `${s}-${t}-${u}-${r}`
512
518
  );
513
519
  }
514
520
  )
@@ -527,26 +533,9 @@ function Ce({
527
533
  }
528
534
  )
529
535
  ] }),
530
- /* @__PURE__ */ m(
531
- "div",
532
- {
533
- role: "status",
534
- style: {
535
- position: "absolute",
536
- width: 1,
537
- height: 1,
538
- margin: -1,
539
- border: 0,
540
- padding: 0,
541
- overflow: "hidden",
542
- clip: "rect(0 0 0 0)",
543
- clipPath: "inset(50%)"
544
- },
545
- children: me
546
- }
547
- )
536
+ /* @__PURE__ */ m(C, { role: "status", visuallyHidden: !0, children: pe })
548
537
  ] });
549
538
  }
550
539
  export {
551
- Ce as default
540
+ Te as default
552
541
  };
@@ -1,5 +1,5 @@
1
1
  import { ReactNode } from 'react';
2
- import { FlexboxProps } from 'node_modules/@thedotscorp/ui/Flexbox/Flexbox';
2
+ import { FlexboxProps } from 'node_modules/@dotss/ui/Flexbox/Flexbox';
3
3
  export interface SwiperPaginationProps {
4
4
  page: number;
5
5
  totalPages: number;