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