@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
@@ -11029,109 +11029,14 @@ Captcha.defaultProps = defaultProps86;
11029
11029
  // src/captcha/templates/captcha-normal.tsx
11030
11030
  import { jsx as jsx256 } from "react/jsx-runtime";
11031
11031
 
11032
- // src/dateinput/dateinput.spec.tsx
11033
- import { jsx as jsx257, jsxs as jsxs99 } from "react/jsx-runtime";
11034
- var DATEINPUT_CLASSNAME = `k-dateinput`;
11035
- var states93 = [
11036
- States.hover,
11037
- States.focus,
11038
- States.valid,
11039
- States.invalid,
11040
- States.required,
11041
- States.disabled,
11042
- States.loading,
11043
- States.readonly
11044
- ];
11045
- var options88 = {
11046
- size: [Size.small, Size.medium, Size.large],
11047
- rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full],
11048
- fillMode: [FillMode.solid, FillMode.flat, FillMode.outline]
11049
- };
11050
- var defaultProps87 = {
11051
- size: Input.defaultProps.size,
11052
- rounded: Input.defaultProps.rounded,
11053
- fillMode: Input.defaultProps.fillMode
11054
- };
11055
- var DateInput = (props) => {
11056
- const {
11057
- value,
11058
- placeholder,
11059
- size,
11060
- rounded,
11061
- fillMode,
11062
- hover,
11063
- focus,
11064
- valid,
11065
- invalid,
11066
- required,
11067
- loading,
11068
- disabled,
11069
- readonly,
11070
- showSpinButton,
11071
- ...other
11072
- } = props;
11073
- return /* @__PURE__ */ jsxs99(
11074
- Input,
11075
- {
11076
- ...other,
11077
- size,
11078
- rounded,
11079
- fillMode,
11080
- hover,
11081
- focus,
11082
- valid,
11083
- invalid,
11084
- required,
11085
- loading,
11086
- disabled,
11087
- readonly,
11088
- className: classNames(props.className, DATEINPUT_CLASSNAME),
11089
- children: [
11090
- /* @__PURE__ */ jsx257(InputInnerInput, { placeholder, value }),
11091
- /* @__PURE__ */ jsx257(
11092
- InputValidationIcon,
11093
- {
11094
- valid,
11095
- invalid,
11096
- loading,
11097
- disabled
11098
- }
11099
- ),
11100
- /* @__PURE__ */ jsx257(
11101
- InputLoadingIcon,
11102
- {
11103
- loading,
11104
- disabled
11105
- }
11106
- ),
11107
- showSpinButton && /* @__PURE__ */ jsx257(
11108
- SpinButton,
11109
- {
11110
- className: "k-input-spinner",
11111
- size,
11112
- fillMode
11113
- }
11114
- )
11115
- ]
11116
- }
11117
- );
11118
- };
11119
- DateInput.states = states93;
11120
- DateInput.options = options88;
11121
- DateInput.className = DATEINPUT_CLASSNAME;
11122
- DateInput.defaultProps = defaultProps87;
11123
-
11124
- // src/dateinput/templates/dateinput-normal.tsx
11125
- import { jsx as jsx258 } from "react/jsx-runtime";
11126
-
11127
11032
  // src/calendar/calendar.spec.tsx
11128
- import { jsx as jsx259, jsxs as jsxs100 } from "react/jsx-runtime";
11033
+ import { jsx as jsx257, jsxs as jsxs99 } from "react/jsx-runtime";
11129
11034
  var CALENDAR_CLASSNAME = `k-calendar`;
11130
- var states94 = [];
11131
- var options89 = {
11035
+ var states93 = [];
11036
+ var options88 = {
11132
11037
  size: [Size.small, Size.medium, Size.large]
11133
11038
  };
11134
- var defaultProps88 = {
11039
+ var defaultProps87 = {
11135
11040
  size: Size.medium,
11136
11041
  viewsCount: 1,
11137
11042
  orientation: "horizontal",
@@ -11140,11 +11045,11 @@ var defaultProps88 = {
11140
11045
  };
11141
11046
  var Calendar = (props) => {
11142
11047
  const {
11143
- size = defaultProps88.size,
11144
- orientation = defaultProps88.orientation,
11145
- calendarView = defaultProps88.calendarView,
11146
- calendarHeaderText = defaultProps88.calendarHeaderText,
11147
- viewsCount = defaultProps88.viewsCount,
11048
+ size = defaultProps87.size,
11049
+ orientation = defaultProps87.orientation,
11050
+ calendarView = defaultProps87.calendarView,
11051
+ calendarHeaderText = defaultProps87.calendarHeaderText,
11052
+ viewsCount = defaultProps87.viewsCount,
11148
11053
  showWeek,
11149
11054
  showOtherMonth,
11150
11055
  showCalendarCaption,
@@ -11153,7 +11058,7 @@ var Calendar = (props) => {
11153
11058
  dir,
11154
11059
  ...other
11155
11060
  } = props;
11156
- return /* @__PURE__ */ jsxs100(
11061
+ return /* @__PURE__ */ jsxs99(
11157
11062
  "div",
11158
11063
  {
11159
11064
  ...other,
@@ -11169,7 +11074,7 @@ var Calendar = (props) => {
11169
11074
  }
11170
11075
  ),
11171
11076
  children: [
11172
- /* @__PURE__ */ jsx259(
11077
+ /* @__PURE__ */ jsx257(
11173
11078
  CalendarHeader,
11174
11079
  {
11175
11080
  showToday: showCalendarFooter ? false : true,
@@ -11179,7 +11084,7 @@ var Calendar = (props) => {
11179
11084
  dir
11180
11085
  }
11181
11086
  ),
11182
- /* @__PURE__ */ jsx259(
11087
+ /* @__PURE__ */ jsx257(
11183
11088
  CalendarView,
11184
11089
  {
11185
11090
  calendarView,
@@ -11191,19 +11096,19 @@ var Calendar = (props) => {
11191
11096
  selectedRange
11192
11097
  }
11193
11098
  ),
11194
- showCalendarFooter && /* @__PURE__ */ jsx259(CalendarFooter, {})
11099
+ showCalendarFooter && /* @__PURE__ */ jsx257(CalendarFooter, {})
11195
11100
  ]
11196
11101
  }
11197
11102
  );
11198
11103
  };
11199
- Calendar.states = states94;
11200
- Calendar.options = options89;
11104
+ Calendar.states = states93;
11105
+ Calendar.options = options88;
11201
11106
  Calendar.className = CALENDAR_CLASSNAME;
11202
- Calendar.defaultProps = defaultProps88;
11107
+ Calendar.defaultProps = defaultProps87;
11203
11108
 
11204
11109
  // src/calendar/calendar-cell.tsx
11205
- import { jsx as jsx260 } from "react/jsx-runtime";
11206
- var states95 = [
11110
+ import { jsx as jsx258 } from "react/jsx-runtime";
11111
+ var states94 = [
11207
11112
  States.hover,
11208
11113
  States.focus,
11209
11114
  States.active,
@@ -11252,21 +11157,21 @@ var CalendarCell = (props) => {
11252
11157
  }
11253
11158
  ];
11254
11159
  if (headerCell) {
11255
- return /* @__PURE__ */ jsx260("th", { ...other, className: classNames(calendarCellClasses), children: text });
11160
+ return /* @__PURE__ */ jsx258("th", { ...other, className: classNames(calendarCellClasses), children: text });
11256
11161
  }
11257
11162
  if (weekCell) {
11258
- return /* @__PURE__ */ jsx260("td", { ...other, className: classNames(calendarCellClasses), children: text });
11163
+ return /* @__PURE__ */ jsx258("td", { ...other, className: classNames(calendarCellClasses), children: text });
11259
11164
  }
11260
- return /* @__PURE__ */ jsx260("td", { ...other, className: classNames(calendarCellClasses), children: otherMonth && !showOtherMonth ? "" : /* @__PURE__ */ jsx260("span", { className: "k-link", children: text }) });
11165
+ return /* @__PURE__ */ jsx258("td", { ...other, className: classNames(calendarCellClasses), children: otherMonth && !showOtherMonth ? "" : /* @__PURE__ */ jsx258("span", { className: "k-link", children: text }) });
11261
11166
  };
11262
11167
 
11263
11168
  // src/calendar/calendar-header.tsx
11264
- import { jsx as jsx261, jsxs as jsxs101 } from "react/jsx-runtime";
11169
+ import { jsx as jsx259, jsxs as jsxs100 } from "react/jsx-runtime";
11265
11170
  var className24 = `k-calendar-header`;
11266
- var options90 = {
11171
+ var options89 = {
11267
11172
  size: [Size.small, Size.medium, Size.large]
11268
11173
  };
11269
- var defaultProps89 = {
11174
+ var defaultProps88 = {
11270
11175
  calendarHeaderText: "October 2021",
11271
11176
  showToday: true,
11272
11177
  orientation: "horizontal",
@@ -11274,16 +11179,16 @@ var defaultProps89 = {
11274
11179
  };
11275
11180
  var CalendarHeader = (props) => {
11276
11181
  const {
11277
- calendarHeaderText = defaultProps89.calendarHeaderText,
11278
- showToday = defaultProps89.showToday,
11279
- orientation = defaultProps89.orientation,
11280
- size = defaultProps89.size,
11182
+ calendarHeaderText = defaultProps88.calendarHeaderText,
11183
+ showToday = defaultProps88.showToday,
11184
+ orientation = defaultProps88.orientation,
11185
+ size = defaultProps88.size,
11281
11186
  dir,
11282
11187
  ...other
11283
11188
  } = props;
11284
11189
  const iconPrev = dir === "rtl" ? "chevron-right" : "chevron-left";
11285
11190
  const iconNext = dir === "rtl" ? "chevron-left" : "chevron-right";
11286
- return /* @__PURE__ */ jsxs101(
11191
+ return /* @__PURE__ */ jsxs100(
11287
11192
  "div",
11288
11193
  {
11289
11194
  ...other,
@@ -11295,12 +11200,12 @@ var CalendarHeader = (props) => {
11295
11200
  }
11296
11201
  ),
11297
11202
  children: [
11298
- /* @__PURE__ */ jsx261(Button, { className: "k-calendar-title", text: calendarHeaderText, size, fillMode: "flat" }),
11299
- /* @__PURE__ */ jsx261("span", { className: "k-spacer" }),
11300
- /* @__PURE__ */ jsxs101("span", { className: "k-calendar-nav", children: [
11301
- /* @__PURE__ */ jsx261(Button, { className: "k-calendar-nav-prev", icon: iconPrev, size, fillMode: "flat" }),
11302
- showToday && /* @__PURE__ */ jsx261(Button, { size, fillMode: "flat", themeColor: "primary", className: "k-calendar-nav-today", children: "Today" }),
11303
- /* @__PURE__ */ jsx261(Button, { className: "k-calendar-nav-next", icon: iconNext, size, fillMode: "flat" })
11203
+ /* @__PURE__ */ jsx259(Button, { className: "k-calendar-title", text: calendarHeaderText, size, fillMode: "flat" }),
11204
+ /* @__PURE__ */ jsx259("span", { className: "k-spacer" }),
11205
+ /* @__PURE__ */ jsxs100("span", { className: "k-calendar-nav", children: [
11206
+ /* @__PURE__ */ jsx259(Button, { className: "k-calendar-nav-prev", icon: iconPrev, size, fillMode: "flat" }),
11207
+ showToday && /* @__PURE__ */ jsx259(Button, { size, fillMode: "flat", themeColor: "primary", className: "k-calendar-nav-today", children: "Today" }),
11208
+ /* @__PURE__ */ jsx259(Button, { className: "k-calendar-nav-next", icon: iconNext, size, fillMode: "flat" })
11304
11209
  ] })
11305
11210
  ]
11306
11211
  }
@@ -11308,12 +11213,12 @@ var CalendarHeader = (props) => {
11308
11213
  };
11309
11214
 
11310
11215
  // src/calendar/calendar-footer.tsx
11311
- import { jsx as jsx262 } from "react/jsx-runtime";
11216
+ import { jsx as jsx260 } from "react/jsx-runtime";
11312
11217
  var className25 = `k-calendar-footer`;
11313
- var CalendarFooter = (props) => /* @__PURE__ */ jsx262("div", { ...props, className: classNames(props.className, className25), children: /* @__PURE__ */ jsx262(Button, { fillMode: "flat", themeColor: "primary", className: "k-calendar-nav-today", children: "Monday, October 29, 2021" }) });
11218
+ var CalendarFooter = (props) => /* @__PURE__ */ jsx260("div", { ...props, className: classNames(props.className, className25), children: /* @__PURE__ */ jsx260(Button, { fillMode: "flat", themeColor: "primary", className: "k-calendar-nav-today", children: "Monday, October 29, 2021" }) });
11314
11219
 
11315
11220
  // src/calendar/calendar-table.tsx
11316
- import { jsx as jsx263, jsxs as jsxs102 } from "react/jsx-runtime";
11221
+ import { jsx as jsx261, jsxs as jsxs101 } from "react/jsx-runtime";
11317
11222
  var CALENDARTABLE_CLASSNAME = `k-calendar-table`;
11318
11223
  var CalendarTable = (props) => {
11319
11224
  const {
@@ -11325,7 +11230,7 @@ var CalendarTable = (props) => {
11325
11230
  ...other
11326
11231
  } = props;
11327
11232
  if (calendarView === "year") {
11328
- return /* @__PURE__ */ jsxs102(
11233
+ return /* @__PURE__ */ jsxs101(
11329
11234
  "table",
11330
11235
  {
11331
11236
  ...other,
@@ -11334,25 +11239,25 @@ var CalendarTable = (props) => {
11334
11239
  CALENDARTABLE_CLASSNAME
11335
11240
  ),
11336
11241
  children: [
11337
- showCalendarCaption && /* @__PURE__ */ jsx263("caption", { className: "k-calendar-caption", children: "2022" }),
11338
- /* @__PURE__ */ jsxs102("tbody", { className: "k-calendar-tbody", children: [
11339
- /* @__PURE__ */ jsxs102("tr", { className: "k-calendar-tr", children: [
11340
- /* @__PURE__ */ jsx263(CalendarCell, { text: "Jan" }),
11341
- /* @__PURE__ */ jsx263(CalendarCell, { text: "Feb" }),
11342
- /* @__PURE__ */ jsx263(CalendarCell, { text: "Mar" }),
11343
- /* @__PURE__ */ jsx263(CalendarCell, { text: "Apr" })
11242
+ showCalendarCaption && /* @__PURE__ */ jsx261("caption", { className: "k-calendar-caption", children: "2022" }),
11243
+ /* @__PURE__ */ jsxs101("tbody", { className: "k-calendar-tbody", children: [
11244
+ /* @__PURE__ */ jsxs101("tr", { className: "k-calendar-tr", children: [
11245
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "Jan" }),
11246
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "Feb" }),
11247
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "Mar" }),
11248
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "Apr" })
11344
11249
  ] }),
11345
- /* @__PURE__ */ jsxs102("tr", { className: "k-calendar-tr", children: [
11346
- /* @__PURE__ */ jsx263(CalendarCell, { text: "May" }),
11347
- /* @__PURE__ */ jsx263(CalendarCell, { text: "Jun", hover: true }),
11348
- /* @__PURE__ */ jsx263(CalendarCell, { text: "Jul", focus: true }),
11349
- /* @__PURE__ */ jsx263(CalendarCell, { text: "Au", selected: true })
11250
+ /* @__PURE__ */ jsxs101("tr", { className: "k-calendar-tr", children: [
11251
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "May" }),
11252
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "Jun", hover: true }),
11253
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "Jul", focus: true }),
11254
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "Au", selected: true })
11350
11255
  ] }),
11351
- /* @__PURE__ */ jsxs102("tr", { className: "k-calendar-tr", children: [
11352
- /* @__PURE__ */ jsx263(CalendarCell, { text: "Sep" }),
11353
- /* @__PURE__ */ jsx263(CalendarCell, { text: "Oct", today: true }),
11354
- /* @__PURE__ */ jsx263(CalendarCell, { text: "Nov" }),
11355
- /* @__PURE__ */ jsx263(CalendarCell, { text: "Dec" })
11256
+ /* @__PURE__ */ jsxs101("tr", { className: "k-calendar-tr", children: [
11257
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "Sep" }),
11258
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "Oct", today: true }),
11259
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "Nov" }),
11260
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "Dec" })
11356
11261
  ] })
11357
11262
  ] })
11358
11263
  ]
@@ -11360,7 +11265,7 @@ var CalendarTable = (props) => {
11360
11265
  );
11361
11266
  }
11362
11267
  if (calendarView === "decade") {
11363
- return /* @__PURE__ */ jsxs102(
11268
+ return /* @__PURE__ */ jsxs101(
11364
11269
  "table",
11365
11270
  {
11366
11271
  ...other,
@@ -11369,25 +11274,25 @@ var CalendarTable = (props) => {
11369
11274
  CALENDARTABLE_CLASSNAME
11370
11275
  ),
11371
11276
  children: [
11372
- showCalendarCaption && /* @__PURE__ */ jsx263("caption", { className: "k-calendar-caption", children: "2020 - 2029" }),
11373
- /* @__PURE__ */ jsxs102("tbody", { className: "k-calendar-tbody", children: [
11374
- /* @__PURE__ */ jsxs102("tr", { className: "k-calendar-tr", children: [
11375
- /* @__PURE__ */ jsx263(CalendarCell, { className: "k-out-of-range" }),
11376
- /* @__PURE__ */ jsx263(CalendarCell, { text: "2020" }),
11377
- /* @__PURE__ */ jsx263(CalendarCell, { text: "2021", today: true }),
11378
- /* @__PURE__ */ jsx263(CalendarCell, { text: "2022" })
11277
+ showCalendarCaption && /* @__PURE__ */ jsx261("caption", { className: "k-calendar-caption", children: "2020 - 2029" }),
11278
+ /* @__PURE__ */ jsxs101("tbody", { className: "k-calendar-tbody", children: [
11279
+ /* @__PURE__ */ jsxs101("tr", { className: "k-calendar-tr", children: [
11280
+ /* @__PURE__ */ jsx261(CalendarCell, { className: "k-out-of-range" }),
11281
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "2020" }),
11282
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "2021", today: true }),
11283
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "2022" })
11379
11284
  ] }),
11380
- /* @__PURE__ */ jsxs102("tr", { className: "k-calendar-tr", children: [
11381
- /* @__PURE__ */ jsx263(CalendarCell, { text: "2023" }),
11382
- /* @__PURE__ */ jsx263(CalendarCell, { text: "2024", hover: true }),
11383
- /* @__PURE__ */ jsx263(CalendarCell, { text: "2025", focus: true }),
11384
- /* @__PURE__ */ jsx263(CalendarCell, { text: "2026", selected: true })
11285
+ /* @__PURE__ */ jsxs101("tr", { className: "k-calendar-tr", children: [
11286
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "2023" }),
11287
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "2024", hover: true }),
11288
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "2025", focus: true }),
11289
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "2026", selected: true })
11385
11290
  ] }),
11386
- /* @__PURE__ */ jsxs102("tr", { className: "k-calendar-tr", children: [
11387
- /* @__PURE__ */ jsx263(CalendarCell, { text: "2027" }),
11388
- /* @__PURE__ */ jsx263(CalendarCell, { text: "2028" }),
11389
- /* @__PURE__ */ jsx263(CalendarCell, { text: "2029" }),
11390
- /* @__PURE__ */ jsx263(CalendarCell, { className: "k-out-of-range" })
11291
+ /* @__PURE__ */ jsxs101("tr", { className: "k-calendar-tr", children: [
11292
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "2027" }),
11293
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "2028" }),
11294
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "2029" }),
11295
+ /* @__PURE__ */ jsx261(CalendarCell, { className: "k-out-of-range" })
11391
11296
  ] })
11392
11297
  ] })
11393
11298
  ]
@@ -11395,7 +11300,7 @@ var CalendarTable = (props) => {
11395
11300
  );
11396
11301
  }
11397
11302
  if (calendarView === "century") {
11398
- return /* @__PURE__ */ jsxs102(
11303
+ return /* @__PURE__ */ jsxs101(
11399
11304
  "table",
11400
11305
  {
11401
11306
  ...other,
@@ -11404,32 +11309,32 @@ var CalendarTable = (props) => {
11404
11309
  CALENDARTABLE_CLASSNAME
11405
11310
  ),
11406
11311
  children: [
11407
- showCalendarCaption && /* @__PURE__ */ jsx263("caption", { className: "k-calendar-caption", children: "2000 - 2099" }),
11408
- /* @__PURE__ */ jsxs102("tbody", { className: "k-calendar-tbody", children: [
11409
- /* @__PURE__ */ jsxs102("tr", { className: "k-calendar-tr", children: [
11410
- /* @__PURE__ */ jsx263(CalendarCell, { text: "1990 - 1999" }),
11411
- /* @__PURE__ */ jsx263(CalendarCell, { text: "2000 - 2009" }),
11412
- /* @__PURE__ */ jsx263(CalendarCell, { text: "2010 - 2019", today: true }),
11413
- /* @__PURE__ */ jsx263(CalendarCell, { text: "2020 - 2029" })
11312
+ showCalendarCaption && /* @__PURE__ */ jsx261("caption", { className: "k-calendar-caption", children: "2000 - 2099" }),
11313
+ /* @__PURE__ */ jsxs101("tbody", { className: "k-calendar-tbody", children: [
11314
+ /* @__PURE__ */ jsxs101("tr", { className: "k-calendar-tr", children: [
11315
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "1990 - 1999" }),
11316
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "2000 - 2009" }),
11317
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "2010 - 2019", today: true }),
11318
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "2020 - 2029" })
11414
11319
  ] }),
11415
- /* @__PURE__ */ jsxs102("tr", { className: "k-calendar-tr", children: [
11416
- /* @__PURE__ */ jsx263(CalendarCell, { text: "2030 - 2039" }),
11417
- /* @__PURE__ */ jsx263(CalendarCell, { text: "2040 - 2049", hover: true }),
11418
- /* @__PURE__ */ jsx263(CalendarCell, { text: "2050 - 2059", focus: true }),
11419
- /* @__PURE__ */ jsx263(CalendarCell, { text: "2060 - 2069", selected: true })
11320
+ /* @__PURE__ */ jsxs101("tr", { className: "k-calendar-tr", children: [
11321
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "2030 - 2039" }),
11322
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "2040 - 2049", hover: true }),
11323
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "2050 - 2059", focus: true }),
11324
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "2060 - 2069", selected: true })
11420
11325
  ] }),
11421
- /* @__PURE__ */ jsxs102("tr", { className: "k-calendar-tr", children: [
11422
- /* @__PURE__ */ jsx263(CalendarCell, { text: "2070 - 2079" }),
11423
- /* @__PURE__ */ jsx263(CalendarCell, { text: "2080 - 2089" }),
11424
- /* @__PURE__ */ jsx263(CalendarCell, { text: "2090 - 2099" }),
11425
- /* @__PURE__ */ jsx263(CalendarCell, { className: "k-out-of-range" })
11326
+ /* @__PURE__ */ jsxs101("tr", { className: "k-calendar-tr", children: [
11327
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "2070 - 2079" }),
11328
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "2080 - 2089" }),
11329
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "2090 - 2099" }),
11330
+ /* @__PURE__ */ jsx261(CalendarCell, { className: "k-out-of-range" })
11426
11331
  ] })
11427
11332
  ] })
11428
11333
  ]
11429
11334
  }
11430
11335
  );
11431
11336
  }
11432
- return /* @__PURE__ */ jsxs102(
11337
+ return /* @__PURE__ */ jsxs101(
11433
11338
  "table",
11434
11339
  {
11435
11340
  ...other,
@@ -11438,68 +11343,68 @@ var CalendarTable = (props) => {
11438
11343
  CALENDARTABLE_CLASSNAME
11439
11344
  ),
11440
11345
  children: [
11441
- showCalendarCaption && /* @__PURE__ */ jsx263("caption", { className: "k-calendar-caption", children: "October 2021" }),
11442
- /* @__PURE__ */ jsx263(CalendarTableHead, { showWeek }),
11443
- /* @__PURE__ */ jsxs102("tbody", { className: "k-calendar-tbody", children: [
11444
- /* @__PURE__ */ jsxs102("tr", { className: "k-calendar-tr", children: [
11445
- showWeek && /* @__PURE__ */ jsx263(CalendarCell, { text: "39", weekCell: true }),
11446
- /* @__PURE__ */ jsx263(CalendarCell, { text: "30", otherMonth: true, showOtherMonth }),
11447
- /* @__PURE__ */ jsx263(CalendarCell, { text: "1" }),
11448
- /* @__PURE__ */ jsx263(CalendarCell, { text: "2" }),
11449
- /* @__PURE__ */ jsx263(CalendarCell, { text: "3" }),
11450
- /* @__PURE__ */ jsx263(CalendarCell, { text: "4" }),
11451
- /* @__PURE__ */ jsx263(CalendarCell, { text: "5" }),
11452
- /* @__PURE__ */ jsx263(CalendarCell, { text: "6", weekend: true })
11346
+ showCalendarCaption && /* @__PURE__ */ jsx261("caption", { className: "k-calendar-caption", children: "October 2021" }),
11347
+ /* @__PURE__ */ jsx261(CalendarTableHead, { showWeek }),
11348
+ /* @__PURE__ */ jsxs101("tbody", { className: "k-calendar-tbody", children: [
11349
+ /* @__PURE__ */ jsxs101("tr", { className: "k-calendar-tr", children: [
11350
+ showWeek && /* @__PURE__ */ jsx261(CalendarCell, { text: "39", weekCell: true }),
11351
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "30", otherMonth: true, showOtherMonth }),
11352
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "1" }),
11353
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "2" }),
11354
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "3" }),
11355
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "4" }),
11356
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "5" }),
11357
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "6", weekend: true })
11453
11358
  ] }),
11454
- /* @__PURE__ */ jsxs102("tr", { className: "k-calendar-tr", children: [
11455
- showWeek && /* @__PURE__ */ jsx263(CalendarCell, { text: "40", weekCell: true }),
11456
- /* @__PURE__ */ jsx263(CalendarCell, { text: "7", weekend: true }),
11457
- /* @__PURE__ */ jsx263(CalendarCell, { text: "8", hover: true }),
11458
- /* @__PURE__ */ jsx263(CalendarCell, { text: "9", focus: true }),
11459
- /* @__PURE__ */ jsx263(CalendarCell, { text: "10", selected: true }),
11460
- /* @__PURE__ */ jsx263(CalendarCell, { text: "11", hover: true, focus: true }),
11461
- /* @__PURE__ */ jsx263(CalendarCell, { text: "12", hover: true, selected: true }),
11462
- /* @__PURE__ */ jsx263(CalendarCell, { text: "13", weekend: true })
11359
+ /* @__PURE__ */ jsxs101("tr", { className: "k-calendar-tr", children: [
11360
+ showWeek && /* @__PURE__ */ jsx261(CalendarCell, { text: "40", weekCell: true }),
11361
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "7", weekend: true }),
11362
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "8", hover: true }),
11363
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "9", focus: true }),
11364
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "10", selected: true }),
11365
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "11", hover: true, focus: true }),
11366
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "12", hover: true, selected: true }),
11367
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "13", weekend: true })
11463
11368
  ] }),
11464
- /* @__PURE__ */ jsxs102("tr", { className: "k-calendar-tr", children: [
11465
- showWeek && /* @__PURE__ */ jsx263(CalendarCell, { text: "41", weekCell: true }),
11466
- /* @__PURE__ */ jsx263(CalendarCell, { text: "14", weekend: true }),
11467
- /* @__PURE__ */ jsx263(CalendarCell, { text: "15" }),
11468
- /* @__PURE__ */ jsx263(CalendarCell, { text: "16", today: true }),
11469
- /* @__PURE__ */ jsx263(CalendarCell, { text: "17" }),
11470
- /* @__PURE__ */ jsx263(CalendarCell, { text: "18" }),
11471
- /* @__PURE__ */ jsx263(CalendarCell, { text: "19" }),
11472
- /* @__PURE__ */ jsx263(CalendarCell, { text: "20", weekend: true })
11369
+ /* @__PURE__ */ jsxs101("tr", { className: "k-calendar-tr", children: [
11370
+ showWeek && /* @__PURE__ */ jsx261(CalendarCell, { text: "41", weekCell: true }),
11371
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "14", weekend: true }),
11372
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "15" }),
11373
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "16", today: true }),
11374
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "17" }),
11375
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "18" }),
11376
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "19" }),
11377
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "20", weekend: true })
11473
11378
  ] }),
11474
- /* @__PURE__ */ jsxs102("tr", { className: "k-calendar-tr", children: [
11475
- showWeek && /* @__PURE__ */ jsx263(CalendarCell, { text: "42", weekCell: true }),
11476
- /* @__PURE__ */ jsx263(CalendarCell, { text: "21", weekend: true }),
11477
- /* @__PURE__ */ jsx263(CalendarCell, { text: "22" }),
11478
- /* @__PURE__ */ jsx263(CalendarCell, { text: "23" }),
11479
- /* @__PURE__ */ jsx263(CalendarCell, { text: "24" }),
11480
- /* @__PURE__ */ jsx263(CalendarCell, { text: "25", rangeStart: selectedRange, selected: selectedRange }),
11481
- /* @__PURE__ */ jsx263(CalendarCell, { text: "26", rangeMid: selectedRange }),
11482
- /* @__PURE__ */ jsx263(CalendarCell, { text: "27", weekend: true, rangeMid: selectedRange })
11379
+ /* @__PURE__ */ jsxs101("tr", { className: "k-calendar-tr", children: [
11380
+ showWeek && /* @__PURE__ */ jsx261(CalendarCell, { text: "42", weekCell: true }),
11381
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "21", weekend: true }),
11382
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "22" }),
11383
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "23" }),
11384
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "24" }),
11385
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "25", rangeStart: selectedRange, selected: selectedRange }),
11386
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "26", rangeMid: selectedRange }),
11387
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "27", weekend: true, rangeMid: selectedRange })
11483
11388
  ] }),
11484
- /* @__PURE__ */ jsxs102("tr", { className: "k-calendar-tr", children: [
11485
- showWeek && /* @__PURE__ */ jsx263(CalendarCell, { text: "43", weekCell: true }),
11486
- /* @__PURE__ */ jsx263(CalendarCell, { text: "28", weekend: true, rangeMid: selectedRange }),
11487
- /* @__PURE__ */ jsx263(CalendarCell, { text: "29", rangeEnd: selectedRange, focus: selectedRange, selected: selectedRange }),
11488
- /* @__PURE__ */ jsx263(CalendarCell, { text: "30" }),
11489
- /* @__PURE__ */ jsx263(CalendarCell, { text: "31" }),
11490
- /* @__PURE__ */ jsx263(CalendarCell, { text: "1", otherMonth: true, showOtherMonth }),
11491
- /* @__PURE__ */ jsx263(CalendarCell, { text: "2", otherMonth: true, showOtherMonth }),
11492
- /* @__PURE__ */ jsx263(CalendarCell, { text: "3", otherMonth: true, weekend: true, showOtherMonth })
11389
+ /* @__PURE__ */ jsxs101("tr", { className: "k-calendar-tr", children: [
11390
+ showWeek && /* @__PURE__ */ jsx261(CalendarCell, { text: "43", weekCell: true }),
11391
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "28", weekend: true, rangeMid: selectedRange }),
11392
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "29", rangeEnd: selectedRange, focus: selectedRange, selected: selectedRange }),
11393
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "30" }),
11394
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "31" }),
11395
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "1", otherMonth: true, showOtherMonth }),
11396
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "2", otherMonth: true, showOtherMonth }),
11397
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "3", otherMonth: true, weekend: true, showOtherMonth })
11493
11398
  ] }),
11494
- /* @__PURE__ */ jsxs102("tr", { className: "k-calendar-tr", children: [
11495
- showWeek && /* @__PURE__ */ jsx263(CalendarCell, { text: "44", weekCell: true }),
11496
- /* @__PURE__ */ jsx263(CalendarCell, { text: "4", otherMonth: true, weekend: true, showOtherMonth }),
11497
- /* @__PURE__ */ jsx263(CalendarCell, { text: "5", otherMonth: true, showOtherMonth }),
11498
- /* @__PURE__ */ jsx263(CalendarCell, { text: "6", otherMonth: true, showOtherMonth }),
11499
- /* @__PURE__ */ jsx263(CalendarCell, { text: "7", otherMonth: true, showOtherMonth }),
11500
- /* @__PURE__ */ jsx263(CalendarCell, { text: "8", otherMonth: true, showOtherMonth }),
11501
- /* @__PURE__ */ jsx263(CalendarCell, { text: "9", otherMonth: true, showOtherMonth }),
11502
- /* @__PURE__ */ jsx263(CalendarCell, { text: "10", otherMonth: true, weekend: true, showOtherMonth })
11399
+ /* @__PURE__ */ jsxs101("tr", { className: "k-calendar-tr", children: [
11400
+ showWeek && /* @__PURE__ */ jsx261(CalendarCell, { text: "44", weekCell: true }),
11401
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "4", otherMonth: true, weekend: true, showOtherMonth }),
11402
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "5", otherMonth: true, showOtherMonth }),
11403
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "6", otherMonth: true, showOtherMonth }),
11404
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "7", otherMonth: true, showOtherMonth }),
11405
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "8", otherMonth: true, showOtherMonth }),
11406
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "9", otherMonth: true, showOtherMonth }),
11407
+ /* @__PURE__ */ jsx261(CalendarCell, { text: "10", otherMonth: true, weekend: true, showOtherMonth })
11503
11408
  ] })
11504
11409
  ] })
11505
11410
  ]
@@ -11508,52 +11413,52 @@ var CalendarTable = (props) => {
11508
11413
  };
11509
11414
 
11510
11415
  // src/calendar/calendar-table-head.tsx
11511
- import { jsx as jsx264, jsxs as jsxs103 } from "react/jsx-runtime";
11416
+ import { jsx as jsx262, jsxs as jsxs102 } from "react/jsx-runtime";
11512
11417
  var className26 = `k-calendar-thead`;
11513
11418
  var CalendarTableHead = (props) => {
11514
11419
  const {
11515
11420
  showWeek,
11516
11421
  ...other
11517
11422
  } = props;
11518
- return /* @__PURE__ */ jsx264(
11423
+ return /* @__PURE__ */ jsx262(
11519
11424
  "thead",
11520
11425
  {
11521
11426
  ...other,
11522
11427
  className: classNames(props.className, className26),
11523
- children: /* @__PURE__ */ jsxs103("tr", { className: "k-calendar-tr", children: [
11524
- showWeek && /* @__PURE__ */ jsx264(CalendarCell, { weekCell: true, headerCell: true }),
11525
- /* @__PURE__ */ jsx264(CalendarCell, { text: "Su", headerCell: true }),
11526
- /* @__PURE__ */ jsx264(CalendarCell, { text: "Mo", headerCell: true }),
11527
- /* @__PURE__ */ jsx264(CalendarCell, { text: "Tu", headerCell: true }),
11528
- /* @__PURE__ */ jsx264(CalendarCell, { text: "We", headerCell: true }),
11529
- /* @__PURE__ */ jsx264(CalendarCell, { text: "Th", headerCell: true }),
11530
- /* @__PURE__ */ jsx264(CalendarCell, { text: "Fr", headerCell: true }),
11531
- /* @__PURE__ */ jsx264(CalendarCell, { text: "Sa", headerCell: true })
11428
+ children: /* @__PURE__ */ jsxs102("tr", { className: "k-calendar-tr", children: [
11429
+ showWeek && /* @__PURE__ */ jsx262(CalendarCell, { weekCell: true, headerCell: true }),
11430
+ /* @__PURE__ */ jsx262(CalendarCell, { text: "Su", headerCell: true }),
11431
+ /* @__PURE__ */ jsx262(CalendarCell, { text: "Mo", headerCell: true }),
11432
+ /* @__PURE__ */ jsx262(CalendarCell, { text: "Tu", headerCell: true }),
11433
+ /* @__PURE__ */ jsx262(CalendarCell, { text: "We", headerCell: true }),
11434
+ /* @__PURE__ */ jsx262(CalendarCell, { text: "Th", headerCell: true }),
11435
+ /* @__PURE__ */ jsx262(CalendarCell, { text: "Fr", headerCell: true }),
11436
+ /* @__PURE__ */ jsx262(CalendarCell, { text: "Sa", headerCell: true })
11532
11437
  ] })
11533
11438
  }
11534
11439
  );
11535
11440
  };
11536
11441
 
11537
11442
  // src/calendar/calendar-view.tsx
11538
- import { jsx as jsx265 } from "react/jsx-runtime";
11443
+ import { jsx as jsx263 } from "react/jsx-runtime";
11539
11444
  var className27 = `k-calendar-view`;
11540
- var defaultProps90 = {
11445
+ var defaultProps89 = {
11541
11446
  viewsCount: 1,
11542
11447
  orientation: "horizontal",
11543
11448
  calendarView: "month"
11544
11449
  };
11545
11450
  var CalendarView = (props) => {
11546
11451
  const {
11547
- orientation = defaultProps90.orientation,
11548
- calendarView = defaultProps90.calendarView,
11549
- viewsCount = defaultProps90.viewsCount,
11452
+ orientation = defaultProps89.orientation,
11453
+ calendarView = defaultProps89.calendarView,
11454
+ viewsCount = defaultProps89.viewsCount,
11550
11455
  showWeek,
11551
11456
  showOtherMonth,
11552
11457
  showCalendarCaption,
11553
11458
  selectedRange,
11554
11459
  ...other
11555
11460
  } = props;
11556
- return /* @__PURE__ */ jsx265(
11461
+ return /* @__PURE__ */ jsx263(
11557
11462
  "div",
11558
11463
  {
11559
11464
  ...other,
@@ -11569,7 +11474,7 @@ var CalendarView = (props) => {
11569
11474
  }
11570
11475
  ),
11571
11476
  children: [...Array(viewsCount)].map(
11572
- (_e, i) => /* @__PURE__ */ jsx265(
11477
+ (_e, i) => /* @__PURE__ */ jsx263(
11573
11478
  CalendarTable,
11574
11479
  {
11575
11480
  calendarView,
@@ -11585,6 +11490,101 @@ var CalendarView = (props) => {
11585
11490
  );
11586
11491
  };
11587
11492
 
11493
+ // src/dateinput/dateinput.spec.tsx
11494
+ import { jsx as jsx264, jsxs as jsxs103 } from "react/jsx-runtime";
11495
+ var DATEINPUT_CLASSNAME = `k-dateinput`;
11496
+ var states95 = [
11497
+ States.hover,
11498
+ States.focus,
11499
+ States.valid,
11500
+ States.invalid,
11501
+ States.required,
11502
+ States.disabled,
11503
+ States.loading,
11504
+ States.readonly
11505
+ ];
11506
+ var options90 = {
11507
+ size: [Size.small, Size.medium, Size.large],
11508
+ rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full],
11509
+ fillMode: [FillMode.solid, FillMode.flat, FillMode.outline]
11510
+ };
11511
+ var defaultProps90 = {
11512
+ size: Input.defaultProps.size,
11513
+ rounded: Input.defaultProps.rounded,
11514
+ fillMode: Input.defaultProps.fillMode
11515
+ };
11516
+ var DateInput = (props) => {
11517
+ const {
11518
+ value,
11519
+ placeholder,
11520
+ size,
11521
+ rounded,
11522
+ fillMode,
11523
+ hover,
11524
+ focus,
11525
+ valid,
11526
+ invalid,
11527
+ required,
11528
+ loading,
11529
+ disabled,
11530
+ readonly,
11531
+ showSpinButton,
11532
+ ...other
11533
+ } = props;
11534
+ return /* @__PURE__ */ jsxs103(
11535
+ Input,
11536
+ {
11537
+ ...other,
11538
+ size,
11539
+ rounded,
11540
+ fillMode,
11541
+ hover,
11542
+ focus,
11543
+ valid,
11544
+ invalid,
11545
+ required,
11546
+ loading,
11547
+ disabled,
11548
+ readonly,
11549
+ className: classNames(props.className, DATEINPUT_CLASSNAME),
11550
+ children: [
11551
+ /* @__PURE__ */ jsx264(InputInnerInput, { placeholder, value }),
11552
+ /* @__PURE__ */ jsx264(
11553
+ InputValidationIcon,
11554
+ {
11555
+ valid,
11556
+ invalid,
11557
+ loading,
11558
+ disabled
11559
+ }
11560
+ ),
11561
+ /* @__PURE__ */ jsx264(
11562
+ InputLoadingIcon,
11563
+ {
11564
+ loading,
11565
+ disabled
11566
+ }
11567
+ ),
11568
+ showSpinButton && /* @__PURE__ */ jsx264(
11569
+ SpinButton,
11570
+ {
11571
+ className: "k-input-spinner",
11572
+ size,
11573
+ fillMode
11574
+ }
11575
+ )
11576
+ ]
11577
+ }
11578
+ );
11579
+ };
11580
+ DateInput.states = states95;
11581
+ DateInput.options = options90;
11582
+ DateInput.className = DATEINPUT_CLASSNAME;
11583
+ DateInput.defaultProps = defaultProps90;
11584
+
11585
+ // src/dateinput/templates/dateinput-normal.tsx
11586
+ import { jsx as jsx265 } from "react/jsx-runtime";
11587
+
11588
11588
  // src/datepicker/datepicker.spec.tsx
11589
11589
  import { Fragment as Fragment70, jsx as jsx266, jsxs as jsxs104 } from "react/jsx-runtime";
11590
11590
  var DATEPICKER_CLASSNAME = `k-datepicker`;