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

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