@progress/kendo-themes-html 7.2.0-dev.0 → 7.2.0

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 (35) hide show
  1. package/dist/cjs/autocomplete/tests/autocomplete-prefix-suffix.js +263 -263
  2. package/dist/cjs/combobox/tests/combobox-prefix-suffix.js +263 -263
  3. package/dist/cjs/filemanager/tests/filemanager-gridview-preview.js +263 -263
  4. package/dist/cjs/filemanager/tests/filemanager-listview-preview.js +263 -263
  5. package/dist/cjs/form/tests/form-field-dropdowns.js +263 -263
  6. package/dist/cjs/index.js +273 -265
  7. package/dist/cjs/multiselect/templates/multiselect-prefix.js +263 -263
  8. package/dist/cjs/multiselect/templates/multiselect-suffix.js +263 -263
  9. package/dist/cjs/multiselect/tests/multiselect-adaptive.js +263 -263
  10. package/dist/cjs/multiselect/tests/multiselect-flat.js +263 -263
  11. package/dist/cjs/multiselect/tests/multiselect-grouping.js +263 -263
  12. package/dist/cjs/multiselect/tests/multiselect-opened.js +263 -263
  13. package/dist/cjs/multiselect/tests/multiselect-outline.js +263 -263
  14. package/dist/cjs/multiselect/tests/multiselect-prefix-suffix.js +263 -263
  15. package/dist/cjs/multiselect/tests/multiselect-size-rounded.js +263 -263
  16. package/dist/cjs/multiselect/tests/multiselect-solid.js +263 -263
  17. package/dist/esm/autocomplete/tests/autocomplete-prefix-suffix.js +263 -263
  18. package/dist/esm/combobox/tests/combobox-prefix-suffix.js +263 -263
  19. package/dist/esm/filemanager/tests/filemanager-gridview-preview.js +263 -263
  20. package/dist/esm/filemanager/tests/filemanager-listview-preview.js +263 -263
  21. package/dist/esm/form/tests/form-field-dropdowns.js +263 -263
  22. package/dist/esm/index.js +273 -265
  23. package/dist/esm/multiselect/templates/multiselect-prefix.js +263 -263
  24. package/dist/esm/multiselect/templates/multiselect-suffix.js +263 -263
  25. package/dist/esm/multiselect/tests/multiselect-adaptive.js +263 -263
  26. package/dist/esm/multiselect/tests/multiselect-flat.js +263 -263
  27. package/dist/esm/multiselect/tests/multiselect-grouping.js +263 -263
  28. package/dist/esm/multiselect/tests/multiselect-opened.js +263 -263
  29. package/dist/esm/multiselect/tests/multiselect-outline.js +263 -263
  30. package/dist/esm/multiselect/tests/multiselect-prefix-suffix.js +263 -263
  31. package/dist/esm/multiselect/tests/multiselect-size-rounded.js +263 -263
  32. package/dist/esm/multiselect/tests/multiselect-solid.js +263 -263
  33. package/dist/types/index.d.ts +1 -0
  34. package/package.json +2 -2
  35. package/src/index.ts +1 -0
package/dist/esm/index.js CHANGED
@@ -9624,111 +9624,14 @@ var ComboboxSuffix = (props) => /* @__PURE__ */ jsx177(
9624
9624
  }
9625
9625
  );
9626
9626
 
9627
- // src/dateinput/dateinput.spec.tsx
9628
- import { jsx as jsx178, jsxs as jsxs70 } from "react/jsx-runtime";
9629
- var DATEINPUT_CLASSNAME = `k-dateinput`;
9630
- var states65 = [
9631
- States.hover,
9632
- States.focus,
9633
- States.valid,
9634
- States.invalid,
9635
- States.required,
9636
- States.disabled,
9637
- States.loading,
9638
- States.readonly
9639
- ];
9640
- var options62 = {
9641
- size: [Size.small, Size.medium, Size.large],
9642
- rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full],
9643
- fillMode: [FillMode.solid, FillMode.flat, FillMode.outline]
9644
- };
9645
- var defaultProps61 = {
9646
- size: Input.defaultProps.size,
9647
- rounded: Input.defaultProps.rounded,
9648
- fillMode: Input.defaultProps.fillMode
9649
- };
9650
- var DateInput = (props) => {
9651
- const {
9652
- value,
9653
- placeholder,
9654
- size,
9655
- rounded,
9656
- fillMode,
9657
- hover,
9658
- focus,
9659
- valid,
9660
- invalid,
9661
- required,
9662
- loading,
9663
- disabled,
9664
- readonly,
9665
- showSpinButton,
9666
- ...other
9667
- } = props;
9668
- return /* @__PURE__ */ jsxs70(
9669
- Input,
9670
- {
9671
- ...other,
9672
- size,
9673
- rounded,
9674
- fillMode,
9675
- hover,
9676
- focus,
9677
- valid,
9678
- invalid,
9679
- required,
9680
- loading,
9681
- disabled,
9682
- readonly,
9683
- className: classNames(props.className, DATEINPUT_CLASSNAME),
9684
- children: [
9685
- /* @__PURE__ */ jsx178(InputInnerInput, { placeholder, value }),
9686
- /* @__PURE__ */ jsx178(
9687
- InputValidationIcon,
9688
- {
9689
- valid,
9690
- invalid,
9691
- loading,
9692
- disabled
9693
- }
9694
- ),
9695
- /* @__PURE__ */ jsx178(
9696
- InputLoadingIcon,
9697
- {
9698
- loading,
9699
- disabled
9700
- }
9701
- ),
9702
- showSpinButton && /* @__PURE__ */ jsx178(
9703
- SpinButton,
9704
- {
9705
- className: "k-input-spinner",
9706
- size,
9707
- fillMode
9708
- }
9709
- )
9710
- ]
9711
- }
9712
- );
9713
- };
9714
- DateInput.states = states65;
9715
- DateInput.options = options62;
9716
- DateInput.className = DATEINPUT_CLASSNAME;
9717
- DateInput.defaultProps = defaultProps61;
9718
- var dateinput_spec_default = DateInput;
9719
-
9720
- // src/dateinput/templates/dateinput-normal.tsx
9721
- import { jsx as jsx179 } from "react/jsx-runtime";
9722
- var DateInputNormal = (props) => /* @__PURE__ */ jsx179(dateinput_spec_default, { ...props });
9723
-
9724
9627
  // src/calendar/calendar.spec.tsx
9725
- import { jsx as jsx180, jsxs as jsxs71 } from "react/jsx-runtime";
9628
+ import { jsx as jsx178, jsxs as jsxs70 } from "react/jsx-runtime";
9726
9629
  var CALENDAR_CLASSNAME = `k-calendar`;
9727
- var states66 = [];
9728
- var options63 = {
9630
+ var states65 = [];
9631
+ var options62 = {
9729
9632
  size: [Size.small, Size.medium, Size.large]
9730
9633
  };
9731
- var defaultProps62 = {
9634
+ var defaultProps61 = {
9732
9635
  size: Size.medium,
9733
9636
  viewsCount: 1,
9734
9637
  orientation: "horizontal",
@@ -9737,11 +9640,11 @@ var defaultProps62 = {
9737
9640
  };
9738
9641
  var Calendar = (props) => {
9739
9642
  const {
9740
- size = defaultProps62.size,
9741
- orientation = defaultProps62.orientation,
9742
- calendarView = defaultProps62.calendarView,
9743
- calendarHeaderText = defaultProps62.calendarHeaderText,
9744
- viewsCount = defaultProps62.viewsCount,
9643
+ size = defaultProps61.size,
9644
+ orientation = defaultProps61.orientation,
9645
+ calendarView = defaultProps61.calendarView,
9646
+ calendarHeaderText = defaultProps61.calendarHeaderText,
9647
+ viewsCount = defaultProps61.viewsCount,
9745
9648
  showWeek,
9746
9649
  showOtherMonth,
9747
9650
  showCalendarCaption,
@@ -9750,7 +9653,7 @@ var Calendar = (props) => {
9750
9653
  dir,
9751
9654
  ...other
9752
9655
  } = props;
9753
- return /* @__PURE__ */ jsxs71(
9656
+ return /* @__PURE__ */ jsxs70(
9754
9657
  "div",
9755
9658
  {
9756
9659
  ...other,
@@ -9766,7 +9669,7 @@ var Calendar = (props) => {
9766
9669
  }
9767
9670
  ),
9768
9671
  children: [
9769
- /* @__PURE__ */ jsx180(
9672
+ /* @__PURE__ */ jsx178(
9770
9673
  CalendarHeader,
9771
9674
  {
9772
9675
  showToday: showCalendarFooter ? false : true,
@@ -9776,7 +9679,7 @@ var Calendar = (props) => {
9776
9679
  dir
9777
9680
  }
9778
9681
  ),
9779
- /* @__PURE__ */ jsx180(
9682
+ /* @__PURE__ */ jsx178(
9780
9683
  CalendarView,
9781
9684
  {
9782
9685
  calendarView,
@@ -9788,19 +9691,19 @@ var Calendar = (props) => {
9788
9691
  selectedRange
9789
9692
  }
9790
9693
  ),
9791
- showCalendarFooter && /* @__PURE__ */ jsx180(CalendarFooter, {})
9694
+ showCalendarFooter && /* @__PURE__ */ jsx178(CalendarFooter, {})
9792
9695
  ]
9793
9696
  }
9794
9697
  );
9795
9698
  };
9796
- Calendar.states = states66;
9797
- Calendar.options = options63;
9699
+ Calendar.states = states65;
9700
+ Calendar.options = options62;
9798
9701
  Calendar.className = CALENDAR_CLASSNAME;
9799
- Calendar.defaultProps = defaultProps62;
9702
+ Calendar.defaultProps = defaultProps61;
9800
9703
 
9801
9704
  // src/calendar/calendar-cell.tsx
9802
- import { jsx as jsx181 } from "react/jsx-runtime";
9803
- var states67 = [
9705
+ import { jsx as jsx179 } from "react/jsx-runtime";
9706
+ var states66 = [
9804
9707
  States.hover,
9805
9708
  States.focus,
9806
9709
  States.active,
@@ -9849,21 +9752,21 @@ var CalendarCell = (props) => {
9849
9752
  }
9850
9753
  ];
9851
9754
  if (headerCell) {
9852
- return /* @__PURE__ */ jsx181("th", { ...other, className: classNames(calendarCellClasses), children: text });
9755
+ return /* @__PURE__ */ jsx179("th", { ...other, className: classNames(calendarCellClasses), children: text });
9853
9756
  }
9854
9757
  if (weekCell) {
9855
- return /* @__PURE__ */ jsx181("td", { ...other, className: classNames(calendarCellClasses), children: text });
9758
+ return /* @__PURE__ */ jsx179("td", { ...other, className: classNames(calendarCellClasses), children: text });
9856
9759
  }
9857
- return /* @__PURE__ */ jsx181("td", { ...other, className: classNames(calendarCellClasses), children: otherMonth && !showOtherMonth ? "" : /* @__PURE__ */ jsx181("span", { className: "k-link", children: text }) });
9760
+ return /* @__PURE__ */ jsx179("td", { ...other, className: classNames(calendarCellClasses), children: otherMonth && !showOtherMonth ? "" : /* @__PURE__ */ jsx179("span", { className: "k-link", children: text }) });
9858
9761
  };
9859
9762
 
9860
9763
  // src/calendar/calendar-header.tsx
9861
- import { jsx as jsx182, jsxs as jsxs72 } from "react/jsx-runtime";
9764
+ import { jsx as jsx180, jsxs as jsxs71 } from "react/jsx-runtime";
9862
9765
  var className17 = `k-calendar-header`;
9863
- var options64 = {
9766
+ var options63 = {
9864
9767
  size: [Size.small, Size.medium, Size.large]
9865
9768
  };
9866
- var defaultProps63 = {
9769
+ var defaultProps62 = {
9867
9770
  calendarHeaderText: "October 2021",
9868
9771
  showToday: true,
9869
9772
  orientation: "horizontal",
@@ -9871,16 +9774,16 @@ var defaultProps63 = {
9871
9774
  };
9872
9775
  var CalendarHeader = (props) => {
9873
9776
  const {
9874
- calendarHeaderText = defaultProps63.calendarHeaderText,
9875
- showToday = defaultProps63.showToday,
9876
- orientation = defaultProps63.orientation,
9877
- size = defaultProps63.size,
9777
+ calendarHeaderText = defaultProps62.calendarHeaderText,
9778
+ showToday = defaultProps62.showToday,
9779
+ orientation = defaultProps62.orientation,
9780
+ size = defaultProps62.size,
9878
9781
  dir,
9879
9782
  ...other
9880
9783
  } = props;
9881
9784
  const iconPrev = dir === "rtl" ? "chevron-right" : "chevron-left";
9882
9785
  const iconNext = dir === "rtl" ? "chevron-left" : "chevron-right";
9883
- return /* @__PURE__ */ jsxs72(
9786
+ return /* @__PURE__ */ jsxs71(
9884
9787
  "div",
9885
9788
  {
9886
9789
  ...other,
@@ -9892,12 +9795,12 @@ var CalendarHeader = (props) => {
9892
9795
  }
9893
9796
  ),
9894
9797
  children: [
9895
- /* @__PURE__ */ jsx182(Button, { className: "k-calendar-title", text: calendarHeaderText, size, fillMode: "flat" }),
9896
- /* @__PURE__ */ jsx182("span", { className: "k-spacer" }),
9897
- /* @__PURE__ */ jsxs72("span", { className: "k-calendar-nav", children: [
9898
- /* @__PURE__ */ jsx182(Button, { className: "k-calendar-nav-prev", icon: iconPrev, size, fillMode: "flat" }),
9899
- showToday && /* @__PURE__ */ jsx182(Button, { size, fillMode: "flat", themeColor: "primary", className: "k-calendar-nav-today", children: "Today" }),
9900
- /* @__PURE__ */ jsx182(Button, { className: "k-calendar-nav-next", icon: iconNext, size, fillMode: "flat" })
9798
+ /* @__PURE__ */ jsx180(Button, { className: "k-calendar-title", text: calendarHeaderText, size, fillMode: "flat" }),
9799
+ /* @__PURE__ */ jsx180("span", { className: "k-spacer" }),
9800
+ /* @__PURE__ */ jsxs71("span", { className: "k-calendar-nav", children: [
9801
+ /* @__PURE__ */ jsx180(Button, { className: "k-calendar-nav-prev", icon: iconPrev, size, fillMode: "flat" }),
9802
+ showToday && /* @__PURE__ */ jsx180(Button, { size, fillMode: "flat", themeColor: "primary", className: "k-calendar-nav-today", children: "Today" }),
9803
+ /* @__PURE__ */ jsx180(Button, { className: "k-calendar-nav-next", icon: iconNext, size, fillMode: "flat" })
9901
9804
  ] })
9902
9805
  ]
9903
9806
  }
@@ -9905,12 +9808,12 @@ var CalendarHeader = (props) => {
9905
9808
  };
9906
9809
 
9907
9810
  // src/calendar/calendar-footer.tsx
9908
- import { jsx as jsx183 } from "react/jsx-runtime";
9811
+ import { jsx as jsx181 } from "react/jsx-runtime";
9909
9812
  var className18 = `k-calendar-footer`;
9910
- var CalendarFooter = (props) => /* @__PURE__ */ jsx183("div", { ...props, className: classNames(props.className, className18), children: /* @__PURE__ */ jsx183(Button, { fillMode: "flat", themeColor: "primary", className: "k-calendar-nav-today", children: "Monday, October 29, 2021" }) });
9813
+ var CalendarFooter = (props) => /* @__PURE__ */ jsx181("div", { ...props, className: classNames(props.className, className18), children: /* @__PURE__ */ jsx181(Button, { fillMode: "flat", themeColor: "primary", className: "k-calendar-nav-today", children: "Monday, October 29, 2021" }) });
9911
9814
 
9912
9815
  // src/calendar/calendar-table.tsx
9913
- import { jsx as jsx184, jsxs as jsxs73 } from "react/jsx-runtime";
9816
+ import { jsx as jsx182, jsxs as jsxs72 } from "react/jsx-runtime";
9914
9817
  var CALENDARTABLE_CLASSNAME = `k-calendar-table`;
9915
9818
  var CalendarTable = (props) => {
9916
9819
  const {
@@ -9922,7 +9825,7 @@ var CalendarTable = (props) => {
9922
9825
  ...other
9923
9826
  } = props;
9924
9827
  if (calendarView === "year") {
9925
- return /* @__PURE__ */ jsxs73(
9828
+ return /* @__PURE__ */ jsxs72(
9926
9829
  "table",
9927
9830
  {
9928
9831
  ...other,
@@ -9931,25 +9834,25 @@ var CalendarTable = (props) => {
9931
9834
  CALENDARTABLE_CLASSNAME
9932
9835
  ),
9933
9836
  children: [
9934
- showCalendarCaption && /* @__PURE__ */ jsx184("caption", { className: "k-calendar-caption", children: "2022" }),
9935
- /* @__PURE__ */ jsxs73("tbody", { className: "k-calendar-tbody", children: [
9936
- /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9937
- /* @__PURE__ */ jsx184(CalendarCell, { text: "Jan" }),
9938
- /* @__PURE__ */ jsx184(CalendarCell, { text: "Feb" }),
9939
- /* @__PURE__ */ jsx184(CalendarCell, { text: "Mar" }),
9940
- /* @__PURE__ */ jsx184(CalendarCell, { text: "Apr" })
9837
+ showCalendarCaption && /* @__PURE__ */ jsx182("caption", { className: "k-calendar-caption", children: "2022" }),
9838
+ /* @__PURE__ */ jsxs72("tbody", { className: "k-calendar-tbody", children: [
9839
+ /* @__PURE__ */ jsxs72("tr", { className: "k-calendar-tr", children: [
9840
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "Jan" }),
9841
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "Feb" }),
9842
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "Mar" }),
9843
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "Apr" })
9941
9844
  ] }),
9942
- /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9943
- /* @__PURE__ */ jsx184(CalendarCell, { text: "May" }),
9944
- /* @__PURE__ */ jsx184(CalendarCell, { text: "Jun", hover: true }),
9945
- /* @__PURE__ */ jsx184(CalendarCell, { text: "Jul", focus: true }),
9946
- /* @__PURE__ */ jsx184(CalendarCell, { text: "Au", selected: true })
9845
+ /* @__PURE__ */ jsxs72("tr", { className: "k-calendar-tr", children: [
9846
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "May" }),
9847
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "Jun", hover: true }),
9848
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "Jul", focus: true }),
9849
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "Au", selected: true })
9947
9850
  ] }),
9948
- /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9949
- /* @__PURE__ */ jsx184(CalendarCell, { text: "Sep" }),
9950
- /* @__PURE__ */ jsx184(CalendarCell, { text: "Oct", today: true }),
9951
- /* @__PURE__ */ jsx184(CalendarCell, { text: "Nov" }),
9952
- /* @__PURE__ */ jsx184(CalendarCell, { text: "Dec" })
9851
+ /* @__PURE__ */ jsxs72("tr", { className: "k-calendar-tr", children: [
9852
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "Sep" }),
9853
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "Oct", today: true }),
9854
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "Nov" }),
9855
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "Dec" })
9953
9856
  ] })
9954
9857
  ] })
9955
9858
  ]
@@ -9957,7 +9860,7 @@ var CalendarTable = (props) => {
9957
9860
  );
9958
9861
  }
9959
9862
  if (calendarView === "decade") {
9960
- return /* @__PURE__ */ jsxs73(
9863
+ return /* @__PURE__ */ jsxs72(
9961
9864
  "table",
9962
9865
  {
9963
9866
  ...other,
@@ -9966,25 +9869,25 @@ var CalendarTable = (props) => {
9966
9869
  CALENDARTABLE_CLASSNAME
9967
9870
  ),
9968
9871
  children: [
9969
- showCalendarCaption && /* @__PURE__ */ jsx184("caption", { className: "k-calendar-caption", children: "2020 - 2029" }),
9970
- /* @__PURE__ */ jsxs73("tbody", { className: "k-calendar-tbody", children: [
9971
- /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9972
- /* @__PURE__ */ jsx184(CalendarCell, { className: "k-out-of-range" }),
9973
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2020" }),
9974
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2021", today: true }),
9975
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2022" })
9872
+ showCalendarCaption && /* @__PURE__ */ jsx182("caption", { className: "k-calendar-caption", children: "2020 - 2029" }),
9873
+ /* @__PURE__ */ jsxs72("tbody", { className: "k-calendar-tbody", children: [
9874
+ /* @__PURE__ */ jsxs72("tr", { className: "k-calendar-tr", children: [
9875
+ /* @__PURE__ */ jsx182(CalendarCell, { className: "k-out-of-range" }),
9876
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2020" }),
9877
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2021", today: true }),
9878
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2022" })
9976
9879
  ] }),
9977
- /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9978
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2023" }),
9979
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2024", hover: true }),
9980
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2025", focus: true }),
9981
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2026", selected: true })
9880
+ /* @__PURE__ */ jsxs72("tr", { className: "k-calendar-tr", children: [
9881
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2023" }),
9882
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2024", hover: true }),
9883
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2025", focus: true }),
9884
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2026", selected: true })
9982
9885
  ] }),
9983
- /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9984
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2027" }),
9985
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2028" }),
9986
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2029" }),
9987
- /* @__PURE__ */ jsx184(CalendarCell, { className: "k-out-of-range" })
9886
+ /* @__PURE__ */ jsxs72("tr", { className: "k-calendar-tr", children: [
9887
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2027" }),
9888
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2028" }),
9889
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2029" }),
9890
+ /* @__PURE__ */ jsx182(CalendarCell, { className: "k-out-of-range" })
9988
9891
  ] })
9989
9892
  ] })
9990
9893
  ]
@@ -9992,7 +9895,7 @@ var CalendarTable = (props) => {
9992
9895
  );
9993
9896
  }
9994
9897
  if (calendarView === "century") {
9995
- return /* @__PURE__ */ jsxs73(
9898
+ return /* @__PURE__ */ jsxs72(
9996
9899
  "table",
9997
9900
  {
9998
9901
  ...other,
@@ -10001,32 +9904,32 @@ var CalendarTable = (props) => {
10001
9904
  CALENDARTABLE_CLASSNAME
10002
9905
  ),
10003
9906
  children: [
10004
- showCalendarCaption && /* @__PURE__ */ jsx184("caption", { className: "k-calendar-caption", children: "2000 - 2099" }),
10005
- /* @__PURE__ */ jsxs73("tbody", { className: "k-calendar-tbody", children: [
10006
- /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
10007
- /* @__PURE__ */ jsx184(CalendarCell, { text: "1990 - 1999" }),
10008
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2000 - 2009" }),
10009
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2010 - 2019", today: true }),
10010
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2020 - 2029" })
9907
+ showCalendarCaption && /* @__PURE__ */ jsx182("caption", { className: "k-calendar-caption", children: "2000 - 2099" }),
9908
+ /* @__PURE__ */ jsxs72("tbody", { className: "k-calendar-tbody", children: [
9909
+ /* @__PURE__ */ jsxs72("tr", { className: "k-calendar-tr", children: [
9910
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "1990 - 1999" }),
9911
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2000 - 2009" }),
9912
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2010 - 2019", today: true }),
9913
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2020 - 2029" })
10011
9914
  ] }),
10012
- /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
10013
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2030 - 2039" }),
10014
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2040 - 2049", hover: true }),
10015
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2050 - 2059", focus: true }),
10016
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2060 - 2069", selected: true })
9915
+ /* @__PURE__ */ jsxs72("tr", { className: "k-calendar-tr", children: [
9916
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2030 - 2039" }),
9917
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2040 - 2049", hover: true }),
9918
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2050 - 2059", focus: true }),
9919
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2060 - 2069", selected: true })
10017
9920
  ] }),
10018
- /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
10019
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2070 - 2079" }),
10020
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2080 - 2089" }),
10021
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2090 - 2099" }),
10022
- /* @__PURE__ */ jsx184(CalendarCell, { className: "k-out-of-range" })
9921
+ /* @__PURE__ */ jsxs72("tr", { className: "k-calendar-tr", children: [
9922
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2070 - 2079" }),
9923
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2080 - 2089" }),
9924
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2090 - 2099" }),
9925
+ /* @__PURE__ */ jsx182(CalendarCell, { className: "k-out-of-range" })
10023
9926
  ] })
10024
9927
  ] })
10025
9928
  ]
10026
9929
  }
10027
9930
  );
10028
9931
  }
10029
- return /* @__PURE__ */ jsxs73(
9932
+ return /* @__PURE__ */ jsxs72(
10030
9933
  "table",
10031
9934
  {
10032
9935
  ...other,
@@ -10035,68 +9938,68 @@ var CalendarTable = (props) => {
10035
9938
  CALENDARTABLE_CLASSNAME
10036
9939
  ),
10037
9940
  children: [
10038
- showCalendarCaption && /* @__PURE__ */ jsx184("caption", { className: "k-calendar-caption", children: "October 2021" }),
10039
- /* @__PURE__ */ jsx184(CalendarTableHead, { showWeek }),
10040
- /* @__PURE__ */ jsxs73("tbody", { className: "k-calendar-tbody", children: [
10041
- /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
10042
- showWeek && /* @__PURE__ */ jsx184(CalendarCell, { text: "39", weekCell: true }),
10043
- /* @__PURE__ */ jsx184(CalendarCell, { text: "30", otherMonth: true, showOtherMonth }),
10044
- /* @__PURE__ */ jsx184(CalendarCell, { text: "1" }),
10045
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2" }),
10046
- /* @__PURE__ */ jsx184(CalendarCell, { text: "3" }),
10047
- /* @__PURE__ */ jsx184(CalendarCell, { text: "4" }),
10048
- /* @__PURE__ */ jsx184(CalendarCell, { text: "5" }),
10049
- /* @__PURE__ */ jsx184(CalendarCell, { text: "6", weekend: true })
9941
+ showCalendarCaption && /* @__PURE__ */ jsx182("caption", { className: "k-calendar-caption", children: "October 2021" }),
9942
+ /* @__PURE__ */ jsx182(CalendarTableHead, { showWeek }),
9943
+ /* @__PURE__ */ jsxs72("tbody", { className: "k-calendar-tbody", children: [
9944
+ /* @__PURE__ */ jsxs72("tr", { className: "k-calendar-tr", children: [
9945
+ showWeek && /* @__PURE__ */ jsx182(CalendarCell, { text: "39", weekCell: true }),
9946
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "30", otherMonth: true, showOtherMonth }),
9947
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "1" }),
9948
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2" }),
9949
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "3" }),
9950
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "4" }),
9951
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "5" }),
9952
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "6", weekend: true })
10050
9953
  ] }),
10051
- /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
10052
- showWeek && /* @__PURE__ */ jsx184(CalendarCell, { text: "40", weekCell: true }),
10053
- /* @__PURE__ */ jsx184(CalendarCell, { text: "7", weekend: true }),
10054
- /* @__PURE__ */ jsx184(CalendarCell, { text: "8", hover: true }),
10055
- /* @__PURE__ */ jsx184(CalendarCell, { text: "9", focus: true }),
10056
- /* @__PURE__ */ jsx184(CalendarCell, { text: "10", selected: true }),
10057
- /* @__PURE__ */ jsx184(CalendarCell, { text: "11", hover: true, focus: true }),
10058
- /* @__PURE__ */ jsx184(CalendarCell, { text: "12", hover: true, selected: true }),
10059
- /* @__PURE__ */ jsx184(CalendarCell, { text: "13", weekend: true })
9954
+ /* @__PURE__ */ jsxs72("tr", { className: "k-calendar-tr", children: [
9955
+ showWeek && /* @__PURE__ */ jsx182(CalendarCell, { text: "40", weekCell: true }),
9956
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "7", weekend: true }),
9957
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "8", hover: true }),
9958
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "9", focus: true }),
9959
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "10", selected: true }),
9960
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "11", hover: true, focus: true }),
9961
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "12", hover: true, selected: true }),
9962
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "13", weekend: true })
10060
9963
  ] }),
10061
- /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
10062
- showWeek && /* @__PURE__ */ jsx184(CalendarCell, { text: "41", weekCell: true }),
10063
- /* @__PURE__ */ jsx184(CalendarCell, { text: "14", weekend: true }),
10064
- /* @__PURE__ */ jsx184(CalendarCell, { text: "15" }),
10065
- /* @__PURE__ */ jsx184(CalendarCell, { text: "16", today: true }),
10066
- /* @__PURE__ */ jsx184(CalendarCell, { text: "17" }),
10067
- /* @__PURE__ */ jsx184(CalendarCell, { text: "18" }),
10068
- /* @__PURE__ */ jsx184(CalendarCell, { text: "19" }),
10069
- /* @__PURE__ */ jsx184(CalendarCell, { text: "20", weekend: true })
9964
+ /* @__PURE__ */ jsxs72("tr", { className: "k-calendar-tr", children: [
9965
+ showWeek && /* @__PURE__ */ jsx182(CalendarCell, { text: "41", weekCell: true }),
9966
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "14", weekend: true }),
9967
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "15" }),
9968
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "16", today: true }),
9969
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "17" }),
9970
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "18" }),
9971
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "19" }),
9972
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "20", weekend: true })
10070
9973
  ] }),
10071
- /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
10072
- showWeek && /* @__PURE__ */ jsx184(CalendarCell, { text: "42", weekCell: true }),
10073
- /* @__PURE__ */ jsx184(CalendarCell, { text: "21", weekend: true }),
10074
- /* @__PURE__ */ jsx184(CalendarCell, { text: "22" }),
10075
- /* @__PURE__ */ jsx184(CalendarCell, { text: "23" }),
10076
- /* @__PURE__ */ jsx184(CalendarCell, { text: "24" }),
10077
- /* @__PURE__ */ jsx184(CalendarCell, { text: "25", rangeStart: selectedRange, selected: selectedRange }),
10078
- /* @__PURE__ */ jsx184(CalendarCell, { text: "26", rangeMid: selectedRange }),
10079
- /* @__PURE__ */ jsx184(CalendarCell, { text: "27", weekend: true, rangeMid: selectedRange })
9974
+ /* @__PURE__ */ jsxs72("tr", { className: "k-calendar-tr", children: [
9975
+ showWeek && /* @__PURE__ */ jsx182(CalendarCell, { text: "42", weekCell: true }),
9976
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "21", weekend: true }),
9977
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "22" }),
9978
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "23" }),
9979
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "24" }),
9980
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "25", rangeStart: selectedRange, selected: selectedRange }),
9981
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "26", rangeMid: selectedRange }),
9982
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "27", weekend: true, rangeMid: selectedRange })
10080
9983
  ] }),
10081
- /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
10082
- showWeek && /* @__PURE__ */ jsx184(CalendarCell, { text: "43", weekCell: true }),
10083
- /* @__PURE__ */ jsx184(CalendarCell, { text: "28", weekend: true, rangeMid: selectedRange }),
10084
- /* @__PURE__ */ jsx184(CalendarCell, { text: "29", rangeEnd: selectedRange, focus: selectedRange, selected: selectedRange }),
10085
- /* @__PURE__ */ jsx184(CalendarCell, { text: "30" }),
10086
- /* @__PURE__ */ jsx184(CalendarCell, { text: "31" }),
10087
- /* @__PURE__ */ jsx184(CalendarCell, { text: "1", otherMonth: true, showOtherMonth }),
10088
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2", otherMonth: true, showOtherMonth }),
10089
- /* @__PURE__ */ jsx184(CalendarCell, { text: "3", otherMonth: true, weekend: true, showOtherMonth })
9984
+ /* @__PURE__ */ jsxs72("tr", { className: "k-calendar-tr", children: [
9985
+ showWeek && /* @__PURE__ */ jsx182(CalendarCell, { text: "43", weekCell: true }),
9986
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "28", weekend: true, rangeMid: selectedRange }),
9987
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "29", rangeEnd: selectedRange, focus: selectedRange, selected: selectedRange }),
9988
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "30" }),
9989
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "31" }),
9990
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "1", otherMonth: true, showOtherMonth }),
9991
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2", otherMonth: true, showOtherMonth }),
9992
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "3", otherMonth: true, weekend: true, showOtherMonth })
10090
9993
  ] }),
10091
- /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
10092
- showWeek && /* @__PURE__ */ jsx184(CalendarCell, { text: "44", weekCell: true }),
10093
- /* @__PURE__ */ jsx184(CalendarCell, { text: "4", otherMonth: true, weekend: true, showOtherMonth }),
10094
- /* @__PURE__ */ jsx184(CalendarCell, { text: "5", otherMonth: true, showOtherMonth }),
10095
- /* @__PURE__ */ jsx184(CalendarCell, { text: "6", otherMonth: true, showOtherMonth }),
10096
- /* @__PURE__ */ jsx184(CalendarCell, { text: "7", otherMonth: true, showOtherMonth }),
10097
- /* @__PURE__ */ jsx184(CalendarCell, { text: "8", otherMonth: true, showOtherMonth }),
10098
- /* @__PURE__ */ jsx184(CalendarCell, { text: "9", otherMonth: true, showOtherMonth }),
10099
- /* @__PURE__ */ jsx184(CalendarCell, { text: "10", otherMonth: true, weekend: true, showOtherMonth })
9994
+ /* @__PURE__ */ jsxs72("tr", { className: "k-calendar-tr", children: [
9995
+ showWeek && /* @__PURE__ */ jsx182(CalendarCell, { text: "44", weekCell: true }),
9996
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "4", otherMonth: true, weekend: true, showOtherMonth }),
9997
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "5", otherMonth: true, showOtherMonth }),
9998
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "6", otherMonth: true, showOtherMonth }),
9999
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "7", otherMonth: true, showOtherMonth }),
10000
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "8", otherMonth: true, showOtherMonth }),
10001
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "9", otherMonth: true, showOtherMonth }),
10002
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "10", otherMonth: true, weekend: true, showOtherMonth })
10100
10003
  ] })
10101
10004
  ] })
10102
10005
  ]
@@ -10105,52 +10008,52 @@ var CalendarTable = (props) => {
10105
10008
  };
10106
10009
 
10107
10010
  // src/calendar/calendar-table-head.tsx
10108
- import { jsx as jsx185, jsxs as jsxs74 } from "react/jsx-runtime";
10011
+ import { jsx as jsx183, jsxs as jsxs73 } from "react/jsx-runtime";
10109
10012
  var className19 = `k-calendar-thead`;
10110
10013
  var CalendarTableHead = (props) => {
10111
10014
  const {
10112
10015
  showWeek,
10113
10016
  ...other
10114
10017
  } = props;
10115
- return /* @__PURE__ */ jsx185(
10018
+ return /* @__PURE__ */ jsx183(
10116
10019
  "thead",
10117
10020
  {
10118
10021
  ...other,
10119
10022
  className: classNames(props.className, className19),
10120
- children: /* @__PURE__ */ jsxs74("tr", { className: "k-calendar-tr", children: [
10121
- showWeek && /* @__PURE__ */ jsx185(CalendarCell, { weekCell: true, headerCell: true }),
10122
- /* @__PURE__ */ jsx185(CalendarCell, { text: "Su", headerCell: true }),
10123
- /* @__PURE__ */ jsx185(CalendarCell, { text: "Mo", headerCell: true }),
10124
- /* @__PURE__ */ jsx185(CalendarCell, { text: "Tu", headerCell: true }),
10125
- /* @__PURE__ */ jsx185(CalendarCell, { text: "We", headerCell: true }),
10126
- /* @__PURE__ */ jsx185(CalendarCell, { text: "Th", headerCell: true }),
10127
- /* @__PURE__ */ jsx185(CalendarCell, { text: "Fr", headerCell: true }),
10128
- /* @__PURE__ */ jsx185(CalendarCell, { text: "Sa", headerCell: true })
10023
+ children: /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
10024
+ showWeek && /* @__PURE__ */ jsx183(CalendarCell, { weekCell: true, headerCell: true }),
10025
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "Su", headerCell: true }),
10026
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "Mo", headerCell: true }),
10027
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "Tu", headerCell: true }),
10028
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "We", headerCell: true }),
10029
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "Th", headerCell: true }),
10030
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "Fr", headerCell: true }),
10031
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "Sa", headerCell: true })
10129
10032
  ] })
10130
10033
  }
10131
10034
  );
10132
10035
  };
10133
10036
 
10134
10037
  // src/calendar/calendar-view.tsx
10135
- import { jsx as jsx186 } from "react/jsx-runtime";
10038
+ import { jsx as jsx184 } from "react/jsx-runtime";
10136
10039
  var className20 = `k-calendar-view`;
10137
- var defaultProps64 = {
10040
+ var defaultProps63 = {
10138
10041
  viewsCount: 1,
10139
10042
  orientation: "horizontal",
10140
10043
  calendarView: "month"
10141
10044
  };
10142
10045
  var CalendarView = (props) => {
10143
10046
  const {
10144
- orientation = defaultProps64.orientation,
10145
- calendarView = defaultProps64.calendarView,
10146
- viewsCount = defaultProps64.viewsCount,
10047
+ orientation = defaultProps63.orientation,
10048
+ calendarView = defaultProps63.calendarView,
10049
+ viewsCount = defaultProps63.viewsCount,
10147
10050
  showWeek,
10148
10051
  showOtherMonth,
10149
10052
  showCalendarCaption,
10150
10053
  selectedRange,
10151
10054
  ...other
10152
10055
  } = props;
10153
- return /* @__PURE__ */ jsx186(
10056
+ return /* @__PURE__ */ jsx184(
10154
10057
  "div",
10155
10058
  {
10156
10059
  ...other,
@@ -10166,7 +10069,7 @@ var CalendarView = (props) => {
10166
10069
  }
10167
10070
  ),
10168
10071
  children: [...Array(viewsCount)].map(
10169
- (_e, i) => /* @__PURE__ */ jsx186(
10072
+ (_e, i) => /* @__PURE__ */ jsx184(
10170
10073
  CalendarTable,
10171
10074
  {
10172
10075
  calendarView,
@@ -10182,6 +10085,103 @@ var CalendarView = (props) => {
10182
10085
  );
10183
10086
  };
10184
10087
 
10088
+ // src/dateinput/dateinput.spec.tsx
10089
+ import { jsx as jsx185, jsxs as jsxs74 } from "react/jsx-runtime";
10090
+ var DATEINPUT_CLASSNAME = `k-dateinput`;
10091
+ var states67 = [
10092
+ States.hover,
10093
+ States.focus,
10094
+ States.valid,
10095
+ States.invalid,
10096
+ States.required,
10097
+ States.disabled,
10098
+ States.loading,
10099
+ States.readonly
10100
+ ];
10101
+ var options64 = {
10102
+ size: [Size.small, Size.medium, Size.large],
10103
+ rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full],
10104
+ fillMode: [FillMode.solid, FillMode.flat, FillMode.outline]
10105
+ };
10106
+ var defaultProps64 = {
10107
+ size: Input.defaultProps.size,
10108
+ rounded: Input.defaultProps.rounded,
10109
+ fillMode: Input.defaultProps.fillMode
10110
+ };
10111
+ var DateInput = (props) => {
10112
+ const {
10113
+ value,
10114
+ placeholder,
10115
+ size,
10116
+ rounded,
10117
+ fillMode,
10118
+ hover,
10119
+ focus,
10120
+ valid,
10121
+ invalid,
10122
+ required,
10123
+ loading,
10124
+ disabled,
10125
+ readonly,
10126
+ showSpinButton,
10127
+ ...other
10128
+ } = props;
10129
+ return /* @__PURE__ */ jsxs74(
10130
+ Input,
10131
+ {
10132
+ ...other,
10133
+ size,
10134
+ rounded,
10135
+ fillMode,
10136
+ hover,
10137
+ focus,
10138
+ valid,
10139
+ invalid,
10140
+ required,
10141
+ loading,
10142
+ disabled,
10143
+ readonly,
10144
+ className: classNames(props.className, DATEINPUT_CLASSNAME),
10145
+ children: [
10146
+ /* @__PURE__ */ jsx185(InputInnerInput, { placeholder, value }),
10147
+ /* @__PURE__ */ jsx185(
10148
+ InputValidationIcon,
10149
+ {
10150
+ valid,
10151
+ invalid,
10152
+ loading,
10153
+ disabled
10154
+ }
10155
+ ),
10156
+ /* @__PURE__ */ jsx185(
10157
+ InputLoadingIcon,
10158
+ {
10159
+ loading,
10160
+ disabled
10161
+ }
10162
+ ),
10163
+ showSpinButton && /* @__PURE__ */ jsx185(
10164
+ SpinButton,
10165
+ {
10166
+ className: "k-input-spinner",
10167
+ size,
10168
+ fillMode
10169
+ }
10170
+ )
10171
+ ]
10172
+ }
10173
+ );
10174
+ };
10175
+ DateInput.states = states67;
10176
+ DateInput.options = options64;
10177
+ DateInput.className = DATEINPUT_CLASSNAME;
10178
+ DateInput.defaultProps = defaultProps64;
10179
+ var dateinput_spec_default = DateInput;
10180
+
10181
+ // src/dateinput/templates/dateinput-normal.tsx
10182
+ import { jsx as jsx186 } from "react/jsx-runtime";
10183
+ var DateInputNormal = (props) => /* @__PURE__ */ jsx186(dateinput_spec_default, { ...props });
10184
+
10185
10185
  // src/datepicker/datepicker.spec.tsx
10186
10186
  import { Fragment as Fragment55, jsx as jsx187, jsxs as jsxs75 } from "react/jsx-runtime";
10187
10187
  var DATEPICKER_CLASSNAME = `k-datepicker`;
@@ -21845,6 +21845,7 @@ export {
21845
21845
  BreadcrumbRootItemContainer,
21846
21846
  Button,
21847
21847
  ButtonGroup,
21848
+ CALENDARTABLE_CLASSNAME,
21848
21849
  CAPTCHA_CLASSNAME,
21849
21850
  CARDBODY_CLASSNAME,
21850
21851
  CARDCALLOUT_CLASSNAME,
@@ -21869,6 +21870,13 @@ export {
21869
21870
  COLORPICKER_CLASSNAME,
21870
21871
  COLORPREVIEW_CLASSNAME,
21871
21872
  COMBOBOX_CLASSNAME,
21873
+ Calendar,
21874
+ CalendarCell,
21875
+ CalendarFooter,
21876
+ CalendarHeader,
21877
+ CalendarTable,
21878
+ CalendarTableHead,
21879
+ CalendarView,
21872
21880
  Captcha,
21873
21881
  CaptchaNormal,
21874
21882
  Card,