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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (190) hide show
  1. package/dist/cjs/scheduler/scheduler-body.spec.js +52 -0
  2. package/dist/cjs/scheduler/scheduler-cell.spec.js +75 -0
  3. package/dist/cjs/scheduler/scheduler-content.spec.js +46 -0
  4. package/dist/cjs/scheduler/scheduler-event.spec.js +4433 -0
  5. package/dist/cjs/scheduler/scheduler-group.spec.js +66 -0
  6. package/dist/cjs/scheduler/scheduler-head.spec.js +52 -0
  7. package/dist/cjs/scheduler/scheduler-header.spec.js +46 -0
  8. package/dist/cjs/scheduler/scheduler-row.spec.js +46 -0
  9. package/dist/cjs/scheduler/scheduler-sticky-cell.spec.js +46 -0
  10. package/dist/cjs/scheduler/scheduler-table.spec.js +46 -0
  11. package/dist/cjs/scheduler/scheduler-task.spec.js +4372 -0
  12. package/dist/cjs/scheduler/scheduler-times.spec.js +46 -0
  13. package/dist/cjs/scheduler/{tests/scheduler-jquery-agenda.js → scheduler-toolbar.spec.js} +38 -94
  14. package/dist/cjs/scheduler/scheduler-view.spec.js +65 -0
  15. package/dist/cjs/scheduler/scheduler.spec.js +113 -0
  16. package/dist/cjs/scheduler/templates/scheduler-agenda.js +8541 -0
  17. package/dist/cjs/scheduler/{tests/scheduler-angular-month-rtl.js → templates/scheduler-day.js} +1324 -987
  18. package/dist/cjs/scheduler/{tests/scheduler-angular-agenda.js → templates/scheduler-flex-agenda.js} +1272 -985
  19. package/dist/cjs/scheduler/{tests/scheduler-angular-month.js → templates/scheduler-flex-day.js} +1274 -972
  20. package/dist/cjs/scheduler/templates/scheduler-flex-horizontal-grouping.js +8560 -0
  21. package/dist/cjs/scheduler/{tests/scheduler-jquery-month.js → templates/scheduler-flex-month.js} +1294 -969
  22. package/dist/cjs/scheduler/{tests/scheduler-angular-agenda-rtl.js → templates/scheduler-flex-timeline.js} +1291 -988
  23. package/dist/cjs/scheduler/{tests/scheduler-react-agenda.js → templates/scheduler-flex-vertical-grouping.js} +1470 -1100
  24. package/dist/cjs/scheduler/templates/scheduler-flex-week.js +8597 -0
  25. package/dist/cjs/scheduler/templates/scheduler-horizontal-grouping.js +8640 -0
  26. package/dist/cjs/scheduler/templates/scheduler-month.js +8577 -0
  27. package/dist/cjs/scheduler/templates/scheduler-timeline.js +8543 -0
  28. package/dist/cjs/scheduler/{tests/scheduler-angular-day-rtl.js → templates/scheduler-vertical-grouping.js} +1345 -1017
  29. package/dist/cjs/scheduler/{tests/scheduler-angular.js → templates/scheduler-week.js} +1372 -1126
  30. package/dist/cjs/scheduler/tests/scheduler-agenda-view.js +8638 -0
  31. package/dist/cjs/scheduler/tests/{scheduler.js → scheduler-current-time-marker.js} +1045 -459
  32. package/dist/cjs/scheduler/tests/scheduler-day-view.js +8653 -0
  33. package/dist/cjs/scheduler/tests/scheduler-events.js +9006 -0
  34. package/dist/cjs/scheduler/tests/scheduler-month-view.js +8700 -0
  35. package/dist/cjs/scheduler/tests/scheduler-react-timeline-multi.js +1724 -1481
  36. package/dist/cjs/scheduler/tests/scheduler-timeline-view.js +8656 -0
  37. package/dist/cjs/scheduler/tests/{scheduler-angular-rtl.js → scheduler-week-view.js} +1558 -1139
  38. package/dist/cjs/scheduler/tests/{scheduler-react-timeline.js → scheduler-year-view.js} +1203 -601
  39. package/dist/esm/scheduler/scheduler-body.spec.mjs +30 -0
  40. package/dist/esm/scheduler/scheduler-cell.spec.mjs +53 -0
  41. package/dist/esm/scheduler/scheduler-content.spec.mjs +24 -0
  42. package/dist/esm/scheduler/scheduler-event.spec.mjs +4417 -0
  43. package/dist/esm/scheduler/scheduler-group.spec.mjs +44 -0
  44. package/dist/esm/scheduler/scheduler-head.spec.mjs +30 -0
  45. package/dist/esm/scheduler/scheduler-header.spec.mjs +24 -0
  46. package/dist/esm/scheduler/scheduler-row.spec.mjs +24 -0
  47. package/dist/esm/scheduler/scheduler-sticky-cell.spec.mjs +24 -0
  48. package/dist/esm/scheduler/scheduler-table.spec.mjs +24 -0
  49. package/dist/esm/scheduler/scheduler-task.spec.mjs +4356 -0
  50. package/dist/esm/scheduler/scheduler-times.spec.mjs +24 -0
  51. package/dist/esm/scheduler/{tests/scheduler-jquery-agenda.mjs → scheduler-toolbar.spec.mjs} +34 -90
  52. package/dist/esm/scheduler/scheduler-view.spec.mjs +43 -0
  53. package/dist/esm/scheduler/scheduler.spec.mjs +91 -0
  54. package/dist/esm/scheduler/templates/scheduler-agenda.mjs +8525 -0
  55. package/dist/esm/scheduler/{tests/scheduler-jquery-month.mjs → templates/scheduler-day.mjs} +1318 -984
  56. package/dist/esm/scheduler/{tests/scheduler-angular-agenda.mjs → templates/scheduler-flex-agenda.mjs} +1268 -981
  57. package/dist/esm/scheduler/{tests/scheduler-angular-month-rtl.mjs → templates/scheduler-flex-day.mjs} +1270 -968
  58. package/dist/esm/scheduler/templates/scheduler-flex-horizontal-grouping.mjs +8544 -0
  59. package/dist/esm/scheduler/{tests/scheduler-angular-day-rtl.mjs → templates/scheduler-flex-month.mjs} +1293 -997
  60. package/dist/esm/scheduler/{tests/scheduler-angular-month.mjs → templates/scheduler-flex-timeline.mjs} +1286 -968
  61. package/dist/esm/scheduler/{tests/scheduler-react-agenda.mjs → templates/scheduler-flex-vertical-grouping.mjs} +1466 -1096
  62. package/dist/esm/scheduler/templates/scheduler-flex-week.mjs +8581 -0
  63. package/dist/esm/scheduler/{tests/scheduler-angular.mjs → templates/scheduler-horizontal-grouping.mjs} +1376 -1121
  64. package/dist/esm/scheduler/templates/scheduler-month.mjs +8561 -0
  65. package/dist/esm/scheduler/{tests/scheduler-angular-agenda-rtl.mjs → templates/scheduler-timeline.mjs} +1386 -1077
  66. package/dist/esm/scheduler/templates/scheduler-vertical-grouping.mjs +8563 -0
  67. package/dist/esm/scheduler/{tests/scheduler-angular-rtl.mjs → templates/scheduler-week.mjs} +1368 -1122
  68. package/dist/esm/scheduler/tests/scheduler-agenda-view.mjs +8622 -0
  69. package/dist/esm/scheduler/tests/{scheduler.mjs → scheduler-current-time-marker.mjs} +1041 -455
  70. package/dist/esm/scheduler/tests/scheduler-day-view.mjs +8637 -0
  71. package/dist/esm/scheduler/tests/scheduler-events.mjs +8990 -0
  72. package/dist/esm/scheduler/tests/scheduler-month-view.mjs +8684 -0
  73. package/dist/esm/scheduler/tests/scheduler-react-timeline-multi.mjs +1724 -1481
  74. package/dist/esm/scheduler/tests/scheduler-timeline-view.mjs +8640 -0
  75. package/dist/esm/scheduler/tests/scheduler-week-view.mjs +8788 -0
  76. package/dist/esm/scheduler/tests/{scheduler-react-timeline.mjs → scheduler-year-view.mjs} +1199 -597
  77. package/dist/types/scheduler/index.d.ts +30 -0
  78. package/dist/types/scheduler/scheduler-body.spec.d.ts +5 -0
  79. package/dist/types/scheduler/scheduler-cell.spec.d.ts +19 -0
  80. package/dist/types/scheduler/scheduler-content.spec.d.ts +1 -0
  81. package/dist/types/scheduler/scheduler-event.spec.d.ts +24 -0
  82. package/dist/types/scheduler/scheduler-group.spec.d.ts +13 -0
  83. package/dist/types/scheduler/scheduler-head.spec.d.ts +5 -0
  84. package/dist/types/scheduler/scheduler-header.spec.d.ts +1 -0
  85. package/dist/types/scheduler/scheduler-row.spec.d.ts +1 -0
  86. package/dist/types/scheduler/scheduler-sticky-cell.spec.d.ts +1 -0
  87. package/dist/types/scheduler/scheduler-table.spec.d.ts +2 -0
  88. package/dist/types/scheduler/scheduler-task.spec.d.ts +19 -0
  89. package/dist/types/scheduler/scheduler-times.spec.d.ts +1 -0
  90. package/dist/types/scheduler/scheduler-toolbar.spec.d.ts +5 -0
  91. package/dist/types/scheduler/scheduler-view.spec.d.ts +15 -0
  92. package/dist/types/scheduler/scheduler.spec.d.ts +15 -0
  93. package/dist/types/scheduler/templates/scheduler-agenda.d.ts +1 -0
  94. package/dist/types/scheduler/templates/scheduler-day.d.ts +1 -0
  95. package/dist/types/scheduler/templates/scheduler-flex-agenda.d.ts +1 -0
  96. package/dist/types/scheduler/templates/scheduler-flex-day.d.ts +1 -0
  97. package/dist/types/scheduler/templates/scheduler-flex-horizontal-grouping.d.ts +1 -0
  98. package/dist/types/scheduler/templates/scheduler-flex-month.d.ts +1 -0
  99. package/dist/types/scheduler/templates/scheduler-flex-timeline.d.ts +1 -0
  100. package/dist/types/scheduler/templates/scheduler-flex-vertical-grouping.d.ts +1 -0
  101. package/dist/types/scheduler/templates/scheduler-flex-week.d.ts +1 -0
  102. package/dist/types/scheduler/templates/scheduler-horizontal-grouping.d.ts +1 -0
  103. package/dist/types/scheduler/templates/scheduler-month.d.ts +1 -0
  104. package/dist/types/scheduler/templates/scheduler-timeline.d.ts +1 -0
  105. package/dist/types/scheduler/templates/scheduler-vertical-grouping.d.ts +1 -0
  106. package/dist/types/scheduler/templates/scheduler-week.d.ts +1 -0
  107. package/package.json +2 -2
  108. package/src/scheduler/index.ts +30 -0
  109. package/src/scheduler/scheduler-body.spec.tsx +25 -0
  110. package/src/scheduler/scheduler-cell.spec.tsx +68 -0
  111. package/src/scheduler/scheduler-content.spec.tsx +17 -0
  112. package/src/scheduler/scheduler-event.spec.tsx +105 -0
  113. package/src/scheduler/scheduler-group.spec.tsx +47 -0
  114. package/src/scheduler/scheduler-head.spec.tsx +25 -0
  115. package/src/scheduler/scheduler-header.spec.tsx +19 -0
  116. package/src/scheduler/scheduler-row.spec.tsx +17 -0
  117. package/src/scheduler/scheduler-sticky-cell.spec.tsx +18 -0
  118. package/src/scheduler/scheduler-table.spec.tsx +18 -0
  119. package/src/scheduler/scheduler-task.spec.tsx +60 -0
  120. package/src/scheduler/scheduler-times.spec.tsx +17 -0
  121. package/src/scheduler/scheduler-toolbar.spec.tsx +50 -0
  122. package/src/scheduler/scheduler-view.spec.tsx +47 -0
  123. package/src/scheduler/scheduler.spec.tsx +60 -0
  124. package/src/scheduler/templates/scheduler-agenda.tsx +123 -0
  125. package/src/scheduler/templates/scheduler-day.tsx +228 -0
  126. package/src/scheduler/templates/scheduler-flex-agenda.tsx +131 -0
  127. package/src/scheduler/templates/scheduler-flex-day.tsx +153 -0
  128. package/src/scheduler/templates/scheduler-flex-horizontal-grouping.tsx +336 -0
  129. package/src/scheduler/templates/scheduler-flex-month.tsx +156 -0
  130. package/src/scheduler/templates/scheduler-flex-timeline.tsx +114 -0
  131. package/src/scheduler/templates/scheduler-flex-vertical-grouping.tsx +345 -0
  132. package/src/scheduler/templates/scheduler-flex-week.tsx +210 -0
  133. package/src/scheduler/templates/scheduler-horizontal-grouping.tsx +265 -0
  134. package/src/scheduler/templates/scheduler-month.tsx +166 -0
  135. package/src/scheduler/templates/scheduler-timeline.tsx +116 -0
  136. package/src/scheduler/templates/scheduler-vertical-grouping.tsx +312 -0
  137. package/src/scheduler/templates/scheduler-week.tsx +268 -0
  138. package/src/scheduler/tests/scheduler-agenda-view.tsx +13 -0
  139. package/src/scheduler/tests/scheduler-current-time-marker.tsx +572 -0
  140. package/src/scheduler/tests/scheduler-day-view.tsx +13 -0
  141. package/src/scheduler/tests/scheduler-events.tsx +511 -0
  142. package/src/scheduler/tests/scheduler-month-view.tsx +13 -0
  143. package/src/scheduler/tests/scheduler-react-timeline-multi.tsx +661 -665
  144. package/src/scheduler/tests/scheduler-timeline-view.tsx +13 -0
  145. package/src/scheduler/tests/scheduler-week-view.tsx +13 -0
  146. package/src/scheduler/tests/scheduler-year-view.tsx +2399 -0
  147. package/dist/cjs/scheduler/tests/scheduler-flex-layout.js +0 -8222
  148. package/dist/cjs/scheduler/tests/scheduler-react-day.js +0 -8936
  149. package/dist/cjs/scheduler/tests/scheduler-react-month.js +0 -9739
  150. package/dist/cjs/scheduler/tests/scheduler-react-week.js +0 -9752
  151. package/dist/cjs/scheduler/tests/scheduler-year.js +0 -8906
  152. package/dist/esm/scheduler/tests/scheduler-flex-layout.mjs +0 -8206
  153. package/dist/esm/scheduler/tests/scheduler-react-day.mjs +0 -8920
  154. package/dist/esm/scheduler/tests/scheduler-react-month.mjs +0 -9723
  155. package/dist/esm/scheduler/tests/scheduler-react-week.mjs +0 -9736
  156. package/dist/esm/scheduler/tests/scheduler-year.mjs +0 -8890
  157. package/dist/types/scheduler/tests/scheduler-jquery-agenda.d.ts +0 -2
  158. package/dist/types/scheduler/tests/scheduler-jquery-month.d.ts +0 -2
  159. package/dist/types/scheduler/tests/scheduler-react-agenda.d.ts +0 -2
  160. package/dist/types/scheduler/tests/scheduler-react-day.d.ts +0 -2
  161. package/dist/types/scheduler/tests/scheduler-react-month.d.ts +0 -2
  162. package/dist/types/scheduler/tests/scheduler-react-timeline.d.ts +0 -2
  163. package/dist/types/scheduler/tests/scheduler-react-week.d.ts +0 -2
  164. package/dist/types/scheduler/tests/scheduler-year.d.ts +0 -2
  165. package/dist/types/scheduler/tests/scheduler.d.ts +0 -2
  166. package/src/scheduler/tests/scheduler-angular-agenda-rtl.tsx +0 -300
  167. package/src/scheduler/tests/scheduler-angular-agenda.tsx +0 -300
  168. package/src/scheduler/tests/scheduler-angular-day-rtl.tsx +0 -254
  169. package/src/scheduler/tests/scheduler-angular-month-rtl.tsx +0 -292
  170. package/src/scheduler/tests/scheduler-angular-month.tsx +0 -292
  171. package/src/scheduler/tests/scheduler-angular-rtl.tsx +0 -386
  172. package/src/scheduler/tests/scheduler-angular.tsx +0 -386
  173. package/src/scheduler/tests/scheduler-flex-layout.tsx +0 -492
  174. package/src/scheduler/tests/scheduler-jquery-agenda.tsx +0 -118
  175. package/src/scheduler/tests/scheduler-jquery-month.tsx +0 -306
  176. package/src/scheduler/tests/scheduler-react-agenda.tsx +0 -336
  177. package/src/scheduler/tests/scheduler-react-day.tsx +0 -1037
  178. package/src/scheduler/tests/scheduler-react-month.tsx +0 -1380
  179. package/src/scheduler/tests/scheduler-react-timeline.tsx +0 -669
  180. package/src/scheduler/tests/scheduler-react-week.tsx +0 -1786
  181. package/src/scheduler/tests/scheduler-year.tsx +0 -2383
  182. package/src/scheduler/tests/scheduler.tsx +0 -656
  183. /package/dist/types/scheduler/tests/{scheduler-angular-agenda-rtl.d.ts → scheduler-agenda-view.d.ts} +0 -0
  184. /package/dist/types/scheduler/tests/{scheduler-angular-agenda.d.ts → scheduler-current-time-marker.d.ts} +0 -0
  185. /package/dist/types/scheduler/tests/{scheduler-angular-day-rtl.d.ts → scheduler-day-view.d.ts} +0 -0
  186. /package/dist/types/scheduler/tests/{scheduler-angular-month-rtl.d.ts → scheduler-events.d.ts} +0 -0
  187. /package/dist/types/scheduler/tests/{scheduler-angular-month.d.ts → scheduler-month-view.d.ts} +0 -0
  188. /package/dist/types/scheduler/tests/{scheduler-angular-rtl.d.ts → scheduler-timeline-view.d.ts} +0 -0
  189. /package/dist/types/scheduler/tests/{scheduler-angular.d.ts → scheduler-week-view.d.ts} +0 -0
  190. /package/dist/types/scheduler/tests/{scheduler-flex-layout.d.ts → scheduler-year-view.d.ts} +0 -0
@@ -4355,6 +4355,7 @@ var Icon = (props) => {
4355
4355
  Icon.states = states3;
4356
4356
  Icon.options = options3;
4357
4357
  Icon.defaultProps = defaultProps3;
4358
+ var icon_spec_default = Icon;
4358
4359
 
4359
4360
  // src/button/button.spec.tsx
4360
4361
  import { Fragment as Fragment4, jsx as jsx4, jsxs } from "react/jsx-runtime";
@@ -4467,26 +4468,214 @@ import { jsx as jsx6 } from "react/jsx-runtime";
4467
4468
  // src/button/templates/text-button.tsx
4468
4469
  import { jsx as jsx7 } from "react/jsx-runtime";
4469
4470
 
4470
- // src/button-group/button-group.spec.tsx
4471
+ // src/scheduler/scheduler-view.spec.tsx
4471
4472
  import { jsx as jsx8 } from "react/jsx-runtime";
4473
+ var SCHEDULER_VIEW_CLASSNAME = "k-scheduler-layout";
4474
+ var states5 = [];
4475
+ var options5 = {};
4476
+ var defaultProps5 = {};
4477
+ var SchedulerView = (props) => {
4478
+ const {
4479
+ as: Component = "div",
4480
+ view,
4481
+ ...other
4482
+ } = props;
4483
+ return /* @__PURE__ */ jsx8(
4484
+ Component,
4485
+ {
4486
+ ...other,
4487
+ className: classNames(
4488
+ props.className,
4489
+ SCHEDULER_VIEW_CLASSNAME,
4490
+ {
4491
+ [`k-scheduler-${view}view`]: view
4492
+ }
4493
+ ),
4494
+ children: props.children
4495
+ }
4496
+ );
4497
+ };
4498
+ SchedulerView.states = states5;
4499
+ SchedulerView.options = options5;
4500
+ SchedulerView.className = SCHEDULER_VIEW_CLASSNAME;
4501
+ SchedulerView.defaultProps = defaultProps5;
4502
+ var scheduler_view_spec_default = SchedulerView;
4503
+
4504
+ // src/scheduler/scheduler.spec.tsx
4505
+ import { jsx as jsx9, jsxs as jsxs2 } from "react/jsx-runtime";
4506
+ var SCHEDULER_CLASSNAME = "k-scheduler";
4507
+ var states6 = [];
4508
+ var options6 = {};
4509
+ var defaultProps6 = {};
4510
+ var Scheduler = (props) => {
4511
+ const {
4512
+ view,
4513
+ toolbar,
4514
+ footer,
4515
+ layout,
4516
+ ...other
4517
+ } = props;
4518
+ return /* @__PURE__ */ jsxs2(
4519
+ "div",
4520
+ {
4521
+ ...other,
4522
+ className: classNames(
4523
+ props.className,
4524
+ SCHEDULER_CLASSNAME
4525
+ ),
4526
+ children: [
4527
+ toolbar,
4528
+ /* @__PURE__ */ jsx9(
4529
+ scheduler_view_spec_default,
4530
+ {
4531
+ className: classNames(
4532
+ {
4533
+ "k-scheduler-layout-flex": layout === "flex"
4534
+ }
4535
+ ),
4536
+ as: layout === "table" ? "table" : "div",
4537
+ view,
4538
+ children: props.children
4539
+ }
4540
+ ),
4541
+ footer
4542
+ ]
4543
+ }
4544
+ );
4545
+ };
4546
+ Scheduler.states = states6;
4547
+ Scheduler.options = options6;
4548
+ Scheduler.className = SCHEDULER_CLASSNAME;
4549
+ Scheduler.defaultProps = defaultProps6;
4550
+
4551
+ // src/scheduler/scheduler-header.spec.tsx
4552
+ import { jsx as jsx10 } from "react/jsx-runtime";
4553
+ var className = "k-scheduler-header";
4554
+ var SchedulerHeader = (props) => /* @__PURE__ */ jsx10(
4555
+ "div",
4556
+ {
4557
+ ...props,
4558
+ className: classNames(
4559
+ className,
4560
+ props.className
4561
+ ),
4562
+ children: /* @__PURE__ */ jsx10("div", { className: "k-scheduler-header-wrap", children: props.children })
4563
+ }
4564
+ );
4565
+
4566
+ // src/scheduler/scheduler-content.spec.tsx
4567
+ import { jsx as jsx11 } from "react/jsx-runtime";
4568
+ var className2 = "k-scheduler-content";
4569
+ var SchedulerContent = (props) => /* @__PURE__ */ jsx11(
4570
+ "div",
4571
+ {
4572
+ ...props,
4573
+ className: classNames(
4574
+ className2,
4575
+ props.className
4576
+ ),
4577
+ children: props.children
4578
+ }
4579
+ );
4580
+
4581
+ // src/scheduler/scheduler-times.spec.tsx
4582
+ import { jsx as jsx12 } from "react/jsx-runtime";
4583
+ var className3 = "k-scheduler-times";
4584
+ var SchedulerTimes = (props) => /* @__PURE__ */ jsx12(
4585
+ "div",
4586
+ {
4587
+ ...props,
4588
+ className: classNames(
4589
+ className3,
4590
+ props.className
4591
+ ),
4592
+ children: props.children
4593
+ }
4594
+ );
4595
+
4596
+ // src/scheduler/scheduler-table.spec.tsx
4597
+ import { jsx as jsx13 } from "react/jsx-runtime";
4598
+ var className4 = "k-scheduler-table";
4599
+ var SchedulerTable = (props) => /* @__PURE__ */ jsx13(
4600
+ "table",
4601
+ {
4602
+ ...props,
4603
+ className: classNames(
4604
+ className4,
4605
+ props.className
4606
+ ),
4607
+ children: props.children
4608
+ }
4609
+ );
4610
+
4611
+ // src/scheduler/scheduler-cell.spec.tsx
4612
+ import { jsx as jsx14 } from "react/jsx-runtime";
4613
+ var className5 = "k-scheduler-cell";
4614
+ var states7 = [];
4615
+ var options7 = {};
4616
+ var defaultOptions = {};
4617
+ var SchedulerCell = (props) => {
4618
+ const {
4619
+ cellType,
4620
+ allDay,
4621
+ text,
4622
+ colspan,
4623
+ rowspan,
4624
+ as: Component = "div",
4625
+ ...other
4626
+ } = props;
4627
+ const textOrChildren = text ? text : props.children;
4628
+ return /* @__PURE__ */ jsx14(
4629
+ Component,
4630
+ {
4631
+ ...other,
4632
+ colSpan: colspan,
4633
+ rowSpan: rowspan,
4634
+ className: classNames(
4635
+ className5,
4636
+ props.className,
4637
+ {
4638
+ "k-scheduler-times-all-day": allDay
4639
+ },
4640
+ cellType?.map((t) => ({
4641
+ [`k-${t}-cell`]: true
4642
+ }))
4643
+ ),
4644
+ children: !allDay && text ? /* @__PURE__ */ jsx14("span", { className: "k-link k-nav-day", children: textOrChildren }) : textOrChildren
4645
+ }
4646
+ );
4647
+ };
4648
+ SchedulerCell.states = states7;
4649
+ SchedulerCell.options = options7;
4650
+ SchedulerCell.defaultProps = defaultOptions;
4651
+ SchedulerCell.className = className5;
4652
+
4653
+ // src/scheduler/scheduler-sticky-cell.spec.tsx
4654
+ import { jsx as jsx15 } from "react/jsx-runtime";
4655
+
4656
+ // src/scheduler/scheduler-row.spec.tsx
4657
+ import { jsx as jsx16 } from "react/jsx-runtime";
4658
+
4659
+ // src/button-group/button-group.spec.tsx
4660
+ import { jsx as jsx17 } from "react/jsx-runtime";
4472
4661
  var BUTTONGROUP_CLASSNAME = `k-button-group`;
4473
- var states5 = [
4662
+ var states8 = [
4474
4663
  States.disabled
4475
4664
  ];
4476
- var options5 = {
4665
+ var options8 = {
4477
4666
  fillMode: [FillMode.solid, FillMode.flat, FillMode.outline, FillMode.clear, FillMode.link]
4478
4667
  };
4479
- var defaultProps5 = {
4668
+ var defaultProps7 = {
4480
4669
  fillMode: FillMode.solid
4481
4670
  };
4482
4671
  var ButtonGroup = (props) => {
4483
4672
  const {
4484
- fillMode = defaultProps5.fillMode,
4673
+ fillMode = defaultProps7.fillMode,
4485
4674
  disabled,
4486
4675
  stretched,
4487
4676
  ...other
4488
4677
  } = props;
4489
- return /* @__PURE__ */ jsx8(
4678
+ return /* @__PURE__ */ jsx17(
4490
4679
  "div",
4491
4680
  {
4492
4681
  ...other,
@@ -4507,27 +4696,27 @@ var ButtonGroup = (props) => {
4507
4696
  }
4508
4697
  );
4509
4698
  };
4510
- ButtonGroup.states = states5;
4511
- ButtonGroup.options = options5;
4699
+ ButtonGroup.states = states8;
4700
+ ButtonGroup.options = options8;
4512
4701
  ButtonGroup.className = BUTTONGROUP_CLASSNAME;
4513
- ButtonGroup.defaultProps = defaultProps5;
4702
+ ButtonGroup.defaultProps = defaultProps7;
4514
4703
 
4515
4704
  // src/button-group/templates/icon-button-group.tsx
4516
- import { Fragment as Fragment5, jsx as jsx9, jsxs as jsxs2 } from "react/jsx-runtime";
4705
+ import { Fragment as Fragment5, jsx as jsx18, jsxs as jsxs3 } from "react/jsx-runtime";
4517
4706
 
4518
4707
  // src/button-group/templates/icon-text-button-group.tsx
4519
- import { Fragment as Fragment6, jsx as jsx10, jsxs as jsxs3 } from "react/jsx-runtime";
4708
+ import { Fragment as Fragment6, jsx as jsx19, jsxs as jsxs4 } from "react/jsx-runtime";
4520
4709
 
4521
4710
  // src/button-group/templates/text-button-group.tsx
4522
- import { Fragment as Fragment7, jsx as jsx11, jsxs as jsxs4 } from "react/jsx-runtime";
4711
+ import { Fragment as Fragment7, jsx as jsx20, jsxs as jsxs5 } from "react/jsx-runtime";
4523
4712
 
4524
4713
  // src/button-group/templates/mixed-button-group.tsx
4525
- import { Fragment as Fragment8, jsx as jsx12, jsxs as jsxs5 } from "react/jsx-runtime";
4714
+ import { Fragment as Fragment8, jsx as jsx21, jsxs as jsxs6 } from "react/jsx-runtime";
4526
4715
 
4527
4716
  // src/input/input.spec.tsx
4528
- import { jsx as jsx13 } from "react/jsx-runtime";
4717
+ import { jsx as jsx22 } from "react/jsx-runtime";
4529
4718
  var INPUT_CLASSNAME = `k-input`;
4530
- var states6 = [
4719
+ var states9 = [
4531
4720
  States.hover,
4532
4721
  States.focus,
4533
4722
  States.valid,
@@ -4537,12 +4726,12 @@ var states6 = [
4537
4726
  States.loading,
4538
4727
  States.readonly
4539
4728
  ];
4540
- var options6 = {
4729
+ var options9 = {
4541
4730
  size: [Size.small, Size.medium, Size.large],
4542
4731
  rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full],
4543
4732
  fillMode: [FillMode.solid, FillMode.flat, FillMode.outline]
4544
4733
  };
4545
- var defaultProps6 = {
4734
+ var defaultProps8 = {
4546
4735
  size: Size.medium,
4547
4736
  rounded: Size.medium,
4548
4737
  fillMode: FillMode.solid
@@ -4556,12 +4745,12 @@ var Input = (props) => {
4556
4745
  valid,
4557
4746
  loading,
4558
4747
  readonly,
4559
- size = defaultProps6.size,
4560
- rounded = defaultProps6.rounded,
4561
- fillMode = defaultProps6.fillMode,
4748
+ size = defaultProps8.size,
4749
+ rounded = defaultProps8.rounded,
4750
+ fillMode = defaultProps8.fillMode,
4562
4751
  ...other
4563
4752
  } = props;
4564
- return /* @__PURE__ */ jsx13(
4753
+ return /* @__PURE__ */ jsx22(
4565
4754
  "span",
4566
4755
  {
4567
4756
  ...other,
@@ -4574,13 +4763,13 @@ var Input = (props) => {
4574
4763
  }
4575
4764
  );
4576
4765
  };
4577
- Input.states = states6;
4578
- Input.options = options6;
4766
+ Input.states = states9;
4767
+ Input.options = options9;
4579
4768
  Input.className = INPUT_CLASSNAME;
4580
- Input.defaultProps = defaultProps6;
4769
+ Input.defaultProps = defaultProps8;
4581
4770
 
4582
4771
  // src/input/picker.spec.tsx
4583
- import { jsx as jsx14 } from "react/jsx-runtime";
4772
+ import { jsx as jsx23 } from "react/jsx-runtime";
4584
4773
  var PICKER_CLASSNAME = `k-picker`;
4585
4774
  var pickerStates = [
4586
4775
  States.hover,
@@ -4597,7 +4786,7 @@ var pickerOptions = {
4597
4786
  rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full],
4598
4787
  fillMode: [FillMode.solid, FillMode.flat, FillMode.outline]
4599
4788
  };
4600
- var defaultProps7 = {
4789
+ var defaultProps9 = {
4601
4790
  size: Size.medium,
4602
4791
  rounded: Roundness.medium,
4603
4792
  fillMode: FillMode.solid
@@ -4611,12 +4800,12 @@ var Picker = (props) => {
4611
4800
  valid,
4612
4801
  loading,
4613
4802
  readonly,
4614
- size = defaultProps7.size,
4615
- rounded = defaultProps7.rounded,
4616
- fillMode = defaultProps7.fillMode,
4803
+ size = defaultProps9.size,
4804
+ rounded = defaultProps9.rounded,
4805
+ fillMode = defaultProps9.fillMode,
4617
4806
  ...other
4618
4807
  } = props;
4619
- return /* @__PURE__ */ jsx14(
4808
+ return /* @__PURE__ */ jsx23(
4620
4809
  "span",
4621
4810
  {
4622
4811
  ...other,
@@ -4633,17 +4822,17 @@ var Picker = (props) => {
4633
4822
  Picker.states = pickerStates;
4634
4823
  Picker.options = pickerOptions;
4635
4824
  Picker.className = PICKER_CLASSNAME;
4636
- Picker.defaultProps = defaultProps7;
4825
+ Picker.defaultProps = defaultProps9;
4637
4826
 
4638
4827
  // src/input/input-clear-value.tsx
4639
- import { Fragment as Fragment9, jsx as jsx15 } from "react/jsx-runtime";
4640
- var className = `k-clear-value`;
4641
- var states7 = [
4828
+ import { Fragment as Fragment9, jsx as jsx24 } from "react/jsx-runtime";
4829
+ var className6 = `k-clear-value`;
4830
+ var states10 = [
4642
4831
  States.disabled,
4643
4832
  States.loading,
4644
4833
  States.readonly
4645
4834
  ];
4646
- var options7 = {};
4835
+ var options10 = {};
4647
4836
  var InputClearValue = (props) => {
4648
4837
  const {
4649
4838
  disabled,
@@ -4652,20 +4841,20 @@ var InputClearValue = (props) => {
4652
4841
  value
4653
4842
  } = props;
4654
4843
  if (disabled || readonly || loading || !value) {
4655
- return /* @__PURE__ */ jsx15(Fragment9, {});
4844
+ return /* @__PURE__ */ jsx24(Fragment9, {});
4656
4845
  }
4657
- return /* @__PURE__ */ jsx15("span", { className: classNames(props.className, className), children: /* @__PURE__ */ jsx15(Icon, { icon: "x" }) });
4846
+ return /* @__PURE__ */ jsx24("span", { className: classNames(props.className, className6), children: /* @__PURE__ */ jsx24(Icon, { icon: "x" }) });
4658
4847
  };
4659
- InputClearValue.states = states7;
4660
- InputClearValue.options = options7;
4661
- InputClearValue.className = className;
4848
+ InputClearValue.states = states10;
4849
+ InputClearValue.options = options10;
4850
+ InputClearValue.className = className6;
4662
4851
 
4663
4852
  // src/input/input-inner-input.tsx
4664
- import { jsx as jsx16 } from "react/jsx-runtime";
4665
- var className2 = `k-input-inner`;
4666
- var states8 = [];
4667
- var options8 = {};
4668
- var defaultProps8 = {
4853
+ import { jsx as jsx25 } from "react/jsx-runtime";
4854
+ var className7 = `k-input-inner`;
4855
+ var states11 = [];
4856
+ var options11 = {};
4857
+ var defaultProps10 = {
4669
4858
  type: "text",
4670
4859
  autocomplete: "off",
4671
4860
  value: "",
@@ -4673,33 +4862,33 @@ var defaultProps8 = {
4673
4862
  };
4674
4863
  var InputInnerInput = (props) => {
4675
4864
  const {
4676
- value = defaultProps8.value,
4677
- type = defaultProps8.type,
4678
- placeholder = defaultProps8.placeholder,
4679
- autocomplete = defaultProps8.autocomplete,
4865
+ value = defaultProps10.value,
4866
+ type = defaultProps10.type,
4867
+ placeholder = defaultProps10.placeholder,
4868
+ autocomplete = defaultProps10.autocomplete,
4680
4869
  ...other
4681
4870
  } = props;
4682
- return /* @__PURE__ */ jsx16(
4871
+ return /* @__PURE__ */ jsx25(
4683
4872
  "input",
4684
4873
  {
4685
4874
  ...other,
4686
4875
  type,
4687
- className: classNames(props.className, className2, optionClassNames(className2, props)),
4876
+ className: classNames(props.className, className7, optionClassNames(className7, props)),
4688
4877
  placeholder,
4689
4878
  autoComplete: autocomplete,
4690
4879
  defaultValue: value
4691
4880
  }
4692
4881
  );
4693
4882
  };
4694
- InputInnerInput.states = states8;
4695
- InputInnerInput.options = options8;
4696
- InputInnerInput.className = className2;
4883
+ InputInnerInput.states = states11;
4884
+ InputInnerInput.options = options11;
4885
+ InputInnerInput.className = className7;
4697
4886
 
4698
4887
  // src/input/input-inner-span.tsx
4699
- import { jsx as jsx17, jsxs as jsxs6 } from "react/jsx-runtime";
4700
- var className3 = `k-input-inner`;
4701
- var states9 = [];
4702
- var options9 = {};
4888
+ import { jsx as jsx26, jsxs as jsxs7 } from "react/jsx-runtime";
4889
+ var className8 = `k-input-inner`;
4890
+ var states12 = [];
4891
+ var options12 = {};
4703
4892
  var InputInnerSpan = (props) => {
4704
4893
  const {
4705
4894
  value,
@@ -4709,59 +4898,59 @@ var InputInnerSpan = (props) => {
4709
4898
  valueIconName,
4710
4899
  ...other
4711
4900
  } = props;
4712
- return /* @__PURE__ */ jsxs6(
4901
+ return /* @__PURE__ */ jsxs7(
4713
4902
  "span",
4714
4903
  {
4715
4904
  ...other,
4716
- className: classNames(props.className, className3, optionClassNames(className3, props)),
4905
+ className: classNames(props.className, className8, optionClassNames(className8, props)),
4717
4906
  children: [
4718
4907
  valueIcon,
4719
- !valueIcon && valueIconName && /* @__PURE__ */ jsx17(Icon, { className: "k-input-value-icon", icon: valueIconName }),
4908
+ !valueIcon && valueIconName && /* @__PURE__ */ jsx26(Icon, { className: "k-input-value-icon", icon: valueIconName }),
4720
4909
  showValue && !value && placeholder,
4721
- showValue && value && /* @__PURE__ */ jsx17("span", { className: "k-input-value-text", children: value })
4910
+ showValue && value && /* @__PURE__ */ jsx26("span", { className: "k-input-value-text", children: value })
4722
4911
  ]
4723
4912
  }
4724
4913
  );
4725
4914
  };
4726
- InputInnerSpan.states = states9;
4727
- InputInnerSpan.options = options9;
4728
- InputInnerSpan.className = className3;
4915
+ InputInnerSpan.states = states12;
4916
+ InputInnerSpan.options = options12;
4917
+ InputInnerSpan.className = className8;
4729
4918
 
4730
4919
  // src/input/input-inner-textarea.tsx
4731
- import { jsx as jsx18 } from "react/jsx-runtime";
4732
- var defaultProps9 = {
4920
+ import { jsx as jsx27 } from "react/jsx-runtime";
4921
+ var defaultProps11 = {
4733
4922
  value: "",
4734
4923
  placeholder: ""
4735
4924
  };
4736
- var className4 = `k-input-inner`;
4737
- var states10 = [];
4738
- var options10 = {};
4925
+ var className9 = `k-input-inner`;
4926
+ var states13 = [];
4927
+ var options13 = {};
4739
4928
  var InputInnerTextarea = (props) => {
4740
4929
  const {
4741
- value = defaultProps9.value,
4742
- placeholder = defaultProps9.placeholder,
4930
+ value = defaultProps11.value,
4931
+ placeholder = defaultProps11.placeholder,
4743
4932
  rows,
4744
4933
  ...other
4745
4934
  } = props;
4746
- return /* @__PURE__ */ jsx18(
4935
+ return /* @__PURE__ */ jsx27(
4747
4936
  "textarea",
4748
4937
  {
4749
4938
  ...other,
4750
- className: classNames(props.className, className4, optionClassNames(className4, props)),
4939
+ className: classNames(props.className, className9, optionClassNames(className9, props)),
4751
4940
  placeholder,
4752
4941
  rows,
4753
4942
  defaultValue: value
4754
4943
  }
4755
4944
  );
4756
4945
  };
4757
- InputInnerTextarea.states = states10;
4758
- InputInnerTextarea.options = options10;
4759
- InputInnerTextarea.className = className4;
4946
+ InputInnerTextarea.states = states13;
4947
+ InputInnerTextarea.options = options13;
4948
+ InputInnerTextarea.className = className9;
4760
4949
 
4761
4950
  // src/input/input-loading-icon.tsx
4762
- import { Fragment as Fragment10, jsx as jsx19 } from "react/jsx-runtime";
4763
- var className5 = `k-input-loading-icon`;
4764
- var states11 = [
4951
+ import { Fragment as Fragment10, jsx as jsx28 } from "react/jsx-runtime";
4952
+ var className10 = `k-input-loading-icon`;
4953
+ var states14 = [
4765
4954
  States.disabled,
4766
4955
  States.loading
4767
4956
  ];
@@ -4771,21 +4960,21 @@ var InputLoadingIcon = (props) => {
4771
4960
  loading
4772
4961
  } = props;
4773
4962
  if (disabled || !loading) {
4774
- return /* @__PURE__ */ jsx19(Fragment10, {});
4963
+ return /* @__PURE__ */ jsx28(Fragment10, {});
4775
4964
  }
4776
- return /* @__PURE__ */ jsx19("span", { className: classNames(props.className, className5, "k-icon k-i-loading") });
4965
+ return /* @__PURE__ */ jsx28("span", { className: classNames(props.className, className10, "k-icon k-i-loading") });
4777
4966
  };
4778
4967
 
4779
4968
  // src/input/input-validation-icon.tsx
4780
- import { Fragment as Fragment11, jsx as jsx20 } from "react/jsx-runtime";
4781
- var className6 = `k-input-validation-icon`;
4782
- var states12 = [
4969
+ import { Fragment as Fragment11, jsx as jsx29 } from "react/jsx-runtime";
4970
+ var className11 = `k-input-validation-icon`;
4971
+ var states15 = [
4783
4972
  States.valid,
4784
4973
  States.invalid,
4785
4974
  States.disabled,
4786
4975
  States.loading
4787
4976
  ];
4788
- var options11 = {};
4977
+ var options14 = {};
4789
4978
  var InputValidationIcon = (props) => {
4790
4979
  const {
4791
4980
  valid,
@@ -4796,34 +4985,34 @@ var InputValidationIcon = (props) => {
4796
4985
  const iconName = invalid ? "warning-circle" : "check-circle";
4797
4986
  const renderValidationIcon = Boolean(valid || invalid);
4798
4987
  if (disabled || loading || !renderValidationIcon) {
4799
- return /* @__PURE__ */ jsx20(Fragment11, {});
4988
+ return /* @__PURE__ */ jsx29(Fragment11, {});
4800
4989
  }
4801
- return /* @__PURE__ */ jsx20(Icon, { className: classNames(className6), icon: iconName });
4990
+ return /* @__PURE__ */ jsx29(Icon, { className: classNames(className11), icon: iconName });
4802
4991
  };
4803
- InputValidationIcon.states = states12;
4804
- InputValidationIcon.options = options11;
4805
- InputValidationIcon.className = className6;
4992
+ InputValidationIcon.states = states15;
4993
+ InputValidationIcon.options = options14;
4994
+ InputValidationIcon.className = className11;
4806
4995
 
4807
4996
  // src/input/input-prefix.tsx
4808
- import { Fragment as Fragment12, jsx as jsx21 } from "react/jsx-runtime";
4809
- var className7 = `k-input-prefix`;
4810
- var defaultProps10 = {
4997
+ import { Fragment as Fragment12, jsx as jsx30 } from "react/jsx-runtime";
4998
+ var className12 = `k-input-prefix`;
4999
+ var defaultProps12 = {
4811
5000
  direction: "horizontal"
4812
5001
  };
4813
5002
  var InputPrefix = (props) => {
4814
5003
  const {
4815
- direction = defaultProps10.direction,
5004
+ direction = defaultProps12.direction,
4816
5005
  ...other
4817
5006
  } = props;
4818
5007
  if (!props.children) {
4819
- return /* @__PURE__ */ jsx21(Fragment12, {});
5008
+ return /* @__PURE__ */ jsx30(Fragment12, {});
4820
5009
  }
4821
- return /* @__PURE__ */ jsx21(
5010
+ return /* @__PURE__ */ jsx30(
4822
5011
  "span",
4823
5012
  {
4824
5013
  ...other,
4825
5014
  className: classNames(
4826
- className7,
5015
+ className12,
4827
5016
  props.className,
4828
5017
  {
4829
5018
  [`k-input-prefix-${direction}`]: direction
@@ -4835,25 +5024,25 @@ var InputPrefix = (props) => {
4835
5024
  };
4836
5025
 
4837
5026
  // src/input/input-suffix.tsx
4838
- import { Fragment as Fragment13, jsx as jsx22 } from "react/jsx-runtime";
4839
- var className8 = `k-input-suffix`;
4840
- var defaultProps11 = {
5027
+ import { Fragment as Fragment13, jsx as jsx31 } from "react/jsx-runtime";
5028
+ var className13 = `k-input-suffix`;
5029
+ var defaultProps13 = {
4841
5030
  direction: "horizontal"
4842
5031
  };
4843
5032
  var InputSuffix = (props) => {
4844
5033
  const {
4845
- direction = defaultProps11.direction,
5034
+ direction = defaultProps13.direction,
4846
5035
  ...other
4847
5036
  } = props;
4848
5037
  if (!props.children) {
4849
- return /* @__PURE__ */ jsx22(Fragment13, {});
5038
+ return /* @__PURE__ */ jsx31(Fragment13, {});
4850
5039
  }
4851
- return /* @__PURE__ */ jsx22(
5040
+ return /* @__PURE__ */ jsx31(
4852
5041
  "span",
4853
5042
  {
4854
5043
  ...other,
4855
5044
  className: classNames(
4856
- className8,
5045
+ className13,
4857
5046
  props.className,
4858
5047
  {
4859
5048
  [`k-input-suffix-${direction}`]: direction
@@ -4865,31 +5054,31 @@ var InputSuffix = (props) => {
4865
5054
  };
4866
5055
 
4867
5056
  // src/input/input-prefix-text.tsx
4868
- import { jsx as jsx23 } from "react/jsx-runtime";
5057
+ import { jsx as jsx32 } from "react/jsx-runtime";
4869
5058
 
4870
5059
  // src/input/input-suffix-text.tsx
4871
- import { jsx as jsx24 } from "react/jsx-runtime";
5060
+ import { jsx as jsx33 } from "react/jsx-runtime";
4872
5061
 
4873
5062
  // src/input/input-separator.tsx
4874
- import { jsx as jsx25 } from "react/jsx-runtime";
4875
- var className9 = `k-input-separator`;
4876
- var defaultProps12 = {
5063
+ import { jsx as jsx34 } from "react/jsx-runtime";
5064
+ var className14 = `k-input-separator`;
5065
+ var defaultProps14 = {
4877
5066
  direction: "vertical"
4878
5067
  };
4879
5068
  var InputSeparator = (props) => {
4880
5069
  const {
4881
- direction = defaultProps12.direction,
5070
+ direction = defaultProps14.direction,
4882
5071
  ...other
4883
5072
  } = props;
4884
- return /* @__PURE__ */ jsx25(
5073
+ return /* @__PURE__ */ jsx34(
4885
5074
  "span",
4886
5075
  {
4887
5076
  ...other,
4888
5077
  className: classNames(
4889
- className9,
5078
+ className14,
4890
5079
  props.className,
4891
5080
  {
4892
- [`${className9}-${direction}`]: direction
5081
+ [`${className14}-${direction}`]: direction
4893
5082
  }
4894
5083
  )
4895
5084
  }
@@ -4897,17 +5086,17 @@ var InputSeparator = (props) => {
4897
5086
  };
4898
5087
 
4899
5088
  // src/color-preview/color-preview.tsx
4900
- import { jsx as jsx26, jsxs as jsxs7 } from "react/jsx-runtime";
5089
+ import { jsx as jsx35, jsxs as jsxs8 } from "react/jsx-runtime";
4901
5090
  var COLORPREVIEW_CLASSNAME = `k-color-preview`;
4902
- var states13 = [];
4903
- var options12 = {};
5091
+ var states16 = [];
5092
+ var options15 = {};
4904
5093
  var ColorPreview = (props) => {
4905
5094
  const {
4906
5095
  color,
4907
5096
  iconName,
4908
5097
  ...other
4909
5098
  } = props;
4910
- return /* @__PURE__ */ jsxs7(
5099
+ return /* @__PURE__ */ jsxs8(
4911
5100
  "span",
4912
5101
  {
4913
5102
  ...other,
@@ -4920,8 +5109,8 @@ var ColorPreview = (props) => {
4920
5109
  }
4921
5110
  ),
4922
5111
  children: [
4923
- iconName && /* @__PURE__ */ jsx26(Icon, { icon: iconName, className: "k-color-preview-icon" }),
4924
- /* @__PURE__ */ jsx26(
5112
+ iconName && /* @__PURE__ */ jsx35(Icon, { icon: iconName, className: "k-color-preview-icon" }),
5113
+ /* @__PURE__ */ jsx35(
4925
5114
  "span",
4926
5115
  {
4927
5116
  className: "k-color-preview-mask",
@@ -4932,16 +5121,16 @@ var ColorPreview = (props) => {
4932
5121
  }
4933
5122
  );
4934
5123
  };
4935
- ColorPreview.states = states13;
4936
- ColorPreview.options = options12;
5124
+ ColorPreview.states = states16;
5125
+ ColorPreview.options = options15;
4937
5126
  ColorPreview.className = COLORPREVIEW_CLASSNAME;
4938
5127
 
4939
5128
  // src/animation-container/animation-container.spec.tsx
4940
- import { jsx as jsx27 } from "react/jsx-runtime";
5129
+ import { jsx as jsx36 } from "react/jsx-runtime";
4941
5130
  var ANIMATION_CONTAINER_CLASSNAME = `k-animation-container`;
4942
- var states14 = [];
4943
- var options13 = {};
4944
- var defaultProps13 = {
5131
+ var states17 = [];
5132
+ var options16 = {};
5133
+ var defaultProps15 = {
4945
5134
  positionMode: "absolute"
4946
5135
  };
4947
5136
  var AnimationContainer = (props) => {
@@ -4951,7 +5140,7 @@ var AnimationContainer = (props) => {
4951
5140
  offset,
4952
5141
  ...other
4953
5142
  } = props;
4954
- return /* @__PURE__ */ jsx27(
5143
+ return /* @__PURE__ */ jsx36(
4955
5144
  "div",
4956
5145
  {
4957
5146
  ...other,
@@ -4963,21 +5152,21 @@ var AnimationContainer = (props) => {
4963
5152
  ["k-animation-container-fixed"]: positionMode === "fixed"
4964
5153
  }
4965
5154
  ),
4966
- children: /* @__PURE__ */ jsx27("div", { className: "k-child-animation-container", style: animationStyle, children: props.children })
5155
+ children: /* @__PURE__ */ jsx36("div", { className: "k-child-animation-container", style: animationStyle, children: props.children })
4967
5156
  }
4968
5157
  );
4969
5158
  };
4970
- AnimationContainer.states = states14;
4971
- AnimationContainer.options = options13;
5159
+ AnimationContainer.states = states17;
5160
+ AnimationContainer.options = options16;
4972
5161
  AnimationContainer.className = ANIMATION_CONTAINER_CLASSNAME;
4973
- AnimationContainer.defaultProps = defaultProps13;
5162
+ AnimationContainer.defaultProps = defaultProps15;
4974
5163
 
4975
5164
  // src/popup/popup.spec.tsx
4976
- import { jsx as jsx28 } from "react/jsx-runtime";
5165
+ import { jsx as jsx37 } from "react/jsx-runtime";
4977
5166
  var POPUP_CLASSNAME = `k-popup`;
4978
- var states15 = [];
4979
- var options14 = {};
4980
- var defaultProps14 = {
5167
+ var states18 = [];
5168
+ var options17 = {};
5169
+ var defaultProps16 = {
4981
5170
  positionMode: "absolute"
4982
5171
  };
4983
5172
  var Popup = (props) => {
@@ -4987,25 +5176,25 @@ var Popup = (props) => {
4987
5176
  animationStyle,
4988
5177
  ...other
4989
5178
  } = props;
4990
- return /* @__PURE__ */ jsx28(
5179
+ return /* @__PURE__ */ jsx37(
4991
5180
  AnimationContainer,
4992
5181
  {
4993
5182
  positionMode,
4994
5183
  offset,
4995
5184
  animationStyle,
4996
- children: /* @__PURE__ */ jsx28("div", { ...other, className: classNames(props.className, POPUP_CLASSNAME), children: props.children })
5185
+ children: /* @__PURE__ */ jsx37("div", { ...other, className: classNames(props.className, POPUP_CLASSNAME), children: props.children })
4997
5186
  }
4998
5187
  );
4999
5188
  };
5000
- Popup.states = states15;
5001
- Popup.options = options14;
5189
+ Popup.states = states18;
5190
+ Popup.options = options17;
5002
5191
  Popup.className = POPUP_CLASSNAME;
5003
- Popup.defaultProps = defaultProps14;
5192
+ Popup.defaultProps = defaultProps16;
5004
5193
 
5005
5194
  // src/colorpicker/colorpicker.spec.tsx
5006
- import { Fragment as Fragment14, jsx as jsx29, jsxs as jsxs8 } from "react/jsx-runtime";
5195
+ import { Fragment as Fragment14, jsx as jsx38, jsxs as jsxs9 } from "react/jsx-runtime";
5007
5196
  var COLORPICKER_CLASSNAME = `k-colorpicker`;
5008
- var states16 = [
5197
+ var states19 = [
5009
5198
  States.hover,
5010
5199
  States.focus,
5011
5200
  States.valid,
@@ -5013,12 +5202,12 @@ var states16 = [
5013
5202
  States.required,
5014
5203
  States.disabled
5015
5204
  ];
5016
- var options15 = {
5205
+ var options18 = {
5017
5206
  size: [Size.small, Size.medium, Size.large],
5018
5207
  rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full],
5019
5208
  fillMode: [FillMode.solid, FillMode.flat, FillMode.outline]
5020
5209
  };
5021
- var defaultProps15 = {
5210
+ var defaultProps17 = {
5022
5211
  arrowIconName: "caret-alt-down",
5023
5212
  size: Picker.defaultProps.size,
5024
5213
  rounded: Picker.defaultProps.rounded,
@@ -5040,13 +5229,13 @@ var ColorPicker = (props) => {
5040
5229
  required,
5041
5230
  disabled,
5042
5231
  valueIconName,
5043
- arrowIconName = defaultProps15.arrowIconName,
5232
+ arrowIconName = defaultProps17.arrowIconName,
5044
5233
  popup,
5045
5234
  opened,
5046
5235
  ...other
5047
5236
  } = props;
5048
- return /* @__PURE__ */ jsxs8(Fragment14, { children: [
5049
- /* @__PURE__ */ jsxs8(
5237
+ return /* @__PURE__ */ jsxs9(Fragment14, { children: [
5238
+ /* @__PURE__ */ jsxs9(
5050
5239
  Picker,
5051
5240
  {
5052
5241
  ...other,
@@ -5065,14 +5254,14 @@ var ColorPicker = (props) => {
5065
5254
  "k-icon-picker"
5066
5255
  ),
5067
5256
  children: [
5068
- /* @__PURE__ */ jsx29(InputPrefix, { children: prefix }),
5069
- /* @__PURE__ */ jsx29(
5257
+ /* @__PURE__ */ jsx38(InputPrefix, { children: prefix }),
5258
+ /* @__PURE__ */ jsx38(
5070
5259
  InputInnerSpan,
5071
5260
  {
5072
5261
  placeholder,
5073
5262
  value,
5074
5263
  showValue: false,
5075
- valueIcon: /* @__PURE__ */ jsx29(
5264
+ valueIcon: /* @__PURE__ */ jsx38(
5076
5265
  ColorPreview,
5077
5266
  {
5078
5267
  className: "k-value-icon",
@@ -5083,8 +5272,8 @@ var ColorPicker = (props) => {
5083
5272
  valueIconName
5084
5273
  }
5085
5274
  ),
5086
- /* @__PURE__ */ jsx29(InputSuffix, { children: suffix }),
5087
- /* @__PURE__ */ jsx29(
5275
+ /* @__PURE__ */ jsx38(InputSuffix, { children: suffix }),
5276
+ /* @__PURE__ */ jsx38(
5088
5277
  Button,
5089
5278
  {
5090
5279
  className: "k-input-button",
@@ -5097,33 +5286,33 @@ var ColorPicker = (props) => {
5097
5286
  ]
5098
5287
  }
5099
5288
  ),
5100
- opened && popup && /* @__PURE__ */ jsx29(Popup, { className: "k-colorpicker-popup", children: popup })
5289
+ opened && popup && /* @__PURE__ */ jsx38(Popup, { className: "k-colorpicker-popup", children: popup })
5101
5290
  ] });
5102
5291
  };
5103
- ColorPicker.states = states16;
5104
- ColorPicker.options = options15;
5292
+ ColorPicker.states = states19;
5293
+ ColorPicker.options = options18;
5105
5294
  ColorPicker.className = COLORPICKER_CLASSNAME;
5106
- ColorPicker.defaultProps = defaultProps15;
5295
+ ColorPicker.defaultProps = defaultProps17;
5107
5296
 
5108
5297
  // src/colorpicker/templates/colorpicker-normal.tsx
5109
- import { jsx as jsx30 } from "react/jsx-runtime";
5298
+ import { jsx as jsx39 } from "react/jsx-runtime";
5110
5299
 
5111
5300
  // src/action-buttons/action-buttons.spec.tsx
5112
- import { jsx as jsx31 } from "react/jsx-runtime";
5301
+ import { jsx as jsx40 } from "react/jsx-runtime";
5113
5302
  var ACTIONBUTTONS_CLASSNAME = `k-actions`;
5114
- var states17 = [];
5115
- var options16 = {};
5116
- var defaultProps16 = {
5303
+ var states20 = [];
5304
+ var options19 = {};
5305
+ var defaultProps18 = {
5117
5306
  alignment: "start",
5118
5307
  orientation: "horizontal"
5119
5308
  };
5120
5309
  var ActionButtons = (props) => {
5121
5310
  const {
5122
- alignment = defaultProps16.alignment,
5123
- orientation = defaultProps16.orientation,
5311
+ alignment = defaultProps18.alignment,
5312
+ orientation = defaultProps18.orientation,
5124
5313
  ...other
5125
5314
  } = props;
5126
- return /* @__PURE__ */ jsx31(
5315
+ return /* @__PURE__ */ jsx40(
5127
5316
  "div",
5128
5317
  {
5129
5318
  ...other,
@@ -5139,24 +5328,24 @@ var ActionButtons = (props) => {
5139
5328
  }
5140
5329
  );
5141
5330
  };
5142
- ActionButtons.states = states17;
5143
- ActionButtons.options = options16;
5331
+ ActionButtons.states = states20;
5332
+ ActionButtons.options = options19;
5144
5333
  ActionButtons.className = ACTIONBUTTONS_CLASSNAME;
5145
- ActionButtons.defaultProps = defaultProps16;
5334
+ ActionButtons.defaultProps = defaultProps18;
5146
5335
  var action_buttons_spec_default = ActionButtons;
5147
5336
 
5148
5337
  // src/slider/slider.spec.tsx
5149
- import { jsx as jsx32, jsxs as jsxs9 } from "react/jsx-runtime";
5338
+ import { jsx as jsx41, jsxs as jsxs10 } from "react/jsx-runtime";
5150
5339
  var SLIDER_CLASSNAME = "k-slider";
5151
- var states18 = [
5340
+ var states21 = [
5152
5341
  States.hover,
5153
5342
  States.focus,
5154
5343
  States.active,
5155
5344
  States.disabled,
5156
5345
  States.readonly
5157
5346
  ];
5158
- var options17 = {};
5159
- var defaultProps17 = {
5347
+ var options20 = {};
5348
+ var defaultProps19 = {
5160
5349
  type: "single",
5161
5350
  orientation: "horizontal",
5162
5351
  readonly: false,
@@ -5167,13 +5356,13 @@ var defaultProps17 = {
5167
5356
  };
5168
5357
  var Slider = (props) => {
5169
5358
  const {
5170
- type = defaultProps17.type,
5171
- orientation = defaultProps17.orientation,
5172
- readonly = defaultProps17.readonly,
5173
- disabled = defaultProps17.disabled,
5174
- handlePosition = defaultProps17.handlePosition,
5175
- showButtons = defaultProps17.showButtons,
5176
- showTicks = defaultProps17.showTicks,
5359
+ type = defaultProps19.type,
5360
+ orientation = defaultProps19.orientation,
5361
+ readonly = defaultProps19.readonly,
5362
+ disabled = defaultProps19.disabled,
5363
+ handlePosition = defaultProps19.handlePosition,
5364
+ showButtons = defaultProps19.showButtons,
5365
+ showTicks = defaultProps19.showTicks,
5177
5366
  hover,
5178
5367
  focus,
5179
5368
  active,
@@ -5190,7 +5379,7 @@ var Slider = (props) => {
5190
5379
  iconIncrease = "caret-alt-up";
5191
5380
  iconDecrease = "caret-alt-down";
5192
5381
  }
5193
- return /* @__PURE__ */ jsxs9(
5382
+ return /* @__PURE__ */ jsxs10(
5194
5383
  "div",
5195
5384
  {
5196
5385
  ...other,
@@ -5208,12 +5397,12 @@ var Slider = (props) => {
5208
5397
  ),
5209
5398
  dir,
5210
5399
  children: [
5211
- showButtons && /* @__PURE__ */ jsx32(Button, { className: "k-button-decrease", rounded: "full", icon: iconDecrease }),
5212
- /* @__PURE__ */ jsxs9("div", { className: "k-slider-track-wrap", children: [
5213
- showTicks && /* @__PURE__ */ jsx32("ul", { className: "k-reset k-slider-items", children: props.children }),
5214
- /* @__PURE__ */ jsxs9("div", { className: "k-slider-track", style: trackStyle, children: [
5215
- /* @__PURE__ */ jsx32("div", { className: "k-slider-selection" }),
5216
- type === "range" && /* @__PURE__ */ jsx32("span", { className: classNames(
5400
+ showButtons && /* @__PURE__ */ jsx41(Button, { className: "k-button-decrease", rounded: "full", icon: iconDecrease }),
5401
+ /* @__PURE__ */ jsxs10("div", { className: "k-slider-track-wrap", children: [
5402
+ showTicks && /* @__PURE__ */ jsx41("ul", { className: "k-reset k-slider-items", children: props.children }),
5403
+ /* @__PURE__ */ jsxs10("div", { className: "k-slider-track", style: trackStyle, children: [
5404
+ /* @__PURE__ */ jsx41("div", { className: "k-slider-selection" }),
5405
+ type === "range" && /* @__PURE__ */ jsx41("span", { className: classNames(
5217
5406
  "k-draghandle",
5218
5407
  "k-draghandle-start",
5219
5408
  stateClassNames(SLIDER_CLASSNAME, {
@@ -5222,7 +5411,7 @@ var Slider = (props) => {
5222
5411
  active
5223
5412
  })
5224
5413
  ) }),
5225
- /* @__PURE__ */ jsx32("span", { className: classNames(
5414
+ /* @__PURE__ */ jsx41("span", { className: classNames(
5226
5415
  "k-draghandle",
5227
5416
  `k-draghandle-${handlePosition}`,
5228
5417
  stateClassNames(SLIDER_CLASSNAME, {
@@ -5233,34 +5422,34 @@ var Slider = (props) => {
5233
5422
  ) })
5234
5423
  ] })
5235
5424
  ] }),
5236
- showButtons && /* @__PURE__ */ jsx32(Button, { className: "k-button-increase", rounded: "full", icon: iconIncrease })
5425
+ showButtons && /* @__PURE__ */ jsx41(Button, { className: "k-button-increase", rounded: "full", icon: iconIncrease })
5237
5426
  ]
5238
5427
  }
5239
5428
  );
5240
5429
  };
5241
- Slider.states = states18;
5242
- Slider.options = options17;
5430
+ Slider.states = states21;
5431
+ Slider.options = options20;
5243
5432
  Slider.className = SLIDER_CLASSNAME;
5244
- Slider.defaultProps = defaultProps17;
5433
+ Slider.defaultProps = defaultProps19;
5245
5434
 
5246
5435
  // src/slider/slider-tick.tsx
5247
- import { jsx as jsx33 } from "react/jsx-runtime";
5436
+ import { jsx as jsx42 } from "react/jsx-runtime";
5248
5437
  var SLIDER_TICK_CLASSNAME = "k-tick";
5249
- var states19 = [];
5250
- var options18 = {};
5251
- var defaultProps18 = {
5438
+ var states22 = [];
5439
+ var options21 = {};
5440
+ var defaultProps20 = {
5252
5441
  label: false
5253
5442
  };
5254
5443
  var SliderTick = (props) => {
5255
5444
  const {
5256
- style: style2,
5257
- label = defaultProps18.label,
5445
+ style,
5446
+ label = defaultProps20.label,
5258
5447
  orientation,
5259
5448
  large,
5260
5449
  text,
5261
5450
  ...other
5262
5451
  } = props;
5263
- return /* @__PURE__ */ jsx33(
5452
+ return /* @__PURE__ */ jsx42(
5264
5453
  "li",
5265
5454
  {
5266
5455
  ...other,
@@ -5272,34 +5461,34 @@ var SliderTick = (props) => {
5272
5461
  "k-tick-large": large
5273
5462
  }
5274
5463
  ),
5275
- style: style2,
5276
- children: label && /* @__PURE__ */ jsx33("span", { className: "k-label", children: text })
5464
+ style,
5465
+ children: label && /* @__PURE__ */ jsx42("span", { className: "k-label", children: text })
5277
5466
  }
5278
5467
  );
5279
5468
  };
5280
- SliderTick.states = states19;
5281
- SliderTick.options = options18;
5469
+ SliderTick.states = states22;
5470
+ SliderTick.options = options21;
5282
5471
  SliderTick.className = SLIDER_TICK_CLASSNAME;
5283
- SliderTick.defaultProps = defaultProps18;
5472
+ SliderTick.defaultProps = defaultProps20;
5284
5473
 
5285
5474
  // src/slider/templates/slider-normal.tsx
5286
- import { Fragment as Fragment15, jsx as jsx34, jsxs as jsxs10 } from "react/jsx-runtime";
5475
+ import { Fragment as Fragment15, jsx as jsx43, jsxs as jsxs11 } from "react/jsx-runtime";
5287
5476
 
5288
5477
  // src/slider/templates/slider-vertical.tsx
5289
- import { Fragment as Fragment16, jsx as jsx35, jsxs as jsxs11 } from "react/jsx-runtime";
5478
+ import { Fragment as Fragment16, jsx as jsx44, jsxs as jsxs12 } from "react/jsx-runtime";
5290
5479
 
5291
5480
  // src/slider/templates/slider-range.tsx
5292
- import { Fragment as Fragment17, jsx as jsx36, jsxs as jsxs12 } from "react/jsx-runtime";
5481
+ import { Fragment as Fragment17, jsx as jsx45, jsxs as jsxs13 } from "react/jsx-runtime";
5293
5482
 
5294
5483
  // src/slider/templates/slider-range-vertical.tsx
5295
- import { Fragment as Fragment18, jsx as jsx37, jsxs as jsxs13 } from "react/jsx-runtime";
5484
+ import { Fragment as Fragment18, jsx as jsx46, jsxs as jsxs14 } from "react/jsx-runtime";
5296
5485
 
5297
5486
  // src/slider/templates/slider-gradient.tsx
5298
- import { jsx as jsx38 } from "react/jsx-runtime";
5487
+ import { jsx as jsx47 } from "react/jsx-runtime";
5299
5488
 
5300
5489
  // src/slider/templates/slider-gradient-vertical.tsx
5301
- import { jsx as jsx39 } from "react/jsx-runtime";
5302
- var SliderGradientVertical = (props) => /* @__PURE__ */ jsx39(
5490
+ import { jsx as jsx48 } from "react/jsx-runtime";
5491
+ var SliderGradientVertical = (props) => /* @__PURE__ */ jsx48(
5303
5492
  Slider,
5304
5493
  {
5305
5494
  type: "gradient",
@@ -5311,24 +5500,24 @@ var SliderGradientVertical = (props) => /* @__PURE__ */ jsx39(
5311
5500
  );
5312
5501
 
5313
5502
  // src/spinbutton/spinbutton.spec.tsx
5314
- import { jsx as jsx40, jsxs as jsxs14 } from "react/jsx-runtime";
5503
+ import { jsx as jsx49, jsxs as jsxs15 } from "react/jsx-runtime";
5315
5504
  var SPINBUTTON_CLASSNAME = `k-spin-button`;
5316
- var states20 = [];
5317
- var options19 = {
5505
+ var states23 = [];
5506
+ var options22 = {
5318
5507
  size: [Size.small, Size.medium, Size.large],
5319
5508
  fillMode: [FillMode.solid, FillMode.flat, FillMode.outline, FillMode.clear, FillMode.link]
5320
5509
  };
5321
- var defaultProps19 = {
5510
+ var defaultProps21 = {
5322
5511
  size: Size.medium,
5323
5512
  fillMode: FillMode.solid
5324
5513
  };
5325
5514
  var SpinButton = (props) => {
5326
5515
  const {
5327
- size = defaultProps19.size,
5328
- fillMode = defaultProps19.fillMode,
5516
+ size = defaultProps21.size,
5517
+ fillMode = defaultProps21.fillMode,
5329
5518
  ...other
5330
5519
  } = props;
5331
- return /* @__PURE__ */ jsxs14(
5520
+ return /* @__PURE__ */ jsxs15(
5332
5521
  "span",
5333
5522
  {
5334
5523
  ...other,
@@ -5337,7 +5526,7 @@ var SpinButton = (props) => {
5337
5526
  props.className
5338
5527
  ),
5339
5528
  children: [
5340
- /* @__PURE__ */ jsx40(
5529
+ /* @__PURE__ */ jsx49(
5341
5530
  Button,
5342
5531
  {
5343
5532
  className: "k-spinner-increase",
@@ -5347,7 +5536,7 @@ var SpinButton = (props) => {
5347
5536
  fillMode
5348
5537
  }
5349
5538
  ),
5350
- /* @__PURE__ */ jsx40(
5539
+ /* @__PURE__ */ jsx49(
5351
5540
  Button,
5352
5541
  {
5353
5542
  className: "k-spinner-decrease",
@@ -5361,15 +5550,15 @@ var SpinButton = (props) => {
5361
5550
  }
5362
5551
  );
5363
5552
  };
5364
- SpinButton.states = states20;
5365
- SpinButton.options = options19;
5553
+ SpinButton.states = states23;
5554
+ SpinButton.options = options22;
5366
5555
  SpinButton.className = SPINBUTTON_CLASSNAME;
5367
- SpinButton.defaultProps = defaultProps19;
5556
+ SpinButton.defaultProps = defaultProps21;
5368
5557
 
5369
5558
  // src/numerictextbox/numerictextbox.spec.tsx
5370
- import { Fragment as Fragment19, jsx as jsx41, jsxs as jsxs15 } from "react/jsx-runtime";
5559
+ import { Fragment as Fragment19, jsx as jsx50, jsxs as jsxs16 } from "react/jsx-runtime";
5371
5560
  var NUMERICTEXTBOX_CLASSNAME = `k-numerictextbox`;
5372
- var states21 = [
5561
+ var states24 = [
5373
5562
  States.hover,
5374
5563
  States.focus,
5375
5564
  States.valid,
@@ -5379,12 +5568,12 @@ var states21 = [
5379
5568
  States.disabled,
5380
5569
  States.readonly
5381
5570
  ];
5382
- var options20 = {
5571
+ var options23 = {
5383
5572
  size: [Size.small, Size.medium, Size.large],
5384
5573
  rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full],
5385
5574
  fillMode: [FillMode.solid, FillMode.flat, FillMode.outline]
5386
5575
  };
5387
- var defaultProps20 = {
5576
+ var defaultProps22 = {
5388
5577
  showSpinButton: true,
5389
5578
  showClearButton: true,
5390
5579
  size: Input.defaultProps.size,
@@ -5396,7 +5585,7 @@ var NumericTextbox = (props) => {
5396
5585
  const {
5397
5586
  prefix,
5398
5587
  suffix,
5399
- separators = defaultProps20.separators,
5588
+ separators = defaultProps22.separators,
5400
5589
  value,
5401
5590
  placeholder,
5402
5591
  size,
@@ -5410,11 +5599,11 @@ var NumericTextbox = (props) => {
5410
5599
  loading,
5411
5600
  disabled,
5412
5601
  readonly,
5413
- showClearButton = defaultProps20.showClearButton,
5414
- showSpinButton = defaultProps20.showSpinButton,
5602
+ showClearButton = defaultProps22.showClearButton,
5603
+ showSpinButton = defaultProps22.showSpinButton,
5415
5604
  ...other
5416
5605
  } = props;
5417
- return /* @__PURE__ */ jsxs15(
5606
+ return /* @__PURE__ */ jsxs16(
5418
5607
  Input,
5419
5608
  {
5420
5609
  ...other,
@@ -5431,12 +5620,12 @@ var NumericTextbox = (props) => {
5431
5620
  readonly,
5432
5621
  className: classNames(props.className, NUMERICTEXTBOX_CLASSNAME),
5433
5622
  children: [
5434
- prefix && /* @__PURE__ */ jsxs15(Fragment19, { children: [
5435
- /* @__PURE__ */ jsx41(InputPrefix, { children: prefix }),
5436
- separators && /* @__PURE__ */ jsx41(InputSeparator, {})
5623
+ prefix && /* @__PURE__ */ jsxs16(Fragment19, { children: [
5624
+ /* @__PURE__ */ jsx50(InputPrefix, { children: prefix }),
5625
+ separators && /* @__PURE__ */ jsx50(InputSeparator, {})
5437
5626
  ] }),
5438
- /* @__PURE__ */ jsx41(InputInnerInput, { placeholder, value }),
5439
- /* @__PURE__ */ jsx41(
5627
+ /* @__PURE__ */ jsx50(InputInnerInput, { placeholder, value }),
5628
+ /* @__PURE__ */ jsx50(
5440
5629
  InputValidationIcon,
5441
5630
  {
5442
5631
  valid,
@@ -5445,14 +5634,14 @@ var NumericTextbox = (props) => {
5445
5634
  disabled
5446
5635
  }
5447
5636
  ),
5448
- /* @__PURE__ */ jsx41(
5637
+ /* @__PURE__ */ jsx50(
5449
5638
  InputLoadingIcon,
5450
5639
  {
5451
5640
  loading,
5452
5641
  disabled
5453
5642
  }
5454
5643
  ),
5455
- showClearButton && /* @__PURE__ */ jsx41(
5644
+ showClearButton && /* @__PURE__ */ jsx50(
5456
5645
  InputClearValue,
5457
5646
  {
5458
5647
  loading,
@@ -5461,11 +5650,11 @@ var NumericTextbox = (props) => {
5461
5650
  value
5462
5651
  }
5463
5652
  ),
5464
- suffix && /* @__PURE__ */ jsxs15(Fragment19, { children: [
5465
- separators && /* @__PURE__ */ jsx41(InputSeparator, {}),
5466
- /* @__PURE__ */ jsx41(InputSuffix, { children: suffix })
5653
+ suffix && /* @__PURE__ */ jsxs16(Fragment19, { children: [
5654
+ separators && /* @__PURE__ */ jsx50(InputSeparator, {}),
5655
+ /* @__PURE__ */ jsx50(InputSuffix, { children: suffix })
5467
5656
  ] }),
5468
- showSpinButton && /* @__PURE__ */ jsx41(
5657
+ showSpinButton && /* @__PURE__ */ jsx50(
5469
5658
  SpinButton,
5470
5659
  {
5471
5660
  className: "k-input-spinner",
@@ -5477,18 +5666,18 @@ var NumericTextbox = (props) => {
5477
5666
  }
5478
5667
  );
5479
5668
  };
5480
- NumericTextbox.states = states21;
5481
- NumericTextbox.options = options20;
5669
+ NumericTextbox.states = states24;
5670
+ NumericTextbox.options = options23;
5482
5671
  NumericTextbox.className = NUMERICTEXTBOX_CLASSNAME;
5483
- NumericTextbox.defaultProps = defaultProps20;
5672
+ NumericTextbox.defaultProps = defaultProps22;
5484
5673
 
5485
5674
  // src/numerictextbox/templates/numerictextbox-normal.tsx
5486
- import { jsx as jsx42 } from "react/jsx-runtime";
5675
+ import { jsx as jsx51 } from "react/jsx-runtime";
5487
5676
 
5488
5677
  // src/dropdownlist/dropdownlist.spec.tsx
5489
- import { Fragment as Fragment20, jsx as jsx43, jsxs as jsxs16 } from "react/jsx-runtime";
5678
+ import { Fragment as Fragment20, jsx as jsx52, jsxs as jsxs17 } from "react/jsx-runtime";
5490
5679
  var DROPDOWNLIST_CLASSNAME = `k-dropdownlist`;
5491
- var states22 = [
5680
+ var states25 = [
5492
5681
  States.hover,
5493
5682
  States.focus,
5494
5683
  States.valid,
@@ -5498,12 +5687,12 @@ var states22 = [
5498
5687
  States.loading,
5499
5688
  States.readonly
5500
5689
  ];
5501
- var options21 = {
5690
+ var options24 = {
5502
5691
  size: [Size.small, Size.medium, Size.large],
5503
5692
  rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full],
5504
5693
  fillMode: [FillMode.solid, FillMode.flat, FillMode.outline]
5505
5694
  };
5506
- var defaultProps21 = {
5695
+ var defaultProps23 = {
5507
5696
  showValue: true,
5508
5697
  arrowIconName: "caret-alt-down",
5509
5698
  size: Size.medium,
@@ -5513,7 +5702,7 @@ var defaultProps21 = {
5513
5702
  var DropdownList = (props) => {
5514
5703
  const {
5515
5704
  valueIconName,
5516
- arrowIconName = defaultProps21.arrowIconName,
5705
+ arrowIconName = defaultProps23.arrowIconName,
5517
5706
  prefix,
5518
5707
  suffix,
5519
5708
  value,
@@ -5529,13 +5718,13 @@ var DropdownList = (props) => {
5529
5718
  loading,
5530
5719
  disabled,
5531
5720
  readonly,
5532
- showValue = defaultProps21.showValue,
5721
+ showValue = defaultProps23.showValue,
5533
5722
  popup,
5534
5723
  opened,
5535
5724
  ...other
5536
5725
  } = props;
5537
- return /* @__PURE__ */ jsxs16(Fragment20, { children: [
5538
- /* @__PURE__ */ jsxs16(
5726
+ return /* @__PURE__ */ jsxs17(Fragment20, { children: [
5727
+ /* @__PURE__ */ jsxs17(
5539
5728
  Picker,
5540
5729
  {
5541
5730
  ...other,
@@ -5558,8 +5747,8 @@ var DropdownList = (props) => {
5558
5747
  }
5559
5748
  ),
5560
5749
  children: [
5561
- /* @__PURE__ */ jsx43(InputPrefix, { children: prefix }),
5562
- /* @__PURE__ */ jsx43(
5750
+ /* @__PURE__ */ jsx52(InputPrefix, { children: prefix }),
5751
+ /* @__PURE__ */ jsx52(
5563
5752
  InputInnerSpan,
5564
5753
  {
5565
5754
  placeholder,
@@ -5568,7 +5757,7 @@ var DropdownList = (props) => {
5568
5757
  valueIconName
5569
5758
  }
5570
5759
  ),
5571
- /* @__PURE__ */ jsx43(
5760
+ /* @__PURE__ */ jsx52(
5572
5761
  InputValidationIcon,
5573
5762
  {
5574
5763
  valid,
@@ -5577,15 +5766,15 @@ var DropdownList = (props) => {
5577
5766
  disabled
5578
5767
  }
5579
5768
  ),
5580
- /* @__PURE__ */ jsx43(
5769
+ /* @__PURE__ */ jsx52(
5581
5770
  InputLoadingIcon,
5582
5771
  {
5583
5772
  loading,
5584
5773
  disabled
5585
5774
  }
5586
5775
  ),
5587
- /* @__PURE__ */ jsx43(InputSuffix, { children: suffix }),
5588
- /* @__PURE__ */ jsx43(
5776
+ /* @__PURE__ */ jsx52(InputSuffix, { children: suffix }),
5777
+ /* @__PURE__ */ jsx52(
5589
5778
  Button,
5590
5779
  {
5591
5780
  className: "k-input-button",
@@ -5598,35 +5787,35 @@ var DropdownList = (props) => {
5598
5787
  ]
5599
5788
  }
5600
5789
  ),
5601
- opened && popup && /* @__PURE__ */ jsx43(Popup, { className: "k-list-container k-dropdownlist-popup", children: popup })
5790
+ opened && popup && /* @__PURE__ */ jsx52(Popup, { className: "k-list-container k-dropdownlist-popup", children: popup })
5602
5791
  ] });
5603
5792
  };
5604
- DropdownList.states = states22;
5605
- DropdownList.options = options21;
5793
+ DropdownList.states = states25;
5794
+ DropdownList.options = options24;
5606
5795
  DropdownList.className = DROPDOWNLIST_CLASSNAME;
5607
- DropdownList.defaultProps = defaultProps21;
5796
+ DropdownList.defaultProps = defaultProps23;
5608
5797
 
5609
5798
  // src/dropdownlist/templates/dropdownlist-normal.tsx
5610
- import { jsx as jsx44 } from "react/jsx-runtime";
5799
+ import { jsx as jsx53 } from "react/jsx-runtime";
5611
5800
 
5612
5801
  // src/nodata/nodata.tsx
5613
- import { jsx as jsx45 } from "react/jsx-runtime";
5614
- var className10 = `k-nodata`;
5615
- var NoData = (props) => /* @__PURE__ */ jsx45("span", { className: classNames(className10, props.className), children: props.children });
5802
+ import { jsx as jsx54 } from "react/jsx-runtime";
5803
+ var className15 = `k-nodata`;
5804
+ var NoData = (props) => /* @__PURE__ */ jsx54("span", { className: classNames(className15, props.className), children: props.children });
5616
5805
 
5617
5806
  // src/list/list.spec.tsx
5618
- import { jsx as jsx46, jsxs as jsxs17 } from "react/jsx-runtime";
5807
+ import { jsx as jsx55, jsxs as jsxs18 } from "react/jsx-runtime";
5619
5808
  var LIST_CLASSNAME = `k-list`;
5620
- var states23 = [];
5621
- var options22 = {
5809
+ var states26 = [];
5810
+ var options25 = {
5622
5811
  size: [Size.small, Size.medium, Size.large]
5623
5812
  };
5624
- var defaultProps22 = {
5813
+ var defaultProps24 = {
5625
5814
  size: Size.medium
5626
5815
  };
5627
5816
  var List = (props) => {
5628
5817
  const {
5629
- size = defaultProps22.size,
5818
+ size = defaultProps24.size,
5630
5819
  virtualization,
5631
5820
  children,
5632
5821
  optionLabel,
@@ -5643,7 +5832,7 @@ var List = (props) => {
5643
5832
  listHeader = child.props.label;
5644
5833
  child.props.children.map((optChild, index2) => {
5645
5834
  listChildren.push(
5646
- /* @__PURE__ */ jsx46(
5835
+ /* @__PURE__ */ jsx55(
5647
5836
  ListItem,
5648
5837
  {
5649
5838
  ...optChild.props
@@ -5659,7 +5848,7 @@ var List = (props) => {
5659
5848
  groupLabel = child.props.label;
5660
5849
  }
5661
5850
  listChildren.push(
5662
- /* @__PURE__ */ jsx46(
5851
+ /* @__PURE__ */ jsx55(
5663
5852
  ListItem,
5664
5853
  {
5665
5854
  className: index2 === 0 ? "k-first" : "",
@@ -5671,16 +5860,16 @@ var List = (props) => {
5671
5860
  );
5672
5861
  });
5673
5862
  }
5674
- listGroup = /* @__PURE__ */ jsx46(ListGroup, { label: listHeader, virtualization, children: listChildren });
5863
+ listGroup = /* @__PURE__ */ jsx55(ListGroup, { label: listHeader, virtualization, children: listChildren });
5675
5864
  } else if (child.type === ListItem) {
5676
- listChildren.push(/* @__PURE__ */ jsx46(ListItem, { ...child.props }, `${child.type}-${index}`));
5677
- listContent = /* @__PURE__ */ jsx46(ListContent, { virtualization, children: listChildren });
5865
+ listChildren.push(/* @__PURE__ */ jsx55(ListItem, { ...child.props }, `${child.type}-${index}`));
5866
+ listContent = /* @__PURE__ */ jsx55(ListContent, { virtualization, children: listChildren });
5678
5867
  }
5679
5868
  });
5680
5869
  } else {
5681
- listContent = /* @__PURE__ */ jsx46(NoData, { children: "No data found." });
5870
+ listContent = /* @__PURE__ */ jsx55(NoData, { children: "No data found." });
5682
5871
  }
5683
- return /* @__PURE__ */ jsxs17(
5872
+ return /* @__PURE__ */ jsxs18(
5684
5873
  "div",
5685
5874
  {
5686
5875
  ...other,
@@ -5702,24 +5891,24 @@ var List = (props) => {
5702
5891
  }
5703
5892
  );
5704
5893
  };
5705
- List.states = states23;
5706
- List.options = options22;
5894
+ List.states = states26;
5895
+ List.options = options25;
5707
5896
  List.className = LIST_CLASSNAME;
5708
- List.defaultProps = defaultProps22;
5897
+ List.defaultProps = defaultProps24;
5709
5898
 
5710
5899
  // src/list/list-angular.spec.tsx
5711
- import { jsx as jsx47, jsxs as jsxs18 } from "react/jsx-runtime";
5900
+ import { jsx as jsx56, jsxs as jsxs19 } from "react/jsx-runtime";
5712
5901
  var LISTANGULAR_CLASSNAME = `k-list`;
5713
- var states24 = [];
5714
- var options23 = {
5902
+ var states27 = [];
5903
+ var options26 = {
5715
5904
  size: [Size.small, Size.medium, Size.large]
5716
5905
  };
5717
- var defaultProps23 = {
5906
+ var defaultProps25 = {
5718
5907
  size: Size.medium
5719
5908
  };
5720
5909
  var ListAngular = (props) => {
5721
5910
  const {
5722
- size = defaultProps23.size,
5911
+ size = defaultProps25.size,
5723
5912
  virtualization,
5724
5913
  children,
5725
5914
  ...other
@@ -5735,7 +5924,7 @@ var ListAngular = (props) => {
5735
5924
  listHeader = child.props.label;
5736
5925
  child.props.children.map((optChild, index2) => {
5737
5926
  listChildren.push(
5738
- /* @__PURE__ */ jsx47(
5927
+ /* @__PURE__ */ jsx56(
5739
5928
  ListItem,
5740
5929
  {
5741
5930
  ...optChild.props
@@ -5746,7 +5935,7 @@ var ListAngular = (props) => {
5746
5935
  });
5747
5936
  } else {
5748
5937
  listChildren.push(
5749
- /* @__PURE__ */ jsx47(
5938
+ /* @__PURE__ */ jsx56(
5750
5939
  ListGroupItem,
5751
5940
  {
5752
5941
  ...child.props,
@@ -5757,7 +5946,7 @@ var ListAngular = (props) => {
5757
5946
  );
5758
5947
  child.props.children.map((optChild, index2) => {
5759
5948
  listChildren.push(
5760
- /* @__PURE__ */ jsx47(
5949
+ /* @__PURE__ */ jsx56(
5761
5950
  ListItem,
5762
5951
  {
5763
5952
  ...optChild.props
@@ -5767,16 +5956,16 @@ var ListAngular = (props) => {
5767
5956
  );
5768
5957
  });
5769
5958
  }
5770
- listGroup = /* @__PURE__ */ jsx47(ListGroup, { label: listHeader, virtualization, children: listChildren });
5959
+ listGroup = /* @__PURE__ */ jsx56(ListGroup, { label: listHeader, virtualization, children: listChildren });
5771
5960
  } else if (child.type === ListItem) {
5772
- listChildren.push(/* @__PURE__ */ jsx47(ListItem, { ...child.props }, `${child.type}-${index}`));
5773
- listContent = /* @__PURE__ */ jsx47(ListContent, { virtualization, children: listChildren });
5961
+ listChildren.push(/* @__PURE__ */ jsx56(ListItem, { ...child.props }, `${child.type}-${index}`));
5962
+ listContent = /* @__PURE__ */ jsx56(ListContent, { virtualization, children: listChildren });
5774
5963
  }
5775
5964
  });
5776
5965
  } else {
5777
- listContent = /* @__PURE__ */ jsx47(NoData, { children: "No data found." });
5966
+ listContent = /* @__PURE__ */ jsx56(NoData, { children: "No data found." });
5778
5967
  }
5779
- return /* @__PURE__ */ jsxs18(
5968
+ return /* @__PURE__ */ jsxs19(
5780
5969
  "div",
5781
5970
  {
5782
5971
  ...other,
@@ -5797,15 +5986,15 @@ var ListAngular = (props) => {
5797
5986
  }
5798
5987
  );
5799
5988
  };
5800
- ListAngular.states = states24;
5801
- ListAngular.options = options23;
5989
+ ListAngular.states = states27;
5990
+ ListAngular.options = options26;
5802
5991
  ListAngular.className = LISTANGULAR_CLASSNAME;
5803
- ListAngular.defaultProps = defaultProps23;
5992
+ ListAngular.defaultProps = defaultProps25;
5804
5993
 
5805
5994
  // src/checkbox/checkbox.spec.tsx
5806
- import { jsx as jsx48 } from "react/jsx-runtime";
5995
+ import { jsx as jsx57 } from "react/jsx-runtime";
5807
5996
  var CHECKBOX_CLASSNAME = `k-checkbox`;
5808
- var states25 = [
5997
+ var states28 = [
5809
5998
  States.hover,
5810
5999
  States.focus,
5811
6000
  States.valid,
@@ -5815,11 +6004,11 @@ var states25 = [
5815
6004
  States.checked,
5816
6005
  States.indeterminate
5817
6006
  ];
5818
- var options24 = {
6007
+ var options27 = {
5819
6008
  size: [Size.small, Size.medium, Size.large],
5820
6009
  rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full]
5821
6010
  };
5822
- var defaultProps24 = {
6011
+ var defaultProps26 = {
5823
6012
  size: Size.medium,
5824
6013
  rounded: Roundness.medium
5825
6014
  };
@@ -5834,11 +6023,11 @@ var Checkbox = (props) => {
5834
6023
  invalid,
5835
6024
  valid,
5836
6025
  required,
5837
- size = defaultProps24.size,
5838
- rounded = defaultProps24.rounded,
6026
+ size = defaultProps26.size,
6027
+ rounded = defaultProps26.rounded,
5839
6028
  ...other
5840
6029
  } = props;
5841
- return /* @__PURE__ */ jsx48("span", { className: "k-checkbox-wrap", children: /* @__PURE__ */ jsx48(
6030
+ return /* @__PURE__ */ jsx57("span", { className: "k-checkbox-wrap", children: /* @__PURE__ */ jsx57(
5842
6031
  "input",
5843
6032
  {
5844
6033
  ...other,
@@ -5855,25 +6044,25 @@ var Checkbox = (props) => {
5855
6044
  }
5856
6045
  ) });
5857
6046
  };
5858
- Checkbox.states = states25;
5859
- Checkbox.options = options24;
6047
+ Checkbox.states = states28;
6048
+ Checkbox.options = options27;
5860
6049
  Checkbox.className = CHECKBOX_CLASSNAME;
5861
- Checkbox.defaultProps = defaultProps24;
6050
+ Checkbox.defaultProps = defaultProps26;
5862
6051
 
5863
6052
  // src/checkbox/checkbox-group.spec.tsx
5864
- import { jsx as jsx49 } from "react/jsx-runtime";
6053
+ import { jsx as jsx58 } from "react/jsx-runtime";
5865
6054
  var CHECKBOXGROUP_CLASSNAME = `k-checkbox-list`;
5866
- var states26 = [];
5867
- var options25 = {};
5868
- var defaultProps25 = {
6055
+ var states29 = [];
6056
+ var options28 = {};
6057
+ var defaultProps27 = {
5869
6058
  layout: "vertical"
5870
6059
  };
5871
6060
  var CheckboxGroup = (props) => {
5872
6061
  const {
5873
- layout = defaultProps25.layout,
6062
+ layout = defaultProps27.layout,
5874
6063
  ...other
5875
6064
  } = props;
5876
- return /* @__PURE__ */ jsx49(
6065
+ return /* @__PURE__ */ jsx58(
5877
6066
  "ul",
5878
6067
  {
5879
6068
  ...other,
@@ -5888,22 +6077,22 @@ var CheckboxGroup = (props) => {
5888
6077
  }
5889
6078
  );
5890
6079
  };
5891
- CheckboxGroup.states = states26;
5892
- CheckboxGroup.options = options25;
6080
+ CheckboxGroup.states = states29;
6081
+ CheckboxGroup.options = options28;
5893
6082
  CheckboxGroup.className = CHECKBOXGROUP_CLASSNAME;
5894
- CheckboxGroup.defaultProps = defaultProps25;
6083
+ CheckboxGroup.defaultProps = defaultProps27;
5895
6084
 
5896
6085
  // src/checkbox/checkbox-item.spec.tsx
5897
- import { jsx as jsx50 } from "react/jsx-runtime";
6086
+ import { jsx as jsx59 } from "react/jsx-runtime";
5898
6087
  var CHECKBOXITEM_CLASSNAME = `k-checkbox-list-item`;
5899
- var states27 = [];
5900
- var options26 = {};
5901
- var defaultProps26 = {};
6088
+ var states30 = [];
6089
+ var options29 = {};
6090
+ var defaultProps28 = {};
5902
6091
  var CheckboxItem = (props) => {
5903
6092
  const {
5904
6093
  ...other
5905
6094
  } = props;
5906
- return /* @__PURE__ */ jsx50(
6095
+ return /* @__PURE__ */ jsx59(
5907
6096
  "li",
5908
6097
  {
5909
6098
  ...other,
@@ -5915,37 +6104,37 @@ var CheckboxItem = (props) => {
5915
6104
  }
5916
6105
  );
5917
6106
  };
5918
- CheckboxItem.states = states27;
5919
- CheckboxItem.options = options26;
6107
+ CheckboxItem.states = states30;
6108
+ CheckboxItem.options = options29;
5920
6109
  CheckboxItem.className = CHECKBOXITEM_CLASSNAME;
5921
- CheckboxItem.defaultProps = defaultProps26;
6110
+ CheckboxItem.defaultProps = defaultProps28;
5922
6111
 
5923
6112
  // src/checkbox/templates/checkbox-with-label-after.tsx
5924
- import { Fragment as Fragment21, jsx as jsx51, jsxs as jsxs19 } from "react/jsx-runtime";
6113
+ import { Fragment as Fragment21, jsx as jsx60, jsxs as jsxs20 } from "react/jsx-runtime";
5925
6114
 
5926
6115
  // src/checkbox/templates/checkbox-with-label-before.tsx
5927
- import { Fragment as Fragment22, jsx as jsx52, jsxs as jsxs20 } from "react/jsx-runtime";
6116
+ import { Fragment as Fragment22, jsx as jsx61, jsxs as jsxs21 } from "react/jsx-runtime";
5928
6117
 
5929
6118
  // src/checkbox/templates/checkbox-group-horizontal.tsx
5930
- import { Fragment as Fragment23, jsx as jsx53, jsxs as jsxs21 } from "react/jsx-runtime";
6119
+ import { Fragment as Fragment23, jsx as jsx62, jsxs as jsxs22 } from "react/jsx-runtime";
5931
6120
 
5932
6121
  // src/checkbox/templates/checkbox-group-normal.tsx
5933
- import { Fragment as Fragment24, jsx as jsx54, jsxs as jsxs22 } from "react/jsx-runtime";
6122
+ import { Fragment as Fragment24, jsx as jsx63, jsxs as jsxs23 } from "react/jsx-runtime";
5934
6123
 
5935
6124
  // src/checkbox/templates/checkbox-normal.tsx
5936
- import { jsx as jsx55 } from "react/jsx-runtime";
6125
+ import { jsx as jsx64 } from "react/jsx-runtime";
5937
6126
 
5938
6127
  // src/list/list-item.spec.tsx
5939
- import { jsx as jsx56, jsxs as jsxs23 } from "react/jsx-runtime";
6128
+ import { jsx as jsx65, jsxs as jsxs24 } from "react/jsx-runtime";
5940
6129
  var LISTITEM_CLASSNAME = `k-list-item`;
5941
- var states28 = [
6130
+ var states31 = [
5942
6131
  States.hover,
5943
6132
  States.focus,
5944
6133
  States.selected,
5945
6134
  States.disabled
5946
6135
  ];
5947
- var options27 = {};
5948
- var defaultProps27 = {};
6136
+ var options30 = {};
6137
+ var defaultProps29 = {};
5949
6138
  var ListItem = (props) => {
5950
6139
  const {
5951
6140
  text,
@@ -5962,7 +6151,7 @@ var ListItem = (props) => {
5962
6151
  ...other
5963
6152
  } = props;
5964
6153
  const textOrChildren = text ? text : props.children;
5965
- return /* @__PURE__ */ jsxs23(
6154
+ return /* @__PURE__ */ jsxs24(
5966
6155
  "li",
5967
6156
  {
5968
6157
  ...other,
@@ -5977,66 +6166,66 @@ var ListItem = (props) => {
5977
6166
  })
5978
6167
  ),
5979
6168
  children: [
5980
- showCheckbox && /* @__PURE__ */ jsx56(Checkbox, { checked }),
5981
- showIcon && /* @__PURE__ */ jsx56(Icon, { icon: iconName }),
5982
- /* @__PURE__ */ jsx56("span", { className: "k-list-item-text", children: textOrChildren }),
5983
- groupLabel && groupLabel !== "" && /* @__PURE__ */ jsx56("div", { className: "k-list-item-group-label", children: groupLabel })
6169
+ showCheckbox && /* @__PURE__ */ jsx65(Checkbox, { checked }),
6170
+ showIcon && /* @__PURE__ */ jsx65(Icon, { icon: iconName }),
6171
+ /* @__PURE__ */ jsx65("span", { className: "k-list-item-text", children: textOrChildren }),
6172
+ groupLabel && groupLabel !== "" && /* @__PURE__ */ jsx65("div", { className: "k-list-item-group-label", children: groupLabel })
5984
6173
  ]
5985
6174
  }
5986
6175
  );
5987
6176
  };
5988
- ListItem.states = states28;
5989
- ListItem.options = options27;
6177
+ ListItem.states = states31;
6178
+ ListItem.options = options30;
5990
6179
  ListItem.className = LISTITEM_CLASSNAME;
5991
- ListItem.defaultProps = defaultProps27;
6180
+ ListItem.defaultProps = defaultProps29;
5992
6181
 
5993
6182
  // src/list/list-content.tsx
5994
- import { jsx as jsx57, jsxs as jsxs24 } from "react/jsx-runtime";
5995
- var className11 = `k-list-content`;
6183
+ import { jsx as jsx66, jsxs as jsxs25 } from "react/jsx-runtime";
6184
+ var className16 = `k-list-content`;
5996
6185
  var ListContent = (props) => {
5997
6186
  const {
5998
6187
  virtualization
5999
6188
  } = props;
6000
- return /* @__PURE__ */ jsxs24("div", { className: classNames(className11, props.className), children: [
6001
- /* @__PURE__ */ jsx57("ul", { className: classNames("k-list-ul"), children: props.children }),
6002
- virtualization && /* @__PURE__ */ jsx57("div", { className: "k-height-container", children: /* @__PURE__ */ jsx57("div", {}) })
6189
+ return /* @__PURE__ */ jsxs25("div", { className: classNames(className16, props.className), children: [
6190
+ /* @__PURE__ */ jsx66("ul", { className: classNames("k-list-ul"), children: props.children }),
6191
+ virtualization && /* @__PURE__ */ jsx66("div", { className: "k-height-container", children: /* @__PURE__ */ jsx66("div", {}) })
6003
6192
  ] });
6004
6193
  };
6005
6194
 
6006
6195
  // src/list/list-header.tsx
6007
- import { jsx as jsx58 } from "react/jsx-runtime";
6008
- var className12 = `k-list-group-sticky-header`;
6009
- var ListHeader = (props) => /* @__PURE__ */ jsx58("div", { className: classNames(className12, props.className), children: /* @__PURE__ */ jsx58("div", { className: "k-list-header-text", children: props.children }) });
6196
+ import { jsx as jsx67 } from "react/jsx-runtime";
6197
+ var className17 = `k-list-group-sticky-header`;
6198
+ var ListHeader = (props) => /* @__PURE__ */ jsx67("div", { className: classNames(className17, props.className), children: /* @__PURE__ */ jsx67("div", { className: "k-list-header-text", children: props.children }) });
6010
6199
 
6011
6200
  // src/list/list-group.tsx
6012
- import { Fragment as Fragment25, jsx as jsx59, jsxs as jsxs25 } from "react/jsx-runtime";
6201
+ import { Fragment as Fragment25, jsx as jsx68, jsxs as jsxs26 } from "react/jsx-runtime";
6013
6202
  var ListGroup = (props) => {
6014
6203
  const {
6015
6204
  virtualization,
6016
6205
  label
6017
6206
  } = props;
6018
- return /* @__PURE__ */ jsxs25(Fragment25, { children: [
6019
- label && /* @__PURE__ */ jsx59(ListHeader, { children: label }),
6020
- props.children && /* @__PURE__ */ jsx59(ListContent, { virtualization, children: props.children })
6207
+ return /* @__PURE__ */ jsxs26(Fragment25, { children: [
6208
+ label && /* @__PURE__ */ jsx68(ListHeader, { children: label }),
6209
+ props.children && /* @__PURE__ */ jsx68(ListContent, { virtualization, children: props.children })
6021
6210
  ] });
6022
6211
  };
6023
6212
 
6024
6213
  // src/list/list-group-item.tsx
6025
- import { jsx as jsx60 } from "react/jsx-runtime";
6026
- var className13 = `k-list-group-item`;
6027
- var ListGroupItem = (props) => /* @__PURE__ */ jsx60("li", { className: classNames(className13, props.className), children: /* @__PURE__ */ jsx60("span", { className: "k-list-item-text", children: props.children }) });
6214
+ import { jsx as jsx69 } from "react/jsx-runtime";
6215
+ var className18 = `k-list-group-item`;
6216
+ var ListGroupItem = (props) => /* @__PURE__ */ jsx69("li", { className: classNames(className18, props.className), children: /* @__PURE__ */ jsx69("span", { className: "k-list-item-text", children: props.children }) });
6028
6217
 
6029
6218
  // src/list/list-option-label.tsx
6030
- import { jsx as jsx61 } from "react/jsx-runtime";
6219
+ import { jsx as jsx70 } from "react/jsx-runtime";
6031
6220
  var LIST_OPTIONLABEL_CLASSNAME = `k-list-optionlabel`;
6032
- var states29 = [
6221
+ var states32 = [
6033
6222
  States.hover,
6034
6223
  States.focus,
6035
6224
  States.selected,
6036
6225
  States.disabled
6037
6226
  ];
6038
- var options28 = {};
6039
- var defaultProps28 = {};
6227
+ var options31 = {};
6228
+ var defaultProps30 = {};
6040
6229
  var ListOptionLabel = (props) => {
6041
6230
  const {
6042
6231
  text,
@@ -6046,7 +6235,7 @@ var ListOptionLabel = (props) => {
6046
6235
  disabled,
6047
6236
  ...other
6048
6237
  } = props;
6049
- return /* @__PURE__ */ jsx61(
6238
+ return /* @__PURE__ */ jsx70(
6050
6239
  "div",
6051
6240
  {
6052
6241
  ...other,
@@ -6063,39 +6252,39 @@ var ListOptionLabel = (props) => {
6063
6252
  }
6064
6253
  );
6065
6254
  };
6066
- ListOptionLabel.states = states29;
6067
- ListOptionLabel.options = options28;
6255
+ ListOptionLabel.states = states32;
6256
+ ListOptionLabel.options = options31;
6068
6257
  ListOptionLabel.className = LIST_OPTIONLABEL_CLASSNAME;
6069
- ListOptionLabel.defaultProps = defaultProps28;
6258
+ ListOptionLabel.defaultProps = defaultProps30;
6070
6259
 
6071
6260
  // src/list/templates/list-normal.tsx
6072
- import { jsx as jsx62 } from "react/jsx-runtime";
6261
+ import { jsx as jsx71 } from "react/jsx-runtime";
6073
6262
 
6074
6263
  // src/list/templates/list-virtualization.tsx
6075
- import { jsx as jsx63 } from "react/jsx-runtime";
6264
+ import { jsx as jsx72 } from "react/jsx-runtime";
6076
6265
 
6077
6266
  // src/list/templates/list-grouping.tsx
6078
- import { jsx as jsx64, jsxs as jsxs26 } from "react/jsx-runtime";
6267
+ import { jsx as jsx73, jsxs as jsxs27 } from "react/jsx-runtime";
6079
6268
 
6080
6269
  // src/list/templates/list-virualization-grouping.tsx
6081
- import { jsx as jsx65, jsxs as jsxs27 } from "react/jsx-runtime";
6270
+ import { jsx as jsx74, jsxs as jsxs28 } from "react/jsx-runtime";
6082
6271
 
6083
6272
  // src/list/templates/list-virtualization-angular.tsx
6084
- import { jsx as jsx66 } from "react/jsx-runtime";
6273
+ import { jsx as jsx75 } from "react/jsx-runtime";
6085
6274
 
6086
6275
  // src/list/templates/list-grouping-angular.tsx
6087
- import { jsx as jsx67, jsxs as jsxs28 } from "react/jsx-runtime";
6276
+ import { jsx as jsx76, jsxs as jsxs29 } from "react/jsx-runtime";
6088
6277
 
6089
6278
  // src/list/templates/list-virualization-grouping-angular.tsx
6090
- import { jsx as jsx68, jsxs as jsxs29 } from "react/jsx-runtime";
6279
+ import { jsx as jsx77, jsxs as jsxs30 } from "react/jsx-runtime";
6091
6280
 
6092
6281
  // src/dropdownlist/templates/dropdownlist-popup.tsx
6093
- import { jsx as jsx69, jsxs as jsxs30 } from "react/jsx-runtime";
6282
+ import { jsx as jsx78, jsxs as jsxs31 } from "react/jsx-runtime";
6094
6283
 
6095
6284
  // src/searchbox/searchbox.spec.tsx
6096
- import { jsx as jsx70, jsxs as jsxs31 } from "react/jsx-runtime";
6285
+ import { jsx as jsx79, jsxs as jsxs32 } from "react/jsx-runtime";
6097
6286
  var SEARCHBOX_CLASSNAME = `k-searchbox`;
6098
- var states30 = [
6287
+ var states33 = [
6099
6288
  States.hover,
6100
6289
  States.focus,
6101
6290
  States.valid,
@@ -6104,12 +6293,12 @@ var states30 = [
6104
6293
  States.disabled,
6105
6294
  States.loading
6106
6295
  ];
6107
- var options29 = {
6296
+ var options32 = {
6108
6297
  size: [Size.small, Size.medium, Size.large],
6109
6298
  rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full],
6110
6299
  fillMode: [FillMode.solid, FillMode.flat, FillMode.outline]
6111
6300
  };
6112
- var defaultProps29 = {
6301
+ var defaultProps31 = {
6113
6302
  showIcon: true,
6114
6303
  icon: "search",
6115
6304
  size: Input.defaultProps.size,
@@ -6130,11 +6319,11 @@ var Searchbox = (props) => {
6130
6319
  required,
6131
6320
  loading,
6132
6321
  disabled,
6133
- showIcon = defaultProps29.showIcon,
6134
- icon = defaultProps29.icon,
6322
+ showIcon = defaultProps31.showIcon,
6323
+ icon = defaultProps31.icon,
6135
6324
  ...other
6136
6325
  } = props;
6137
- return /* @__PURE__ */ jsxs31(
6326
+ return /* @__PURE__ */ jsxs32(
6138
6327
  Input,
6139
6328
  {
6140
6329
  ...other,
@@ -6150,48 +6339,48 @@ var Searchbox = (props) => {
6150
6339
  disabled,
6151
6340
  className: classNames(props.className, SEARCHBOX_CLASSNAME),
6152
6341
  children: [
6153
- showIcon && /* @__PURE__ */ jsx70(Icon, { className: "k-input-icon", icon }),
6154
- /* @__PURE__ */ jsx70(InputInnerInput, { placeholder, value }),
6155
- /* @__PURE__ */ jsx70(InputLoadingIcon, { ...props }),
6156
- /* @__PURE__ */ jsx70(InputValidationIcon, { ...props }),
6157
- /* @__PURE__ */ jsx70(InputClearValue, { ...props })
6342
+ showIcon && /* @__PURE__ */ jsx79(Icon, { className: "k-input-icon", icon }),
6343
+ /* @__PURE__ */ jsx79(InputInnerInput, { placeholder, value }),
6344
+ /* @__PURE__ */ jsx79(InputLoadingIcon, { ...props }),
6345
+ /* @__PURE__ */ jsx79(InputValidationIcon, { ...props }),
6346
+ /* @__PURE__ */ jsx79(InputClearValue, { ...props })
6158
6347
  ]
6159
6348
  }
6160
6349
  );
6161
6350
  };
6162
- Searchbox.states = states30;
6163
- Searchbox.options = options29;
6351
+ Searchbox.states = states33;
6352
+ Searchbox.options = options32;
6164
6353
  Searchbox.className = SEARCHBOX_CLASSNAME;
6165
- Searchbox.defaultProps = defaultProps29;
6354
+ Searchbox.defaultProps = defaultProps31;
6166
6355
 
6167
6356
  // src/searchbox/templates/searchbox-normal.tsx
6168
- import { jsx as jsx71 } from "react/jsx-runtime";
6357
+ import { jsx as jsx80 } from "react/jsx-runtime";
6169
6358
 
6170
6359
  // src/dropdownlist/templates/dropdownlist-filtering.tsx
6171
- import { Fragment as Fragment26, jsx as jsx72, jsxs as jsxs32 } from "react/jsx-runtime";
6360
+ import { Fragment as Fragment26, jsx as jsx81, jsxs as jsxs33 } from "react/jsx-runtime";
6172
6361
 
6173
6362
  // src/dropdownlist/templates/dropdownlist-grouping.tsx
6174
- import { jsx as jsx73, jsxs as jsxs33 } from "react/jsx-runtime";
6363
+ import { jsx as jsx82, jsxs as jsxs34 } from "react/jsx-runtime";
6175
6364
 
6176
6365
  // src/dropdownlist/templates/dropdownlist-grouping-modern.tsx
6177
- import { jsx as jsx74, jsxs as jsxs34 } from "react/jsx-runtime";
6366
+ import { jsx as jsx83, jsxs as jsxs35 } from "react/jsx-runtime";
6178
6367
 
6179
6368
  // src/dropdownlist/templates/dropdownlist-grouping-filtering.tsx
6180
- import { Fragment as Fragment27, jsx as jsx75, jsxs as jsxs35 } from "react/jsx-runtime";
6369
+ import { Fragment as Fragment27, jsx as jsx84, jsxs as jsxs36 } from "react/jsx-runtime";
6181
6370
 
6182
6371
  // src/dropdownlist/templates/dropdownlist-grouping-filtering-modern.tsx
6183
- import { Fragment as Fragment28, jsx as jsx76, jsxs as jsxs36 } from "react/jsx-runtime";
6372
+ import { Fragment as Fragment28, jsx as jsx85, jsxs as jsxs37 } from "react/jsx-runtime";
6184
6373
 
6185
6374
  // src/numerictextbox/templates/numerictextbox-prefix.tsx
6186
- import { Fragment as Fragment29, jsx as jsx77 } from "react/jsx-runtime";
6375
+ import { Fragment as Fragment29, jsx as jsx86 } from "react/jsx-runtime";
6187
6376
 
6188
6377
  // src/numerictextbox/templates/numerictextbox-suffix.tsx
6189
- import { Fragment as Fragment30, jsx as jsx78 } from "react/jsx-runtime";
6378
+ import { Fragment as Fragment30, jsx as jsx87 } from "react/jsx-runtime";
6190
6379
 
6191
6380
  // src/textbox/textbox.spec.tsx
6192
- import { Fragment as Fragment31, jsx as jsx79, jsxs as jsxs37 } from "react/jsx-runtime";
6381
+ import { Fragment as Fragment31, jsx as jsx88, jsxs as jsxs38 } from "react/jsx-runtime";
6193
6382
  var TEXTBOX_CLASSNAME = `k-textbox`;
6194
- var states31 = [
6383
+ var states34 = [
6195
6384
  States.hover,
6196
6385
  States.focus,
6197
6386
  States.valid,
@@ -6201,12 +6390,12 @@ var states31 = [
6201
6390
  States.loading,
6202
6391
  States.readonly
6203
6392
  ];
6204
- var options30 = {
6393
+ var options33 = {
6205
6394
  size: [Size.small, Size.medium, Size.large],
6206
6395
  rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full],
6207
6396
  fillMode: [FillMode.solid, FillMode.flat, FillMode.outline]
6208
6397
  };
6209
- var defaultProps30 = {
6398
+ var defaultProps32 = {
6210
6399
  showClearButton: true,
6211
6400
  size: Input.defaultProps.size,
6212
6401
  rounded: Input.defaultProps.rounded,
@@ -6217,7 +6406,7 @@ var Textbox = (props) => {
6217
6406
  const {
6218
6407
  prefix,
6219
6408
  suffix,
6220
- separators = defaultProps30.separators,
6409
+ separators = defaultProps32.separators,
6221
6410
  value,
6222
6411
  placeholder,
6223
6412
  size,
@@ -6231,10 +6420,10 @@ var Textbox = (props) => {
6231
6420
  loading,
6232
6421
  disabled,
6233
6422
  readonly,
6234
- showClearButton = defaultProps30.showClearButton,
6423
+ showClearButton = defaultProps32.showClearButton,
6235
6424
  ...other
6236
6425
  } = props;
6237
- return /* @__PURE__ */ jsxs37(
6426
+ return /* @__PURE__ */ jsxs38(
6238
6427
  Input,
6239
6428
  {
6240
6429
  ...other,
@@ -6251,12 +6440,12 @@ var Textbox = (props) => {
6251
6440
  readonly,
6252
6441
  className: classNames(props.className, TEXTBOX_CLASSNAME),
6253
6442
  children: [
6254
- prefix && /* @__PURE__ */ jsxs37(Fragment31, { children: [
6255
- /* @__PURE__ */ jsx79(InputPrefix, { children: prefix }),
6256
- separators && /* @__PURE__ */ jsx79(InputSeparator, {})
6443
+ prefix && /* @__PURE__ */ jsxs38(Fragment31, { children: [
6444
+ /* @__PURE__ */ jsx88(InputPrefix, { children: prefix }),
6445
+ separators && /* @__PURE__ */ jsx88(InputSeparator, {})
6257
6446
  ] }),
6258
- /* @__PURE__ */ jsx79(InputInnerInput, { placeholder, value }),
6259
- /* @__PURE__ */ jsx79(
6447
+ /* @__PURE__ */ jsx88(InputInnerInput, { placeholder, value }),
6448
+ /* @__PURE__ */ jsx88(
6260
6449
  InputValidationIcon,
6261
6450
  {
6262
6451
  valid,
@@ -6265,14 +6454,14 @@ var Textbox = (props) => {
6265
6454
  disabled
6266
6455
  }
6267
6456
  ),
6268
- /* @__PURE__ */ jsx79(
6457
+ /* @__PURE__ */ jsx88(
6269
6458
  InputLoadingIcon,
6270
6459
  {
6271
6460
  loading,
6272
6461
  disabled
6273
6462
  }
6274
6463
  ),
6275
- showClearButton && /* @__PURE__ */ jsx79(
6464
+ showClearButton && /* @__PURE__ */ jsx88(
6276
6465
  InputClearValue,
6277
6466
  {
6278
6467
  loading,
@@ -6281,162 +6470,162 @@ var Textbox = (props) => {
6281
6470
  value
6282
6471
  }
6283
6472
  ),
6284
- suffix && /* @__PURE__ */ jsxs37(Fragment31, { children: [
6285
- separators && /* @__PURE__ */ jsx79(InputSeparator, {}),
6286
- /* @__PURE__ */ jsx79(InputSuffix, { children: suffix })
6473
+ suffix && /* @__PURE__ */ jsxs38(Fragment31, { children: [
6474
+ separators && /* @__PURE__ */ jsx88(InputSeparator, {}),
6475
+ /* @__PURE__ */ jsx88(InputSuffix, { children: suffix })
6287
6476
  ] })
6288
6477
  ]
6289
6478
  }
6290
6479
  );
6291
6480
  };
6292
- Textbox.states = states31;
6293
- Textbox.options = options30;
6481
+ Textbox.states = states34;
6482
+ Textbox.options = options33;
6294
6483
  Textbox.className = TEXTBOX_CLASSNAME;
6295
- Textbox.defaultProps = defaultProps30;
6484
+ Textbox.defaultProps = defaultProps32;
6296
6485
 
6297
6486
  // src/textbox/templates/textbox-normal.tsx
6298
- import { jsx as jsx80 } from "react/jsx-runtime";
6487
+ import { jsx as jsx89 } from "react/jsx-runtime";
6299
6488
 
6300
6489
  // src/textbox/templates/textbox-prefix.tsx
6301
- import { Fragment as Fragment32, jsx as jsx81 } from "react/jsx-runtime";
6490
+ import { Fragment as Fragment32, jsx as jsx90 } from "react/jsx-runtime";
6302
6491
 
6303
6492
  // src/textbox/templates/textbox-suffix.tsx
6304
- import { Fragment as Fragment33, jsx as jsx82 } from "react/jsx-runtime";
6493
+ import { Fragment as Fragment33, jsx as jsx91 } from "react/jsx-runtime";
6305
6494
 
6306
6495
  // src/colorgradient/color-input.tsx
6307
- import { Fragment as Fragment34, jsx as jsx83, jsxs as jsxs38 } from "react/jsx-runtime";
6496
+ import { Fragment as Fragment34, jsx as jsx92, jsxs as jsxs39 } from "react/jsx-runtime";
6308
6497
  var COLOR_INPUT_CLASSNAME = "k-colorgradient-inputs";
6309
- var states32 = [];
6310
- var options31 = {};
6311
- var defaultProps31 = {
6498
+ var states35 = [];
6499
+ var options34 = {};
6500
+ var defaultProps33 = {
6312
6501
  mode: "rgba"
6313
6502
  };
6314
6503
  var ColorInput = (props) => {
6315
6504
  const {
6316
- mode = defaultProps31.mode
6505
+ mode = defaultProps33.mode
6317
6506
  } = props;
6318
- return /* @__PURE__ */ jsxs38("div", { className: classNames(COLOR_INPUT_CLASSNAME, "k-hstack"), children: [
6319
- /* @__PURE__ */ jsx83("div", { className: "k-vstack", children: /* @__PURE__ */ jsx83(Button, { fillMode: "flat", icon: "caret-alt-expand", className: "k-colorgradient-toggle-mode" }) }),
6320
- mode === "rgba" && /* @__PURE__ */ jsxs38(Fragment34, { children: [
6321
- /* @__PURE__ */ jsxs38("div", { className: "k-vstack", children: [
6322
- /* @__PURE__ */ jsx83(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6323
- /* @__PURE__ */ jsx83("label", { className: "k-colorgradient-input-label", children: "R" })
6507
+ return /* @__PURE__ */ jsxs39("div", { className: classNames(COLOR_INPUT_CLASSNAME, "k-hstack"), children: [
6508
+ /* @__PURE__ */ jsx92("div", { className: "k-vstack", children: /* @__PURE__ */ jsx92(Button, { fillMode: "flat", icon: "caret-alt-expand", className: "k-colorgradient-toggle-mode" }) }),
6509
+ mode === "rgba" && /* @__PURE__ */ jsxs39(Fragment34, { children: [
6510
+ /* @__PURE__ */ jsxs39("div", { className: "k-vstack", children: [
6511
+ /* @__PURE__ */ jsx92(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6512
+ /* @__PURE__ */ jsx92("label", { className: "k-colorgradient-input-label", children: "R" })
6324
6513
  ] }),
6325
- /* @__PURE__ */ jsxs38("div", { className: "k-vstack", children: [
6326
- /* @__PURE__ */ jsx83(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6327
- /* @__PURE__ */ jsx83("label", { className: "k-colorgradient-input-label", children: "G" })
6514
+ /* @__PURE__ */ jsxs39("div", { className: "k-vstack", children: [
6515
+ /* @__PURE__ */ jsx92(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6516
+ /* @__PURE__ */ jsx92("label", { className: "k-colorgradient-input-label", children: "G" })
6328
6517
  ] }),
6329
- /* @__PURE__ */ jsxs38("div", { className: "k-vstack", children: [
6330
- /* @__PURE__ */ jsx83(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6331
- /* @__PURE__ */ jsx83("label", { className: "k-colorgradient-input-label", children: "B" })
6518
+ /* @__PURE__ */ jsxs39("div", { className: "k-vstack", children: [
6519
+ /* @__PURE__ */ jsx92(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6520
+ /* @__PURE__ */ jsx92("label", { className: "k-colorgradient-input-label", children: "B" })
6332
6521
  ] }),
6333
- /* @__PURE__ */ jsxs38("div", { className: "k-vstack", children: [
6334
- /* @__PURE__ */ jsx83(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "1.00" }),
6335
- /* @__PURE__ */ jsx83("label", { className: "k-colorgradient-input-label", children: "A" })
6522
+ /* @__PURE__ */ jsxs39("div", { className: "k-vstack", children: [
6523
+ /* @__PURE__ */ jsx92(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "1.00" }),
6524
+ /* @__PURE__ */ jsx92("label", { className: "k-colorgradient-input-label", children: "A" })
6336
6525
  ] })
6337
6526
  ] }),
6338
- mode === "rgb" && /* @__PURE__ */ jsxs38(Fragment34, { children: [
6339
- /* @__PURE__ */ jsxs38("div", { className: "k-vstack", children: [
6340
- /* @__PURE__ */ jsx83(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6341
- /* @__PURE__ */ jsx83("label", { className: "k-colorgradient-input-label", children: "R" })
6527
+ mode === "rgb" && /* @__PURE__ */ jsxs39(Fragment34, { children: [
6528
+ /* @__PURE__ */ jsxs39("div", { className: "k-vstack", children: [
6529
+ /* @__PURE__ */ jsx92(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6530
+ /* @__PURE__ */ jsx92("label", { className: "k-colorgradient-input-label", children: "R" })
6342
6531
  ] }),
6343
- /* @__PURE__ */ jsxs38("div", { className: "k-vstack", children: [
6344
- /* @__PURE__ */ jsx83(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6345
- /* @__PURE__ */ jsx83("label", { className: "k-colorgradient-input-label", children: "G" })
6532
+ /* @__PURE__ */ jsxs39("div", { className: "k-vstack", children: [
6533
+ /* @__PURE__ */ jsx92(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6534
+ /* @__PURE__ */ jsx92("label", { className: "k-colorgradient-input-label", children: "G" })
6346
6535
  ] }),
6347
- /* @__PURE__ */ jsxs38("div", { className: "k-vstack", children: [
6348
- /* @__PURE__ */ jsx83(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6349
- /* @__PURE__ */ jsx83("label", { className: "k-colorgradient-input-label", children: "B" })
6536
+ /* @__PURE__ */ jsxs39("div", { className: "k-vstack", children: [
6537
+ /* @__PURE__ */ jsx92(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6538
+ /* @__PURE__ */ jsx92("label", { className: "k-colorgradient-input-label", children: "B" })
6350
6539
  ] })
6351
6540
  ] }),
6352
- mode === "hsva" && /* @__PURE__ */ jsxs38(Fragment34, { children: [
6353
- /* @__PURE__ */ jsxs38("div", { className: "k-vstack", children: [
6354
- /* @__PURE__ */ jsx83(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6355
- /* @__PURE__ */ jsx83("label", { className: "k-colorgradient-input-label", children: "H" })
6541
+ mode === "hsva" && /* @__PURE__ */ jsxs39(Fragment34, { children: [
6542
+ /* @__PURE__ */ jsxs39("div", { className: "k-vstack", children: [
6543
+ /* @__PURE__ */ jsx92(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6544
+ /* @__PURE__ */ jsx92("label", { className: "k-colorgradient-input-label", children: "H" })
6356
6545
  ] }),
6357
- /* @__PURE__ */ jsxs38("div", { className: "k-vstack", children: [
6358
- /* @__PURE__ */ jsx83(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6359
- /* @__PURE__ */ jsx83("label", { className: "k-colorgradient-input-label", children: "S" })
6546
+ /* @__PURE__ */ jsxs39("div", { className: "k-vstack", children: [
6547
+ /* @__PURE__ */ jsx92(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6548
+ /* @__PURE__ */ jsx92("label", { className: "k-colorgradient-input-label", children: "S" })
6360
6549
  ] }),
6361
- /* @__PURE__ */ jsxs38("div", { className: "k-vstack", children: [
6362
- /* @__PURE__ */ jsx83(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6363
- /* @__PURE__ */ jsx83("label", { className: "k-colorgradient-input-label", children: "V" })
6550
+ /* @__PURE__ */ jsxs39("div", { className: "k-vstack", children: [
6551
+ /* @__PURE__ */ jsx92(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6552
+ /* @__PURE__ */ jsx92("label", { className: "k-colorgradient-input-label", children: "V" })
6364
6553
  ] }),
6365
- /* @__PURE__ */ jsxs38("div", { className: "k-vstack", children: [
6366
- /* @__PURE__ */ jsx83(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "1.00" }),
6367
- /* @__PURE__ */ jsx83("label", { className: "k-colorgradient-input-label", children: "A" })
6554
+ /* @__PURE__ */ jsxs39("div", { className: "k-vstack", children: [
6555
+ /* @__PURE__ */ jsx92(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "1.00" }),
6556
+ /* @__PURE__ */ jsx92("label", { className: "k-colorgradient-input-label", children: "A" })
6368
6557
  ] })
6369
6558
  ] }),
6370
- mode === "hsv" && /* @__PURE__ */ jsxs38(Fragment34, { children: [
6371
- /* @__PURE__ */ jsxs38("div", { className: "k-vstack", children: [
6372
- /* @__PURE__ */ jsx83(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6373
- /* @__PURE__ */ jsx83("label", { className: "k-colorgradient-input-label", children: "H" })
6559
+ mode === "hsv" && /* @__PURE__ */ jsxs39(Fragment34, { children: [
6560
+ /* @__PURE__ */ jsxs39("div", { className: "k-vstack", children: [
6561
+ /* @__PURE__ */ jsx92(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6562
+ /* @__PURE__ */ jsx92("label", { className: "k-colorgradient-input-label", children: "H" })
6374
6563
  ] }),
6375
- /* @__PURE__ */ jsxs38("div", { className: "k-vstack", children: [
6376
- /* @__PURE__ */ jsx83(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6377
- /* @__PURE__ */ jsx83("label", { className: "k-colorgradient-input-label", children: "S" })
6564
+ /* @__PURE__ */ jsxs39("div", { className: "k-vstack", children: [
6565
+ /* @__PURE__ */ jsx92(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6566
+ /* @__PURE__ */ jsx92("label", { className: "k-colorgradient-input-label", children: "S" })
6378
6567
  ] }),
6379
- /* @__PURE__ */ jsxs38("div", { className: "k-vstack", children: [
6380
- /* @__PURE__ */ jsx83(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6381
- /* @__PURE__ */ jsx83("label", { className: "k-colorgradient-input-label", children: "V" })
6568
+ /* @__PURE__ */ jsxs39("div", { className: "k-vstack", children: [
6569
+ /* @__PURE__ */ jsx92(NumericTextbox, { showSpinButton: false, showClearButton: false, value: "132" }),
6570
+ /* @__PURE__ */ jsx92("label", { className: "k-colorgradient-input-label", children: "V" })
6382
6571
  ] })
6383
6572
  ] }),
6384
- mode === "hex" && /* @__PURE__ */ jsx83(Fragment34, { children: /* @__PURE__ */ jsxs38("div", { className: "k-vstack k-flex-1", children: [
6385
- /* @__PURE__ */ jsx83(Textbox, { showClearButton: false, value: "#b88484AA", className: "k-hex-value" }),
6386
- /* @__PURE__ */ jsx83("label", { className: "k-colorgradient-input-label", children: "HEX" })
6573
+ mode === "hex" && /* @__PURE__ */ jsx92(Fragment34, { children: /* @__PURE__ */ jsxs39("div", { className: "k-vstack k-flex-1", children: [
6574
+ /* @__PURE__ */ jsx92(Textbox, { showClearButton: false, value: "#b88484AA", className: "k-hex-value" }),
6575
+ /* @__PURE__ */ jsx92("label", { className: "k-colorgradient-input-label", children: "HEX" })
6387
6576
  ] }) })
6388
6577
  ] });
6389
6578
  };
6390
- ColorInput.states = states32;
6391
- ColorInput.options = options31;
6579
+ ColorInput.states = states35;
6580
+ ColorInput.options = options34;
6392
6581
  ColorInput.className = COLOR_INPUT_CLASSNAME;
6393
- ColorInput.defaultProps = defaultProps31;
6582
+ ColorInput.defaultProps = defaultProps33;
6394
6583
 
6395
6584
  // src/colorgradient/color-contrast.tsx
6396
- import { jsx as jsx84, jsxs as jsxs39 } from "react/jsx-runtime";
6585
+ import { jsx as jsx93, jsxs as jsxs40 } from "react/jsx-runtime";
6397
6586
  var COLOR_CONTRAST_CLASSNAME = "k-colorgradient-color-contrast";
6398
- var states33 = [];
6399
- var options32 = {};
6400
- var defaultProps32 = {};
6401
- var ColorContrast = () => /* @__PURE__ */ jsxs39("div", { className: classNames(COLOR_CONTRAST_CLASSNAME, "k-vbox"), children: [
6402
- /* @__PURE__ */ jsxs39("div", { className: "k-contrast-ratio", children: [
6403
- /* @__PURE__ */ jsx84("span", { className: "k-contrast-ratio-text", children: "Contrast ratio: 7.1" }),
6404
- /* @__PURE__ */ jsxs39("span", { className: "k-contrast-validation !k-text-success", children: [
6405
- /* @__PURE__ */ jsx84(Icon, { icon: "check" }),
6406
- /* @__PURE__ */ jsx84(Icon, { icon: "check" })
6587
+ var states36 = [];
6588
+ var options35 = {};
6589
+ var defaultProps34 = {};
6590
+ var ColorContrast = () => /* @__PURE__ */ jsxs40("div", { className: classNames(COLOR_CONTRAST_CLASSNAME, "k-vbox"), children: [
6591
+ /* @__PURE__ */ jsxs40("div", { className: "k-contrast-ratio", children: [
6592
+ /* @__PURE__ */ jsx93("span", { className: "k-contrast-ratio-text", children: "Contrast ratio: 7.1" }),
6593
+ /* @__PURE__ */ jsxs40("span", { className: "k-contrast-validation !k-text-success", children: [
6594
+ /* @__PURE__ */ jsx93(Icon, { icon: "check" }),
6595
+ /* @__PURE__ */ jsx93(Icon, { icon: "check" })
6407
6596
  ] })
6408
6597
  ] }),
6409
- /* @__PURE__ */ jsxs39("div", { children: [
6410
- /* @__PURE__ */ jsx84("span", { children: "AA: 4.5" }),
6411
- /* @__PURE__ */ jsxs39("span", { className: "k-contrast-validation !k-text-success", children: [
6598
+ /* @__PURE__ */ jsxs40("div", { children: [
6599
+ /* @__PURE__ */ jsx93("span", { children: "AA: 4.5" }),
6600
+ /* @__PURE__ */ jsxs40("span", { className: "k-contrast-validation !k-text-success", children: [
6412
6601
  "Pass",
6413
- /* @__PURE__ */ jsx84(Icon, { icon: "check" })
6602
+ /* @__PURE__ */ jsx93(Icon, { icon: "check" })
6414
6603
  ] })
6415
6604
  ] }),
6416
- /* @__PURE__ */ jsxs39("div", { children: [
6417
- /* @__PURE__ */ jsx84("span", { children: "AAA: 7.0" }),
6418
- /* @__PURE__ */ jsxs39("span", { className: "k-contrast-validation !k-text-error", children: [
6605
+ /* @__PURE__ */ jsxs40("div", { children: [
6606
+ /* @__PURE__ */ jsx93("span", { children: "AAA: 7.0" }),
6607
+ /* @__PURE__ */ jsxs40("span", { className: "k-contrast-validation !k-text-error", children: [
6419
6608
  "Fail",
6420
- /* @__PURE__ */ jsx84(Icon, { icon: "x" })
6609
+ /* @__PURE__ */ jsx93(Icon, { icon: "x" })
6421
6610
  ] })
6422
6611
  ] })
6423
6612
  ] });
6424
- ColorContrast.states = states33;
6425
- ColorContrast.options = options32;
6613
+ ColorContrast.states = states36;
6614
+ ColorContrast.options = options35;
6426
6615
  ColorContrast.className = COLOR_CONTRAST_CLASSNAME;
6427
- ColorContrast.defaultProps = defaultProps32;
6616
+ ColorContrast.defaultProps = defaultProps34;
6428
6617
 
6429
6618
  // src/colorgradient/color-gradient.spec.tsx
6430
- import { jsx as jsx85, jsxs as jsxs40 } from "react/jsx-runtime";
6619
+ import { jsx as jsx94, jsxs as jsxs41 } from "react/jsx-runtime";
6431
6620
  var COLOR_GRADIENT_CLASSNAME = "k-colorgradient";
6432
- var states34 = [
6621
+ var states37 = [
6433
6622
  States.hover,
6434
6623
  States.focus,
6435
6624
  States.readonly,
6436
6625
  States.disabled
6437
6626
  ];
6438
- var options33 = {};
6439
- var defaultProps33 = {
6627
+ var options36 = {};
6628
+ var defaultProps35 = {
6440
6629
  mode: "rgba",
6441
6630
  readonly: false,
6442
6631
  disabled: false,
@@ -6447,20 +6636,20 @@ var defaultProps33 = {
6447
6636
  };
6448
6637
  var ColorGradient = (props) => {
6449
6638
  const {
6450
- mode = defaultProps33.mode,
6451
- readonly = defaultProps33.readonly,
6452
- disabled = defaultProps33.disabled,
6639
+ mode = defaultProps35.mode,
6640
+ readonly = defaultProps35.readonly,
6641
+ disabled = defaultProps35.disabled,
6453
6642
  dir,
6454
- contrast = defaultProps33.contrast,
6643
+ contrast = defaultProps35.contrast,
6455
6644
  hover,
6456
6645
  focus,
6457
6646
  hoverHandle,
6458
6647
  focusHandle,
6459
- gradientStyle = defaultProps33.gradientStyle,
6460
- dragHandleStyle = defaultProps33.dragHandleStyle,
6461
- alphaStyle = defaultProps33.alphaStyle
6648
+ gradientStyle = defaultProps35.gradientStyle,
6649
+ dragHandleStyle = defaultProps35.dragHandleStyle,
6650
+ alphaStyle = defaultProps35.alphaStyle
6462
6651
  } = props;
6463
- return /* @__PURE__ */ jsxs40("div", { className: classNames(
6652
+ return /* @__PURE__ */ jsxs41("div", { className: classNames(
6464
6653
  props.className,
6465
6654
  COLOR_GRADIENT_CLASSNAME,
6466
6655
  stateClassNames(COLOR_GRADIENT_CLASSNAME, {
@@ -6470,8 +6659,8 @@ var ColorGradient = (props) => {
6470
6659
  disabled
6471
6660
  })
6472
6661
  ), dir, children: [
6473
- /* @__PURE__ */ jsxs40("div", { className: "k-colorgradient-canvas k-hstack", children: [
6474
- /* @__PURE__ */ jsx85("div", { className: "k-hsv-rectangle", style: gradientStyle, children: /* @__PURE__ */ jsx85("div", { className: "k-hsv-gradient", children: /* @__PURE__ */ jsx85("div", { className: classNames(
6662
+ /* @__PURE__ */ jsxs41("div", { className: "k-colorgradient-canvas k-hstack", children: [
6663
+ /* @__PURE__ */ jsx94("div", { className: "k-hsv-rectangle", style: gradientStyle, children: /* @__PURE__ */ jsx94("div", { className: "k-hsv-gradient", children: /* @__PURE__ */ jsx94("div", { className: classNames(
6475
6664
  "k-hsv-draghandle",
6476
6665
  "k-draghandle",
6477
6666
  {
@@ -6479,39 +6668,39 @@ var ColorGradient = (props) => {
6479
6668
  "k-focus": focusHandle
6480
6669
  }
6481
6670
  ), style: dragHandleStyle }) }) }),
6482
- /* @__PURE__ */ jsxs40("div", { className: "k-hsv-controls k-hstack", children: [
6483
- /* @__PURE__ */ jsx85(SliderGradientVertical, { className: "k-hue-slider", hover: hoverHandle, focus: focusHandle }),
6484
- mode !== "rgb" && mode !== "hsv" && /* @__PURE__ */ jsx85(SliderGradientVertical, { className: "k-alpha-slider", hover: hoverHandle, focus: focusHandle, trackStyle: alphaStyle })
6671
+ /* @__PURE__ */ jsxs41("div", { className: "k-hsv-controls k-hstack", children: [
6672
+ /* @__PURE__ */ jsx94(SliderGradientVertical, { className: "k-hue-slider", hover: hoverHandle, focus: focusHandle }),
6673
+ mode !== "rgb" && mode !== "hsv" && /* @__PURE__ */ jsx94(SliderGradientVertical, { className: "k-alpha-slider", hover: hoverHandle, focus: focusHandle, trackStyle: alphaStyle })
6485
6674
  ] })
6486
6675
  ] }),
6487
- /* @__PURE__ */ jsx85(ColorInput, { mode: props.mode }),
6488
- contrast && /* @__PURE__ */ jsx85(ColorContrast, {})
6676
+ /* @__PURE__ */ jsx94(ColorInput, { mode: props.mode }),
6677
+ contrast && /* @__PURE__ */ jsx94(ColorContrast, {})
6489
6678
  ] });
6490
6679
  };
6491
- ColorGradient.states = states34;
6492
- ColorGradient.options = options33;
6680
+ ColorGradient.states = states37;
6681
+ ColorGradient.options = options36;
6493
6682
  ColorGradient.className = COLOR_GRADIENT_CLASSNAME;
6494
- ColorGradient.defaultProps = defaultProps33;
6683
+ ColorGradient.defaultProps = defaultProps35;
6495
6684
 
6496
6685
  // src/colorgradient/templates/colorgradient-normal.tsx
6497
- import { jsx as jsx86 } from "react/jsx-runtime";
6686
+ import { jsx as jsx95 } from "react/jsx-runtime";
6498
6687
 
6499
6688
  // src/colorgradient/templates/colorgradient-contrast.tsx
6500
- import { jsx as jsx87 } from "react/jsx-runtime";
6689
+ import { jsx as jsx96 } from "react/jsx-runtime";
6501
6690
 
6502
6691
  // src/colorpalette/colorpalette-row.tsx
6503
- import { jsx as jsx88 } from "react/jsx-runtime";
6504
- var ColorPaletteRow = (props) => /* @__PURE__ */ jsx88("tr", { children: props.children });
6692
+ import { jsx as jsx97 } from "react/jsx-runtime";
6693
+ var ColorPaletteRow = (props) => /* @__PURE__ */ jsx97("tr", { children: props.children });
6505
6694
 
6506
6695
  // src/colorpalette/colorpalette-tile.tsx
6507
- import { jsx as jsx89 } from "react/jsx-runtime";
6696
+ import { jsx as jsx98 } from "react/jsx-runtime";
6508
6697
  var COLORPALETTETILE_CLASSNAME = `k-colorpalette-tile`;
6509
- var states35 = [
6698
+ var states38 = [
6510
6699
  States.hover,
6511
6700
  States.focus,
6512
6701
  States.selected
6513
6702
  ];
6514
- var options34 = {};
6703
+ var options37 = {};
6515
6704
  var ColorPaletteTile = (props) => {
6516
6705
  const {
6517
6706
  color,
@@ -6526,7 +6715,7 @@ var ColorPaletteTile = (props) => {
6526
6715
  "width": tileSize ? tileSize + "px" : "",
6527
6716
  "height": tileSize ? tileSize + "px" : ""
6528
6717
  };
6529
- return /* @__PURE__ */ jsx89(
6718
+ return /* @__PURE__ */ jsx98(
6530
6719
  "td",
6531
6720
  {
6532
6721
  ...other,
@@ -6543,24 +6732,24 @@ var ColorPaletteTile = (props) => {
6543
6732
  }
6544
6733
  );
6545
6734
  };
6546
- ColorPaletteTile.states = states35;
6547
- ColorPaletteTile.options = options34;
6735
+ ColorPaletteTile.states = states38;
6736
+ ColorPaletteTile.options = options37;
6548
6737
  ColorPaletteTile.className = COLORPALETTETILE_CLASSNAME;
6549
6738
 
6550
6739
  // src/colorpalette/colorpalette.spec.tsx
6551
- import { jsx as jsx90 } from "react/jsx-runtime";
6740
+ import { jsx as jsx99 } from "react/jsx-runtime";
6552
6741
  var COLORPALETTE_CLASSNAME = `k-colorpalette`;
6553
- var states36 = [
6742
+ var states39 = [
6554
6743
  States.disabled
6555
6744
  ];
6556
- var options35 = {};
6557
- var defaultProps34 = {
6745
+ var options38 = {};
6746
+ var defaultProps36 = {
6558
6747
  columns: 10
6559
6748
  };
6560
6749
  var ColorPalette = (props) => {
6561
6750
  const {
6562
6751
  palette,
6563
- columns = defaultProps34.columns,
6752
+ columns = defaultProps36.columns,
6564
6753
  tileSize,
6565
6754
  disabled,
6566
6755
  ...other
@@ -6573,14 +6762,14 @@ var ColorPalette = (props) => {
6573
6762
  Array.from({ length: Math.ceil(colors.length / cols) }, (_, i) => {
6574
6763
  const items = [];
6575
6764
  colors.slice(i * cols, (i + 1) * cols).map((color) => {
6576
- items.push(/* @__PURE__ */ jsx90(ColorPaletteTile, { color, tileSize }));
6765
+ items.push(/* @__PURE__ */ jsx99(ColorPaletteTile, { color, tileSize }));
6577
6766
  });
6578
- const row = /* @__PURE__ */ jsx90(ColorPaletteRow, { children: items });
6767
+ const row = /* @__PURE__ */ jsx99(ColorPaletteRow, { children: items });
6579
6768
  newChildren.push(row);
6580
6769
  });
6581
6770
  }
6582
6771
  }
6583
- return /* @__PURE__ */ jsx90(
6772
+ return /* @__PURE__ */ jsx99(
6584
6773
  "div",
6585
6774
  {
6586
6775
  ...other,
@@ -6591,17 +6780,17 @@ var ColorPalette = (props) => {
6591
6780
  disabled
6592
6781
  })
6593
6782
  ),
6594
- children: /* @__PURE__ */ jsx90("table", { className: "k-colorpalette-table", children: newChildren.length > 0 ? newChildren : props.children })
6783
+ children: /* @__PURE__ */ jsx99("table", { className: "k-colorpalette-table", children: newChildren.length > 0 ? newChildren : props.children })
6595
6784
  }
6596
6785
  );
6597
6786
  };
6598
- ColorPalette.states = states36;
6599
- ColorPalette.options = options35;
6787
+ ColorPalette.states = states39;
6788
+ ColorPalette.options = options38;
6600
6789
  ColorPalette.className = COLORPALETTE_CLASSNAME;
6601
- ColorPalette.defaultProps = defaultProps34;
6790
+ ColorPalette.defaultProps = defaultProps36;
6602
6791
 
6603
6792
  // src/colorpalette/templates/colorpalette-normal.tsx
6604
- import { jsx as jsx91 } from "react/jsx-runtime";
6793
+ import { jsx as jsx100 } from "react/jsx-runtime";
6605
6794
 
6606
6795
  // src/colorpalette/colorpalette-presets.tsx
6607
6796
  var PALETTEPRESETS = {
@@ -6656,83 +6845,83 @@ var PALETTEPRESETS = {
6656
6845
  };
6657
6846
 
6658
6847
  // src/coloreditor/color-editor.spec.tsx
6659
- import { jsx as jsx92, jsxs as jsxs41 } from "react/jsx-runtime";
6848
+ import { jsx as jsx101, jsxs as jsxs42 } from "react/jsx-runtime";
6660
6849
  var COLOREDITOR_CLASSNAME = "k-coloreditor";
6661
- var states37 = [
6850
+ var states40 = [
6662
6851
  States.focus
6663
6852
  ];
6664
- var options36 = {};
6665
- var defaultProps35 = {
6853
+ var options39 = {};
6854
+ var defaultProps37 = {
6666
6855
  view: "gradient",
6667
6856
  palette: PALETTEPRESETS.office
6668
6857
  };
6669
6858
  var ColorEditor = (props) => {
6670
6859
  const {
6671
- view = defaultProps35.view,
6860
+ view = defaultProps37.view,
6672
6861
  color,
6673
6862
  currentColor,
6674
6863
  focus,
6675
6864
  focusView,
6676
6865
  dir,
6677
6866
  group,
6678
- palette = defaultProps35.palette
6867
+ palette = defaultProps37.palette
6679
6868
  } = props;
6680
- return /* @__PURE__ */ jsxs41("div", { className: classNames(
6869
+ return /* @__PURE__ */ jsxs42("div", { className: classNames(
6681
6870
  props.className,
6682
6871
  "k-flatcolorpicker",
6683
6872
  COLOREDITOR_CLASSNAME,
6684
6873
  stateClassNames(COLOREDITOR_CLASSNAME, { focus })
6685
6874
  ), dir, children: [
6686
- /* @__PURE__ */ jsxs41("div", { className: "k-coloreditor-header k-hstack", children: [
6687
- /* @__PURE__ */ jsx92("div", { className: "k-coloreditor-header-actions k-hstack", children: group && /* @__PURE__ */ jsxs41(ButtonGroup, { fillMode: "flat", children: [
6688
- /* @__PURE__ */ jsx92(Button, { className: "k-group-start", fillMode: "flat", icon: "droplet-slider", selected: view === "gradient" }),
6689
- /* @__PURE__ */ jsx92(Button, { className: "k-group-end", fillMode: "flat", icon: "palette", selected: view === "palette" })
6875
+ /* @__PURE__ */ jsxs42("div", { className: "k-coloreditor-header k-hstack", children: [
6876
+ /* @__PURE__ */ jsx101("div", { className: "k-coloreditor-header-actions k-hstack", children: group && /* @__PURE__ */ jsxs42(ButtonGroup, { fillMode: "flat", children: [
6877
+ /* @__PURE__ */ jsx101(Button, { className: "k-group-start", fillMode: "flat", icon: "droplet-slider", selected: view === "gradient" }),
6878
+ /* @__PURE__ */ jsx101(Button, { className: "k-group-end", fillMode: "flat", icon: "palette", selected: view === "palette" })
6690
6879
  ] }) }),
6691
- /* @__PURE__ */ jsx92("div", { className: "k-spacer" }),
6692
- /* @__PURE__ */ jsxs41("div", { className: "k-coloreditor-header-actions k-hstack", children: [
6693
- /* @__PURE__ */ jsx92(Button, { fillMode: "flat", icon: "droplet-slash" }),
6694
- /* @__PURE__ */ jsxs41("div", { className: "k-coloreditor-preview k-vstack", children: [
6695
- /* @__PURE__ */ jsx92(ColorPreview, { className: "k-coloreditor-preview-color", color }),
6696
- /* @__PURE__ */ jsx92(ColorPreview, { className: "k-coloreditor-current-color", color: currentColor })
6880
+ /* @__PURE__ */ jsx101("div", { className: "k-spacer" }),
6881
+ /* @__PURE__ */ jsxs42("div", { className: "k-coloreditor-header-actions k-hstack", children: [
6882
+ /* @__PURE__ */ jsx101(Button, { fillMode: "flat", icon: "droplet-slash" }),
6883
+ /* @__PURE__ */ jsxs42("div", { className: "k-coloreditor-preview k-vstack", children: [
6884
+ /* @__PURE__ */ jsx101(ColorPreview, { className: "k-coloreditor-preview-color", color }),
6885
+ /* @__PURE__ */ jsx101(ColorPreview, { className: "k-coloreditor-current-color", color: currentColor })
6697
6886
  ] })
6698
6887
  ] })
6699
6888
  ] }),
6700
- /* @__PURE__ */ jsx92("div", { className: "k-coloreditor-views k-vstack", children: view === "gradient" ? /* @__PURE__ */ jsx92(ColorGradient, { focus: focusView }) : /* @__PURE__ */ jsx92(ColorPalette, { palette }) }),
6701
- /* @__PURE__ */ jsxs41(ActionButtons, { className: "k-coloreditor-footer", alignment: "end", children: [
6702
- /* @__PURE__ */ jsx92(Button, { className: "k-coloreditor-cancel", children: "Cancel" }),
6703
- /* @__PURE__ */ jsx92(Button, { themeColor: "primary", className: "k-coloreditor-apply", children: "Apply" })
6889
+ /* @__PURE__ */ jsx101("div", { className: "k-coloreditor-views k-vstack", children: view === "gradient" ? /* @__PURE__ */ jsx101(ColorGradient, { focus: focusView }) : /* @__PURE__ */ jsx101(ColorPalette, { palette }) }),
6890
+ /* @__PURE__ */ jsxs42(ActionButtons, { className: "k-coloreditor-footer", alignment: "end", children: [
6891
+ /* @__PURE__ */ jsx101(Button, { className: "k-coloreditor-cancel", children: "Cancel" }),
6892
+ /* @__PURE__ */ jsx101(Button, { themeColor: "primary", className: "k-coloreditor-apply", children: "Apply" })
6704
6893
  ] })
6705
6894
  ] });
6706
6895
  };
6707
- ColorEditor.states = states37;
6708
- ColorEditor.options = options36;
6896
+ ColorEditor.states = states40;
6897
+ ColorEditor.options = options39;
6709
6898
  ColorEditor.className = COLOREDITOR_CLASSNAME;
6710
- ColorEditor.defaultProps = defaultProps35;
6899
+ ColorEditor.defaultProps = defaultProps37;
6711
6900
 
6712
6901
  // src/coloreditor/templates/coloreditor-normal.tsx
6713
- import { jsx as jsx93 } from "react/jsx-runtime";
6902
+ import { jsx as jsx102 } from "react/jsx-runtime";
6714
6903
 
6715
6904
  // src/coloreditor/templates/coloreditor-palette.tsx
6716
- import { jsx as jsx94 } from "react/jsx-runtime";
6905
+ import { jsx as jsx103 } from "react/jsx-runtime";
6717
6906
 
6718
6907
  // src/coloreditor/templates/coloreditor-group.tsx
6719
- import { jsx as jsx95 } from "react/jsx-runtime";
6908
+ import { jsx as jsx104 } from "react/jsx-runtime";
6720
6909
 
6721
6910
  // src/coloreditor/templates/coloreditor-palette-group.tsx
6722
- import { jsx as jsx96 } from "react/jsx-runtime";
6911
+ import { jsx as jsx105 } from "react/jsx-runtime";
6723
6912
 
6724
6913
  // src/colorpicker/templates/colorpicker-popup-gradient.tsx
6725
- import { jsx as jsx97 } from "react/jsx-runtime";
6914
+ import { jsx as jsx106 } from "react/jsx-runtime";
6726
6915
 
6727
6916
  // src/colorpicker/templates/colorpicker-popup-palette.tsx
6728
- import { jsx as jsx98 } from "react/jsx-runtime";
6917
+ import { jsx as jsx107 } from "react/jsx-runtime";
6729
6918
 
6730
6919
  // src/action-sheet/action-sheet.spec.tsx
6731
- import { Fragment as Fragment35, jsx as jsx99, jsxs as jsxs42 } from "react/jsx-runtime";
6920
+ import { Fragment as Fragment35, jsx as jsx108, jsxs as jsxs43 } from "react/jsx-runtime";
6732
6921
  var ACTIONSHEET_CLASSNAME = `k-actionsheet`;
6733
- var states38 = [];
6734
- var options37 = {};
6735
- var defaultProps36 = {
6922
+ var states41 = [];
6923
+ var options40 = {};
6924
+ var defaultProps38 = {
6736
6925
  side: "bottom",
6737
6926
  fullscreen: false,
6738
6927
  adaptive: false,
@@ -6745,14 +6934,14 @@ var ActionSheet = (props) => {
6745
6934
  header,
6746
6935
  footer,
6747
6936
  actions,
6748
- side = defaultProps36.side,
6749
- fullscreen = defaultProps36.fullscreen,
6750
- adaptive = defaultProps36.adaptive,
6751
- overlay = defaultProps36.overlay,
6937
+ side = defaultProps38.side,
6938
+ fullscreen = defaultProps38.fullscreen,
6939
+ adaptive = defaultProps38.adaptive,
6940
+ overlay = defaultProps38.overlay,
6752
6941
  ...other
6753
6942
  } = props;
6754
- const _ActionSheetHeader = title ? /* @__PURE__ */ jsx99(ActionSheetHeader, { title }) : header ? header : Array.isArray(children) && children.find((child) => child.type === ActionSheetHeader);
6755
- const _ActionSheetFooter = actions ? /* @__PURE__ */ jsx99(ActionSheetFooter, { className: "k-actions", actions }) : footer ? typeof footer === "string" ? /* @__PURE__ */ jsx99(ActionSheetFooter, { children: footer }) : footer : Array.isArray(children) && children.find((child) => child.type === ActionSheetFooter);
6943
+ const _ActionSheetHeader = title ? /* @__PURE__ */ jsx108(ActionSheetHeader, { title }) : header ? header : Array.isArray(children) && children.find((child) => child.type === ActionSheetHeader);
6944
+ const _ActionSheetFooter = actions ? /* @__PURE__ */ jsx108(ActionSheetFooter, { className: "k-actions", actions }) : footer ? typeof footer === "string" ? /* @__PURE__ */ jsx108(ActionSheetFooter, { children: footer }) : footer : Array.isArray(children) && children.find((child) => child.type === ActionSheetFooter);
6756
6945
  const _ActionSheetContent = Array.isArray(children) ? children.filter((child) => {
6757
6946
  switch (child.type) {
6758
6947
  case ActionSheetHeader:
@@ -6762,10 +6951,10 @@ var ActionSheet = (props) => {
6762
6951
  return true;
6763
6952
  }
6764
6953
  return true;
6765
- }) : children.type === ActionSheetItems ? children : /* @__PURE__ */ jsx99(Fragment35, {});
6766
- return /* @__PURE__ */ jsxs42("div", { className: "k-actionsheet-container", children: [
6767
- overlay && /* @__PURE__ */ jsx99("div", { className: "k-overlay" }),
6768
- /* @__PURE__ */ jsx99(
6954
+ }) : children.type === ActionSheetItems ? children : /* @__PURE__ */ jsx108(Fragment35, {});
6955
+ return /* @__PURE__ */ jsxs43("div", { className: "k-actionsheet-container", children: [
6956
+ overlay && /* @__PURE__ */ jsx108("div", { className: "k-overlay" }),
6957
+ /* @__PURE__ */ jsx108(
6769
6958
  AnimationContainer,
6770
6959
  {
6771
6960
  animationStyle: {
@@ -6775,7 +6964,7 @@ var ActionSheet = (props) => {
6775
6964
  [`${side === "top" || side === "bottom" ? "width" : null}`]: "100%",
6776
6965
  [`${side === "left" || side === "right" ? "height" : null}`]: "100%"
6777
6966
  },
6778
- children: /* @__PURE__ */ jsx99(
6967
+ children: /* @__PURE__ */ jsx108(
6779
6968
  "div",
6780
6969
  {
6781
6970
  ...other,
@@ -6788,9 +6977,9 @@ var ActionSheet = (props) => {
6788
6977
  "k-adaptive-actionsheet": adaptive
6789
6978
  }
6790
6979
  ),
6791
- children: /* @__PURE__ */ jsxs42(Fragment35, { children: [
6980
+ children: /* @__PURE__ */ jsxs43(Fragment35, { children: [
6792
6981
  _ActionSheetHeader,
6793
- /* @__PURE__ */ jsx99("div", { className: classNames(
6982
+ /* @__PURE__ */ jsx108("div", { className: classNames(
6794
6983
  "k-actionsheet-content",
6795
6984
  {
6796
6985
  "!k-overflow-hidden": adaptive
@@ -6804,13 +6993,13 @@ var ActionSheet = (props) => {
6804
6993
  )
6805
6994
  ] });
6806
6995
  };
6807
- ActionSheet.states = states38;
6808
- ActionSheet.options = options37;
6996
+ ActionSheet.states = states41;
6997
+ ActionSheet.options = options40;
6809
6998
  ActionSheet.className = ACTIONSHEET_CLASSNAME;
6810
- ActionSheet.defaultProps = defaultProps36;
6999
+ ActionSheet.defaultProps = defaultProps38;
6811
7000
 
6812
7001
  // src/action-sheet/actionsheet-header.tsx
6813
- import { Fragment as Fragment36, jsx as jsx100, jsxs as jsxs43 } from "react/jsx-runtime";
7002
+ import { Fragment as Fragment36, jsx as jsx109, jsxs as jsxs44 } from "react/jsx-runtime";
6814
7003
  var ACTIONSHEETHEADER_CLASSNAME = `k-actionsheet-titlebar`;
6815
7004
  var ActionSheetHeader = (props) => {
6816
7005
  const {
@@ -6820,7 +7009,7 @@ var ActionSheetHeader = (props) => {
6820
7009
  filter,
6821
7010
  ...other
6822
7011
  } = props;
6823
- return /* @__PURE__ */ jsx100(
7012
+ return /* @__PURE__ */ jsx109(
6824
7013
  "div",
6825
7014
  {
6826
7015
  ...other,
@@ -6828,30 +7017,30 @@ var ActionSheetHeader = (props) => {
6828
7017
  props.className,
6829
7018
  ACTIONSHEETHEADER_CLASSNAME
6830
7019
  ),
6831
- children: /* @__PURE__ */ jsxs43(Fragment36, { children: [
6832
- /* @__PURE__ */ jsxs43("div", { className: "k-actionsheet-titlebar-group k-hbox", children: [
6833
- !props.children && (title || subTitle) && /* @__PURE__ */ jsx100(Fragment36, { children: /* @__PURE__ */ jsxs43("div", { className: "k-actionsheet-title", children: [
6834
- title !== "" && /* @__PURE__ */ jsx100("div", { className: "k-text-center", children: title }),
6835
- subTitle !== "" && /* @__PURE__ */ jsx100("div", { className: "k-actionsheet-subtitle k-text-center", children: subTitle })
7020
+ children: /* @__PURE__ */ jsxs44(Fragment36, { children: [
7021
+ /* @__PURE__ */ jsxs44("div", { className: "k-actionsheet-titlebar-group k-hbox", children: [
7022
+ !props.children && (title || subTitle) && /* @__PURE__ */ jsx109(Fragment36, { children: /* @__PURE__ */ jsxs44("div", { className: "k-actionsheet-title", children: [
7023
+ title !== "" && /* @__PURE__ */ jsx109("div", { className: "k-text-center", children: title }),
7024
+ subTitle !== "" && /* @__PURE__ */ jsx109("div", { className: "k-actionsheet-subtitle k-text-center", children: subTitle })
6836
7025
  ] }) }),
6837
- props.children && /* @__PURE__ */ jsx100("div", { className: "k-actionsheet-title", children: props.children }),
6838
- actions && /* @__PURE__ */ jsx100(Fragment36, { children: /* @__PURE__ */ jsx100("div", { className: "k-actionsheet-actions", children: actions.map((actionName) => /* @__PURE__ */ jsx100(Button, { icon: actionName, size: "large", fillMode: "flat" }, actionName)) }) })
7026
+ props.children && /* @__PURE__ */ jsx109("div", { className: "k-actionsheet-title", children: props.children }),
7027
+ actions && /* @__PURE__ */ jsx109(Fragment36, { children: /* @__PURE__ */ jsx109("div", { className: "k-actionsheet-actions", children: actions.map((actionName) => /* @__PURE__ */ jsx109(Button, { icon: actionName, size: "large", fillMode: "flat" }, actionName)) }) })
6839
7028
  ] }),
6840
- filter && /* @__PURE__ */ jsx100(Fragment36, { children: /* @__PURE__ */ jsx100("div", { className: "k-actionsheet-titlebar-group k-actionsheet-filter", children: /* @__PURE__ */ jsx100(Searchbox, { placeholder: "Filter", size: "large" }) }) })
7029
+ filter && /* @__PURE__ */ jsx109(Fragment36, { children: /* @__PURE__ */ jsx109("div", { className: "k-actionsheet-titlebar-group k-actionsheet-filter", children: /* @__PURE__ */ jsx109(Searchbox, { placeholder: "Filter", size: "large" }) }) })
6841
7030
  ] })
6842
7031
  }
6843
7032
  );
6844
7033
  };
6845
7034
 
6846
7035
  // src/action-sheet/actionsheet-footer.tsx
6847
- import { Fragment as Fragment37, jsx as jsx101, jsxs as jsxs44 } from "react/jsx-runtime";
7036
+ import { Fragment as Fragment37, jsx as jsx110, jsxs as jsxs45 } from "react/jsx-runtime";
6848
7037
  var ACTIONSHEETFOOTER_CLASSNAME = `k-actionsheet-footer`;
6849
7038
  var ActionSheetFooter = (props) => {
6850
7039
  const {
6851
7040
  actions,
6852
7041
  ...other
6853
7042
  } = props;
6854
- return /* @__PURE__ */ jsx101(
7043
+ return /* @__PURE__ */ jsx110(
6855
7044
  action_buttons_spec_default,
6856
7045
  {
6857
7046
  ...other,
@@ -6860,17 +7049,17 @@ var ActionSheetFooter = (props) => {
6860
7049
  ACTIONSHEETFOOTER_CLASSNAME
6861
7050
  ),
6862
7051
  alignment: "stretched",
6863
- children: /* @__PURE__ */ jsxs44(Fragment37, { children: [
7052
+ children: /* @__PURE__ */ jsxs45(Fragment37, { children: [
6864
7053
  actions && actions.map((action, index) => {
6865
7054
  if (action === "|") {
6866
- return /* @__PURE__ */ jsx101("span", { className: "k-separator" }, index);
7055
+ return /* @__PURE__ */ jsx110("span", { className: "k-separator" }, index);
6867
7056
  }
6868
7057
  if (action === " ") {
6869
- return /* @__PURE__ */ jsx101("span", { className: "k-spacer" }, index);
7058
+ return /* @__PURE__ */ jsx110("span", { className: "k-spacer" }, index);
6870
7059
  }
6871
7060
  const importantFlag = action.startsWith("!");
6872
7061
  const actionName = importantFlag ? action.substring(1) : action;
6873
- return /* @__PURE__ */ jsx101(Button, { text: actionName, size: "large", themeColor: importantFlag ? "primary" : "base" }, index);
7062
+ return /* @__PURE__ */ jsx110(Button, { text: actionName, size: "large", themeColor: importantFlag ? "primary" : "base" }, index);
6874
7063
  }),
6875
7064
  !actions && props.children
6876
7065
  ] })
@@ -6879,12 +7068,12 @@ var ActionSheetFooter = (props) => {
6879
7068
  };
6880
7069
 
6881
7070
  // src/action-sheet/actionsheet-items.tsx
6882
- import { jsx as jsx102 } from "react/jsx-runtime";
7071
+ import { jsx as jsx111 } from "react/jsx-runtime";
6883
7072
  var ActionSheetItems = (props) => {
6884
7073
  const {
6885
7074
  ...other
6886
7075
  } = props;
6887
- return /* @__PURE__ */ jsx102(
7076
+ return /* @__PURE__ */ jsx111(
6888
7077
  "div",
6889
7078
  {
6890
7079
  ...other,
@@ -6898,8 +7087,8 @@ var ActionSheetItems = (props) => {
6898
7087
  };
6899
7088
 
6900
7089
  // src/action-sheet/actionsheet-item.tsx
6901
- import { Fragment as Fragment38, jsx as jsx103, jsxs as jsxs45 } from "react/jsx-runtime";
6902
- var states39 = [
7090
+ import { Fragment as Fragment38, jsx as jsx112, jsxs as jsxs46 } from "react/jsx-runtime";
7091
+ var states42 = [
6903
7092
  States.hover,
6904
7093
  States.focus,
6905
7094
  States.selected,
@@ -6907,9 +7096,9 @@ var states39 = [
6907
7096
  ];
6908
7097
 
6909
7098
  // src/combobox/combobox.spec.tsx
6910
- import { Fragment as Fragment39, jsx as jsx104, jsxs as jsxs46 } from "react/jsx-runtime";
7099
+ import { Fragment as Fragment39, jsx as jsx113, jsxs as jsxs47 } from "react/jsx-runtime";
6911
7100
  var COMBOBOX_CLASSNAME = `k-combobox`;
6912
- var states40 = [
7101
+ var states43 = [
6913
7102
  States.hover,
6914
7103
  States.focus,
6915
7104
  States.valid,
@@ -6919,13 +7108,13 @@ var states40 = [
6919
7108
  States.disabled,
6920
7109
  States.readonly
6921
7110
  ];
6922
- var defaultProps37 = {
7111
+ var defaultProps39 = {
6923
7112
  size: Input.defaultProps.size,
6924
7113
  rounded: Input.defaultProps.rounded,
6925
7114
  fillMode: Input.defaultProps.fillMode,
6926
7115
  separators: true
6927
7116
  };
6928
- var options38 = {
7117
+ var options41 = {
6929
7118
  size: [Size.small, Size.medium, Size.large],
6930
7119
  rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full],
6931
7120
  fillMode: [FillMode.solid, FillMode.flat, FillMode.outline]
@@ -6934,7 +7123,7 @@ var Combobox = (props) => {
6934
7123
  const {
6935
7124
  prefix,
6936
7125
  suffix,
6937
- separators = defaultProps37.separators,
7126
+ separators = defaultProps39.separators,
6938
7127
  value,
6939
7128
  placeholder,
6940
7129
  size,
@@ -6954,8 +7143,8 @@ var Combobox = (props) => {
6954
7143
  adaptiveSettings,
6955
7144
  ...other
6956
7145
  } = props;
6957
- return /* @__PURE__ */ jsxs46(Fragment39, { children: [
6958
- /* @__PURE__ */ jsxs46(
7146
+ return /* @__PURE__ */ jsxs47(Fragment39, { children: [
7147
+ /* @__PURE__ */ jsxs47(
6959
7148
  Input,
6960
7149
  {
6961
7150
  ...other,
@@ -6972,12 +7161,12 @@ var Combobox = (props) => {
6972
7161
  readonly,
6973
7162
  className: classNames(props.className, COMBOBOX_CLASSNAME),
6974
7163
  children: [
6975
- prefix && /* @__PURE__ */ jsxs46(Fragment39, { children: [
6976
- /* @__PURE__ */ jsx104(InputPrefix, { children: prefix }),
6977
- separators && /* @__PURE__ */ jsx104(InputSeparator, {})
7164
+ prefix && /* @__PURE__ */ jsxs47(Fragment39, { children: [
7165
+ /* @__PURE__ */ jsx113(InputPrefix, { children: prefix }),
7166
+ separators && /* @__PURE__ */ jsx113(InputSeparator, {})
6978
7167
  ] }),
6979
- /* @__PURE__ */ jsx104(InputInnerInput, { placeholder, value }),
6980
- /* @__PURE__ */ jsx104(
7168
+ /* @__PURE__ */ jsx113(InputInnerInput, { placeholder, value }),
7169
+ /* @__PURE__ */ jsx113(
6981
7170
  InputValidationIcon,
6982
7171
  {
6983
7172
  valid,
@@ -6986,14 +7175,14 @@ var Combobox = (props) => {
6986
7175
  disabled
6987
7176
  }
6988
7177
  ),
6989
- /* @__PURE__ */ jsx104(
7178
+ /* @__PURE__ */ jsx113(
6990
7179
  InputLoadingIcon,
6991
7180
  {
6992
7181
  loading,
6993
7182
  disabled
6994
7183
  }
6995
7184
  ),
6996
- /* @__PURE__ */ jsx104(
7185
+ /* @__PURE__ */ jsx113(
6997
7186
  InputClearValue,
6998
7187
  {
6999
7188
  loading,
@@ -7002,11 +7191,11 @@ var Combobox = (props) => {
7002
7191
  value
7003
7192
  }
7004
7193
  ),
7005
- suffix && /* @__PURE__ */ jsxs46(Fragment39, { children: [
7006
- separators && /* @__PURE__ */ jsx104(InputSeparator, {}),
7007
- /* @__PURE__ */ jsx104(InputSuffix, { children: suffix })
7194
+ suffix && /* @__PURE__ */ jsxs47(Fragment39, { children: [
7195
+ separators && /* @__PURE__ */ jsx113(InputSeparator, {}),
7196
+ /* @__PURE__ */ jsx113(InputSuffix, { children: suffix })
7008
7197
  ] }),
7009
- /* @__PURE__ */ jsx104(
7198
+ /* @__PURE__ */ jsx113(
7010
7199
  Button,
7011
7200
  {
7012
7201
  className: "k-input-button",
@@ -7019,9 +7208,9 @@ var Combobox = (props) => {
7019
7208
  ]
7020
7209
  }
7021
7210
  ),
7022
- opened && popup && /* @__PURE__ */ jsx104(Popup, { className: "k-list-container k-combobox-popup", children: popup }),
7023
- adaptive && /* @__PURE__ */ jsxs46(ActionSheet, { adaptive: true, ...adaptiveSettings, children: [
7024
- /* @__PURE__ */ jsx104(
7211
+ opened && popup && /* @__PURE__ */ jsx113(Popup, { className: "k-list-container k-combobox-popup", children: popup }),
7212
+ adaptive && /* @__PURE__ */ jsxs47(ActionSheet, { adaptive: true, ...adaptiveSettings, children: [
7213
+ /* @__PURE__ */ jsx113(
7025
7214
  ActionSheetHeader,
7026
7215
  {
7027
7216
  actions: ["x"],
@@ -7029,51 +7218,51 @@ var Combobox = (props) => {
7029
7218
  title: "Select Item"
7030
7219
  }
7031
7220
  ),
7032
- /* @__PURE__ */ jsx104("div", { className: "k-list-container", children: /* @__PURE__ */ jsxs46(List, { size: "large", children: [
7033
- /* @__PURE__ */ jsx104(ListItem, { text: "List item" }),
7034
- /* @__PURE__ */ jsx104(ListItem, { text: "List item" }),
7035
- /* @__PURE__ */ jsx104(ListItem, { text: "List item" })
7221
+ /* @__PURE__ */ jsx113("div", { className: "k-list-container", children: /* @__PURE__ */ jsxs47(List, { size: "large", children: [
7222
+ /* @__PURE__ */ jsx113(ListItem, { text: "List item" }),
7223
+ /* @__PURE__ */ jsx113(ListItem, { text: "List item" }),
7224
+ /* @__PURE__ */ jsx113(ListItem, { text: "List item" })
7036
7225
  ] }) })
7037
7226
  ] })
7038
7227
  ] });
7039
7228
  };
7040
- Combobox.states = states40;
7041
- Combobox.options = options38;
7229
+ Combobox.states = states43;
7230
+ Combobox.options = options41;
7042
7231
  Combobox.className = COMBOBOX_CLASSNAME;
7043
- Combobox.defaultProps = defaultProps37;
7232
+ Combobox.defaultProps = defaultProps39;
7044
7233
 
7045
7234
  // src/combobox/templates/combobox-normal.tsx
7046
- import { jsx as jsx105 } from "react/jsx-runtime";
7235
+ import { jsx as jsx114 } from "react/jsx-runtime";
7047
7236
 
7048
7237
  // src/combobox/templates/combobox-popup.tsx
7049
- import { jsx as jsx106, jsxs as jsxs47 } from "react/jsx-runtime";
7238
+ import { jsx as jsx115, jsxs as jsxs48 } from "react/jsx-runtime";
7050
7239
 
7051
7240
  // src/combobox/templates/combobox-grouping.tsx
7052
- import { jsx as jsx107, jsxs as jsxs48 } from "react/jsx-runtime";
7241
+ import { jsx as jsx116, jsxs as jsxs49 } from "react/jsx-runtime";
7053
7242
 
7054
7243
  // src/combobox/templates/combobox-grouping-modern.tsx
7055
- import { jsx as jsx108, jsxs as jsxs49 } from "react/jsx-runtime";
7244
+ import { jsx as jsx117, jsxs as jsxs50 } from "react/jsx-runtime";
7056
7245
 
7057
7246
  // src/combobox/templates/combobox-adaptive.tsx
7058
- import { jsx as jsx109 } from "react/jsx-runtime";
7247
+ import { jsx as jsx118 } from "react/jsx-runtime";
7059
7248
 
7060
7249
  // src/combobox/templates/combobox-prefix.tsx
7061
- import { Fragment as Fragment40, jsx as jsx110 } from "react/jsx-runtime";
7250
+ import { Fragment as Fragment40, jsx as jsx119 } from "react/jsx-runtime";
7062
7251
 
7063
7252
  // src/combobox/templates/combobox-suffix.tsx
7064
- import { Fragment as Fragment41, jsx as jsx111 } from "react/jsx-runtime";
7253
+ import { Fragment as Fragment41, jsx as jsx120 } from "react/jsx-runtime";
7065
7254
 
7066
7255
  // src/menu-button/menu-button.spec.tsx
7067
- import { Fragment as Fragment42, jsx as jsx112, jsxs as jsxs50 } from "react/jsx-runtime";
7256
+ import { Fragment as Fragment42, jsx as jsx121, jsxs as jsxs51 } from "react/jsx-runtime";
7068
7257
  var MENUBUTTON_CLASSNAME = `k-menu-button`;
7069
- var states41 = [
7258
+ var states44 = [
7070
7259
  States.hover,
7071
7260
  States.focus,
7072
7261
  States.active,
7073
7262
  States.selected,
7074
7263
  States.disabled
7075
7264
  ];
7076
- var options39 = {
7265
+ var options42 = {
7077
7266
  size: [Size.small, Size.medium, Size.large],
7078
7267
  rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full],
7079
7268
  fillMode: [FillMode.solid, FillMode.flat, FillMode.outline, FillMode.clear, FillMode.link],
@@ -7091,7 +7280,7 @@ var options39 = {
7091
7280
  ThemeColor.inverse
7092
7281
  ]
7093
7282
  };
7094
- var defaultProps38 = {
7283
+ var defaultProps40 = {
7095
7284
  size: Size.medium,
7096
7285
  rounded: Roundness.medium,
7097
7286
  fillMode: FillMode.solid,
@@ -7101,10 +7290,10 @@ var defaultProps38 = {
7101
7290
  };
7102
7291
  var MenuButton = (props) => {
7103
7292
  const {
7104
- size = defaultProps38.size,
7105
- rounded = defaultProps38.rounded,
7106
- fillMode = defaultProps38.fillMode,
7107
- themeColor = defaultProps38.themeColor,
7293
+ size = defaultProps40.size,
7294
+ rounded = defaultProps40.rounded,
7295
+ fillMode = defaultProps40.fillMode,
7296
+ themeColor = defaultProps40.themeColor,
7108
7297
  hover,
7109
7298
  focus,
7110
7299
  active,
@@ -7112,14 +7301,14 @@ var MenuButton = (props) => {
7112
7301
  disabled,
7113
7302
  icon,
7114
7303
  text,
7115
- showArrow = defaultProps38.showArrow,
7116
- arrowIconName = defaultProps38.arrowIconName,
7304
+ showArrow = defaultProps40.showArrow,
7305
+ arrowIconName = defaultProps40.arrowIconName,
7117
7306
  popup,
7118
7307
  opened,
7119
7308
  ...other
7120
7309
  } = props;
7121
- return /* @__PURE__ */ jsxs50(Fragment42, { children: [
7122
- /* @__PURE__ */ jsx112(
7310
+ return /* @__PURE__ */ jsxs51(Fragment42, { children: [
7311
+ /* @__PURE__ */ jsx121(
7123
7312
  Button,
7124
7313
  {
7125
7314
  ...other,
@@ -7142,34 +7331,34 @@ var MenuButton = (props) => {
7142
7331
  arrowIconName
7143
7332
  }
7144
7333
  ),
7145
- opened && popup && /* @__PURE__ */ jsx112(Popup, { className: "k-menu-popup", children: popup })
7334
+ opened && popup && /* @__PURE__ */ jsx121(Popup, { className: "k-menu-popup", children: popup })
7146
7335
  ] });
7147
7336
  };
7148
- MenuButton.states = states41;
7149
- MenuButton.options = options39;
7337
+ MenuButton.states = states44;
7338
+ MenuButton.options = options42;
7150
7339
  MenuButton.className = MENUBUTTON_CLASSNAME;
7151
- MenuButton.defaultProps = defaultProps38;
7340
+ MenuButton.defaultProps = defaultProps40;
7152
7341
 
7153
7342
  // src/menu-button/templates/icon-menu-button.tsx
7154
- import { jsx as jsx113 } from "react/jsx-runtime";
7343
+ import { jsx as jsx122 } from "react/jsx-runtime";
7155
7344
 
7156
7345
  // src/menu-button/templates/icon-text-menu-button.tsx
7157
- import { jsx as jsx114 } from "react/jsx-runtime";
7346
+ import { jsx as jsx123 } from "react/jsx-runtime";
7158
7347
 
7159
7348
  // src/menu-button/templates/text-menu-button.tsx
7160
- import { jsx as jsx115 } from "react/jsx-runtime";
7349
+ import { jsx as jsx124 } from "react/jsx-runtime";
7161
7350
 
7162
7351
  // src/menu/menu-item.spec.tsx
7163
- import { Fragment as Fragment43, jsx as jsx116, jsxs as jsxs51 } from "react/jsx-runtime";
7352
+ import { Fragment as Fragment43, jsx as jsx125, jsxs as jsxs52 } from "react/jsx-runtime";
7164
7353
  var MENUITEM_CLASSNAME = `k-menu-item`;
7165
- var states42 = [
7354
+ var states45 = [
7166
7355
  States.hover,
7167
7356
  States.focus,
7168
7357
  States.active,
7169
7358
  States.disabled
7170
7359
  ];
7171
- var options40 = {};
7172
- var defaultProps39 = {
7360
+ var options43 = {};
7361
+ var defaultProps41 = {
7173
7362
  dir: "ltr"
7174
7363
  };
7175
7364
  var MenuItem = (props) => {
@@ -7184,12 +7373,12 @@ var MenuItem = (props) => {
7184
7373
  last,
7185
7374
  showArrow,
7186
7375
  arrowIconName,
7187
- dir = defaultProps39.dir,
7376
+ dir = defaultProps41.dir,
7188
7377
  children,
7189
7378
  popup,
7190
7379
  ...other
7191
7380
  } = props;
7192
- const contentTemplate = /* @__PURE__ */ jsx116(Fragment43, {});
7381
+ const contentTemplate = /* @__PURE__ */ jsx125(Fragment43, {});
7193
7382
  if (children) {
7194
7383
  children.forEach((child) => {
7195
7384
  const component = child.type;
@@ -7203,7 +7392,7 @@ var MenuItem = (props) => {
7203
7392
  if (!expandArrowName) {
7204
7393
  expandArrowName = dir === "rtl" ? "caret-alt-left" : "caret-alt-right";
7205
7394
  }
7206
- return /* @__PURE__ */ jsxs51(
7395
+ return /* @__PURE__ */ jsxs52(
7207
7396
  "li",
7208
7397
  {
7209
7398
  ...other,
@@ -7224,16 +7413,16 @@ var MenuItem = (props) => {
7224
7413
  }
7225
7414
  ),
7226
7415
  children: [
7227
- /* @__PURE__ */ jsxs51(
7416
+ /* @__PURE__ */ jsxs52(
7228
7417
  "span",
7229
7418
  {
7230
7419
  className: classNames(
7231
7420
  "k-link k-menu-link"
7232
7421
  ),
7233
7422
  children: [
7234
- icon && /* @__PURE__ */ jsx116(Icon, { className: "k-menu-link-icon", icon }),
7235
- /* @__PURE__ */ jsx116("span", { className: "k-menu-link-text", children: text }),
7236
- showArrow && /* @__PURE__ */ jsx116("span", { className: "k-menu-expand-arrow", children: /* @__PURE__ */ jsx116(Icon, { icon: expandArrowName }) })
7423
+ icon && /* @__PURE__ */ jsx125(Icon, { className: "k-menu-link-icon", icon }),
7424
+ /* @__PURE__ */ jsx125("span", { className: "k-menu-link-text", children: text }),
7425
+ showArrow && /* @__PURE__ */ jsx125("span", { className: "k-menu-expand-arrow", children: /* @__PURE__ */ jsx125(Icon, { icon: expandArrowName }) })
7237
7426
  ]
7238
7427
  }
7239
7428
  ),
@@ -7243,23 +7432,23 @@ var MenuItem = (props) => {
7243
7432
  }
7244
7433
  );
7245
7434
  };
7246
- MenuItem.states = states42;
7247
- MenuItem.options = options40;
7435
+ MenuItem.states = states45;
7436
+ MenuItem.options = options43;
7248
7437
  MenuItem.className = MENUITEM_CLASSNAME;
7249
- MenuItem.defaultProps = defaultProps39;
7438
+ MenuItem.defaultProps = defaultProps41;
7250
7439
 
7251
7440
  // src/menu/menu-list-item.spec.tsx
7252
- import { Fragment as Fragment44, jsx as jsx117, jsxs as jsxs52 } from "react/jsx-runtime";
7441
+ import { Fragment as Fragment44, jsx as jsx126, jsxs as jsxs53 } from "react/jsx-runtime";
7253
7442
  var MENULISTITEM_CLASSNAME = `k-menu-item`;
7254
- var states43 = [
7443
+ var states46 = [
7255
7444
  States.hover,
7256
7445
  States.focus,
7257
7446
  States.active,
7258
7447
  States.selected,
7259
7448
  States.disabled
7260
7449
  ];
7261
- var options41 = {};
7262
- var defaultProps40 = {
7450
+ var options44 = {};
7451
+ var defaultProps42 = {
7263
7452
  dir: "ltr"
7264
7453
  };
7265
7454
  var MenuListItem = (props) => {
@@ -7275,12 +7464,12 @@ var MenuListItem = (props) => {
7275
7464
  last,
7276
7465
  showArrow,
7277
7466
  arrowIconName,
7278
- dir = defaultProps40.dir,
7467
+ dir = defaultProps42.dir,
7279
7468
  children,
7280
7469
  popup,
7281
7470
  ...other
7282
7471
  } = props;
7283
- const contentTemplate = /* @__PURE__ */ jsx117(Fragment44, {});
7472
+ const contentTemplate = /* @__PURE__ */ jsx126(Fragment44, {});
7284
7473
  if (children) {
7285
7474
  children.forEach((child) => {
7286
7475
  const component = child.type;
@@ -7294,7 +7483,7 @@ var MenuListItem = (props) => {
7294
7483
  if (!expandArrowName) {
7295
7484
  expandArrowName = dir === "rtl" ? "caret-alt-left" : "caret-alt-right";
7296
7485
  }
7297
- return /* @__PURE__ */ jsxs52(
7486
+ return /* @__PURE__ */ jsxs53(
7298
7487
  "li",
7299
7488
  {
7300
7489
  ...other,
@@ -7313,7 +7502,7 @@ var MenuListItem = (props) => {
7313
7502
  }
7314
7503
  ),
7315
7504
  children: [
7316
- /* @__PURE__ */ jsxs52(
7505
+ /* @__PURE__ */ jsxs53(
7317
7506
  "span",
7318
7507
  {
7319
7508
  className: classNames(
@@ -7326,9 +7515,9 @@ var MenuListItem = (props) => {
7326
7515
  })
7327
7516
  ),
7328
7517
  children: [
7329
- icon && /* @__PURE__ */ jsx117(Icon, { className: "k-menu-link-icon", icon }),
7330
- /* @__PURE__ */ jsx117("span", { className: "k-menu-link-text", children: text }),
7331
- showArrow && /* @__PURE__ */ jsx117("span", { className: "k-menu-expand-arrow", children: /* @__PURE__ */ jsx117(Icon, { icon: expandArrowName }) })
7518
+ icon && /* @__PURE__ */ jsx126(Icon, { className: "k-menu-link-icon", icon }),
7519
+ /* @__PURE__ */ jsx126("span", { className: "k-menu-link-text", children: text }),
7520
+ showArrow && /* @__PURE__ */ jsx126("span", { className: "k-menu-expand-arrow", children: /* @__PURE__ */ jsx126(Icon, { icon: expandArrowName }) })
7332
7521
  ]
7333
7522
  }
7334
7523
  ),
@@ -7338,28 +7527,28 @@ var MenuListItem = (props) => {
7338
7527
  }
7339
7528
  );
7340
7529
  };
7341
- MenuListItem.states = states43;
7342
- MenuListItem.options = options41;
7530
+ MenuListItem.states = states46;
7531
+ MenuListItem.options = options44;
7343
7532
  MenuListItem.className = MENULISTITEM_CLASSNAME;
7344
- MenuListItem.defaultProps = defaultProps40;
7533
+ MenuListItem.defaultProps = defaultProps42;
7345
7534
 
7346
7535
  // src/menu/menu.spec.tsx
7347
- import { jsx as jsx118 } from "react/jsx-runtime";
7536
+ import { jsx as jsx127 } from "react/jsx-runtime";
7348
7537
  var MENU_CLASSNAME = `k-menu`;
7349
- var states44 = [];
7350
- var options42 = {};
7351
- var defaultProps41 = {
7538
+ var states47 = [];
7539
+ var options45 = {};
7540
+ var defaultProps43 = {
7352
7541
  orientation: "horizontal",
7353
7542
  header: true
7354
7543
  };
7355
7544
  var Menu = (props) => {
7356
7545
  const {
7357
7546
  children,
7358
- orientation = defaultProps41.orientation,
7359
- header = defaultProps41.header,
7547
+ orientation = defaultProps43.orientation,
7548
+ header = defaultProps43.header,
7360
7549
  ...other
7361
7550
  } = props;
7362
- return /* @__PURE__ */ jsx118(
7551
+ return /* @__PURE__ */ jsx127(
7363
7552
  "ul",
7364
7553
  {
7365
7554
  id: "menu",
@@ -7377,23 +7566,23 @@ var Menu = (props) => {
7377
7566
  }
7378
7567
  );
7379
7568
  };
7380
- Menu.states = states44;
7381
- Menu.options = options42;
7569
+ Menu.states = states47;
7570
+ Menu.options = options45;
7382
7571
  Menu.className = MENU_CLASSNAME;
7383
- Menu.defaultProps = defaultProps41;
7572
+ Menu.defaultProps = defaultProps43;
7384
7573
 
7385
7574
  // src/menu/menu-separator.spec.tsx
7386
- import { jsx as jsx119 } from "react/jsx-runtime";
7575
+ import { jsx as jsx128 } from "react/jsx-runtime";
7387
7576
  var SEPARATOR_CLASSNAME = `k-separator`;
7388
- var defaultProps42 = {
7577
+ var defaultProps44 = {
7389
7578
  orientation: "horizontal"
7390
7579
  };
7391
7580
  var MenuSeparator = (props) => {
7392
7581
  const {
7393
- orientation = defaultProps42.orientation,
7582
+ orientation = defaultProps44.orientation,
7394
7583
  ...other
7395
7584
  } = props;
7396
- return /* @__PURE__ */ jsx119(
7585
+ return /* @__PURE__ */ jsx128(
7397
7586
  "li",
7398
7587
  {
7399
7588
  ...other,
@@ -7410,25 +7599,25 @@ var MenuSeparator = (props) => {
7410
7599
  };
7411
7600
 
7412
7601
  // src/menu/menu-item-content.tsx
7413
- import { Fragment as Fragment45, jsx as jsx120 } from "react/jsx-runtime";
7602
+ import { Fragment as Fragment45, jsx as jsx129 } from "react/jsx-runtime";
7414
7603
 
7415
7604
  // src/menu/menu-list.spec.tsx
7416
- import { jsx as jsx121 } from "react/jsx-runtime";
7605
+ import { jsx as jsx130 } from "react/jsx-runtime";
7417
7606
  import { createElement } from "react";
7418
7607
  var MENULIST_CLASSNAME = `k-menu-group`;
7419
- var states45 = [];
7420
- var options43 = {
7608
+ var states48 = [];
7609
+ var options46 = {
7421
7610
  size: [Size.small, Size.medium, Size.large]
7422
7611
  };
7423
- var defaultProps43 = {
7612
+ var defaultProps45 = {
7424
7613
  size: Size.medium,
7425
7614
  dir: "ltr"
7426
7615
  };
7427
7616
  var MenuList = (props) => {
7428
7617
  const {
7429
7618
  children,
7430
- size = defaultProps43.size,
7431
- dir = defaultProps43.dir,
7619
+ size = defaultProps45.size,
7620
+ dir = defaultProps45.dir,
7432
7621
  ...other
7433
7622
  } = props;
7434
7623
  const listChildren = [];
@@ -7441,7 +7630,7 @@ var MenuList = (props) => {
7441
7630
  );
7442
7631
  } else if (child.type === MenuSeparator) {
7443
7632
  listChildren.push(
7444
- /* @__PURE__ */ jsx121(MenuSeparator, {})
7633
+ /* @__PURE__ */ jsx130(MenuSeparator, {})
7445
7634
  );
7446
7635
  } else {
7447
7636
  listChildren.push(child);
@@ -7449,7 +7638,7 @@ var MenuList = (props) => {
7449
7638
  });
7450
7639
  }
7451
7640
  }
7452
- return /* @__PURE__ */ jsx121(
7641
+ return /* @__PURE__ */ jsx130(
7453
7642
  "ul",
7454
7643
  {
7455
7644
  ...other,
@@ -7464,25 +7653,25 @@ var MenuList = (props) => {
7464
7653
  }
7465
7654
  );
7466
7655
  };
7467
- MenuList.states = states45;
7468
- MenuList.options = options43;
7656
+ MenuList.states = states48;
7657
+ MenuList.options = options46;
7469
7658
  MenuList.className = MENULIST_CLASSNAME;
7470
- MenuList.defaultProps = defaultProps43;
7659
+ MenuList.defaultProps = defaultProps45;
7471
7660
 
7472
7661
  // src/menu-button/templates/menu-button-popup.tsx
7473
- import { jsx as jsx122, jsxs as jsxs53 } from "react/jsx-runtime";
7662
+ import { jsx as jsx131, jsxs as jsxs54 } from "react/jsx-runtime";
7474
7663
 
7475
7664
  // src/split-button/split-button.spec.tsx
7476
- import { Fragment as Fragment46, jsx as jsx123, jsxs as jsxs54 } from "react/jsx-runtime";
7665
+ import { Fragment as Fragment46, jsx as jsx132, jsxs as jsxs55 } from "react/jsx-runtime";
7477
7666
  var SPLITBUTTON_CLASSNAME = `k-split-button`;
7478
- var states46 = [
7667
+ var states49 = [
7479
7668
  States.hover,
7480
7669
  States.focus,
7481
7670
  States.active,
7482
7671
  States.selected,
7483
7672
  States.disabled
7484
7673
  ];
7485
- var options44 = {
7674
+ var options47 = {
7486
7675
  size: [Size.small, Size.medium, Size.large],
7487
7676
  rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full],
7488
7677
  fillMode: [FillMode.solid, FillMode.flat, FillMode.outline, FillMode.clear, FillMode.link],
@@ -7500,7 +7689,7 @@ var options44 = {
7500
7689
  ThemeColor.inverse
7501
7690
  ]
7502
7691
  };
7503
- var defaultProps44 = {
7692
+ var defaultProps46 = {
7504
7693
  size: Size.medium,
7505
7694
  rounded: Roundness.medium,
7506
7695
  fillMode: FillMode.solid,
@@ -7509,10 +7698,10 @@ var defaultProps44 = {
7509
7698
  };
7510
7699
  var SplitButton = (props) => {
7511
7700
  const {
7512
- size = defaultProps44.size,
7513
- rounded = defaultProps44.rounded,
7514
- fillMode = defaultProps44.fillMode,
7515
- themeColor = defaultProps44.themeColor,
7701
+ size = defaultProps46.size,
7702
+ rounded = defaultProps46.rounded,
7703
+ fillMode = defaultProps46.fillMode,
7704
+ themeColor = defaultProps46.themeColor,
7516
7705
  hover,
7517
7706
  focus,
7518
7707
  active,
@@ -7520,13 +7709,13 @@ var SplitButton = (props) => {
7520
7709
  disabled,
7521
7710
  icon,
7522
7711
  text,
7523
- arrowIconName = defaultProps44.arrowIconName,
7712
+ arrowIconName = defaultProps46.arrowIconName,
7524
7713
  popup,
7525
7714
  opened,
7526
7715
  ...other
7527
7716
  } = props;
7528
- return /* @__PURE__ */ jsxs54(Fragment46, { children: [
7529
- /* @__PURE__ */ jsxs54(
7717
+ return /* @__PURE__ */ jsxs55(Fragment46, { children: [
7718
+ /* @__PURE__ */ jsxs55(
7530
7719
  "div",
7531
7720
  {
7532
7721
  ...other,
@@ -7539,7 +7728,7 @@ var SplitButton = (props) => {
7539
7728
  })
7540
7729
  ),
7541
7730
  children: [
7542
- /* @__PURE__ */ jsx123(
7731
+ /* @__PURE__ */ jsx132(
7543
7732
  Button,
7544
7733
  {
7545
7734
  text,
@@ -7556,7 +7745,7 @@ var SplitButton = (props) => {
7556
7745
  children: props.children
7557
7746
  }
7558
7747
  ),
7559
- /* @__PURE__ */ jsx123(
7748
+ /* @__PURE__ */ jsx132(
7560
7749
  Button,
7561
7750
  {
7562
7751
  className: "k-split-button-arrow",
@@ -7570,30 +7759,30 @@ var SplitButton = (props) => {
7570
7759
  ]
7571
7760
  }
7572
7761
  ),
7573
- opened && popup && /* @__PURE__ */ jsx123(Popup, { className: "k-menu-popup", children: popup })
7762
+ opened && popup && /* @__PURE__ */ jsx132(Popup, { className: "k-menu-popup", children: popup })
7574
7763
  ] });
7575
7764
  };
7576
- SplitButton.states = states46;
7577
- SplitButton.options = options44;
7765
+ SplitButton.states = states49;
7766
+ SplitButton.options = options47;
7578
7767
  SplitButton.className = SPLITBUTTON_CLASSNAME;
7579
- SplitButton.defaultProps = defaultProps44;
7768
+ SplitButton.defaultProps = defaultProps46;
7580
7769
  var split_button_spec_default = SplitButton;
7581
7770
 
7582
7771
  // src/toolbar/toolbar.spec.tsx
7583
- import { jsx as jsx124 } from "react/jsx-runtime";
7772
+ import { jsx as jsx133 } from "react/jsx-runtime";
7584
7773
  var TOOLBAR_CLASSNAME = `k-toolbar`;
7585
- var states47 = [
7774
+ var states50 = [
7586
7775
  States.focus
7587
7776
  ];
7588
- var options45 = {
7777
+ var options48 = {
7589
7778
  size: [Size.small, Size.medium, Size.large]
7590
7779
  };
7591
- var defaultProps45 = {
7780
+ var defaultProps47 = {
7592
7781
  size: Size.medium
7593
7782
  };
7594
7783
  var Toolbar = (props) => {
7595
7784
  const {
7596
- size = defaultProps45.size,
7785
+ size = defaultProps47.size,
7597
7786
  focus,
7598
7787
  resizable,
7599
7788
  ...other
@@ -7603,7 +7792,7 @@ var Toolbar = (props) => {
7603
7792
  const tempToolbarChildren = [];
7604
7793
  if (child.type === Button && child.props.className && child.props.className.includes("k-toolbar-overflow-button")) {
7605
7794
  tempToolbarChildren.push(
7606
- /* @__PURE__ */ jsx124(
7795
+ /* @__PURE__ */ jsx133(
7607
7796
  Button,
7608
7797
  {
7609
7798
  ...child.props,
@@ -7614,7 +7803,7 @@ var Toolbar = (props) => {
7614
7803
  );
7615
7804
  } else if (child.type === Button && child.props.className && child.props.className.includes("k-toggle-button")) {
7616
7805
  tempToolbarChildren.push(
7617
- /* @__PURE__ */ jsx124(
7806
+ /* @__PURE__ */ jsx133(
7618
7807
  Button,
7619
7808
  {
7620
7809
  ...child.props,
@@ -7625,7 +7814,7 @@ var Toolbar = (props) => {
7625
7814
  );
7626
7815
  } else if (child.type === Button) {
7627
7816
  tempToolbarChildren.push(
7628
- /* @__PURE__ */ jsx124(
7817
+ /* @__PURE__ */ jsx133(
7629
7818
  Button,
7630
7819
  {
7631
7820
  ...child.props,
@@ -7636,7 +7825,7 @@ var Toolbar = (props) => {
7636
7825
  );
7637
7826
  } else if (child.type === MenuButton) {
7638
7827
  tempToolbarChildren.push(
7639
- /* @__PURE__ */ jsx124(
7828
+ /* @__PURE__ */ jsx133(
7640
7829
  MenuButton,
7641
7830
  {
7642
7831
  ...child.props,
@@ -7647,7 +7836,7 @@ var Toolbar = (props) => {
7647
7836
  );
7648
7837
  } else if (child.type === split_button_spec_default) {
7649
7838
  tempToolbarChildren.push(
7650
- /* @__PURE__ */ jsx124(
7839
+ /* @__PURE__ */ jsx133(
7651
7840
  split_button_spec_default,
7652
7841
  {
7653
7842
  ...child.props,
@@ -7661,7 +7850,7 @@ var Toolbar = (props) => {
7661
7850
  const childrenArray = Array.isArray(child.props.children) ? child.props.children : [child.props.children];
7662
7851
  childrenArray.forEach((button, bindex) => {
7663
7852
  buttonGroupItems.push(
7664
- /* @__PURE__ */ jsx124(
7853
+ /* @__PURE__ */ jsx133(
7665
7854
  Button,
7666
7855
  {
7667
7856
  ...button.props,
@@ -7672,7 +7861,7 @@ var Toolbar = (props) => {
7672
7861
  );
7673
7862
  });
7674
7863
  tempToolbarChildren.push(
7675
- /* @__PURE__ */ jsx124(
7864
+ /* @__PURE__ */ jsx133(
7676
7865
  ButtonGroup,
7677
7866
  {
7678
7867
  ...child.props,
@@ -7684,7 +7873,7 @@ var Toolbar = (props) => {
7684
7873
  );
7685
7874
  } else if (child.type === Combobox) {
7686
7875
  tempToolbarChildren.push(
7687
- /* @__PURE__ */ jsx124(
7876
+ /* @__PURE__ */ jsx133(
7688
7877
  Combobox,
7689
7878
  {
7690
7879
  ...child.props,
@@ -7695,7 +7884,7 @@ var Toolbar = (props) => {
7695
7884
  );
7696
7885
  } else if (child.type === DropdownList) {
7697
7886
  tempToolbarChildren.push(
7698
- /* @__PURE__ */ jsx124(
7887
+ /* @__PURE__ */ jsx133(
7699
7888
  DropdownList,
7700
7889
  {
7701
7890
  ...child.props,
@@ -7706,7 +7895,7 @@ var Toolbar = (props) => {
7706
7895
  );
7707
7896
  } else if (child.type === ColorPicker) {
7708
7897
  tempToolbarChildren.push(
7709
- /* @__PURE__ */ jsx124(
7898
+ /* @__PURE__ */ jsx133(
7710
7899
  ColorPicker,
7711
7900
  {
7712
7901
  ...child.props,
@@ -7728,7 +7917,7 @@ var Toolbar = (props) => {
7728
7917
  addUniqueToolClass(child, index);
7729
7918
  });
7730
7919
  }
7731
- return /* @__PURE__ */ jsx124(
7920
+ return /* @__PURE__ */ jsx133(
7732
7921
  "div",
7733
7922
  {
7734
7923
  ...other,
@@ -7749,26 +7938,26 @@ var Toolbar = (props) => {
7749
7938
  }
7750
7939
  );
7751
7940
  };
7752
- Toolbar.states = states47;
7753
- Toolbar.options = options45;
7941
+ Toolbar.states = states50;
7942
+ Toolbar.options = options48;
7754
7943
  Toolbar.className = TOOLBAR_CLASSNAME;
7755
- Toolbar.defaultProps = defaultProps45;
7944
+ Toolbar.defaultProps = defaultProps47;
7756
7945
 
7757
7946
  // src/toolbar/toolbar-angular.spec.tsx
7758
- import { jsx as jsx125 } from "react/jsx-runtime";
7947
+ import { jsx as jsx134 } from "react/jsx-runtime";
7759
7948
  var TOOLBARANGULAR_CLASSNAME = `k-toolbar`;
7760
- var states48 = [
7949
+ var states51 = [
7761
7950
  States.focus
7762
7951
  ];
7763
- var options46 = {
7952
+ var options49 = {
7764
7953
  size: [Size.small, Size.medium, Size.large]
7765
7954
  };
7766
- var defaultProps46 = {
7955
+ var defaultProps48 = {
7767
7956
  size: Size.medium
7768
7957
  };
7769
7958
  var ToolbarAngular = (props) => {
7770
7959
  const {
7771
- size = defaultProps46.size,
7960
+ size = defaultProps48.size,
7772
7961
  focus,
7773
7962
  resizable,
7774
7963
  ...other
@@ -7778,7 +7967,7 @@ var ToolbarAngular = (props) => {
7778
7967
  const tempToolbarChildren = [];
7779
7968
  if (child.type === Button && child.props.className && child.props.className.includes("k-toolbar-overflow-button")) {
7780
7969
  tempToolbarChildren.push(
7781
- /* @__PURE__ */ jsx125("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx125(
7970
+ /* @__PURE__ */ jsx134("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx134(
7782
7971
  Button,
7783
7972
  {
7784
7973
  ...child.props,
@@ -7789,7 +7978,7 @@ var ToolbarAngular = (props) => {
7789
7978
  );
7790
7979
  } else if (child.type === Button && child.props.className && child.props.className.includes("k-toggle-button")) {
7791
7980
  tempToolbarChildren.push(
7792
- /* @__PURE__ */ jsx125("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx125(
7981
+ /* @__PURE__ */ jsx134("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx134(
7793
7982
  Button,
7794
7983
  {
7795
7984
  ...child.props,
@@ -7800,7 +7989,7 @@ var ToolbarAngular = (props) => {
7800
7989
  );
7801
7990
  } else if (child.type === Button) {
7802
7991
  tempToolbarChildren.push(
7803
- /* @__PURE__ */ jsx125("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx125(
7992
+ /* @__PURE__ */ jsx134("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx134(
7804
7993
  Button,
7805
7994
  {
7806
7995
  ...child.props,
@@ -7811,7 +8000,7 @@ var ToolbarAngular = (props) => {
7811
8000
  );
7812
8001
  } else if (child.type === MenuButton) {
7813
8002
  tempToolbarChildren.push(
7814
- /* @__PURE__ */ jsx125("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx125(
8003
+ /* @__PURE__ */ jsx134("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx134(
7815
8004
  MenuButton,
7816
8005
  {
7817
8006
  ...child.props,
@@ -7822,7 +8011,7 @@ var ToolbarAngular = (props) => {
7822
8011
  );
7823
8012
  } else if (child.type === split_button_spec_default) {
7824
8013
  tempToolbarChildren.push(
7825
- /* @__PURE__ */ jsx125("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx125(
8014
+ /* @__PURE__ */ jsx134("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx134(
7826
8015
  split_button_spec_default,
7827
8016
  {
7828
8017
  ...child.props,
@@ -7836,7 +8025,7 @@ var ToolbarAngular = (props) => {
7836
8025
  const childrenArray = Array.isArray(child.props.children) ? child.props.children : [child.props.children];
7837
8026
  childrenArray.forEach((button, bindex) => {
7838
8027
  buttonGroupItems.push(
7839
- /* @__PURE__ */ jsx125(
8028
+ /* @__PURE__ */ jsx134(
7840
8029
  Button,
7841
8030
  {
7842
8031
  ...button.props,
@@ -7847,7 +8036,7 @@ var ToolbarAngular = (props) => {
7847
8036
  );
7848
8037
  });
7849
8038
  tempToolbarChildren.push(
7850
- /* @__PURE__ */ jsx125("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx125(
8039
+ /* @__PURE__ */ jsx134("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx134(
7851
8040
  ButtonGroup,
7852
8041
  {
7853
8042
  ...child.props,
@@ -7859,7 +8048,7 @@ var ToolbarAngular = (props) => {
7859
8048
  );
7860
8049
  } else if (child.type === Combobox) {
7861
8050
  tempToolbarChildren.push(
7862
- /* @__PURE__ */ jsx125("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx125(
8051
+ /* @__PURE__ */ jsx134("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx134(
7863
8052
  Combobox,
7864
8053
  {
7865
8054
  ...child.props,
@@ -7870,7 +8059,7 @@ var ToolbarAngular = (props) => {
7870
8059
  );
7871
8060
  } else if (child.type === DropdownList) {
7872
8061
  tempToolbarChildren.push(
7873
- /* @__PURE__ */ jsx125("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx125(
8062
+ /* @__PURE__ */ jsx134("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx134(
7874
8063
  DropdownList,
7875
8064
  {
7876
8065
  ...child.props,
@@ -7881,7 +8070,7 @@ var ToolbarAngular = (props) => {
7881
8070
  );
7882
8071
  } else if (child.type === ColorPicker) {
7883
8072
  tempToolbarChildren.push(
7884
- /* @__PURE__ */ jsx125("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx125(
8073
+ /* @__PURE__ */ jsx134("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx134(
7885
8074
  ColorPicker,
7886
8075
  {
7887
8076
  ...child.props,
@@ -7903,7 +8092,7 @@ var ToolbarAngular = (props) => {
7903
8092
  addUniqueToolClass(child, index);
7904
8093
  });
7905
8094
  }
7906
- return /* @__PURE__ */ jsx125(
8095
+ return /* @__PURE__ */ jsx134(
7907
8096
  "div",
7908
8097
  {
7909
8098
  ...other,
@@ -7924,28 +8113,28 @@ var ToolbarAngular = (props) => {
7924
8113
  }
7925
8114
  );
7926
8115
  };
7927
- ToolbarAngular.states = states48;
7928
- ToolbarAngular.options = options46;
8116
+ ToolbarAngular.states = states51;
8117
+ ToolbarAngular.options = options49;
7929
8118
  ToolbarAngular.className = TOOLBARANGULAR_CLASSNAME;
7930
- ToolbarAngular.defaultProps = defaultProps46;
8119
+ ToolbarAngular.defaultProps = defaultProps48;
7931
8120
 
7932
8121
  // src/toolbar/toolbar-separator.tsx
7933
- import { jsx as jsx126 } from "react/jsx-runtime";
8122
+ import { jsx as jsx135 } from "react/jsx-runtime";
7934
8123
 
7935
8124
  // src/toolbar/toolbar-item.spec.tsx
7936
- import { jsx as jsx127 } from "react/jsx-runtime";
8125
+ import { jsx as jsx136 } from "react/jsx-runtime";
7937
8126
  var TOOLBARITEM_CLASSNAME = `k-toolbar-item`;
7938
- var states49 = [
8127
+ var states52 = [
7939
8128
  States.focus
7940
8129
  ];
7941
- var options47 = {};
7942
- var defaultProps47 = {};
8130
+ var options50 = {};
8131
+ var defaultProps49 = {};
7943
8132
  var ToolbarItem = (props) => {
7944
8133
  const {
7945
8134
  focus,
7946
8135
  ...other
7947
8136
  } = props;
7948
- return /* @__PURE__ */ jsx127(
8137
+ return /* @__PURE__ */ jsx136(
7949
8138
  "div",
7950
8139
  {
7951
8140
  ...other,
@@ -7960,20 +8149,20 @@ var ToolbarItem = (props) => {
7960
8149
  }
7961
8150
  );
7962
8151
  };
7963
- ToolbarItem.states = states49;
7964
- ToolbarItem.options = options47;
8152
+ ToolbarItem.states = states52;
8153
+ ToolbarItem.options = options50;
7965
8154
  ToolbarItem.className = TOOLBARITEM_CLASSNAME;
7966
- ToolbarItem.defaultProps = defaultProps47;
8155
+ ToolbarItem.defaultProps = defaultProps49;
7967
8156
 
7968
8157
  // src/toolbar/toolbar-popup.spec.tsx
7969
- import { jsx as jsx128 } from "react/jsx-runtime";
8158
+ import { jsx as jsx137 } from "react/jsx-runtime";
7970
8159
  var TOOLBARPOPUP_CLASSNAME = `k-toolbar-popup`;
7971
- var states50 = [];
7972
- var options48 = {};
7973
- var defaultProps48 = {};
8160
+ var states53 = [];
8161
+ var options51 = {};
8162
+ var defaultProps50 = {};
7974
8163
  var ToolbarPopup = (props) => {
7975
8164
  const { ...other } = props;
7976
- return /* @__PURE__ */ jsx128(
8165
+ return /* @__PURE__ */ jsx137(
7977
8166
  Popup,
7978
8167
  {
7979
8168
  ...other,
@@ -7985,222 +8174,367 @@ var ToolbarPopup = (props) => {
7985
8174
  }
7986
8175
  );
7987
8176
  };
7988
- ToolbarPopup.states = states50;
7989
- ToolbarPopup.options = options48;
8177
+ ToolbarPopup.states = states53;
8178
+ ToolbarPopup.options = options51;
7990
8179
  ToolbarPopup.className = TOOLBARPOPUP_CLASSNAME;
7991
- ToolbarPopup.defaultProps = defaultProps48;
8180
+ ToolbarPopup.defaultProps = defaultProps50;
7992
8181
 
7993
8182
  // src/split-button/templates/icon-split-button.tsx
7994
- import { jsx as jsx129 } from "react/jsx-runtime";
8183
+ import { jsx as jsx138 } from "react/jsx-runtime";
7995
8184
 
7996
8185
  // src/split-button/templates/icon-text-split-button.tsx
7997
- import { jsx as jsx130 } from "react/jsx-runtime";
8186
+ import { jsx as jsx139 } from "react/jsx-runtime";
7998
8187
 
7999
8188
  // src/split-button/templates/text-split-button.tsx
8000
- import { jsx as jsx131 } from "react/jsx-runtime";
8189
+ import { jsx as jsx140 } from "react/jsx-runtime";
8001
8190
 
8002
8191
  // src/split-button/templates/split-button-popup.tsx
8003
- import { jsx as jsx132, jsxs as jsxs55 } from "react/jsx-runtime";
8192
+ import { jsx as jsx141, jsxs as jsxs56 } from "react/jsx-runtime";
8004
8193
 
8005
8194
  // src/toolbar/templates/toolbar-normal.tsx
8006
- import { jsx as jsx133, jsxs as jsxs56 } from "react/jsx-runtime";
8195
+ import { jsx as jsx142, jsxs as jsxs57 } from "react/jsx-runtime";
8007
8196
 
8008
8197
  // src/toolbar/templates/toolbar-resizable.tsx
8009
- import { jsx as jsx134 } from "react/jsx-runtime";
8198
+ import { jsx as jsx143 } from "react/jsx-runtime";
8010
8199
 
8011
8200
  // src/toolbar/templates/toolbar-angular-normal.tsx
8012
- import { jsx as jsx135 } from "react/jsx-runtime";
8201
+ import { jsx as jsx144 } from "react/jsx-runtime";
8013
8202
 
8014
8203
  // src/toolbar/templates/toolbar-angular-resizable.tsx
8015
- import { jsx as jsx136 } from "react/jsx-runtime";
8204
+ import { jsx as jsx145 } from "react/jsx-runtime";
8205
+
8206
+ // src/scheduler/scheduler-toolbar.spec.tsx
8207
+ import { Fragment as Fragment47, jsx as jsx146, jsxs as jsxs58 } from "react/jsx-runtime";
8208
+ var className19 = "k-scheduler-toolbar";
8209
+ var SchedulerToolbar = (props) => {
8210
+ const { footer, ...others } = props;
8211
+ return /* @__PURE__ */ jsx146(
8212
+ Toolbar,
8213
+ {
8214
+ ...others,
8215
+ className: classNames(
8216
+ props.className,
8217
+ {
8218
+ [footer ? "k-scheduler-footer" : className19]: true
8219
+ }
8220
+ ),
8221
+ children: props.children || /* @__PURE__ */ jsxs58(Fragment47, { children: [
8222
+ /* @__PURE__ */ jsxs58(ButtonGroup, { className: "k-scheduler-navigation", children: [
8223
+ /* @__PURE__ */ jsx146(Button, { className: "k-group-start", children: "Today" }),
8224
+ /* @__PURE__ */ jsx146(Button, { icon: "caret-alt-left" }),
8225
+ /* @__PURE__ */ jsx146(Button, { className: "k-group-end", icon: "caret-alt-right" })
8226
+ ] }),
8227
+ /* @__PURE__ */ jsx146(Button, { icon: "calendar", className: "k-nav-current", fillMode: "flat", children: "Monday, June 13, 2022" }),
8228
+ /* @__PURE__ */ jsx146("span", { className: "k-spacer" }),
8229
+ /* @__PURE__ */ jsxs58(ButtonGroup, { className: "k-scheduler-views", children: [
8230
+ /* @__PURE__ */ jsx146(Button, { className: "k-group-start", selected: true, children: "Day" }),
8231
+ /* @__PURE__ */ jsx146(Button, { children: "Week" }),
8232
+ /* @__PURE__ */ jsx146(Button, { children: "Month" }),
8233
+ /* @__PURE__ */ jsx146(Button, { children: "Timeline" }),
8234
+ /* @__PURE__ */ jsx146(Button, { className: "k-group-end", children: "Agenda" })
8235
+ ] })
8236
+ ] })
8237
+ }
8238
+ );
8239
+ };
8240
+
8241
+ // src/scheduler/scheduler-body.spec.tsx
8242
+ import { jsx as jsx147 } from "react/jsx-runtime";
8243
+ var className20 = "k-scheduler-body";
8244
+ var SchedulerBody = (props) => {
8245
+ const {
8246
+ as: Component = "div",
8247
+ ...other
8248
+ } = props;
8249
+ return /* @__PURE__ */ jsx147(
8250
+ Component,
8251
+ {
8252
+ ...other,
8253
+ className: classNames(
8254
+ className20,
8255
+ props.className
8256
+ ),
8257
+ children: props.children
8258
+ }
8259
+ );
8260
+ };
8261
+
8262
+ // src/scheduler/scheduler-head.spec.tsx
8263
+ import { jsx as jsx148 } from "react/jsx-runtime";
8264
+ var className21 = "k-scheduler-head";
8265
+ var SchedulerHead = (props) => {
8266
+ const {
8267
+ as: Component = "div",
8268
+ ...other
8269
+ } = props;
8270
+ return /* @__PURE__ */ jsx148(
8271
+ Component,
8272
+ {
8273
+ ...other,
8274
+ className: classNames(
8275
+ className21,
8276
+ props.className
8277
+ ),
8278
+ children: props.children
8279
+ }
8280
+ );
8281
+ };
8016
8282
 
8017
- // src/scheduler/tests/scheduler-jquery-month.tsx
8018
- import { Fragment as Fragment47, jsx as jsx137, jsxs as jsxs57 } from "react/jsx-runtime";
8019
- var style = `
8020
- #test-area {
8021
- max-width: 1200px;
8283
+ // src/scheduler/scheduler-group.spec.tsx
8284
+ import { jsx as jsx149 } from "react/jsx-runtime";
8285
+ var className22 = "k-scheduler-group";
8286
+ var states54 = [];
8287
+ var options52 = {};
8288
+ var defaultProps51 = {
8289
+ orientation: "horizontal"
8290
+ };
8291
+ var SchedulerGroup = (props) => {
8292
+ const {
8293
+ orientation = defaultProps51.orientation,
8294
+ ...other
8295
+ } = props;
8296
+ return /* @__PURE__ */ jsx149(
8297
+ "div",
8298
+ {
8299
+ ...other,
8300
+ className: classNames(
8301
+ className22,
8302
+ props.className,
8303
+ {
8304
+ "k-group-horizontal": orientation === "horizontal"
8305
+ }
8306
+ ),
8307
+ children: props.children
8022
8308
  }
8309
+ );
8310
+ };
8311
+ SchedulerGroup.states = states54;
8312
+ SchedulerGroup.options = options52;
8313
+ SchedulerGroup.defaultProps = defaultProps51;
8314
+ SchedulerGroup.className = className22;
8023
8315
 
8024
- .k-event {
8025
- --col: 1;
8026
- --row: 1;
8027
- --span: 1;
8028
- --slot: 1;
8029
- width: calc( ( (100% / 7) * var(--span) ) - 2px );
8030
- left: calc( ( (100% / 7) * (var(--col) - 1) ) + 1px );
8031
- top: calc( ( (100% / 6) * (var(--row) - 1) ) );
8032
- transform: translateY( calc( (100% * var( --slot )) + (1px * var( --slot )) ) );
8316
+ // src/scheduler/scheduler-event.spec.tsx
8317
+ import { Fragment as Fragment48, jsx as jsx150, jsxs as jsxs59 } from "react/jsx-runtime";
8318
+ var className23 = "k-event";
8319
+ var states55 = [
8320
+ States.hover,
8321
+ States.focus,
8322
+ States.selected
8323
+ ];
8324
+ var options53 = {};
8325
+ var defaultProps52 = {
8326
+ resizable: "vertical",
8327
+ eventPrefix: /* @__PURE__ */ jsx150(Icon, { icon: "arrow-rotate-cw" }),
8328
+ eventSuffix: /* @__PURE__ */ jsx150(Fragment48, { children: /* @__PURE__ */ jsx150("a", { href: "#", className: "k-link k-event-delete", children: /* @__PURE__ */ jsx150(Icon, { icon: "x" }) }) })
8329
+ };
8330
+ var SchedulerEvent = (props) => {
8331
+ const {
8332
+ inverse,
8333
+ ongoing,
8334
+ multiDay,
8335
+ resizable = defaultProps52.resizable,
8336
+ hover,
8337
+ focus,
8338
+ selected,
8339
+ eventPrefix = defaultProps52.eventPrefix,
8340
+ eventSuffix = defaultProps52.eventSuffix,
8341
+ ...others
8342
+ } = props;
8343
+ return /* @__PURE__ */ jsxs59(
8344
+ "div",
8345
+ {
8346
+ ...others,
8347
+ className: classNames(
8348
+ className23,
8349
+ props.className,
8350
+ stateClassNames(className23, {
8351
+ hover,
8352
+ focus,
8353
+ selected
8354
+ }),
8355
+ {
8356
+ "k-event-inverse": inverse,
8357
+ "k-event-ongoing": ongoing
8358
+ }
8359
+ ),
8360
+ children: [
8361
+ /* @__PURE__ */ jsx150("span", { className: "k-event-actions", children: eventPrefix }),
8362
+ /* @__PURE__ */ jsx150("div", { children: props.children }),
8363
+ /* @__PURE__ */ jsx150("span", { className: "k-event-actions", children: eventSuffix }),
8364
+ multiDay && /* @__PURE__ */ jsxs59(Fragment48, { children: [
8365
+ /* @__PURE__ */ jsx150("span", { className: "k-event-top-actions", children: /* @__PURE__ */ jsx150(Icon, { icon: "caret-alt-up" }) }),
8366
+ /* @__PURE__ */ jsx150("span", { className: "k-event-bottom-actions", children: /* @__PURE__ */ jsx150(Icon, { icon: "caret-alt-down" }) })
8367
+ ] }),
8368
+ resizable === "vertical" ? /* @__PURE__ */ jsxs59(Fragment48, { children: [
8369
+ /* @__PURE__ */ jsx150("span", { className: "k-resize-handle k-resize-n" }),
8370
+ /* @__PURE__ */ jsx150("span", { className: "k-resize-handle k-resize-s" })
8371
+ ] }) : resizable === "horizontal" && /* @__PURE__ */ jsxs59(Fragment48, { children: [
8372
+ /* @__PURE__ */ jsx150("span", { className: "k-resize-handle k-resize-w" }),
8373
+ /* @__PURE__ */ jsx150("span", { className: "k-resize-handle k-resize-e" })
8374
+ ] })
8375
+ ]
8033
8376
  }
8034
- .k-scheduler-monthview .k-scheduler-table td {
8035
- height: auto;
8377
+ );
8378
+ };
8379
+ SchedulerEvent.states = states55;
8380
+ SchedulerEvent.options = options53;
8381
+ SchedulerEvent.defaultProps = defaultProps52;
8382
+ SchedulerEvent.className = className23;
8383
+
8384
+ // src/scheduler/scheduler-task.spec.tsx
8385
+ import { jsx as jsx151, jsxs as jsxs60 } from "react/jsx-runtime";
8386
+ var className24 = "k-task";
8387
+ var states56 = [];
8388
+ var options54 = {};
8389
+ var defaultProps53 = {
8390
+ markStyle: { backgroundColor: "gold" }
8391
+ };
8392
+ var SchedulerTask = (props) => {
8393
+ const {
8394
+ text,
8395
+ markStyle,
8396
+ recurring,
8397
+ closable,
8398
+ ...other
8399
+ } = props;
8400
+ return /* @__PURE__ */ jsxs60(
8401
+ "div",
8402
+ {
8403
+ ...other,
8404
+ className: classNames(
8405
+ className24,
8406
+ props.className
8407
+ ),
8408
+ children: [
8409
+ /* @__PURE__ */ jsx151("span", { className: "k-scheduler-mark", style: markStyle }),
8410
+ recurring && /* @__PURE__ */ jsx151(icon_spec_default, { icon: "arrow-rotate-cw" }),
8411
+ /* @__PURE__ */ jsx151("span", { className: "k-scheduler-task text", children: text }),
8412
+ closable && /* @__PURE__ */ jsx151("a", { href: "#", className: "k-link k-event-delete", children: /* @__PURE__ */ jsx151(icon_spec_default, { icon: "x" }) })
8413
+ ]
8036
8414
  }
8037
- `;
8038
- var scheduler_jquery_month_default = () => /* @__PURE__ */ jsxs57(Fragment47, { children: [
8039
- /* @__PURE__ */ jsx137("style", { children: style }),
8040
- /* @__PURE__ */ jsx137("div", { id: "test-area", className: "k-d-grid k-grid-cols-1", children: /* @__PURE__ */ jsxs57("div", { className: "k-widget k-scheduler", children: [
8041
- /* @__PURE__ */ jsxs57(Toolbar, { className: "k-scheduler-toolbar", children: [
8042
- /* @__PURE__ */ jsxs57(ButtonGroup, { className: "k-scheduler-navigation", children: [
8043
- /* @__PURE__ */ jsx137(Button, { className: "k-group-start", children: "Today" }),
8044
- /* @__PURE__ */ jsx137(Button, { icon: "caret-alt-left" }),
8045
- /* @__PURE__ */ jsx137(Button, { className: "k-group-end", icon: "caret-alt-right" })
8415
+ );
8416
+ };
8417
+ SchedulerTask.states = states56;
8418
+ SchedulerTask.options = options54;
8419
+ SchedulerTask.defaultProps = defaultProps53;
8420
+ SchedulerTask.className = className24;
8421
+
8422
+ // src/scheduler/templates/scheduler-week.tsx
8423
+ import { Fragment as Fragment49, jsx as jsx152, jsxs as jsxs61 } from "react/jsx-runtime";
8424
+
8425
+ // src/scheduler/templates/scheduler-month.tsx
8426
+ import { Fragment as Fragment50, jsx as jsx153, jsxs as jsxs62 } from "react/jsx-runtime";
8427
+
8428
+ // src/scheduler/templates/scheduler-timeline.tsx
8429
+ import { Fragment as Fragment51, jsx as jsx154, jsxs as jsxs63 } from "react/jsx-runtime";
8430
+
8431
+ // src/scheduler/templates/scheduler-agenda.tsx
8432
+ import { Fragment as Fragment52, jsx as jsx155, jsxs as jsxs64 } from "react/jsx-runtime";
8433
+
8434
+ // src/scheduler/templates/scheduler-flex-day.tsx
8435
+ import { Fragment as Fragment53, jsx as jsx156, jsxs as jsxs65 } from "react/jsx-runtime";
8436
+
8437
+ // src/scheduler/templates/scheduler-flex-week.tsx
8438
+ import { Fragment as Fragment54, jsx as jsx157, jsxs as jsxs66 } from "react/jsx-runtime";
8439
+
8440
+ // src/scheduler/templates/scheduler-flex-month.tsx
8441
+ import { Fragment as Fragment55, jsx as jsx158, jsxs as jsxs67 } from "react/jsx-runtime";
8442
+
8443
+ // src/scheduler/templates/scheduler-flex-timeline.tsx
8444
+ import { Fragment as Fragment56, jsx as jsx159, jsxs as jsxs68 } from "react/jsx-runtime";
8445
+
8446
+ // src/scheduler/templates/scheduler-flex-agenda.tsx
8447
+ import { Fragment as Fragment57, jsx as jsx160, jsxs as jsxs69 } from "react/jsx-runtime";
8448
+
8449
+ // src/scheduler/templates/scheduler-horizontal-grouping.tsx
8450
+ import { Fragment as Fragment58, jsx as jsx161, jsxs as jsxs70 } from "react/jsx-runtime";
8451
+
8452
+ // src/scheduler/templates/scheduler-vertical-grouping.tsx
8453
+ import { Fragment as Fragment59, jsx as jsx162, jsxs as jsxs71 } from "react/jsx-runtime";
8454
+
8455
+ // src/scheduler/templates/scheduler-flex-horizontal-grouping.tsx
8456
+ import { Fragment as Fragment60, jsx as jsx163, jsxs as jsxs72 } from "react/jsx-runtime";
8457
+
8458
+ // src/scheduler/templates/scheduler-flex-vertical-grouping.tsx
8459
+ import { Fragment as Fragment61, jsx as jsx164, jsxs as jsxs73 } from "react/jsx-runtime";
8460
+
8461
+ // src/scheduler/templates/scheduler-day.tsx
8462
+ import { Fragment as Fragment62, jsx as jsx165, jsxs as jsxs74 } from "react/jsx-runtime";
8463
+ var SchedulerDay = ({ style, ...props }) => /* @__PURE__ */ jsx165(
8464
+ Scheduler,
8465
+ {
8466
+ style,
8467
+ layout: "table",
8468
+ view: "day",
8469
+ toolbar: /* @__PURE__ */ jsx165(SchedulerToolbar, {}),
8470
+ footer: /* @__PURE__ */ jsx165(Fragment62, { children: /* @__PURE__ */ jsx165(SchedulerToolbar, { footer: true, children: /* @__PURE__ */ jsx165(Button, { icon: "clock", className: "k-scheduler-fullday", children: "Show business hours" }) }) }),
8471
+ children: /* @__PURE__ */ jsx165(Fragment62, { children: /* @__PURE__ */ jsxs74("tbody", { children: [
8472
+ /* @__PURE__ */ jsxs74(SchedulerHead, { as: "tr", children: [
8473
+ /* @__PURE__ */ jsx165("td", { children: /* @__PURE__ */ jsx165(SchedulerTimes, { children: /* @__PURE__ */ jsx165(SchedulerTable, { children: /* @__PURE__ */ jsxs74("tbody", { children: [
8474
+ /* @__PURE__ */ jsx165("tr", { style: { height: "37px" }, children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "th" }) }),
8475
+ /* @__PURE__ */ jsx165("tr", { style: { height: "36px" }, children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "th", allDay: true, text: "all day" }) })
8476
+ ] }) }) }) }),
8477
+ /* @__PURE__ */ jsx165("td", { children: /* @__PURE__ */ jsxs74(SchedulerHeader, { children: [
8478
+ /* @__PURE__ */ jsx165(SchedulerTable, { children: /* @__PURE__ */ jsx165("tbody", { children: /* @__PURE__ */ jsx165("tr", { className: "k-scheduler-date-group", children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "th", text: "Mon 6/13" }) }) }) }),
8479
+ /* @__PURE__ */ jsx165("div", { style: { position: "relative" }, children: /* @__PURE__ */ jsx165(SchedulerTable, { className: "k-scheduler-header-all-day", children: /* @__PURE__ */ jsx165("tbody", { children: /* @__PURE__ */ jsx165("tr", { style: { height: "36px" }, children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "td" }) }) }) }) })
8480
+ ] }) })
8046
8481
  ] }),
8047
- /* @__PURE__ */ jsx137(Button, { icon: "calendar", className: "k-nav-current", fillMode: "flat", children: "June, 2013" }),
8048
- /* @__PURE__ */ jsx137("span", { className: "k-spacer" }),
8049
- /* @__PURE__ */ jsxs57(ButtonGroup, { className: "k-scheduler-views", children: [
8050
- /* @__PURE__ */ jsx137(Button, { className: "k-group-start", children: "Day" }),
8051
- /* @__PURE__ */ jsx137(Button, { children: "Week" }),
8052
- /* @__PURE__ */ jsx137(Button, { selected: true, children: "Month" }),
8053
- /* @__PURE__ */ jsx137(Button, { children: "Timeline" }),
8054
- /* @__PURE__ */ jsx137(Button, { className: "k-group-end", children: "Agenda" })
8055
- ] })
8056
- ] }),
8057
- /* @__PURE__ */ jsx137("table", { className: "k-scheduler-layout k-scheduler-monthview k-scrollbar-v", children: /* @__PURE__ */ jsxs57("tbody", { children: [
8058
- /* @__PURE__ */ jsx137("tr", { children: /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("div", { className: "k-scheduler-header", children: /* @__PURE__ */ jsx137("div", { className: "k-scheduler-header-wrap", children: /* @__PURE__ */ jsx137("table", { className: "k-scheduler-table", children: /* @__PURE__ */ jsx137("tbody", { children: /* @__PURE__ */ jsxs57("tr", { children: [
8059
- /* @__PURE__ */ jsx137("th", { children: "Sunday" }),
8060
- /* @__PURE__ */ jsx137("th", { children: "Monday" }),
8061
- /* @__PURE__ */ jsx137("th", { children: "Tuesday" }),
8062
- /* @__PURE__ */ jsx137("th", { children: "Wednesday" }),
8063
- /* @__PURE__ */ jsx137("th", { children: "Thursday" }),
8064
- /* @__PURE__ */ jsx137("th", { children: "Friday" }),
8065
- /* @__PURE__ */ jsx137("th", { children: "Saturday" })
8066
- ] }) }) }) }) }) }) }),
8067
- /* @__PURE__ */ jsx137("tr", { children: /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsxs57("div", { className: "k-scheduler-content", style: { height: "480px" }, children: [
8068
- /* @__PURE__ */ jsx137("table", { className: "k-scheduler-table", children: /* @__PURE__ */ jsxs57("tbody", { children: [
8069
- /* @__PURE__ */ jsxs57("tr", { children: [
8070
- /* @__PURE__ */ jsx137("td", { className: "k-other-month", children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "26" }) }),
8071
- /* @__PURE__ */ jsx137("td", { className: "k-other-month", children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "27" }) }),
8072
- /* @__PURE__ */ jsx137("td", { className: "k-other-month", children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "28" }) }),
8073
- /* @__PURE__ */ jsx137("td", { className: "k-other-month", children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "29" }) }),
8074
- /* @__PURE__ */ jsx137("td", { className: "k-other-month", children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "30" }) }),
8075
- /* @__PURE__ */ jsx137("td", { className: "k-other-month", children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "31" }) }),
8076
- /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "01" }) })
8077
- ] }),
8078
- /* @__PURE__ */ jsxs57("tr", { children: [
8079
- /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "02" }) }),
8080
- /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "03" }) }),
8081
- /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "04" }) }),
8082
- /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "05" }) }),
8083
- /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "06" }) }),
8084
- /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "07" }) }),
8085
- /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "08" }) })
8086
- ] }),
8087
- /* @__PURE__ */ jsxs57("tr", { children: [
8088
- /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "09" }) }),
8089
- /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "10" }) }),
8090
- /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "11" }) }),
8091
- /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "12" }) }),
8092
- /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "13" }) }),
8093
- /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "14" }) }),
8094
- /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "15" }) })
8095
- ] }),
8096
- /* @__PURE__ */ jsxs57("tr", { children: [
8097
- /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "16" }) }),
8098
- /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "17" }) }),
8099
- /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "18" }) }),
8100
- /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "19" }) }),
8101
- /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "20" }) }),
8102
- /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "21" }) }),
8103
- /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "22" }) })
8104
- ] }),
8105
- /* @__PURE__ */ jsxs57("tr", { children: [
8106
- /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "23" }) }),
8107
- /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "24" }) }),
8108
- /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "25" }) }),
8109
- /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "26" }) }),
8110
- /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "27" }) }),
8111
- /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "28" }) }),
8112
- /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "29" }) })
8113
- ] }),
8114
- /* @__PURE__ */ jsxs57("tr", { children: [
8115
- /* @__PURE__ */ jsx137("td", { children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "30" }) }),
8116
- /* @__PURE__ */ jsx137("td", { className: " k-other-month", children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "01" }) }),
8117
- /* @__PURE__ */ jsx137("td", { className: " k-other-month", children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "02" }) }),
8118
- /* @__PURE__ */ jsx137("td", { className: " k-other-month", children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "03" }) }),
8119
- /* @__PURE__ */ jsx137("td", { className: " k-other-month", children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "04" }) }),
8120
- /* @__PURE__ */ jsx137("td", { className: " k-other-month", children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "05" }) }),
8121
- /* @__PURE__ */ jsx137("td", { className: " k-other-month", children: /* @__PURE__ */ jsx137("span", { className: "k-link k-nav-day", children: "06" }) })
8482
+ /* @__PURE__ */ jsxs74(SchedulerBody, { as: "tr", children: [
8483
+ /* @__PURE__ */ jsx165("td", { children: /* @__PURE__ */ jsx165(SchedulerTimes, { style: { height: "195px" }, children: /* @__PURE__ */ jsx165(SchedulerTable, { style: { height: "400px" }, children: /* @__PURE__ */ jsxs74("tbody", { children: [
8484
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "th", children: /* @__PURE__ */ jsx165("span", { children: "7:00 AM" }) }) }),
8485
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "th", cellType: ["slot"] }) }),
8486
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "th", children: /* @__PURE__ */ jsx165("span", { children: "8:00 AM" }) }) }),
8487
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "th", cellType: ["slot"] }) }),
8488
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "th", children: /* @__PURE__ */ jsx165("span", { children: "9:00 AM" }) }) }),
8489
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "th", cellType: ["slot"] }) }),
8490
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "th", children: /* @__PURE__ */ jsx165("span", { children: "10:00 AM" }) }) }),
8491
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "th", cellType: ["slot"] }) }),
8492
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "th", children: /* @__PURE__ */ jsx165("span", { children: "11:00 AM" }) }) }),
8493
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "th", cellType: ["slot"] }) }),
8494
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "th", children: /* @__PURE__ */ jsx165("span", { children: "12:00 PM" }) }) }),
8495
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "th", cellType: ["slot"] }) }),
8496
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "th", children: /* @__PURE__ */ jsx165("span", { children: "1:00 PM" }) }) }),
8497
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "th", cellType: ["slot"] }) }),
8498
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "th", children: /* @__PURE__ */ jsx165("span", { children: "2:00 PM" }) }) }),
8499
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "th", cellType: ["slot"] }) }),
8500
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "th", children: /* @__PURE__ */ jsx165("span", { children: "3:00 PM" }) }) }),
8501
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "th", cellType: ["slot"] }) }),
8502
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "th", children: /* @__PURE__ */ jsx165("span", { children: "4:00 PM" }) }) }),
8503
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "th", cellType: ["slot"] }) }),
8504
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "th", children: /* @__PURE__ */ jsx165("span", { children: "5:00 PM" }) }) }),
8505
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "th", cellType: ["slot"] }) })
8506
+ ] }) }) }) }),
8507
+ /* @__PURE__ */ jsx165("td", { children: /* @__PURE__ */ jsxs74(SchedulerContent, { style: { height: "195px" }, children: [
8508
+ /* @__PURE__ */ jsx165(SchedulerTable, { children: /* @__PURE__ */ jsxs74("tbody", { children: [
8509
+ /* @__PURE__ */ jsx165("tr", { className: "k-middle-row", children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }) }),
8510
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "td", className: "k-nonwork-hour", children: "\xA0" }) }),
8511
+ /* @__PURE__ */ jsx165("tr", { className: "k-middle-row", children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "td", children: "\xA0" }) }),
8512
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "td", children: "\xA0" }) }),
8513
+ /* @__PURE__ */ jsx165("tr", { className: "k-middle-row", children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "td", children: "\xA0" }) }),
8514
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "td", children: "\xA0" }) }),
8515
+ /* @__PURE__ */ jsx165("tr", { className: "k-middle-row", children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "td", children: "\xA0" }) }),
8516
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "td", children: "\xA0" }) }),
8517
+ /* @__PURE__ */ jsx165("tr", { className: "k-middle-row", children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "td", children: "\xA0" }) }),
8518
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "td", children: "\xA0" }) }),
8519
+ /* @__PURE__ */ jsx165("tr", { className: "k-middle-row", children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "td", children: "\xA0" }) }),
8520
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "td", children: "\xA0" }) }),
8521
+ /* @__PURE__ */ jsx165("tr", { className: "k-middle-row", children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "td", children: "\xA0" }) }),
8522
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "td", children: "\xA0" }) }),
8523
+ /* @__PURE__ */ jsx165("tr", { className: "k-middle-row", children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "td", children: "\xA0" }) }),
8524
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "td", children: "\xA0" }) }),
8525
+ /* @__PURE__ */ jsx165("tr", { className: "k-middle-row", children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "td", children: "\xA0" }) }),
8526
+ /* @__PURE__ */ jsx165("tr", { children: /* @__PURE__ */ jsx165(SchedulerCell, { as: "td", children: "\xA0" }) })
8527
+ ] }) }),
8528
+ /* @__PURE__ */ jsxs74(SchedulerEvent, { ongoing: true, style: { top: "74px", height: "72px", width: "200px" }, children: [
8529
+ /* @__PURE__ */ jsx165("div", { className: "k-event-template k-event-time", children: "8:00 AM - 9:00 AM" }),
8530
+ /* @__PURE__ */ jsx165("div", { className: "k-event-template", children: "Event Title" })
8122
8531
  ] })
8123
- ] }) }),
8124
- /* @__PURE__ */ jsxs57("div", { style: { "--span": "1", "--col": "2", "--row": "2", "--slot": "1", height: "25px" }, className: "k-event", children: [
8125
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137(Icon, { icon: "arrow-rotate-cw" }) }),
8126
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Dance Practice" }) })
8127
- ] }),
8128
- /* @__PURE__ */ jsxs57("div", { style: { backgroundColor: "rgb(17, 134, 64)", borderColor: "rgb(17, 134, 64)", "--span": "1", "--col": "3", "--row": "2", "--slot": "1", height: "25px" }, className: "k-event", children: [
8129
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137(Icon, { icon: "arrow-rotate-cw" }) }),
8130
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "HR Lecture" }) })
8131
- ] }),
8132
- /* @__PURE__ */ jsxs57("div", { style: { "--span": "1", "--col": "4", "--row": "2", "--slot": "1", height: "25px" }, className: "k-event", children: [
8133
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137(Icon, { icon: "arrow-rotate-cw" }) }),
8134
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Dance Practice" }) })
8135
- ] }),
8136
- /* @__PURE__ */ jsxs57("div", { style: { backgroundColor: "rgb(17, 134, 64)", borderColor: "rgb(17, 134, 64)", "--span": "3", "--col": "5", "--row": "2", "--slot": "1", height: "25px" }, className: "k-event", children: [
8137
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8138
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Attending HR Conference" }) })
8139
- ] }),
8140
- /* @__PURE__ */ jsxs57("div", { style: { backgroundColor: "rgb(17, 134, 64)", borderColor: "rgb(17, 134, 64)", "--span": "1", "--col": "3", "--row": "2", "--slot": "2", height: "25px" }, className: "k-event", children: [
8141
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8142
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Software updates" }) })
8143
- ] }),
8144
- /* @__PURE__ */ jsxs57("div", { style: { backgroundColor: "rgb(17, 134, 64)", borderColor: "rgb(17, 134, 64)", "--span": "1", "--col": "4", "--row": "2", "--slot": "2", height: "25px" }, className: "k-event", children: [
8145
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137(Icon, { icon: "arrow-rotate-cw" }) }),
8146
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Helpdesk weekly meeting" }) })
8147
- ] }),
8148
- /* @__PURE__ */ jsxs57("div", { style: { backgroundColor: "rgb(17, 134, 64)", borderColor: "rgb(17, 134, 64)", "--span": "3", "--col": "5", "--row": "2", "--slot": "2", height: "25px" }, className: "k-event", children: [
8149
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8150
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Grand Canyon tour" }) })
8151
- ] }),
8152
- /* @__PURE__ */ jsxs57("div", { style: { backgroundColor: "rgb(17, 134, 64)", borderColor: "rgb(17, 134, 64)", "--span": "2", "--col": "1", "--row": "3", "--slot": "1", height: "25px" }, className: "k-event", children: [
8153
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137(Icon, { icon: "caret-alt-left" }) }),
8154
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Attending HR Conference" }) })
8155
- ] }),
8156
- /* @__PURE__ */ jsxs57("div", { style: { backgroundColor: "rgb(17, 134, 64)", borderColor: "rgb(17, 134, 64)", "--span": "1", "--col": "3", "--row": "3", "--slot": "1", height: "25px" }, className: "k-event", children: [
8157
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8158
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Business Lunch with Gregory Watkins" }) })
8159
- ] }),
8160
- /* @__PURE__ */ jsxs57("div", { style: { backgroundColor: "rgb(17, 134, 64)", borderColor: "rgb(17, 134, 64)", "--span": "2", "--col": "4", "--row": "3", "--slot": "1", height: "25px" }, className: "k-event", children: [
8161
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8162
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Server maintenance" }) })
8163
- ] }),
8164
- /* @__PURE__ */ jsxs57("div", { style: { backgroundColor: "rgb(17, 134, 64)", borderColor: "rgb(17, 134, 64)", "--span": "1", "--col": "6", "--row": "3", "--slot": "1", height: "25px" }, className: "k-event", children: [
8165
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8166
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Dentist" }) })
8167
- ] }),
8168
- /* @__PURE__ */ jsxs57("div", { style: { backgroundColor: "rgb(17, 134, 64)", borderColor: "rgb(17, 134, 64)", "--span": "1", "--col": "7", "--row": "3", "--slot": "1", height: "25px" }, className: "k-event", children: [
8169
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8170
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Bob's Birthday Party" }) })
8171
- ] }),
8172
- /* @__PURE__ */ jsxs57("div", { style: { backgroundColor: "rgb(17, 134, 64)", borderColor: "rgb(17, 134, 64)", "--span": "1", "--col": "1", "--row": "3", "--slot": "2", height: "25px" }, className: "k-event", children: [
8173
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137(Icon, { icon: "caret-alt-left" }) }),
8174
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Grand Canyon tour" }) })
8175
- ] }),
8176
- /* @__PURE__ */ jsxs57("div", { style: { "--span": "1", "--col": "2", "--row": "3", "--slot": "2", height: "25px" }, className: "k-event", children: [
8177
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8178
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Car Service" }) })
8179
- ] }),
8180
- /* @__PURE__ */ jsxs57("div", { style: { backgroundColor: "rgb(17, 134, 64)", borderColor: "rgb(17, 134, 64)", "--span": "1", "--col": "3", "--row": "3", "--slot": "2", height: "25px" }, className: "k-event", children: [
8181
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions", children: /* @__PURE__ */ jsx137(Icon, { icon: "arrow-rotate-cw" }) }),
8182
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "HR Lecture" }) })
8183
- ] }),
8184
- /* @__PURE__ */ jsxs57("div", { style: { "--span": "1", "--col": "4", "--row": "3", "--slot": "2", height: "25px" }, className: "k-event", children: [
8185
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8186
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Banking" }) })
8187
- ] }),
8188
- /* @__PURE__ */ jsxs57("div", { style: { backgroundColor: "rgb(17, 134, 64)", borderColor: "rgb(17, 134, 64)", "--span": "1", "--col": "5", "--row": "3", "--slot": "2", height: "25px" }, className: "k-event", children: [
8189
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8190
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Breakfast with CFO and COO" }) })
8191
- ] }),
8192
- /* @__PURE__ */ jsxs57("div", { style: { backgroundColor: "rgb(17, 134, 64)", borderColor: "rgb(17, 134, 64)", "--span": "1", "--col": "6", "--row": "3", "--slot": "2", height: "25px" }, className: "k-event", children: [
8193
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8194
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Job Interview - Laura Bailey" }) })
8195
- ] }),
8196
- /* @__PURE__ */ jsxs57("div", { style: { backgroundColor: "rgb(17, 134, 64)", borderColor: "rgb(17, 134, 64)", "--span": "1", "--col": "7", "--row": "3", "--slot": "2", height: "25px" }, className: "k-event", children: [
8197
- /* @__PURE__ */ jsx137("span", { className: "k-event-actions" }),
8198
- /* @__PURE__ */ jsx137("div", { children: /* @__PURE__ */ jsx137("div", { className: "k-event-template", children: "Bob's Birthday" }) })
8199
- ] })
8200
- ] }) }) })
8201
- ] }) })
8202
- ] }) })
8203
- ] });
8532
+ ] }) })
8533
+ ] })
8534
+ ] }) }),
8535
+ ...props
8536
+ }
8537
+ );
8204
8538
  export {
8205
- scheduler_jquery_month_default as default
8539
+ SchedulerDay
8206
8540
  };