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