@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
@@ -8857,109 +8857,14 @@ import { jsx as jsx176 } from "react/jsx-runtime";
8857
8857
  // src/colorpicker/templates/colorpicker-popup-palette.tsx
8858
8858
  import { jsx as jsx177 } from "react/jsx-runtime";
8859
8859
 
8860
- // src/dateinput/dateinput.spec.tsx
8861
- import { jsx as jsx178, jsxs as jsxs70 } from "react/jsx-runtime";
8862
- var DATEINPUT_CLASSNAME = `k-dateinput`;
8863
- var states65 = [
8864
- States.hover,
8865
- States.focus,
8866
- States.valid,
8867
- States.invalid,
8868
- States.required,
8869
- States.disabled,
8870
- States.loading,
8871
- States.readonly
8872
- ];
8873
- var options62 = {
8874
- size: [Size.small, Size.medium, Size.large],
8875
- rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full],
8876
- fillMode: [FillMode.solid, FillMode.flat, FillMode.outline]
8877
- };
8878
- var defaultProps61 = {
8879
- size: Input.defaultProps.size,
8880
- rounded: Input.defaultProps.rounded,
8881
- fillMode: Input.defaultProps.fillMode
8882
- };
8883
- var DateInput = (props) => {
8884
- const {
8885
- value,
8886
- placeholder,
8887
- size,
8888
- rounded,
8889
- fillMode,
8890
- hover,
8891
- focus,
8892
- valid,
8893
- invalid,
8894
- required,
8895
- loading,
8896
- disabled,
8897
- readonly,
8898
- showSpinButton,
8899
- ...other
8900
- } = props;
8901
- return /* @__PURE__ */ jsxs70(
8902
- Input,
8903
- {
8904
- ...other,
8905
- size,
8906
- rounded,
8907
- fillMode,
8908
- hover,
8909
- focus,
8910
- valid,
8911
- invalid,
8912
- required,
8913
- loading,
8914
- disabled,
8915
- readonly,
8916
- className: classNames(props.className, DATEINPUT_CLASSNAME),
8917
- children: [
8918
- /* @__PURE__ */ jsx178(InputInnerInput, { placeholder, value }),
8919
- /* @__PURE__ */ jsx178(
8920
- InputValidationIcon,
8921
- {
8922
- valid,
8923
- invalid,
8924
- loading,
8925
- disabled
8926
- }
8927
- ),
8928
- /* @__PURE__ */ jsx178(
8929
- InputLoadingIcon,
8930
- {
8931
- loading,
8932
- disabled
8933
- }
8934
- ),
8935
- showSpinButton && /* @__PURE__ */ jsx178(
8936
- SpinButton,
8937
- {
8938
- className: "k-input-spinner",
8939
- size,
8940
- fillMode
8941
- }
8942
- )
8943
- ]
8944
- }
8945
- );
8946
- };
8947
- DateInput.states = states65;
8948
- DateInput.options = options62;
8949
- DateInput.className = DATEINPUT_CLASSNAME;
8950
- DateInput.defaultProps = defaultProps61;
8951
-
8952
- // src/dateinput/templates/dateinput-normal.tsx
8953
- import { jsx as jsx179 } from "react/jsx-runtime";
8954
-
8955
8860
  // src/calendar/calendar.spec.tsx
8956
- import { jsx as jsx180, jsxs as jsxs71 } from "react/jsx-runtime";
8861
+ import { jsx as jsx178, jsxs as jsxs70 } from "react/jsx-runtime";
8957
8862
  var CALENDAR_CLASSNAME = `k-calendar`;
8958
- var states66 = [];
8959
- var options63 = {
8863
+ var states65 = [];
8864
+ var options62 = {
8960
8865
  size: [Size.small, Size.medium, Size.large]
8961
8866
  };
8962
- var defaultProps62 = {
8867
+ var defaultProps61 = {
8963
8868
  size: Size.medium,
8964
8869
  viewsCount: 1,
8965
8870
  orientation: "horizontal",
@@ -8968,11 +8873,11 @@ var defaultProps62 = {
8968
8873
  };
8969
8874
  var Calendar = (props) => {
8970
8875
  const {
8971
- size = defaultProps62.size,
8972
- orientation = defaultProps62.orientation,
8973
- calendarView = defaultProps62.calendarView,
8974
- calendarHeaderText = defaultProps62.calendarHeaderText,
8975
- viewsCount = defaultProps62.viewsCount,
8876
+ size = defaultProps61.size,
8877
+ orientation = defaultProps61.orientation,
8878
+ calendarView = defaultProps61.calendarView,
8879
+ calendarHeaderText = defaultProps61.calendarHeaderText,
8880
+ viewsCount = defaultProps61.viewsCount,
8976
8881
  showWeek,
8977
8882
  showOtherMonth,
8978
8883
  showCalendarCaption,
@@ -8981,7 +8886,7 @@ var Calendar = (props) => {
8981
8886
  dir,
8982
8887
  ...other
8983
8888
  } = props;
8984
- return /* @__PURE__ */ jsxs71(
8889
+ return /* @__PURE__ */ jsxs70(
8985
8890
  "div",
8986
8891
  {
8987
8892
  ...other,
@@ -8997,7 +8902,7 @@ var Calendar = (props) => {
8997
8902
  }
8998
8903
  ),
8999
8904
  children: [
9000
- /* @__PURE__ */ jsx180(
8905
+ /* @__PURE__ */ jsx178(
9001
8906
  CalendarHeader,
9002
8907
  {
9003
8908
  showToday: showCalendarFooter ? false : true,
@@ -9007,7 +8912,7 @@ var Calendar = (props) => {
9007
8912
  dir
9008
8913
  }
9009
8914
  ),
9010
- /* @__PURE__ */ jsx180(
8915
+ /* @__PURE__ */ jsx178(
9011
8916
  CalendarView,
9012
8917
  {
9013
8918
  calendarView,
@@ -9019,19 +8924,19 @@ var Calendar = (props) => {
9019
8924
  selectedRange
9020
8925
  }
9021
8926
  ),
9022
- showCalendarFooter && /* @__PURE__ */ jsx180(CalendarFooter, {})
8927
+ showCalendarFooter && /* @__PURE__ */ jsx178(CalendarFooter, {})
9023
8928
  ]
9024
8929
  }
9025
8930
  );
9026
8931
  };
9027
- Calendar.states = states66;
9028
- Calendar.options = options63;
8932
+ Calendar.states = states65;
8933
+ Calendar.options = options62;
9029
8934
  Calendar.className = CALENDAR_CLASSNAME;
9030
- Calendar.defaultProps = defaultProps62;
8935
+ Calendar.defaultProps = defaultProps61;
9031
8936
 
9032
8937
  // src/calendar/calendar-cell.tsx
9033
- import { jsx as jsx181 } from "react/jsx-runtime";
9034
- var states67 = [
8938
+ import { jsx as jsx179 } from "react/jsx-runtime";
8939
+ var states66 = [
9035
8940
  States.hover,
9036
8941
  States.focus,
9037
8942
  States.active,
@@ -9080,21 +8985,21 @@ var CalendarCell = (props) => {
9080
8985
  }
9081
8986
  ];
9082
8987
  if (headerCell) {
9083
- return /* @__PURE__ */ jsx181("th", { ...other, className: classNames(calendarCellClasses), children: text });
8988
+ return /* @__PURE__ */ jsx179("th", { ...other, className: classNames(calendarCellClasses), children: text });
9084
8989
  }
9085
8990
  if (weekCell) {
9086
- return /* @__PURE__ */ jsx181("td", { ...other, className: classNames(calendarCellClasses), children: text });
8991
+ return /* @__PURE__ */ jsx179("td", { ...other, className: classNames(calendarCellClasses), children: text });
9087
8992
  }
9088
- return /* @__PURE__ */ jsx181("td", { ...other, className: classNames(calendarCellClasses), children: otherMonth && !showOtherMonth ? "" : /* @__PURE__ */ jsx181("span", { className: "k-link", children: text }) });
8993
+ return /* @__PURE__ */ jsx179("td", { ...other, className: classNames(calendarCellClasses), children: otherMonth && !showOtherMonth ? "" : /* @__PURE__ */ jsx179("span", { className: "k-link", children: text }) });
9089
8994
  };
9090
8995
 
9091
8996
  // src/calendar/calendar-header.tsx
9092
- import { jsx as jsx182, jsxs as jsxs72 } from "react/jsx-runtime";
8997
+ import { jsx as jsx180, jsxs as jsxs71 } from "react/jsx-runtime";
9093
8998
  var className14 = `k-calendar-header`;
9094
- var options64 = {
8999
+ var options63 = {
9095
9000
  size: [Size.small, Size.medium, Size.large]
9096
9001
  };
9097
- var defaultProps63 = {
9002
+ var defaultProps62 = {
9098
9003
  calendarHeaderText: "October 2021",
9099
9004
  showToday: true,
9100
9005
  orientation: "horizontal",
@@ -9102,16 +9007,16 @@ var defaultProps63 = {
9102
9007
  };
9103
9008
  var CalendarHeader = (props) => {
9104
9009
  const {
9105
- calendarHeaderText = defaultProps63.calendarHeaderText,
9106
- showToday = defaultProps63.showToday,
9107
- orientation = defaultProps63.orientation,
9108
- size = defaultProps63.size,
9010
+ calendarHeaderText = defaultProps62.calendarHeaderText,
9011
+ showToday = defaultProps62.showToday,
9012
+ orientation = defaultProps62.orientation,
9013
+ size = defaultProps62.size,
9109
9014
  dir,
9110
9015
  ...other
9111
9016
  } = props;
9112
9017
  const iconPrev = dir === "rtl" ? "chevron-right" : "chevron-left";
9113
9018
  const iconNext = dir === "rtl" ? "chevron-left" : "chevron-right";
9114
- return /* @__PURE__ */ jsxs72(
9019
+ return /* @__PURE__ */ jsxs71(
9115
9020
  "div",
9116
9021
  {
9117
9022
  ...other,
@@ -9123,12 +9028,12 @@ var CalendarHeader = (props) => {
9123
9028
  }
9124
9029
  ),
9125
9030
  children: [
9126
- /* @__PURE__ */ jsx182(Button, { className: "k-calendar-title", text: calendarHeaderText, size, fillMode: "flat" }),
9127
- /* @__PURE__ */ jsx182("span", { className: "k-spacer" }),
9128
- /* @__PURE__ */ jsxs72("span", { className: "k-calendar-nav", children: [
9129
- /* @__PURE__ */ jsx182(Button, { className: "k-calendar-nav-prev", icon: iconPrev, size, fillMode: "flat" }),
9130
- showToday && /* @__PURE__ */ jsx182(Button, { size, fillMode: "flat", themeColor: "primary", className: "k-calendar-nav-today", children: "Today" }),
9131
- /* @__PURE__ */ jsx182(Button, { className: "k-calendar-nav-next", icon: iconNext, size, fillMode: "flat" })
9031
+ /* @__PURE__ */ jsx180(Button, { className: "k-calendar-title", text: calendarHeaderText, size, fillMode: "flat" }),
9032
+ /* @__PURE__ */ jsx180("span", { className: "k-spacer" }),
9033
+ /* @__PURE__ */ jsxs71("span", { className: "k-calendar-nav", children: [
9034
+ /* @__PURE__ */ jsx180(Button, { className: "k-calendar-nav-prev", icon: iconPrev, size, fillMode: "flat" }),
9035
+ showToday && /* @__PURE__ */ jsx180(Button, { size, fillMode: "flat", themeColor: "primary", className: "k-calendar-nav-today", children: "Today" }),
9036
+ /* @__PURE__ */ jsx180(Button, { className: "k-calendar-nav-next", icon: iconNext, size, fillMode: "flat" })
9132
9037
  ] })
9133
9038
  ]
9134
9039
  }
@@ -9136,12 +9041,12 @@ var CalendarHeader = (props) => {
9136
9041
  };
9137
9042
 
9138
9043
  // src/calendar/calendar-footer.tsx
9139
- import { jsx as jsx183 } from "react/jsx-runtime";
9044
+ import { jsx as jsx181 } from "react/jsx-runtime";
9140
9045
  var className15 = `k-calendar-footer`;
9141
- var CalendarFooter = (props) => /* @__PURE__ */ jsx183("div", { ...props, className: classNames(props.className, className15), children: /* @__PURE__ */ jsx183(Button, { fillMode: "flat", themeColor: "primary", className: "k-calendar-nav-today", children: "Monday, October 29, 2021" }) });
9046
+ var CalendarFooter = (props) => /* @__PURE__ */ jsx181("div", { ...props, className: classNames(props.className, className15), children: /* @__PURE__ */ jsx181(Button, { fillMode: "flat", themeColor: "primary", className: "k-calendar-nav-today", children: "Monday, October 29, 2021" }) });
9142
9047
 
9143
9048
  // src/calendar/calendar-table.tsx
9144
- import { jsx as jsx184, jsxs as jsxs73 } from "react/jsx-runtime";
9049
+ import { jsx as jsx182, jsxs as jsxs72 } from "react/jsx-runtime";
9145
9050
  var CALENDARTABLE_CLASSNAME = `k-calendar-table`;
9146
9051
  var CalendarTable = (props) => {
9147
9052
  const {
@@ -9153,7 +9058,7 @@ var CalendarTable = (props) => {
9153
9058
  ...other
9154
9059
  } = props;
9155
9060
  if (calendarView === "year") {
9156
- return /* @__PURE__ */ jsxs73(
9061
+ return /* @__PURE__ */ jsxs72(
9157
9062
  "table",
9158
9063
  {
9159
9064
  ...other,
@@ -9162,25 +9067,25 @@ var CalendarTable = (props) => {
9162
9067
  CALENDARTABLE_CLASSNAME
9163
9068
  ),
9164
9069
  children: [
9165
- showCalendarCaption && /* @__PURE__ */ jsx184("caption", { className: "k-calendar-caption", children: "2022" }),
9166
- /* @__PURE__ */ jsxs73("tbody", { className: "k-calendar-tbody", children: [
9167
- /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9168
- /* @__PURE__ */ jsx184(CalendarCell, { text: "Jan" }),
9169
- /* @__PURE__ */ jsx184(CalendarCell, { text: "Feb" }),
9170
- /* @__PURE__ */ jsx184(CalendarCell, { text: "Mar" }),
9171
- /* @__PURE__ */ jsx184(CalendarCell, { text: "Apr" })
9070
+ showCalendarCaption && /* @__PURE__ */ jsx182("caption", { className: "k-calendar-caption", children: "2022" }),
9071
+ /* @__PURE__ */ jsxs72("tbody", { className: "k-calendar-tbody", children: [
9072
+ /* @__PURE__ */ jsxs72("tr", { className: "k-calendar-tr", children: [
9073
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "Jan" }),
9074
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "Feb" }),
9075
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "Mar" }),
9076
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "Apr" })
9172
9077
  ] }),
9173
- /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9174
- /* @__PURE__ */ jsx184(CalendarCell, { text: "May" }),
9175
- /* @__PURE__ */ jsx184(CalendarCell, { text: "Jun", hover: true }),
9176
- /* @__PURE__ */ jsx184(CalendarCell, { text: "Jul", focus: true }),
9177
- /* @__PURE__ */ jsx184(CalendarCell, { text: "Au", selected: true })
9078
+ /* @__PURE__ */ jsxs72("tr", { className: "k-calendar-tr", children: [
9079
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "May" }),
9080
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "Jun", hover: true }),
9081
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "Jul", focus: true }),
9082
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "Au", selected: true })
9178
9083
  ] }),
9179
- /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9180
- /* @__PURE__ */ jsx184(CalendarCell, { text: "Sep" }),
9181
- /* @__PURE__ */ jsx184(CalendarCell, { text: "Oct", today: true }),
9182
- /* @__PURE__ */ jsx184(CalendarCell, { text: "Nov" }),
9183
- /* @__PURE__ */ jsx184(CalendarCell, { text: "Dec" })
9084
+ /* @__PURE__ */ jsxs72("tr", { className: "k-calendar-tr", children: [
9085
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "Sep" }),
9086
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "Oct", today: true }),
9087
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "Nov" }),
9088
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "Dec" })
9184
9089
  ] })
9185
9090
  ] })
9186
9091
  ]
@@ -9188,7 +9093,7 @@ var CalendarTable = (props) => {
9188
9093
  );
9189
9094
  }
9190
9095
  if (calendarView === "decade") {
9191
- return /* @__PURE__ */ jsxs73(
9096
+ return /* @__PURE__ */ jsxs72(
9192
9097
  "table",
9193
9098
  {
9194
9099
  ...other,
@@ -9197,25 +9102,25 @@ var CalendarTable = (props) => {
9197
9102
  CALENDARTABLE_CLASSNAME
9198
9103
  ),
9199
9104
  children: [
9200
- showCalendarCaption && /* @__PURE__ */ jsx184("caption", { className: "k-calendar-caption", children: "2020 - 2029" }),
9201
- /* @__PURE__ */ jsxs73("tbody", { className: "k-calendar-tbody", children: [
9202
- /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9203
- /* @__PURE__ */ jsx184(CalendarCell, { className: "k-out-of-range" }),
9204
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2020" }),
9205
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2021", today: true }),
9206
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2022" })
9105
+ showCalendarCaption && /* @__PURE__ */ jsx182("caption", { className: "k-calendar-caption", children: "2020 - 2029" }),
9106
+ /* @__PURE__ */ jsxs72("tbody", { className: "k-calendar-tbody", children: [
9107
+ /* @__PURE__ */ jsxs72("tr", { className: "k-calendar-tr", children: [
9108
+ /* @__PURE__ */ jsx182(CalendarCell, { className: "k-out-of-range" }),
9109
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2020" }),
9110
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2021", today: true }),
9111
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2022" })
9207
9112
  ] }),
9208
- /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9209
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2023" }),
9210
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2024", hover: true }),
9211
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2025", focus: true }),
9212
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2026", selected: true })
9113
+ /* @__PURE__ */ jsxs72("tr", { className: "k-calendar-tr", children: [
9114
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2023" }),
9115
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2024", hover: true }),
9116
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2025", focus: true }),
9117
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2026", selected: true })
9213
9118
  ] }),
9214
- /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9215
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2027" }),
9216
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2028" }),
9217
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2029" }),
9218
- /* @__PURE__ */ jsx184(CalendarCell, { className: "k-out-of-range" })
9119
+ /* @__PURE__ */ jsxs72("tr", { className: "k-calendar-tr", children: [
9120
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2027" }),
9121
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2028" }),
9122
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2029" }),
9123
+ /* @__PURE__ */ jsx182(CalendarCell, { className: "k-out-of-range" })
9219
9124
  ] })
9220
9125
  ] })
9221
9126
  ]
@@ -9223,7 +9128,7 @@ var CalendarTable = (props) => {
9223
9128
  );
9224
9129
  }
9225
9130
  if (calendarView === "century") {
9226
- return /* @__PURE__ */ jsxs73(
9131
+ return /* @__PURE__ */ jsxs72(
9227
9132
  "table",
9228
9133
  {
9229
9134
  ...other,
@@ -9232,32 +9137,32 @@ var CalendarTable = (props) => {
9232
9137
  CALENDARTABLE_CLASSNAME
9233
9138
  ),
9234
9139
  children: [
9235
- showCalendarCaption && /* @__PURE__ */ jsx184("caption", { className: "k-calendar-caption", children: "2000 - 2099" }),
9236
- /* @__PURE__ */ jsxs73("tbody", { className: "k-calendar-tbody", children: [
9237
- /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9238
- /* @__PURE__ */ jsx184(CalendarCell, { text: "1990 - 1999" }),
9239
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2000 - 2009" }),
9240
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2010 - 2019", today: true }),
9241
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2020 - 2029" })
9140
+ showCalendarCaption && /* @__PURE__ */ jsx182("caption", { className: "k-calendar-caption", children: "2000 - 2099" }),
9141
+ /* @__PURE__ */ jsxs72("tbody", { className: "k-calendar-tbody", children: [
9142
+ /* @__PURE__ */ jsxs72("tr", { className: "k-calendar-tr", children: [
9143
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "1990 - 1999" }),
9144
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2000 - 2009" }),
9145
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2010 - 2019", today: true }),
9146
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2020 - 2029" })
9242
9147
  ] }),
9243
- /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9244
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2030 - 2039" }),
9245
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2040 - 2049", hover: true }),
9246
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2050 - 2059", focus: true }),
9247
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2060 - 2069", selected: true })
9148
+ /* @__PURE__ */ jsxs72("tr", { className: "k-calendar-tr", children: [
9149
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2030 - 2039" }),
9150
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2040 - 2049", hover: true }),
9151
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2050 - 2059", focus: true }),
9152
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2060 - 2069", selected: true })
9248
9153
  ] }),
9249
- /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9250
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2070 - 2079" }),
9251
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2080 - 2089" }),
9252
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2090 - 2099" }),
9253
- /* @__PURE__ */ jsx184(CalendarCell, { className: "k-out-of-range" })
9154
+ /* @__PURE__ */ jsxs72("tr", { className: "k-calendar-tr", children: [
9155
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2070 - 2079" }),
9156
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2080 - 2089" }),
9157
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2090 - 2099" }),
9158
+ /* @__PURE__ */ jsx182(CalendarCell, { className: "k-out-of-range" })
9254
9159
  ] })
9255
9160
  ] })
9256
9161
  ]
9257
9162
  }
9258
9163
  );
9259
9164
  }
9260
- return /* @__PURE__ */ jsxs73(
9165
+ return /* @__PURE__ */ jsxs72(
9261
9166
  "table",
9262
9167
  {
9263
9168
  ...other,
@@ -9266,68 +9171,68 @@ var CalendarTable = (props) => {
9266
9171
  CALENDARTABLE_CLASSNAME
9267
9172
  ),
9268
9173
  children: [
9269
- showCalendarCaption && /* @__PURE__ */ jsx184("caption", { className: "k-calendar-caption", children: "October 2021" }),
9270
- /* @__PURE__ */ jsx184(CalendarTableHead, { showWeek }),
9271
- /* @__PURE__ */ jsxs73("tbody", { className: "k-calendar-tbody", children: [
9272
- /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9273
- showWeek && /* @__PURE__ */ jsx184(CalendarCell, { text: "39", weekCell: true }),
9274
- /* @__PURE__ */ jsx184(CalendarCell, { text: "30", otherMonth: true, showOtherMonth }),
9275
- /* @__PURE__ */ jsx184(CalendarCell, { text: "1" }),
9276
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2" }),
9277
- /* @__PURE__ */ jsx184(CalendarCell, { text: "3" }),
9278
- /* @__PURE__ */ jsx184(CalendarCell, { text: "4" }),
9279
- /* @__PURE__ */ jsx184(CalendarCell, { text: "5" }),
9280
- /* @__PURE__ */ jsx184(CalendarCell, { text: "6", weekend: true })
9174
+ showCalendarCaption && /* @__PURE__ */ jsx182("caption", { className: "k-calendar-caption", children: "October 2021" }),
9175
+ /* @__PURE__ */ jsx182(CalendarTableHead, { showWeek }),
9176
+ /* @__PURE__ */ jsxs72("tbody", { className: "k-calendar-tbody", children: [
9177
+ /* @__PURE__ */ jsxs72("tr", { className: "k-calendar-tr", children: [
9178
+ showWeek && /* @__PURE__ */ jsx182(CalendarCell, { text: "39", weekCell: true }),
9179
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "30", otherMonth: true, showOtherMonth }),
9180
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "1" }),
9181
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2" }),
9182
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "3" }),
9183
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "4" }),
9184
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "5" }),
9185
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "6", weekend: true })
9281
9186
  ] }),
9282
- /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9283
- showWeek && /* @__PURE__ */ jsx184(CalendarCell, { text: "40", weekCell: true }),
9284
- /* @__PURE__ */ jsx184(CalendarCell, { text: "7", weekend: true }),
9285
- /* @__PURE__ */ jsx184(CalendarCell, { text: "8", hover: true }),
9286
- /* @__PURE__ */ jsx184(CalendarCell, { text: "9", focus: true }),
9287
- /* @__PURE__ */ jsx184(CalendarCell, { text: "10", selected: true }),
9288
- /* @__PURE__ */ jsx184(CalendarCell, { text: "11", hover: true, focus: true }),
9289
- /* @__PURE__ */ jsx184(CalendarCell, { text: "12", hover: true, selected: true }),
9290
- /* @__PURE__ */ jsx184(CalendarCell, { text: "13", weekend: true })
9187
+ /* @__PURE__ */ jsxs72("tr", { className: "k-calendar-tr", children: [
9188
+ showWeek && /* @__PURE__ */ jsx182(CalendarCell, { text: "40", weekCell: true }),
9189
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "7", weekend: true }),
9190
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "8", hover: true }),
9191
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "9", focus: true }),
9192
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "10", selected: true }),
9193
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "11", hover: true, focus: true }),
9194
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "12", hover: true, selected: true }),
9195
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "13", weekend: true })
9291
9196
  ] }),
9292
- /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9293
- showWeek && /* @__PURE__ */ jsx184(CalendarCell, { text: "41", weekCell: true }),
9294
- /* @__PURE__ */ jsx184(CalendarCell, { text: "14", weekend: true }),
9295
- /* @__PURE__ */ jsx184(CalendarCell, { text: "15" }),
9296
- /* @__PURE__ */ jsx184(CalendarCell, { text: "16", today: true }),
9297
- /* @__PURE__ */ jsx184(CalendarCell, { text: "17" }),
9298
- /* @__PURE__ */ jsx184(CalendarCell, { text: "18" }),
9299
- /* @__PURE__ */ jsx184(CalendarCell, { text: "19" }),
9300
- /* @__PURE__ */ jsx184(CalendarCell, { text: "20", weekend: true })
9197
+ /* @__PURE__ */ jsxs72("tr", { className: "k-calendar-tr", children: [
9198
+ showWeek && /* @__PURE__ */ jsx182(CalendarCell, { text: "41", weekCell: true }),
9199
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "14", weekend: true }),
9200
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "15" }),
9201
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "16", today: true }),
9202
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "17" }),
9203
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "18" }),
9204
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "19" }),
9205
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "20", weekend: true })
9301
9206
  ] }),
9302
- /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9303
- showWeek && /* @__PURE__ */ jsx184(CalendarCell, { text: "42", weekCell: true }),
9304
- /* @__PURE__ */ jsx184(CalendarCell, { text: "21", weekend: true }),
9305
- /* @__PURE__ */ jsx184(CalendarCell, { text: "22" }),
9306
- /* @__PURE__ */ jsx184(CalendarCell, { text: "23" }),
9307
- /* @__PURE__ */ jsx184(CalendarCell, { text: "24" }),
9308
- /* @__PURE__ */ jsx184(CalendarCell, { text: "25", rangeStart: selectedRange, selected: selectedRange }),
9309
- /* @__PURE__ */ jsx184(CalendarCell, { text: "26", rangeMid: selectedRange }),
9310
- /* @__PURE__ */ jsx184(CalendarCell, { text: "27", weekend: true, rangeMid: selectedRange })
9207
+ /* @__PURE__ */ jsxs72("tr", { className: "k-calendar-tr", children: [
9208
+ showWeek && /* @__PURE__ */ jsx182(CalendarCell, { text: "42", weekCell: true }),
9209
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "21", weekend: true }),
9210
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "22" }),
9211
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "23" }),
9212
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "24" }),
9213
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "25", rangeStart: selectedRange, selected: selectedRange }),
9214
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "26", rangeMid: selectedRange }),
9215
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "27", weekend: true, rangeMid: selectedRange })
9311
9216
  ] }),
9312
- /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9313
- showWeek && /* @__PURE__ */ jsx184(CalendarCell, { text: "43", weekCell: true }),
9314
- /* @__PURE__ */ jsx184(CalendarCell, { text: "28", weekend: true, rangeMid: selectedRange }),
9315
- /* @__PURE__ */ jsx184(CalendarCell, { text: "29", rangeEnd: selectedRange, focus: selectedRange, selected: selectedRange }),
9316
- /* @__PURE__ */ jsx184(CalendarCell, { text: "30" }),
9317
- /* @__PURE__ */ jsx184(CalendarCell, { text: "31" }),
9318
- /* @__PURE__ */ jsx184(CalendarCell, { text: "1", otherMonth: true, showOtherMonth }),
9319
- /* @__PURE__ */ jsx184(CalendarCell, { text: "2", otherMonth: true, showOtherMonth }),
9320
- /* @__PURE__ */ jsx184(CalendarCell, { text: "3", otherMonth: true, weekend: true, showOtherMonth })
9217
+ /* @__PURE__ */ jsxs72("tr", { className: "k-calendar-tr", children: [
9218
+ showWeek && /* @__PURE__ */ jsx182(CalendarCell, { text: "43", weekCell: true }),
9219
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "28", weekend: true, rangeMid: selectedRange }),
9220
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "29", rangeEnd: selectedRange, focus: selectedRange, selected: selectedRange }),
9221
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "30" }),
9222
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "31" }),
9223
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "1", otherMonth: true, showOtherMonth }),
9224
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "2", otherMonth: true, showOtherMonth }),
9225
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "3", otherMonth: true, weekend: true, showOtherMonth })
9321
9226
  ] }),
9322
- /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9323
- showWeek && /* @__PURE__ */ jsx184(CalendarCell, { text: "44", weekCell: true }),
9324
- /* @__PURE__ */ jsx184(CalendarCell, { text: "4", otherMonth: true, weekend: true, showOtherMonth }),
9325
- /* @__PURE__ */ jsx184(CalendarCell, { text: "5", otherMonth: true, showOtherMonth }),
9326
- /* @__PURE__ */ jsx184(CalendarCell, { text: "6", otherMonth: true, showOtherMonth }),
9327
- /* @__PURE__ */ jsx184(CalendarCell, { text: "7", otherMonth: true, showOtherMonth }),
9328
- /* @__PURE__ */ jsx184(CalendarCell, { text: "8", otherMonth: true, showOtherMonth }),
9329
- /* @__PURE__ */ jsx184(CalendarCell, { text: "9", otherMonth: true, showOtherMonth }),
9330
- /* @__PURE__ */ jsx184(CalendarCell, { text: "10", otherMonth: true, weekend: true, showOtherMonth })
9227
+ /* @__PURE__ */ jsxs72("tr", { className: "k-calendar-tr", children: [
9228
+ showWeek && /* @__PURE__ */ jsx182(CalendarCell, { text: "44", weekCell: true }),
9229
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "4", otherMonth: true, weekend: true, showOtherMonth }),
9230
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "5", otherMonth: true, showOtherMonth }),
9231
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "6", otherMonth: true, showOtherMonth }),
9232
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "7", otherMonth: true, showOtherMonth }),
9233
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "8", otherMonth: true, showOtherMonth }),
9234
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "9", otherMonth: true, showOtherMonth }),
9235
+ /* @__PURE__ */ jsx182(CalendarCell, { text: "10", otherMonth: true, weekend: true, showOtherMonth })
9331
9236
  ] })
9332
9237
  ] })
9333
9238
  ]
@@ -9336,52 +9241,52 @@ var CalendarTable = (props) => {
9336
9241
  };
9337
9242
 
9338
9243
  // src/calendar/calendar-table-head.tsx
9339
- import { jsx as jsx185, jsxs as jsxs74 } from "react/jsx-runtime";
9244
+ import { jsx as jsx183, jsxs as jsxs73 } from "react/jsx-runtime";
9340
9245
  var className16 = `k-calendar-thead`;
9341
9246
  var CalendarTableHead = (props) => {
9342
9247
  const {
9343
9248
  showWeek,
9344
9249
  ...other
9345
9250
  } = props;
9346
- return /* @__PURE__ */ jsx185(
9251
+ return /* @__PURE__ */ jsx183(
9347
9252
  "thead",
9348
9253
  {
9349
9254
  ...other,
9350
9255
  className: classNames(props.className, className16),
9351
- children: /* @__PURE__ */ jsxs74("tr", { className: "k-calendar-tr", children: [
9352
- showWeek && /* @__PURE__ */ jsx185(CalendarCell, { weekCell: true, headerCell: true }),
9353
- /* @__PURE__ */ jsx185(CalendarCell, { text: "Su", headerCell: true }),
9354
- /* @__PURE__ */ jsx185(CalendarCell, { text: "Mo", headerCell: true }),
9355
- /* @__PURE__ */ jsx185(CalendarCell, { text: "Tu", headerCell: true }),
9356
- /* @__PURE__ */ jsx185(CalendarCell, { text: "We", headerCell: true }),
9357
- /* @__PURE__ */ jsx185(CalendarCell, { text: "Th", headerCell: true }),
9358
- /* @__PURE__ */ jsx185(CalendarCell, { text: "Fr", headerCell: true }),
9359
- /* @__PURE__ */ jsx185(CalendarCell, { text: "Sa", headerCell: true })
9256
+ children: /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9257
+ showWeek && /* @__PURE__ */ jsx183(CalendarCell, { weekCell: true, headerCell: true }),
9258
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "Su", headerCell: true }),
9259
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "Mo", headerCell: true }),
9260
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "Tu", headerCell: true }),
9261
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "We", headerCell: true }),
9262
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "Th", headerCell: true }),
9263
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "Fr", headerCell: true }),
9264
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "Sa", headerCell: true })
9360
9265
  ] })
9361
9266
  }
9362
9267
  );
9363
9268
  };
9364
9269
 
9365
9270
  // src/calendar/calendar-view.tsx
9366
- import { jsx as jsx186 } from "react/jsx-runtime";
9271
+ import { jsx as jsx184 } from "react/jsx-runtime";
9367
9272
  var className17 = `k-calendar-view`;
9368
- var defaultProps64 = {
9273
+ var defaultProps63 = {
9369
9274
  viewsCount: 1,
9370
9275
  orientation: "horizontal",
9371
9276
  calendarView: "month"
9372
9277
  };
9373
9278
  var CalendarView = (props) => {
9374
9279
  const {
9375
- orientation = defaultProps64.orientation,
9376
- calendarView = defaultProps64.calendarView,
9377
- viewsCount = defaultProps64.viewsCount,
9280
+ orientation = defaultProps63.orientation,
9281
+ calendarView = defaultProps63.calendarView,
9282
+ viewsCount = defaultProps63.viewsCount,
9378
9283
  showWeek,
9379
9284
  showOtherMonth,
9380
9285
  showCalendarCaption,
9381
9286
  selectedRange,
9382
9287
  ...other
9383
9288
  } = props;
9384
- return /* @__PURE__ */ jsx186(
9289
+ return /* @__PURE__ */ jsx184(
9385
9290
  "div",
9386
9291
  {
9387
9292
  ...other,
@@ -9397,7 +9302,7 @@ var CalendarView = (props) => {
9397
9302
  }
9398
9303
  ),
9399
9304
  children: [...Array(viewsCount)].map(
9400
- (_e, i) => /* @__PURE__ */ jsx186(
9305
+ (_e, i) => /* @__PURE__ */ jsx184(
9401
9306
  CalendarTable,
9402
9307
  {
9403
9308
  calendarView,
@@ -9413,6 +9318,101 @@ var CalendarView = (props) => {
9413
9318
  );
9414
9319
  };
9415
9320
 
9321
+ // src/dateinput/dateinput.spec.tsx
9322
+ import { jsx as jsx185, jsxs as jsxs74 } from "react/jsx-runtime";
9323
+ var DATEINPUT_CLASSNAME = `k-dateinput`;
9324
+ var states67 = [
9325
+ States.hover,
9326
+ States.focus,
9327
+ States.valid,
9328
+ States.invalid,
9329
+ States.required,
9330
+ States.disabled,
9331
+ States.loading,
9332
+ States.readonly
9333
+ ];
9334
+ var options64 = {
9335
+ size: [Size.small, Size.medium, Size.large],
9336
+ rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full],
9337
+ fillMode: [FillMode.solid, FillMode.flat, FillMode.outline]
9338
+ };
9339
+ var defaultProps64 = {
9340
+ size: Input.defaultProps.size,
9341
+ rounded: Input.defaultProps.rounded,
9342
+ fillMode: Input.defaultProps.fillMode
9343
+ };
9344
+ var DateInput = (props) => {
9345
+ const {
9346
+ value,
9347
+ placeholder,
9348
+ size,
9349
+ rounded,
9350
+ fillMode,
9351
+ hover,
9352
+ focus,
9353
+ valid,
9354
+ invalid,
9355
+ required,
9356
+ loading,
9357
+ disabled,
9358
+ readonly,
9359
+ showSpinButton,
9360
+ ...other
9361
+ } = props;
9362
+ return /* @__PURE__ */ jsxs74(
9363
+ Input,
9364
+ {
9365
+ ...other,
9366
+ size,
9367
+ rounded,
9368
+ fillMode,
9369
+ hover,
9370
+ focus,
9371
+ valid,
9372
+ invalid,
9373
+ required,
9374
+ loading,
9375
+ disabled,
9376
+ readonly,
9377
+ className: classNames(props.className, DATEINPUT_CLASSNAME),
9378
+ children: [
9379
+ /* @__PURE__ */ jsx185(InputInnerInput, { placeholder, value }),
9380
+ /* @__PURE__ */ jsx185(
9381
+ InputValidationIcon,
9382
+ {
9383
+ valid,
9384
+ invalid,
9385
+ loading,
9386
+ disabled
9387
+ }
9388
+ ),
9389
+ /* @__PURE__ */ jsx185(
9390
+ InputLoadingIcon,
9391
+ {
9392
+ loading,
9393
+ disabled
9394
+ }
9395
+ ),
9396
+ showSpinButton && /* @__PURE__ */ jsx185(
9397
+ SpinButton,
9398
+ {
9399
+ className: "k-input-spinner",
9400
+ size,
9401
+ fillMode
9402
+ }
9403
+ )
9404
+ ]
9405
+ }
9406
+ );
9407
+ };
9408
+ DateInput.states = states67;
9409
+ DateInput.options = options64;
9410
+ DateInput.className = DATEINPUT_CLASSNAME;
9411
+ DateInput.defaultProps = defaultProps64;
9412
+
9413
+ // src/dateinput/templates/dateinput-normal.tsx
9414
+ import { jsx as jsx186 } from "react/jsx-runtime";
9415
+
9416
9416
  // src/datepicker/datepicker.spec.tsx
9417
9417
  import { Fragment as Fragment55, jsx as jsx187, jsxs as jsxs75 } from "react/jsx-runtime";
9418
9418
  var DATEPICKER_CLASSNAME = `k-datepicker`;