@progress/kendo-themes-html 8.0.0-dev.3 → 8.0.0-dev.4

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 (190) hide show
  1. package/dist/cjs/scheduler/scheduler-body.spec.js +52 -0
  2. package/dist/cjs/scheduler/scheduler-cell.spec.js +75 -0
  3. package/dist/cjs/scheduler/scheduler-content.spec.js +46 -0
  4. package/dist/cjs/scheduler/scheduler-event.spec.js +4433 -0
  5. package/dist/cjs/scheduler/scheduler-group.spec.js +66 -0
  6. package/dist/cjs/scheduler/scheduler-head.spec.js +52 -0
  7. package/dist/cjs/scheduler/scheduler-header.spec.js +46 -0
  8. package/dist/cjs/scheduler/scheduler-row.spec.js +46 -0
  9. package/dist/cjs/scheduler/scheduler-sticky-cell.spec.js +46 -0
  10. package/dist/cjs/scheduler/scheduler-table.spec.js +46 -0
  11. package/dist/cjs/scheduler/scheduler-task.spec.js +4372 -0
  12. package/dist/cjs/scheduler/scheduler-times.spec.js +46 -0
  13. package/dist/cjs/scheduler/{tests/scheduler-jquery-agenda.js → scheduler-toolbar.spec.js} +38 -94
  14. package/dist/cjs/scheduler/scheduler-view.spec.js +65 -0
  15. package/dist/cjs/scheduler/scheduler.spec.js +113 -0
  16. package/dist/cjs/scheduler/templates/scheduler-agenda.js +8541 -0
  17. package/dist/cjs/scheduler/{tests/scheduler-angular-month-rtl.js → templates/scheduler-day.js} +1324 -987
  18. package/dist/cjs/scheduler/{tests/scheduler-angular-agenda.js → templates/scheduler-flex-agenda.js} +1272 -985
  19. package/dist/cjs/scheduler/{tests/scheduler-angular-month.js → templates/scheduler-flex-day.js} +1274 -972
  20. package/dist/cjs/scheduler/templates/scheduler-flex-horizontal-grouping.js +8560 -0
  21. package/dist/cjs/scheduler/{tests/scheduler-jquery-month.js → templates/scheduler-flex-month.js} +1294 -969
  22. package/dist/cjs/scheduler/{tests/scheduler-angular-agenda-rtl.js → templates/scheduler-flex-timeline.js} +1291 -988
  23. package/dist/cjs/scheduler/{tests/scheduler-react-agenda.js → templates/scheduler-flex-vertical-grouping.js} +1470 -1100
  24. package/dist/cjs/scheduler/templates/scheduler-flex-week.js +8597 -0
  25. package/dist/cjs/scheduler/templates/scheduler-horizontal-grouping.js +8640 -0
  26. package/dist/cjs/scheduler/templates/scheduler-month.js +8577 -0
  27. package/dist/cjs/scheduler/templates/scheduler-timeline.js +8543 -0
  28. package/dist/cjs/scheduler/{tests/scheduler-angular-day-rtl.js → templates/scheduler-vertical-grouping.js} +1345 -1017
  29. package/dist/cjs/scheduler/{tests/scheduler-angular.js → templates/scheduler-week.js} +1372 -1126
  30. package/dist/cjs/scheduler/tests/scheduler-agenda-view.js +8638 -0
  31. package/dist/cjs/scheduler/tests/{scheduler.js → scheduler-current-time-marker.js} +1045 -459
  32. package/dist/cjs/scheduler/tests/scheduler-day-view.js +8653 -0
  33. package/dist/cjs/scheduler/tests/scheduler-events.js +9006 -0
  34. package/dist/cjs/scheduler/tests/scheduler-month-view.js +8700 -0
  35. package/dist/cjs/scheduler/tests/scheduler-react-timeline-multi.js +1724 -1481
  36. package/dist/cjs/scheduler/tests/scheduler-timeline-view.js +8656 -0
  37. package/dist/cjs/scheduler/tests/{scheduler-angular-rtl.js → scheduler-week-view.js} +1558 -1139
  38. package/dist/cjs/scheduler/tests/{scheduler-react-timeline.js → scheduler-year-view.js} +1203 -601
  39. package/dist/esm/scheduler/scheduler-body.spec.mjs +30 -0
  40. package/dist/esm/scheduler/scheduler-cell.spec.mjs +53 -0
  41. package/dist/esm/scheduler/scheduler-content.spec.mjs +24 -0
  42. package/dist/esm/scheduler/scheduler-event.spec.mjs +4417 -0
  43. package/dist/esm/scheduler/scheduler-group.spec.mjs +44 -0
  44. package/dist/esm/scheduler/scheduler-head.spec.mjs +30 -0
  45. package/dist/esm/scheduler/scheduler-header.spec.mjs +24 -0
  46. package/dist/esm/scheduler/scheduler-row.spec.mjs +24 -0
  47. package/dist/esm/scheduler/scheduler-sticky-cell.spec.mjs +24 -0
  48. package/dist/esm/scheduler/scheduler-table.spec.mjs +24 -0
  49. package/dist/esm/scheduler/scheduler-task.spec.mjs +4356 -0
  50. package/dist/esm/scheduler/scheduler-times.spec.mjs +24 -0
  51. package/dist/esm/scheduler/{tests/scheduler-jquery-agenda.mjs → scheduler-toolbar.spec.mjs} +34 -90
  52. package/dist/esm/scheduler/scheduler-view.spec.mjs +43 -0
  53. package/dist/esm/scheduler/scheduler.spec.mjs +91 -0
  54. package/dist/esm/scheduler/templates/scheduler-agenda.mjs +8525 -0
  55. package/dist/esm/scheduler/{tests/scheduler-jquery-month.mjs → templates/scheduler-day.mjs} +1318 -984
  56. package/dist/esm/scheduler/{tests/scheduler-angular-agenda.mjs → templates/scheduler-flex-agenda.mjs} +1268 -981
  57. package/dist/esm/scheduler/{tests/scheduler-angular-month-rtl.mjs → templates/scheduler-flex-day.mjs} +1270 -968
  58. package/dist/esm/scheduler/templates/scheduler-flex-horizontal-grouping.mjs +8544 -0
  59. package/dist/esm/scheduler/{tests/scheduler-angular-day-rtl.mjs → templates/scheduler-flex-month.mjs} +1293 -997
  60. package/dist/esm/scheduler/{tests/scheduler-angular-month.mjs → templates/scheduler-flex-timeline.mjs} +1286 -968
  61. package/dist/esm/scheduler/{tests/scheduler-react-agenda.mjs → templates/scheduler-flex-vertical-grouping.mjs} +1466 -1096
  62. package/dist/esm/scheduler/templates/scheduler-flex-week.mjs +8581 -0
  63. package/dist/esm/scheduler/{tests/scheduler-angular.mjs → templates/scheduler-horizontal-grouping.mjs} +1376 -1121
  64. package/dist/esm/scheduler/templates/scheduler-month.mjs +8561 -0
  65. package/dist/esm/scheduler/{tests/scheduler-angular-agenda-rtl.mjs → templates/scheduler-timeline.mjs} +1386 -1077
  66. package/dist/esm/scheduler/templates/scheduler-vertical-grouping.mjs +8563 -0
  67. package/dist/esm/scheduler/{tests/scheduler-angular-rtl.mjs → templates/scheduler-week.mjs} +1368 -1122
  68. package/dist/esm/scheduler/tests/scheduler-agenda-view.mjs +8622 -0
  69. package/dist/esm/scheduler/tests/{scheduler.mjs → scheduler-current-time-marker.mjs} +1041 -455
  70. package/dist/esm/scheduler/tests/scheduler-day-view.mjs +8637 -0
  71. package/dist/esm/scheduler/tests/scheduler-events.mjs +8990 -0
  72. package/dist/esm/scheduler/tests/scheduler-month-view.mjs +8684 -0
  73. package/dist/esm/scheduler/tests/scheduler-react-timeline-multi.mjs +1724 -1481
  74. package/dist/esm/scheduler/tests/scheduler-timeline-view.mjs +8640 -0
  75. package/dist/esm/scheduler/tests/scheduler-week-view.mjs +8788 -0
  76. package/dist/esm/scheduler/tests/{scheduler-react-timeline.mjs → scheduler-year-view.mjs} +1199 -597
  77. package/dist/types/scheduler/index.d.ts +30 -0
  78. package/dist/types/scheduler/scheduler-body.spec.d.ts +5 -0
  79. package/dist/types/scheduler/scheduler-cell.spec.d.ts +19 -0
  80. package/dist/types/scheduler/scheduler-content.spec.d.ts +1 -0
  81. package/dist/types/scheduler/scheduler-event.spec.d.ts +24 -0
  82. package/dist/types/scheduler/scheduler-group.spec.d.ts +13 -0
  83. package/dist/types/scheduler/scheduler-head.spec.d.ts +5 -0
  84. package/dist/types/scheduler/scheduler-header.spec.d.ts +1 -0
  85. package/dist/types/scheduler/scheduler-row.spec.d.ts +1 -0
  86. package/dist/types/scheduler/scheduler-sticky-cell.spec.d.ts +1 -0
  87. package/dist/types/scheduler/scheduler-table.spec.d.ts +2 -0
  88. package/dist/types/scheduler/scheduler-task.spec.d.ts +19 -0
  89. package/dist/types/scheduler/scheduler-times.spec.d.ts +1 -0
  90. package/dist/types/scheduler/scheduler-toolbar.spec.d.ts +5 -0
  91. package/dist/types/scheduler/scheduler-view.spec.d.ts +15 -0
  92. package/dist/types/scheduler/scheduler.spec.d.ts +15 -0
  93. package/dist/types/scheduler/templates/scheduler-agenda.d.ts +1 -0
  94. package/dist/types/scheduler/templates/scheduler-day.d.ts +1 -0
  95. package/dist/types/scheduler/templates/scheduler-flex-agenda.d.ts +1 -0
  96. package/dist/types/scheduler/templates/scheduler-flex-day.d.ts +1 -0
  97. package/dist/types/scheduler/templates/scheduler-flex-horizontal-grouping.d.ts +1 -0
  98. package/dist/types/scheduler/templates/scheduler-flex-month.d.ts +1 -0
  99. package/dist/types/scheduler/templates/scheduler-flex-timeline.d.ts +1 -0
  100. package/dist/types/scheduler/templates/scheduler-flex-vertical-grouping.d.ts +1 -0
  101. package/dist/types/scheduler/templates/scheduler-flex-week.d.ts +1 -0
  102. package/dist/types/scheduler/templates/scheduler-horizontal-grouping.d.ts +1 -0
  103. package/dist/types/scheduler/templates/scheduler-month.d.ts +1 -0
  104. package/dist/types/scheduler/templates/scheduler-timeline.d.ts +1 -0
  105. package/dist/types/scheduler/templates/scheduler-vertical-grouping.d.ts +1 -0
  106. package/dist/types/scheduler/templates/scheduler-week.d.ts +1 -0
  107. package/package.json +2 -2
  108. package/src/scheduler/index.ts +30 -0
  109. package/src/scheduler/scheduler-body.spec.tsx +25 -0
  110. package/src/scheduler/scheduler-cell.spec.tsx +68 -0
  111. package/src/scheduler/scheduler-content.spec.tsx +17 -0
  112. package/src/scheduler/scheduler-event.spec.tsx +105 -0
  113. package/src/scheduler/scheduler-group.spec.tsx +47 -0
  114. package/src/scheduler/scheduler-head.spec.tsx +25 -0
  115. package/src/scheduler/scheduler-header.spec.tsx +19 -0
  116. package/src/scheduler/scheduler-row.spec.tsx +17 -0
  117. package/src/scheduler/scheduler-sticky-cell.spec.tsx +18 -0
  118. package/src/scheduler/scheduler-table.spec.tsx +18 -0
  119. package/src/scheduler/scheduler-task.spec.tsx +60 -0
  120. package/src/scheduler/scheduler-times.spec.tsx +17 -0
  121. package/src/scheduler/scheduler-toolbar.spec.tsx +50 -0
  122. package/src/scheduler/scheduler-view.spec.tsx +47 -0
  123. package/src/scheduler/scheduler.spec.tsx +60 -0
  124. package/src/scheduler/templates/scheduler-agenda.tsx +123 -0
  125. package/src/scheduler/templates/scheduler-day.tsx +228 -0
  126. package/src/scheduler/templates/scheduler-flex-agenda.tsx +131 -0
  127. package/src/scheduler/templates/scheduler-flex-day.tsx +153 -0
  128. package/src/scheduler/templates/scheduler-flex-horizontal-grouping.tsx +336 -0
  129. package/src/scheduler/templates/scheduler-flex-month.tsx +156 -0
  130. package/src/scheduler/templates/scheduler-flex-timeline.tsx +114 -0
  131. package/src/scheduler/templates/scheduler-flex-vertical-grouping.tsx +345 -0
  132. package/src/scheduler/templates/scheduler-flex-week.tsx +210 -0
  133. package/src/scheduler/templates/scheduler-horizontal-grouping.tsx +265 -0
  134. package/src/scheduler/templates/scheduler-month.tsx +166 -0
  135. package/src/scheduler/templates/scheduler-timeline.tsx +116 -0
  136. package/src/scheduler/templates/scheduler-vertical-grouping.tsx +312 -0
  137. package/src/scheduler/templates/scheduler-week.tsx +268 -0
  138. package/src/scheduler/tests/scheduler-agenda-view.tsx +13 -0
  139. package/src/scheduler/tests/scheduler-current-time-marker.tsx +572 -0
  140. package/src/scheduler/tests/scheduler-day-view.tsx +13 -0
  141. package/src/scheduler/tests/scheduler-events.tsx +511 -0
  142. package/src/scheduler/tests/scheduler-month-view.tsx +13 -0
  143. package/src/scheduler/tests/scheduler-react-timeline-multi.tsx +661 -665
  144. package/src/scheduler/tests/scheduler-timeline-view.tsx +13 -0
  145. package/src/scheduler/tests/scheduler-week-view.tsx +13 -0
  146. package/src/scheduler/tests/scheduler-year-view.tsx +2399 -0
  147. package/dist/cjs/scheduler/tests/scheduler-flex-layout.js +0 -8222
  148. package/dist/cjs/scheduler/tests/scheduler-react-day.js +0 -8936
  149. package/dist/cjs/scheduler/tests/scheduler-react-month.js +0 -9739
  150. package/dist/cjs/scheduler/tests/scheduler-react-week.js +0 -9752
  151. package/dist/cjs/scheduler/tests/scheduler-year.js +0 -8906
  152. package/dist/esm/scheduler/tests/scheduler-flex-layout.mjs +0 -8206
  153. package/dist/esm/scheduler/tests/scheduler-react-day.mjs +0 -8920
  154. package/dist/esm/scheduler/tests/scheduler-react-month.mjs +0 -9723
  155. package/dist/esm/scheduler/tests/scheduler-react-week.mjs +0 -9736
  156. package/dist/esm/scheduler/tests/scheduler-year.mjs +0 -8890
  157. package/dist/types/scheduler/tests/scheduler-jquery-agenda.d.ts +0 -2
  158. package/dist/types/scheduler/tests/scheduler-jquery-month.d.ts +0 -2
  159. package/dist/types/scheduler/tests/scheduler-react-agenda.d.ts +0 -2
  160. package/dist/types/scheduler/tests/scheduler-react-day.d.ts +0 -2
  161. package/dist/types/scheduler/tests/scheduler-react-month.d.ts +0 -2
  162. package/dist/types/scheduler/tests/scheduler-react-timeline.d.ts +0 -2
  163. package/dist/types/scheduler/tests/scheduler-react-week.d.ts +0 -2
  164. package/dist/types/scheduler/tests/scheduler-year.d.ts +0 -2
  165. package/dist/types/scheduler/tests/scheduler.d.ts +0 -2
  166. package/src/scheduler/tests/scheduler-angular-agenda-rtl.tsx +0 -300
  167. package/src/scheduler/tests/scheduler-angular-agenda.tsx +0 -300
  168. package/src/scheduler/tests/scheduler-angular-day-rtl.tsx +0 -254
  169. package/src/scheduler/tests/scheduler-angular-month-rtl.tsx +0 -292
  170. package/src/scheduler/tests/scheduler-angular-month.tsx +0 -292
  171. package/src/scheduler/tests/scheduler-angular-rtl.tsx +0 -386
  172. package/src/scheduler/tests/scheduler-angular.tsx +0 -386
  173. package/src/scheduler/tests/scheduler-flex-layout.tsx +0 -492
  174. package/src/scheduler/tests/scheduler-jquery-agenda.tsx +0 -118
  175. package/src/scheduler/tests/scheduler-jquery-month.tsx +0 -306
  176. package/src/scheduler/tests/scheduler-react-agenda.tsx +0 -336
  177. package/src/scheduler/tests/scheduler-react-day.tsx +0 -1037
  178. package/src/scheduler/tests/scheduler-react-month.tsx +0 -1380
  179. package/src/scheduler/tests/scheduler-react-timeline.tsx +0 -669
  180. package/src/scheduler/tests/scheduler-react-week.tsx +0 -1786
  181. package/src/scheduler/tests/scheduler-year.tsx +0 -2383
  182. package/src/scheduler/tests/scheduler.tsx +0 -656
  183. /package/dist/types/scheduler/tests/{scheduler-angular-agenda-rtl.d.ts → scheduler-agenda-view.d.ts} +0 -0
  184. /package/dist/types/scheduler/tests/{scheduler-angular-agenda.d.ts → scheduler-current-time-marker.d.ts} +0 -0
  185. /package/dist/types/scheduler/tests/{scheduler-angular-day-rtl.d.ts → scheduler-day-view.d.ts} +0 -0
  186. /package/dist/types/scheduler/tests/{scheduler-angular-month-rtl.d.ts → scheduler-events.d.ts} +0 -0
  187. /package/dist/types/scheduler/tests/{scheduler-angular-month.d.ts → scheduler-month-view.d.ts} +0 -0
  188. /package/dist/types/scheduler/tests/{scheduler-angular-rtl.d.ts → scheduler-timeline-view.d.ts} +0 -0
  189. /package/dist/types/scheduler/tests/{scheduler-angular.d.ts → scheduler-week-view.d.ts} +0 -0
  190. /package/dist/types/scheduler/tests/{scheduler-flex-layout.d.ts → scheduler-year-view.d.ts} +0 -0
@@ -4355,6 +4355,7 @@ var Icon = (props) => {
4355
4355
  Icon.states = states3;
4356
4356
  Icon.options = options3;
4357
4357
  Icon.defaultProps = defaultProps3;
4358
+ var icon_spec_default = Icon;
4358
4359
 
4359
4360
  // src/button/button.spec.tsx
4360
4361
  import { Fragment as Fragment4, jsx as jsx4, jsxs } from "react/jsx-runtime";
@@ -5253,7 +5254,7 @@ var defaultProps18 = {
5253
5254
  };
5254
5255
  var SliderTick = (props) => {
5255
5256
  const {
5256
- style: style2,
5257
+ style,
5257
5258
  label = defaultProps18.label,
5258
5259
  orientation,
5259
5260
  large,
@@ -5272,7 +5273,7 @@ var SliderTick = (props) => {
5272
5273
  "k-tick-large": large
5273
5274
  }
5274
5275
  ),
5275
- style: style2,
5276
+ style,
5276
5277
  children: label && /* @__PURE__ */ jsx33("span", { className: "k-label", children: text })
5277
5278
  }
5278
5279
  );
@@ -6521,7 +6522,7 @@ var ColorPaletteTile = (props) => {
6521
6522
  selected,
6522
6523
  ...other
6523
6524
  } = props;
6524
- const styles = {
6525
+ const styles2 = {
6525
6526
  "background-color": color,
6526
6527
  "width": tileSize ? tileSize + "px" : "",
6527
6528
  "height": tileSize ? tileSize + "px" : ""
@@ -6539,7 +6540,7 @@ var ColorPaletteTile = (props) => {
6539
6540
  selected
6540
6541
  })
6541
6542
  ),
6542
- style: styles
6543
+ style: styles2
6543
6544
  }
6544
6545
  );
6545
6546
  };
@@ -8014,620 +8015,1221 @@ import { jsx as jsx135 } from "react/jsx-runtime";
8014
8015
  // src/toolbar/templates/toolbar-angular-resizable.tsx
8015
8016
  import { jsx as jsx136 } from "react/jsx-runtime";
8016
8017
 
8017
- // src/scheduler/tests/scheduler-react-timeline.tsx
8018
+ // src/scheduler/templates/scheduler-day.tsx
8018
8019
  import { Fragment as Fragment47, jsx as jsx137, jsxs as jsxs57 } from "react/jsx-runtime";
8019
- var style = `
8020
- #test-area {
8021
- max-width: 1400px;
8020
+
8021
+ // src/scheduler/scheduler-view.spec.tsx
8022
+ import { jsx as jsx138 } from "react/jsx-runtime";
8023
+ var SCHEDULER_VIEW_CLASSNAME = "k-scheduler-layout";
8024
+ var states51 = [];
8025
+ var options49 = {};
8026
+ var defaultProps49 = {};
8027
+ var SchedulerView = (props) => {
8028
+ const {
8029
+ as: Component = "div",
8030
+ view,
8031
+ ...other
8032
+ } = props;
8033
+ return /* @__PURE__ */ jsx138(
8034
+ Component,
8035
+ {
8036
+ ...other,
8037
+ className: classNames(
8038
+ props.className,
8039
+ SCHEDULER_VIEW_CLASSNAME,
8040
+ {
8041
+ [`k-scheduler-${view}view`]: view
8042
+ }
8043
+ ),
8044
+ children: props.children
8045
+ }
8046
+ );
8047
+ };
8048
+ SchedulerView.states = states51;
8049
+ SchedulerView.options = options49;
8050
+ SchedulerView.className = SCHEDULER_VIEW_CLASSNAME;
8051
+ SchedulerView.defaultProps = defaultProps49;
8052
+ var scheduler_view_spec_default = SchedulerView;
8053
+
8054
+ // src/scheduler/scheduler.spec.tsx
8055
+ import { jsx as jsx139, jsxs as jsxs58 } from "react/jsx-runtime";
8056
+ var SCHEDULER_CLASSNAME = "k-scheduler";
8057
+ var states52 = [];
8058
+ var options50 = {};
8059
+ var defaultProps50 = {};
8060
+ var Scheduler = (props) => {
8061
+ const {
8062
+ view,
8063
+ toolbar,
8064
+ footer,
8065
+ layout,
8066
+ ...other
8067
+ } = props;
8068
+ return /* @__PURE__ */ jsxs58(
8069
+ "div",
8070
+ {
8071
+ ...other,
8072
+ className: classNames(
8073
+ props.className,
8074
+ SCHEDULER_CLASSNAME
8075
+ ),
8076
+ children: [
8077
+ toolbar,
8078
+ /* @__PURE__ */ jsx139(
8079
+ scheduler_view_spec_default,
8080
+ {
8081
+ className: classNames(
8082
+ {
8083
+ "k-scheduler-layout-flex": layout === "flex"
8084
+ }
8085
+ ),
8086
+ as: layout === "table" ? "table" : "div",
8087
+ view,
8088
+ children: props.children
8089
+ }
8090
+ ),
8091
+ footer
8092
+ ]
8093
+ }
8094
+ );
8095
+ };
8096
+ Scheduler.states = states52;
8097
+ Scheduler.options = options50;
8098
+ Scheduler.className = SCHEDULER_CLASSNAME;
8099
+ Scheduler.defaultProps = defaultProps50;
8100
+
8101
+ // src/scheduler/scheduler-header.spec.tsx
8102
+ import { jsx as jsx140 } from "react/jsx-runtime";
8103
+
8104
+ // src/scheduler/scheduler-content.spec.tsx
8105
+ import { jsx as jsx141 } from "react/jsx-runtime";
8106
+
8107
+ // src/scheduler/scheduler-times.spec.tsx
8108
+ import { jsx as jsx142 } from "react/jsx-runtime";
8109
+
8110
+ // src/scheduler/scheduler-table.spec.tsx
8111
+ import { jsx as jsx143 } from "react/jsx-runtime";
8112
+
8113
+ // src/scheduler/scheduler-cell.spec.tsx
8114
+ import { jsx as jsx144 } from "react/jsx-runtime";
8115
+ var className14 = "k-scheduler-cell";
8116
+ var states53 = [];
8117
+ var options51 = {};
8118
+ var defaultOptions = {};
8119
+ var SchedulerCell = (props) => {
8120
+ const {
8121
+ cellType,
8122
+ allDay,
8123
+ text,
8124
+ colspan,
8125
+ rowspan,
8126
+ as: Component = "div",
8127
+ ...other
8128
+ } = props;
8129
+ const textOrChildren = text ? text : props.children;
8130
+ return /* @__PURE__ */ jsx144(
8131
+ Component,
8132
+ {
8133
+ ...other,
8134
+ colSpan: colspan,
8135
+ rowSpan: rowspan,
8136
+ className: classNames(
8137
+ className14,
8138
+ props.className,
8139
+ {
8140
+ "k-scheduler-times-all-day": allDay
8141
+ },
8142
+ cellType?.map((t) => ({
8143
+ [`k-${t}-cell`]: true
8144
+ }))
8145
+ ),
8146
+ children: !allDay && text ? /* @__PURE__ */ jsx144("span", { className: "k-link k-nav-day", children: textOrChildren }) : textOrChildren
8147
+ }
8148
+ );
8149
+ };
8150
+ SchedulerCell.states = states53;
8151
+ SchedulerCell.options = options51;
8152
+ SchedulerCell.defaultProps = defaultOptions;
8153
+ SchedulerCell.className = className14;
8154
+
8155
+ // src/scheduler/scheduler-sticky-cell.spec.tsx
8156
+ import { jsx as jsx145 } from "react/jsx-runtime";
8157
+
8158
+ // src/scheduler/scheduler-row.spec.tsx
8159
+ import { jsx as jsx146 } from "react/jsx-runtime";
8160
+
8161
+ // src/scheduler/scheduler-toolbar.spec.tsx
8162
+ import { Fragment as Fragment48, jsx as jsx147, jsxs as jsxs59 } from "react/jsx-runtime";
8163
+
8164
+ // src/scheduler/scheduler-body.spec.tsx
8165
+ import { jsx as jsx148 } from "react/jsx-runtime";
8166
+
8167
+ // src/scheduler/scheduler-head.spec.tsx
8168
+ import { jsx as jsx149 } from "react/jsx-runtime";
8169
+
8170
+ // src/scheduler/scheduler-group.spec.tsx
8171
+ import { jsx as jsx150 } from "react/jsx-runtime";
8172
+ var className15 = "k-scheduler-group";
8173
+ var states54 = [];
8174
+ var options52 = {};
8175
+ var defaultProps51 = {
8176
+ orientation: "horizontal"
8177
+ };
8178
+ var SchedulerGroup = (props) => {
8179
+ const {
8180
+ orientation = defaultProps51.orientation,
8181
+ ...other
8182
+ } = props;
8183
+ return /* @__PURE__ */ jsx150(
8184
+ "div",
8185
+ {
8186
+ ...other,
8187
+ className: classNames(
8188
+ className15,
8189
+ props.className,
8190
+ {
8191
+ "k-group-horizontal": orientation === "horizontal"
8192
+ }
8193
+ ),
8194
+ children: props.children
8195
+ }
8196
+ );
8197
+ };
8198
+ SchedulerGroup.states = states54;
8199
+ SchedulerGroup.options = options52;
8200
+ SchedulerGroup.defaultProps = defaultProps51;
8201
+ SchedulerGroup.className = className15;
8202
+
8203
+ // src/scheduler/scheduler-event.spec.tsx
8204
+ import { Fragment as Fragment49, jsx as jsx151, jsxs as jsxs60 } from "react/jsx-runtime";
8205
+ var className16 = "k-event";
8206
+ var states55 = [
8207
+ States.hover,
8208
+ States.focus,
8209
+ States.selected
8210
+ ];
8211
+ var options53 = {};
8212
+ var defaultProps52 = {
8213
+ resizable: "vertical",
8214
+ eventPrefix: /* @__PURE__ */ jsx151(Icon, { icon: "arrow-rotate-cw" }),
8215
+ eventSuffix: /* @__PURE__ */ jsx151(Fragment49, { children: /* @__PURE__ */ jsx151("a", { href: "#", className: "k-link k-event-delete", children: /* @__PURE__ */ jsx151(Icon, { icon: "x" }) }) })
8216
+ };
8217
+ var SchedulerEvent = (props) => {
8218
+ const {
8219
+ inverse,
8220
+ ongoing,
8221
+ multiDay,
8222
+ resizable = defaultProps52.resizable,
8223
+ hover,
8224
+ focus,
8225
+ selected,
8226
+ eventPrefix = defaultProps52.eventPrefix,
8227
+ eventSuffix = defaultProps52.eventSuffix,
8228
+ ...others
8229
+ } = props;
8230
+ return /* @__PURE__ */ jsxs60(
8231
+ "div",
8232
+ {
8233
+ ...others,
8234
+ className: classNames(
8235
+ className16,
8236
+ props.className,
8237
+ stateClassNames(className16, {
8238
+ hover,
8239
+ focus,
8240
+ selected
8241
+ }),
8242
+ {
8243
+ "k-event-inverse": inverse,
8244
+ "k-event-ongoing": ongoing
8245
+ }
8246
+ ),
8247
+ children: [
8248
+ /* @__PURE__ */ jsx151("span", { className: "k-event-actions", children: eventPrefix }),
8249
+ /* @__PURE__ */ jsx151("div", { children: props.children }),
8250
+ /* @__PURE__ */ jsx151("span", { className: "k-event-actions", children: eventSuffix }),
8251
+ multiDay && /* @__PURE__ */ jsxs60(Fragment49, { children: [
8252
+ /* @__PURE__ */ jsx151("span", { className: "k-event-top-actions", children: /* @__PURE__ */ jsx151(Icon, { icon: "caret-alt-up" }) }),
8253
+ /* @__PURE__ */ jsx151("span", { className: "k-event-bottom-actions", children: /* @__PURE__ */ jsx151(Icon, { icon: "caret-alt-down" }) })
8254
+ ] }),
8255
+ resizable === "vertical" ? /* @__PURE__ */ jsxs60(Fragment49, { children: [
8256
+ /* @__PURE__ */ jsx151("span", { className: "k-resize-handle k-resize-n" }),
8257
+ /* @__PURE__ */ jsx151("span", { className: "k-resize-handle k-resize-s" })
8258
+ ] }) : resizable === "horizontal" && /* @__PURE__ */ jsxs60(Fragment49, { children: [
8259
+ /* @__PURE__ */ jsx151("span", { className: "k-resize-handle k-resize-w" }),
8260
+ /* @__PURE__ */ jsx151("span", { className: "k-resize-handle k-resize-e" })
8261
+ ] })
8262
+ ]
8263
+ }
8264
+ );
8265
+ };
8266
+ SchedulerEvent.states = states55;
8267
+ SchedulerEvent.options = options53;
8268
+ SchedulerEvent.defaultProps = defaultProps52;
8269
+ SchedulerEvent.className = className16;
8270
+
8271
+ // src/scheduler/scheduler-task.spec.tsx
8272
+ import { jsx as jsx152, jsxs as jsxs61 } from "react/jsx-runtime";
8273
+ var className17 = "k-task";
8274
+ var states56 = [];
8275
+ var options54 = {};
8276
+ var defaultProps53 = {
8277
+ markStyle: { backgroundColor: "gold" }
8278
+ };
8279
+ var SchedulerTask = (props) => {
8280
+ const {
8281
+ text,
8282
+ markStyle,
8283
+ recurring,
8284
+ closable,
8285
+ ...other
8286
+ } = props;
8287
+ return /* @__PURE__ */ jsxs61(
8288
+ "div",
8289
+ {
8290
+ ...other,
8291
+ className: classNames(
8292
+ className17,
8293
+ props.className
8294
+ ),
8295
+ children: [
8296
+ /* @__PURE__ */ jsx152("span", { className: "k-scheduler-mark", style: markStyle }),
8297
+ recurring && /* @__PURE__ */ jsx152(icon_spec_default, { icon: "arrow-rotate-cw" }),
8298
+ /* @__PURE__ */ jsx152("span", { className: "k-scheduler-task text", children: text }),
8299
+ closable && /* @__PURE__ */ jsx152("a", { href: "#", className: "k-link k-event-delete", children: /* @__PURE__ */ jsx152(icon_spec_default, { icon: "x" }) })
8300
+ ]
8301
+ }
8302
+ );
8303
+ };
8304
+ SchedulerTask.states = states56;
8305
+ SchedulerTask.options = options54;
8306
+ SchedulerTask.defaultProps = defaultProps53;
8307
+ SchedulerTask.className = className17;
8308
+
8309
+ // src/scheduler/templates/scheduler-week.tsx
8310
+ import { Fragment as Fragment50, jsx as jsx153, jsxs as jsxs62 } from "react/jsx-runtime";
8311
+
8312
+ // src/scheduler/templates/scheduler-month.tsx
8313
+ import { Fragment as Fragment51, jsx as jsx154, jsxs as jsxs63 } from "react/jsx-runtime";
8314
+
8315
+ // src/scheduler/templates/scheduler-timeline.tsx
8316
+ import { Fragment as Fragment52, jsx as jsx155, jsxs as jsxs64 } from "react/jsx-runtime";
8317
+
8318
+ // src/scheduler/templates/scheduler-agenda.tsx
8319
+ import { Fragment as Fragment53, jsx as jsx156, jsxs as jsxs65 } from "react/jsx-runtime";
8320
+
8321
+ // src/scheduler/templates/scheduler-flex-day.tsx
8322
+ import { Fragment as Fragment54, jsx as jsx157, jsxs as jsxs66 } from "react/jsx-runtime";
8323
+
8324
+ // src/scheduler/templates/scheduler-flex-week.tsx
8325
+ import { Fragment as Fragment55, jsx as jsx158, jsxs as jsxs67 } from "react/jsx-runtime";
8326
+
8327
+ // src/scheduler/templates/scheduler-flex-month.tsx
8328
+ import { Fragment as Fragment56, jsx as jsx159, jsxs as jsxs68 } from "react/jsx-runtime";
8329
+
8330
+ // src/scheduler/templates/scheduler-flex-timeline.tsx
8331
+ import { Fragment as Fragment57, jsx as jsx160, jsxs as jsxs69 } from "react/jsx-runtime";
8332
+
8333
+ // src/scheduler/templates/scheduler-flex-agenda.tsx
8334
+ import { Fragment as Fragment58, jsx as jsx161, jsxs as jsxs70 } from "react/jsx-runtime";
8335
+
8336
+ // src/scheduler/templates/scheduler-horizontal-grouping.tsx
8337
+ import { Fragment as Fragment59, jsx as jsx162, jsxs as jsxs71 } from "react/jsx-runtime";
8338
+
8339
+ // src/scheduler/templates/scheduler-vertical-grouping.tsx
8340
+ import { Fragment as Fragment60, jsx as jsx163, jsxs as jsxs72 } from "react/jsx-runtime";
8341
+
8342
+ // src/scheduler/templates/scheduler-flex-horizontal-grouping.tsx
8343
+ import { Fragment as Fragment61, jsx as jsx164, jsxs as jsxs73 } from "react/jsx-runtime";
8344
+
8345
+ // src/scheduler/templates/scheduler-flex-vertical-grouping.tsx
8346
+ import { Fragment as Fragment62, jsx as jsx165, jsxs as jsxs74 } from "react/jsx-runtime";
8347
+
8348
+ // src/scheduler/tests/scheduler-year-view.tsx
8349
+ import { Fragment as Fragment63, jsx as jsx166, jsxs as jsxs75 } from "react/jsx-runtime";
8350
+ var styles = `
8351
+ .k-scheduler-body {
8352
+ height: 500px;
8353
+ overflow: auto;
8022
8354
  }
8023
8355
  `;
8024
- var scheduler_react_timeline_default = () => /* @__PURE__ */ jsxs57(Fragment47, { children: [
8025
- /* @__PURE__ */ jsx137("style", { children: style }),
8026
- /* @__PURE__ */ jsxs57("div", { id: "test-area", className: "k-d-grid k-grid-cols-1", children: [
8027
- /* @__PURE__ */ jsxs57("div", { className: "k-widget k-scheduler k-scheduler-flex", style: { height: "400px" }, children: [
8028
- /* @__PURE__ */ jsxs57(Toolbar, { className: "k-scheduler-toolbar", children: [
8029
- /* @__PURE__ */ jsxs57(ButtonGroup, { className: "k-scheduler-navigation", children: [
8030
- /* @__PURE__ */ jsx137(Button, { className: "k-group-start", children: "Today" }),
8031
- /* @__PURE__ */ jsx137(Button, { icon: "caret-alt-left" }),
8032
- /* @__PURE__ */ jsx137(Button, { className: "k-group-end", icon: "caret-alt-right" })
8356
+ var scheduler_year_view_default = () => /* @__PURE__ */ jsxs75(Fragment63, { children: [
8357
+ /* @__PURE__ */ jsx166("style", { children: styles }),
8358
+ /* @__PURE__ */ jsx166("div", { id: "test-area", className: "k-d-grid k-grid-cols-1", children: /* @__PURE__ */ jsx166(
8359
+ Scheduler,
8360
+ {
8361
+ layout: "flex",
8362
+ view: "year",
8363
+ toolbar: /* @__PURE__ */ jsx166(Fragment63, { children: /* @__PURE__ */ jsxs75(Toolbar, { className: "k-scheduler-toolbar", children: [
8364
+ /* @__PURE__ */ jsxs75(ButtonGroup, { className: "k-scheduler-navigation", children: [
8365
+ /* @__PURE__ */ jsx166(Button, { className: "k-group-start", children: "Today" }),
8366
+ /* @__PURE__ */ jsx166(Button, { icon: "caret-alt-left" }),
8367
+ /* @__PURE__ */ jsx166(Button, { className: "k-group-end", icon: "caret-alt-right" })
8033
8368
  ] }),
8034
- /* @__PURE__ */ jsx137(Button, { icon: "calendar", className: "k-nav-current", fillMode: "flat", children: "Wednesday, June 24, 2020" }),
8035
- /* @__PURE__ */ jsx137("span", { className: "k-spacer" }),
8036
- /* @__PURE__ */ jsxs57(ButtonGroup, { className: "k-scheduler-views", children: [
8037
- /* @__PURE__ */ jsx137(Button, { className: "k-group-start", children: "Day" }),
8038
- /* @__PURE__ */ jsx137(Button, { children: "Week" }),
8039
- /* @__PURE__ */ jsx137(Button, { children: "Month" }),
8040
- /* @__PURE__ */ jsx137(Button, { selected: true, children: "Timeline" }),
8041
- /* @__PURE__ */ jsx137(Button, { className: "k-group-end", children: "Agenda" })
8369
+ /* @__PURE__ */ jsx166(Button, { icon: "calendar", className: "k-nav-current", fillMode: "flat", children: "2021" }),
8370
+ /* @__PURE__ */ jsx166("span", { className: "k-spacer" }),
8371
+ /* @__PURE__ */ jsxs75(ButtonGroup, { className: "k-scheduler-views", children: [
8372
+ /* @__PURE__ */ jsx166(Button, { className: "k-group-start", children: "Day" }),
8373
+ /* @__PURE__ */ jsx166(Button, { children: "Week" }),
8374
+ /* @__PURE__ */ jsx166(Button, { children: "Month" }),
8375
+ /* @__PURE__ */ jsx166(Button, { className: "k-group-end", selected: true, children: "Year" })
8042
8376
  ] })
8043
- ] }),
8044
- /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-layout k-scheduler-layout-flex k-scheduler-timeline-view", children: [
8045
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-head", style: { width: "7201px" }, children: /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-group k-group-horizontal", children: [
8046
- /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-row", children: [
8047
- /* @__PURE__ */ jsx137("div", { className: "k-sticky-cell", children: /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-side-cell", style: { minWidth: "66px" } }) }),
8048
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "Meeting Room 101" }),
8049
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "Meeting Room 201" })
8050
- ] }),
8051
- /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-row", children: [
8052
- /* @__PURE__ */ jsx137("div", { className: "k-sticky-cell", children: /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-side-cell", style: { minWidth: "66px" } }) }),
8053
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "Peter" }),
8054
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "Alex" }),
8055
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "Peter" }),
8056
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "Alex" })
8057
- ] }),
8058
- /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-row", children: [
8059
- /* @__PURE__ */ jsx137("div", { className: "k-sticky-cell", children: /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-side-cell", style: { minWidth: "66px" } }) }),
8060
- /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-cell k-group-cell", children: [
8061
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-row", children: /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "Jun 24" }) }),
8062
- /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-row", children: [
8063
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "8:00 AM" }),
8064
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "9:00 AM" }),
8065
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "10:00 AM" }),
8066
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "11:00 AM" }),
8067
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "12:00 PM" }),
8068
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "1:00 PM" }),
8069
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "2:00 PM" }),
8070
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "3:00 PM" }),
8071
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "4:00 PM" })
8072
- ] })
8073
- ] }),
8074
- /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-cell k-group-cell", children: [
8075
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-row", children: /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "Jun 24" }) }),
8076
- /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-row", children: [
8077
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "8:00 AM" }),
8078
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "9:00 AM" }),
8079
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "10:00 AM" }),
8080
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "11:00 AM" }),
8081
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "12:00 PM" }),
8082
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "1:00 PM" }),
8083
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "2:00 PM" }),
8084
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "3:00 PM" }),
8085
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "4:00 PM" })
8086
- ] })
8087
- ] }),
8088
- /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-cell k-group-cell", children: [
8089
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-row", children: /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "Jun 24" }) }),
8090
- /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-row", children: [
8091
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "8:00 AM" }),
8092
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "9:00 AM" }),
8093
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "10:00 AM" }),
8094
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "11:00 AM" }),
8095
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "12:00 PM" }),
8096
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "1:00 PM" }),
8097
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "2:00 PM" }),
8098
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "3:00 PM" }),
8099
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "4:00 PM" })
8100
- ] })
8101
- ] }),
8102
- /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-cell k-group-cell", children: [
8103
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-row", children: /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "Jun 24" }) }),
8104
- /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-row", children: [
8105
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "8:00 AM" }),
8106
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "9:00 AM" }),
8107
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "10:00 AM" }),
8108
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "11:00 AM" }),
8109
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "12:00 PM" }),
8110
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "1:00 PM" }),
8111
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "2:00 PM" }),
8112
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "3:00 PM" }),
8113
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "4:00 PM" })
8114
- ] })
8115
- ] })
8377
+ ] }) }),
8378
+ children: /* @__PURE__ */ jsx166(Fragment63, { children: /* @__PURE__ */ jsx166("div", { className: "k-scheduler-body", children: /* @__PURE__ */ jsxs75("div", { className: "k-calendar k-calendar-md k-calendar-range", children: [
8379
+ /* @__PURE__ */ jsxs75("div", { className: "k-calendar-header k-hstack k-hidden", children: [
8380
+ /* @__PURE__ */ jsx166(Button, { fillMode: "flat", className: "k-calendar-title k-title", children: "January 2020 - December 2020" }),
8381
+ /* @__PURE__ */ jsx166("span", { className: "k-spacer" }),
8382
+ /* @__PURE__ */ jsxs75("span", { className: "k-calendar-nav k-hstack", children: [
8383
+ /* @__PURE__ */ jsx166(Button, { fillMode: "flat", className: "k-prev-view", icon: "caret-alt-left" }),
8384
+ /* @__PURE__ */ jsx166(Button, { fillMode: "flat", className: "k-next-view", icon: "caret-alt-right" })
8116
8385
  ] })
8117
- ] }) }),
8118
- /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-body", style: { width: "7201px" }, children: [
8119
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-group k-group-horizontal", children: /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-row", children: [
8120
- /* @__PURE__ */ jsx137("div", { className: "k-sticky-cell", children: /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell k-side-cell k-scheduler-times-all-day", style: { minWidth: "66px" }, children: "All events" }) }),
8121
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-group-cell", children: /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-row", children: [
8122
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8123
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8124
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8125
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8126
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8127
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8128
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8129
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8130
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8131
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "36px" } }),
8132
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "66px" } }),
8133
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "66px" } }),
8134
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "36px" } }),
8135
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8136
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8137
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8138
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8139
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "36px" } })
8140
- ] }) }),
8141
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-group-cell", children: /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-row", children: [
8142
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8143
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8144
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8145
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8146
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8147
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8148
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8149
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8150
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8151
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "36px" } }),
8152
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "66px" } }),
8153
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "66px" } }),
8154
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "36px" } }),
8155
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8156
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8157
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8158
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8159
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "36px" } })
8160
- ] }) }),
8161
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-group-cell", children: /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-row", children: [
8162
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8163
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8164
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8165
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8166
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8167
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8168
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8169
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8170
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8171
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "36px" } }),
8172
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "62px" } }),
8173
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "62px" } }),
8174
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "36px" } }),
8175
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8176
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8177
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8178
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8179
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "36px" } })
8386
+ ] }),
8387
+ /* @__PURE__ */ jsxs75("div", { className: "k-calendar-view k-calendar-monthview k-hstack k-align-items-start k-justify-content-center", children: [
8388
+ /* @__PURE__ */ jsxs75("table", { className: "k-calendar-table k-month", children: [
8389
+ /* @__PURE__ */ jsx166("caption", { className: "k-calendar-caption k-month-header", children: "January 2020" }),
8390
+ /* @__PURE__ */ jsx166("thead", { className: "k-calendar-thead", children: /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8391
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Su" }),
8392
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Mo" }),
8393
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Tu" }),
8394
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "We" }),
8395
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Th" }),
8396
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Fr" }),
8397
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Sa" })
8180
8398
  ] }) }),
8181
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-group-cell", children: /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-row", children: [
8182
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8183
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8184
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8185
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8186
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8187
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8188
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8189
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8190
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8191
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "36px" } }),
8192
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "62px" } }),
8193
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "62px" } }),
8194
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "36px" } }),
8195
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8196
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8197
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8198
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8199
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "36px" } })
8200
- ] }) })
8201
- ] }) }),
8202
- /* @__PURE__ */ jsxs57("div", { className: "k-event", style: { cursor: "pointer", userSelect: "none", borderColor: "darkred", backgroundColor: "darkred", top: "0px", left: "772px", width: "296px", height: "25px" }, children: [
8203
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8204
- /* @__PURE__ */ jsxs57("div", { children: [
8205
- /* @__PURE__ */ jsx137("div", { className: "k-event-template k-event-time", children: "(11:30 AM - 1:00 PM): Car Service" }),
8206
- /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Car Service" })
8207
- ] }),
8208
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ jsx137(Icon, { icon: "x" }) }) }),
8209
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-w" }),
8210
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-e" })
8211
- ] }),
8212
- /* @__PURE__ */ jsxs57("div", { className: "k-event", style: { cursor: "pointer", userSelect: "none", borderColor: "darkred", backgroundColor: "darkred", top: "0px", left: "2552px", width: "296px", height: "25px" }, children: [
8213
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8214
- /* @__PURE__ */ jsxs57("div", { children: [
8215
- /* @__PURE__ */ jsx137("div", { className: "k-event-template k-event-time", children: "(11:30 AM - 1:00 PM): Car Service" }),
8216
- /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Car Service" })
8217
- ] }),
8218
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ jsx137(Icon, { icon: "x" }) }) }),
8219
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-w" }),
8220
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-e" })
8221
- ] }),
8222
- /* @__PURE__ */ jsxs57("div", { className: "k-event", style: { cursor: "pointer", userSelect: "none", borderColor: "green", backgroundColor: "green", top: "0px", left: "4332px", width: "296px", height: "25px" }, children: [
8223
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8224
- /* @__PURE__ */ jsxs57("div", { children: [
8225
- /* @__PURE__ */ jsx137("div", { className: "k-event-template k-event-time", children: "(11:30 AM - 1:00 PM): Car Service" }),
8226
- /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Car Service" })
8227
- ] }),
8228
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ jsx137(Icon, { icon: "x" }) }) }),
8229
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-w" }),
8230
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-e" })
8231
- ] }),
8232
- /* @__PURE__ */ jsxs57("div", { className: "k-event", style: { cursor: "pointer", userSelect: "none", borderColor: "green", backgroundColor: "green", top: "0px", left: "6113px", width: "296px", height: "25px" }, children: [
8233
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8234
- /* @__PURE__ */ jsxs57("div", { children: [
8235
- /* @__PURE__ */ jsx137("div", { className: "k-event-template k-event-time", children: "(11:30 AM - 1:00 PM): Car Service" }),
8236
- /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Car Service" })
8237
- ] }),
8238
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ jsx137(Icon, { icon: "x" }) }) }),
8239
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-w" }),
8240
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-e" })
8241
- ] }),
8242
- /* @__PURE__ */ jsxs57("div", { className: "k-event", style: { cursor: "pointer", userSelect: "none", borderColor: "darkred", backgroundColor: "darkred", top: "26px", left: "969px", width: "395px", height: "25px" }, children: [
8243
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8244
- /* @__PURE__ */ jsxs57("div", { children: [
8245
- /* @__PURE__ */ jsx137("div", { className: "k-event-template k-event-time", children: "(12:45 PM - 2:30 PM): Breakfast with Tom" }),
8246
- /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Breakfast with Tom" })
8247
- ] }),
8248
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ jsx137(Icon, { icon: "x" }) }) }),
8249
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-w" }),
8250
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-e" })
8251
- ] }),
8252
- /* @__PURE__ */ jsxs57("div", { className: "k-event", style: { cursor: "pointer", userSelect: "none", borderColor: "darkred", backgroundColor: "darkred", top: "26px", left: "2750px", width: "395px", height: "25px" }, children: [
8253
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8254
- /* @__PURE__ */ jsxs57("div", { children: [
8255
- /* @__PURE__ */ jsx137("div", { className: "k-event-template k-event-time", children: "(12:45 PM - 2:30 PM): Breakfast with Tom" }),
8256
- /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Breakfast with Tom" })
8257
- ] }),
8258
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ jsx137(Icon, { icon: "x" }) }) }),
8259
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-w" }),
8260
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-e" })
8261
- ] }),
8262
- /* @__PURE__ */ jsxs57("div", { className: "k-event", style: { cursor: "pointer", userSelect: "none", borderColor: "green", backgroundColor: "green", top: "26px", left: "4530px", width: "395px", height: "25px" }, children: [
8263
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8264
- /* @__PURE__ */ jsxs57("div", { children: [
8265
- /* @__PURE__ */ jsx137("div", { className: "k-event-template k-event-time", children: "(12:45 PM - 2:30 PM): Breakfast with Tom" }),
8266
- /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Breakfast with Tom" })
8267
- ] }),
8268
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ jsx137(Icon, { icon: "x" }) }) }),
8269
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-w" }),
8270
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-e" })
8271
- ] }),
8272
- /* @__PURE__ */ jsxs57("div", { className: "k-event", style: { cursor: "pointer", userSelect: "none", borderColor: "green", backgroundColor: "green", top: "26px", left: "6311px", width: "395px", height: "25px" }, children: [
8273
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8274
- /* @__PURE__ */ jsxs57("div", { children: [
8275
- /* @__PURE__ */ jsx137("div", { className: "k-event-template k-event-time", children: "(12:45 PM - 2:30 PM): Breakfast with Tom" }),
8276
- /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Breakfast with Tom" })
8277
- ] }),
8278
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ jsx137(Icon, { icon: "x" }) }) }),
8279
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-w" }),
8280
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-e" })
8281
- ] }),
8282
- /* @__PURE__ */ jsxs57("div", { className: "k-event", style: { cursor: "pointer", userSelect: "none", borderColor: "darkred", backgroundColor: "darkred", top: "0px", left: "1068px", width: "395px", height: "25px" }, children: [
8283
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8284
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Team planning meeting" }) }),
8285
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ jsx137(Icon, { icon: "x" }) }) }),
8286
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-w" }),
8287
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-e" })
8288
- ] }),
8289
- /* @__PURE__ */ jsxs57("div", { className: "k-event", style: { cursor: "pointer", userSelect: "none", borderColor: "darkred", backgroundColor: "darkred", top: "0px", left: "2849px", width: "395px", height: "25px" }, children: [
8290
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8291
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Team planning meeting" }) }),
8292
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ jsx137(Icon, { icon: "x" }) }) }),
8293
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-w" }),
8294
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-e" })
8295
- ] }),
8296
- /* @__PURE__ */ jsxs57("div", { className: "k-event", style: { cursor: "pointer", userSelect: "none", borderColor: "green", backgroundColor: "green", top: "0px", left: "4669px", width: "395px", height: "25px" }, children: [
8297
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8298
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Team planning meeting" }) }),
8299
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ jsx137(Icon, { icon: "x" }) }) }),
8300
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-w" }),
8301
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-e" })
8302
- ] }),
8303
- /* @__PURE__ */ jsxs57("div", { className: "k-event", style: { cursor: "pointer", userSelect: "none", borderColor: "green", backgroundColor: "green", top: "0px", left: "6410px", width: "395px", height: "25px" }, children: [
8304
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8305
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Team planning meeting" }) }),
8306
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ jsx137(Icon, { icon: "x" }) }) }),
8307
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-w" }),
8308
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-e" })
8309
- ] }),
8310
- /* @__PURE__ */ jsxs57("div", { className: "k-event", style: { cursor: "pointer", userSelect: "none", borderColor: "darkred", backgroundColor: "darkred", top: "52px", left: "1068px", width: "197px", height: "25px" }, children: [
8311
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8312
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Replace the printer on the 1st floor" }) }),
8313
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ jsx137(Icon, { icon: "x" }) }) }),
8314
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-w" }),
8315
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-e" })
8316
- ] }),
8317
- /* @__PURE__ */ jsxs57("div", { className: "k-event", style: { cursor: "pointer", userSelect: "none", borderColor: "darkred", backgroundColor: "darkred", top: "52px", left: "2849px", width: "197px", height: "25px" }, children: [
8318
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8319
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Replace the printer on the 1st floor" }) }),
8320
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ jsx137(Icon, { icon: "x" }) }) }),
8321
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-w" }),
8322
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-e" })
8323
- ] }),
8324
- /* @__PURE__ */ jsxs57("div", { className: "k-event", style: { cursor: "pointer", userSelect: "none", borderColor: "green", backgroundColor: "green", top: "52px", left: "4669px", width: "197px", height: "25px" }, children: [
8325
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8326
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Replace the printer on the 1st floor" }) }),
8327
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ jsx137(Icon, { icon: "x" }) }) }),
8328
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-w" }),
8329
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-e" })
8330
- ] }),
8331
- /* @__PURE__ */ jsxs57("div", { className: "k-event", style: { cursor: "pointer", userSelect: "none", borderColor: "green", backgroundColor: "green", top: "52px", left: "6410px", width: "197px", height: "25px" }, children: [
8332
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8333
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Replace the printer on the 1st floor" }) }),
8334
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ jsx137(Icon, { icon: "x" }) }) }),
8335
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-w" }),
8336
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-e" })
8337
- ] }),
8338
- /* @__PURE__ */ jsxs57("div", { className: "k-event", style: { cursor: "pointer", userSelect: "none", borderColor: "darkred", backgroundColor: "darkred", top: "0px", left: "1464px", width: "98px", height: "25px" }, children: [
8339
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8340
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Register new Access Cards" }) }),
8341
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ jsx137(Icon, { icon: "x" }) }) }),
8342
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-w" }),
8343
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-e" })
8344
- ] }),
8345
- /* @__PURE__ */ jsxs57("div", { className: "k-event", style: { cursor: "pointer", userSelect: "none", borderColor: "darkred", backgroundColor: "darkred", top: "0px", left: "3244px", width: "98px", height: "25px" }, children: [
8346
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8347
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Register new Access Cards" }) }),
8348
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ jsx137(Icon, { icon: "x" }) }) }),
8349
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-w" }),
8350
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-e" })
8351
- ] }),
8352
- /* @__PURE__ */ jsxs57("div", { className: "k-event", style: { cursor: "pointer", userSelect: "none", borderColor: "green", backgroundColor: "green", top: "0px", left: "5025px", width: "98px", height: "25px" }, children: [
8353
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8354
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Register new Access Cards" }) }),
8355
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ jsx137(Icon, { icon: "x" }) }) }),
8356
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-w" }),
8357
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-e" })
8358
- ] }),
8359
- /* @__PURE__ */ jsxs57("div", { className: "k-event", style: { cursor: "pointer", userSelect: "none", borderColor: "green", backgroundColor: "green", top: "0px", left: "6805px", width: "98px", height: "25px" }, children: [
8360
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8361
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Register new Access Cards" }) }),
8362
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ jsx137(Icon, { icon: "x" }) }) }),
8363
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-w" }),
8364
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-e" })
8365
- ] }),
8366
- /* @__PURE__ */ jsxs57("div", { className: "k-event", style: { cursor: "pointer", userSelect: "none", borderColor: "darkred", backgroundColor: "darkred", top: "0px", left: "1761px", width: "98px", height: "25px" }, children: [
8367
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8368
- /* @__PURE__ */ jsxs57("div", { children: [
8369
- /* @__PURE__ */ jsx137("div", { className: "k-event-template k-event-time", children: "(4:30 PM - 6:00 PM): Install new laptops in conference rooms" }),
8370
- /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Install new laptops in conference rooms" })
8371
- ] }),
8372
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ jsx137(Icon, { icon: "x" }) }) }),
8373
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-w" }),
8374
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-e" })
8375
- ] }),
8376
- /* @__PURE__ */ jsxs57("div", { className: "k-event", style: { cursor: "pointer", userSelect: "none", borderColor: "darkred", backgroundColor: "darkred", top: "0px", left: "3541px", width: "98px", height: "25px" }, children: [
8377
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8378
- /* @__PURE__ */ jsxs57("div", { children: [
8379
- /* @__PURE__ */ jsx137("div", { className: "k-event-template k-event-time", children: "(4:30 PM - 6:00 PM): Install new laptops in conference rooms" }),
8380
- /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Install new laptops in conference rooms" })
8381
- ] }),
8382
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ jsx137(Icon, { icon: "x" }) }) }),
8383
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-w" }),
8384
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-e" })
8399
+ /* @__PURE__ */ jsxs75("tbody", { className: "k-calendar-tbody", children: [
8400
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8401
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" }),
8402
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8403
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8404
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsxs75("span", { className: "k-link", children: [
8405
+ /* @__PURE__ */ jsx166("span", { className: "k-day", children: "1" }),
8406
+ /* @__PURE__ */ jsx166("span", { className: "k-day-indicator" })
8407
+ ] }) }),
8408
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsxs75("span", { className: "k-link", children: [
8409
+ /* @__PURE__ */ jsx166("span", { className: "k-day", children: "2" }),
8410
+ /* @__PURE__ */ jsx166("span", { className: "k-day-indicator" })
8411
+ ] }) }),
8412
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsxs75("span", { className: "k-link", children: [
8413
+ /* @__PURE__ */ jsx166("span", { className: "k-day", children: "3" }),
8414
+ /* @__PURE__ */ jsx166("span", { className: "k-day-indicator" })
8415
+ ] }) }),
8416
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "4" }) }) })
8417
+ ] }),
8418
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8419
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsxs75("span", { className: "k-link", children: [
8420
+ /* @__PURE__ */ jsx166("span", { className: "k-day", children: "5" }),
8421
+ /* @__PURE__ */ jsx166("span", { className: "k-day-indicator" })
8422
+ ] }) }),
8423
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "6" }) }) }),
8424
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "7" }) }) }),
8425
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsxs75("span", { className: "k-link", children: [
8426
+ /* @__PURE__ */ jsx166("span", { className: "k-day", children: "8" }),
8427
+ /* @__PURE__ */ jsx166("span", { className: "k-day-indicator" })
8428
+ ] }) }),
8429
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "9" }) }) }),
8430
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "10" }) }) }),
8431
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "11" }) }) })
8432
+ ] }),
8433
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8434
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "12" }) }) }),
8435
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsxs75("span", { className: "k-link", children: [
8436
+ /* @__PURE__ */ jsx166("span", { className: "k-day", children: "13" }),
8437
+ /* @__PURE__ */ jsx166("span", { className: "k-day-indicator" })
8438
+ ] }) }),
8439
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "14" }) }) }),
8440
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "15" }) }) }),
8441
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "16" }) }) }),
8442
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "17" }) }) }),
8443
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "18" }) }) })
8444
+ ] }),
8445
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8446
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "19" }) }) }),
8447
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "20" }) }) }),
8448
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsxs75("span", { className: "k-link", children: [
8449
+ /* @__PURE__ */ jsx166("span", { className: "k-day", children: "21" }),
8450
+ /* @__PURE__ */ jsx166("span", { className: "k-day-indicator" })
8451
+ ] }) }),
8452
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "22" }) }) }),
8453
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "23" }) }) }),
8454
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "24" }) }) }),
8455
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "25" }) }) })
8456
+ ] }),
8457
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8458
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "26" }) }) }),
8459
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "27" }) }) }),
8460
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "28" }) }) }),
8461
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "29" }) }) }),
8462
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "30" }) }) }),
8463
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsxs75("span", { className: "k-link", children: [
8464
+ /* @__PURE__ */ jsx166("span", { className: "k-day", children: "31" }),
8465
+ /* @__PURE__ */ jsx166("span", { className: "k-day-indicator" })
8466
+ ] }) }),
8467
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" })
8468
+ ] }),
8469
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8470
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" }),
8471
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8472
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8473
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8474
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8475
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8476
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" })
8477
+ ] })
8478
+ ] })
8385
8479
  ] }),
8386
- /* @__PURE__ */ jsxs57("div", { className: "k-event", style: { cursor: "pointer", userSelect: "none", borderColor: "green", backgroundColor: "green", top: "0px", left: "5322px", width: "98px", height: "25px" }, children: [
8387
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8388
- /* @__PURE__ */ jsxs57("div", { children: [
8389
- /* @__PURE__ */ jsx137("div", { className: "k-event-template k-event-time", children: "(4:30 PM - 6:00 PM): Install new laptops in conference rooms" }),
8390
- /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Install new laptops in conference rooms" })
8391
- ] }),
8392
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ jsx137(Icon, { icon: "x" }) }) }),
8393
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-w" }),
8394
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-e" })
8480
+ /* @__PURE__ */ jsxs75("table", { className: "k-calendar-table k-month", children: [
8481
+ /* @__PURE__ */ jsx166("caption", { className: "k-calendar-caption k-month-header", children: "February 2020" }),
8482
+ /* @__PURE__ */ jsx166("thead", { className: "k-calendar-thead", children: /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8483
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Su" }),
8484
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Mo" }),
8485
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Tu" }),
8486
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "We" }),
8487
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Th" }),
8488
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Fr" }),
8489
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Sa" })
8490
+ ] }) }),
8491
+ /* @__PURE__ */ jsxs75("tbody", { className: "k-calendar-tbody", children: [
8492
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8493
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" }),
8494
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8495
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8496
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8497
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8498
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8499
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "1" }) }) })
8500
+ ] }),
8501
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8502
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "2" }) }) }),
8503
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "3" }) }) }),
8504
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "4" }) }) }),
8505
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "5" }) }) }),
8506
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "6" }) }) }),
8507
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "7" }) }) }),
8508
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "8" }) }) })
8509
+ ] }),
8510
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8511
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "9" }) }) }),
8512
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "10" }) }) }),
8513
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "11" }) }) }),
8514
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "12" }) }) }),
8515
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "13" }) }) }),
8516
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "14" }) }) }),
8517
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "15" }) }) })
8518
+ ] }),
8519
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8520
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "16" }) }) }),
8521
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "17" }) }) }),
8522
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "18" }) }) }),
8523
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "19" }) }) }),
8524
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "20" }) }) }),
8525
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "21" }) }) }),
8526
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "22" }) }) })
8527
+ ] }),
8528
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8529
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "23" }) }) }),
8530
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "24" }) }) }),
8531
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "25" }) }) }),
8532
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "26" }) }) }),
8533
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "27" }) }) }),
8534
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "28" }) }) }),
8535
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "29" }) }) })
8536
+ ] }),
8537
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8538
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" }),
8539
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8540
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8541
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8542
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8543
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8544
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" })
8545
+ ] })
8546
+ ] })
8395
8547
  ] }),
8396
- /* @__PURE__ */ jsxs57("div", { className: "k-event", style: { cursor: "pointer", userSelect: "none", borderColor: "green", backgroundColor: "green", top: "0px", left: "7102px", width: "98px", height: "25px" }, children: [
8397
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8398
- /* @__PURE__ */ jsxs57("div", { children: [
8399
- /* @__PURE__ */ jsx137("div", { className: "k-event-template k-event-time", children: "(4:30 PM - 6:00 PM): Install new laptops in conference rooms" }),
8400
- /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Install new laptops in conference rooms" })
8401
- ] }),
8402
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ jsx137(Icon, { icon: "x" }) }) }),
8403
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-w" }),
8404
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-e" })
8548
+ /* @__PURE__ */ jsxs75("table", { className: "k-calendar-table k-month", children: [
8549
+ /* @__PURE__ */ jsx166("caption", { className: "k-calendar-caption k-month-header", children: "March 2020" }),
8550
+ /* @__PURE__ */ jsx166("thead", { className: "k-calendar-thead", children: /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8551
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Su" }),
8552
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Mo" }),
8553
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Tu" }),
8554
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "We" }),
8555
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Th" }),
8556
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Fr" }),
8557
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Sa" })
8558
+ ] }) }),
8559
+ /* @__PURE__ */ jsxs75("tbody", { className: "k-calendar-tbody", children: [
8560
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8561
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "1" }) }) }),
8562
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "2" }) }) }),
8563
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "3" }) }) }),
8564
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "4" }) }) }),
8565
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "5" }) }) }),
8566
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "6" }) }) }),
8567
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "7" }) }) })
8568
+ ] }),
8569
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8570
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "8" }) }) }),
8571
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "9" }) }) }),
8572
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "10" }) }) }),
8573
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "11" }) }) }),
8574
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "12" }) }) }),
8575
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "13" }) }) }),
8576
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "14" }) }) })
8577
+ ] }),
8578
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8579
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "15" }) }) }),
8580
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "16" }) }) }),
8581
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "17" }) }) }),
8582
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "18" }) }) }),
8583
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "19" }) }) }),
8584
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "20" }) }) }),
8585
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "21" }) }) })
8586
+ ] }),
8587
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8588
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "22" }) }) }),
8589
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "23" }) }) }),
8590
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "24" }) }) }),
8591
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "25" }) }) }),
8592
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "26" }) }) }),
8593
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "27" }) }) }),
8594
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "28" }) }) })
8595
+ ] }),
8596
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8597
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "29" }) }) }),
8598
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "30" }) }) }),
8599
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "31" }) }) }),
8600
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8601
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8602
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8603
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" })
8604
+ ] }),
8605
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8606
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" }),
8607
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8608
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8609
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8610
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8611
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8612
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" })
8613
+ ] })
8614
+ ] })
8405
8615
  ] }),
8406
- /* @__PURE__ */ jsxs57("div", { className: "k-event", style: { cursor: "pointer", userSelect: "none", borderColor: "darkred", backgroundColor: "darkred", top: "26px", left: "1761px", width: "98px", height: "25px" }, children: [
8407
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8408
- /* @__PURE__ */ jsxs57("div", { title: "Job Interview - Bernard Atkins", children: [
8409
- /* @__PURE__ */ jsx137("div", { className: "k-event-template k-event-time", children: "(4:30 PM - 5:30 PM): Job Interview - Bernard Atkins" }),
8410
- /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Job Interview - Bernard Atkins" })
8411
- ] }),
8412
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ jsx137(Icon, { icon: "x" }) }) }),
8413
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-w" }),
8414
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-e" })
8616
+ /* @__PURE__ */ jsxs75("table", { className: "k-calendar-table k-month", children: [
8617
+ /* @__PURE__ */ jsx166("caption", { className: "k-calendar-caption k-month-header", children: "April 2020" }),
8618
+ /* @__PURE__ */ jsx166("thead", { className: "k-calendar-thead", children: /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8619
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Su" }),
8620
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Mo" }),
8621
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Tu" }),
8622
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "We" }),
8623
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Th" }),
8624
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Fr" }),
8625
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Sa" })
8626
+ ] }) }),
8627
+ /* @__PURE__ */ jsxs75("tbody", { className: "k-calendar-tbody", children: [
8628
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8629
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" }),
8630
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8631
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8632
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "1" }) }) }),
8633
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "2" }) }) }),
8634
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "3" }) }) }),
8635
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "4" }) }) })
8636
+ ] }),
8637
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8638
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "5" }) }) }),
8639
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "6" }) }) }),
8640
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "7" }) }) }),
8641
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "8" }) }) }),
8642
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "9" }) }) }),
8643
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "10" }) }) }),
8644
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "11" }) }) })
8645
+ ] }),
8646
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8647
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "12" }) }) }),
8648
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "13" }) }) }),
8649
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "14" }) }) }),
8650
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "15" }) }) }),
8651
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "16" }) }) }),
8652
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "17" }) }) }),
8653
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "18" }) }) })
8654
+ ] }),
8655
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8656
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "19" }) }) }),
8657
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "20" }) }) }),
8658
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "21" }) }) }),
8659
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "22" }) }) }),
8660
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "23" }) }) }),
8661
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "24" }) }) }),
8662
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "25" }) }) })
8663
+ ] }),
8664
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8665
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "26" }) }) }),
8666
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "27" }) }) }),
8667
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "28" }) }) }),
8668
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "29" }) }) }),
8669
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "30" }) }) }),
8670
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8671
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" })
8672
+ ] }),
8673
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8674
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" }),
8675
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8676
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8677
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8678
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8679
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8680
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" })
8681
+ ] })
8682
+ ] })
8415
8683
  ] }),
8416
- /* @__PURE__ */ jsxs57("div", { className: "k-event", style: { cursor: "pointer", userSelect: "none", borderColor: "darkred", backgroundColor: "darkred", top: "26px", left: "3541px", width: "98px", height: "25px" }, children: [
8417
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8418
- /* @__PURE__ */ jsxs57("div", { title: "Job Interview - Bernard Atkins", children: [
8419
- /* @__PURE__ */ jsx137("div", { className: "k-event-template k-event-time", children: "(4:30 PM - 5:30 PM): Job Interview - Bernard Atkins" }),
8420
- /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Job Interview - Bernard Atkins" })
8421
- ] }),
8422
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ jsx137(Icon, { icon: "x" }) }) }),
8423
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-w" }),
8424
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-e" })
8684
+ /* @__PURE__ */ jsxs75("table", { className: "k-calendar-table k-month", children: [
8685
+ /* @__PURE__ */ jsx166("caption", { className: "k-calendar-caption k-month-header", children: "May 2020" }),
8686
+ /* @__PURE__ */ jsx166("thead", { className: "k-calendar-thead", children: /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8687
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Su" }),
8688
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Mo" }),
8689
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Tu" }),
8690
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "We" }),
8691
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Th" }),
8692
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Fr" }),
8693
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Sa" })
8694
+ ] }) }),
8695
+ /* @__PURE__ */ jsxs75("tbody", { className: "k-calendar-tbody", children: [
8696
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8697
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" }),
8698
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8699
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8700
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8701
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8702
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "1" }) }) }),
8703
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "2" }) }) })
8704
+ ] }),
8705
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8706
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "3" }) }) }),
8707
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "4" }) }) }),
8708
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "5" }) }) }),
8709
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "6" }) }) }),
8710
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "7" }) }) }),
8711
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "8" }) }) }),
8712
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "9" }) }) })
8713
+ ] }),
8714
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8715
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "10" }) }) }),
8716
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "11" }) }) }),
8717
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "12" }) }) }),
8718
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "13" }) }) }),
8719
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "14" }) }) }),
8720
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "15" }) }) }),
8721
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "16" }) }) })
8722
+ ] }),
8723
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8724
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "17" }) }) }),
8725
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "18" }) }) }),
8726
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "19" }) }) }),
8727
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "20" }) }) }),
8728
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "21" }) }) }),
8729
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "22" }) }) }),
8730
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "23" }) }) })
8731
+ ] }),
8732
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8733
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "24" }) }) }),
8734
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "25" }) }) }),
8735
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "26" }) }) }),
8736
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "27" }) }) }),
8737
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "28" }) }) }),
8738
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "29" }) }) }),
8739
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "30" }) }) })
8740
+ ] }),
8741
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8742
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "31" }) }) }),
8743
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8744
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8745
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8746
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8747
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8748
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" })
8749
+ ] })
8750
+ ] })
8425
8751
  ] }),
8426
- /* @__PURE__ */ jsxs57("div", { className: "k-event", style: { cursor: "pointer", userSelect: "none", borderColor: "green", backgroundColor: "green", top: "26px", left: "5322px", width: "98px", height: "25px" }, children: [
8427
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8428
- /* @__PURE__ */ jsxs57("div", { title: "Job Interview - Bernard Atkins", children: [
8429
- /* @__PURE__ */ jsx137("div", { className: "k-event-template k-event-time", children: "(4:30 PM - 5:30 PM): Job Interview - Bernard Atkins" }),
8430
- /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Job Interview - Bernard Atkins" })
8431
- ] }),
8432
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ jsx137(Icon, { icon: "x" }) }) }),
8433
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-w" }),
8434
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-e" })
8752
+ /* @__PURE__ */ jsxs75("table", { className: "k-calendar-table k-month", children: [
8753
+ /* @__PURE__ */ jsx166("caption", { className: "k-calendar-caption k-month-header", children: "June 2020" }),
8754
+ /* @__PURE__ */ jsx166("thead", { className: "k-calendar-thead", children: /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8755
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Su" }),
8756
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Mo" }),
8757
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Tu" }),
8758
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "We" }),
8759
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Th" }),
8760
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Fr" }),
8761
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Sa" })
8762
+ ] }) }),
8763
+ /* @__PURE__ */ jsxs75("tbody", { className: "k-calendar-tbody", children: [
8764
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8765
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" }),
8766
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "1" }) }) }),
8767
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "2" }) }) }),
8768
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "3" }) }) }),
8769
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "4" }) }) }),
8770
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "5" }) }) }),
8771
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "6" }) }) })
8772
+ ] }),
8773
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8774
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "7" }) }) }),
8775
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "8" }) }) }),
8776
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "9" }) }) }),
8777
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "10" }) }) }),
8778
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "11" }) }) }),
8779
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "12" }) }) }),
8780
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "13" }) }) })
8781
+ ] }),
8782
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8783
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "14" }) }) }),
8784
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "15" }) }) }),
8785
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "16" }) }) }),
8786
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "17" }) }) }),
8787
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "18" }) }) }),
8788
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "19" }) }) }),
8789
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "20" }) }) })
8790
+ ] }),
8791
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8792
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "21" }) }) }),
8793
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "22" }) }) }),
8794
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "23" }) }) }),
8795
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "24" }) }) }),
8796
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "25" }) }) }),
8797
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "26" }) }) }),
8798
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "27" }) }) })
8799
+ ] }),
8800
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8801
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "28" }) }) }),
8802
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "29" }) }) }),
8803
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "30" }) }) }),
8804
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8805
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8806
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8807
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" })
8808
+ ] }),
8809
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8810
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" }),
8811
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8812
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8813
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8814
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8815
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8816
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" })
8817
+ ] })
8818
+ ] })
8435
8819
  ] }),
8436
- /* @__PURE__ */ jsxs57("div", { className: "k-event", style: { cursor: "pointer", userSelect: "none", borderColor: "green", backgroundColor: "green", top: "26px", left: "7102px", width: "98px", height: "25px" }, children: [
8437
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8438
- /* @__PURE__ */ jsxs57("div", { title: "Job Interview - Bernard Atkins", children: [
8439
- /* @__PURE__ */ jsx137("div", { className: "k-event-template k-event-time", children: "(4:30 PM - 5:30 PM): Job Interview - Bernard Atkins" }),
8440
- /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Job Interview - Bernard Atkins" })
8441
- ] }),
8442
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ jsx137(Icon, { icon: "x" }) }) }),
8443
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-w" }),
8444
- /* @__PURE__ */ jsx137("span", { className: "k-resize-handle k-resize-e" })
8445
- ] })
8446
- ] })
8447
- ] }),
8448
- /* @__PURE__ */ jsx137(Toolbar, { className: "k-scheduler-footer", children: /* @__PURE__ */ jsx137(Button, { icon: "clock", className: "k-scheduler-fullday", children: "Show full day" }) })
8449
- ] }),
8450
- /* @__PURE__ */ jsx137("span", {}),
8451
- /* @__PURE__ */ jsx137("span", { children: "Scheduler with Slot Templates" }),
8452
- /* @__PURE__ */ jsxs57("div", { className: "k-widget k-scheduler k-scheduler-flex", style: { height: "400px" }, children: [
8453
- /* @__PURE__ */ jsxs57(Toolbar, { className: "k-scheduler-toolbar", children: [
8454
- /* @__PURE__ */ jsxs57(ButtonGroup, { className: "k-scheduler-navigation", children: [
8455
- /* @__PURE__ */ jsx137(Button, { className: "k-group-start", children: "Today" }),
8456
- /* @__PURE__ */ jsx137(Button, { icon: "caret-alt-left" }),
8457
- /* @__PURE__ */ jsx137(Button, { className: "k-group-end", icon: "caret-alt-right" })
8458
- ] }),
8459
- /* @__PURE__ */ jsx137(Button, { icon: "calendar", className: "k-nav-current", fillMode: "flat", children: "Wednesday, June 24, 2020" }),
8460
- /* @__PURE__ */ jsx137("span", { className: "k-spacer" }),
8461
- /* @__PURE__ */ jsxs57(ButtonGroup, { className: "k-scheduler-views", children: [
8462
- /* @__PURE__ */ jsx137(Button, { className: "k-group-start", children: "Day" }),
8463
- /* @__PURE__ */ jsx137(Button, { children: "Week" }),
8464
- /* @__PURE__ */ jsx137(Button, { children: "Month" }),
8465
- /* @__PURE__ */ jsx137(Button, { selected: true, children: "Timeline" }),
8466
- /* @__PURE__ */ jsx137(Button, { className: "k-group-end", children: "Agenda" })
8467
- ] })
8468
- ] }),
8469
- /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-layout k-scheduler-layout-flex k-scheduler-timeline-view", children: [
8470
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-head", style: { width: "7201px" }, children: /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-group k-group-horizontal", children: [
8471
- /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-row", children: [
8472
- /* @__PURE__ */ jsx137("div", { className: "k-sticky-cell", children: /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-side-cell", style: { minWidth: "66px" } }) }),
8473
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "Meeting Room 101" }),
8474
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "Meeting Room 201" })
8820
+ /* @__PURE__ */ jsxs75("table", { className: "k-calendar-table k-month", children: [
8821
+ /* @__PURE__ */ jsx166("caption", { className: "k-calendar-caption k-month-header", children: "July 2020" }),
8822
+ /* @__PURE__ */ jsx166("thead", { className: "k-calendar-thead", children: /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8823
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Su" }),
8824
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Mo" }),
8825
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Tu" }),
8826
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "We" }),
8827
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Th" }),
8828
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Fr" }),
8829
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Sa" })
8830
+ ] }) }),
8831
+ /* @__PURE__ */ jsxs75("tbody", { className: "k-calendar-tbody", children: [
8832
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8833
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" }),
8834
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8835
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8836
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "1" }) }) }),
8837
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "2" }) }) }),
8838
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "3" }) }) }),
8839
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "4" }) }) })
8840
+ ] }),
8841
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8842
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "5" }) }) }),
8843
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "6" }) }) }),
8844
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "7" }) }) }),
8845
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "8" }) }) }),
8846
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "9" }) }) }),
8847
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "10" }) }) }),
8848
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "11" }) }) })
8849
+ ] }),
8850
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8851
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "12" }) }) }),
8852
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "13" }) }) }),
8853
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "14" }) }) }),
8854
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "15" }) }) }),
8855
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "16" }) }) }),
8856
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "17" }) }) }),
8857
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "18" }) }) })
8858
+ ] }),
8859
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8860
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "19" }) }) }),
8861
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "20" }) }) }),
8862
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "21" }) }) }),
8863
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "22" }) }) }),
8864
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "23" }) }) }),
8865
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "24" }) }) }),
8866
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "25" }) }) })
8867
+ ] }),
8868
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8869
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "26" }) }) }),
8870
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "27" }) }) }),
8871
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "28" }) }) }),
8872
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "29" }) }) }),
8873
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "30" }) }) }),
8874
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "31" }) }) }),
8875
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" })
8876
+ ] }),
8877
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8878
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" }),
8879
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8880
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8881
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8882
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8883
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8884
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" })
8885
+ ] })
8886
+ ] })
8475
8887
  ] }),
8476
- /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-row", children: [
8477
- /* @__PURE__ */ jsx137("div", { className: "k-sticky-cell", children: /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-side-cell", style: { minWidth: "66px" } }) }),
8478
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "Peter" }),
8479
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "Alex" }),
8480
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "Peter" }),
8481
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "Alex" })
8888
+ /* @__PURE__ */ jsxs75("table", { className: "k-calendar-table k-month", children: [
8889
+ /* @__PURE__ */ jsx166("caption", { className: "k-calendar-caption k-month-header", children: "August 2020" }),
8890
+ /* @__PURE__ */ jsx166("thead", { className: "k-calendar-thead", children: /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8891
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Su" }),
8892
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Mo" }),
8893
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Tu" }),
8894
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "We" }),
8895
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Th" }),
8896
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Fr" }),
8897
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Sa" })
8898
+ ] }) }),
8899
+ /* @__PURE__ */ jsxs75("tbody", { className: "k-calendar-tbody", children: [
8900
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8901
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" }),
8902
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8903
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8904
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8905
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8906
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8907
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "1" }) }) })
8908
+ ] }),
8909
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8910
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "2" }) }) }),
8911
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "3" }) }) }),
8912
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "4" }) }) }),
8913
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "5" }) }) }),
8914
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "6" }) }) }),
8915
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "7" }) }) }),
8916
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "8" }) }) })
8917
+ ] }),
8918
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8919
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "9" }) }) }),
8920
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "10" }) }) }),
8921
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "11" }) }) }),
8922
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "12" }) }) }),
8923
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "13" }) }) }),
8924
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "14" }) }) }),
8925
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "15" }) }) })
8926
+ ] }),
8927
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8928
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "16" }) }) }),
8929
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "17" }) }) }),
8930
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "18" }) }) }),
8931
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "19" }) }) }),
8932
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "20" }) }) }),
8933
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "21" }) }) }),
8934
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "22" }) }) })
8935
+ ] }),
8936
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8937
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "23" }) }) }),
8938
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "24" }) }) }),
8939
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "25" }) }) }),
8940
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "26" }) }) }),
8941
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "27" }) }) }),
8942
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "28" }) }) }),
8943
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "29" }) }) })
8944
+ ] }),
8945
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8946
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "30" }) }) }),
8947
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "31" }) }) }),
8948
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8949
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8950
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8951
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8952
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" })
8953
+ ] })
8954
+ ] })
8482
8955
  ] }),
8483
- /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-row", children: [
8484
- /* @__PURE__ */ jsx137("div", { className: "k-sticky-cell", children: /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-side-cell", style: { minWidth: "66px" } }) }),
8485
- /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-cell k-group-cell", children: [
8486
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-row", children: /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "Jun 24" }) }),
8487
- /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-row", children: [
8488
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "8:00 AM" }),
8489
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "9:00 AM" }),
8490
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "10:00 AM" }),
8491
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "11:00 AM" }),
8492
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "12:00 PM" }),
8493
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "1:00 PM" }),
8494
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "2:00 PM" }),
8495
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "3:00 PM" }),
8496
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "4:00 PM" })
8956
+ /* @__PURE__ */ jsxs75("table", { className: "k-calendar-table k-month", children: [
8957
+ /* @__PURE__ */ jsx166("caption", { className: "k-calendar-caption k-month-header", children: "September 2020" }),
8958
+ /* @__PURE__ */ jsx166("thead", { className: "k-calendar-thead", children: /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8959
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Su" }),
8960
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Mo" }),
8961
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Tu" }),
8962
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "We" }),
8963
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Th" }),
8964
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Fr" }),
8965
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Sa" })
8966
+ ] }) }),
8967
+ /* @__PURE__ */ jsxs75("tbody", { className: "k-calendar-tbody", children: [
8968
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8969
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" }),
8970
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
8971
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "1" }) }) }),
8972
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "2" }) }) }),
8973
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "3" }) }) }),
8974
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "4" }) }) }),
8975
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "5" }) }) })
8976
+ ] }),
8977
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8978
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "6" }) }) }),
8979
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "7" }) }) }),
8980
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "8" }) }) }),
8981
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "9" }) }) }),
8982
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "10" }) }) }),
8983
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "11" }) }) }),
8984
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "12" }) }) })
8985
+ ] }),
8986
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8987
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "13" }) }) }),
8988
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "14" }) }) }),
8989
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "15" }) }) }),
8990
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "16" }) }) }),
8991
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "17" }) }) }),
8992
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "18" }) }) }),
8993
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "19" }) }) })
8994
+ ] }),
8995
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
8996
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "20" }) }) }),
8997
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "21" }) }) }),
8998
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "22" }) }) }),
8999
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "23" }) }) }),
9000
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "24" }) }) }),
9001
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "25" }) }) }),
9002
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "26" }) }) })
9003
+ ] }),
9004
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
9005
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "27" }) }) }),
9006
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "28" }) }) }),
9007
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "29" }) }) }),
9008
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "30" }) }) }),
9009
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9010
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9011
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" })
9012
+ ] }),
9013
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
9014
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" }),
9015
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9016
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9017
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9018
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9019
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9020
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" })
8497
9021
  ] })
8498
- ] }),
8499
- /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-cell k-group-cell", children: [
8500
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-row", children: /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "Jun 24" }) }),
8501
- /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-row", children: [
8502
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "8:00 AM" }),
8503
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "9:00 AM" }),
8504
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "10:00 AM" }),
8505
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "11:00 AM" }),
8506
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "12:00 PM" }),
8507
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "1:00 PM" }),
8508
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "2:00 PM" }),
8509
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "3:00 PM" }),
8510
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "4:00 PM" })
9022
+ ] })
9023
+ ] }),
9024
+ /* @__PURE__ */ jsxs75("table", { className: "k-calendar-table k-month", children: [
9025
+ /* @__PURE__ */ jsx166("caption", { className: "k-calendar-caption k-month-header", children: "October 2020" }),
9026
+ /* @__PURE__ */ jsx166("thead", { className: "k-calendar-thead", children: /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
9027
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Su" }),
9028
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Mo" }),
9029
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Tu" }),
9030
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "We" }),
9031
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Th" }),
9032
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Fr" }),
9033
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Sa" })
9034
+ ] }) }),
9035
+ /* @__PURE__ */ jsxs75("tbody", { className: "k-calendar-tbody", children: [
9036
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
9037
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" }),
9038
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9039
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9040
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9041
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "1" }) }) }),
9042
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "2" }) }) }),
9043
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "3" }) }) })
9044
+ ] }),
9045
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
9046
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "4" }) }) }),
9047
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "5" }) }) }),
9048
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "6" }) }) }),
9049
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "7" }) }) }),
9050
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "8" }) }) }),
9051
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "9" }) }) }),
9052
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "10" }) }) })
9053
+ ] }),
9054
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
9055
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "11" }) }) }),
9056
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "12" }) }) }),
9057
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "13" }) }) }),
9058
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "14" }) }) }),
9059
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "15" }) }) }),
9060
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "16" }) }) }),
9061
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "17" }) }) })
9062
+ ] }),
9063
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
9064
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "18" }) }) }),
9065
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "19" }) }) }),
9066
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "20" }) }) }),
9067
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "21" }) }) }),
9068
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "22" }) }) }),
9069
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "23" }) }) }),
9070
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "24" }) }) })
9071
+ ] }),
9072
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
9073
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "25" }) }) }),
9074
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "26" }) }) }),
9075
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "27" }) }) }),
9076
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "28" }) }) }),
9077
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "29" }) }) }),
9078
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "30" }) }) }),
9079
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "31" }) }) })
9080
+ ] }),
9081
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
9082
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" }),
9083
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9084
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9085
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9086
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9087
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9088
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" })
8511
9089
  ] })
8512
- ] }),
8513
- /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-cell k-group-cell", children: [
8514
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-row", children: /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "Jun 24" }) }),
8515
- /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-row", children: [
8516
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "8:00 AM" }),
8517
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "9:00 AM" }),
8518
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "10:00 AM" }),
8519
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "11:00 AM" }),
8520
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "12:00 PM" }),
8521
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "1:00 PM" }),
8522
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "2:00 PM" }),
8523
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "3:00 PM" }),
8524
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "4:00 PM" })
9090
+ ] })
9091
+ ] }),
9092
+ /* @__PURE__ */ jsxs75("table", { className: "k-calendar-table k-month", children: [
9093
+ /* @__PURE__ */ jsx166("caption", { className: "k-calendar-caption k-month-header", children: "November 2020" }),
9094
+ /* @__PURE__ */ jsx166("thead", { className: "k-calendar-thead", children: /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
9095
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Su" }),
9096
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Mo" }),
9097
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Tu" }),
9098
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "We" }),
9099
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Th" }),
9100
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Fr" }),
9101
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Sa" })
9102
+ ] }) }),
9103
+ /* @__PURE__ */ jsxs75("tbody", { className: "k-calendar-tbody", children: [
9104
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
9105
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "1" }) }) }),
9106
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "2" }) }) }),
9107
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "3" }) }) }),
9108
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "4" }) }) }),
9109
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "5" }) }) }),
9110
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "6" }) }) }),
9111
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "7" }) }) })
9112
+ ] }),
9113
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
9114
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "8" }) }) }),
9115
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "9" }) }) }),
9116
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "10" }) }) }),
9117
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "11" }) }) }),
9118
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "12" }) }) }),
9119
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "13" }) }) }),
9120
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "14" }) }) })
9121
+ ] }),
9122
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
9123
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "15" }) }) }),
9124
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "16" }) }) }),
9125
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "17" }) }) }),
9126
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "18" }) }) }),
9127
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "19" }) }) }),
9128
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "20" }) }) }),
9129
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "21" }) }) })
9130
+ ] }),
9131
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
9132
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "22" }) }) }),
9133
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "23" }) }) }),
9134
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "24" }) }) }),
9135
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "25" }) }) }),
9136
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "26" }) }) }),
9137
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "27" }) }) }),
9138
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "28" }) }) })
9139
+ ] }),
9140
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
9141
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "29" }) }) }),
9142
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "30" }) }) }),
9143
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9144
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9145
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9146
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9147
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" })
9148
+ ] }),
9149
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
9150
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" }),
9151
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9152
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9153
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9154
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9155
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9156
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" })
8525
9157
  ] })
8526
- ] }),
8527
- /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-cell k-group-cell", children: [
8528
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-row", children: /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "Jun 24" }) }),
8529
- /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-row", children: [
8530
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "8:00 AM" }),
8531
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "9:00 AM" }),
8532
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "10:00 AM" }),
8533
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "11:00 AM" }),
8534
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "12:00 PM" }),
8535
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "1:00 PM" }),
8536
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "2:00 PM" }),
8537
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "3:00 PM" }),
8538
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell", children: "4:00 PM" })
9158
+ ] })
9159
+ ] }),
9160
+ /* @__PURE__ */ jsxs75("table", { className: "k-calendar-table k-month", children: [
9161
+ /* @__PURE__ */ jsx166("caption", { className: "k-calendar-caption k-month-header", children: "December 2020" }),
9162
+ /* @__PURE__ */ jsx166("thead", { className: "k-calendar-thead", children: /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
9163
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Su" }),
9164
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Mo" }),
9165
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Tu" }),
9166
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "We" }),
9167
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Th" }),
9168
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Fr" }),
9169
+ /* @__PURE__ */ jsx166("th", { className: "k-calendar-th", children: "Sa" })
9170
+ ] }) }),
9171
+ /* @__PURE__ */ jsxs75("tbody", { className: "k-calendar-tbody", children: [
9172
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
9173
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" }),
9174
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9175
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "1" }) }) }),
9176
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "2" }) }) }),
9177
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "3" }) }) }),
9178
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "4" }) }) }),
9179
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "5" }) }) })
9180
+ ] }),
9181
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
9182
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "6" }) }) }),
9183
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "7" }) }) }),
9184
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "8" }) }) }),
9185
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "9" }) }) }),
9186
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "10" }) }) }),
9187
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "11" }) }) }),
9188
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "12" }) }) })
9189
+ ] }),
9190
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
9191
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "13" }) }) }),
9192
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "14" }) }) }),
9193
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "15" }) }) }),
9194
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "16" }) }) }),
9195
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "17" }) }) }),
9196
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "18" }) }) }),
9197
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "19" }) }) })
9198
+ ] }),
9199
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
9200
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "20" }) }) }),
9201
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "21" }) }) }),
9202
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "22" }) }) }),
9203
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "23" }) }) }),
9204
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "24" }) }) }),
9205
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "25" }) }) }),
9206
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "26" }) }) })
9207
+ ] }),
9208
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
9209
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "27" }) }) }),
9210
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "28" }) }) }),
9211
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "29" }) }) }),
9212
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "30" }) }) }),
9213
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td", children: /* @__PURE__ */ jsx166("span", { className: "k-link", children: /* @__PURE__ */ jsx166("span", { className: "k-day", children: "31" }) }) }),
9214
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9215
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" })
9216
+ ] }),
9217
+ /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
9218
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" }),
9219
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9220
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9221
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9222
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9223
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-other-month k-out-of-range" }),
9224
+ /* @__PURE__ */ jsx166("td", { className: "k-calendar-td k-weekend k-other-month k-out-of-range" })
8539
9225
  ] })
8540
9226
  ] })
8541
9227
  ] })
8542
- ] }) }),
8543
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-body", style: { width: "7201px" }, children: /* @__PURE__ */ jsx137("div", { className: "k-scheduler-group k-group-horizontal", children: /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-row", children: [
8544
- /* @__PURE__ */ jsx137("div", { className: "k-sticky-cell", children: /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-heading-cell k-side-cell k-scheduler-times-all-day", style: { minWidth: "66px" }, children: "All events" }) }),
8545
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-group-cell", children: /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-row", children: [
8546
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { backgroundColor: "#f5f5f5" }, children: /* @__PURE__ */ jsx137("div", { className: "!k-pos-absolute", children: "Start" }) }),
8547
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8548
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { backgroundColor: "#f5f5f5" }, children: /* @__PURE__ */ jsx137("div", { className: "!k-pos-absolute", children: "Start" }) }),
8549
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { backgroundColor: "#f5f5f5" }, children: /* @__PURE__ */ jsx137("div", { className: "!k-pos-absolute", children: "End" }) }),
8550
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { backgroundColor: "#f5f5f5" }, children: /* @__PURE__ */ jsx137("div", { className: "!k-pos-absolute", children: "Start" }) }),
8551
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { backgroundColor: "#f5f5f5" }, children: /* @__PURE__ */ jsx137("div", { className: "!k-pos-absolute", children: "End" }) }),
8552
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8553
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8554
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8555
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "36px" } }),
8556
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "62px" } }),
8557
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "62px" } }),
8558
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "36px", backgroundColor: "#f5f5f5" }, children: /* @__PURE__ */ jsx137("div", { className: "!k-pos-absolute", children: "Start" }) }),
8559
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8560
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8561
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8562
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8563
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "36px" } })
8564
- ] }) }),
8565
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-group-cell", children: /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-row", children: [
8566
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8567
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8568
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8569
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8570
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8571
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8572
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8573
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8574
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8575
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "36px" } }),
8576
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "62px" } }),
8577
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "62px" } }),
8578
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "36px" } }),
8579
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8580
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8581
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8582
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8583
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "36px" } })
8584
- ] }) }),
8585
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-group-cell", children: /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-row", children: [
8586
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8587
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8588
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8589
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8590
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8591
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8592
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8593
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8594
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8595
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "36px" } }),
8596
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "62px" } }),
8597
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "62px" } }),
8598
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "36px" } }),
8599
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8600
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8601
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8602
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8603
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "36px" } })
8604
- ] }) }),
8605
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-group-cell", children: /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-row", children: [
8606
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8607
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8608
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8609
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8610
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8611
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8612
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8613
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8614
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8615
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "36px" } }),
8616
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "62px" } }),
8617
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "62px" } }),
8618
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "36px" } }),
8619
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8620
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "10px" } }),
8621
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8622
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell" }),
8623
- /* @__PURE__ */ jsx137("div", { className: "k-scheduler-cell k-slot-cell", style: { userSelect: "none", minHeight: "36px" } })
8624
- ] }) })
8625
- ] }) }) })
8626
- ] }),
8627
- /* @__PURE__ */ jsx137(Toolbar, { className: "k-scheduler-footer", children: /* @__PURE__ */ jsx137(Button, { icon: "clock", className: "k-scheduler-fullday", children: "Show full day" }) })
8628
- ] })
8629
- ] })
9228
+ ] })
9229
+ ] }) }) })
9230
+ }
9231
+ ) })
8630
9232
  ] });
8631
9233
  export {
8632
- scheduler_react_timeline_default as default
9234
+ scheduler_year_view_default as default
8633
9235
  };