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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (190) hide show
  1. package/dist/cjs/scheduler/scheduler-body.spec.js +52 -0
  2. package/dist/cjs/scheduler/scheduler-cell.spec.js +75 -0
  3. package/dist/cjs/scheduler/scheduler-content.spec.js +46 -0
  4. package/dist/cjs/scheduler/scheduler-event.spec.js +4433 -0
  5. package/dist/cjs/scheduler/scheduler-group.spec.js +66 -0
  6. package/dist/cjs/scheduler/scheduler-head.spec.js +52 -0
  7. package/dist/cjs/scheduler/scheduler-header.spec.js +46 -0
  8. package/dist/cjs/scheduler/scheduler-row.spec.js +46 -0
  9. package/dist/cjs/scheduler/scheduler-sticky-cell.spec.js +46 -0
  10. package/dist/cjs/scheduler/scheduler-table.spec.js +46 -0
  11. package/dist/cjs/scheduler/scheduler-task.spec.js +4372 -0
  12. package/dist/cjs/scheduler/scheduler-times.spec.js +46 -0
  13. package/dist/cjs/scheduler/{tests/scheduler-jquery-agenda.js → scheduler-toolbar.spec.js} +38 -94
  14. package/dist/cjs/scheduler/scheduler-view.spec.js +65 -0
  15. package/dist/cjs/scheduler/scheduler.spec.js +113 -0
  16. package/dist/cjs/scheduler/templates/scheduler-agenda.js +8541 -0
  17. package/dist/cjs/scheduler/{tests/scheduler-angular-month-rtl.js → templates/scheduler-day.js} +1324 -987
  18. package/dist/cjs/scheduler/{tests/scheduler-angular-agenda.js → templates/scheduler-flex-agenda.js} +1272 -985
  19. package/dist/cjs/scheduler/{tests/scheduler-angular-month.js → templates/scheduler-flex-day.js} +1274 -972
  20. package/dist/cjs/scheduler/templates/scheduler-flex-horizontal-grouping.js +8560 -0
  21. package/dist/cjs/scheduler/{tests/scheduler-jquery-month.js → templates/scheduler-flex-month.js} +1294 -969
  22. package/dist/cjs/scheduler/{tests/scheduler-angular-agenda-rtl.js → templates/scheduler-flex-timeline.js} +1291 -988
  23. package/dist/cjs/scheduler/{tests/scheduler-react-agenda.js → templates/scheduler-flex-vertical-grouping.js} +1470 -1100
  24. package/dist/cjs/scheduler/templates/scheduler-flex-week.js +8597 -0
  25. package/dist/cjs/scheduler/templates/scheduler-horizontal-grouping.js +8640 -0
  26. package/dist/cjs/scheduler/templates/scheduler-month.js +8577 -0
  27. package/dist/cjs/scheduler/templates/scheduler-timeline.js +8543 -0
  28. package/dist/cjs/scheduler/{tests/scheduler-angular-day-rtl.js → templates/scheduler-vertical-grouping.js} +1345 -1017
  29. package/dist/cjs/scheduler/{tests/scheduler-angular.js → templates/scheduler-week.js} +1372 -1126
  30. package/dist/cjs/scheduler/tests/scheduler-agenda-view.js +8638 -0
  31. package/dist/cjs/scheduler/tests/{scheduler.js → scheduler-current-time-marker.js} +1045 -459
  32. package/dist/cjs/scheduler/tests/scheduler-day-view.js +8653 -0
  33. package/dist/cjs/scheduler/tests/scheduler-events.js +9006 -0
  34. package/dist/cjs/scheduler/tests/scheduler-month-view.js +8700 -0
  35. package/dist/cjs/scheduler/tests/scheduler-react-timeline-multi.js +1724 -1481
  36. package/dist/cjs/scheduler/tests/scheduler-timeline-view.js +8656 -0
  37. package/dist/cjs/scheduler/tests/{scheduler-angular-rtl.js → scheduler-week-view.js} +1558 -1139
  38. package/dist/cjs/scheduler/tests/{scheduler-react-timeline.js → scheduler-year-view.js} +1203 -601
  39. package/dist/esm/scheduler/scheduler-body.spec.mjs +30 -0
  40. package/dist/esm/scheduler/scheduler-cell.spec.mjs +53 -0
  41. package/dist/esm/scheduler/scheduler-content.spec.mjs +24 -0
  42. package/dist/esm/scheduler/scheduler-event.spec.mjs +4417 -0
  43. package/dist/esm/scheduler/scheduler-group.spec.mjs +44 -0
  44. package/dist/esm/scheduler/scheduler-head.spec.mjs +30 -0
  45. package/dist/esm/scheduler/scheduler-header.spec.mjs +24 -0
  46. package/dist/esm/scheduler/scheduler-row.spec.mjs +24 -0
  47. package/dist/esm/scheduler/scheduler-sticky-cell.spec.mjs +24 -0
  48. package/dist/esm/scheduler/scheduler-table.spec.mjs +24 -0
  49. package/dist/esm/scheduler/scheduler-task.spec.mjs +4356 -0
  50. package/dist/esm/scheduler/scheduler-times.spec.mjs +24 -0
  51. package/dist/esm/scheduler/{tests/scheduler-jquery-agenda.mjs → scheduler-toolbar.spec.mjs} +34 -90
  52. package/dist/esm/scheduler/scheduler-view.spec.mjs +43 -0
  53. package/dist/esm/scheduler/scheduler.spec.mjs +91 -0
  54. package/dist/esm/scheduler/templates/scheduler-agenda.mjs +8525 -0
  55. package/dist/esm/scheduler/{tests/scheduler-jquery-month.mjs → templates/scheduler-day.mjs} +1318 -984
  56. package/dist/esm/scheduler/{tests/scheduler-angular-agenda.mjs → templates/scheduler-flex-agenda.mjs} +1268 -981
  57. package/dist/esm/scheduler/{tests/scheduler-angular-month-rtl.mjs → templates/scheduler-flex-day.mjs} +1270 -968
  58. package/dist/esm/scheduler/templates/scheduler-flex-horizontal-grouping.mjs +8544 -0
  59. package/dist/esm/scheduler/{tests/scheduler-angular-day-rtl.mjs → templates/scheduler-flex-month.mjs} +1293 -997
  60. package/dist/esm/scheduler/{tests/scheduler-angular-month.mjs → templates/scheduler-flex-timeline.mjs} +1286 -968
  61. package/dist/esm/scheduler/{tests/scheduler-react-agenda.mjs → templates/scheduler-flex-vertical-grouping.mjs} +1466 -1096
  62. package/dist/esm/scheduler/templates/scheduler-flex-week.mjs +8581 -0
  63. package/dist/esm/scheduler/{tests/scheduler-angular.mjs → templates/scheduler-horizontal-grouping.mjs} +1376 -1121
  64. package/dist/esm/scheduler/templates/scheduler-month.mjs +8561 -0
  65. package/dist/esm/scheduler/{tests/scheduler-angular-agenda-rtl.mjs → templates/scheduler-timeline.mjs} +1386 -1077
  66. package/dist/esm/scheduler/templates/scheduler-vertical-grouping.mjs +8563 -0
  67. package/dist/esm/scheduler/{tests/scheduler-angular-rtl.mjs → templates/scheduler-week.mjs} +1368 -1122
  68. package/dist/esm/scheduler/tests/scheduler-agenda-view.mjs +8622 -0
  69. package/dist/esm/scheduler/tests/{scheduler.mjs → scheduler-current-time-marker.mjs} +1041 -455
  70. package/dist/esm/scheduler/tests/scheduler-day-view.mjs +8637 -0
  71. package/dist/esm/scheduler/tests/scheduler-events.mjs +8990 -0
  72. package/dist/esm/scheduler/tests/scheduler-month-view.mjs +8684 -0
  73. package/dist/esm/scheduler/tests/scheduler-react-timeline-multi.mjs +1724 -1481
  74. package/dist/esm/scheduler/tests/scheduler-timeline-view.mjs +8640 -0
  75. package/dist/esm/scheduler/tests/scheduler-week-view.mjs +8788 -0
  76. package/dist/esm/scheduler/tests/{scheduler-react-timeline.mjs → scheduler-year-view.mjs} +1199 -597
  77. package/dist/types/scheduler/index.d.ts +30 -0
  78. package/dist/types/scheduler/scheduler-body.spec.d.ts +5 -0
  79. package/dist/types/scheduler/scheduler-cell.spec.d.ts +19 -0
  80. package/dist/types/scheduler/scheduler-content.spec.d.ts +1 -0
  81. package/dist/types/scheduler/scheduler-event.spec.d.ts +24 -0
  82. package/dist/types/scheduler/scheduler-group.spec.d.ts +13 -0
  83. package/dist/types/scheduler/scheduler-head.spec.d.ts +5 -0
  84. package/dist/types/scheduler/scheduler-header.spec.d.ts +1 -0
  85. package/dist/types/scheduler/scheduler-row.spec.d.ts +1 -0
  86. package/dist/types/scheduler/scheduler-sticky-cell.spec.d.ts +1 -0
  87. package/dist/types/scheduler/scheduler-table.spec.d.ts +2 -0
  88. package/dist/types/scheduler/scheduler-task.spec.d.ts +19 -0
  89. package/dist/types/scheduler/scheduler-times.spec.d.ts +1 -0
  90. package/dist/types/scheduler/scheduler-toolbar.spec.d.ts +5 -0
  91. package/dist/types/scheduler/scheduler-view.spec.d.ts +15 -0
  92. package/dist/types/scheduler/scheduler.spec.d.ts +15 -0
  93. package/dist/types/scheduler/templates/scheduler-agenda.d.ts +1 -0
  94. package/dist/types/scheduler/templates/scheduler-day.d.ts +1 -0
  95. package/dist/types/scheduler/templates/scheduler-flex-agenda.d.ts +1 -0
  96. package/dist/types/scheduler/templates/scheduler-flex-day.d.ts +1 -0
  97. package/dist/types/scheduler/templates/scheduler-flex-horizontal-grouping.d.ts +1 -0
  98. package/dist/types/scheduler/templates/scheduler-flex-month.d.ts +1 -0
  99. package/dist/types/scheduler/templates/scheduler-flex-timeline.d.ts +1 -0
  100. package/dist/types/scheduler/templates/scheduler-flex-vertical-grouping.d.ts +1 -0
  101. package/dist/types/scheduler/templates/scheduler-flex-week.d.ts +1 -0
  102. package/dist/types/scheduler/templates/scheduler-horizontal-grouping.d.ts +1 -0
  103. package/dist/types/scheduler/templates/scheduler-month.d.ts +1 -0
  104. package/dist/types/scheduler/templates/scheduler-timeline.d.ts +1 -0
  105. package/dist/types/scheduler/templates/scheduler-vertical-grouping.d.ts +1 -0
  106. package/dist/types/scheduler/templates/scheduler-week.d.ts +1 -0
  107. package/package.json +2 -2
  108. package/src/scheduler/index.ts +30 -0
  109. package/src/scheduler/scheduler-body.spec.tsx +25 -0
  110. package/src/scheduler/scheduler-cell.spec.tsx +68 -0
  111. package/src/scheduler/scheduler-content.spec.tsx +17 -0
  112. package/src/scheduler/scheduler-event.spec.tsx +105 -0
  113. package/src/scheduler/scheduler-group.spec.tsx +47 -0
  114. package/src/scheduler/scheduler-head.spec.tsx +25 -0
  115. package/src/scheduler/scheduler-header.spec.tsx +19 -0
  116. package/src/scheduler/scheduler-row.spec.tsx +17 -0
  117. package/src/scheduler/scheduler-sticky-cell.spec.tsx +18 -0
  118. package/src/scheduler/scheduler-table.spec.tsx +18 -0
  119. package/src/scheduler/scheduler-task.spec.tsx +60 -0
  120. package/src/scheduler/scheduler-times.spec.tsx +17 -0
  121. package/src/scheduler/scheduler-toolbar.spec.tsx +50 -0
  122. package/src/scheduler/scheduler-view.spec.tsx +47 -0
  123. package/src/scheduler/scheduler.spec.tsx +60 -0
  124. package/src/scheduler/templates/scheduler-agenda.tsx +123 -0
  125. package/src/scheduler/templates/scheduler-day.tsx +228 -0
  126. package/src/scheduler/templates/scheduler-flex-agenda.tsx +131 -0
  127. package/src/scheduler/templates/scheduler-flex-day.tsx +153 -0
  128. package/src/scheduler/templates/scheduler-flex-horizontal-grouping.tsx +336 -0
  129. package/src/scheduler/templates/scheduler-flex-month.tsx +156 -0
  130. package/src/scheduler/templates/scheduler-flex-timeline.tsx +114 -0
  131. package/src/scheduler/templates/scheduler-flex-vertical-grouping.tsx +345 -0
  132. package/src/scheduler/templates/scheduler-flex-week.tsx +210 -0
  133. package/src/scheduler/templates/scheduler-horizontal-grouping.tsx +265 -0
  134. package/src/scheduler/templates/scheduler-month.tsx +166 -0
  135. package/src/scheduler/templates/scheduler-timeline.tsx +116 -0
  136. package/src/scheduler/templates/scheduler-vertical-grouping.tsx +312 -0
  137. package/src/scheduler/templates/scheduler-week.tsx +268 -0
  138. package/src/scheduler/tests/scheduler-agenda-view.tsx +13 -0
  139. package/src/scheduler/tests/scheduler-current-time-marker.tsx +572 -0
  140. package/src/scheduler/tests/scheduler-day-view.tsx +13 -0
  141. package/src/scheduler/tests/scheduler-events.tsx +511 -0
  142. package/src/scheduler/tests/scheduler-month-view.tsx +13 -0
  143. package/src/scheduler/tests/scheduler-react-timeline-multi.tsx +661 -665
  144. package/src/scheduler/tests/scheduler-timeline-view.tsx +13 -0
  145. package/src/scheduler/tests/scheduler-week-view.tsx +13 -0
  146. package/src/scheduler/tests/scheduler-year-view.tsx +2399 -0
  147. package/dist/cjs/scheduler/tests/scheduler-flex-layout.js +0 -8222
  148. package/dist/cjs/scheduler/tests/scheduler-react-day.js +0 -8936
  149. package/dist/cjs/scheduler/tests/scheduler-react-month.js +0 -9739
  150. package/dist/cjs/scheduler/tests/scheduler-react-week.js +0 -9752
  151. package/dist/cjs/scheduler/tests/scheduler-year.js +0 -8906
  152. package/dist/esm/scheduler/tests/scheduler-flex-layout.mjs +0 -8206
  153. package/dist/esm/scheduler/tests/scheduler-react-day.mjs +0 -8920
  154. package/dist/esm/scheduler/tests/scheduler-react-month.mjs +0 -9723
  155. package/dist/esm/scheduler/tests/scheduler-react-week.mjs +0 -9736
  156. package/dist/esm/scheduler/tests/scheduler-year.mjs +0 -8890
  157. package/dist/types/scheduler/tests/scheduler-jquery-agenda.d.ts +0 -2
  158. package/dist/types/scheduler/tests/scheduler-jquery-month.d.ts +0 -2
  159. package/dist/types/scheduler/tests/scheduler-react-agenda.d.ts +0 -2
  160. package/dist/types/scheduler/tests/scheduler-react-day.d.ts +0 -2
  161. package/dist/types/scheduler/tests/scheduler-react-month.d.ts +0 -2
  162. package/dist/types/scheduler/tests/scheduler-react-timeline.d.ts +0 -2
  163. package/dist/types/scheduler/tests/scheduler-react-week.d.ts +0 -2
  164. package/dist/types/scheduler/tests/scheduler-year.d.ts +0 -2
  165. package/dist/types/scheduler/tests/scheduler.d.ts +0 -2
  166. package/src/scheduler/tests/scheduler-angular-agenda-rtl.tsx +0 -300
  167. package/src/scheduler/tests/scheduler-angular-agenda.tsx +0 -300
  168. package/src/scheduler/tests/scheduler-angular-day-rtl.tsx +0 -254
  169. package/src/scheduler/tests/scheduler-angular-month-rtl.tsx +0 -292
  170. package/src/scheduler/tests/scheduler-angular-month.tsx +0 -292
  171. package/src/scheduler/tests/scheduler-angular-rtl.tsx +0 -386
  172. package/src/scheduler/tests/scheduler-angular.tsx +0 -386
  173. package/src/scheduler/tests/scheduler-flex-layout.tsx +0 -492
  174. package/src/scheduler/tests/scheduler-jquery-agenda.tsx +0 -118
  175. package/src/scheduler/tests/scheduler-jquery-month.tsx +0 -306
  176. package/src/scheduler/tests/scheduler-react-agenda.tsx +0 -336
  177. package/src/scheduler/tests/scheduler-react-day.tsx +0 -1037
  178. package/src/scheduler/tests/scheduler-react-month.tsx +0 -1380
  179. package/src/scheduler/tests/scheduler-react-timeline.tsx +0 -669
  180. package/src/scheduler/tests/scheduler-react-week.tsx +0 -1786
  181. package/src/scheduler/tests/scheduler-year.tsx +0 -2383
  182. package/src/scheduler/tests/scheduler.tsx +0 -656
  183. /package/dist/types/scheduler/tests/{scheduler-angular-agenda-rtl.d.ts → scheduler-agenda-view.d.ts} +0 -0
  184. /package/dist/types/scheduler/tests/{scheduler-angular-agenda.d.ts → scheduler-current-time-marker.d.ts} +0 -0
  185. /package/dist/types/scheduler/tests/{scheduler-angular-day-rtl.d.ts → scheduler-day-view.d.ts} +0 -0
  186. /package/dist/types/scheduler/tests/{scheduler-angular-month-rtl.d.ts → scheduler-events.d.ts} +0 -0
  187. /package/dist/types/scheduler/tests/{scheduler-angular-month.d.ts → scheduler-month-view.d.ts} +0 -0
  188. /package/dist/types/scheduler/tests/{scheduler-angular-rtl.d.ts → scheduler-timeline-view.d.ts} +0 -0
  189. /package/dist/types/scheduler/tests/{scheduler-angular.d.ts → scheduler-week-view.d.ts} +0 -0
  190. /package/dist/types/scheduler/tests/{scheduler-flex-layout.d.ts → scheduler-year-view.d.ts} +0 -0
@@ -16,12 +16,12 @@ var __copyProps = (to, from, except, desc) => {
16
16
  };
17
17
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
18
 
19
- // src/scheduler/tests/scheduler-angular-rtl.tsx
20
- var scheduler_angular_rtl_exports = {};
21
- __export(scheduler_angular_rtl_exports, {
22
- default: () => scheduler_angular_rtl_default
19
+ // src/scheduler/tests/scheduler-week-view.tsx
20
+ var scheduler_week_view_exports = {};
21
+ __export(scheduler_week_view_exports, {
22
+ default: () => scheduler_week_view_default
23
23
  });
24
- module.exports = __toCommonJS(scheduler_angular_rtl_exports);
24
+ module.exports = __toCommonJS(scheduler_week_view_exports);
25
25
 
26
26
  // src/misc/class-names.ts
27
27
  var classNames = (...args) => {
@@ -4374,6 +4374,7 @@ var Icon = (props) => {
4374
4374
  Icon.states = states3;
4375
4375
  Icon.options = options3;
4376
4376
  Icon.defaultProps = defaultProps3;
4377
+ var icon_spec_default = Icon;
4377
4378
 
4378
4379
  // src/button/button.spec.tsx
4379
4380
  var import_jsx_runtime4 = require("react/jsx-runtime");
@@ -4486,26 +4487,229 @@ var import_jsx_runtime6 = require("react/jsx-runtime");
4486
4487
  // src/button/templates/text-button.tsx
4487
4488
  var import_jsx_runtime7 = require("react/jsx-runtime");
4488
4489
 
4489
- // src/button-group/button-group.spec.tsx
4490
+ // src/scheduler/templates/scheduler-day.tsx
4490
4491
  var import_jsx_runtime8 = require("react/jsx-runtime");
4492
+
4493
+ // src/scheduler/scheduler-view.spec.tsx
4494
+ var import_jsx_runtime9 = require("react/jsx-runtime");
4495
+ var SCHEDULER_VIEW_CLASSNAME = "k-scheduler-layout";
4496
+ var states5 = [];
4497
+ var options5 = {};
4498
+ var defaultProps5 = {};
4499
+ var SchedulerView = (props) => {
4500
+ const {
4501
+ as: Component = "div",
4502
+ view,
4503
+ ...other
4504
+ } = props;
4505
+ return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
4506
+ Component,
4507
+ {
4508
+ ...other,
4509
+ className: classNames(
4510
+ props.className,
4511
+ SCHEDULER_VIEW_CLASSNAME,
4512
+ {
4513
+ [`k-scheduler-${view}view`]: view
4514
+ }
4515
+ ),
4516
+ children: props.children
4517
+ }
4518
+ );
4519
+ };
4520
+ SchedulerView.states = states5;
4521
+ SchedulerView.options = options5;
4522
+ SchedulerView.className = SCHEDULER_VIEW_CLASSNAME;
4523
+ SchedulerView.defaultProps = defaultProps5;
4524
+ var scheduler_view_spec_default = SchedulerView;
4525
+
4526
+ // src/scheduler/scheduler.spec.tsx
4527
+ var import_jsx_runtime10 = require("react/jsx-runtime");
4528
+ var SCHEDULER_CLASSNAME = "k-scheduler";
4529
+ var states6 = [];
4530
+ var options6 = {};
4531
+ var defaultProps6 = {};
4532
+ var Scheduler = (props) => {
4533
+ const {
4534
+ view,
4535
+ toolbar,
4536
+ footer,
4537
+ layout,
4538
+ ...other
4539
+ } = props;
4540
+ return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
4541
+ "div",
4542
+ {
4543
+ ...other,
4544
+ className: classNames(
4545
+ props.className,
4546
+ SCHEDULER_CLASSNAME
4547
+ ),
4548
+ children: [
4549
+ toolbar,
4550
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
4551
+ scheduler_view_spec_default,
4552
+ {
4553
+ className: classNames(
4554
+ {
4555
+ "k-scheduler-layout-flex": layout === "flex"
4556
+ }
4557
+ ),
4558
+ as: layout === "table" ? "table" : "div",
4559
+ view,
4560
+ children: props.children
4561
+ }
4562
+ ),
4563
+ footer
4564
+ ]
4565
+ }
4566
+ );
4567
+ };
4568
+ Scheduler.states = states6;
4569
+ Scheduler.options = options6;
4570
+ Scheduler.className = SCHEDULER_CLASSNAME;
4571
+ Scheduler.defaultProps = defaultProps6;
4572
+
4573
+ // src/scheduler/scheduler-header.spec.tsx
4574
+ var import_jsx_runtime11 = require("react/jsx-runtime");
4575
+ var className = "k-scheduler-header";
4576
+ var SchedulerHeader = (props) => /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
4577
+ "div",
4578
+ {
4579
+ ...props,
4580
+ className: classNames(
4581
+ className,
4582
+ props.className
4583
+ ),
4584
+ children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "k-scheduler-header-wrap", children: props.children })
4585
+ }
4586
+ );
4587
+
4588
+ // src/scheduler/scheduler-content.spec.tsx
4589
+ var import_jsx_runtime12 = require("react/jsx-runtime");
4590
+ var className2 = "k-scheduler-content";
4591
+ var SchedulerContent = (props) => /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
4592
+ "div",
4593
+ {
4594
+ ...props,
4595
+ className: classNames(
4596
+ className2,
4597
+ props.className
4598
+ ),
4599
+ children: props.children
4600
+ }
4601
+ );
4602
+
4603
+ // src/scheduler/scheduler-times.spec.tsx
4604
+ var import_jsx_runtime13 = require("react/jsx-runtime");
4605
+ var className3 = "k-scheduler-times";
4606
+ var SchedulerTimes = (props) => /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
4607
+ "div",
4608
+ {
4609
+ ...props,
4610
+ className: classNames(
4611
+ className3,
4612
+ props.className
4613
+ ),
4614
+ children: props.children
4615
+ }
4616
+ );
4617
+
4618
+ // src/scheduler/scheduler-table.spec.tsx
4619
+ var import_jsx_runtime14 = require("react/jsx-runtime");
4620
+ var className4 = "k-scheduler-table";
4621
+ var SchedulerTable = (props) => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
4622
+ "table",
4623
+ {
4624
+ ...props,
4625
+ className: classNames(
4626
+ className4,
4627
+ props.className
4628
+ ),
4629
+ children: props.children
4630
+ }
4631
+ );
4632
+
4633
+ // src/scheduler/scheduler-cell.spec.tsx
4634
+ var import_jsx_runtime15 = require("react/jsx-runtime");
4635
+ var className5 = "k-scheduler-cell";
4636
+ var states7 = [];
4637
+ var options7 = {};
4638
+ var defaultOptions = {};
4639
+ var SchedulerCell = (props) => {
4640
+ const {
4641
+ cellType,
4642
+ allDay,
4643
+ text,
4644
+ colspan,
4645
+ rowspan,
4646
+ as: Component = "div",
4647
+ ...other
4648
+ } = props;
4649
+ const textOrChildren = text ? text : props.children;
4650
+ return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
4651
+ Component,
4652
+ {
4653
+ ...other,
4654
+ colSpan: colspan,
4655
+ rowSpan: rowspan,
4656
+ className: classNames(
4657
+ className5,
4658
+ props.className,
4659
+ {
4660
+ "k-scheduler-times-all-day": allDay
4661
+ },
4662
+ cellType == null ? void 0 : cellType.map((t) => ({
4663
+ [`k-${t}-cell`]: true
4664
+ }))
4665
+ ),
4666
+ children: !allDay && text ? /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "k-link k-nav-day", children: textOrChildren }) : textOrChildren
4667
+ }
4668
+ );
4669
+ };
4670
+ SchedulerCell.states = states7;
4671
+ SchedulerCell.options = options7;
4672
+ SchedulerCell.defaultProps = defaultOptions;
4673
+ SchedulerCell.className = className5;
4674
+
4675
+ // src/scheduler/scheduler-sticky-cell.spec.tsx
4676
+ var import_jsx_runtime16 = require("react/jsx-runtime");
4677
+
4678
+ // src/scheduler/scheduler-row.spec.tsx
4679
+ var import_jsx_runtime17 = require("react/jsx-runtime");
4680
+ var className6 = "k-scheduler-row";
4681
+ var SchedulerRow = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
4682
+ "div",
4683
+ {
4684
+ ...props,
4685
+ className: classNames(
4686
+ className6,
4687
+ props.className
4688
+ ),
4689
+ children: props.children
4690
+ }
4691
+ );
4692
+
4693
+ // src/button-group/button-group.spec.tsx
4694
+ var import_jsx_runtime18 = require("react/jsx-runtime");
4491
4695
  var BUTTONGROUP_CLASSNAME = `k-button-group`;
4492
- var states5 = [
4696
+ var states8 = [
4493
4697
  States.disabled
4494
4698
  ];
4495
- var options5 = {
4699
+ var options8 = {
4496
4700
  fillMode: [FillMode.solid, FillMode.flat, FillMode.outline, FillMode.clear, FillMode.link]
4497
4701
  };
4498
- var defaultProps5 = {
4702
+ var defaultProps7 = {
4499
4703
  fillMode: FillMode.solid
4500
4704
  };
4501
4705
  var ButtonGroup = (props) => {
4502
4706
  const {
4503
- fillMode = defaultProps5.fillMode,
4707
+ fillMode = defaultProps7.fillMode,
4504
4708
  disabled,
4505
4709
  stretched,
4506
4710
  ...other
4507
4711
  } = props;
4508
- return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
4712
+ return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
4509
4713
  "div",
4510
4714
  {
4511
4715
  ...other,
@@ -4526,27 +4730,27 @@ var ButtonGroup = (props) => {
4526
4730
  }
4527
4731
  );
4528
4732
  };
4529
- ButtonGroup.states = states5;
4530
- ButtonGroup.options = options5;
4733
+ ButtonGroup.states = states8;
4734
+ ButtonGroup.options = options8;
4531
4735
  ButtonGroup.className = BUTTONGROUP_CLASSNAME;
4532
- ButtonGroup.defaultProps = defaultProps5;
4736
+ ButtonGroup.defaultProps = defaultProps7;
4533
4737
 
4534
4738
  // src/button-group/templates/icon-button-group.tsx
4535
- var import_jsx_runtime9 = require("react/jsx-runtime");
4739
+ var import_jsx_runtime19 = require("react/jsx-runtime");
4536
4740
 
4537
4741
  // src/button-group/templates/icon-text-button-group.tsx
4538
- var import_jsx_runtime10 = require("react/jsx-runtime");
4742
+ var import_jsx_runtime20 = require("react/jsx-runtime");
4539
4743
 
4540
4744
  // src/button-group/templates/text-button-group.tsx
4541
- var import_jsx_runtime11 = require("react/jsx-runtime");
4745
+ var import_jsx_runtime21 = require("react/jsx-runtime");
4542
4746
 
4543
4747
  // src/button-group/templates/mixed-button-group.tsx
4544
- var import_jsx_runtime12 = require("react/jsx-runtime");
4748
+ var import_jsx_runtime22 = require("react/jsx-runtime");
4545
4749
 
4546
4750
  // src/input/input.spec.tsx
4547
- var import_jsx_runtime13 = require("react/jsx-runtime");
4751
+ var import_jsx_runtime23 = require("react/jsx-runtime");
4548
4752
  var INPUT_CLASSNAME = `k-input`;
4549
- var states6 = [
4753
+ var states9 = [
4550
4754
  States.hover,
4551
4755
  States.focus,
4552
4756
  States.valid,
@@ -4556,12 +4760,12 @@ var states6 = [
4556
4760
  States.loading,
4557
4761
  States.readonly
4558
4762
  ];
4559
- var options6 = {
4763
+ var options9 = {
4560
4764
  size: [Size.small, Size.medium, Size.large],
4561
4765
  rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full],
4562
4766
  fillMode: [FillMode.solid, FillMode.flat, FillMode.outline]
4563
4767
  };
4564
- var defaultProps6 = {
4768
+ var defaultProps8 = {
4565
4769
  size: Size.medium,
4566
4770
  rounded: Size.medium,
4567
4771
  fillMode: FillMode.solid
@@ -4575,12 +4779,12 @@ var Input = (props) => {
4575
4779
  valid,
4576
4780
  loading,
4577
4781
  readonly,
4578
- size = defaultProps6.size,
4579
- rounded = defaultProps6.rounded,
4580
- fillMode = defaultProps6.fillMode,
4782
+ size = defaultProps8.size,
4783
+ rounded = defaultProps8.rounded,
4784
+ fillMode = defaultProps8.fillMode,
4581
4785
  ...other
4582
4786
  } = props;
4583
- return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
4787
+ return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
4584
4788
  "span",
4585
4789
  {
4586
4790
  ...other,
@@ -4593,13 +4797,13 @@ var Input = (props) => {
4593
4797
  }
4594
4798
  );
4595
4799
  };
4596
- Input.states = states6;
4597
- Input.options = options6;
4800
+ Input.states = states9;
4801
+ Input.options = options9;
4598
4802
  Input.className = INPUT_CLASSNAME;
4599
- Input.defaultProps = defaultProps6;
4803
+ Input.defaultProps = defaultProps8;
4600
4804
 
4601
4805
  // src/input/picker.spec.tsx
4602
- var import_jsx_runtime14 = require("react/jsx-runtime");
4806
+ var import_jsx_runtime24 = require("react/jsx-runtime");
4603
4807
  var PICKER_CLASSNAME = `k-picker`;
4604
4808
  var pickerStates = [
4605
4809
  States.hover,
@@ -4616,7 +4820,7 @@ var pickerOptions = {
4616
4820
  rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full],
4617
4821
  fillMode: [FillMode.solid, FillMode.flat, FillMode.outline]
4618
4822
  };
4619
- var defaultProps7 = {
4823
+ var defaultProps9 = {
4620
4824
  size: Size.medium,
4621
4825
  rounded: Roundness.medium,
4622
4826
  fillMode: FillMode.solid
@@ -4630,12 +4834,12 @@ var Picker = (props) => {
4630
4834
  valid,
4631
4835
  loading,
4632
4836
  readonly,
4633
- size = defaultProps7.size,
4634
- rounded = defaultProps7.rounded,
4635
- fillMode = defaultProps7.fillMode,
4837
+ size = defaultProps9.size,
4838
+ rounded = defaultProps9.rounded,
4839
+ fillMode = defaultProps9.fillMode,
4636
4840
  ...other
4637
4841
  } = props;
4638
- return /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
4842
+ return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
4639
4843
  "span",
4640
4844
  {
4641
4845
  ...other,
@@ -4652,17 +4856,17 @@ var Picker = (props) => {
4652
4856
  Picker.states = pickerStates;
4653
4857
  Picker.options = pickerOptions;
4654
4858
  Picker.className = PICKER_CLASSNAME;
4655
- Picker.defaultProps = defaultProps7;
4859
+ Picker.defaultProps = defaultProps9;
4656
4860
 
4657
4861
  // src/input/input-clear-value.tsx
4658
- var import_jsx_runtime15 = require("react/jsx-runtime");
4659
- var className = `k-clear-value`;
4660
- var states7 = [
4862
+ var import_jsx_runtime25 = require("react/jsx-runtime");
4863
+ var className7 = `k-clear-value`;
4864
+ var states10 = [
4661
4865
  States.disabled,
4662
4866
  States.loading,
4663
4867
  States.readonly
4664
4868
  ];
4665
- var options7 = {};
4869
+ var options10 = {};
4666
4870
  var InputClearValue = (props) => {
4667
4871
  const {
4668
4872
  disabled,
@@ -4671,20 +4875,20 @@ var InputClearValue = (props) => {
4671
4875
  value
4672
4876
  } = props;
4673
4877
  if (disabled || readonly || loading || !value) {
4674
- return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(import_jsx_runtime15.Fragment, {});
4878
+ return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(import_jsx_runtime25.Fragment, {});
4675
4879
  }
4676
- return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: classNames(props.className, className), children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Icon, { icon: "x" }) });
4880
+ return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { className: classNames(props.className, className7), children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(Icon, { icon: "x" }) });
4677
4881
  };
4678
- InputClearValue.states = states7;
4679
- InputClearValue.options = options7;
4680
- InputClearValue.className = className;
4882
+ InputClearValue.states = states10;
4883
+ InputClearValue.options = options10;
4884
+ InputClearValue.className = className7;
4681
4885
 
4682
4886
  // src/input/input-inner-input.tsx
4683
- var import_jsx_runtime16 = require("react/jsx-runtime");
4684
- var className2 = `k-input-inner`;
4685
- var states8 = [];
4686
- var options8 = {};
4687
- var defaultProps8 = {
4887
+ var import_jsx_runtime26 = require("react/jsx-runtime");
4888
+ var className8 = `k-input-inner`;
4889
+ var states11 = [];
4890
+ var options11 = {};
4891
+ var defaultProps10 = {
4688
4892
  type: "text",
4689
4893
  autocomplete: "off",
4690
4894
  value: "",
@@ -4692,33 +4896,33 @@ var defaultProps8 = {
4692
4896
  };
4693
4897
  var InputInnerInput = (props) => {
4694
4898
  const {
4695
- value = defaultProps8.value,
4696
- type = defaultProps8.type,
4697
- placeholder = defaultProps8.placeholder,
4698
- autocomplete = defaultProps8.autocomplete,
4899
+ value = defaultProps10.value,
4900
+ type = defaultProps10.type,
4901
+ placeholder = defaultProps10.placeholder,
4902
+ autocomplete = defaultProps10.autocomplete,
4699
4903
  ...other
4700
4904
  } = props;
4701
- return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
4905
+ return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
4702
4906
  "input",
4703
4907
  {
4704
4908
  ...other,
4705
4909
  type,
4706
- className: classNames(props.className, className2, optionClassNames(className2, props)),
4910
+ className: classNames(props.className, className8, optionClassNames(className8, props)),
4707
4911
  placeholder,
4708
4912
  autoComplete: autocomplete,
4709
4913
  defaultValue: value
4710
4914
  }
4711
4915
  );
4712
4916
  };
4713
- InputInnerInput.states = states8;
4714
- InputInnerInput.options = options8;
4715
- InputInnerInput.className = className2;
4917
+ InputInnerInput.states = states11;
4918
+ InputInnerInput.options = options11;
4919
+ InputInnerInput.className = className8;
4716
4920
 
4717
4921
  // src/input/input-inner-span.tsx
4718
- var import_jsx_runtime17 = require("react/jsx-runtime");
4719
- var className3 = `k-input-inner`;
4720
- var states9 = [];
4721
- var options9 = {};
4922
+ var import_jsx_runtime27 = require("react/jsx-runtime");
4923
+ var className9 = `k-input-inner`;
4924
+ var states12 = [];
4925
+ var options12 = {};
4722
4926
  var InputInnerSpan = (props) => {
4723
4927
  const {
4724
4928
  value,
@@ -4728,59 +4932,59 @@ var InputInnerSpan = (props) => {
4728
4932
  valueIconName,
4729
4933
  ...other
4730
4934
  } = props;
4731
- return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
4935
+ return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
4732
4936
  "span",
4733
4937
  {
4734
4938
  ...other,
4735
- className: classNames(props.className, className3, optionClassNames(className3, props)),
4939
+ className: classNames(props.className, className9, optionClassNames(className9, props)),
4736
4940
  children: [
4737
4941
  valueIcon,
4738
- !valueIcon && valueIconName && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(Icon, { className: "k-input-value-icon", icon: valueIconName }),
4942
+ !valueIcon && valueIconName && /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(Icon, { className: "k-input-value-icon", icon: valueIconName }),
4739
4943
  showValue && !value && placeholder,
4740
- showValue && value && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: "k-input-value-text", children: value })
4944
+ showValue && value && /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("span", { className: "k-input-value-text", children: value })
4741
4945
  ]
4742
4946
  }
4743
4947
  );
4744
4948
  };
4745
- InputInnerSpan.states = states9;
4746
- InputInnerSpan.options = options9;
4747
- InputInnerSpan.className = className3;
4949
+ InputInnerSpan.states = states12;
4950
+ InputInnerSpan.options = options12;
4951
+ InputInnerSpan.className = className9;
4748
4952
 
4749
4953
  // src/input/input-inner-textarea.tsx
4750
- var import_jsx_runtime18 = require("react/jsx-runtime");
4751
- var defaultProps9 = {
4954
+ var import_jsx_runtime28 = require("react/jsx-runtime");
4955
+ var defaultProps11 = {
4752
4956
  value: "",
4753
4957
  placeholder: ""
4754
4958
  };
4755
- var className4 = `k-input-inner`;
4756
- var states10 = [];
4757
- var options10 = {};
4959
+ var className10 = `k-input-inner`;
4960
+ var states13 = [];
4961
+ var options13 = {};
4758
4962
  var InputInnerTextarea = (props) => {
4759
4963
  const {
4760
- value = defaultProps9.value,
4761
- placeholder = defaultProps9.placeholder,
4964
+ value = defaultProps11.value,
4965
+ placeholder = defaultProps11.placeholder,
4762
4966
  rows,
4763
4967
  ...other
4764
4968
  } = props;
4765
- return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
4969
+ return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
4766
4970
  "textarea",
4767
4971
  {
4768
4972
  ...other,
4769
- className: classNames(props.className, className4, optionClassNames(className4, props)),
4973
+ className: classNames(props.className, className10, optionClassNames(className10, props)),
4770
4974
  placeholder,
4771
4975
  rows,
4772
4976
  defaultValue: value
4773
4977
  }
4774
4978
  );
4775
4979
  };
4776
- InputInnerTextarea.states = states10;
4777
- InputInnerTextarea.options = options10;
4778
- InputInnerTextarea.className = className4;
4980
+ InputInnerTextarea.states = states13;
4981
+ InputInnerTextarea.options = options13;
4982
+ InputInnerTextarea.className = className10;
4779
4983
 
4780
4984
  // src/input/input-loading-icon.tsx
4781
- var import_jsx_runtime19 = require("react/jsx-runtime");
4782
- var className5 = `k-input-loading-icon`;
4783
- var states11 = [
4985
+ var import_jsx_runtime29 = require("react/jsx-runtime");
4986
+ var className11 = `k-input-loading-icon`;
4987
+ var states14 = [
4784
4988
  States.disabled,
4785
4989
  States.loading
4786
4990
  ];
@@ -4790,21 +4994,21 @@ var InputLoadingIcon = (props) => {
4790
4994
  loading
4791
4995
  } = props;
4792
4996
  if (disabled || !loading) {
4793
- return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(import_jsx_runtime19.Fragment, {});
4997
+ return /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(import_jsx_runtime29.Fragment, {});
4794
4998
  }
4795
- return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("span", { className: classNames(props.className, className5, "k-icon k-i-loading") });
4999
+ return /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("span", { className: classNames(props.className, className11, "k-icon k-i-loading") });
4796
5000
  };
4797
5001
 
4798
5002
  // src/input/input-validation-icon.tsx
4799
- var import_jsx_runtime20 = require("react/jsx-runtime");
4800
- var className6 = `k-input-validation-icon`;
4801
- var states12 = [
5003
+ var import_jsx_runtime30 = require("react/jsx-runtime");
5004
+ var className12 = `k-input-validation-icon`;
5005
+ var states15 = [
4802
5006
  States.valid,
4803
5007
  States.invalid,
4804
5008
  States.disabled,
4805
5009
  States.loading
4806
5010
  ];
4807
- var options11 = {};
5011
+ var options14 = {};
4808
5012
  var InputValidationIcon = (props) => {
4809
5013
  const {
4810
5014
  valid,
@@ -4815,34 +5019,34 @@ var InputValidationIcon = (props) => {
4815
5019
  const iconName = invalid ? "warning-circle" : "check-circle";
4816
5020
  const renderValidationIcon = Boolean(valid || invalid);
4817
5021
  if (disabled || loading || !renderValidationIcon) {
4818
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(import_jsx_runtime20.Fragment, {});
5022
+ return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(import_jsx_runtime30.Fragment, {});
4819
5023
  }
4820
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(Icon, { className: classNames(className6), icon: iconName });
5024
+ return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(Icon, { className: classNames(className12), icon: iconName });
4821
5025
  };
4822
- InputValidationIcon.states = states12;
4823
- InputValidationIcon.options = options11;
4824
- InputValidationIcon.className = className6;
5026
+ InputValidationIcon.states = states15;
5027
+ InputValidationIcon.options = options14;
5028
+ InputValidationIcon.className = className12;
4825
5029
 
4826
5030
  // src/input/input-prefix.tsx
4827
- var import_jsx_runtime21 = require("react/jsx-runtime");
4828
- var className7 = `k-input-prefix`;
4829
- var defaultProps10 = {
5031
+ var import_jsx_runtime31 = require("react/jsx-runtime");
5032
+ var className13 = `k-input-prefix`;
5033
+ var defaultProps12 = {
4830
5034
  direction: "horizontal"
4831
5035
  };
4832
5036
  var InputPrefix = (props) => {
4833
5037
  const {
4834
- direction = defaultProps10.direction,
5038
+ direction = defaultProps12.direction,
4835
5039
  ...other
4836
5040
  } = props;
4837
5041
  if (!props.children) {
4838
- return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(import_jsx_runtime21.Fragment, {});
5042
+ return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(import_jsx_runtime31.Fragment, {});
4839
5043
  }
4840
- return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
5044
+ return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
4841
5045
  "span",
4842
5046
  {
4843
5047
  ...other,
4844
5048
  className: classNames(
4845
- className7,
5049
+ className13,
4846
5050
  props.className,
4847
5051
  {
4848
5052
  [`k-input-prefix-${direction}`]: direction
@@ -4854,25 +5058,25 @@ var InputPrefix = (props) => {
4854
5058
  };
4855
5059
 
4856
5060
  // src/input/input-suffix.tsx
4857
- var import_jsx_runtime22 = require("react/jsx-runtime");
4858
- var className8 = `k-input-suffix`;
4859
- var defaultProps11 = {
5061
+ var import_jsx_runtime32 = require("react/jsx-runtime");
5062
+ var className14 = `k-input-suffix`;
5063
+ var defaultProps13 = {
4860
5064
  direction: "horizontal"
4861
5065
  };
4862
5066
  var InputSuffix = (props) => {
4863
5067
  const {
4864
- direction = defaultProps11.direction,
5068
+ direction = defaultProps13.direction,
4865
5069
  ...other
4866
5070
  } = props;
4867
5071
  if (!props.children) {
4868
- return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(import_jsx_runtime22.Fragment, {});
5072
+ return /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(import_jsx_runtime32.Fragment, {});
4869
5073
  }
4870
- return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
5074
+ return /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
4871
5075
  "span",
4872
5076
  {
4873
5077
  ...other,
4874
5078
  className: classNames(
4875
- className8,
5079
+ className14,
4876
5080
  props.className,
4877
5081
  {
4878
5082
  [`k-input-suffix-${direction}`]: direction
@@ -4884,31 +5088,31 @@ var InputSuffix = (props) => {
4884
5088
  };
4885
5089
 
4886
5090
  // src/input/input-prefix-text.tsx
4887
- var import_jsx_runtime23 = require("react/jsx-runtime");
5091
+ var import_jsx_runtime33 = require("react/jsx-runtime");
4888
5092
 
4889
5093
  // src/input/input-suffix-text.tsx
4890
- var import_jsx_runtime24 = require("react/jsx-runtime");
5094
+ var import_jsx_runtime34 = require("react/jsx-runtime");
4891
5095
 
4892
5096
  // src/input/input-separator.tsx
4893
- var import_jsx_runtime25 = require("react/jsx-runtime");
4894
- var className9 = `k-input-separator`;
4895
- var defaultProps12 = {
5097
+ var import_jsx_runtime35 = require("react/jsx-runtime");
5098
+ var className15 = `k-input-separator`;
5099
+ var defaultProps14 = {
4896
5100
  direction: "vertical"
4897
5101
  };
4898
5102
  var InputSeparator = (props) => {
4899
5103
  const {
4900
- direction = defaultProps12.direction,
5104
+ direction = defaultProps14.direction,
4901
5105
  ...other
4902
5106
  } = props;
4903
- return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
5107
+ return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
4904
5108
  "span",
4905
5109
  {
4906
5110
  ...other,
4907
5111
  className: classNames(
4908
- className9,
5112
+ className15,
4909
5113
  props.className,
4910
5114
  {
4911
- [`${className9}-${direction}`]: direction
5115
+ [`${className15}-${direction}`]: direction
4912
5116
  }
4913
5117
  )
4914
5118
  }
@@ -4916,17 +5120,17 @@ var InputSeparator = (props) => {
4916
5120
  };
4917
5121
 
4918
5122
  // src/color-preview/color-preview.tsx
4919
- var import_jsx_runtime26 = require("react/jsx-runtime");
5123
+ var import_jsx_runtime36 = require("react/jsx-runtime");
4920
5124
  var COLORPREVIEW_CLASSNAME = `k-color-preview`;
4921
- var states13 = [];
4922
- var options12 = {};
5125
+ var states16 = [];
5126
+ var options15 = {};
4923
5127
  var ColorPreview = (props) => {
4924
5128
  const {
4925
5129
  color,
4926
5130
  iconName,
4927
5131
  ...other
4928
5132
  } = props;
4929
- return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(
5133
+ return /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(
4930
5134
  "span",
4931
5135
  {
4932
5136
  ...other,
@@ -4939,8 +5143,8 @@ var ColorPreview = (props) => {
4939
5143
  }
4940
5144
  ),
4941
5145
  children: [
4942
- iconName && /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(Icon, { icon: iconName, className: "k-color-preview-icon" }),
4943
- /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
5146
+ iconName && /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(Icon, { icon: iconName, className: "k-color-preview-icon" }),
5147
+ /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
4944
5148
  "span",
4945
5149
  {
4946
5150
  className: "k-color-preview-mask",
@@ -4951,16 +5155,16 @@ var ColorPreview = (props) => {
4951
5155
  }
4952
5156
  );
4953
5157
  };
4954
- ColorPreview.states = states13;
4955
- ColorPreview.options = options12;
5158
+ ColorPreview.states = states16;
5159
+ ColorPreview.options = options15;
4956
5160
  ColorPreview.className = COLORPREVIEW_CLASSNAME;
4957
5161
 
4958
5162
  // src/animation-container/animation-container.spec.tsx
4959
- var import_jsx_runtime27 = require("react/jsx-runtime");
5163
+ var import_jsx_runtime37 = require("react/jsx-runtime");
4960
5164
  var ANIMATION_CONTAINER_CLASSNAME = `k-animation-container`;
4961
- var states14 = [];
4962
- var options13 = {};
4963
- var defaultProps13 = {
5165
+ var states17 = [];
5166
+ var options16 = {};
5167
+ var defaultProps15 = {
4964
5168
  positionMode: "absolute"
4965
5169
  };
4966
5170
  var AnimationContainer = (props) => {
@@ -4970,7 +5174,7 @@ var AnimationContainer = (props) => {
4970
5174
  offset,
4971
5175
  ...other
4972
5176
  } = props;
4973
- return /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
5177
+ return /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
4974
5178
  "div",
4975
5179
  {
4976
5180
  ...other,
@@ -4982,21 +5186,21 @@ var AnimationContainer = (props) => {
4982
5186
  ["k-animation-container-fixed"]: positionMode === "fixed"
4983
5187
  }
4984
5188
  ),
4985
- children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("div", { className: "k-child-animation-container", style: animationStyle, children: props.children })
5189
+ children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { className: "k-child-animation-container", style: animationStyle, children: props.children })
4986
5190
  }
4987
5191
  );
4988
5192
  };
4989
- AnimationContainer.states = states14;
4990
- AnimationContainer.options = options13;
5193
+ AnimationContainer.states = states17;
5194
+ AnimationContainer.options = options16;
4991
5195
  AnimationContainer.className = ANIMATION_CONTAINER_CLASSNAME;
4992
- AnimationContainer.defaultProps = defaultProps13;
5196
+ AnimationContainer.defaultProps = defaultProps15;
4993
5197
 
4994
5198
  // src/popup/popup.spec.tsx
4995
- var import_jsx_runtime28 = require("react/jsx-runtime");
5199
+ var import_jsx_runtime38 = require("react/jsx-runtime");
4996
5200
  var POPUP_CLASSNAME = `k-popup`;
4997
- var states15 = [];
4998
- var options14 = {};
4999
- var defaultProps14 = {
5201
+ var states18 = [];
5202
+ var options17 = {};
5203
+ var defaultProps16 = {
5000
5204
  positionMode: "absolute"
5001
5205
  };
5002
5206
  var Popup = (props) => {
@@ -5006,25 +5210,25 @@ var Popup = (props) => {
5006
5210
  animationStyle,
5007
5211
  ...other
5008
5212
  } = props;
5009
- return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
5213
+ return /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
5010
5214
  AnimationContainer,
5011
5215
  {
5012
5216
  positionMode,
5013
5217
  offset,
5014
5218
  animationStyle,
5015
- children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("div", { ...other, className: classNames(props.className, POPUP_CLASSNAME), children: props.children })
5219
+ children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { ...other, className: classNames(props.className, POPUP_CLASSNAME), children: props.children })
5016
5220
  }
5017
5221
  );
5018
5222
  };
5019
- Popup.states = states15;
5020
- Popup.options = options14;
5223
+ Popup.states = states18;
5224
+ Popup.options = options17;
5021
5225
  Popup.className = POPUP_CLASSNAME;
5022
- Popup.defaultProps = defaultProps14;
5226
+ Popup.defaultProps = defaultProps16;
5023
5227
 
5024
5228
  // src/colorpicker/colorpicker.spec.tsx
5025
- var import_jsx_runtime29 = require("react/jsx-runtime");
5229
+ var import_jsx_runtime39 = require("react/jsx-runtime");
5026
5230
  var COLORPICKER_CLASSNAME = `k-colorpicker`;
5027
- var states16 = [
5231
+ var states19 = [
5028
5232
  States.hover,
5029
5233
  States.focus,
5030
5234
  States.valid,
@@ -5032,12 +5236,12 @@ var states16 = [
5032
5236
  States.required,
5033
5237
  States.disabled
5034
5238
  ];
5035
- var options15 = {
5239
+ var options18 = {
5036
5240
  size: [Size.small, Size.medium, Size.large],
5037
5241
  rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full],
5038
5242
  fillMode: [FillMode.solid, FillMode.flat, FillMode.outline]
5039
5243
  };
5040
- var defaultProps15 = {
5244
+ var defaultProps17 = {
5041
5245
  arrowIconName: "caret-alt-down",
5042
5246
  size: Picker.defaultProps.size,
5043
5247
  rounded: Picker.defaultProps.rounded,
@@ -5059,13 +5263,13 @@ var ColorPicker = (props) => {
5059
5263
  required,
5060
5264
  disabled,
5061
5265
  valueIconName,
5062
- arrowIconName = defaultProps15.arrowIconName,
5266
+ arrowIconName = defaultProps17.arrowIconName,
5063
5267
  popup,
5064
5268
  opened,
5065
5269
  ...other
5066
5270
  } = props;
5067
- return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(import_jsx_runtime29.Fragment, { children: [
5068
- /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(
5271
+ return /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(import_jsx_runtime39.Fragment, { children: [
5272
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(
5069
5273
  Picker,
5070
5274
  {
5071
5275
  ...other,
@@ -5084,14 +5288,14 @@ var ColorPicker = (props) => {
5084
5288
  "k-icon-picker"
5085
5289
  ),
5086
5290
  children: [
5087
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(InputPrefix, { children: prefix }),
5088
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
5291
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(InputPrefix, { children: prefix }),
5292
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
5089
5293
  InputInnerSpan,
5090
5294
  {
5091
5295
  placeholder,
5092
5296
  value,
5093
5297
  showValue: false,
5094
- valueIcon: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
5298
+ valueIcon: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
5095
5299
  ColorPreview,
5096
5300
  {
5097
5301
  className: "k-value-icon",
@@ -5102,8 +5306,8 @@ var ColorPicker = (props) => {
5102
5306
  valueIconName
5103
5307
  }
5104
5308
  ),
5105
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(InputSuffix, { children: suffix }),
5106
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
5309
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(InputSuffix, { children: suffix }),
5310
+ /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
5107
5311
  Button,
5108
5312
  {
5109
5313
  className: "k-input-button",
@@ -5116,33 +5320,33 @@ var ColorPicker = (props) => {
5116
5320
  ]
5117
5321
  }
5118
5322
  ),
5119
- opened && popup && /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(Popup, { className: "k-colorpicker-popup", children: popup })
5323
+ opened && popup && /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(Popup, { className: "k-colorpicker-popup", children: popup })
5120
5324
  ] });
5121
5325
  };
5122
- ColorPicker.states = states16;
5123
- ColorPicker.options = options15;
5326
+ ColorPicker.states = states19;
5327
+ ColorPicker.options = options18;
5124
5328
  ColorPicker.className = COLORPICKER_CLASSNAME;
5125
- ColorPicker.defaultProps = defaultProps15;
5329
+ ColorPicker.defaultProps = defaultProps17;
5126
5330
 
5127
5331
  // src/colorpicker/templates/colorpicker-normal.tsx
5128
- var import_jsx_runtime30 = require("react/jsx-runtime");
5332
+ var import_jsx_runtime40 = require("react/jsx-runtime");
5129
5333
 
5130
5334
  // src/action-buttons/action-buttons.spec.tsx
5131
- var import_jsx_runtime31 = require("react/jsx-runtime");
5335
+ var import_jsx_runtime41 = require("react/jsx-runtime");
5132
5336
  var ACTIONBUTTONS_CLASSNAME = `k-actions`;
5133
- var states17 = [];
5134
- var options16 = {};
5135
- var defaultProps16 = {
5337
+ var states20 = [];
5338
+ var options19 = {};
5339
+ var defaultProps18 = {
5136
5340
  alignment: "start",
5137
5341
  orientation: "horizontal"
5138
5342
  };
5139
5343
  var ActionButtons = (props) => {
5140
5344
  const {
5141
- alignment = defaultProps16.alignment,
5142
- orientation = defaultProps16.orientation,
5345
+ alignment = defaultProps18.alignment,
5346
+ orientation = defaultProps18.orientation,
5143
5347
  ...other
5144
5348
  } = props;
5145
- return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
5349
+ return /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
5146
5350
  "div",
5147
5351
  {
5148
5352
  ...other,
@@ -5158,24 +5362,24 @@ var ActionButtons = (props) => {
5158
5362
  }
5159
5363
  );
5160
5364
  };
5161
- ActionButtons.states = states17;
5162
- ActionButtons.options = options16;
5365
+ ActionButtons.states = states20;
5366
+ ActionButtons.options = options19;
5163
5367
  ActionButtons.className = ACTIONBUTTONS_CLASSNAME;
5164
- ActionButtons.defaultProps = defaultProps16;
5368
+ ActionButtons.defaultProps = defaultProps18;
5165
5369
  var action_buttons_spec_default = ActionButtons;
5166
5370
 
5167
5371
  // src/slider/slider.spec.tsx
5168
- var import_jsx_runtime32 = require("react/jsx-runtime");
5372
+ var import_jsx_runtime42 = require("react/jsx-runtime");
5169
5373
  var SLIDER_CLASSNAME = "k-slider";
5170
- var states18 = [
5374
+ var states21 = [
5171
5375
  States.hover,
5172
5376
  States.focus,
5173
5377
  States.active,
5174
5378
  States.disabled,
5175
5379
  States.readonly
5176
5380
  ];
5177
- var options17 = {};
5178
- var defaultProps17 = {
5381
+ var options20 = {};
5382
+ var defaultProps19 = {
5179
5383
  type: "single",
5180
5384
  orientation: "horizontal",
5181
5385
  readonly: false,
@@ -5186,13 +5390,13 @@ var defaultProps17 = {
5186
5390
  };
5187
5391
  var Slider = (props) => {
5188
5392
  const {
5189
- type = defaultProps17.type,
5190
- orientation = defaultProps17.orientation,
5191
- readonly = defaultProps17.readonly,
5192
- disabled = defaultProps17.disabled,
5193
- handlePosition = defaultProps17.handlePosition,
5194
- showButtons = defaultProps17.showButtons,
5195
- showTicks = defaultProps17.showTicks,
5393
+ type = defaultProps19.type,
5394
+ orientation = defaultProps19.orientation,
5395
+ readonly = defaultProps19.readonly,
5396
+ disabled = defaultProps19.disabled,
5397
+ handlePosition = defaultProps19.handlePosition,
5398
+ showButtons = defaultProps19.showButtons,
5399
+ showTicks = defaultProps19.showTicks,
5196
5400
  hover,
5197
5401
  focus,
5198
5402
  active,
@@ -5209,7 +5413,7 @@ var Slider = (props) => {
5209
5413
  iconIncrease = "caret-alt-up";
5210
5414
  iconDecrease = "caret-alt-down";
5211
5415
  }
5212
- return /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
5416
+ return /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)(
5213
5417
  "div",
5214
5418
  {
5215
5419
  ...other,
@@ -5227,12 +5431,12 @@ var Slider = (props) => {
5227
5431
  ),
5228
5432
  dir,
5229
5433
  children: [
5230
- showButtons && /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(Button, { className: "k-button-decrease", rounded: "full", icon: iconDecrease }),
5231
- /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)("div", { className: "k-slider-track-wrap", children: [
5232
- showTicks && /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("ul", { className: "k-reset k-slider-items", children: props.children }),
5233
- /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)("div", { className: "k-slider-track", style: trackStyle, children: [
5234
- /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("div", { className: "k-slider-selection" }),
5235
- type === "range" && /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("span", { className: classNames(
5434
+ showButtons && /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(Button, { className: "k-button-decrease", rounded: "full", icon: iconDecrease }),
5435
+ /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)("div", { className: "k-slider-track-wrap", children: [
5436
+ showTicks && /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("ul", { className: "k-reset k-slider-items", children: props.children }),
5437
+ /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)("div", { className: "k-slider-track", style: trackStyle, children: [
5438
+ /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("div", { className: "k-slider-selection" }),
5439
+ type === "range" && /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("span", { className: classNames(
5236
5440
  "k-draghandle",
5237
5441
  "k-draghandle-start",
5238
5442
  stateClassNames(SLIDER_CLASSNAME, {
@@ -5241,7 +5445,7 @@ var Slider = (props) => {
5241
5445
  active
5242
5446
  })
5243
5447
  ) }),
5244
- /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("span", { className: classNames(
5448
+ /* @__PURE__ */ (0, import_jsx_runtime42.jsx)("span", { className: classNames(
5245
5449
  "k-draghandle",
5246
5450
  `k-draghandle-${handlePosition}`,
5247
5451
  stateClassNames(SLIDER_CLASSNAME, {
@@ -5252,34 +5456,34 @@ var Slider = (props) => {
5252
5456
  ) })
5253
5457
  ] })
5254
5458
  ] }),
5255
- showButtons && /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(Button, { className: "k-button-increase", rounded: "full", icon: iconIncrease })
5459
+ showButtons && /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(Button, { className: "k-button-increase", rounded: "full", icon: iconIncrease })
5256
5460
  ]
5257
5461
  }
5258
5462
  );
5259
5463
  };
5260
- Slider.states = states18;
5261
- Slider.options = options17;
5464
+ Slider.states = states21;
5465
+ Slider.options = options20;
5262
5466
  Slider.className = SLIDER_CLASSNAME;
5263
- Slider.defaultProps = defaultProps17;
5467
+ Slider.defaultProps = defaultProps19;
5264
5468
 
5265
5469
  // src/slider/slider-tick.tsx
5266
- var import_jsx_runtime33 = require("react/jsx-runtime");
5470
+ var import_jsx_runtime43 = require("react/jsx-runtime");
5267
5471
  var SLIDER_TICK_CLASSNAME = "k-tick";
5268
- var states19 = [];
5269
- var options18 = {};
5270
- var defaultProps18 = {
5472
+ var states22 = [];
5473
+ var options21 = {};
5474
+ var defaultProps20 = {
5271
5475
  label: false
5272
5476
  };
5273
5477
  var SliderTick = (props) => {
5274
5478
  const {
5275
- style: style2,
5276
- label = defaultProps18.label,
5479
+ style,
5480
+ label = defaultProps20.label,
5277
5481
  orientation,
5278
5482
  large,
5279
5483
  text,
5280
5484
  ...other
5281
5485
  } = props;
5282
- return /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
5486
+ return /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
5283
5487
  "li",
5284
5488
  {
5285
5489
  ...other,
@@ -5291,34 +5495,34 @@ var SliderTick = (props) => {
5291
5495
  "k-tick-large": large
5292
5496
  }
5293
5497
  ),
5294
- style: style2,
5295
- children: label && /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("span", { className: "k-label", children: text })
5498
+ style,
5499
+ children: label && /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("span", { className: "k-label", children: text })
5296
5500
  }
5297
5501
  );
5298
5502
  };
5299
- SliderTick.states = states19;
5300
- SliderTick.options = options18;
5503
+ SliderTick.states = states22;
5504
+ SliderTick.options = options21;
5301
5505
  SliderTick.className = SLIDER_TICK_CLASSNAME;
5302
- SliderTick.defaultProps = defaultProps18;
5506
+ SliderTick.defaultProps = defaultProps20;
5303
5507
 
5304
5508
  // src/slider/templates/slider-normal.tsx
5305
- var import_jsx_runtime34 = require("react/jsx-runtime");
5509
+ var import_jsx_runtime44 = require("react/jsx-runtime");
5306
5510
 
5307
5511
  // src/slider/templates/slider-vertical.tsx
5308
- var import_jsx_runtime35 = require("react/jsx-runtime");
5512
+ var import_jsx_runtime45 = require("react/jsx-runtime");
5309
5513
 
5310
5514
  // src/slider/templates/slider-range.tsx
5311
- var import_jsx_runtime36 = require("react/jsx-runtime");
5515
+ var import_jsx_runtime46 = require("react/jsx-runtime");
5312
5516
 
5313
5517
  // src/slider/templates/slider-range-vertical.tsx
5314
- var import_jsx_runtime37 = require("react/jsx-runtime");
5518
+ var import_jsx_runtime47 = require("react/jsx-runtime");
5315
5519
 
5316
5520
  // src/slider/templates/slider-gradient.tsx
5317
- var import_jsx_runtime38 = require("react/jsx-runtime");
5521
+ var import_jsx_runtime48 = require("react/jsx-runtime");
5318
5522
 
5319
5523
  // src/slider/templates/slider-gradient-vertical.tsx
5320
- var import_jsx_runtime39 = require("react/jsx-runtime");
5321
- var SliderGradientVertical = (props) => /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
5524
+ var import_jsx_runtime49 = require("react/jsx-runtime");
5525
+ var SliderGradientVertical = (props) => /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
5322
5526
  Slider,
5323
5527
  {
5324
5528
  type: "gradient",
@@ -5330,24 +5534,24 @@ var SliderGradientVertical = (props) => /* @__PURE__ */ (0, import_jsx_runtime39
5330
5534
  );
5331
5535
 
5332
5536
  // src/spinbutton/spinbutton.spec.tsx
5333
- var import_jsx_runtime40 = require("react/jsx-runtime");
5537
+ var import_jsx_runtime50 = require("react/jsx-runtime");
5334
5538
  var SPINBUTTON_CLASSNAME = `k-spin-button`;
5335
- var states20 = [];
5336
- var options19 = {
5539
+ var states23 = [];
5540
+ var options22 = {
5337
5541
  size: [Size.small, Size.medium, Size.large],
5338
5542
  fillMode: [FillMode.solid, FillMode.flat, FillMode.outline, FillMode.clear, FillMode.link]
5339
5543
  };
5340
- var defaultProps19 = {
5544
+ var defaultProps21 = {
5341
5545
  size: Size.medium,
5342
5546
  fillMode: FillMode.solid
5343
5547
  };
5344
5548
  var SpinButton = (props) => {
5345
5549
  const {
5346
- size = defaultProps19.size,
5347
- fillMode = defaultProps19.fillMode,
5550
+ size = defaultProps21.size,
5551
+ fillMode = defaultProps21.fillMode,
5348
5552
  ...other
5349
5553
  } = props;
5350
- return /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(
5554
+ return /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)(
5351
5555
  "span",
5352
5556
  {
5353
5557
  ...other,
@@ -5356,7 +5560,7 @@ var SpinButton = (props) => {
5356
5560
  props.className
5357
5561
  ),
5358
5562
  children: [
5359
- /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
5563
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
5360
5564
  Button,
5361
5565
  {
5362
5566
  className: "k-spinner-increase",
@@ -5366,7 +5570,7 @@ var SpinButton = (props) => {
5366
5570
  fillMode
5367
5571
  }
5368
5572
  ),
5369
- /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
5573
+ /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
5370
5574
  Button,
5371
5575
  {
5372
5576
  className: "k-spinner-decrease",
@@ -5380,15 +5584,15 @@ var SpinButton = (props) => {
5380
5584
  }
5381
5585
  );
5382
5586
  };
5383
- SpinButton.states = states20;
5384
- SpinButton.options = options19;
5587
+ SpinButton.states = states23;
5588
+ SpinButton.options = options22;
5385
5589
  SpinButton.className = SPINBUTTON_CLASSNAME;
5386
- SpinButton.defaultProps = defaultProps19;
5590
+ SpinButton.defaultProps = defaultProps21;
5387
5591
 
5388
5592
  // src/numerictextbox/numerictextbox.spec.tsx
5389
- var import_jsx_runtime41 = require("react/jsx-runtime");
5593
+ var import_jsx_runtime51 = require("react/jsx-runtime");
5390
5594
  var NUMERICTEXTBOX_CLASSNAME = `k-numerictextbox`;
5391
- var states21 = [
5595
+ var states24 = [
5392
5596
  States.hover,
5393
5597
  States.focus,
5394
5598
  States.valid,
@@ -5398,12 +5602,12 @@ var states21 = [
5398
5602
  States.disabled,
5399
5603
  States.readonly
5400
5604
  ];
5401
- var options20 = {
5605
+ var options23 = {
5402
5606
  size: [Size.small, Size.medium, Size.large],
5403
5607
  rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full],
5404
5608
  fillMode: [FillMode.solid, FillMode.flat, FillMode.outline]
5405
5609
  };
5406
- var defaultProps20 = {
5610
+ var defaultProps22 = {
5407
5611
  showSpinButton: true,
5408
5612
  showClearButton: true,
5409
5613
  size: Input.defaultProps.size,
@@ -5415,7 +5619,7 @@ var NumericTextbox = (props) => {
5415
5619
  const {
5416
5620
  prefix,
5417
5621
  suffix,
5418
- separators = defaultProps20.separators,
5622
+ separators = defaultProps22.separators,
5419
5623
  value,
5420
5624
  placeholder,
5421
5625
  size,
@@ -5429,11 +5633,11 @@ var NumericTextbox = (props) => {
5429
5633
  loading,
5430
5634
  disabled,
5431
5635
  readonly,
5432
- showClearButton = defaultProps20.showClearButton,
5433
- showSpinButton = defaultProps20.showSpinButton,
5636
+ showClearButton = defaultProps22.showClearButton,
5637
+ showSpinButton = defaultProps22.showSpinButton,
5434
5638
  ...other
5435
5639
  } = props;
5436
- return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
5640
+ return /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)(
5437
5641
  Input,
5438
5642
  {
5439
5643
  ...other,
@@ -5450,12 +5654,12 @@ var NumericTextbox = (props) => {
5450
5654
  readonly,
5451
5655
  className: classNames(props.className, NUMERICTEXTBOX_CLASSNAME),
5452
5656
  children: [
5453
- prefix && /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(import_jsx_runtime41.Fragment, { children: [
5454
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(InputPrefix, { children: prefix }),
5455
- separators && /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(InputSeparator, {})
5657
+ prefix && /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)(import_jsx_runtime51.Fragment, { children: [
5658
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(InputPrefix, { children: prefix }),
5659
+ separators && /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(InputSeparator, {})
5456
5660
  ] }),
5457
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(InputInnerInput, { placeholder, value }),
5458
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
5661
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(InputInnerInput, { placeholder, value }),
5662
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
5459
5663
  InputValidationIcon,
5460
5664
  {
5461
5665
  valid,
@@ -5464,14 +5668,14 @@ var NumericTextbox = (props) => {
5464
5668
  disabled
5465
5669
  }
5466
5670
  ),
5467
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
5671
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
5468
5672
  InputLoadingIcon,
5469
5673
  {
5470
5674
  loading,
5471
5675
  disabled
5472
5676
  }
5473
5677
  ),
5474
- showClearButton && /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
5678
+ showClearButton && /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
5475
5679
  InputClearValue,
5476
5680
  {
5477
5681
  loading,
@@ -5480,11 +5684,11 @@ var NumericTextbox = (props) => {
5480
5684
  value
5481
5685
  }
5482
5686
  ),
5483
- suffix && /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(import_jsx_runtime41.Fragment, { children: [
5484
- separators && /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(InputSeparator, {}),
5485
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(InputSuffix, { children: suffix })
5687
+ suffix && /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)(import_jsx_runtime51.Fragment, { children: [
5688
+ separators && /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(InputSeparator, {}),
5689
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(InputSuffix, { children: suffix })
5486
5690
  ] }),
5487
- showSpinButton && /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
5691
+ showSpinButton && /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
5488
5692
  SpinButton,
5489
5693
  {
5490
5694
  className: "k-input-spinner",
@@ -5496,18 +5700,18 @@ var NumericTextbox = (props) => {
5496
5700
  }
5497
5701
  );
5498
5702
  };
5499
- NumericTextbox.states = states21;
5500
- NumericTextbox.options = options20;
5703
+ NumericTextbox.states = states24;
5704
+ NumericTextbox.options = options23;
5501
5705
  NumericTextbox.className = NUMERICTEXTBOX_CLASSNAME;
5502
- NumericTextbox.defaultProps = defaultProps20;
5706
+ NumericTextbox.defaultProps = defaultProps22;
5503
5707
 
5504
5708
  // src/numerictextbox/templates/numerictextbox-normal.tsx
5505
- var import_jsx_runtime42 = require("react/jsx-runtime");
5709
+ var import_jsx_runtime52 = require("react/jsx-runtime");
5506
5710
 
5507
5711
  // src/dropdownlist/dropdownlist.spec.tsx
5508
- var import_jsx_runtime43 = require("react/jsx-runtime");
5712
+ var import_jsx_runtime53 = require("react/jsx-runtime");
5509
5713
  var DROPDOWNLIST_CLASSNAME = `k-dropdownlist`;
5510
- var states22 = [
5714
+ var states25 = [
5511
5715
  States.hover,
5512
5716
  States.focus,
5513
5717
  States.valid,
@@ -5517,12 +5721,12 @@ var states22 = [
5517
5721
  States.loading,
5518
5722
  States.readonly
5519
5723
  ];
5520
- var options21 = {
5724
+ var options24 = {
5521
5725
  size: [Size.small, Size.medium, Size.large],
5522
5726
  rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full],
5523
5727
  fillMode: [FillMode.solid, FillMode.flat, FillMode.outline]
5524
5728
  };
5525
- var defaultProps21 = {
5729
+ var defaultProps23 = {
5526
5730
  showValue: true,
5527
5731
  arrowIconName: "caret-alt-down",
5528
5732
  size: Size.medium,
@@ -5532,7 +5736,7 @@ var defaultProps21 = {
5532
5736
  var DropdownList = (props) => {
5533
5737
  const {
5534
5738
  valueIconName,
5535
- arrowIconName = defaultProps21.arrowIconName,
5739
+ arrowIconName = defaultProps23.arrowIconName,
5536
5740
  prefix,
5537
5741
  suffix,
5538
5742
  value,
@@ -5548,13 +5752,13 @@ var DropdownList = (props) => {
5548
5752
  loading,
5549
5753
  disabled,
5550
5754
  readonly,
5551
- showValue = defaultProps21.showValue,
5755
+ showValue = defaultProps23.showValue,
5552
5756
  popup,
5553
5757
  opened,
5554
5758
  ...other
5555
5759
  } = props;
5556
- return /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(import_jsx_runtime43.Fragment, { children: [
5557
- /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(
5760
+ return /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(import_jsx_runtime53.Fragment, { children: [
5761
+ /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(
5558
5762
  Picker,
5559
5763
  {
5560
5764
  ...other,
@@ -5577,8 +5781,8 @@ var DropdownList = (props) => {
5577
5781
  }
5578
5782
  ),
5579
5783
  children: [
5580
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(InputPrefix, { children: prefix }),
5581
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
5784
+ /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(InputPrefix, { children: prefix }),
5785
+ /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
5582
5786
  InputInnerSpan,
5583
5787
  {
5584
5788
  placeholder,
@@ -5587,7 +5791,7 @@ var DropdownList = (props) => {
5587
5791
  valueIconName
5588
5792
  }
5589
5793
  ),
5590
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
5794
+ /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
5591
5795
  InputValidationIcon,
5592
5796
  {
5593
5797
  valid,
@@ -5596,15 +5800,15 @@ var DropdownList = (props) => {
5596
5800
  disabled
5597
5801
  }
5598
5802
  ),
5599
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
5803
+ /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
5600
5804
  InputLoadingIcon,
5601
5805
  {
5602
5806
  loading,
5603
5807
  disabled
5604
5808
  }
5605
5809
  ),
5606
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(InputSuffix, { children: suffix }),
5607
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
5810
+ /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(InputSuffix, { children: suffix }),
5811
+ /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
5608
5812
  Button,
5609
5813
  {
5610
5814
  className: "k-input-button",
@@ -5617,35 +5821,35 @@ var DropdownList = (props) => {
5617
5821
  ]
5618
5822
  }
5619
5823
  ),
5620
- opened && popup && /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(Popup, { className: "k-list-container k-dropdownlist-popup", children: popup })
5824
+ opened && popup && /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(Popup, { className: "k-list-container k-dropdownlist-popup", children: popup })
5621
5825
  ] });
5622
5826
  };
5623
- DropdownList.states = states22;
5624
- DropdownList.options = options21;
5827
+ DropdownList.states = states25;
5828
+ DropdownList.options = options24;
5625
5829
  DropdownList.className = DROPDOWNLIST_CLASSNAME;
5626
- DropdownList.defaultProps = defaultProps21;
5830
+ DropdownList.defaultProps = defaultProps23;
5627
5831
 
5628
5832
  // src/dropdownlist/templates/dropdownlist-normal.tsx
5629
- var import_jsx_runtime44 = require("react/jsx-runtime");
5833
+ var import_jsx_runtime54 = require("react/jsx-runtime");
5630
5834
 
5631
5835
  // src/nodata/nodata.tsx
5632
- var import_jsx_runtime45 = require("react/jsx-runtime");
5633
- var className10 = `k-nodata`;
5634
- var NoData = (props) => /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("span", { className: classNames(className10, props.className), children: props.children });
5836
+ var import_jsx_runtime55 = require("react/jsx-runtime");
5837
+ var className16 = `k-nodata`;
5838
+ var NoData = (props) => /* @__PURE__ */ (0, import_jsx_runtime55.jsx)("span", { className: classNames(className16, props.className), children: props.children });
5635
5839
 
5636
5840
  // src/list/list.spec.tsx
5637
- var import_jsx_runtime46 = require("react/jsx-runtime");
5841
+ var import_jsx_runtime56 = require("react/jsx-runtime");
5638
5842
  var LIST_CLASSNAME = `k-list`;
5639
- var states23 = [];
5640
- var options22 = {
5843
+ var states26 = [];
5844
+ var options25 = {
5641
5845
  size: [Size.small, Size.medium, Size.large]
5642
5846
  };
5643
- var defaultProps22 = {
5847
+ var defaultProps24 = {
5644
5848
  size: Size.medium
5645
5849
  };
5646
5850
  var List = (props) => {
5647
5851
  const {
5648
- size = defaultProps22.size,
5852
+ size = defaultProps24.size,
5649
5853
  virtualization,
5650
5854
  children,
5651
5855
  optionLabel,
@@ -5662,7 +5866,7 @@ var List = (props) => {
5662
5866
  listHeader = child.props.label;
5663
5867
  child.props.children.map((optChild, index2) => {
5664
5868
  listChildren.push(
5665
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
5869
+ /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
5666
5870
  ListItem,
5667
5871
  {
5668
5872
  ...optChild.props
@@ -5678,7 +5882,7 @@ var List = (props) => {
5678
5882
  groupLabel = child.props.label;
5679
5883
  }
5680
5884
  listChildren.push(
5681
- /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
5885
+ /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
5682
5886
  ListItem,
5683
5887
  {
5684
5888
  className: index2 === 0 ? "k-first" : "",
@@ -5690,16 +5894,16 @@ var List = (props) => {
5690
5894
  );
5691
5895
  });
5692
5896
  }
5693
- listGroup = /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(ListGroup, { label: listHeader, virtualization, children: listChildren });
5897
+ listGroup = /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(ListGroup, { label: listHeader, virtualization, children: listChildren });
5694
5898
  } else if (child.type === ListItem) {
5695
- listChildren.push(/* @__PURE__ */ (0, import_jsx_runtime46.jsx)(ListItem, { ...child.props }, `${child.type}-${index}`));
5696
- listContent = /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(ListContent, { virtualization, children: listChildren });
5899
+ listChildren.push(/* @__PURE__ */ (0, import_jsx_runtime56.jsx)(ListItem, { ...child.props }, `${child.type}-${index}`));
5900
+ listContent = /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(ListContent, { virtualization, children: listChildren });
5697
5901
  }
5698
5902
  });
5699
5903
  } else {
5700
- listContent = /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(NoData, { children: "No data found." });
5904
+ listContent = /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(NoData, { children: "No data found." });
5701
5905
  }
5702
- return /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)(
5906
+ return /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)(
5703
5907
  "div",
5704
5908
  {
5705
5909
  ...other,
@@ -5721,24 +5925,24 @@ var List = (props) => {
5721
5925
  }
5722
5926
  );
5723
5927
  };
5724
- List.states = states23;
5725
- List.options = options22;
5928
+ List.states = states26;
5929
+ List.options = options25;
5726
5930
  List.className = LIST_CLASSNAME;
5727
- List.defaultProps = defaultProps22;
5931
+ List.defaultProps = defaultProps24;
5728
5932
 
5729
5933
  // src/list/list-angular.spec.tsx
5730
- var import_jsx_runtime47 = require("react/jsx-runtime");
5934
+ var import_jsx_runtime57 = require("react/jsx-runtime");
5731
5935
  var LISTANGULAR_CLASSNAME = `k-list`;
5732
- var states24 = [];
5733
- var options23 = {
5936
+ var states27 = [];
5937
+ var options26 = {
5734
5938
  size: [Size.small, Size.medium, Size.large]
5735
5939
  };
5736
- var defaultProps23 = {
5940
+ var defaultProps25 = {
5737
5941
  size: Size.medium
5738
5942
  };
5739
5943
  var ListAngular = (props) => {
5740
5944
  const {
5741
- size = defaultProps23.size,
5945
+ size = defaultProps25.size,
5742
5946
  virtualization,
5743
5947
  children,
5744
5948
  ...other
@@ -5754,7 +5958,7 @@ var ListAngular = (props) => {
5754
5958
  listHeader = child.props.label;
5755
5959
  child.props.children.map((optChild, index2) => {
5756
5960
  listChildren.push(
5757
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
5961
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
5758
5962
  ListItem,
5759
5963
  {
5760
5964
  ...optChild.props
@@ -5765,7 +5969,7 @@ var ListAngular = (props) => {
5765
5969
  });
5766
5970
  } else {
5767
5971
  listChildren.push(
5768
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
5972
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
5769
5973
  ListGroupItem,
5770
5974
  {
5771
5975
  ...child.props,
@@ -5776,7 +5980,7 @@ var ListAngular = (props) => {
5776
5980
  );
5777
5981
  child.props.children.map((optChild, index2) => {
5778
5982
  listChildren.push(
5779
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
5983
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
5780
5984
  ListItem,
5781
5985
  {
5782
5986
  ...optChild.props
@@ -5786,16 +5990,16 @@ var ListAngular = (props) => {
5786
5990
  );
5787
5991
  });
5788
5992
  }
5789
- listGroup = /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(ListGroup, { label: listHeader, virtualization, children: listChildren });
5993
+ listGroup = /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(ListGroup, { label: listHeader, virtualization, children: listChildren });
5790
5994
  } else if (child.type === ListItem) {
5791
- listChildren.push(/* @__PURE__ */ (0, import_jsx_runtime47.jsx)(ListItem, { ...child.props }, `${child.type}-${index}`));
5792
- listContent = /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(ListContent, { virtualization, children: listChildren });
5995
+ listChildren.push(/* @__PURE__ */ (0, import_jsx_runtime57.jsx)(ListItem, { ...child.props }, `${child.type}-${index}`));
5996
+ listContent = /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(ListContent, { virtualization, children: listChildren });
5793
5997
  }
5794
5998
  });
5795
5999
  } else {
5796
- listContent = /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(NoData, { children: "No data found." });
6000
+ listContent = /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(NoData, { children: "No data found." });
5797
6001
  }
5798
- return /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
6002
+ return /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)(
5799
6003
  "div",
5800
6004
  {
5801
6005
  ...other,
@@ -5816,15 +6020,15 @@ var ListAngular = (props) => {
5816
6020
  }
5817
6021
  );
5818
6022
  };
5819
- ListAngular.states = states24;
5820
- ListAngular.options = options23;
6023
+ ListAngular.states = states27;
6024
+ ListAngular.options = options26;
5821
6025
  ListAngular.className = LISTANGULAR_CLASSNAME;
5822
- ListAngular.defaultProps = defaultProps23;
6026
+ ListAngular.defaultProps = defaultProps25;
5823
6027
 
5824
6028
  // src/checkbox/checkbox.spec.tsx
5825
- var import_jsx_runtime48 = require("react/jsx-runtime");
6029
+ var import_jsx_runtime58 = require("react/jsx-runtime");
5826
6030
  var CHECKBOX_CLASSNAME = `k-checkbox`;
5827
- var states25 = [
6031
+ var states28 = [
5828
6032
  States.hover,
5829
6033
  States.focus,
5830
6034
  States.valid,
@@ -5834,11 +6038,11 @@ var states25 = [
5834
6038
  States.checked,
5835
6039
  States.indeterminate
5836
6040
  ];
5837
- var options24 = {
6041
+ var options27 = {
5838
6042
  size: [Size.small, Size.medium, Size.large],
5839
6043
  rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full]
5840
6044
  };
5841
- var defaultProps24 = {
6045
+ var defaultProps26 = {
5842
6046
  size: Size.medium,
5843
6047
  rounded: Roundness.medium
5844
6048
  };
@@ -5853,11 +6057,11 @@ var Checkbox = (props) => {
5853
6057
  invalid,
5854
6058
  valid,
5855
6059
  required,
5856
- size = defaultProps24.size,
5857
- rounded = defaultProps24.rounded,
6060
+ size = defaultProps26.size,
6061
+ rounded = defaultProps26.rounded,
5858
6062
  ...other
5859
6063
  } = props;
5860
- return /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("span", { className: "k-checkbox-wrap", children: /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
6064
+ return /* @__PURE__ */ (0, import_jsx_runtime58.jsx)("span", { className: "k-checkbox-wrap", children: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
5861
6065
  "input",
5862
6066
  {
5863
6067
  ...other,
@@ -5874,25 +6078,25 @@ var Checkbox = (props) => {
5874
6078
  }
5875
6079
  ) });
5876
6080
  };
5877
- Checkbox.states = states25;
5878
- Checkbox.options = options24;
6081
+ Checkbox.states = states28;
6082
+ Checkbox.options = options27;
5879
6083
  Checkbox.className = CHECKBOX_CLASSNAME;
5880
- Checkbox.defaultProps = defaultProps24;
6084
+ Checkbox.defaultProps = defaultProps26;
5881
6085
 
5882
6086
  // src/checkbox/checkbox-group.spec.tsx
5883
- var import_jsx_runtime49 = require("react/jsx-runtime");
6087
+ var import_jsx_runtime59 = require("react/jsx-runtime");
5884
6088
  var CHECKBOXGROUP_CLASSNAME = `k-checkbox-list`;
5885
- var states26 = [];
5886
- var options25 = {};
5887
- var defaultProps25 = {
6089
+ var states29 = [];
6090
+ var options28 = {};
6091
+ var defaultProps27 = {
5888
6092
  layout: "vertical"
5889
6093
  };
5890
6094
  var CheckboxGroup = (props) => {
5891
6095
  const {
5892
- layout = defaultProps25.layout,
6096
+ layout = defaultProps27.layout,
5893
6097
  ...other
5894
6098
  } = props;
5895
- return /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
6099
+ return /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
5896
6100
  "ul",
5897
6101
  {
5898
6102
  ...other,
@@ -5907,22 +6111,22 @@ var CheckboxGroup = (props) => {
5907
6111
  }
5908
6112
  );
5909
6113
  };
5910
- CheckboxGroup.states = states26;
5911
- CheckboxGroup.options = options25;
6114
+ CheckboxGroup.states = states29;
6115
+ CheckboxGroup.options = options28;
5912
6116
  CheckboxGroup.className = CHECKBOXGROUP_CLASSNAME;
5913
- CheckboxGroup.defaultProps = defaultProps25;
6117
+ CheckboxGroup.defaultProps = defaultProps27;
5914
6118
 
5915
6119
  // src/checkbox/checkbox-item.spec.tsx
5916
- var import_jsx_runtime50 = require("react/jsx-runtime");
6120
+ var import_jsx_runtime60 = require("react/jsx-runtime");
5917
6121
  var CHECKBOXITEM_CLASSNAME = `k-checkbox-list-item`;
5918
- var states27 = [];
5919
- var options26 = {};
5920
- var defaultProps26 = {};
6122
+ var states30 = [];
6123
+ var options29 = {};
6124
+ var defaultProps28 = {};
5921
6125
  var CheckboxItem = (props) => {
5922
6126
  const {
5923
6127
  ...other
5924
6128
  } = props;
5925
- return /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
6129
+ return /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
5926
6130
  "li",
5927
6131
  {
5928
6132
  ...other,
@@ -5934,37 +6138,37 @@ var CheckboxItem = (props) => {
5934
6138
  }
5935
6139
  );
5936
6140
  };
5937
- CheckboxItem.states = states27;
5938
- CheckboxItem.options = options26;
6141
+ CheckboxItem.states = states30;
6142
+ CheckboxItem.options = options29;
5939
6143
  CheckboxItem.className = CHECKBOXITEM_CLASSNAME;
5940
- CheckboxItem.defaultProps = defaultProps26;
6144
+ CheckboxItem.defaultProps = defaultProps28;
5941
6145
 
5942
6146
  // src/checkbox/templates/checkbox-with-label-after.tsx
5943
- var import_jsx_runtime51 = require("react/jsx-runtime");
6147
+ var import_jsx_runtime61 = require("react/jsx-runtime");
5944
6148
 
5945
6149
  // src/checkbox/templates/checkbox-with-label-before.tsx
5946
- var import_jsx_runtime52 = require("react/jsx-runtime");
6150
+ var import_jsx_runtime62 = require("react/jsx-runtime");
5947
6151
 
5948
6152
  // src/checkbox/templates/checkbox-group-horizontal.tsx
5949
- var import_jsx_runtime53 = require("react/jsx-runtime");
6153
+ var import_jsx_runtime63 = require("react/jsx-runtime");
5950
6154
 
5951
6155
  // src/checkbox/templates/checkbox-group-normal.tsx
5952
- var import_jsx_runtime54 = require("react/jsx-runtime");
6156
+ var import_jsx_runtime64 = require("react/jsx-runtime");
5953
6157
 
5954
6158
  // src/checkbox/templates/checkbox-normal.tsx
5955
- var import_jsx_runtime55 = require("react/jsx-runtime");
6159
+ var import_jsx_runtime65 = require("react/jsx-runtime");
5956
6160
 
5957
6161
  // src/list/list-item.spec.tsx
5958
- var import_jsx_runtime56 = require("react/jsx-runtime");
6162
+ var import_jsx_runtime66 = require("react/jsx-runtime");
5959
6163
  var LISTITEM_CLASSNAME = `k-list-item`;
5960
- var states28 = [
6164
+ var states31 = [
5961
6165
  States.hover,
5962
6166
  States.focus,
5963
6167
  States.selected,
5964
6168
  States.disabled
5965
6169
  ];
5966
- var options27 = {};
5967
- var defaultProps27 = {};
6170
+ var options30 = {};
6171
+ var defaultProps29 = {};
5968
6172
  var ListItem = (props) => {
5969
6173
  const {
5970
6174
  text,
@@ -5981,7 +6185,7 @@ var ListItem = (props) => {
5981
6185
  ...other
5982
6186
  } = props;
5983
6187
  const textOrChildren = text ? text : props.children;
5984
- return /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)(
6188
+ return /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(
5985
6189
  "li",
5986
6190
  {
5987
6191
  ...other,
@@ -5996,66 +6200,66 @@ var ListItem = (props) => {
5996
6200
  })
5997
6201
  ),
5998
6202
  children: [
5999
- showCheckbox && /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(Checkbox, { checked }),
6000
- showIcon && /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(Icon, { icon: iconName }),
6001
- /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("span", { className: "k-list-item-text", children: textOrChildren }),
6002
- groupLabel && groupLabel !== "" && /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("div", { className: "k-list-item-group-label", children: groupLabel })
6203
+ showCheckbox && /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(Checkbox, { checked }),
6204
+ showIcon && /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(Icon, { icon: iconName }),
6205
+ /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("span", { className: "k-list-item-text", children: textOrChildren }),
6206
+ groupLabel && groupLabel !== "" && /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("div", { className: "k-list-item-group-label", children: groupLabel })
6003
6207
  ]
6004
6208
  }
6005
6209
  );
6006
6210
  };
6007
- ListItem.states = states28;
6008
- ListItem.options = options27;
6211
+ ListItem.states = states31;
6212
+ ListItem.options = options30;
6009
6213
  ListItem.className = LISTITEM_CLASSNAME;
6010
- ListItem.defaultProps = defaultProps27;
6214
+ ListItem.defaultProps = defaultProps29;
6011
6215
 
6012
6216
  // src/list/list-content.tsx
6013
- var import_jsx_runtime57 = require("react/jsx-runtime");
6014
- var className11 = `k-list-content`;
6217
+ var import_jsx_runtime67 = require("react/jsx-runtime");
6218
+ var className17 = `k-list-content`;
6015
6219
  var ListContent = (props) => {
6016
6220
  const {
6017
6221
  virtualization
6018
6222
  } = props;
6019
- return /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("div", { className: classNames(className11, props.className), children: [
6020
- /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("ul", { className: classNames("k-list-ul"), children: props.children }),
6021
- virtualization && /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { className: "k-height-container", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", {}) })
6223
+ return /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: classNames(className17, props.className), children: [
6224
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("ul", { className: classNames("k-list-ul"), children: props.children }),
6225
+ virtualization && /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("div", { className: "k-height-container", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("div", {}) })
6022
6226
  ] });
6023
6227
  };
6024
6228
 
6025
6229
  // src/list/list-header.tsx
6026
- var import_jsx_runtime58 = require("react/jsx-runtime");
6027
- var className12 = `k-list-group-sticky-header`;
6028
- var ListHeader = (props) => /* @__PURE__ */ (0, import_jsx_runtime58.jsx)("div", { className: classNames(className12, props.className), children: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)("div", { className: "k-list-header-text", children: props.children }) });
6230
+ var import_jsx_runtime68 = require("react/jsx-runtime");
6231
+ var className18 = `k-list-group-sticky-header`;
6232
+ var ListHeader = (props) => /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("div", { className: classNames(className18, props.className), children: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("div", { className: "k-list-header-text", children: props.children }) });
6029
6233
 
6030
6234
  // src/list/list-group.tsx
6031
- var import_jsx_runtime59 = require("react/jsx-runtime");
6235
+ var import_jsx_runtime69 = require("react/jsx-runtime");
6032
6236
  var ListGroup = (props) => {
6033
6237
  const {
6034
6238
  virtualization,
6035
6239
  label
6036
6240
  } = props;
6037
- return /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)(import_jsx_runtime59.Fragment, { children: [
6038
- label && /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(ListHeader, { children: label }),
6039
- props.children && /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(ListContent, { virtualization, children: props.children })
6241
+ return /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(import_jsx_runtime69.Fragment, { children: [
6242
+ label && /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(ListHeader, { children: label }),
6243
+ props.children && /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(ListContent, { virtualization, children: props.children })
6040
6244
  ] });
6041
6245
  };
6042
6246
 
6043
6247
  // src/list/list-group-item.tsx
6044
- var import_jsx_runtime60 = require("react/jsx-runtime");
6045
- var className13 = `k-list-group-item`;
6046
- var ListGroupItem = (props) => /* @__PURE__ */ (0, import_jsx_runtime60.jsx)("li", { className: classNames(className13, props.className), children: /* @__PURE__ */ (0, import_jsx_runtime60.jsx)("span", { className: "k-list-item-text", children: props.children }) });
6248
+ var import_jsx_runtime70 = require("react/jsx-runtime");
6249
+ var className19 = `k-list-group-item`;
6250
+ var ListGroupItem = (props) => /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("li", { className: classNames(className19, props.className), children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("span", { className: "k-list-item-text", children: props.children }) });
6047
6251
 
6048
6252
  // src/list/list-option-label.tsx
6049
- var import_jsx_runtime61 = require("react/jsx-runtime");
6253
+ var import_jsx_runtime71 = require("react/jsx-runtime");
6050
6254
  var LIST_OPTIONLABEL_CLASSNAME = `k-list-optionlabel`;
6051
- var states29 = [
6255
+ var states32 = [
6052
6256
  States.hover,
6053
6257
  States.focus,
6054
6258
  States.selected,
6055
6259
  States.disabled
6056
6260
  ];
6057
- var options28 = {};
6058
- var defaultProps28 = {};
6261
+ var options31 = {};
6262
+ var defaultProps30 = {};
6059
6263
  var ListOptionLabel = (props) => {
6060
6264
  const {
6061
6265
  text,
@@ -6065,7 +6269,7 @@ var ListOptionLabel = (props) => {
6065
6269
  disabled,
6066
6270
  ...other
6067
6271
  } = props;
6068
- return /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
6272
+ return /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
6069
6273
  "div",
6070
6274
  {
6071
6275
  ...other,
@@ -6082,39 +6286,39 @@ var ListOptionLabel = (props) => {
6082
6286
  }
6083
6287
  );
6084
6288
  };
6085
- ListOptionLabel.states = states29;
6086
- ListOptionLabel.options = options28;
6289
+ ListOptionLabel.states = states32;
6290
+ ListOptionLabel.options = options31;
6087
6291
  ListOptionLabel.className = LIST_OPTIONLABEL_CLASSNAME;
6088
- ListOptionLabel.defaultProps = defaultProps28;
6292
+ ListOptionLabel.defaultProps = defaultProps30;
6089
6293
 
6090
6294
  // src/list/templates/list-normal.tsx
6091
- var import_jsx_runtime62 = require("react/jsx-runtime");
6295
+ var import_jsx_runtime72 = require("react/jsx-runtime");
6092
6296
 
6093
6297
  // src/list/templates/list-virtualization.tsx
6094
- var import_jsx_runtime63 = require("react/jsx-runtime");
6298
+ var import_jsx_runtime73 = require("react/jsx-runtime");
6095
6299
 
6096
6300
  // src/list/templates/list-grouping.tsx
6097
- var import_jsx_runtime64 = require("react/jsx-runtime");
6301
+ var import_jsx_runtime74 = require("react/jsx-runtime");
6098
6302
 
6099
6303
  // src/list/templates/list-virualization-grouping.tsx
6100
- var import_jsx_runtime65 = require("react/jsx-runtime");
6304
+ var import_jsx_runtime75 = require("react/jsx-runtime");
6101
6305
 
6102
6306
  // src/list/templates/list-virtualization-angular.tsx
6103
- var import_jsx_runtime66 = require("react/jsx-runtime");
6307
+ var import_jsx_runtime76 = require("react/jsx-runtime");
6104
6308
 
6105
6309
  // src/list/templates/list-grouping-angular.tsx
6106
- var import_jsx_runtime67 = require("react/jsx-runtime");
6310
+ var import_jsx_runtime77 = require("react/jsx-runtime");
6107
6311
 
6108
6312
  // src/list/templates/list-virualization-grouping-angular.tsx
6109
- var import_jsx_runtime68 = require("react/jsx-runtime");
6313
+ var import_jsx_runtime78 = require("react/jsx-runtime");
6110
6314
 
6111
6315
  // src/dropdownlist/templates/dropdownlist-popup.tsx
6112
- var import_jsx_runtime69 = require("react/jsx-runtime");
6316
+ var import_jsx_runtime79 = require("react/jsx-runtime");
6113
6317
 
6114
6318
  // src/searchbox/searchbox.spec.tsx
6115
- var import_jsx_runtime70 = require("react/jsx-runtime");
6319
+ var import_jsx_runtime80 = require("react/jsx-runtime");
6116
6320
  var SEARCHBOX_CLASSNAME = `k-searchbox`;
6117
- var states30 = [
6321
+ var states33 = [
6118
6322
  States.hover,
6119
6323
  States.focus,
6120
6324
  States.valid,
@@ -6123,12 +6327,12 @@ var states30 = [
6123
6327
  States.disabled,
6124
6328
  States.loading
6125
6329
  ];
6126
- var options29 = {
6330
+ var options32 = {
6127
6331
  size: [Size.small, Size.medium, Size.large],
6128
6332
  rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full],
6129
6333
  fillMode: [FillMode.solid, FillMode.flat, FillMode.outline]
6130
6334
  };
6131
- var defaultProps29 = {
6335
+ var defaultProps31 = {
6132
6336
  showIcon: true,
6133
6337
  icon: "search",
6134
6338
  size: Input.defaultProps.size,
@@ -6149,11 +6353,11 @@ var Searchbox = (props) => {
6149
6353
  required,
6150
6354
  loading,
6151
6355
  disabled,
6152
- showIcon = defaultProps29.showIcon,
6153
- icon = defaultProps29.icon,
6356
+ showIcon = defaultProps31.showIcon,
6357
+ icon = defaultProps31.icon,
6154
6358
  ...other
6155
6359
  } = props;
6156
- return /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(
6360
+ return /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(
6157
6361
  Input,
6158
6362
  {
6159
6363
  ...other,
@@ -6169,48 +6373,48 @@ var Searchbox = (props) => {
6169
6373
  disabled,
6170
6374
  className: classNames(props.className, SEARCHBOX_CLASSNAME),
6171
6375
  children: [
6172
- showIcon && /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(Icon, { className: "k-input-icon", icon }),
6173
- /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(InputInnerInput, { placeholder, value }),
6174
- /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(InputLoadingIcon, { ...props }),
6175
- /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(InputValidationIcon, { ...props }),
6176
- /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(InputClearValue, { ...props })
6376
+ showIcon && /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(Icon, { className: "k-input-icon", icon }),
6377
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(InputInnerInput, { placeholder, value }),
6378
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(InputLoadingIcon, { ...props }),
6379
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(InputValidationIcon, { ...props }),
6380
+ /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(InputClearValue, { ...props })
6177
6381
  ]
6178
6382
  }
6179
6383
  );
6180
6384
  };
6181
- Searchbox.states = states30;
6182
- Searchbox.options = options29;
6385
+ Searchbox.states = states33;
6386
+ Searchbox.options = options32;
6183
6387
  Searchbox.className = SEARCHBOX_CLASSNAME;
6184
- Searchbox.defaultProps = defaultProps29;
6388
+ Searchbox.defaultProps = defaultProps31;
6185
6389
 
6186
6390
  // src/searchbox/templates/searchbox-normal.tsx
6187
- var import_jsx_runtime71 = require("react/jsx-runtime");
6391
+ var import_jsx_runtime81 = require("react/jsx-runtime");
6188
6392
 
6189
6393
  // src/dropdownlist/templates/dropdownlist-filtering.tsx
6190
- var import_jsx_runtime72 = require("react/jsx-runtime");
6394
+ var import_jsx_runtime82 = require("react/jsx-runtime");
6191
6395
 
6192
6396
  // src/dropdownlist/templates/dropdownlist-grouping.tsx
6193
- var import_jsx_runtime73 = require("react/jsx-runtime");
6397
+ var import_jsx_runtime83 = require("react/jsx-runtime");
6194
6398
 
6195
6399
  // src/dropdownlist/templates/dropdownlist-grouping-modern.tsx
6196
- var import_jsx_runtime74 = require("react/jsx-runtime");
6400
+ var import_jsx_runtime84 = require("react/jsx-runtime");
6197
6401
 
6198
6402
  // src/dropdownlist/templates/dropdownlist-grouping-filtering.tsx
6199
- var import_jsx_runtime75 = require("react/jsx-runtime");
6403
+ var import_jsx_runtime85 = require("react/jsx-runtime");
6200
6404
 
6201
6405
  // src/dropdownlist/templates/dropdownlist-grouping-filtering-modern.tsx
6202
- var import_jsx_runtime76 = require("react/jsx-runtime");
6406
+ var import_jsx_runtime86 = require("react/jsx-runtime");
6203
6407
 
6204
6408
  // src/numerictextbox/templates/numerictextbox-prefix.tsx
6205
- var import_jsx_runtime77 = require("react/jsx-runtime");
6409
+ var import_jsx_runtime87 = require("react/jsx-runtime");
6206
6410
 
6207
6411
  // src/numerictextbox/templates/numerictextbox-suffix.tsx
6208
- var import_jsx_runtime78 = require("react/jsx-runtime");
6412
+ var import_jsx_runtime88 = require("react/jsx-runtime");
6209
6413
 
6210
6414
  // src/textbox/textbox.spec.tsx
6211
- var import_jsx_runtime79 = require("react/jsx-runtime");
6415
+ var import_jsx_runtime89 = require("react/jsx-runtime");
6212
6416
  var TEXTBOX_CLASSNAME = `k-textbox`;
6213
- var states31 = [
6417
+ var states34 = [
6214
6418
  States.hover,
6215
6419
  States.focus,
6216
6420
  States.valid,
@@ -6220,12 +6424,12 @@ var states31 = [
6220
6424
  States.loading,
6221
6425
  States.readonly
6222
6426
  ];
6223
- var options30 = {
6427
+ var options33 = {
6224
6428
  size: [Size.small, Size.medium, Size.large],
6225
6429
  rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full],
6226
6430
  fillMode: [FillMode.solid, FillMode.flat, FillMode.outline]
6227
6431
  };
6228
- var defaultProps30 = {
6432
+ var defaultProps32 = {
6229
6433
  showClearButton: true,
6230
6434
  size: Input.defaultProps.size,
6231
6435
  rounded: Input.defaultProps.rounded,
@@ -6236,7 +6440,7 @@ var Textbox = (props) => {
6236
6440
  const {
6237
6441
  prefix,
6238
6442
  suffix,
6239
- separators = defaultProps30.separators,
6443
+ separators = defaultProps32.separators,
6240
6444
  value,
6241
6445
  placeholder,
6242
6446
  size,
@@ -6250,10 +6454,10 @@ var Textbox = (props) => {
6250
6454
  loading,
6251
6455
  disabled,
6252
6456
  readonly,
6253
- showClearButton = defaultProps30.showClearButton,
6457
+ showClearButton = defaultProps32.showClearButton,
6254
6458
  ...other
6255
6459
  } = props;
6256
- return /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(
6460
+ return /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)(
6257
6461
  Input,
6258
6462
  {
6259
6463
  ...other,
@@ -6270,12 +6474,12 @@ var Textbox = (props) => {
6270
6474
  readonly,
6271
6475
  className: classNames(props.className, TEXTBOX_CLASSNAME),
6272
6476
  children: [
6273
- prefix && /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(import_jsx_runtime79.Fragment, { children: [
6274
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(InputPrefix, { children: prefix }),
6275
- separators && /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(InputSeparator, {})
6477
+ prefix && /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)(import_jsx_runtime89.Fragment, { children: [
6478
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(InputPrefix, { children: prefix }),
6479
+ separators && /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(InputSeparator, {})
6276
6480
  ] }),
6277
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(InputInnerInput, { placeholder, value }),
6278
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
6481
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(InputInnerInput, { placeholder, value }),
6482
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
6279
6483
  InputValidationIcon,
6280
6484
  {
6281
6485
  valid,
@@ -6284,14 +6488,14 @@ var Textbox = (props) => {
6284
6488
  disabled
6285
6489
  }
6286
6490
  ),
6287
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
6491
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
6288
6492
  InputLoadingIcon,
6289
6493
  {
6290
6494
  loading,
6291
6495
  disabled
6292
6496
  }
6293
6497
  ),
6294
- showClearButton && /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
6498
+ showClearButton && /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
6295
6499
  InputClearValue,
6296
6500
  {
6297
6501
  loading,
@@ -6300,162 +6504,162 @@ var Textbox = (props) => {
6300
6504
  value
6301
6505
  }
6302
6506
  ),
6303
- suffix && /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(import_jsx_runtime79.Fragment, { children: [
6304
- separators && /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(InputSeparator, {}),
6305
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(InputSuffix, { children: suffix })
6507
+ suffix && /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)(import_jsx_runtime89.Fragment, { children: [
6508
+ separators && /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(InputSeparator, {}),
6509
+ /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(InputSuffix, { children: suffix })
6306
6510
  ] })
6307
6511
  ]
6308
6512
  }
6309
6513
  );
6310
6514
  };
6311
- Textbox.states = states31;
6312
- Textbox.options = options30;
6515
+ Textbox.states = states34;
6516
+ Textbox.options = options33;
6313
6517
  Textbox.className = TEXTBOX_CLASSNAME;
6314
- Textbox.defaultProps = defaultProps30;
6518
+ Textbox.defaultProps = defaultProps32;
6315
6519
 
6316
6520
  // src/textbox/templates/textbox-normal.tsx
6317
- var import_jsx_runtime80 = require("react/jsx-runtime");
6521
+ var import_jsx_runtime90 = require("react/jsx-runtime");
6318
6522
 
6319
6523
  // src/textbox/templates/textbox-prefix.tsx
6320
- var import_jsx_runtime81 = require("react/jsx-runtime");
6524
+ var import_jsx_runtime91 = require("react/jsx-runtime");
6321
6525
 
6322
6526
  // src/textbox/templates/textbox-suffix.tsx
6323
- var import_jsx_runtime82 = require("react/jsx-runtime");
6527
+ var import_jsx_runtime92 = require("react/jsx-runtime");
6324
6528
 
6325
6529
  // src/colorgradient/color-input.tsx
6326
- var import_jsx_runtime83 = require("react/jsx-runtime");
6530
+ var import_jsx_runtime93 = require("react/jsx-runtime");
6327
6531
  var COLOR_INPUT_CLASSNAME = "k-colorgradient-inputs";
6328
- var states32 = [];
6329
- var options31 = {};
6330
- var defaultProps31 = {
6532
+ var states35 = [];
6533
+ var options34 = {};
6534
+ var defaultProps33 = {
6331
6535
  mode: "rgba"
6332
6536
  };
6333
6537
  var ColorInput = (props) => {
6334
6538
  const {
6335
- mode = defaultProps31.mode
6539
+ mode = defaultProps33.mode
6336
6540
  } = props;
6337
- return /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)("div", { className: classNames(COLOR_INPUT_CLASSNAME, "k-hstack"), children: [
6338
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("div", { className: "k-vstack", children: /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(Button, { fillMode: "flat", icon: "caret-alt-expand", className: "k-colorgradient-toggle-mode" }) }),
6339
- mode === "rgba" && /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)(import_jsx_runtime83.Fragment, { children: [
6340
- /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)("div", { className: "k-vstack", children: [
6341
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6342
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("label", { className: "k-colorgradient-input-label", children: "R" })
6541
+ return /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: classNames(COLOR_INPUT_CLASSNAME, "k-hstack"), children: [
6542
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("div", { className: "k-vstack", children: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(Button, { fillMode: "flat", icon: "caret-alt-expand", className: "k-colorgradient-toggle-mode" }) }),
6543
+ mode === "rgba" && /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)(import_jsx_runtime93.Fragment, { children: [
6544
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: "k-vstack", children: [
6545
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6546
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("label", { className: "k-colorgradient-input-label", children: "R" })
6343
6547
  ] }),
6344
- /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)("div", { className: "k-vstack", children: [
6345
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6346
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("label", { className: "k-colorgradient-input-label", children: "G" })
6548
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: "k-vstack", children: [
6549
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6550
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("label", { className: "k-colorgradient-input-label", children: "G" })
6347
6551
  ] }),
6348
- /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)("div", { className: "k-vstack", children: [
6349
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6350
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("label", { className: "k-colorgradient-input-label", children: "B" })
6552
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: "k-vstack", children: [
6553
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6554
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("label", { className: "k-colorgradient-input-label", children: "B" })
6351
6555
  ] }),
6352
- /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)("div", { className: "k-vstack", children: [
6353
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "1.00" }),
6354
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("label", { className: "k-colorgradient-input-label", children: "A" })
6556
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: "k-vstack", children: [
6557
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "1.00" }),
6558
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("label", { className: "k-colorgradient-input-label", children: "A" })
6355
6559
  ] })
6356
6560
  ] }),
6357
- mode === "rgb" && /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)(import_jsx_runtime83.Fragment, { children: [
6358
- /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)("div", { className: "k-vstack", children: [
6359
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6360
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("label", { className: "k-colorgradient-input-label", children: "R" })
6561
+ mode === "rgb" && /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)(import_jsx_runtime93.Fragment, { children: [
6562
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: "k-vstack", children: [
6563
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6564
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("label", { className: "k-colorgradient-input-label", children: "R" })
6361
6565
  ] }),
6362
- /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)("div", { className: "k-vstack", children: [
6363
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6364
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("label", { className: "k-colorgradient-input-label", children: "G" })
6566
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: "k-vstack", children: [
6567
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6568
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("label", { className: "k-colorgradient-input-label", children: "G" })
6365
6569
  ] }),
6366
- /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)("div", { className: "k-vstack", children: [
6367
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6368
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("label", { className: "k-colorgradient-input-label", children: "B" })
6570
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: "k-vstack", children: [
6571
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6572
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("label", { className: "k-colorgradient-input-label", children: "B" })
6369
6573
  ] })
6370
6574
  ] }),
6371
- mode === "hsva" && /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)(import_jsx_runtime83.Fragment, { children: [
6372
- /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)("div", { className: "k-vstack", children: [
6373
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6374
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("label", { className: "k-colorgradient-input-label", children: "H" })
6575
+ mode === "hsva" && /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)(import_jsx_runtime93.Fragment, { children: [
6576
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: "k-vstack", children: [
6577
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6578
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("label", { className: "k-colorgradient-input-label", children: "H" })
6375
6579
  ] }),
6376
- /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)("div", { className: "k-vstack", children: [
6377
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6378
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("label", { className: "k-colorgradient-input-label", children: "S" })
6580
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: "k-vstack", children: [
6581
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6582
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("label", { className: "k-colorgradient-input-label", children: "S" })
6379
6583
  ] }),
6380
- /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)("div", { className: "k-vstack", children: [
6381
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6382
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("label", { className: "k-colorgradient-input-label", children: "V" })
6584
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: "k-vstack", children: [
6585
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6586
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("label", { className: "k-colorgradient-input-label", children: "V" })
6383
6587
  ] }),
6384
- /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)("div", { className: "k-vstack", children: [
6385
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "1.00" }),
6386
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("label", { className: "k-colorgradient-input-label", children: "A" })
6588
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: "k-vstack", children: [
6589
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "1.00" }),
6590
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("label", { className: "k-colorgradient-input-label", children: "A" })
6387
6591
  ] })
6388
6592
  ] }),
6389
- mode === "hsv" && /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)(import_jsx_runtime83.Fragment, { children: [
6390
- /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)("div", { className: "k-vstack", children: [
6391
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6392
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("label", { className: "k-colorgradient-input-label", children: "H" })
6593
+ mode === "hsv" && /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)(import_jsx_runtime93.Fragment, { children: [
6594
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: "k-vstack", children: [
6595
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6596
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("label", { className: "k-colorgradient-input-label", children: "H" })
6393
6597
  ] }),
6394
- /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)("div", { className: "k-vstack", children: [
6395
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6396
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("label", { className: "k-colorgradient-input-label", children: "S" })
6598
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: "k-vstack", children: [
6599
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6600
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("label", { className: "k-colorgradient-input-label", children: "S" })
6397
6601
  ] }),
6398
- /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)("div", { className: "k-vstack", children: [
6399
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6400
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("label", { className: "k-colorgradient-input-label", children: "V" })
6602
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: "k-vstack", children: [
6603
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6604
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("label", { className: "k-colorgradient-input-label", children: "V" })
6401
6605
  ] })
6402
6606
  ] }),
6403
- mode === "hex" && /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(import_jsx_runtime83.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)("div", { className: "k-vstack k-flex-1", children: [
6404
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(Textbox, { showClearButton: false, value: "#b88484AA", className: "k-hex-value" }),
6405
- /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("label", { className: "k-colorgradient-input-label", children: "HEX" })
6607
+ mode === "hex" && /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(import_jsx_runtime93.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)("div", { className: "k-vstack k-flex-1", children: [
6608
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(Textbox, { showClearButton: false, value: "#b88484AA", className: "k-hex-value" }),
6609
+ /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("label", { className: "k-colorgradient-input-label", children: "HEX" })
6406
6610
  ] }) })
6407
6611
  ] });
6408
6612
  };
6409
- ColorInput.states = states32;
6410
- ColorInput.options = options31;
6613
+ ColorInput.states = states35;
6614
+ ColorInput.options = options34;
6411
6615
  ColorInput.className = COLOR_INPUT_CLASSNAME;
6412
- ColorInput.defaultProps = defaultProps31;
6616
+ ColorInput.defaultProps = defaultProps33;
6413
6617
 
6414
6618
  // src/colorgradient/color-contrast.tsx
6415
- var import_jsx_runtime84 = require("react/jsx-runtime");
6619
+ var import_jsx_runtime94 = require("react/jsx-runtime");
6416
6620
  var COLOR_CONTRAST_CLASSNAME = "k-colorgradient-color-contrast";
6417
- var states33 = [];
6418
- var options32 = {};
6419
- var defaultProps32 = {};
6420
- var ColorContrast = () => /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)("div", { className: classNames(COLOR_CONTRAST_CLASSNAME, "k-vbox"), children: [
6421
- /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)("div", { className: "k-contrast-ratio", children: [
6422
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("span", { className: "k-contrast-ratio-text", children: "Contrast ratio: 7.1" }),
6423
- /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)("span", { className: "k-contrast-validation !k-text-success", children: [
6424
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(Icon, { icon: "check" }),
6425
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(Icon, { icon: "check" })
6621
+ var states36 = [];
6622
+ var options35 = {};
6623
+ var defaultProps34 = {};
6624
+ var ColorContrast = () => /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)("div", { className: classNames(COLOR_CONTRAST_CLASSNAME, "k-vbox"), children: [
6625
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)("div", { className: "k-contrast-ratio", children: [
6626
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsx)("span", { className: "k-contrast-ratio-text", children: "Contrast ratio: 7.1" }),
6627
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)("span", { className: "k-contrast-validation !k-text-success", children: [
6628
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(Icon, { icon: "check" }),
6629
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(Icon, { icon: "check" })
6426
6630
  ] })
6427
6631
  ] }),
6428
- /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)("div", { children: [
6429
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("span", { children: "AA: 4.5" }),
6430
- /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)("span", { className: "k-contrast-validation !k-text-success", children: [
6632
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)("div", { children: [
6633
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsx)("span", { children: "AA: 4.5" }),
6634
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)("span", { className: "k-contrast-validation !k-text-success", children: [
6431
6635
  "Pass",
6432
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(Icon, { icon: "check" })
6636
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(Icon, { icon: "check" })
6433
6637
  ] })
6434
6638
  ] }),
6435
- /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)("div", { children: [
6436
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("span", { children: "AAA: 7.0" }),
6437
- /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)("span", { className: "k-contrast-validation !k-text-error", children: [
6639
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)("div", { children: [
6640
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsx)("span", { children: "AAA: 7.0" }),
6641
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)("span", { className: "k-contrast-validation !k-text-error", children: [
6438
6642
  "Fail",
6439
- /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(Icon, { icon: "x" })
6643
+ /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(Icon, { icon: "x" })
6440
6644
  ] })
6441
6645
  ] })
6442
6646
  ] });
6443
- ColorContrast.states = states33;
6444
- ColorContrast.options = options32;
6647
+ ColorContrast.states = states36;
6648
+ ColorContrast.options = options35;
6445
6649
  ColorContrast.className = COLOR_CONTRAST_CLASSNAME;
6446
- ColorContrast.defaultProps = defaultProps32;
6650
+ ColorContrast.defaultProps = defaultProps34;
6447
6651
 
6448
6652
  // src/colorgradient/color-gradient.spec.tsx
6449
- var import_jsx_runtime85 = require("react/jsx-runtime");
6653
+ var import_jsx_runtime95 = require("react/jsx-runtime");
6450
6654
  var COLOR_GRADIENT_CLASSNAME = "k-colorgradient";
6451
- var states34 = [
6655
+ var states37 = [
6452
6656
  States.hover,
6453
6657
  States.focus,
6454
6658
  States.readonly,
6455
6659
  States.disabled
6456
6660
  ];
6457
- var options33 = {};
6458
- var defaultProps33 = {
6661
+ var options36 = {};
6662
+ var defaultProps35 = {
6459
6663
  mode: "rgba",
6460
6664
  readonly: false,
6461
6665
  disabled: false,
@@ -6466,20 +6670,20 @@ var defaultProps33 = {
6466
6670
  };
6467
6671
  var ColorGradient = (props) => {
6468
6672
  const {
6469
- mode = defaultProps33.mode,
6470
- readonly = defaultProps33.readonly,
6471
- disabled = defaultProps33.disabled,
6673
+ mode = defaultProps35.mode,
6674
+ readonly = defaultProps35.readonly,
6675
+ disabled = defaultProps35.disabled,
6472
6676
  dir,
6473
- contrast = defaultProps33.contrast,
6677
+ contrast = defaultProps35.contrast,
6474
6678
  hover,
6475
6679
  focus,
6476
6680
  hoverHandle,
6477
6681
  focusHandle,
6478
- gradientStyle = defaultProps33.gradientStyle,
6479
- dragHandleStyle = defaultProps33.dragHandleStyle,
6480
- alphaStyle = defaultProps33.alphaStyle
6682
+ gradientStyle = defaultProps35.gradientStyle,
6683
+ dragHandleStyle = defaultProps35.dragHandleStyle,
6684
+ alphaStyle = defaultProps35.alphaStyle
6481
6685
  } = props;
6482
- return /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("div", { className: classNames(
6686
+ return /* @__PURE__ */ (0, import_jsx_runtime95.jsxs)("div", { className: classNames(
6483
6687
  props.className,
6484
6688
  COLOR_GRADIENT_CLASSNAME,
6485
6689
  stateClassNames(COLOR_GRADIENT_CLASSNAME, {
@@ -6489,8 +6693,8 @@ var ColorGradient = (props) => {
6489
6693
  disabled
6490
6694
  })
6491
6695
  ), dir, children: [
6492
- /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("div", { className: "k-colorgradient-canvas k-hstack", children: [
6493
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: "k-hsv-rectangle", style: gradientStyle, children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: "k-hsv-gradient", children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: classNames(
6696
+ /* @__PURE__ */ (0, import_jsx_runtime95.jsxs)("div", { className: "k-colorgradient-canvas k-hstack", children: [
6697
+ /* @__PURE__ */ (0, import_jsx_runtime95.jsx)("div", { className: "k-hsv-rectangle", style: gradientStyle, children: /* @__PURE__ */ (0, import_jsx_runtime95.jsx)("div", { className: "k-hsv-gradient", children: /* @__PURE__ */ (0, import_jsx_runtime95.jsx)("div", { className: classNames(
6494
6698
  "k-hsv-draghandle",
6495
6699
  "k-draghandle",
6496
6700
  {
@@ -6498,39 +6702,39 @@ var ColorGradient = (props) => {
6498
6702
  "k-focus": focusHandle
6499
6703
  }
6500
6704
  ), style: dragHandleStyle }) }) }),
6501
- /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)("div", { className: "k-hsv-controls k-hstack", children: [
6502
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(SliderGradientVertical, { className: "k-hue-slider", hover: hoverHandle, focus: focusHandle }),
6503
- mode !== "rgb" && mode !== "hsv" && /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(SliderGradientVertical, { className: "k-alpha-slider", hover: hoverHandle, focus: focusHandle, trackStyle: alphaStyle })
6705
+ /* @__PURE__ */ (0, import_jsx_runtime95.jsxs)("div", { className: "k-hsv-controls k-hstack", children: [
6706
+ /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(SliderGradientVertical, { className: "k-hue-slider", hover: hoverHandle, focus: focusHandle }),
6707
+ mode !== "rgb" && mode !== "hsv" && /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(SliderGradientVertical, { className: "k-alpha-slider", hover: hoverHandle, focus: focusHandle, trackStyle: alphaStyle })
6504
6708
  ] })
6505
6709
  ] }),
6506
- /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(ColorInput, { mode: props.mode }),
6507
- contrast && /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(ColorContrast, {})
6710
+ /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(ColorInput, { mode: props.mode }),
6711
+ contrast && /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(ColorContrast, {})
6508
6712
  ] });
6509
6713
  };
6510
- ColorGradient.states = states34;
6511
- ColorGradient.options = options33;
6714
+ ColorGradient.states = states37;
6715
+ ColorGradient.options = options36;
6512
6716
  ColorGradient.className = COLOR_GRADIENT_CLASSNAME;
6513
- ColorGradient.defaultProps = defaultProps33;
6717
+ ColorGradient.defaultProps = defaultProps35;
6514
6718
 
6515
6719
  // src/colorgradient/templates/colorgradient-normal.tsx
6516
- var import_jsx_runtime86 = require("react/jsx-runtime");
6720
+ var import_jsx_runtime96 = require("react/jsx-runtime");
6517
6721
 
6518
6722
  // src/colorgradient/templates/colorgradient-contrast.tsx
6519
- var import_jsx_runtime87 = require("react/jsx-runtime");
6723
+ var import_jsx_runtime97 = require("react/jsx-runtime");
6520
6724
 
6521
6725
  // src/colorpalette/colorpalette-row.tsx
6522
- var import_jsx_runtime88 = require("react/jsx-runtime");
6523
- var ColorPaletteRow = (props) => /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("tr", { children: props.children });
6726
+ var import_jsx_runtime98 = require("react/jsx-runtime");
6727
+ var ColorPaletteRow = (props) => /* @__PURE__ */ (0, import_jsx_runtime98.jsx)("tr", { children: props.children });
6524
6728
 
6525
6729
  // src/colorpalette/colorpalette-tile.tsx
6526
- var import_jsx_runtime89 = require("react/jsx-runtime");
6730
+ var import_jsx_runtime99 = require("react/jsx-runtime");
6527
6731
  var COLORPALETTETILE_CLASSNAME = `k-colorpalette-tile`;
6528
- var states35 = [
6732
+ var states38 = [
6529
6733
  States.hover,
6530
6734
  States.focus,
6531
6735
  States.selected
6532
6736
  ];
6533
- var options34 = {};
6737
+ var options37 = {};
6534
6738
  var ColorPaletteTile = (props) => {
6535
6739
  const {
6536
6740
  color,
@@ -6545,7 +6749,7 @@ var ColorPaletteTile = (props) => {
6545
6749
  "width": tileSize ? tileSize + "px" : "",
6546
6750
  "height": tileSize ? tileSize + "px" : ""
6547
6751
  };
6548
- return /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
6752
+ return /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
6549
6753
  "td",
6550
6754
  {
6551
6755
  ...other,
@@ -6562,24 +6766,24 @@ var ColorPaletteTile = (props) => {
6562
6766
  }
6563
6767
  );
6564
6768
  };
6565
- ColorPaletteTile.states = states35;
6566
- ColorPaletteTile.options = options34;
6769
+ ColorPaletteTile.states = states38;
6770
+ ColorPaletteTile.options = options37;
6567
6771
  ColorPaletteTile.className = COLORPALETTETILE_CLASSNAME;
6568
6772
 
6569
6773
  // src/colorpalette/colorpalette.spec.tsx
6570
- var import_jsx_runtime90 = require("react/jsx-runtime");
6774
+ var import_jsx_runtime100 = require("react/jsx-runtime");
6571
6775
  var COLORPALETTE_CLASSNAME = `k-colorpalette`;
6572
- var states36 = [
6776
+ var states39 = [
6573
6777
  States.disabled
6574
6778
  ];
6575
- var options35 = {};
6576
- var defaultProps34 = {
6779
+ var options38 = {};
6780
+ var defaultProps36 = {
6577
6781
  columns: 10
6578
6782
  };
6579
6783
  var ColorPalette = (props) => {
6580
6784
  const {
6581
6785
  palette,
6582
- columns = defaultProps34.columns,
6786
+ columns = defaultProps36.columns,
6583
6787
  tileSize,
6584
6788
  disabled,
6585
6789
  ...other
@@ -6592,14 +6796,14 @@ var ColorPalette = (props) => {
6592
6796
  Array.from({ length: Math.ceil(colors.length / cols) }, (_, i) => {
6593
6797
  const items = [];
6594
6798
  colors.slice(i * cols, (i + 1) * cols).map((color) => {
6595
- items.push(/* @__PURE__ */ (0, import_jsx_runtime90.jsx)(ColorPaletteTile, { color, tileSize }));
6799
+ items.push(/* @__PURE__ */ (0, import_jsx_runtime100.jsx)(ColorPaletteTile, { color, tileSize }));
6596
6800
  });
6597
- const row = /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(ColorPaletteRow, { children: items });
6801
+ const row = /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(ColorPaletteRow, { children: items });
6598
6802
  newChildren.push(row);
6599
6803
  });
6600
6804
  }
6601
6805
  }
6602
- return /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
6806
+ return /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
6603
6807
  "div",
6604
6808
  {
6605
6809
  ...other,
@@ -6610,17 +6814,17 @@ var ColorPalette = (props) => {
6610
6814
  disabled
6611
6815
  })
6612
6816
  ),
6613
- children: /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("table", { className: "k-colorpalette-table", children: newChildren.length > 0 ? newChildren : props.children })
6817
+ children: /* @__PURE__ */ (0, import_jsx_runtime100.jsx)("table", { className: "k-colorpalette-table", children: newChildren.length > 0 ? newChildren : props.children })
6614
6818
  }
6615
6819
  );
6616
6820
  };
6617
- ColorPalette.states = states36;
6618
- ColorPalette.options = options35;
6821
+ ColorPalette.states = states39;
6822
+ ColorPalette.options = options38;
6619
6823
  ColorPalette.className = COLORPALETTE_CLASSNAME;
6620
- ColorPalette.defaultProps = defaultProps34;
6824
+ ColorPalette.defaultProps = defaultProps36;
6621
6825
 
6622
6826
  // src/colorpalette/templates/colorpalette-normal.tsx
6623
- var import_jsx_runtime91 = require("react/jsx-runtime");
6827
+ var import_jsx_runtime101 = require("react/jsx-runtime");
6624
6828
 
6625
6829
  // src/colorpalette/colorpalette-presets.tsx
6626
6830
  var PALETTEPRESETS = {
@@ -6675,83 +6879,83 @@ var PALETTEPRESETS = {
6675
6879
  };
6676
6880
 
6677
6881
  // src/coloreditor/color-editor.spec.tsx
6678
- var import_jsx_runtime92 = require("react/jsx-runtime");
6882
+ var import_jsx_runtime102 = require("react/jsx-runtime");
6679
6883
  var COLOREDITOR_CLASSNAME = "k-coloreditor";
6680
- var states37 = [
6884
+ var states40 = [
6681
6885
  States.focus
6682
6886
  ];
6683
- var options36 = {};
6684
- var defaultProps35 = {
6887
+ var options39 = {};
6888
+ var defaultProps37 = {
6685
6889
  view: "gradient",
6686
6890
  palette: PALETTEPRESETS.office
6687
6891
  };
6688
6892
  var ColorEditor = (props) => {
6689
6893
  const {
6690
- view = defaultProps35.view,
6894
+ view = defaultProps37.view,
6691
6895
  color,
6692
6896
  currentColor,
6693
6897
  focus,
6694
6898
  focusView,
6695
6899
  dir,
6696
6900
  group,
6697
- palette = defaultProps35.palette
6901
+ palette = defaultProps37.palette
6698
6902
  } = props;
6699
- return /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)("div", { className: classNames(
6903
+ return /* @__PURE__ */ (0, import_jsx_runtime102.jsxs)("div", { className: classNames(
6700
6904
  props.className,
6701
6905
  "k-flatcolorpicker",
6702
6906
  COLOREDITOR_CLASSNAME,
6703
6907
  stateClassNames(COLOREDITOR_CLASSNAME, { focus })
6704
6908
  ), dir, children: [
6705
- /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)("div", { className: "k-coloreditor-header k-hstack", children: [
6706
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)("div", { className: "k-coloreditor-header-actions k-hstack", children: group && /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)(ButtonGroup, { fillMode: "flat", children: [
6707
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(Button, { className: "k-group-start", fillMode: "flat", icon: "droplet-slider", selected: view === "gradient" }),
6708
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(Button, { className: "k-group-end", fillMode: "flat", icon: "palette", selected: view === "palette" })
6909
+ /* @__PURE__ */ (0, import_jsx_runtime102.jsxs)("div", { className: "k-coloreditor-header k-hstack", children: [
6910
+ /* @__PURE__ */ (0, import_jsx_runtime102.jsx)("div", { className: "k-coloreditor-header-actions k-hstack", children: group && /* @__PURE__ */ (0, import_jsx_runtime102.jsxs)(ButtonGroup, { fillMode: "flat", children: [
6911
+ /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(Button, { className: "k-group-start", fillMode: "flat", icon: "droplet-slider", selected: view === "gradient" }),
6912
+ /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(Button, { className: "k-group-end", fillMode: "flat", icon: "palette", selected: view === "palette" })
6709
6913
  ] }) }),
6710
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)("div", { className: "k-spacer" }),
6711
- /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)("div", { className: "k-coloreditor-header-actions k-hstack", children: [
6712
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(Button, { fillMode: "flat", icon: "droplet-slash" }),
6713
- /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)("div", { className: "k-coloreditor-preview k-vstack", children: [
6714
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(ColorPreview, { className: "k-coloreditor-preview-color", color }),
6715
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(ColorPreview, { className: "k-coloreditor-current-color", color: currentColor })
6914
+ /* @__PURE__ */ (0, import_jsx_runtime102.jsx)("div", { className: "k-spacer" }),
6915
+ /* @__PURE__ */ (0, import_jsx_runtime102.jsxs)("div", { className: "k-coloreditor-header-actions k-hstack", children: [
6916
+ /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(Button, { fillMode: "flat", icon: "droplet-slash" }),
6917
+ /* @__PURE__ */ (0, import_jsx_runtime102.jsxs)("div", { className: "k-coloreditor-preview k-vstack", children: [
6918
+ /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(ColorPreview, { className: "k-coloreditor-preview-color", color }),
6919
+ /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(ColorPreview, { className: "k-coloreditor-current-color", color: currentColor })
6716
6920
  ] })
6717
6921
  ] })
6718
6922
  ] }),
6719
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)("div", { className: "k-coloreditor-views k-vstack", children: view === "gradient" ? /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(ColorGradient, { focus: focusView }) : /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(ColorPalette, { palette }) }),
6720
- /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)(ActionButtons, { className: "k-coloreditor-footer", alignment: "end", children: [
6721
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(Button, { className: "k-coloreditor-cancel", children: "Cancel" }),
6722
- /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(Button, { themeColor: "primary", className: "k-coloreditor-apply", children: "Apply" })
6923
+ /* @__PURE__ */ (0, import_jsx_runtime102.jsx)("div", { className: "k-coloreditor-views k-vstack", children: view === "gradient" ? /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(ColorGradient, { focus: focusView }) : /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(ColorPalette, { palette }) }),
6924
+ /* @__PURE__ */ (0, import_jsx_runtime102.jsxs)(ActionButtons, { className: "k-coloreditor-footer", alignment: "end", children: [
6925
+ /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(Button, { className: "k-coloreditor-cancel", children: "Cancel" }),
6926
+ /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(Button, { themeColor: "primary", className: "k-coloreditor-apply", children: "Apply" })
6723
6927
  ] })
6724
6928
  ] });
6725
6929
  };
6726
- ColorEditor.states = states37;
6727
- ColorEditor.options = options36;
6930
+ ColorEditor.states = states40;
6931
+ ColorEditor.options = options39;
6728
6932
  ColorEditor.className = COLOREDITOR_CLASSNAME;
6729
- ColorEditor.defaultProps = defaultProps35;
6933
+ ColorEditor.defaultProps = defaultProps37;
6730
6934
 
6731
6935
  // src/coloreditor/templates/coloreditor-normal.tsx
6732
- var import_jsx_runtime93 = require("react/jsx-runtime");
6936
+ var import_jsx_runtime103 = require("react/jsx-runtime");
6733
6937
 
6734
6938
  // src/coloreditor/templates/coloreditor-palette.tsx
6735
- var import_jsx_runtime94 = require("react/jsx-runtime");
6939
+ var import_jsx_runtime104 = require("react/jsx-runtime");
6736
6940
 
6737
6941
  // src/coloreditor/templates/coloreditor-group.tsx
6738
- var import_jsx_runtime95 = require("react/jsx-runtime");
6942
+ var import_jsx_runtime105 = require("react/jsx-runtime");
6739
6943
 
6740
6944
  // src/coloreditor/templates/coloreditor-palette-group.tsx
6741
- var import_jsx_runtime96 = require("react/jsx-runtime");
6945
+ var import_jsx_runtime106 = require("react/jsx-runtime");
6742
6946
 
6743
6947
  // src/colorpicker/templates/colorpicker-popup-gradient.tsx
6744
- var import_jsx_runtime97 = require("react/jsx-runtime");
6948
+ var import_jsx_runtime107 = require("react/jsx-runtime");
6745
6949
 
6746
6950
  // src/colorpicker/templates/colorpicker-popup-palette.tsx
6747
- var import_jsx_runtime98 = require("react/jsx-runtime");
6951
+ var import_jsx_runtime108 = require("react/jsx-runtime");
6748
6952
 
6749
6953
  // src/action-sheet/action-sheet.spec.tsx
6750
- var import_jsx_runtime99 = require("react/jsx-runtime");
6954
+ var import_jsx_runtime109 = require("react/jsx-runtime");
6751
6955
  var ACTIONSHEET_CLASSNAME = `k-actionsheet`;
6752
- var states38 = [];
6753
- var options37 = {};
6754
- var defaultProps36 = {
6956
+ var states41 = [];
6957
+ var options40 = {};
6958
+ var defaultProps38 = {
6755
6959
  side: "bottom",
6756
6960
  fullscreen: false,
6757
6961
  adaptive: false,
@@ -6764,14 +6968,14 @@ var ActionSheet = (props) => {
6764
6968
  header,
6765
6969
  footer,
6766
6970
  actions,
6767
- side = defaultProps36.side,
6768
- fullscreen = defaultProps36.fullscreen,
6769
- adaptive = defaultProps36.adaptive,
6770
- overlay = defaultProps36.overlay,
6971
+ side = defaultProps38.side,
6972
+ fullscreen = defaultProps38.fullscreen,
6973
+ adaptive = defaultProps38.adaptive,
6974
+ overlay = defaultProps38.overlay,
6771
6975
  ...other
6772
6976
  } = props;
6773
- const _ActionSheetHeader = title ? /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(ActionSheetHeader, { title }) : header ? header : Array.isArray(children) && children.find((child) => child.type === ActionSheetHeader);
6774
- const _ActionSheetFooter = actions ? /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(ActionSheetFooter, { className: "k-actions", actions }) : footer ? typeof footer === "string" ? /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(ActionSheetFooter, { children: footer }) : footer : Array.isArray(children) && children.find((child) => child.type === ActionSheetFooter);
6977
+ const _ActionSheetHeader = title ? /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(ActionSheetHeader, { title }) : header ? header : Array.isArray(children) && children.find((child) => child.type === ActionSheetHeader);
6978
+ const _ActionSheetFooter = actions ? /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(ActionSheetFooter, { className: "k-actions", actions }) : footer ? typeof footer === "string" ? /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(ActionSheetFooter, { children: footer }) : footer : Array.isArray(children) && children.find((child) => child.type === ActionSheetFooter);
6775
6979
  const _ActionSheetContent = Array.isArray(children) ? children.filter((child) => {
6776
6980
  switch (child.type) {
6777
6981
  case ActionSheetHeader:
@@ -6781,10 +6985,10 @@ var ActionSheet = (props) => {
6781
6985
  return true;
6782
6986
  }
6783
6987
  return true;
6784
- }) : children.type === ActionSheetItems ? children : /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(import_jsx_runtime99.Fragment, {});
6785
- return /* @__PURE__ */ (0, import_jsx_runtime99.jsxs)("div", { className: "k-actionsheet-container", children: [
6786
- overlay && /* @__PURE__ */ (0, import_jsx_runtime99.jsx)("div", { className: "k-overlay" }),
6787
- /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
6988
+ }) : children.type === ActionSheetItems ? children : /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(import_jsx_runtime109.Fragment, {});
6989
+ return /* @__PURE__ */ (0, import_jsx_runtime109.jsxs)("div", { className: "k-actionsheet-container", children: [
6990
+ overlay && /* @__PURE__ */ (0, import_jsx_runtime109.jsx)("div", { className: "k-overlay" }),
6991
+ /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(
6788
6992
  AnimationContainer,
6789
6993
  {
6790
6994
  animationStyle: {
@@ -6794,7 +6998,7 @@ var ActionSheet = (props) => {
6794
6998
  [`${side === "top" || side === "bottom" ? "width" : null}`]: "100%",
6795
6999
  [`${side === "left" || side === "right" ? "height" : null}`]: "100%"
6796
7000
  },
6797
- children: /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
7001
+ children: /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(
6798
7002
  "div",
6799
7003
  {
6800
7004
  ...other,
@@ -6807,9 +7011,9 @@ var ActionSheet = (props) => {
6807
7011
  "k-adaptive-actionsheet": adaptive
6808
7012
  }
6809
7013
  ),
6810
- children: /* @__PURE__ */ (0, import_jsx_runtime99.jsxs)(import_jsx_runtime99.Fragment, { children: [
7014
+ children: /* @__PURE__ */ (0, import_jsx_runtime109.jsxs)(import_jsx_runtime109.Fragment, { children: [
6811
7015
  _ActionSheetHeader,
6812
- /* @__PURE__ */ (0, import_jsx_runtime99.jsx)("div", { className: classNames(
7016
+ /* @__PURE__ */ (0, import_jsx_runtime109.jsx)("div", { className: classNames(
6813
7017
  "k-actionsheet-content",
6814
7018
  {
6815
7019
  "!k-overflow-hidden": adaptive
@@ -6823,13 +7027,13 @@ var ActionSheet = (props) => {
6823
7027
  )
6824
7028
  ] });
6825
7029
  };
6826
- ActionSheet.states = states38;
6827
- ActionSheet.options = options37;
7030
+ ActionSheet.states = states41;
7031
+ ActionSheet.options = options40;
6828
7032
  ActionSheet.className = ACTIONSHEET_CLASSNAME;
6829
- ActionSheet.defaultProps = defaultProps36;
7033
+ ActionSheet.defaultProps = defaultProps38;
6830
7034
 
6831
7035
  // src/action-sheet/actionsheet-header.tsx
6832
- var import_jsx_runtime100 = require("react/jsx-runtime");
7036
+ var import_jsx_runtime110 = require("react/jsx-runtime");
6833
7037
  var ACTIONSHEETHEADER_CLASSNAME = `k-actionsheet-titlebar`;
6834
7038
  var ActionSheetHeader = (props) => {
6835
7039
  const {
@@ -6839,7 +7043,7 @@ var ActionSheetHeader = (props) => {
6839
7043
  filter,
6840
7044
  ...other
6841
7045
  } = props;
6842
- return /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
7046
+ return /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
6843
7047
  "div",
6844
7048
  {
6845
7049
  ...other,
@@ -6847,30 +7051,30 @@ var ActionSheetHeader = (props) => {
6847
7051
  props.className,
6848
7052
  ACTIONSHEETHEADER_CLASSNAME
6849
7053
  ),
6850
- children: /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)(import_jsx_runtime100.Fragment, { children: [
6851
- /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)("div", { className: "k-actionsheet-titlebar-group k-hbox", children: [
6852
- !props.children && (title || subTitle) && /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(import_jsx_runtime100.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)("div", { className: "k-actionsheet-title", children: [
6853
- title !== "" && /* @__PURE__ */ (0, import_jsx_runtime100.jsx)("div", { className: "k-text-center", children: title }),
6854
- subTitle !== "" && /* @__PURE__ */ (0, import_jsx_runtime100.jsx)("div", { className: "k-actionsheet-subtitle k-text-center", children: subTitle })
7054
+ children: /* @__PURE__ */ (0, import_jsx_runtime110.jsxs)(import_jsx_runtime110.Fragment, { children: [
7055
+ /* @__PURE__ */ (0, import_jsx_runtime110.jsxs)("div", { className: "k-actionsheet-titlebar-group k-hbox", children: [
7056
+ !props.children && (title || subTitle) && /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(import_jsx_runtime110.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime110.jsxs)("div", { className: "k-actionsheet-title", children: [
7057
+ title !== "" && /* @__PURE__ */ (0, import_jsx_runtime110.jsx)("div", { className: "k-text-center", children: title }),
7058
+ subTitle !== "" && /* @__PURE__ */ (0, import_jsx_runtime110.jsx)("div", { className: "k-actionsheet-subtitle k-text-center", children: subTitle })
6855
7059
  ] }) }),
6856
- props.children && /* @__PURE__ */ (0, import_jsx_runtime100.jsx)("div", { className: "k-actionsheet-title", children: props.children }),
6857
- actions && /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(import_jsx_runtime100.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime100.jsx)("div", { className: "k-actionsheet-actions", children: actions.map((actionName) => /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(Button, { icon: actionName, size: "large", fillMode: "flat" }, actionName)) }) })
7060
+ props.children && /* @__PURE__ */ (0, import_jsx_runtime110.jsx)("div", { className: "k-actionsheet-title", children: props.children }),
7061
+ actions && /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(import_jsx_runtime110.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime110.jsx)("div", { className: "k-actionsheet-actions", children: actions.map((actionName) => /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(Button, { icon: actionName, size: "large", fillMode: "flat" }, actionName)) }) })
6858
7062
  ] }),
6859
- filter && /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(import_jsx_runtime100.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime100.jsx)("div", { className: "k-actionsheet-titlebar-group k-actionsheet-filter", children: /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(Searchbox, { placeholder: "Filter", size: "large" }) }) })
7063
+ filter && /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(import_jsx_runtime110.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime110.jsx)("div", { className: "k-actionsheet-titlebar-group k-actionsheet-filter", children: /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(Searchbox, { placeholder: "Filter", size: "large" }) }) })
6860
7064
  ] })
6861
7065
  }
6862
7066
  );
6863
7067
  };
6864
7068
 
6865
7069
  // src/action-sheet/actionsheet-footer.tsx
6866
- var import_jsx_runtime101 = require("react/jsx-runtime");
7070
+ var import_jsx_runtime111 = require("react/jsx-runtime");
6867
7071
  var ACTIONSHEETFOOTER_CLASSNAME = `k-actionsheet-footer`;
6868
7072
  var ActionSheetFooter = (props) => {
6869
7073
  const {
6870
7074
  actions,
6871
7075
  ...other
6872
7076
  } = props;
6873
- return /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
7077
+ return /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(
6874
7078
  action_buttons_spec_default,
6875
7079
  {
6876
7080
  ...other,
@@ -6879,17 +7083,17 @@ var ActionSheetFooter = (props) => {
6879
7083
  ACTIONSHEETFOOTER_CLASSNAME
6880
7084
  ),
6881
7085
  alignment: "stretched",
6882
- children: /* @__PURE__ */ (0, import_jsx_runtime101.jsxs)(import_jsx_runtime101.Fragment, { children: [
7086
+ children: /* @__PURE__ */ (0, import_jsx_runtime111.jsxs)(import_jsx_runtime111.Fragment, { children: [
6883
7087
  actions && actions.map((action, index) => {
6884
7088
  if (action === "|") {
6885
- return /* @__PURE__ */ (0, import_jsx_runtime101.jsx)("span", { className: "k-separator" }, index);
7089
+ return /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("span", { className: "k-separator" }, index);
6886
7090
  }
6887
7091
  if (action === " ") {
6888
- return /* @__PURE__ */ (0, import_jsx_runtime101.jsx)("span", { className: "k-spacer" }, index);
7092
+ return /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("span", { className: "k-spacer" }, index);
6889
7093
  }
6890
7094
  const importantFlag = action.startsWith("!");
6891
7095
  const actionName = importantFlag ? action.substring(1) : action;
6892
- return /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(Button, { text: actionName, size: "large", themeColor: importantFlag ? "primary" : "base" }, index);
7096
+ return /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(Button, { text: actionName, size: "large", themeColor: importantFlag ? "primary" : "base" }, index);
6893
7097
  }),
6894
7098
  !actions && props.children
6895
7099
  ] })
@@ -6898,12 +7102,12 @@ var ActionSheetFooter = (props) => {
6898
7102
  };
6899
7103
 
6900
7104
  // src/action-sheet/actionsheet-items.tsx
6901
- var import_jsx_runtime102 = require("react/jsx-runtime");
7105
+ var import_jsx_runtime112 = require("react/jsx-runtime");
6902
7106
  var ActionSheetItems = (props) => {
6903
7107
  const {
6904
7108
  ...other
6905
7109
  } = props;
6906
- return /* @__PURE__ */ (0, import_jsx_runtime102.jsx)(
7110
+ return /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(
6907
7111
  "div",
6908
7112
  {
6909
7113
  ...other,
@@ -6917,8 +7121,8 @@ var ActionSheetItems = (props) => {
6917
7121
  };
6918
7122
 
6919
7123
  // src/action-sheet/actionsheet-item.tsx
6920
- var import_jsx_runtime103 = require("react/jsx-runtime");
6921
- var states39 = [
7124
+ var import_jsx_runtime113 = require("react/jsx-runtime");
7125
+ var states42 = [
6922
7126
  States.hover,
6923
7127
  States.focus,
6924
7128
  States.selected,
@@ -6926,9 +7130,9 @@ var states39 = [
6926
7130
  ];
6927
7131
 
6928
7132
  // src/combobox/combobox.spec.tsx
6929
- var import_jsx_runtime104 = require("react/jsx-runtime");
7133
+ var import_jsx_runtime114 = require("react/jsx-runtime");
6930
7134
  var COMBOBOX_CLASSNAME = `k-combobox`;
6931
- var states40 = [
7135
+ var states43 = [
6932
7136
  States.hover,
6933
7137
  States.focus,
6934
7138
  States.valid,
@@ -6938,13 +7142,13 @@ var states40 = [
6938
7142
  States.disabled,
6939
7143
  States.readonly
6940
7144
  ];
6941
- var defaultProps37 = {
7145
+ var defaultProps39 = {
6942
7146
  size: Input.defaultProps.size,
6943
7147
  rounded: Input.defaultProps.rounded,
6944
7148
  fillMode: Input.defaultProps.fillMode,
6945
7149
  separators: true
6946
7150
  };
6947
- var options38 = {
7151
+ var options41 = {
6948
7152
  size: [Size.small, Size.medium, Size.large],
6949
7153
  rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full],
6950
7154
  fillMode: [FillMode.solid, FillMode.flat, FillMode.outline]
@@ -6953,7 +7157,7 @@ var Combobox = (props) => {
6953
7157
  const {
6954
7158
  prefix,
6955
7159
  suffix,
6956
- separators = defaultProps37.separators,
7160
+ separators = defaultProps39.separators,
6957
7161
  value,
6958
7162
  placeholder,
6959
7163
  size,
@@ -6973,8 +7177,8 @@ var Combobox = (props) => {
6973
7177
  adaptiveSettings,
6974
7178
  ...other
6975
7179
  } = props;
6976
- return /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)(import_jsx_runtime104.Fragment, { children: [
6977
- /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)(
7180
+ return /* @__PURE__ */ (0, import_jsx_runtime114.jsxs)(import_jsx_runtime114.Fragment, { children: [
7181
+ /* @__PURE__ */ (0, import_jsx_runtime114.jsxs)(
6978
7182
  Input,
6979
7183
  {
6980
7184
  ...other,
@@ -6991,12 +7195,12 @@ var Combobox = (props) => {
6991
7195
  readonly,
6992
7196
  className: classNames(props.className, COMBOBOX_CLASSNAME),
6993
7197
  children: [
6994
- prefix && /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)(import_jsx_runtime104.Fragment, { children: [
6995
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(InputPrefix, { children: prefix }),
6996
- separators && /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(InputSeparator, {})
7198
+ prefix && /* @__PURE__ */ (0, import_jsx_runtime114.jsxs)(import_jsx_runtime114.Fragment, { children: [
7199
+ /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(InputPrefix, { children: prefix }),
7200
+ separators && /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(InputSeparator, {})
6997
7201
  ] }),
6998
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(InputInnerInput, { placeholder, value }),
6999
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
7202
+ /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(InputInnerInput, { placeholder, value }),
7203
+ /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
7000
7204
  InputValidationIcon,
7001
7205
  {
7002
7206
  valid,
@@ -7005,14 +7209,14 @@ var Combobox = (props) => {
7005
7209
  disabled
7006
7210
  }
7007
7211
  ),
7008
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
7212
+ /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
7009
7213
  InputLoadingIcon,
7010
7214
  {
7011
7215
  loading,
7012
7216
  disabled
7013
7217
  }
7014
7218
  ),
7015
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
7219
+ /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
7016
7220
  InputClearValue,
7017
7221
  {
7018
7222
  loading,
@@ -7021,11 +7225,11 @@ var Combobox = (props) => {
7021
7225
  value
7022
7226
  }
7023
7227
  ),
7024
- suffix && /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)(import_jsx_runtime104.Fragment, { children: [
7025
- separators && /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(InputSeparator, {}),
7026
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(InputSuffix, { children: suffix })
7228
+ suffix && /* @__PURE__ */ (0, import_jsx_runtime114.jsxs)(import_jsx_runtime114.Fragment, { children: [
7229
+ separators && /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(InputSeparator, {}),
7230
+ /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(InputSuffix, { children: suffix })
7027
7231
  ] }),
7028
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
7232
+ /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
7029
7233
  Button,
7030
7234
  {
7031
7235
  className: "k-input-button",
@@ -7038,9 +7242,9 @@ var Combobox = (props) => {
7038
7242
  ]
7039
7243
  }
7040
7244
  ),
7041
- opened && popup && /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Popup, { className: "k-list-container k-combobox-popup", children: popup }),
7042
- adaptive && /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)(ActionSheet, { adaptive: true, ...adaptiveSettings, children: [
7043
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
7245
+ opened && popup && /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(Popup, { className: "k-list-container k-combobox-popup", children: popup }),
7246
+ adaptive && /* @__PURE__ */ (0, import_jsx_runtime114.jsxs)(ActionSheet, { adaptive: true, ...adaptiveSettings, children: [
7247
+ /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
7044
7248
  ActionSheetHeader,
7045
7249
  {
7046
7250
  actions: ["x"],
@@ -7048,51 +7252,51 @@ var Combobox = (props) => {
7048
7252
  title: "Select Item"
7049
7253
  }
7050
7254
  ),
7051
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("div", { className: "k-list-container", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)(List, { size: "large", children: [
7052
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(ListItem, { text: "List item" }),
7053
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(ListItem, { text: "List item" }),
7054
- /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(ListItem, { text: "List item" })
7255
+ /* @__PURE__ */ (0, import_jsx_runtime114.jsx)("div", { className: "k-list-container", children: /* @__PURE__ */ (0, import_jsx_runtime114.jsxs)(List, { size: "large", children: [
7256
+ /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(ListItem, { text: "List item" }),
7257
+ /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(ListItem, { text: "List item" }),
7258
+ /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(ListItem, { text: "List item" })
7055
7259
  ] }) })
7056
7260
  ] })
7057
7261
  ] });
7058
7262
  };
7059
- Combobox.states = states40;
7060
- Combobox.options = options38;
7263
+ Combobox.states = states43;
7264
+ Combobox.options = options41;
7061
7265
  Combobox.className = COMBOBOX_CLASSNAME;
7062
- Combobox.defaultProps = defaultProps37;
7266
+ Combobox.defaultProps = defaultProps39;
7063
7267
 
7064
7268
  // src/combobox/templates/combobox-normal.tsx
7065
- var import_jsx_runtime105 = require("react/jsx-runtime");
7269
+ var import_jsx_runtime115 = require("react/jsx-runtime");
7066
7270
 
7067
7271
  // src/combobox/templates/combobox-popup.tsx
7068
- var import_jsx_runtime106 = require("react/jsx-runtime");
7272
+ var import_jsx_runtime116 = require("react/jsx-runtime");
7069
7273
 
7070
7274
  // src/combobox/templates/combobox-grouping.tsx
7071
- var import_jsx_runtime107 = require("react/jsx-runtime");
7275
+ var import_jsx_runtime117 = require("react/jsx-runtime");
7072
7276
 
7073
7277
  // src/combobox/templates/combobox-grouping-modern.tsx
7074
- var import_jsx_runtime108 = require("react/jsx-runtime");
7278
+ var import_jsx_runtime118 = require("react/jsx-runtime");
7075
7279
 
7076
7280
  // src/combobox/templates/combobox-adaptive.tsx
7077
- var import_jsx_runtime109 = require("react/jsx-runtime");
7281
+ var import_jsx_runtime119 = require("react/jsx-runtime");
7078
7282
 
7079
7283
  // src/combobox/templates/combobox-prefix.tsx
7080
- var import_jsx_runtime110 = require("react/jsx-runtime");
7284
+ var import_jsx_runtime120 = require("react/jsx-runtime");
7081
7285
 
7082
7286
  // src/combobox/templates/combobox-suffix.tsx
7083
- var import_jsx_runtime111 = require("react/jsx-runtime");
7287
+ var import_jsx_runtime121 = require("react/jsx-runtime");
7084
7288
 
7085
7289
  // src/menu-button/menu-button.spec.tsx
7086
- var import_jsx_runtime112 = require("react/jsx-runtime");
7290
+ var import_jsx_runtime122 = require("react/jsx-runtime");
7087
7291
  var MENUBUTTON_CLASSNAME = `k-menu-button`;
7088
- var states41 = [
7292
+ var states44 = [
7089
7293
  States.hover,
7090
7294
  States.focus,
7091
7295
  States.active,
7092
7296
  States.selected,
7093
7297
  States.disabled
7094
7298
  ];
7095
- var options39 = {
7299
+ var options42 = {
7096
7300
  size: [Size.small, Size.medium, Size.large],
7097
7301
  rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full],
7098
7302
  fillMode: [FillMode.solid, FillMode.flat, FillMode.outline, FillMode.clear, FillMode.link],
@@ -7110,7 +7314,7 @@ var options39 = {
7110
7314
  ThemeColor.inverse
7111
7315
  ]
7112
7316
  };
7113
- var defaultProps38 = {
7317
+ var defaultProps40 = {
7114
7318
  size: Size.medium,
7115
7319
  rounded: Roundness.medium,
7116
7320
  fillMode: FillMode.solid,
@@ -7120,10 +7324,10 @@ var defaultProps38 = {
7120
7324
  };
7121
7325
  var MenuButton = (props) => {
7122
7326
  const {
7123
- size = defaultProps38.size,
7124
- rounded = defaultProps38.rounded,
7125
- fillMode = defaultProps38.fillMode,
7126
- themeColor = defaultProps38.themeColor,
7327
+ size = defaultProps40.size,
7328
+ rounded = defaultProps40.rounded,
7329
+ fillMode = defaultProps40.fillMode,
7330
+ themeColor = defaultProps40.themeColor,
7127
7331
  hover,
7128
7332
  focus,
7129
7333
  active,
@@ -7131,14 +7335,14 @@ var MenuButton = (props) => {
7131
7335
  disabled,
7132
7336
  icon,
7133
7337
  text,
7134
- showArrow = defaultProps38.showArrow,
7135
- arrowIconName = defaultProps38.arrowIconName,
7338
+ showArrow = defaultProps40.showArrow,
7339
+ arrowIconName = defaultProps40.arrowIconName,
7136
7340
  popup,
7137
7341
  opened,
7138
7342
  ...other
7139
7343
  } = props;
7140
- return /* @__PURE__ */ (0, import_jsx_runtime112.jsxs)(import_jsx_runtime112.Fragment, { children: [
7141
- /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(
7344
+ return /* @__PURE__ */ (0, import_jsx_runtime122.jsxs)(import_jsx_runtime122.Fragment, { children: [
7345
+ /* @__PURE__ */ (0, import_jsx_runtime122.jsx)(
7142
7346
  Button,
7143
7347
  {
7144
7348
  ...other,
@@ -7161,34 +7365,34 @@ var MenuButton = (props) => {
7161
7365
  arrowIconName
7162
7366
  }
7163
7367
  ),
7164
- opened && popup && /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(Popup, { className: "k-menu-popup", children: popup })
7368
+ opened && popup && /* @__PURE__ */ (0, import_jsx_runtime122.jsx)(Popup, { className: "k-menu-popup", children: popup })
7165
7369
  ] });
7166
7370
  };
7167
- MenuButton.states = states41;
7168
- MenuButton.options = options39;
7371
+ MenuButton.states = states44;
7372
+ MenuButton.options = options42;
7169
7373
  MenuButton.className = MENUBUTTON_CLASSNAME;
7170
- MenuButton.defaultProps = defaultProps38;
7374
+ MenuButton.defaultProps = defaultProps40;
7171
7375
 
7172
7376
  // src/menu-button/templates/icon-menu-button.tsx
7173
- var import_jsx_runtime113 = require("react/jsx-runtime");
7377
+ var import_jsx_runtime123 = require("react/jsx-runtime");
7174
7378
 
7175
7379
  // src/menu-button/templates/icon-text-menu-button.tsx
7176
- var import_jsx_runtime114 = require("react/jsx-runtime");
7380
+ var import_jsx_runtime124 = require("react/jsx-runtime");
7177
7381
 
7178
7382
  // src/menu-button/templates/text-menu-button.tsx
7179
- var import_jsx_runtime115 = require("react/jsx-runtime");
7383
+ var import_jsx_runtime125 = require("react/jsx-runtime");
7180
7384
 
7181
7385
  // src/menu/menu-item.spec.tsx
7182
- var import_jsx_runtime116 = require("react/jsx-runtime");
7386
+ var import_jsx_runtime126 = require("react/jsx-runtime");
7183
7387
  var MENUITEM_CLASSNAME = `k-menu-item`;
7184
- var states42 = [
7388
+ var states45 = [
7185
7389
  States.hover,
7186
7390
  States.focus,
7187
7391
  States.active,
7188
7392
  States.disabled
7189
7393
  ];
7190
- var options40 = {};
7191
- var defaultProps39 = {
7394
+ var options43 = {};
7395
+ var defaultProps41 = {
7192
7396
  dir: "ltr"
7193
7397
  };
7194
7398
  var MenuItem = (props) => {
@@ -7203,12 +7407,12 @@ var MenuItem = (props) => {
7203
7407
  last,
7204
7408
  showArrow,
7205
7409
  arrowIconName,
7206
- dir = defaultProps39.dir,
7410
+ dir = defaultProps41.dir,
7207
7411
  children,
7208
7412
  popup,
7209
7413
  ...other
7210
7414
  } = props;
7211
- const contentTemplate = /* @__PURE__ */ (0, import_jsx_runtime116.jsx)(import_jsx_runtime116.Fragment, {});
7415
+ const contentTemplate = /* @__PURE__ */ (0, import_jsx_runtime126.jsx)(import_jsx_runtime126.Fragment, {});
7212
7416
  if (children) {
7213
7417
  children.forEach((child) => {
7214
7418
  const component = child.type;
@@ -7222,7 +7426,7 @@ var MenuItem = (props) => {
7222
7426
  if (!expandArrowName) {
7223
7427
  expandArrowName = dir === "rtl" ? "caret-alt-left" : "caret-alt-right";
7224
7428
  }
7225
- return /* @__PURE__ */ (0, import_jsx_runtime116.jsxs)(
7429
+ return /* @__PURE__ */ (0, import_jsx_runtime126.jsxs)(
7226
7430
  "li",
7227
7431
  {
7228
7432
  ...other,
@@ -7243,16 +7447,16 @@ var MenuItem = (props) => {
7243
7447
  }
7244
7448
  ),
7245
7449
  children: [
7246
- /* @__PURE__ */ (0, import_jsx_runtime116.jsxs)(
7450
+ /* @__PURE__ */ (0, import_jsx_runtime126.jsxs)(
7247
7451
  "span",
7248
7452
  {
7249
7453
  className: classNames(
7250
7454
  "k-link k-menu-link"
7251
7455
  ),
7252
7456
  children: [
7253
- icon && /* @__PURE__ */ (0, import_jsx_runtime116.jsx)(Icon, { className: "k-menu-link-icon", icon }),
7254
- /* @__PURE__ */ (0, import_jsx_runtime116.jsx)("span", { className: "k-menu-link-text", children: text }),
7255
- showArrow && /* @__PURE__ */ (0, import_jsx_runtime116.jsx)("span", { className: "k-menu-expand-arrow", children: /* @__PURE__ */ (0, import_jsx_runtime116.jsx)(Icon, { icon: expandArrowName }) })
7457
+ icon && /* @__PURE__ */ (0, import_jsx_runtime126.jsx)(Icon, { className: "k-menu-link-icon", icon }),
7458
+ /* @__PURE__ */ (0, import_jsx_runtime126.jsx)("span", { className: "k-menu-link-text", children: text }),
7459
+ showArrow && /* @__PURE__ */ (0, import_jsx_runtime126.jsx)("span", { className: "k-menu-expand-arrow", children: /* @__PURE__ */ (0, import_jsx_runtime126.jsx)(Icon, { icon: expandArrowName }) })
7256
7460
  ]
7257
7461
  }
7258
7462
  ),
@@ -7262,23 +7466,23 @@ var MenuItem = (props) => {
7262
7466
  }
7263
7467
  );
7264
7468
  };
7265
- MenuItem.states = states42;
7266
- MenuItem.options = options40;
7469
+ MenuItem.states = states45;
7470
+ MenuItem.options = options43;
7267
7471
  MenuItem.className = MENUITEM_CLASSNAME;
7268
- MenuItem.defaultProps = defaultProps39;
7472
+ MenuItem.defaultProps = defaultProps41;
7269
7473
 
7270
7474
  // src/menu/menu-list-item.spec.tsx
7271
- var import_jsx_runtime117 = require("react/jsx-runtime");
7475
+ var import_jsx_runtime127 = require("react/jsx-runtime");
7272
7476
  var MENULISTITEM_CLASSNAME = `k-menu-item`;
7273
- var states43 = [
7477
+ var states46 = [
7274
7478
  States.hover,
7275
7479
  States.focus,
7276
7480
  States.active,
7277
7481
  States.selected,
7278
7482
  States.disabled
7279
7483
  ];
7280
- var options41 = {};
7281
- var defaultProps40 = {
7484
+ var options44 = {};
7485
+ var defaultProps42 = {
7282
7486
  dir: "ltr"
7283
7487
  };
7284
7488
  var MenuListItem = (props) => {
@@ -7294,12 +7498,12 @@ var MenuListItem = (props) => {
7294
7498
  last,
7295
7499
  showArrow,
7296
7500
  arrowIconName,
7297
- dir = defaultProps40.dir,
7501
+ dir = defaultProps42.dir,
7298
7502
  children,
7299
7503
  popup,
7300
7504
  ...other
7301
7505
  } = props;
7302
- const contentTemplate = /* @__PURE__ */ (0, import_jsx_runtime117.jsx)(import_jsx_runtime117.Fragment, {});
7506
+ const contentTemplate = /* @__PURE__ */ (0, import_jsx_runtime127.jsx)(import_jsx_runtime127.Fragment, {});
7303
7507
  if (children) {
7304
7508
  children.forEach((child) => {
7305
7509
  const component = child.type;
@@ -7313,7 +7517,7 @@ var MenuListItem = (props) => {
7313
7517
  if (!expandArrowName) {
7314
7518
  expandArrowName = dir === "rtl" ? "caret-alt-left" : "caret-alt-right";
7315
7519
  }
7316
- return /* @__PURE__ */ (0, import_jsx_runtime117.jsxs)(
7520
+ return /* @__PURE__ */ (0, import_jsx_runtime127.jsxs)(
7317
7521
  "li",
7318
7522
  {
7319
7523
  ...other,
@@ -7332,7 +7536,7 @@ var MenuListItem = (props) => {
7332
7536
  }
7333
7537
  ),
7334
7538
  children: [
7335
- /* @__PURE__ */ (0, import_jsx_runtime117.jsxs)(
7539
+ /* @__PURE__ */ (0, import_jsx_runtime127.jsxs)(
7336
7540
  "span",
7337
7541
  {
7338
7542
  className: classNames(
@@ -7345,9 +7549,9 @@ var MenuListItem = (props) => {
7345
7549
  })
7346
7550
  ),
7347
7551
  children: [
7348
- icon && /* @__PURE__ */ (0, import_jsx_runtime117.jsx)(Icon, { className: "k-menu-link-icon", icon }),
7349
- /* @__PURE__ */ (0, import_jsx_runtime117.jsx)("span", { className: "k-menu-link-text", children: text }),
7350
- showArrow && /* @__PURE__ */ (0, import_jsx_runtime117.jsx)("span", { className: "k-menu-expand-arrow", children: /* @__PURE__ */ (0, import_jsx_runtime117.jsx)(Icon, { icon: expandArrowName }) })
7552
+ icon && /* @__PURE__ */ (0, import_jsx_runtime127.jsx)(Icon, { className: "k-menu-link-icon", icon }),
7553
+ /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("span", { className: "k-menu-link-text", children: text }),
7554
+ showArrow && /* @__PURE__ */ (0, import_jsx_runtime127.jsx)("span", { className: "k-menu-expand-arrow", children: /* @__PURE__ */ (0, import_jsx_runtime127.jsx)(Icon, { icon: expandArrowName }) })
7351
7555
  ]
7352
7556
  }
7353
7557
  ),
@@ -7357,28 +7561,28 @@ var MenuListItem = (props) => {
7357
7561
  }
7358
7562
  );
7359
7563
  };
7360
- MenuListItem.states = states43;
7361
- MenuListItem.options = options41;
7564
+ MenuListItem.states = states46;
7565
+ MenuListItem.options = options44;
7362
7566
  MenuListItem.className = MENULISTITEM_CLASSNAME;
7363
- MenuListItem.defaultProps = defaultProps40;
7567
+ MenuListItem.defaultProps = defaultProps42;
7364
7568
 
7365
7569
  // src/menu/menu.spec.tsx
7366
- var import_jsx_runtime118 = require("react/jsx-runtime");
7570
+ var import_jsx_runtime128 = require("react/jsx-runtime");
7367
7571
  var MENU_CLASSNAME = `k-menu`;
7368
- var states44 = [];
7369
- var options42 = {};
7370
- var defaultProps41 = {
7572
+ var states47 = [];
7573
+ var options45 = {};
7574
+ var defaultProps43 = {
7371
7575
  orientation: "horizontal",
7372
7576
  header: true
7373
7577
  };
7374
7578
  var Menu = (props) => {
7375
7579
  const {
7376
7580
  children,
7377
- orientation = defaultProps41.orientation,
7378
- header = defaultProps41.header,
7581
+ orientation = defaultProps43.orientation,
7582
+ header = defaultProps43.header,
7379
7583
  ...other
7380
7584
  } = props;
7381
- return /* @__PURE__ */ (0, import_jsx_runtime118.jsx)(
7585
+ return /* @__PURE__ */ (0, import_jsx_runtime128.jsx)(
7382
7586
  "ul",
7383
7587
  {
7384
7588
  id: "menu",
@@ -7396,23 +7600,23 @@ var Menu = (props) => {
7396
7600
  }
7397
7601
  );
7398
7602
  };
7399
- Menu.states = states44;
7400
- Menu.options = options42;
7603
+ Menu.states = states47;
7604
+ Menu.options = options45;
7401
7605
  Menu.className = MENU_CLASSNAME;
7402
- Menu.defaultProps = defaultProps41;
7606
+ Menu.defaultProps = defaultProps43;
7403
7607
 
7404
7608
  // src/menu/menu-separator.spec.tsx
7405
- var import_jsx_runtime119 = require("react/jsx-runtime");
7609
+ var import_jsx_runtime129 = require("react/jsx-runtime");
7406
7610
  var SEPARATOR_CLASSNAME = `k-separator`;
7407
- var defaultProps42 = {
7611
+ var defaultProps44 = {
7408
7612
  orientation: "horizontal"
7409
7613
  };
7410
7614
  var MenuSeparator = (props) => {
7411
7615
  const {
7412
- orientation = defaultProps42.orientation,
7616
+ orientation = defaultProps44.orientation,
7413
7617
  ...other
7414
7618
  } = props;
7415
- return /* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
7619
+ return /* @__PURE__ */ (0, import_jsx_runtime129.jsx)(
7416
7620
  "li",
7417
7621
  {
7418
7622
  ...other,
@@ -7429,25 +7633,25 @@ var MenuSeparator = (props) => {
7429
7633
  };
7430
7634
 
7431
7635
  // src/menu/menu-item-content.tsx
7432
- var import_jsx_runtime120 = require("react/jsx-runtime");
7636
+ var import_jsx_runtime130 = require("react/jsx-runtime");
7433
7637
 
7434
7638
  // src/menu/menu-list.spec.tsx
7435
- var import_jsx_runtime121 = require("react/jsx-runtime");
7639
+ var import_jsx_runtime131 = require("react/jsx-runtime");
7436
7640
  var import_react = require("react");
7437
7641
  var MENULIST_CLASSNAME = `k-menu-group`;
7438
- var states45 = [];
7439
- var options43 = {
7642
+ var states48 = [];
7643
+ var options46 = {
7440
7644
  size: [Size.small, Size.medium, Size.large]
7441
7645
  };
7442
- var defaultProps43 = {
7646
+ var defaultProps45 = {
7443
7647
  size: Size.medium,
7444
7648
  dir: "ltr"
7445
7649
  };
7446
7650
  var MenuList = (props) => {
7447
7651
  const {
7448
7652
  children,
7449
- size = defaultProps43.size,
7450
- dir = defaultProps43.dir,
7653
+ size = defaultProps45.size,
7654
+ dir = defaultProps45.dir,
7451
7655
  ...other
7452
7656
  } = props;
7453
7657
  const listChildren = [];
@@ -7460,7 +7664,7 @@ var MenuList = (props) => {
7460
7664
  );
7461
7665
  } else if (child.type === MenuSeparator) {
7462
7666
  listChildren.push(
7463
- /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(MenuSeparator, {})
7667
+ /* @__PURE__ */ (0, import_jsx_runtime131.jsx)(MenuSeparator, {})
7464
7668
  );
7465
7669
  } else {
7466
7670
  listChildren.push(child);
@@ -7468,7 +7672,7 @@ var MenuList = (props) => {
7468
7672
  });
7469
7673
  }
7470
7674
  }
7471
- return /* @__PURE__ */ (0, import_jsx_runtime121.jsx)(
7675
+ return /* @__PURE__ */ (0, import_jsx_runtime131.jsx)(
7472
7676
  "ul",
7473
7677
  {
7474
7678
  ...other,
@@ -7483,25 +7687,25 @@ var MenuList = (props) => {
7483
7687
  }
7484
7688
  );
7485
7689
  };
7486
- MenuList.states = states45;
7487
- MenuList.options = options43;
7690
+ MenuList.states = states48;
7691
+ MenuList.options = options46;
7488
7692
  MenuList.className = MENULIST_CLASSNAME;
7489
- MenuList.defaultProps = defaultProps43;
7693
+ MenuList.defaultProps = defaultProps45;
7490
7694
 
7491
7695
  // src/menu-button/templates/menu-button-popup.tsx
7492
- var import_jsx_runtime122 = require("react/jsx-runtime");
7696
+ var import_jsx_runtime132 = require("react/jsx-runtime");
7493
7697
 
7494
7698
  // src/split-button/split-button.spec.tsx
7495
- var import_jsx_runtime123 = require("react/jsx-runtime");
7699
+ var import_jsx_runtime133 = require("react/jsx-runtime");
7496
7700
  var SPLITBUTTON_CLASSNAME = `k-split-button`;
7497
- var states46 = [
7701
+ var states49 = [
7498
7702
  States.hover,
7499
7703
  States.focus,
7500
7704
  States.active,
7501
7705
  States.selected,
7502
7706
  States.disabled
7503
7707
  ];
7504
- var options44 = {
7708
+ var options47 = {
7505
7709
  size: [Size.small, Size.medium, Size.large],
7506
7710
  rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full],
7507
7711
  fillMode: [FillMode.solid, FillMode.flat, FillMode.outline, FillMode.clear, FillMode.link],
@@ -7519,7 +7723,7 @@ var options44 = {
7519
7723
  ThemeColor.inverse
7520
7724
  ]
7521
7725
  };
7522
- var defaultProps44 = {
7726
+ var defaultProps46 = {
7523
7727
  size: Size.medium,
7524
7728
  rounded: Roundness.medium,
7525
7729
  fillMode: FillMode.solid,
@@ -7528,10 +7732,10 @@ var defaultProps44 = {
7528
7732
  };
7529
7733
  var SplitButton = (props) => {
7530
7734
  const {
7531
- size = defaultProps44.size,
7532
- rounded = defaultProps44.rounded,
7533
- fillMode = defaultProps44.fillMode,
7534
- themeColor = defaultProps44.themeColor,
7735
+ size = defaultProps46.size,
7736
+ rounded = defaultProps46.rounded,
7737
+ fillMode = defaultProps46.fillMode,
7738
+ themeColor = defaultProps46.themeColor,
7535
7739
  hover,
7536
7740
  focus,
7537
7741
  active,
@@ -7539,13 +7743,13 @@ var SplitButton = (props) => {
7539
7743
  disabled,
7540
7744
  icon,
7541
7745
  text,
7542
- arrowIconName = defaultProps44.arrowIconName,
7746
+ arrowIconName = defaultProps46.arrowIconName,
7543
7747
  popup,
7544
7748
  opened,
7545
7749
  ...other
7546
7750
  } = props;
7547
- return /* @__PURE__ */ (0, import_jsx_runtime123.jsxs)(import_jsx_runtime123.Fragment, { children: [
7548
- /* @__PURE__ */ (0, import_jsx_runtime123.jsxs)(
7751
+ return /* @__PURE__ */ (0, import_jsx_runtime133.jsxs)(import_jsx_runtime133.Fragment, { children: [
7752
+ /* @__PURE__ */ (0, import_jsx_runtime133.jsxs)(
7549
7753
  "div",
7550
7754
  {
7551
7755
  ...other,
@@ -7558,7 +7762,7 @@ var SplitButton = (props) => {
7558
7762
  })
7559
7763
  ),
7560
7764
  children: [
7561
- /* @__PURE__ */ (0, import_jsx_runtime123.jsx)(
7765
+ /* @__PURE__ */ (0, import_jsx_runtime133.jsx)(
7562
7766
  Button,
7563
7767
  {
7564
7768
  text,
@@ -7575,7 +7779,7 @@ var SplitButton = (props) => {
7575
7779
  children: props.children
7576
7780
  }
7577
7781
  ),
7578
- /* @__PURE__ */ (0, import_jsx_runtime123.jsx)(
7782
+ /* @__PURE__ */ (0, import_jsx_runtime133.jsx)(
7579
7783
  Button,
7580
7784
  {
7581
7785
  className: "k-split-button-arrow",
@@ -7589,30 +7793,30 @@ var SplitButton = (props) => {
7589
7793
  ]
7590
7794
  }
7591
7795
  ),
7592
- opened && popup && /* @__PURE__ */ (0, import_jsx_runtime123.jsx)(Popup, { className: "k-menu-popup", children: popup })
7796
+ opened && popup && /* @__PURE__ */ (0, import_jsx_runtime133.jsx)(Popup, { className: "k-menu-popup", children: popup })
7593
7797
  ] });
7594
7798
  };
7595
- SplitButton.states = states46;
7596
- SplitButton.options = options44;
7799
+ SplitButton.states = states49;
7800
+ SplitButton.options = options47;
7597
7801
  SplitButton.className = SPLITBUTTON_CLASSNAME;
7598
- SplitButton.defaultProps = defaultProps44;
7802
+ SplitButton.defaultProps = defaultProps46;
7599
7803
  var split_button_spec_default = SplitButton;
7600
7804
 
7601
7805
  // src/toolbar/toolbar.spec.tsx
7602
- var import_jsx_runtime124 = require("react/jsx-runtime");
7806
+ var import_jsx_runtime134 = require("react/jsx-runtime");
7603
7807
  var TOOLBAR_CLASSNAME = `k-toolbar`;
7604
- var states47 = [
7808
+ var states50 = [
7605
7809
  States.focus
7606
7810
  ];
7607
- var options45 = {
7811
+ var options48 = {
7608
7812
  size: [Size.small, Size.medium, Size.large]
7609
7813
  };
7610
- var defaultProps45 = {
7814
+ var defaultProps47 = {
7611
7815
  size: Size.medium
7612
7816
  };
7613
7817
  var Toolbar = (props) => {
7614
7818
  const {
7615
- size = defaultProps45.size,
7819
+ size = defaultProps47.size,
7616
7820
  focus,
7617
7821
  resizable,
7618
7822
  ...other
@@ -7622,7 +7826,7 @@ var Toolbar = (props) => {
7622
7826
  const tempToolbarChildren = [];
7623
7827
  if (child.type === Button && child.props.className && child.props.className.includes("k-toolbar-overflow-button")) {
7624
7828
  tempToolbarChildren.push(
7625
- /* @__PURE__ */ (0, import_jsx_runtime124.jsx)(
7829
+ /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
7626
7830
  Button,
7627
7831
  {
7628
7832
  ...child.props,
@@ -7633,7 +7837,7 @@ var Toolbar = (props) => {
7633
7837
  );
7634
7838
  } else if (child.type === Button && child.props.className && child.props.className.includes("k-toggle-button")) {
7635
7839
  tempToolbarChildren.push(
7636
- /* @__PURE__ */ (0, import_jsx_runtime124.jsx)(
7840
+ /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
7637
7841
  Button,
7638
7842
  {
7639
7843
  ...child.props,
@@ -7644,7 +7848,7 @@ var Toolbar = (props) => {
7644
7848
  );
7645
7849
  } else if (child.type === Button) {
7646
7850
  tempToolbarChildren.push(
7647
- /* @__PURE__ */ (0, import_jsx_runtime124.jsx)(
7851
+ /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
7648
7852
  Button,
7649
7853
  {
7650
7854
  ...child.props,
@@ -7655,7 +7859,7 @@ var Toolbar = (props) => {
7655
7859
  );
7656
7860
  } else if (child.type === MenuButton) {
7657
7861
  tempToolbarChildren.push(
7658
- /* @__PURE__ */ (0, import_jsx_runtime124.jsx)(
7862
+ /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
7659
7863
  MenuButton,
7660
7864
  {
7661
7865
  ...child.props,
@@ -7666,7 +7870,7 @@ var Toolbar = (props) => {
7666
7870
  );
7667
7871
  } else if (child.type === split_button_spec_default) {
7668
7872
  tempToolbarChildren.push(
7669
- /* @__PURE__ */ (0, import_jsx_runtime124.jsx)(
7873
+ /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
7670
7874
  split_button_spec_default,
7671
7875
  {
7672
7876
  ...child.props,
@@ -7680,7 +7884,7 @@ var Toolbar = (props) => {
7680
7884
  const childrenArray = Array.isArray(child.props.children) ? child.props.children : [child.props.children];
7681
7885
  childrenArray.forEach((button, bindex) => {
7682
7886
  buttonGroupItems.push(
7683
- /* @__PURE__ */ (0, import_jsx_runtime124.jsx)(
7887
+ /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
7684
7888
  Button,
7685
7889
  {
7686
7890
  ...button.props,
@@ -7691,7 +7895,7 @@ var Toolbar = (props) => {
7691
7895
  );
7692
7896
  });
7693
7897
  tempToolbarChildren.push(
7694
- /* @__PURE__ */ (0, import_jsx_runtime124.jsx)(
7898
+ /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
7695
7899
  ButtonGroup,
7696
7900
  {
7697
7901
  ...child.props,
@@ -7703,7 +7907,7 @@ var Toolbar = (props) => {
7703
7907
  );
7704
7908
  } else if (child.type === Combobox) {
7705
7909
  tempToolbarChildren.push(
7706
- /* @__PURE__ */ (0, import_jsx_runtime124.jsx)(
7910
+ /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
7707
7911
  Combobox,
7708
7912
  {
7709
7913
  ...child.props,
@@ -7714,7 +7918,7 @@ var Toolbar = (props) => {
7714
7918
  );
7715
7919
  } else if (child.type === DropdownList) {
7716
7920
  tempToolbarChildren.push(
7717
- /* @__PURE__ */ (0, import_jsx_runtime124.jsx)(
7921
+ /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
7718
7922
  DropdownList,
7719
7923
  {
7720
7924
  ...child.props,
@@ -7725,7 +7929,7 @@ var Toolbar = (props) => {
7725
7929
  );
7726
7930
  } else if (child.type === ColorPicker) {
7727
7931
  tempToolbarChildren.push(
7728
- /* @__PURE__ */ (0, import_jsx_runtime124.jsx)(
7932
+ /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
7729
7933
  ColorPicker,
7730
7934
  {
7731
7935
  ...child.props,
@@ -7747,7 +7951,7 @@ var Toolbar = (props) => {
7747
7951
  addUniqueToolClass(child, index);
7748
7952
  });
7749
7953
  }
7750
- return /* @__PURE__ */ (0, import_jsx_runtime124.jsx)(
7954
+ return /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
7751
7955
  "div",
7752
7956
  {
7753
7957
  ...other,
@@ -7768,26 +7972,26 @@ var Toolbar = (props) => {
7768
7972
  }
7769
7973
  );
7770
7974
  };
7771
- Toolbar.states = states47;
7772
- Toolbar.options = options45;
7975
+ Toolbar.states = states50;
7976
+ Toolbar.options = options48;
7773
7977
  Toolbar.className = TOOLBAR_CLASSNAME;
7774
- Toolbar.defaultProps = defaultProps45;
7978
+ Toolbar.defaultProps = defaultProps47;
7775
7979
 
7776
7980
  // src/toolbar/toolbar-angular.spec.tsx
7777
- var import_jsx_runtime125 = require("react/jsx-runtime");
7981
+ var import_jsx_runtime135 = require("react/jsx-runtime");
7778
7982
  var TOOLBARANGULAR_CLASSNAME = `k-toolbar`;
7779
- var states48 = [
7983
+ var states51 = [
7780
7984
  States.focus
7781
7985
  ];
7782
- var options46 = {
7986
+ var options49 = {
7783
7987
  size: [Size.small, Size.medium, Size.large]
7784
7988
  };
7785
- var defaultProps46 = {
7989
+ var defaultProps48 = {
7786
7990
  size: Size.medium
7787
7991
  };
7788
7992
  var ToolbarAngular = (props) => {
7789
7993
  const {
7790
- size = defaultProps46.size,
7994
+ size = defaultProps48.size,
7791
7995
  focus,
7792
7996
  resizable,
7793
7997
  ...other
@@ -7797,7 +8001,7 @@ var ToolbarAngular = (props) => {
7797
8001
  const tempToolbarChildren = [];
7798
8002
  if (child.type === Button && child.props.className && child.props.className.includes("k-toolbar-overflow-button")) {
7799
8003
  tempToolbarChildren.push(
7800
- /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime125.jsx)(
8004
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
7801
8005
  Button,
7802
8006
  {
7803
8007
  ...child.props,
@@ -7808,7 +8012,7 @@ var ToolbarAngular = (props) => {
7808
8012
  );
7809
8013
  } else if (child.type === Button && child.props.className && child.props.className.includes("k-toggle-button")) {
7810
8014
  tempToolbarChildren.push(
7811
- /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime125.jsx)(
8015
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
7812
8016
  Button,
7813
8017
  {
7814
8018
  ...child.props,
@@ -7819,7 +8023,7 @@ var ToolbarAngular = (props) => {
7819
8023
  );
7820
8024
  } else if (child.type === Button) {
7821
8025
  tempToolbarChildren.push(
7822
- /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime125.jsx)(
8026
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
7823
8027
  Button,
7824
8028
  {
7825
8029
  ...child.props,
@@ -7830,7 +8034,7 @@ var ToolbarAngular = (props) => {
7830
8034
  );
7831
8035
  } else if (child.type === MenuButton) {
7832
8036
  tempToolbarChildren.push(
7833
- /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime125.jsx)(
8037
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
7834
8038
  MenuButton,
7835
8039
  {
7836
8040
  ...child.props,
@@ -7841,7 +8045,7 @@ var ToolbarAngular = (props) => {
7841
8045
  );
7842
8046
  } else if (child.type === split_button_spec_default) {
7843
8047
  tempToolbarChildren.push(
7844
- /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime125.jsx)(
8048
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
7845
8049
  split_button_spec_default,
7846
8050
  {
7847
8051
  ...child.props,
@@ -7855,7 +8059,7 @@ var ToolbarAngular = (props) => {
7855
8059
  const childrenArray = Array.isArray(child.props.children) ? child.props.children : [child.props.children];
7856
8060
  childrenArray.forEach((button, bindex) => {
7857
8061
  buttonGroupItems.push(
7858
- /* @__PURE__ */ (0, import_jsx_runtime125.jsx)(
8062
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
7859
8063
  Button,
7860
8064
  {
7861
8065
  ...button.props,
@@ -7866,7 +8070,7 @@ var ToolbarAngular = (props) => {
7866
8070
  );
7867
8071
  });
7868
8072
  tempToolbarChildren.push(
7869
- /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime125.jsx)(
8073
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
7870
8074
  ButtonGroup,
7871
8075
  {
7872
8076
  ...child.props,
@@ -7878,7 +8082,7 @@ var ToolbarAngular = (props) => {
7878
8082
  );
7879
8083
  } else if (child.type === Combobox) {
7880
8084
  tempToolbarChildren.push(
7881
- /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime125.jsx)(
8085
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
7882
8086
  Combobox,
7883
8087
  {
7884
8088
  ...child.props,
@@ -7889,7 +8093,7 @@ var ToolbarAngular = (props) => {
7889
8093
  );
7890
8094
  } else if (child.type === DropdownList) {
7891
8095
  tempToolbarChildren.push(
7892
- /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime125.jsx)(
8096
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
7893
8097
  DropdownList,
7894
8098
  {
7895
8099
  ...child.props,
@@ -7900,7 +8104,7 @@ var ToolbarAngular = (props) => {
7900
8104
  );
7901
8105
  } else if (child.type === ColorPicker) {
7902
8106
  tempToolbarChildren.push(
7903
- /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime125.jsx)(
8107
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
7904
8108
  ColorPicker,
7905
8109
  {
7906
8110
  ...child.props,
@@ -7922,7 +8126,7 @@ var ToolbarAngular = (props) => {
7922
8126
  addUniqueToolClass(child, index);
7923
8127
  });
7924
8128
  }
7925
- return /* @__PURE__ */ (0, import_jsx_runtime125.jsx)(
8129
+ return /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
7926
8130
  "div",
7927
8131
  {
7928
8132
  ...other,
@@ -7943,28 +8147,28 @@ var ToolbarAngular = (props) => {
7943
8147
  }
7944
8148
  );
7945
8149
  };
7946
- ToolbarAngular.states = states48;
7947
- ToolbarAngular.options = options46;
8150
+ ToolbarAngular.states = states51;
8151
+ ToolbarAngular.options = options49;
7948
8152
  ToolbarAngular.className = TOOLBARANGULAR_CLASSNAME;
7949
- ToolbarAngular.defaultProps = defaultProps46;
8153
+ ToolbarAngular.defaultProps = defaultProps48;
7950
8154
 
7951
8155
  // src/toolbar/toolbar-separator.tsx
7952
- var import_jsx_runtime126 = require("react/jsx-runtime");
8156
+ var import_jsx_runtime136 = require("react/jsx-runtime");
7953
8157
 
7954
8158
  // src/toolbar/toolbar-item.spec.tsx
7955
- var import_jsx_runtime127 = require("react/jsx-runtime");
8159
+ var import_jsx_runtime137 = require("react/jsx-runtime");
7956
8160
  var TOOLBARITEM_CLASSNAME = `k-toolbar-item`;
7957
- var states49 = [
8161
+ var states52 = [
7958
8162
  States.focus
7959
8163
  ];
7960
- var options47 = {};
7961
- var defaultProps47 = {};
8164
+ var options50 = {};
8165
+ var defaultProps49 = {};
7962
8166
  var ToolbarItem = (props) => {
7963
8167
  const {
7964
8168
  focus,
7965
8169
  ...other
7966
8170
  } = props;
7967
- return /* @__PURE__ */ (0, import_jsx_runtime127.jsx)(
8171
+ return /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(
7968
8172
  "div",
7969
8173
  {
7970
8174
  ...other,
@@ -7979,20 +8183,20 @@ var ToolbarItem = (props) => {
7979
8183
  }
7980
8184
  );
7981
8185
  };
7982
- ToolbarItem.states = states49;
7983
- ToolbarItem.options = options47;
8186
+ ToolbarItem.states = states52;
8187
+ ToolbarItem.options = options50;
7984
8188
  ToolbarItem.className = TOOLBARITEM_CLASSNAME;
7985
- ToolbarItem.defaultProps = defaultProps47;
8189
+ ToolbarItem.defaultProps = defaultProps49;
7986
8190
 
7987
8191
  // src/toolbar/toolbar-popup.spec.tsx
7988
- var import_jsx_runtime128 = require("react/jsx-runtime");
8192
+ var import_jsx_runtime138 = require("react/jsx-runtime");
7989
8193
  var TOOLBARPOPUP_CLASSNAME = `k-toolbar-popup`;
7990
- var states50 = [];
7991
- var options48 = {};
7992
- var defaultProps48 = {};
8194
+ var states53 = [];
8195
+ var options51 = {};
8196
+ var defaultProps50 = {};
7993
8197
  var ToolbarPopup = (props) => {
7994
8198
  const { ...other } = props;
7995
- return /* @__PURE__ */ (0, import_jsx_runtime128.jsx)(
8199
+ return /* @__PURE__ */ (0, import_jsx_runtime138.jsx)(
7996
8200
  Popup,
7997
8201
  {
7998
8202
  ...other,
@@ -8004,382 +8208,597 @@ var ToolbarPopup = (props) => {
8004
8208
  }
8005
8209
  );
8006
8210
  };
8007
- ToolbarPopup.states = states50;
8008
- ToolbarPopup.options = options48;
8211
+ ToolbarPopup.states = states53;
8212
+ ToolbarPopup.options = options51;
8009
8213
  ToolbarPopup.className = TOOLBARPOPUP_CLASSNAME;
8010
- ToolbarPopup.defaultProps = defaultProps48;
8214
+ ToolbarPopup.defaultProps = defaultProps50;
8011
8215
 
8012
8216
  // src/split-button/templates/icon-split-button.tsx
8013
- var import_jsx_runtime129 = require("react/jsx-runtime");
8217
+ var import_jsx_runtime139 = require("react/jsx-runtime");
8014
8218
 
8015
8219
  // src/split-button/templates/icon-text-split-button.tsx
8016
- var import_jsx_runtime130 = require("react/jsx-runtime");
8220
+ var import_jsx_runtime140 = require("react/jsx-runtime");
8017
8221
 
8018
8222
  // src/split-button/templates/text-split-button.tsx
8019
- var import_jsx_runtime131 = require("react/jsx-runtime");
8223
+ var import_jsx_runtime141 = require("react/jsx-runtime");
8020
8224
 
8021
8225
  // src/split-button/templates/split-button-popup.tsx
8022
- var import_jsx_runtime132 = require("react/jsx-runtime");
8226
+ var import_jsx_runtime142 = require("react/jsx-runtime");
8023
8227
 
8024
8228
  // src/toolbar/templates/toolbar-normal.tsx
8025
- var import_jsx_runtime133 = require("react/jsx-runtime");
8229
+ var import_jsx_runtime143 = require("react/jsx-runtime");
8026
8230
 
8027
8231
  // src/toolbar/templates/toolbar-resizable.tsx
8028
- var import_jsx_runtime134 = require("react/jsx-runtime");
8232
+ var import_jsx_runtime144 = require("react/jsx-runtime");
8029
8233
 
8030
8234
  // src/toolbar/templates/toolbar-angular-normal.tsx
8031
- var import_jsx_runtime135 = require("react/jsx-runtime");
8235
+ var import_jsx_runtime145 = require("react/jsx-runtime");
8032
8236
 
8033
8237
  // src/toolbar/templates/toolbar-angular-resizable.tsx
8034
- var import_jsx_runtime136 = require("react/jsx-runtime");
8238
+ var import_jsx_runtime146 = require("react/jsx-runtime");
8239
+
8240
+ // src/scheduler/scheduler-toolbar.spec.tsx
8241
+ var import_jsx_runtime147 = require("react/jsx-runtime");
8242
+ var className20 = "k-scheduler-toolbar";
8243
+ var SchedulerToolbar = (props) => {
8244
+ const { footer, ...others } = props;
8245
+ return /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(
8246
+ Toolbar,
8247
+ {
8248
+ ...others,
8249
+ className: classNames(
8250
+ props.className,
8251
+ {
8252
+ [footer ? "k-scheduler-footer" : className20]: true
8253
+ }
8254
+ ),
8255
+ children: props.children || /* @__PURE__ */ (0, import_jsx_runtime147.jsxs)(import_jsx_runtime147.Fragment, { children: [
8256
+ /* @__PURE__ */ (0, import_jsx_runtime147.jsxs)(ButtonGroup, { className: "k-scheduler-navigation", children: [
8257
+ /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(Button, { className: "k-group-start", children: "Today" }),
8258
+ /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(Button, { icon: "caret-alt-left" }),
8259
+ /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(Button, { className: "k-group-end", icon: "caret-alt-right" })
8260
+ ] }),
8261
+ /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(Button, { icon: "calendar", className: "k-nav-current", fillMode: "flat", children: "Monday, June 13, 2022" }),
8262
+ /* @__PURE__ */ (0, import_jsx_runtime147.jsx)("span", { className: "k-spacer" }),
8263
+ /* @__PURE__ */ (0, import_jsx_runtime147.jsxs)(ButtonGroup, { className: "k-scheduler-views", children: [
8264
+ /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(Button, { className: "k-group-start", selected: true, children: "Day" }),
8265
+ /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(Button, { children: "Week" }),
8266
+ /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(Button, { children: "Month" }),
8267
+ /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(Button, { children: "Timeline" }),
8268
+ /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(Button, { className: "k-group-end", children: "Agenda" })
8269
+ ] })
8270
+ ] })
8271
+ }
8272
+ );
8273
+ };
8035
8274
 
8036
- // src/scheduler/tests/scheduler-angular-rtl.tsx
8037
- var import_jsx_runtime137 = require("react/jsx-runtime");
8038
- var style = `
8039
- #test-area {
8040
- max-width: 1200px;
8275
+ // src/scheduler/scheduler-body.spec.tsx
8276
+ var import_jsx_runtime148 = require("react/jsx-runtime");
8277
+ var className21 = "k-scheduler-body";
8278
+ var SchedulerBody = (props) => {
8279
+ const {
8280
+ as: Component = "div",
8281
+ ...other
8282
+ } = props;
8283
+ return /* @__PURE__ */ (0, import_jsx_runtime148.jsx)(
8284
+ Component,
8285
+ {
8286
+ ...other,
8287
+ className: classNames(
8288
+ className21,
8289
+ props.className
8290
+ ),
8291
+ children: props.children
8041
8292
  }
8042
- `;
8043
- var scheduler_angular_rtl_default = () => /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)(import_jsx_runtime137.Fragment, { children: [
8044
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("style", { children: style }),
8045
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { id: "test-area", className: "k-d-grid k-grid-cols-1", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { className: "k-widget k-scheduler k-readonly-scheduler k-rtl", dir: "rtl", children: [
8046
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)(Toolbar, { className: "k-scheduler-toolbar", children: [
8047
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { className: "k-toolbar-group", children: [
8048
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)(ButtonGroup, { className: "k-scheduler-navigation", children: [
8049
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Button, { className: "k-group-start", children: "Today" }),
8050
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Button, { icon: "caret-alt-right" }),
8051
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Button, { className: "k-group-end", icon: "caret-alt-left" })
8293
+ );
8294
+ };
8295
+
8296
+ // src/scheduler/scheduler-head.spec.tsx
8297
+ var import_jsx_runtime149 = require("react/jsx-runtime");
8298
+ var className22 = "k-scheduler-head";
8299
+ var SchedulerHead = (props) => {
8300
+ const {
8301
+ as: Component = "div",
8302
+ ...other
8303
+ } = props;
8304
+ return /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(
8305
+ Component,
8306
+ {
8307
+ ...other,
8308
+ className: classNames(
8309
+ className22,
8310
+ props.className
8311
+ ),
8312
+ children: props.children
8313
+ }
8314
+ );
8315
+ };
8316
+
8317
+ // src/scheduler/scheduler-group.spec.tsx
8318
+ var import_jsx_runtime150 = require("react/jsx-runtime");
8319
+ var className23 = "k-scheduler-group";
8320
+ var states54 = [];
8321
+ var options52 = {};
8322
+ var defaultProps51 = {
8323
+ orientation: "horizontal"
8324
+ };
8325
+ var SchedulerGroup = (props) => {
8326
+ const {
8327
+ orientation = defaultProps51.orientation,
8328
+ ...other
8329
+ } = props;
8330
+ return /* @__PURE__ */ (0, import_jsx_runtime150.jsx)(
8331
+ "div",
8332
+ {
8333
+ ...other,
8334
+ className: classNames(
8335
+ className23,
8336
+ props.className,
8337
+ {
8338
+ "k-group-horizontal": orientation === "horizontal"
8339
+ }
8340
+ ),
8341
+ children: props.children
8342
+ }
8343
+ );
8344
+ };
8345
+ SchedulerGroup.states = states54;
8346
+ SchedulerGroup.options = options52;
8347
+ SchedulerGroup.defaultProps = defaultProps51;
8348
+ SchedulerGroup.className = className23;
8349
+
8350
+ // src/scheduler/scheduler-event.spec.tsx
8351
+ var import_jsx_runtime151 = require("react/jsx-runtime");
8352
+ var className24 = "k-event";
8353
+ var states55 = [
8354
+ States.hover,
8355
+ States.focus,
8356
+ States.selected
8357
+ ];
8358
+ var options53 = {};
8359
+ var defaultProps52 = {
8360
+ resizable: "vertical",
8361
+ eventPrefix: /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(Icon, { icon: "arrow-rotate-cw" }),
8362
+ eventSuffix: /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(import_jsx_runtime151.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("a", { href: "#", className: "k-link k-event-delete", children: /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(Icon, { icon: "x" }) }) })
8363
+ };
8364
+ var SchedulerEvent = (props) => {
8365
+ const {
8366
+ inverse,
8367
+ ongoing,
8368
+ multiDay,
8369
+ resizable = defaultProps52.resizable,
8370
+ hover,
8371
+ focus,
8372
+ selected,
8373
+ eventPrefix = defaultProps52.eventPrefix,
8374
+ eventSuffix = defaultProps52.eventSuffix,
8375
+ ...others
8376
+ } = props;
8377
+ return /* @__PURE__ */ (0, import_jsx_runtime151.jsxs)(
8378
+ "div",
8379
+ {
8380
+ ...others,
8381
+ className: classNames(
8382
+ className24,
8383
+ props.className,
8384
+ stateClassNames(className24, {
8385
+ hover,
8386
+ focus,
8387
+ selected
8388
+ }),
8389
+ {
8390
+ "k-event-inverse": inverse,
8391
+ "k-event-ongoing": ongoing
8392
+ }
8393
+ ),
8394
+ children: [
8395
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("span", { className: "k-event-actions", children: eventPrefix }),
8396
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("div", { children: props.children }),
8397
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("span", { className: "k-event-actions", children: eventSuffix }),
8398
+ multiDay && /* @__PURE__ */ (0, import_jsx_runtime151.jsxs)(import_jsx_runtime151.Fragment, { children: [
8399
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("span", { className: "k-event-top-actions", children: /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(Icon, { icon: "caret-alt-up" }) }),
8400
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("span", { className: "k-event-bottom-actions", children: /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(Icon, { icon: "caret-alt-down" }) })
8052
8401
  ] }),
8053
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Button, { icon: "calendar", className: "k-nav-current", fillMode: "flat", children: "Sunday, June 23, 2019 - Saturday, June 29, 2019" })
8402
+ resizable === "vertical" ? /* @__PURE__ */ (0, import_jsx_runtime151.jsxs)(import_jsx_runtime151.Fragment, { children: [
8403
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("span", { className: "k-resize-handle k-resize-n" }),
8404
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("span", { className: "k-resize-handle k-resize-s" })
8405
+ ] }) : resizable === "horizontal" && /* @__PURE__ */ (0, import_jsx_runtime151.jsxs)(import_jsx_runtime151.Fragment, { children: [
8406
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("span", { className: "k-resize-handle k-resize-w" }),
8407
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("span", { className: "k-resize-handle k-resize-e" })
8408
+ ] })
8409
+ ]
8410
+ }
8411
+ );
8412
+ };
8413
+ SchedulerEvent.states = states55;
8414
+ SchedulerEvent.options = options53;
8415
+ SchedulerEvent.defaultProps = defaultProps52;
8416
+ SchedulerEvent.className = className24;
8417
+
8418
+ // src/scheduler/scheduler-task.spec.tsx
8419
+ var import_jsx_runtime152 = require("react/jsx-runtime");
8420
+ var className25 = "k-task";
8421
+ var states56 = [];
8422
+ var options54 = {};
8423
+ var defaultProps53 = {
8424
+ markStyle: { backgroundColor: "gold" }
8425
+ };
8426
+ var SchedulerTask = (props) => {
8427
+ const {
8428
+ text,
8429
+ markStyle,
8430
+ recurring,
8431
+ closable,
8432
+ ...other
8433
+ } = props;
8434
+ return /* @__PURE__ */ (0, import_jsx_runtime152.jsxs)(
8435
+ "div",
8436
+ {
8437
+ ...other,
8438
+ className: classNames(
8439
+ className25,
8440
+ props.className
8441
+ ),
8442
+ children: [
8443
+ /* @__PURE__ */ (0, import_jsx_runtime152.jsx)("span", { className: "k-scheduler-mark", style: markStyle }),
8444
+ recurring && /* @__PURE__ */ (0, import_jsx_runtime152.jsx)(icon_spec_default, { icon: "arrow-rotate-cw" }),
8445
+ /* @__PURE__ */ (0, import_jsx_runtime152.jsx)("span", { className: "k-scheduler-task text", children: text }),
8446
+ closable && /* @__PURE__ */ (0, import_jsx_runtime152.jsx)("a", { href: "#", className: "k-link k-event-delete", children: /* @__PURE__ */ (0, import_jsx_runtime152.jsx)(icon_spec_default, { icon: "x" }) })
8447
+ ]
8448
+ }
8449
+ );
8450
+ };
8451
+ SchedulerTask.states = states56;
8452
+ SchedulerTask.options = options54;
8453
+ SchedulerTask.defaultProps = defaultProps53;
8454
+ SchedulerTask.className = className25;
8455
+
8456
+ // src/scheduler/templates/scheduler-week.tsx
8457
+ var import_jsx_runtime153 = require("react/jsx-runtime");
8458
+ var SchedulerWeek = ({ style, ...props }) => /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(
8459
+ Scheduler,
8460
+ {
8461
+ style,
8462
+ layout: "table",
8463
+ view: "week",
8464
+ toolbar: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(import_jsx_runtime153.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)(SchedulerToolbar, { children: [
8465
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)(ButtonGroup, { className: "k-scheduler-navigation", children: [
8466
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(Button, { className: "k-group-start", children: "Today" }),
8467
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(Button, { icon: "caret-alt-left" }),
8468
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(Button, { className: "k-group-end", icon: "caret-alt-right" })
8054
8469
  ] }),
8055
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-spacer" }),
8056
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)(ButtonGroup, { className: "k-scheduler-views", children: [
8057
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Button, { className: "k-group-start", children: "Day" }),
8058
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Button, { selected: true, children: "Week" }),
8059
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Button, { children: "Month" }),
8060
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Button, { children: "Timeline" }),
8061
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Button, { className: "k-group-end", children: "Agenda" })
8470
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(Button, { icon: "calendar", className: "k-nav-current", fillMode: "flat", children: "10/04/2022 - 10/10/2022" }),
8471
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("span", { className: "k-spacer" }),
8472
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)(ButtonGroup, { className: "k-scheduler-views", children: [
8473
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(Button, { className: "k-group-start", children: "Day" }),
8474
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(Button, { selected: true, children: "Week" }),
8475
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(Button, { children: "Month" }),
8476
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(Button, { children: "Timeline" }),
8477
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(Button, { className: "k-group-end", children: "Agenda" })
8062
8478
  ] })
8063
- ] }),
8064
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { style: { display: "block" }, children: /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { className: "k-scheduler-layout k-scheduler-flex-layout k-scheduler-weekview", children: [
8065
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { className: "k-scheduler-pane", children: [
8066
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-scheduler-times", style: { width: "79px" }, children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("table", { className: "k-scheduler-table", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tbody", { children: [
8067
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { children: "\u200B" }) }),
8068
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-scheduler-times-all-day", style: { height: "46px" }, children: "all day" }) })
8069
- ] }) }) }),
8070
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-scheduler-header", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { className: "k-scheduler-header-wrap", children: [
8071
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("table", { className: "k-scheduler-table", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tbody", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8072
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-link k-nav-day", children: "Sun, 6/23" }) }),
8073
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-link k-nav-day", children: "Mon, 6/24" }) }),
8074
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-link k-nav-day", children: "Tue, 6/25" }) }),
8075
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-link k-nav-day", children: "Wed, 6/26" }) }),
8076
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-link k-nav-day", children: "Thu, 6/27" }) }),
8077
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-link k-nav-day", children: "Fri, 6/28" }) }),
8078
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-link k-nav-day", children: "Sat, 6/29" }) })
8479
+ ] }) }),
8480
+ footer: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(import_jsx_runtime153.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerToolbar, { footer: true, children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(Button, { icon: "clock", className: "k-scheduler-fullday", children: "Show business hours" }) }) }),
8481
+ children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(import_jsx_runtime153.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)("tbody", { children: [
8482
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)(SchedulerHead, { as: "tr", children: [
8483
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("td", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerTimes, { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerTable, { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)("tbody", { children: [
8484
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { style: { height: "37px" }, children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th" }) }),
8485
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { style: { height: "36px" }, children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", allDay: true, text: "all day" }) })
8486
+ ] }) }) }) }),
8487
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("td", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)(SchedulerHeader, { style: { paddingRight: "16px" }, children: [
8488
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerTable, { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tbody", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)("tr", { className: "k-scheduler-date-group", children: [
8489
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", text: "Sun 10/04" }),
8490
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", text: "Mon 10/05" }),
8491
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", text: "Tue 10/06" }),
8492
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", text: "Wed 10/07" }),
8493
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", text: "Thu 10/08" }),
8494
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", text: "Fri 10/09" }),
8495
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", text: "Sun 10/10" })
8079
8496
  ] }) }) }),
8080
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { style: { position: "relative" }, children: [
8081
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("table", { className: "k-scheduler-table k-scheduler-header-all-day", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tbody", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8082
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { style: { height: "46px" } }),
8083
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8084
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8085
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8086
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8087
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8088
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {})
8089
- ] }) }) }),
8090
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { className: "k-event", style: { width: "300px", right: "304px", top: "0px", height: "25px" }, children: [
8091
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-event-actions" }),
8092
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-event-template", children: "Attending HR Conference" }) }),
8093
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-event-actions", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Icon, { icon: "x" }) }) })
8094
- ] })
8095
- ] })
8497
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("div", { style: { position: "relative" }, children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerTable, { className: "k-scheduler-header-all-day", children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tbody", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)("tr", { style: { height: "36px" }, children: [
8498
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td" }),
8499
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td" }),
8500
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td" }),
8501
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td" }),
8502
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td" }),
8503
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td" }),
8504
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td" })
8505
+ ] }) }) }) })
8096
8506
  ] }) })
8097
8507
  ] }),
8098
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { className: "k-scheduler-pane", children: [
8099
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-scheduler-times", style: { height: "356px" }, children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("table", { className: "k-scheduler-table", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tbody", { children: [
8100
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { children: "7:00 AM" }) }),
8101
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-slot-cell" }) }),
8102
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { children: "8:00 AM" }) }),
8103
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-slot-cell" }) }),
8104
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { children: "9:00 AM" }) }),
8105
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-slot-cell" }) }),
8106
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { children: "10:00 AM" }) }),
8107
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-slot-cell" }) }),
8108
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { children: "11:00 AM" }) }),
8109
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-slot-cell" }) }),
8110
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { children: "12:00 PM" }) }),
8111
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-slot-cell" }) }),
8112
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { children: "1:00 PM" }) }),
8113
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-slot-cell" }) }),
8114
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { children: "2:00 PM" }) }),
8115
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-slot-cell" }) }),
8116
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { children: "3:00 PM" }) }),
8117
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-slot-cell" }) }),
8118
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { children: "4:00 PM" }) }),
8119
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-slot-cell" }) }),
8120
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { children: "5:00 PM" }) }),
8121
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-slot-cell" }) }),
8122
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { children: "6:00 PM" }) }),
8123
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-slot-cell" }) }),
8124
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { children: "7:00 PM" }) }),
8125
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("th", { className: "k-slot-cell" }) })
8126
- ] }) }) }),
8127
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { className: "k-scheduler-content", style: { height: "405px" }, children: [
8128
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("table", { className: "k-scheduler-table", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tbody", { children: [
8129
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { className: "k-middle-row", children: [
8130
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8131
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8132
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8133
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8134
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8135
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8136
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8137
- ] }),
8138
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8139
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8140
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8141
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8142
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8143
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8144
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8145
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8146
- ] }),
8147
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { className: "k-middle-row", children: [
8148
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8149
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8150
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8151
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8152
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8153
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8154
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8155
- ] }),
8156
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8157
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8158
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8159
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8160
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8161
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8162
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8163
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8508
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)(SchedulerBody, { as: "tr", children: [
8509
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("td", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerTimes, { style: { height: "195px" }, children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerTable, { style: { height: "400px" }, children: /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)("tbody", { children: [
8510
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("span", { children: "7:00 AM" }) }) }),
8511
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", cellType: ["slot"] }) }),
8512
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("span", { children: "8:00 AM" }) }) }),
8513
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", cellType: ["slot"] }) }),
8514
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("span", { children: "9:00 AM" }) }) }),
8515
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", cellType: ["slot"] }) }),
8516
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("span", { children: "10:00 AM" }) }) }),
8517
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", cellType: ["slot"] }) }),
8518
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("span", { children: "11:00 AM" }) }) }),
8519
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", cellType: ["slot"] }) }),
8520
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("span", { children: "12:00 AM" }) }) }),
8521
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", cellType: ["slot"] }) }),
8522
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("span", { children: "1:00 PM" }) }) }),
8523
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", cellType: ["slot"] }) }),
8524
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("span", { children: "2:00 PM" }) }) }),
8525
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", cellType: ["slot"] }) }),
8526
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("span", { children: "3:00 PM" }) }) }),
8527
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", cellType: ["slot"] }) }),
8528
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("span", { children: "4:00 PM" }) }) }),
8529
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", cellType: ["slot"] }) }),
8530
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("span", { children: "5:00 PM" }) }) }),
8531
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("tr", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "th", cellType: ["slot"] }) })
8532
+ ] }) }) }) }),
8533
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("td", { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)(SchedulerContent, { style: { height: "195px" }, children: [
8534
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerTable, { children: /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)("tbody", { children: [
8535
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)("tr", { className: "k-middle-row", children: [
8536
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8537
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8538
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8539
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8540
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8541
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8542
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" })
8164
8543
  ] }),
8165
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { className: "k-middle-row", children: [
8166
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8167
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8168
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8169
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8170
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8171
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8172
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8544
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)("tr", { children: [
8545
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8546
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8547
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8548
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8549
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8550
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8551
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" })
8173
8552
  ] }),
8174
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8175
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8176
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8177
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8178
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8179
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8180
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8181
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8553
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)("tr", { className: "k-middle-row", children: [
8554
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8555
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8556
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8557
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8558
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8559
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8560
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" })
8182
8561
  ] }),
8183
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { className: "k-middle-row", children: [
8184
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8185
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8186
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8187
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8188
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8189
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8190
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8562
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)("tr", { children: [
8563
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8564
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8565
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8566
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8567
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8568
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8569
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" })
8191
8570
  ] }),
8192
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8193
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8194
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8195
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8196
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8197
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8198
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8199
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8571
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)("tr", { children: [
8572
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8573
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8574
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8575
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8576
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8577
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8578
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" })
8200
8579
  ] }),
8201
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { className: "k-middle-row", children: [
8202
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8203
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8204
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8205
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8206
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8207
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8208
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8209
- ] }),
8210
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8211
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8212
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8213
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8214
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8215
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8216
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8217
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8218
- ] }),
8219
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { className: "k-middle-row", children: [
8220
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8221
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8222
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8223
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8224
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8225
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8226
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8227
- ] }),
8228
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8229
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8230
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8231
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8232
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8233
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8234
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8235
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8236
- ] }),
8237
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { className: "k-middle-row", children: [
8238
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8239
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8240
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8241
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8242
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8243
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8244
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8245
- ] }),
8246
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8247
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8248
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8249
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8250
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8251
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8252
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8253
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8254
- ] }),
8255
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { className: "k-middle-row", children: [
8256
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8257
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8258
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8259
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8260
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8261
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8262
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8263
- ] }),
8264
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8265
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8266
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8267
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8268
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8269
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8270
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8271
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8272
- ] }),
8273
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { className: "k-middle-row", children: [
8274
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8275
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8276
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8277
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8278
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8279
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8280
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8281
- ] }),
8282
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8283
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8284
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8285
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8286
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8287
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8288
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8289
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8290
- ] }),
8291
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { className: "k-middle-row", children: [
8292
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8293
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8294
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8295
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8296
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8297
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8298
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8299
- ] }),
8300
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8301
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8302
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8303
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8304
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8305
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8306
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", {}),
8307
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8308
- ] }),
8309
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { className: "k-middle-row", children: [
8310
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8311
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8312
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8313
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8314
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8315
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8316
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8317
- ] }),
8318
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8319
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8320
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8321
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8322
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8323
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8324
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8325
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8326
- ] }),
8327
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { className: "k-middle-row", children: [
8328
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8329
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8330
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8331
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8332
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8333
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8334
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8335
- ] }),
8336
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8337
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8338
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8339
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8340
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8341
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8342
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8343
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8344
- ] }),
8345
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { className: "k-middle-row", children: [
8346
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8347
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8348
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8349
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8350
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8351
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8352
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8353
- ] }),
8354
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("tr", { children: [
8355
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8356
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8357
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8358
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8359
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8360
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" }),
8361
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("td", { className: "k-nonwork-hour" })
8580
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)("tr", { children: [
8581
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }),
8582
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8583
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8584
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8585
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8586
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", children: "\xA0" }),
8587
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" })
8362
8588
  ] })
8363
8589
  ] }) }),
8364
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { className: "k-event", style: { width: "150px", right: "306px", top: "0px", height: "73px" }, children: [
8365
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-event-actions", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Icon, { icon: "arrow-rotate-cw" }) }),
8366
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { children: [
8367
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-event-template k-event-time", children: "7:00 AM - 8:00 AM" }),
8368
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-event-template", children: "HR Lecture" })
8369
- ] }),
8370
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-event-actions", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Icon, { icon: "x" }) }) })
8590
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)(SchedulerEvent, { ongoing: true, style: { top: "74px", left: "129px", height: "72px", width: "124px" }, children: [
8591
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("div", { className: "k-event-template k-event-time", children: "8:00 AM - 9:00 AM" }),
8592
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("div", { className: "k-event-template", children: "Event Title" })
8371
8593
  ] }),
8372
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { className: "k-event k-event-drag-hint", style: { width: "150px", right: "631px", top: "0px", height: "73px" }, children: [
8373
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-event-actions", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Icon, { icon: "arrow-rotate-cw" }) }),
8374
- /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("div", { children: [
8375
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-event-template k-event-time", children: "7:00 AM - 8:00 AM" }),
8376
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "k-event-template", children: "HR Lecture" })
8377
- ] }),
8378
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "k-event-actions", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("a", { className: "k-link k-event-delete", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Icon, { icon: "x" }) }) })
8594
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)(SchedulerEvent, { ongoing: true, resizable: "vertical", style: { top: "147px", left: "255px", height: "72px", width: "378px" }, children: [
8595
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("div", { className: "k-event-template k-event-time", children: "9:00 AM - 10:00 AM" }),
8596
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("div", { className: "k-event-template", children: "Event Title" })
8597
+ ] }),
8598
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)(SchedulerEvent, { ongoing: true, style: { top: "74px", left: "636px", height: "72px", width: "124px" }, children: [
8599
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("div", { className: "k-event-template k-event-time", children: "8:00 AM - 9:00 AM" }),
8600
+ /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("div", { className: "k-event-template", children: "Event Title" })
8379
8601
  ] })
8380
- ] })
8602
+ ] }) })
8381
8603
  ] })
8382
8604
  ] }) }),
8383
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Toolbar, { className: "k-scheduler-footer", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(Button, { icon: "clock", className: "k-scheduler-fullday", children: "Show business hours" }) })
8384
- ] }) })
8385
- ] });
8605
+ ...props
8606
+ }
8607
+ );
8608
+
8609
+ // src/scheduler/templates/scheduler-month.tsx
8610
+ var import_jsx_runtime154 = require("react/jsx-runtime");
8611
+
8612
+ // src/scheduler/templates/scheduler-timeline.tsx
8613
+ var import_jsx_runtime155 = require("react/jsx-runtime");
8614
+
8615
+ // src/scheduler/templates/scheduler-agenda.tsx
8616
+ var import_jsx_runtime156 = require("react/jsx-runtime");
8617
+
8618
+ // src/scheduler/templates/scheduler-flex-day.tsx
8619
+ var import_jsx_runtime157 = require("react/jsx-runtime");
8620
+
8621
+ // src/scheduler/templates/scheduler-flex-week.tsx
8622
+ var import_jsx_runtime158 = require("react/jsx-runtime");
8623
+ var SchedulerFlexWeek = ({ style, ...props }) => /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(
8624
+ Scheduler,
8625
+ {
8626
+ style,
8627
+ layout: "flex",
8628
+ view: "week",
8629
+ toolbar: /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(import_jsx_runtime158.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime158.jsxs)(SchedulerToolbar, { children: [
8630
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsxs)(ButtonGroup, { className: "k-scheduler-navigation", children: [
8631
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(Button, { className: "k-group-start", children: "Today" }),
8632
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(Button, { icon: "caret-alt-left" }),
8633
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(Button, { className: "k-group-end", icon: "caret-alt-right" })
8634
+ ] }),
8635
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(Button, { icon: "calendar", className: "k-nav-current", fillMode: "flat", children: "6/23/2022 - 6/29/2022" }),
8636
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)("span", { className: "k-spacer" }),
8637
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsxs)(ButtonGroup, { className: "k-scheduler-views", children: [
8638
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(Button, { className: "k-group-start", children: "Day" }),
8639
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(Button, { selected: true, children: "Week" }),
8640
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(Button, { children: "Month" }),
8641
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(Button, { children: "Timeline" }),
8642
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(Button, { className: "k-group-end", children: "Agenda" })
8643
+ ] })
8644
+ ] }) }),
8645
+ footer: /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(import_jsx_runtime158.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerToolbar, { footer: true, children: /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(Button, { icon: "clock", className: "k-scheduler-fullday", children: "Show business hours" }) }) }),
8646
+ children: /* @__PURE__ */ (0, import_jsx_runtime158.jsxs)(import_jsx_runtime158.Fragment, { children: [
8647
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsxs)(SchedulerHead, { as: "div", children: [
8648
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerGroup, { children: /* @__PURE__ */ (0, import_jsx_runtime158.jsxs)(SchedulerRow, { children: [
8649
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["side"], style: { minWidth: "65px" } }),
8650
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["group"], children: /* @__PURE__ */ (0, import_jsx_runtime158.jsxs)(SchedulerRow, { children: [
8651
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["heading"], text: "Sun, 6/23" }),
8652
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["heading"], text: "Sun, 6/24" }),
8653
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["heading"], text: "Sun, 6/25" }),
8654
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["heading"], text: "Sun, 6/26" }),
8655
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["heading"], text: "Sun, 6/27" }),
8656
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["heading"], text: "Sun, 6/28" }),
8657
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["heading"], text: "Sun, 6/29" })
8658
+ ] }) })
8659
+ ] }) }),
8660
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerGroup, { children: /* @__PURE__ */ (0, import_jsx_runtime158.jsxs)(SchedulerRow, { children: [
8661
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["heading", "side"], allDay: true, style: { minWidth: "65px" }, children: "all day" }),
8662
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["group"], children: /* @__PURE__ */ (0, import_jsx_runtime158.jsxs)(SchedulerRow, { children: [
8663
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8664
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8665
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8666
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8667
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8668
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8669
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] })
8670
+ ] }) })
8671
+ ] }) })
8672
+ ] }),
8673
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsxs)(SchedulerBody, { as: "div", children: [
8674
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerGroup, { children: /* @__PURE__ */ (0, import_jsx_runtime158.jsxs)(SchedulerRow, { children: [
8675
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["heading", "side", "major"], style: { minWidth: "65px" }, children: "8:00 AM" }),
8676
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["group"], children: /* @__PURE__ */ (0, import_jsx_runtime158.jsxs)(SchedulerRow, { className: "k-middle-row", children: [
8677
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8678
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8679
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8680
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8681
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8682
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8683
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] })
8684
+ ] }) })
8685
+ ] }) }),
8686
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerGroup, { children: /* @__PURE__ */ (0, import_jsx_runtime158.jsxs)(SchedulerRow, { children: [
8687
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["heading", "side"], style: { minWidth: "65px" } }),
8688
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["group"], children: /* @__PURE__ */ (0, import_jsx_runtime158.jsxs)(SchedulerRow, { children: [
8689
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8690
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8691
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8692
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8693
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8694
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8695
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] })
8696
+ ] }) })
8697
+ ] }) }),
8698
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerGroup, { children: /* @__PURE__ */ (0, import_jsx_runtime158.jsxs)(SchedulerRow, { children: [
8699
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["heading", "side", "major"], style: { minWidth: "65px" }, children: "9:00 AM" }),
8700
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["group"], children: /* @__PURE__ */ (0, import_jsx_runtime158.jsxs)(SchedulerRow, { className: "k-middle-row", children: [
8701
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8702
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8703
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8704
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8705
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8706
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8707
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] })
8708
+ ] }) })
8709
+ ] }) }),
8710
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerGroup, { children: /* @__PURE__ */ (0, import_jsx_runtime158.jsxs)(SchedulerRow, { children: [
8711
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["heading", "side"], style: { minWidth: "65px" } }),
8712
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["group"], children: /* @__PURE__ */ (0, import_jsx_runtime158.jsxs)(SchedulerRow, { children: [
8713
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8714
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8715
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8716
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8717
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8718
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8719
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] })
8720
+ ] }) })
8721
+ ] }) }),
8722
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerGroup, { children: /* @__PURE__ */ (0, import_jsx_runtime158.jsxs)(SchedulerRow, { children: [
8723
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["heading", "side", "major"], style: { minWidth: "65px" }, children: "10:00 AM" }),
8724
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["group"], children: /* @__PURE__ */ (0, import_jsx_runtime158.jsxs)(SchedulerRow, { className: "k-middle-row", children: [
8725
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8726
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8727
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8728
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8729
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8730
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8731
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] })
8732
+ ] }) })
8733
+ ] }) }),
8734
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerGroup, { children: /* @__PURE__ */ (0, import_jsx_runtime158.jsxs)(SchedulerRow, { children: [
8735
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["heading", "side"], style: { minWidth: "65px" } }),
8736
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["group"], children: /* @__PURE__ */ (0, import_jsx_runtime158.jsxs)(SchedulerRow, { children: [
8737
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8738
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8739
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8740
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8741
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8742
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8743
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] })
8744
+ ] }) })
8745
+ ] }) }),
8746
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerGroup, { children: /* @__PURE__ */ (0, import_jsx_runtime158.jsxs)(SchedulerRow, { children: [
8747
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["heading", "side", "major"], style: { minWidth: "65px" }, children: "11:00 AM" }),
8748
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["group"], children: /* @__PURE__ */ (0, import_jsx_runtime158.jsxs)(SchedulerRow, { className: "k-middle-row", children: [
8749
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8750
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8751
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8752
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8753
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8754
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8755
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] })
8756
+ ] }) })
8757
+ ] }) }),
8758
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerGroup, { children: /* @__PURE__ */ (0, import_jsx_runtime158.jsxs)(SchedulerRow, { children: [
8759
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["heading", "side"], style: { minWidth: "65px" } }),
8760
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["group"], children: /* @__PURE__ */ (0, import_jsx_runtime158.jsxs)(SchedulerRow, { children: [
8761
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8762
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8763
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8764
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8765
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8766
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] }),
8767
+ /* @__PURE__ */ (0, import_jsx_runtime158.jsx)(SchedulerCell, { as: "div", cellType: ["slot"] })
8768
+ ] }) })
8769
+ ] }) })
8770
+ ] })
8771
+ ] }),
8772
+ ...props
8773
+ }
8774
+ );
8775
+
8776
+ // src/scheduler/templates/scheduler-flex-month.tsx
8777
+ var import_jsx_runtime159 = require("react/jsx-runtime");
8778
+
8779
+ // src/scheduler/templates/scheduler-flex-timeline.tsx
8780
+ var import_jsx_runtime160 = require("react/jsx-runtime");
8781
+
8782
+ // src/scheduler/templates/scheduler-flex-agenda.tsx
8783
+ var import_jsx_runtime161 = require("react/jsx-runtime");
8784
+
8785
+ // src/scheduler/templates/scheduler-horizontal-grouping.tsx
8786
+ var import_jsx_runtime162 = require("react/jsx-runtime");
8787
+
8788
+ // src/scheduler/templates/scheduler-vertical-grouping.tsx
8789
+ var import_jsx_runtime163 = require("react/jsx-runtime");
8790
+
8791
+ // src/scheduler/templates/scheduler-flex-horizontal-grouping.tsx
8792
+ var import_jsx_runtime164 = require("react/jsx-runtime");
8793
+
8794
+ // src/scheduler/templates/scheduler-flex-vertical-grouping.tsx
8795
+ var import_jsx_runtime165 = require("react/jsx-runtime");
8796
+
8797
+ // src/scheduler/tests/scheduler-week-view.tsx
8798
+ var import_jsx_runtime166 = require("react/jsx-runtime");
8799
+ var scheduler_week_view_default = () => /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(import_jsx_runtime166.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)("div", { id: "test-area", className: "k-d-grid k-grid-cols-1", children: [
8800
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("span", { children: "Scheduler Table Layout" }),
8801
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerWeek, {}),
8802
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("span", { children: "Scheduler Flex Layout" }),
8803
+ /* @__PURE__ */ (0, import_jsx_runtime166.jsx)(SchedulerFlexWeek, {})
8804
+ ] }) });