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