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