@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
@@ -16,12 +16,12 @@ var __copyProps = (to, from, except, desc) => {
16
16
  };
17
17
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
18
 
19
- // src/scheduler/tests/scheduler.tsx
20
- var scheduler_exports = {};
21
- __export(scheduler_exports, {
22
- default: () => scheduler_default
19
+ // src/scheduler/tests/scheduler-current-time-marker.tsx
20
+ var scheduler_current_time_marker_exports = {};
21
+ __export(scheduler_current_time_marker_exports, {
22
+ default: () => scheduler_current_time_marker_default
23
23
  });
24
- module.exports = __toCommonJS(scheduler_exports);
24
+ module.exports = __toCommonJS(scheduler_current_time_marker_exports);
25
25
 
26
26
  // src/misc/class-names.ts
27
27
  var classNames = (...args) => {
@@ -4374,6 +4374,7 @@ var Icon = (props) => {
4374
4374
  Icon.states = states3;
4375
4375
  Icon.options = options3;
4376
4376
  Icon.defaultProps = defaultProps3;
4377
+ var icon_spec_default = Icon;
4377
4378
 
4378
4379
  // src/button/button.spec.tsx
4379
4380
  var import_jsx_runtime4 = require("react/jsx-runtime");
@@ -8033,482 +8034,1067 @@ var import_jsx_runtime135 = require("react/jsx-runtime");
8033
8034
  // src/toolbar/templates/toolbar-angular-resizable.tsx
8034
8035
  var import_jsx_runtime136 = require("react/jsx-runtime");
8035
8036
 
8036
- // src/scheduler/tests/scheduler.tsx
8037
+ // src/scheduler/templates/scheduler-day.tsx
8037
8038
  var import_jsx_runtime137 = require("react/jsx-runtime");
8038
- var scheduler_default = () => /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(import_jsx_runtime137.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { id: "test-area", className: "k-d-grid k-grid-cols-1", children: [
8039
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { className: "k-widget k-scheduler", children: [
8040
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)(Toolbar, { className: "k-scheduler-toolbar", children: [
8041
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)(ButtonGroup, { className: "k-scheduler-navigation", children: [
8042
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Button, { className: "k-group-start", children: "Today" }),
8043
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Button, { icon: "caret-alt-left" }),
8044
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Button, { className: "k-group-end", icon: "caret-alt-right" })
8039
+
8040
+ // src/scheduler/scheduler-view.spec.tsx
8041
+ var import_jsx_runtime138 = require("react/jsx-runtime");
8042
+ var SCHEDULER_VIEW_CLASSNAME = "k-scheduler-layout";
8043
+ var states51 = [];
8044
+ var options49 = {};
8045
+ var defaultProps49 = {};
8046
+ var SchedulerView = (props) => {
8047
+ const {
8048
+ as: Component = "div",
8049
+ view,
8050
+ ...other
8051
+ } = props;
8052
+ return /* @__PURE__ */ (0, import_jsx_runtime138.jsx)(
8053
+ Component,
8054
+ {
8055
+ ...other,
8056
+ className: classNames(
8057
+ props.className,
8058
+ SCHEDULER_VIEW_CLASSNAME,
8059
+ {
8060
+ [`k-scheduler-${view}view`]: view
8061
+ }
8062
+ ),
8063
+ children: props.children
8064
+ }
8065
+ );
8066
+ };
8067
+ SchedulerView.states = states51;
8068
+ SchedulerView.options = options49;
8069
+ SchedulerView.className = SCHEDULER_VIEW_CLASSNAME;
8070
+ SchedulerView.defaultProps = defaultProps49;
8071
+ var scheduler_view_spec_default = SchedulerView;
8072
+
8073
+ // src/scheduler/scheduler.spec.tsx
8074
+ var import_jsx_runtime139 = require("react/jsx-runtime");
8075
+ var SCHEDULER_CLASSNAME = "k-scheduler";
8076
+ var states52 = [];
8077
+ var options50 = {};
8078
+ var defaultProps50 = {};
8079
+ var Scheduler = (props) => {
8080
+ const {
8081
+ view,
8082
+ toolbar,
8083
+ footer,
8084
+ layout,
8085
+ ...other
8086
+ } = props;
8087
+ return /* @__PURE__ */ (0, import_jsx_runtime139.jsxs)(
8088
+ "div",
8089
+ {
8090
+ ...other,
8091
+ className: classNames(
8092
+ props.className,
8093
+ SCHEDULER_CLASSNAME
8094
+ ),
8095
+ children: [
8096
+ toolbar,
8097
+ /* @__PURE__ */ (0, import_jsx_runtime139.jsx)(
8098
+ scheduler_view_spec_default,
8099
+ {
8100
+ className: classNames(
8101
+ {
8102
+ "k-scheduler-layout-flex": layout === "flex"
8103
+ }
8104
+ ),
8105
+ as: layout === "table" ? "table" : "div",
8106
+ view,
8107
+ children: props.children
8108
+ }
8109
+ ),
8110
+ footer
8111
+ ]
8112
+ }
8113
+ );
8114
+ };
8115
+ Scheduler.states = states52;
8116
+ Scheduler.options = options50;
8117
+ Scheduler.className = SCHEDULER_CLASSNAME;
8118
+ Scheduler.defaultProps = defaultProps50;
8119
+
8120
+ // src/scheduler/scheduler-header.spec.tsx
8121
+ var import_jsx_runtime140 = require("react/jsx-runtime");
8122
+ var className14 = "k-scheduler-header";
8123
+ var SchedulerHeader = (props) => /* @__PURE__ */ (0, import_jsx_runtime140.jsx)(
8124
+ "div",
8125
+ {
8126
+ ...props,
8127
+ className: classNames(
8128
+ className14,
8129
+ props.className
8130
+ ),
8131
+ children: /* @__PURE__ */ (0, import_jsx_runtime140.jsx)("div", { className: "k-scheduler-header-wrap", children: props.children })
8132
+ }
8133
+ );
8134
+
8135
+ // src/scheduler/scheduler-content.spec.tsx
8136
+ var import_jsx_runtime141 = require("react/jsx-runtime");
8137
+ var className15 = "k-scheduler-content";
8138
+ var SchedulerContent = (props) => /* @__PURE__ */ (0, import_jsx_runtime141.jsx)(
8139
+ "div",
8140
+ {
8141
+ ...props,
8142
+ className: classNames(
8143
+ className15,
8144
+ props.className
8145
+ ),
8146
+ children: props.children
8147
+ }
8148
+ );
8149
+
8150
+ // src/scheduler/scheduler-times.spec.tsx
8151
+ var import_jsx_runtime142 = require("react/jsx-runtime");
8152
+ var className16 = "k-scheduler-times";
8153
+ var SchedulerTimes = (props) => /* @__PURE__ */ (0, import_jsx_runtime142.jsx)(
8154
+ "div",
8155
+ {
8156
+ ...props,
8157
+ className: classNames(
8158
+ className16,
8159
+ props.className
8160
+ ),
8161
+ children: props.children
8162
+ }
8163
+ );
8164
+
8165
+ // src/scheduler/scheduler-table.spec.tsx
8166
+ var import_jsx_runtime143 = require("react/jsx-runtime");
8167
+ var className17 = "k-scheduler-table";
8168
+ var SchedulerTable = (props) => /* @__PURE__ */ (0, import_jsx_runtime143.jsx)(
8169
+ "table",
8170
+ {
8171
+ ...props,
8172
+ className: classNames(
8173
+ className17,
8174
+ props.className
8175
+ ),
8176
+ children: props.children
8177
+ }
8178
+ );
8179
+
8180
+ // src/scheduler/scheduler-cell.spec.tsx
8181
+ var import_jsx_runtime144 = require("react/jsx-runtime");
8182
+ var className18 = "k-scheduler-cell";
8183
+ var states53 = [];
8184
+ var options51 = {};
8185
+ var defaultOptions = {};
8186
+ var SchedulerCell = (props) => {
8187
+ const {
8188
+ cellType,
8189
+ allDay,
8190
+ text,
8191
+ colspan,
8192
+ rowspan,
8193
+ as: Component = "div",
8194
+ ...other
8195
+ } = props;
8196
+ const textOrChildren = text ? text : props.children;
8197
+ return /* @__PURE__ */ (0, import_jsx_runtime144.jsx)(
8198
+ Component,
8199
+ {
8200
+ ...other,
8201
+ colSpan: colspan,
8202
+ rowSpan: rowspan,
8203
+ className: classNames(
8204
+ className18,
8205
+ props.className,
8206
+ {
8207
+ "k-scheduler-times-all-day": allDay
8208
+ },
8209
+ cellType == null ? void 0 : cellType.map((t) => ({
8210
+ [`k-${t}-cell`]: true
8211
+ }))
8212
+ ),
8213
+ children: !allDay && text ? /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("span", { className: "k-link k-nav-day", children: textOrChildren }) : textOrChildren
8214
+ }
8215
+ );
8216
+ };
8217
+ SchedulerCell.states = states53;
8218
+ SchedulerCell.options = options51;
8219
+ SchedulerCell.defaultProps = defaultOptions;
8220
+ SchedulerCell.className = className18;
8221
+
8222
+ // src/scheduler/scheduler-sticky-cell.spec.tsx
8223
+ var import_jsx_runtime145 = require("react/jsx-runtime");
8224
+
8225
+ // src/scheduler/scheduler-row.spec.tsx
8226
+ var import_jsx_runtime146 = require("react/jsx-runtime");
8227
+
8228
+ // src/scheduler/scheduler-toolbar.spec.tsx
8229
+ var import_jsx_runtime147 = require("react/jsx-runtime");
8230
+ var className19 = "k-scheduler-toolbar";
8231
+ var SchedulerToolbar = (props) => {
8232
+ const { footer, ...others } = props;
8233
+ return /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(
8234
+ Toolbar,
8235
+ {
8236
+ ...others,
8237
+ className: classNames(
8238
+ props.className,
8239
+ {
8240
+ [footer ? "k-scheduler-footer" : className19]: true
8241
+ }
8242
+ ),
8243
+ children: props.children || /* @__PURE__ */ (0, import_jsx_runtime147.jsxs)(import_jsx_runtime147.Fragment, { children: [
8244
+ /* @__PURE__ */ (0, import_jsx_runtime147.jsxs)(ButtonGroup, { className: "k-scheduler-navigation", children: [
8245
+ /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(Button, { className: "k-group-start", children: "Today" }),
8246
+ /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(Button, { icon: "caret-alt-left" }),
8247
+ /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(Button, { className: "k-group-end", icon: "caret-alt-right" })
8248
+ ] }),
8249
+ /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(Button, { icon: "calendar", className: "k-nav-current", fillMode: "flat", children: "Monday, June 13, 2022" }),
8250
+ /* @__PURE__ */ (0, import_jsx_runtime147.jsx)("span", { className: "k-spacer" }),
8251
+ /* @__PURE__ */ (0, import_jsx_runtime147.jsxs)(ButtonGroup, { className: "k-scheduler-views", children: [
8252
+ /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(Button, { className: "k-group-start", selected: true, children: "Day" }),
8253
+ /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(Button, { children: "Week" }),
8254
+ /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(Button, { children: "Month" }),
8255
+ /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(Button, { children: "Timeline" }),
8256
+ /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(Button, { className: "k-group-end", children: "Agenda" })
8257
+ ] })
8258
+ ] })
8259
+ }
8260
+ );
8261
+ };
8262
+
8263
+ // src/scheduler/scheduler-body.spec.tsx
8264
+ var import_jsx_runtime148 = require("react/jsx-runtime");
8265
+ var className20 = "k-scheduler-body";
8266
+ var SchedulerBody = (props) => {
8267
+ const {
8268
+ as: Component = "div",
8269
+ ...other
8270
+ } = props;
8271
+ return /* @__PURE__ */ (0, import_jsx_runtime148.jsx)(
8272
+ Component,
8273
+ {
8274
+ ...other,
8275
+ className: classNames(
8276
+ className20,
8277
+ props.className
8278
+ ),
8279
+ children: props.children
8280
+ }
8281
+ );
8282
+ };
8283
+
8284
+ // src/scheduler/scheduler-head.spec.tsx
8285
+ var import_jsx_runtime149 = require("react/jsx-runtime");
8286
+ var className21 = "k-scheduler-head";
8287
+ var SchedulerHead = (props) => {
8288
+ const {
8289
+ as: Component = "div",
8290
+ ...other
8291
+ } = props;
8292
+ return /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(
8293
+ Component,
8294
+ {
8295
+ ...other,
8296
+ className: classNames(
8297
+ className21,
8298
+ props.className
8299
+ ),
8300
+ children: props.children
8301
+ }
8302
+ );
8303
+ };
8304
+
8305
+ // src/scheduler/scheduler-group.spec.tsx
8306
+ var import_jsx_runtime150 = require("react/jsx-runtime");
8307
+ var className22 = "k-scheduler-group";
8308
+ var states54 = [];
8309
+ var options52 = {};
8310
+ var defaultProps51 = {
8311
+ orientation: "horizontal"
8312
+ };
8313
+ var SchedulerGroup = (props) => {
8314
+ const {
8315
+ orientation = defaultProps51.orientation,
8316
+ ...other
8317
+ } = props;
8318
+ return /* @__PURE__ */ (0, import_jsx_runtime150.jsx)(
8319
+ "div",
8320
+ {
8321
+ ...other,
8322
+ className: classNames(
8323
+ className22,
8324
+ props.className,
8325
+ {
8326
+ "k-group-horizontal": orientation === "horizontal"
8327
+ }
8328
+ ),
8329
+ children: props.children
8330
+ }
8331
+ );
8332
+ };
8333
+ SchedulerGroup.states = states54;
8334
+ SchedulerGroup.options = options52;
8335
+ SchedulerGroup.defaultProps = defaultProps51;
8336
+ SchedulerGroup.className = className22;
8337
+
8338
+ // src/scheduler/scheduler-event.spec.tsx
8339
+ var import_jsx_runtime151 = require("react/jsx-runtime");
8340
+ var className23 = "k-event";
8341
+ var states55 = [
8342
+ States.hover,
8343
+ States.focus,
8344
+ States.selected
8345
+ ];
8346
+ var options53 = {};
8347
+ var defaultProps52 = {
8348
+ resizable: "vertical",
8349
+ eventPrefix: /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(Icon, { icon: "arrow-rotate-cw" }),
8350
+ eventSuffix: /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(import_jsx_runtime151.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("a", { href: "#", className: "k-link k-event-delete", children: /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(Icon, { icon: "x" }) }) })
8351
+ };
8352
+ var SchedulerEvent = (props) => {
8353
+ const {
8354
+ inverse,
8355
+ ongoing,
8356
+ multiDay,
8357
+ resizable = defaultProps52.resizable,
8358
+ hover,
8359
+ focus,
8360
+ selected,
8361
+ eventPrefix = defaultProps52.eventPrefix,
8362
+ eventSuffix = defaultProps52.eventSuffix,
8363
+ ...others
8364
+ } = props;
8365
+ return /* @__PURE__ */ (0, import_jsx_runtime151.jsxs)(
8366
+ "div",
8367
+ {
8368
+ ...others,
8369
+ className: classNames(
8370
+ className23,
8371
+ props.className,
8372
+ stateClassNames(className23, {
8373
+ hover,
8374
+ focus,
8375
+ selected
8376
+ }),
8377
+ {
8378
+ "k-event-inverse": inverse,
8379
+ "k-event-ongoing": ongoing
8380
+ }
8381
+ ),
8382
+ children: [
8383
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("span", { className: "k-event-actions", children: eventPrefix }),
8384
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("div", { children: props.children }),
8385
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("span", { className: "k-event-actions", children: eventSuffix }),
8386
+ multiDay && /* @__PURE__ */ (0, import_jsx_runtime151.jsxs)(import_jsx_runtime151.Fragment, { children: [
8387
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("span", { className: "k-event-top-actions", children: /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(Icon, { icon: "caret-alt-up" }) }),
8388
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("span", { className: "k-event-bottom-actions", children: /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(Icon, { icon: "caret-alt-down" }) })
8389
+ ] }),
8390
+ resizable === "vertical" ? /* @__PURE__ */ (0, import_jsx_runtime151.jsxs)(import_jsx_runtime151.Fragment, { children: [
8391
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("span", { className: "k-resize-handle k-resize-n" }),
8392
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("span", { className: "k-resize-handle k-resize-s" })
8393
+ ] }) : resizable === "horizontal" && /* @__PURE__ */ (0, import_jsx_runtime151.jsxs)(import_jsx_runtime151.Fragment, { children: [
8394
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("span", { className: "k-resize-handle k-resize-w" }),
8395
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("span", { className: "k-resize-handle k-resize-e" })
8396
+ ] })
8397
+ ]
8398
+ }
8399
+ );
8400
+ };
8401
+ SchedulerEvent.states = states55;
8402
+ SchedulerEvent.options = options53;
8403
+ SchedulerEvent.defaultProps = defaultProps52;
8404
+ SchedulerEvent.className = className23;
8405
+
8406
+ // src/scheduler/scheduler-task.spec.tsx
8407
+ var import_jsx_runtime152 = require("react/jsx-runtime");
8408
+ var className24 = "k-task";
8409
+ var states56 = [];
8410
+ var options54 = {};
8411
+ var defaultProps53 = {
8412
+ markStyle: { backgroundColor: "gold" }
8413
+ };
8414
+ var SchedulerTask = (props) => {
8415
+ const {
8416
+ text,
8417
+ markStyle,
8418
+ recurring,
8419
+ closable,
8420
+ ...other
8421
+ } = props;
8422
+ return /* @__PURE__ */ (0, import_jsx_runtime152.jsxs)(
8423
+ "div",
8424
+ {
8425
+ ...other,
8426
+ className: classNames(
8427
+ className24,
8428
+ props.className
8429
+ ),
8430
+ children: [
8431
+ /* @__PURE__ */ (0, import_jsx_runtime152.jsx)("span", { className: "k-scheduler-mark", style: markStyle }),
8432
+ recurring && /* @__PURE__ */ (0, import_jsx_runtime152.jsx)(icon_spec_default, { icon: "arrow-rotate-cw" }),
8433
+ /* @__PURE__ */ (0, import_jsx_runtime152.jsx)("span", { className: "k-scheduler-task text", children: text }),
8434
+ closable && /* @__PURE__ */ (0, import_jsx_runtime152.jsx)("a", { href: "#", className: "k-link k-event-delete", children: /* @__PURE__ */ (0, import_jsx_runtime152.jsx)(icon_spec_default, { icon: "x" }) })
8435
+ ]
8436
+ }
8437
+ );
8438
+ };
8439
+ SchedulerTask.states = states56;
8440
+ SchedulerTask.options = options54;
8441
+ SchedulerTask.defaultProps = defaultProps53;
8442
+ SchedulerTask.className = className24;
8443
+
8444
+ // src/scheduler/templates/scheduler-week.tsx
8445
+ var import_jsx_runtime153 = require("react/jsx-runtime");
8446
+ var SchedulerWeek = ({ style, ...props }) => /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(
8447
+ Scheduler,
8448
+ {
8449
+ style,
8450
+ layout: "table",
8451
+ view: "week",
8452
+ toolbar: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(import_jsx_runtime153.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)(SchedulerToolbar, { children: [
8453
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)(ButtonGroup, { className: "k-scheduler-navigation", children: [
8454
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(Button, { className: "k-group-start", children: "Today" }),
8455
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(Button, { icon: "caret-alt-left" }),
8456
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(Button, { className: "k-group-end", icon: "caret-alt-right" })
8045
8457
  ] }),
8046
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Button, { icon: "calendar", className: "k-nav-current", fillMode: "flat", children: "Monday, June 10, 2013 - Friday, June 14, 2013" }),
8047
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-spacer" }),
8048
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)(ButtonGroup, { className: "k-scheduler-views", children: [
8049
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Button, { className: "k-group-start", children: "Day" }),
8050
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Button, { selected: true, children: "Week" }),
8051
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Button, { children: "Month" }),
8052
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Button, { children: "Timeline" }),
8053
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Button, { className: "k-group-end", children: "Agenda" })
8458
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(Button, { icon: "calendar", className: "k-nav-current", fillMode: "flat", children: "10/04/2022 - 10/10/2022" }),
8459
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("span", { className: "k-spacer" }),
8460
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)(ButtonGroup, { className: "k-scheduler-views", children: [
8461
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(Button, { className: "k-group-start", children: "Day" }),
8462
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(Button, { selected: true, children: "Week" }),
8463
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(Button, { children: "Month" }),
8464
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(Button, { children: "Timeline" }),
8465
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(Button, { className: "k-group-end", children: "Agenda" })
8054
8466
  ] })
8055
- ] }),
8056
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("table", { className: "k-scheduler-layout k-scheduler-workWeekview k-scrollbar-v", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tbody", { children: [
8057
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8058
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-scheduler-times", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("table", { className: "k-scheduler-table", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tbody", { children: [
8059
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { style: { height: "37px" }, children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", {}) }),
8060
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { style: { height: "72px" }, children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-scheduler-times-all-day", children: "all day" }) })
8467
+ ] }) }),
8468
+ footer: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(import_jsx_runtime153.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerToolbar, { footer: true, children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(Button, { icon: "clock", className: "k-scheduler-fullday", children: "Show business hours" }) }) }),
8469
+ children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(import_jsx_runtime153.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)("tbody", { children: [
8470
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)(SchedulerHead, { as: "tr", children: [
8471
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("td", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerTimes, { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerTable, { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)("tbody", { children: [
8472
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { style: { height: "37px" }, children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th" }) }),
8473
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { style: { height: "36px" }, children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", allDay: true, text: "all day" }) })
8061
8474
  ] }) }) }) }),
8062
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-scheduler-header", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { className: "k-scheduler-header-wrap", children: [
8063
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("table", { className: "k-scheduler-table", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tbody", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8064
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { colSpan: 1, children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-link k-nav-day", children: "Mon 6/10" }) }),
8065
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { colSpan: 1, children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-link k-nav-day", children: "Tue 6/11" }) }),
8066
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { colSpan: 1, children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-link k-nav-day", children: "Wed 6/12" }) }),
8067
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { colSpan: 1, children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-link k-nav-day", children: "Thu 6/13" }) }),
8068
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { colSpan: 1, children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-link k-nav-day", children: "Fri 6/14" }) })
8475
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("td", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)(SchedulerHeader, { style: { paddingRight: "16px" }, children: [
8476
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerTable, { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tbody", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)("tr", { className: "k-scheduler-date-group", children: [
8477
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", text: "Sun 10/04" }),
8478
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", text: "Mon 10/05" }),
8479
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", text: "Tue 10/06" }),
8480
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", text: "Wed 10/07" }),
8481
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", text: "Thu 10/08" }),
8482
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", text: "Fri 10/09" }),
8483
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", text: "Sun 10/10" })
8069
8484
  ] }) }) }),
8070
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { style: { position: "relative" }, children: [
8071
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("table", { className: "k-scheduler-table k-scheduler-header-all-day", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tbody", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { style: { height: "72px" }, children: [
8072
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8073
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8074
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8075
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8076
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {})
8077
- ] }) }) }),
8078
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { style: { backgroundColor: "rgb(81, 160, 237)", borderColor: "rgb(81, 160, 237)", left: "0px", width: "888px", top: "0px" }, className: "k-event k-event-inverse", children: [
8079
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-event-actions", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Icon, { icon: "caret-alt-left" }) }),
8080
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-event-template", children: "Two Weeks in NZ" }) }),
8081
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("span", { className: "k-event-actions", children: [
8082
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Icon, { icon: "x" }) }),
8083
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Icon, { icon: "caret-alt-right" })
8084
- ] }),
8085
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-resize-handle k-resize-w" }),
8086
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-resize-handle k-resize-e" })
8087
- ] })
8088
- ] })
8089
- ] }) }) })
8485
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("div", { style: { position: "relative" }, children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerTable, { className: "k-scheduler-header-all-day", children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tbody", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)("tr", { style: { height: "36px" }, children: [
8486
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td" }),
8487
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td" }),
8488
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td" }),
8489
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td" }),
8490
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td" }),
8491
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td" }),
8492
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td" })
8493
+ ] }) }) }) })
8494
+ ] }) })
8090
8495
  ] }),
8091
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8092
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { className: "k-scheduler-times", style: { height: "195px" }, children: [
8093
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-current-time k-current-time-arrow-right", style: { left: "0px", top: "115px" } }),
8094
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("table", { className: "k-scheduler-table", style: { height: "1258px" }, children: /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tbody", { children: [
8095
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { rowSpan: 1, children: "7:00 AM" }) }),
8096
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-slot-cell", rowSpan: 1 }) }),
8097
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { rowSpan: 1, children: "8:00 AM" }) }),
8098
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-slot-cell", rowSpan: 1 }) }),
8099
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { rowSpan: 1, children: "9:00 AM" }) }),
8100
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-slot-cell", rowSpan: 1 }) }),
8101
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { rowSpan: 1, children: "10:00 AM" }) }),
8102
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-slot-cell", rowSpan: 1 }) }),
8103
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { rowSpan: 1, children: "11:00 AM" }) }),
8104
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-slot-cell", rowSpan: 1 }) }),
8105
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { rowSpan: 1, children: "12:00 PM" }) }),
8106
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-slot-cell", rowSpan: 1 }) }),
8107
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { rowSpan: 1, children: "1:00 PM" }) }),
8108
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-slot-cell", rowSpan: 1 }) }),
8109
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { rowSpan: 1, children: "2:00 PM" }) }),
8110
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-slot-cell", rowSpan: 1 }) }),
8111
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { rowSpan: 1, children: "3:00 PM" }) }),
8112
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-slot-cell", rowSpan: 1 }) }),
8113
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { rowSpan: 1, children: "4:00 PM" }) }),
8114
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-slot-cell", rowSpan: 1 }) }),
8115
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { rowSpan: 1, children: "5:00 PM" }) }),
8116
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-slot-cell", rowSpan: 1 }) }),
8117
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { rowSpan: 1, children: "6:00 PM" }) }),
8118
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-slot-cell", rowSpan: 1 }) }),
8119
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { rowSpan: 1, children: "7:00 PM" }) }),
8120
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-slot-cell", rowSpan: 1 }) }),
8121
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { rowSpan: 1, children: "8:00 PM" }) }),
8122
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-slot-cell", rowSpan: 1 }) }),
8123
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { rowSpan: 1, children: "9:00 PM" }) }),
8124
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-slot-cell", rowSpan: 1 }) }),
8125
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { rowSpan: 1, children: "10:00 PM" }) }),
8126
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-slot-cell", rowSpan: 1 }) }),
8127
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { rowSpan: 1, children: "11:00 PM" }) }),
8128
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-slot-cell", rowSpan: 1 }) })
8129
- ] }) })
8130
- ] }) }),
8131
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { className: "k-scheduler-content", style: { height: "195px" }, children: [
8132
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-current-time", style: { top: "115px", height: "1px", right: "0px", width: "861px", left: "0px" } }),
8133
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("table", { className: "k-scheduler-table", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tbody", { children: [
8134
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { className: "k-middle-row", children: [
8135
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8136
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8137
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8138
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8139
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8140
- ] }),
8141
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8142
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8143
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8144
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8145
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8146
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour k-selected" })
8147
- ] }),
8148
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { className: "k-middle-row", children: [
8149
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8150
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8151
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8152
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8153
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-selected" })
8154
- ] }),
8155
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8156
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8157
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8158
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8159
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8160
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {})
8161
- ] }),
8162
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { className: "k-middle-row", children: [
8163
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8164
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8165
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8166
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8167
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {})
8168
- ] }),
8169
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8170
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8171
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8172
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8173
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8174
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {})
8175
- ] }),
8176
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { className: "k-middle-row", children: [
8177
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8178
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8179
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8180
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8181
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {})
8182
- ] }),
8183
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8184
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8185
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8186
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8187
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8188
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {})
8189
- ] }),
8190
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { className: "k-middle-row", children: [
8191
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8192
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8193
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8194
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8195
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {})
8196
- ] }),
8197
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8198
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8199
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8200
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8201
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8202
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {})
8203
- ] }),
8204
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { className: "k-middle-row", children: [
8205
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8206
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8207
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8208
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8209
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {})
8210
- ] }),
8211
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8212
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8213
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8214
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8215
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8216
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {})
8217
- ] }),
8218
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { className: "k-middle-row", children: [
8219
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8220
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8221
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8222
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8223
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {})
8224
- ] }),
8225
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8226
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8227
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8228
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8229
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8230
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {})
8231
- ] }),
8232
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { className: "k-middle-row", children: [
8233
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8234
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8235
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8236
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8237
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {})
8238
- ] }),
8239
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8240
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8241
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8242
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8243
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8244
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {})
8245
- ] }),
8246
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { className: "k-middle-row", children: [
8247
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8248
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8249
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8250
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8251
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {})
8252
- ] }),
8253
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8254
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8255
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8256
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8257
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8258
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {})
8259
- ] }),
8260
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { className: "k-middle-row", children: [
8261
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8262
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8263
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8264
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8265
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {})
8266
- ] }),
8267
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8268
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8269
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8270
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8271
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8272
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {})
8273
- ] }),
8274
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { className: "k-middle-row", children: [
8275
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8276
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8277
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8278
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8279
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8280
- ] }),
8281
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8282
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8283
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8284
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8285
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8286
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8287
- ] }),
8288
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { className: "k-middle-row", children: [
8289
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8290
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8291
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8292
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8293
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8294
- ] }),
8295
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8296
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8297
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8298
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8299
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8300
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8301
- ] }),
8302
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { className: "k-middle-row", children: [
8303
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8304
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8305
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8306
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8307
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8308
- ] }),
8309
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8310
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8311
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8312
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8313
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8314
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8315
- ] }),
8316
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { className: "k-middle-row", children: [
8317
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8318
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8319
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8320
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8321
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8322
- ] }),
8323
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8324
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8325
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8326
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8327
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8328
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8329
- ] }),
8330
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { className: "k-middle-row", children: [
8331
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8332
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8333
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8334
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8335
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8496
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)(SchedulerBody, { as: "tr", children: [
8497
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("td", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerTimes, { style: { height: "195px" }, children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerTable, { style: { height: "400px" }, children: /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)("tbody", { children: [
8498
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("span", { children: "7:00 AM" }) }) }),
8499
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", cellType: ["slot"] }) }),
8500
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("span", { children: "8:00 AM" }) }) }),
8501
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", cellType: ["slot"] }) }),
8502
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("span", { children: "9:00 AM" }) }) }),
8503
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", cellType: ["slot"] }) }),
8504
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("span", { children: "10:00 AM" }) }) }),
8505
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", cellType: ["slot"] }) }),
8506
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("span", { children: "11:00 AM" }) }) }),
8507
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", cellType: ["slot"] }) }),
8508
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("span", { children: "12:00 AM" }) }) }),
8509
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", cellType: ["slot"] }) }),
8510
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("span", { children: "1:00 PM" }) }) }),
8511
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", cellType: ["slot"] }) }),
8512
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("span", { children: "2:00 PM" }) }) }),
8513
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", cellType: ["slot"] }) }),
8514
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("span", { children: "3:00 PM" }) }) }),
8515
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", cellType: ["slot"] }) }),
8516
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("span", { children: "4:00 PM" }) }) }),
8517
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", cellType: ["slot"] }) }),
8518
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("span", { children: "5:00 PM" }) }) }),
8519
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", cellType: ["slot"] }) })
8520
+ ] }) }) }) }),
8521
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("td", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)(SchedulerContent, { style: { height: "195px" }, children: [
8522
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerTable, { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)("tbody", { children: [
8523
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)("tr", { className: "k-middle-row", children: [
8524
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8525
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8526
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8527
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8528
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8529
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8530
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" })
8336
8531
  ] }),
8337
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8338
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8339
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8340
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8341
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8342
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8532
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)("tr", { children: [
8533
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8534
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8535
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8536
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8537
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8538
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8539
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" })
8343
8540
  ] }),
8344
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { className: "k-middle-row", children: [
8345
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8346
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8347
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8348
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8349
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8541
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)("tr", { className: "k-middle-row", children: [
8542
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8543
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8544
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8545
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8546
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8547
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8548
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" })
8350
8549
  ] }),
8351
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8352
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8353
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8354
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8355
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8356
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8550
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)("tr", { children: [
8551
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8552
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8553
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8554
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8555
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8556
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8557
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" })
8357
8558
  ] }),
8358
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { className: "k-middle-row", children: [
8359
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8360
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8361
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8362
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8363
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8559
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)("tr", { children: [
8560
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8561
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8562
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8563
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8564
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8565
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8566
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" })
8364
8567
  ] }),
8365
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8366
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8367
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8368
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8369
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8370
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8568
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)("tr", { children: [
8569
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8570
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8571
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8572
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8573
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8574
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8575
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" })
8371
8576
  ] })
8372
8577
  ] }) }),
8373
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { style: { top: "0px", height: "71px", width: "166px", left: "2px" }, className: "k-event", children: [
8374
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-event-actions" }),
8375
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { children: [
8376
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-event-template k-event-time", children: "7:00 AM - 8:00 AM" }),
8377
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-event-template", children: "Event title" })
8378
- ] }),
8379
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-event-actions", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Icon, { icon: "x" }) }) }),
8380
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-resize-handle k-resize-n" }),
8381
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-resize-handle k-resize-s" })
8382
- ] }),
8383
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { style: { top: "111px", height: "34px", width: "166px", left: "2px" }, className: "k-event k-event-ongoing", children: [
8384
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-event-actions" }),
8385
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { children: [
8386
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-event-template k-event-time", children: "8:30 AM - 9:00 AM" }),
8387
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-event-template", children: "Event title that is long and overflows, testing multiline and overflow styles" })
8388
- ] }),
8389
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-event-actions", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Icon, { icon: "x" }) }) }),
8390
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-resize-handle k-resize-n" }),
8391
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-resize-handle k-resize-s" })
8578
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)(SchedulerEvent, { ongoing: true, style: { top: "74px", left: "129px", height: "72px", width: "124px" }, children: [
8579
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("div", { className: "k-event-template k-event-time", children: "8:00 AM - 9:00 AM" }),
8580
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("div", { className: "k-event-template", children: "Event Title" })
8392
8581
  ] }),
8393
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { style: { top: "36px", height: "108px", width: "166px", left: "348px" }, className: "k-event k-hover k-event-ongoing", children: [
8394
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-event-actions", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Icon, { icon: "arrow-rotate-cw" }) }),
8395
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { children: [
8396
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-event-template k-event-time", children: "7:30 AM - 9:00 AM" }),
8397
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-event-template", children: "Hovered Recurring event" })
8398
- ] }),
8399
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-event-actions", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Icon, { icon: "x" }) }) }),
8400
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-resize-handle k-resize-n" }),
8401
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-resize-handle k-resize-s" })
8402
- ] }),
8403
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { style: { top: "110px", height: "71px", width: "166px", left: "520px" }, className: "k-event k-selected k-event-ongoing", children: [
8404
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-event-actions" }),
8405
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { children: [
8406
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-event-template k-event-time", children: "8:30 AM - 9:30 AM" }),
8407
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-event-template", children: "Selected event" })
8408
- ] }),
8409
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-event-actions", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Icon, { icon: "x" }) }) }),
8410
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-resize-handle k-resize-n" }),
8411
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-resize-handle k-resize-s" })
8412
- ] }),
8413
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { style: { top: "0px", height: "71px", width: "166px", left: "520px", color: "#333", backgroundColor: "#ddf", borderColor: "#fff" }, className: "k-event", children: [
8414
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-event-actions" }),
8415
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { children: [
8416
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-event-template k-event-time", children: "7:00 AM - 8:00 AM" }),
8417
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-event-template", children: "Custom color event" })
8418
- ] }),
8419
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-event-actions", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Icon, { icon: "x" }) }) }),
8420
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-resize-handle k-resize-n" }),
8421
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-resize-handle k-resize-s" })
8582
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)(SchedulerEvent, { ongoing: true, resizable: "vertical", style: { top: "147px", left: "255px", height: "72px", width: "378px" }, children: [
8583
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("div", { className: "k-event-template k-event-time", children: "9:00 AM - 10:00 AM" }),
8584
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("div", { className: "k-event-template", children: "Event Title" })
8422
8585
  ] }),
8423
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { className: "k-event k-event-drag-hint", style: { left: "175px", top: "0px", height: "71px", width: "166px" }, children: [
8424
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-event-actions" }),
8425
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { children: [
8426
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-event-template k-event-time", children: "8:00 AM - 9:00 AM" }),
8427
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-event-template", children: "Drag hint" })
8428
- ] }),
8429
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-event-actions", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Icon, { icon: "x" }) }) }),
8430
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-resize-handle k-resize-n" }),
8431
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-resize-handle k-resize-s" })
8432
- ] }),
8433
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { style: { backgroundColor: "rgb(248, 163, 152)", borderColor: "rgb(248, 163, 152)", left: "175px", top: "100px", height: "71px", width: "166px" }, className: "k-event k-event-inverse k-event-ongoing", children: [
8434
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-event-actions" }),
8435
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { children: [
8436
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-event-template k-event-time", children: "10:00 AM - 11:00 AM" }),
8437
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-event-template", children: "Inverse Background" })
8438
- ] }),
8439
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-event-actions", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Icon, { icon: "x" }) }) }),
8440
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-resize-handle k-resize-n" }),
8441
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-resize-handle k-resize-s" })
8442
- ] }),
8443
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { style: { top: "110px", height: "71px", width: "166px", left: "708px" }, className: "k-event k-event-ongoing", children: [
8444
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-event-actions" }),
8445
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { children: [
8446
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-event-template k-event-time", children: "8:30 AM - 9:30 AM" }),
8447
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-event-template", children: "Multi-Day event" })
8448
- ] }),
8449
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-event-actions", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Icon, { icon: "x" }) }) }),
8450
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-event-top-actions", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Icon, { icon: "caret-alt-up" }) }),
8451
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-event-bottom-actions", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Icon, { icon: "caret-alt-down" }) }),
8452
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-resize-handle k-resize-n" }),
8453
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-resize-handle k-resize-s" })
8586
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)(SchedulerEvent, { ongoing: true, style: { top: "74px", left: "636px", height: "72px", width: "124px" }, children: [
8587
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("div", { className: "k-event-template k-event-time", children: "8:00 AM - 9:00 AM" }),
8588
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("div", { className: "k-event-template", children: "Event Title" })
8454
8589
  ] })
8455
8590
  ] }) })
8456
8591
  ] })
8457
8592
  ] }) }),
8458
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Toolbar, { className: "k-scheduler-footer", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Button, { icon: "clock", className: "k-scheduler-fullday", children: "Show business hours" }) })
8459
- ] }),
8460
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { id: "scheduler", className: "k-widget k-scheduler", children: [
8461
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)(Toolbar, { className: "k-scheduler-toolbar", children: [
8462
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)(ButtonGroup, { className: "k-scheduler-navigation", children: [
8463
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Button, { className: "k-group-start", children: "Today" }),
8464
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Button, { icon: "caret-alt-left" }),
8465
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Button, { className: "k-group-end", icon: "caret-alt-right" })
8593
+ ...props
8594
+ }
8595
+ );
8596
+
8597
+ // src/scheduler/templates/scheduler-month.tsx
8598
+ var import_jsx_runtime154 = require("react/jsx-runtime");
8599
+
8600
+ // src/scheduler/templates/scheduler-timeline.tsx
8601
+ var import_jsx_runtime155 = require("react/jsx-runtime");
8602
+ var SchedulerTimeline = ({ style, ...props }) => /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(
8603
+ Scheduler,
8604
+ {
8605
+ style,
8606
+ layout: "table",
8607
+ view: "timeline",
8608
+ toolbar: /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(import_jsx_runtime155.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime155.jsxs)(SchedulerToolbar, { children: [
8609
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsxs)(ButtonGroup, { className: "k-scheduler-navigation", children: [
8610
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(Button, { className: "k-group-start", children: "Today" }),
8611
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(Button, { icon: "caret-alt-left" }),
8612
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(Button, { className: "k-group-end", icon: "caret-alt-right" })
8466
8613
  ] }),
8467
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Button, { icon: "calendar", className: "k-nav-current", fillMode: "flat", children: "Monday, February 18, 2019" }),
8468
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-spacer" }),
8469
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)(ButtonGroup, { className: "k-scheduler-views", children: [
8470
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Button, { className: "k-group-start", children: "Day" }),
8471
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Button, { children: "Week" }),
8472
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Button, { children: "Month" }),
8473
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Button, { className: "k-group-end", selected: true, children: "Agenda" })
8614
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(Button, { icon: "calendar", className: "k-nav-current", fillMode: "flat", children: "Monday, June 13, 2024" }),
8615
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)("span", { className: "k-spacer" }),
8616
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsxs)(ButtonGroup, { className: "k-scheduler-views", children: [
8617
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(Button, { className: "k-group-start", children: "Day" }),
8618
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(Button, { children: "Week" }),
8619
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(Button, { children: "Month" }),
8620
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(Button, { selected: true, children: "Timeline" }),
8621
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(Button, { className: "k-group-end", children: "Agenda" })
8474
8622
  ] })
8475
- ] }),
8476
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("table", { className: "k-scheduler-layout k-scheduler-timelineview k-scrollbar-h", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tbody", { children: [
8477
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8478
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-scheduler-times", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("table", { className: "k-scheduler-table", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tbody", { children: [
8479
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { style: { height: "31px" }, children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", {}) }),
8480
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { style: { height: "31px" }, children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", {}) })
8623
+ ] }) }),
8624
+ footer: /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(import_jsx_runtime155.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerToolbar, { footer: true, children: /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(Button, { icon: "clock", className: "k-scheduler-fullday", children: "Show business hours" }) }) }),
8625
+ children: /* @__PURE__ */ (0, import_jsx_runtime155.jsxs)("tbody", { children: [
8626
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsxs)(SchedulerHead, { as: "tr", children: [
8627
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)("td", { children: /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerTimes, { children: /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerTable, { children: /* @__PURE__ */ (0, import_jsx_runtime155.jsxs)("tbody", { children: [
8628
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)("tr", { style: { height: "37px" }, children: /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerCell, { as: "th" }) }),
8629
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)("tr", { style: { height: "37px" }, children: /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerCell, { as: "th" }) })
8481
8630
  ] }) }) }) }),
8482
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-scheduler-header", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { className: "k-scheduler-header-wrap", children: [
8483
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-current-time k-current-time-arrow-down", style: { left: "524.534px", top: "36px" } }),
8484
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("table", { className: "k-scheduler-table", style: { width: "100%" }, children: /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tbody", { children: [
8485
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { colSpan: 8, className: "k-slot-cell", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-link k-nav-day", children: "February 18" }) }) }),
8486
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8487
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { colSpan: 2, children: "7:00 AM" }),
8488
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { colSpan: 2, children: "8:00 AM" }),
8489
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { colSpan: 2, children: "9:00 AM" }),
8490
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { colSpan: 2, children: "10:00 AM" })
8491
- ] })
8492
- ] }) })
8493
- ] }) }) })
8631
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)("td", { children: /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerHeader, { children: /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerTable, { style: { width: "495%" }, children: /* @__PURE__ */ (0, import_jsx_runtime155.jsxs)("tbody", { children: [
8632
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)("tr", { className: "k-scheduler-date-group", children: /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerCell, { cellType: ["slot"], as: "th", colspan: 34, text: "June 13" }) }),
8633
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsxs)("tr", { children: [
8634
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerCell, { as: "th", colspan: 2, children: "7:00 AM" }),
8635
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerCell, { as: "th", colspan: 2, children: "8:00 AM" }),
8636
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerCell, { as: "th", colspan: 2, children: "9:00 AM" }),
8637
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerCell, { as: "th", colspan: 2, children: "10:00 AM" }),
8638
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerCell, { as: "th", colspan: 2, children: "11:00 AM" }),
8639
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerCell, { as: "th", colspan: 2, children: "12:00 PM" }),
8640
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerCell, { as: "th", colspan: 2, children: "1:00 PM" }),
8641
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerCell, { as: "th", colspan: 2, children: "2:00 PM" }),
8642
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerCell, { as: "th", colspan: 2, children: "3:00 PM" }),
8643
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerCell, { as: "th", colspan: 2, children: "4:00 PM" }),
8644
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerCell, { as: "th", colspan: 2, children: "5:00 PM" })
8645
+ ] })
8646
+ ] }) }) }) })
8494
8647
  ] }),
8495
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8496
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-scheduler-times", style: { height: "100px" }, children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("table", { className: "k-scheduler-table", style: { height: "50px" }, children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tbody", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { style: { height: "50px" }, children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { rowSpan: 1, children: "All events" }) }) }) }) }) }),
8497
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { className: "k-scheduler-content", style: { height: "100px" }, children: [
8498
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-current-time", style: { left: "528px", width: "1px", height: "100px", top: "0px" } }),
8499
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("table", { className: "k-scheduler-table", style: { width: "100%" }, children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tbody", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { style: { height: "50px" }, children: [
8500
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-today k-nonwork-hour" }),
8501
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-today k-nonwork-hour" }),
8502
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-today" }),
8503
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-today" }),
8504
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-today" }),
8505
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-today" }),
8506
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-today" }),
8507
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-today" })
8508
- ] }) }) })
8509
- ] }) })
8648
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsxs)(SchedulerBody, { as: "tr", children: [
8649
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)("td", { children: /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerTimes, { children: /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerTable, { children: /* @__PURE__ */ (0, import_jsx_runtime155.jsx)("tbody", { children: /* @__PURE__ */ (0, import_jsx_runtime155.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerCell, { as: "th", rowspan: 1, children: "All Events" }) }) }) }) }) }),
8650
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)("td", { children: /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerContent, { style: { height: "100px" }, children: /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerTable, { children: /* @__PURE__ */ (0, import_jsx_runtime155.jsx)("tbody", { children: /* @__PURE__ */ (0, import_jsx_runtime155.jsxs)("tr", { children: [
8651
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8652
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8653
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerCell, { as: "td" }),
8654
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerCell, { as: "td" }),
8655
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerCell, { as: "td" }),
8656
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerCell, { as: "td" }),
8657
+ /* @__PURE__ */ (0, import_jsx_runtime155.jsx)(SchedulerCell, { as: "td" })
8658
+ ] }) }) }) }) })
8510
8659
  ] })
8511
- ] }) }),
8512
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Toolbar, { className: "k-scheduler-footer", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Button, { icon: "clock", className: "k-scheduler-fullday", children: "Show business hours" }) })
8513
- ] })
8660
+ ] }),
8661
+ ...props
8662
+ }
8663
+ );
8664
+
8665
+ // src/scheduler/templates/scheduler-agenda.tsx
8666
+ var import_jsx_runtime156 = require("react/jsx-runtime");
8667
+
8668
+ // src/scheduler/templates/scheduler-flex-day.tsx
8669
+ var import_jsx_runtime157 = require("react/jsx-runtime");
8670
+
8671
+ // src/scheduler/templates/scheduler-flex-week.tsx
8672
+ var import_jsx_runtime158 = require("react/jsx-runtime");
8673
+
8674
+ // src/scheduler/templates/scheduler-flex-month.tsx
8675
+ var import_jsx_runtime159 = require("react/jsx-runtime");
8676
+
8677
+ // src/scheduler/templates/scheduler-flex-timeline.tsx
8678
+ var import_jsx_runtime160 = require("react/jsx-runtime");
8679
+
8680
+ // src/scheduler/templates/scheduler-flex-agenda.tsx
8681
+ var import_jsx_runtime161 = require("react/jsx-runtime");
8682
+
8683
+ // src/scheduler/templates/scheduler-horizontal-grouping.tsx
8684
+ var import_jsx_runtime162 = require("react/jsx-runtime");
8685
+
8686
+ // src/scheduler/templates/scheduler-vertical-grouping.tsx
8687
+ var import_jsx_runtime163 = require("react/jsx-runtime");
8688
+
8689
+ // src/scheduler/templates/scheduler-flex-horizontal-grouping.tsx
8690
+ var import_jsx_runtime164 = require("react/jsx-runtime");
8691
+
8692
+ // src/scheduler/templates/scheduler-flex-vertical-grouping.tsx
8693
+ var import_jsx_runtime165 = require("react/jsx-runtime");
8694
+
8695
+ // src/scheduler/tests/scheduler-current-time-marker.tsx
8696
+ var import_jsx_runtime166 = require("react/jsx-runtime");
8697
+ var scheduler_current_time_marker_default = () => /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(import_jsx_runtime166.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("div", { id: "test-area", className: "k-d-grid k-grid-cols-1", children: [
8698
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(
8699
+ SchedulerWeek,
8700
+ {
8701
+ toolbar: /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)(SchedulerToolbar, { children: [
8702
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)(ButtonGroup, { className: "k-scheduler-navigation", children: [
8703
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(Button, { className: "k-group-start", children: "Today" }),
8704
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(Button, { icon: "caret-alt-left" }),
8705
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(Button, { className: "k-group-end", icon: "caret-alt-right" })
8706
+ ] }),
8707
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(Button, { icon: "calendar", className: "k-nav-current", fillMode: "flat", children: "Monday, June 10, 2013 - Friday, June 14, 2013" }),
8708
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("span", { className: "k-spacer" }),
8709
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)(ButtonGroup, { className: "k-scheduler-views", children: [
8710
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(Button, { className: "k-group-start", children: "Day" }),
8711
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(Button, { selected: true, children: "Week" }),
8712
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(Button, { children: "Month" }),
8713
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(Button, { children: "Timeline" }),
8714
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(Button, { className: "k-group-end", children: "Agenda" })
8715
+ ] })
8716
+ ] }),
8717
+ footer: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(import_jsx_runtime166.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerToolbar, { footer: true, children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(Button, { icon: "clock", className: "k-scheduler-fullday", children: "Show business hours" }) }) }),
8718
+ children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(import_jsx_runtime166.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tbody", { children: [
8719
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)(SchedulerHead, { as: "tr", children: [
8720
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("td", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerTimes, { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerTable, { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tbody", { children: [
8721
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { style: { height: "37px" }, children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th" }) }),
8722
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { style: { height: "72px" }, children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", allDay: true, children: "all day" }) })
8723
+ ] }) }) }) }),
8724
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("td", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)(SchedulerHeader, { children: [
8725
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerTable, { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tbody", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { children: [
8726
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", text: "Mon 6/10", colspan: 1 }),
8727
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", text: "Tue 6/11", colspan: 1 }),
8728
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", text: "Wed 6/12", colspan: 1 }),
8729
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", text: "Thu 6/13", colspan: 1 }),
8730
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", text: "Fri 6/14", colspan: 1 })
8731
+ ] }) }) }),
8732
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("div", { style: { position: "relative" }, children: [
8733
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerTable, { className: "k-scheduler-header-all-day", children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tbody", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { style: { height: "72px" }, children: [
8734
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8735
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8736
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8737
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8738
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" })
8739
+ ] }) }) }),
8740
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(
8741
+ SchedulerEvent,
8742
+ {
8743
+ resizable: "horizontal",
8744
+ eventPrefix: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(Icon, { icon: "caret-alt-left" }),
8745
+ eventSuffix: /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)(import_jsx_runtime166.Fragment, { children: [
8746
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(Icon, { icon: "x" }) }),
8747
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(Icon, { icon: "caret-alt-right" })
8748
+ ] }),
8749
+ children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("div", { className: "k-event-template", children: "Two Weeks in NZ" }) })
8750
+ }
8751
+ )
8752
+ ] })
8753
+ ] }) })
8754
+ ] }),
8755
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)(SchedulerBody, { as: "tr", children: [
8756
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("td", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)(SchedulerTimes, { style: { height: "195px" }, children: [
8757
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("div", { className: "k-current-time k-current-time-arrow-right", style: { left: "0px", top: "115px" } }),
8758
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerTable, { style: { height: "1258px" }, children: /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tbody", { children: [
8759
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, children: "7:00 AM" }) }),
8760
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, cellType: ["slot"] }) }),
8761
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, children: "8:00 AM" }) }),
8762
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, cellType: ["slot"] }) }),
8763
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, children: "9:00 AM" }) }),
8764
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, cellType: ["slot"] }) }),
8765
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, children: "10:00 AM" }) }),
8766
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, cellType: ["slot"] }) }),
8767
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, children: "11:00 AM" }) }),
8768
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, cellType: ["slot"] }) }),
8769
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, children: "12:00 PM" }) }),
8770
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, cellType: ["slot"] }) }),
8771
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, children: "1:00 PM" }) }),
8772
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, cellType: ["slot"] }) }),
8773
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, children: "2:00 PM" }) }),
8774
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, cellType: ["slot"] }) }),
8775
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, children: "3:00 PM" }) }),
8776
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, cellType: ["slot"] }) }),
8777
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, children: "4:00 PM" }) }),
8778
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, cellType: ["slot"] }) }),
8779
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, children: "5:00 PM" }) }),
8780
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, cellType: ["slot"] }) }),
8781
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, children: "6:00 PM" }) }),
8782
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, cellType: ["slot"] }) }),
8783
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, children: "7:00 PM" }) }),
8784
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, cellType: ["slot"] }) }),
8785
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, children: "8:00 PM" }) }),
8786
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, cellType: ["slot"] }) }),
8787
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, children: "9:00 PM" }) }),
8788
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, cellType: ["slot"] }) }),
8789
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, children: "10:00 PM" }) }),
8790
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, cellType: ["slot"] }) }),
8791
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, children: "11:00 PM" }) }),
8792
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, cellType: ["slot"] }) })
8793
+ ] }) })
8794
+ ] }) }),
8795
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("td", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)(SchedulerContent, { style: { height: "195px" }, children: [
8796
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("div", { className: "k-current-time", style: { top: "115px", height: "1px", right: "0px", width: "888px", left: "0px;" } }),
8797
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerTable, { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tbody", { children: [
8798
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { className: "k-middle-row", children: [
8799
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8800
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8801
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8802
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8803
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" })
8804
+ ] }),
8805
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { className: "k-middle-row", children: [
8806
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8807
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8808
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8809
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8810
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" })
8811
+ ] }),
8812
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { className: "k-middle-row", children: [
8813
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8814
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8815
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8816
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8817
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" })
8818
+ ] }),
8819
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { children: [
8820
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8821
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8822
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8823
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8824
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" })
8825
+ ] }),
8826
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { className: "k-middle-row", children: [
8827
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8828
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8829
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8830
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8831
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" })
8832
+ ] }),
8833
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { children: [
8834
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8835
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8836
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8837
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8838
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" })
8839
+ ] }),
8840
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { className: "k-middle-row", children: [
8841
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8842
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8843
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8844
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8845
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" })
8846
+ ] }),
8847
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { children: [
8848
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8849
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8850
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8851
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8852
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" })
8853
+ ] }),
8854
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { className: "k-middle-row", children: [
8855
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8856
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8857
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8858
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8859
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" })
8860
+ ] }),
8861
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { children: [
8862
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8863
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8864
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8865
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8866
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" })
8867
+ ] }),
8868
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { className: "k-middle-row", children: [
8869
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8870
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8871
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8872
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8873
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" })
8874
+ ] }),
8875
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { children: [
8876
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8877
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8878
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8879
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8880
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" })
8881
+ ] }),
8882
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { className: "k-middle-row", children: [
8883
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8884
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8885
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8886
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8887
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" })
8888
+ ] }),
8889
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { children: [
8890
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8891
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8892
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8893
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8894
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" })
8895
+ ] }),
8896
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { className: "k-middle-row", children: [
8897
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8898
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8899
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8900
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8901
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" })
8902
+ ] }),
8903
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { children: [
8904
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8905
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8906
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8907
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8908
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" })
8909
+ ] }),
8910
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { className: "k-middle-row", children: [
8911
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8912
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8913
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8914
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8915
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" })
8916
+ ] }),
8917
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { children: [
8918
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8919
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8920
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8921
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8922
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" })
8923
+ ] }),
8924
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { className: "k-middle-row", children: [
8925
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8926
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8927
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8928
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8929
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" })
8930
+ ] }),
8931
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { children: [
8932
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8933
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8934
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8935
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" }),
8936
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td" })
8937
+ ] }),
8938
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { className: "k-middle-row", children: [
8939
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8940
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8941
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8942
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8943
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" })
8944
+ ] }),
8945
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { children: [
8946
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8947
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8948
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8949
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8950
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" })
8951
+ ] }),
8952
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { className: "k-middle-row", children: [
8953
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8954
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8955
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8956
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8957
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" })
8958
+ ] }),
8959
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { children: [
8960
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8961
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8962
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8963
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8964
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" })
8965
+ ] }),
8966
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { className: "k-middle-row", children: [
8967
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8968
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8969
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8970
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8971
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" })
8972
+ ] }),
8973
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { children: [
8974
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8975
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8976
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8977
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8978
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" })
8979
+ ] }),
8980
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { className: "k-middle-row", children: [
8981
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8982
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8983
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8984
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8985
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" })
8986
+ ] }),
8987
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { children: [
8988
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8989
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8990
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8991
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8992
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" })
8993
+ ] }),
8994
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { className: "k-middle-row", children: [
8995
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8996
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8997
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8998
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
8999
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" })
9000
+ ] }),
9001
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { children: [
9002
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
9003
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
9004
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
9005
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
9006
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" })
9007
+ ] }),
9008
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { className: "k-middle-row", children: [
9009
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
9010
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
9011
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
9012
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
9013
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" })
9014
+ ] }),
9015
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { children: [
9016
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
9017
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
9018
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
9019
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
9020
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" })
9021
+ ] }),
9022
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { className: "k-middle-row", children: [
9023
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
9024
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
9025
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
9026
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
9027
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" })
9028
+ ] }),
9029
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { children: [
9030
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
9031
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
9032
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
9033
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" }),
9034
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour" })
9035
+ ] })
9036
+ ] }) })
9037
+ ] }) })
9038
+ ] })
9039
+ ] }) })
9040
+ }
9041
+ ),
9042
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(
9043
+ SchedulerTimeline,
9044
+ {
9045
+ toolbar: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(import_jsx_runtime166.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)(SchedulerToolbar, { children: [
9046
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)(ButtonGroup, { className: "k-scheduler-navigation", children: [
9047
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(Button, { className: "k-group-start", children: "Today" }),
9048
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(Button, { icon: "caret-alt-left" }),
9049
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(Button, { className: "k-group-end", icon: "caret-alt-right" })
9050
+ ] }),
9051
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(Button, { icon: "calendar", className: "k-nav-current", fillMode: "flat", children: "Monday, February 18, 2019" }),
9052
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("span", { className: "k-spacer" }),
9053
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)(ButtonGroup, { className: "k-scheduler-views", children: [
9054
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(Button, { className: "k-group-start", children: "Day" }),
9055
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(Button, { children: "Week" }),
9056
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(Button, { children: "Month" }),
9057
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(Button, { selected: true, children: "Timeline" }),
9058
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(Button, { className: "k-group-end", children: "Agenda" })
9059
+ ] })
9060
+ ] }) }),
9061
+ footer: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(import_jsx_runtime166.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(Toolbar, { className: "k-scheduler-footer", children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(Button, { icon: "clock", className: "k-scheduler-fullday", children: "Show business hours" }) }) }),
9062
+ children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(import_jsx_runtime166.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tbody", { children: [
9063
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)(SchedulerHead, { as: "tr", children: [
9064
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("td", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerTimes, { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerTable, { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tbody", { children: [
9065
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { style: { height: "31px" }, children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th" }) }),
9066
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { style: { height: "31px" }, children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th" }) })
9067
+ ] }) }) }) }),
9068
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("td", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)(SchedulerHeader, { children: [
9069
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("div", { className: "k-current-time k-current-time-arrow-down", style: { left: "524.534px", top: "36px" } }),
9070
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerTable, { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tbody", { children: [
9071
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", text: "Monday, February 18, 2019", colspan: 8 }) }),
9072
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { children: [
9073
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", text: "7:00 AM", colspan: 2 }),
9074
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", text: "8:00 AM", colspan: 2 }),
9075
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", text: "9:00 AM", colspan: 2 }),
9076
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", text: "10:00 AM", colspan: 2 })
9077
+ ] })
9078
+ ] }) })
9079
+ ] }) })
9080
+ ] }),
9081
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)(SchedulerBody, { as: "tr", children: [
9082
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("td", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerTimes, { style: { height: "100px" }, children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerTable, { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tbody", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tr", { style: { height: "50px" }, children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "th", rowspan: 1, children: "All events" }) }) }) }) }) }),
9083
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("td", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)(SchedulerContent, { style: { height: "100px" }, children: [
9084
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("div", { className: "k-current-time", style: { left: "528px", width: "1px", height: "100px", top: "0px" } }),
9085
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerTable, { style: { width: "100%" }, children: /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("tbody", { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("tr", { style: { height: "50px" }, children: [
9086
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-today k-nonwork-hour" }),
9087
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-today k-nonwork-hour" }),
9088
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-today" }),
9089
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-today" }),
9090
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-today" }),
9091
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-today" }),
9092
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-today" }),
9093
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerCell, { as: "td", className: "k-today" })
9094
+ ] }) }) })
9095
+ ] }) })
9096
+ ] })
9097
+ ] }) })
9098
+ }
9099
+ )
8514
9100
  ] }) });