@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
@@ -9010,109 +9010,14 @@ import { Fragment as Fragment54, jsx as jsx177 } from "react/jsx-runtime";
9010
9010
  // src/combobox/templates/combobox-suffix.tsx
9011
9011
  import { Fragment as Fragment55, jsx as jsx178 } from "react/jsx-runtime";
9012
9012
 
9013
- // src/dateinput/dateinput.spec.tsx
9014
- import { jsx as jsx179, jsxs as jsxs71 } from "react/jsx-runtime";
9015
- var DATEINPUT_CLASSNAME = `k-dateinput`;
9016
- var states66 = [
9017
- States.hover,
9018
- States.focus,
9019
- States.valid,
9020
- States.invalid,
9021
- States.required,
9022
- States.disabled,
9023
- States.loading,
9024
- States.readonly
9025
- ];
9026
- var options63 = {
9027
- size: [Size.small, Size.medium, Size.large],
9028
- rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full],
9029
- fillMode: [FillMode.solid, FillMode.flat, FillMode.outline]
9030
- };
9031
- var defaultProps62 = {
9032
- size: Input.defaultProps.size,
9033
- rounded: Input.defaultProps.rounded,
9034
- fillMode: Input.defaultProps.fillMode
9035
- };
9036
- var DateInput = (props) => {
9037
- const {
9038
- value,
9039
- placeholder,
9040
- size,
9041
- rounded,
9042
- fillMode,
9043
- hover,
9044
- focus,
9045
- valid,
9046
- invalid,
9047
- required,
9048
- loading,
9049
- disabled,
9050
- readonly,
9051
- showSpinButton,
9052
- ...other
9053
- } = props;
9054
- return /* @__PURE__ */ jsxs71(
9055
- Input,
9056
- {
9057
- ...other,
9058
- size,
9059
- rounded,
9060
- fillMode,
9061
- hover,
9062
- focus,
9063
- valid,
9064
- invalid,
9065
- required,
9066
- loading,
9067
- disabled,
9068
- readonly,
9069
- className: classNames(props.className, DATEINPUT_CLASSNAME),
9070
- children: [
9071
- /* @__PURE__ */ jsx179(InputInnerInput, { placeholder, value }),
9072
- /* @__PURE__ */ jsx179(
9073
- InputValidationIcon,
9074
- {
9075
- valid,
9076
- invalid,
9077
- loading,
9078
- disabled
9079
- }
9080
- ),
9081
- /* @__PURE__ */ jsx179(
9082
- InputLoadingIcon,
9083
- {
9084
- loading,
9085
- disabled
9086
- }
9087
- ),
9088
- showSpinButton && /* @__PURE__ */ jsx179(
9089
- SpinButton,
9090
- {
9091
- className: "k-input-spinner",
9092
- size,
9093
- fillMode
9094
- }
9095
- )
9096
- ]
9097
- }
9098
- );
9099
- };
9100
- DateInput.states = states66;
9101
- DateInput.options = options63;
9102
- DateInput.className = DATEINPUT_CLASSNAME;
9103
- DateInput.defaultProps = defaultProps62;
9104
-
9105
- // src/dateinput/templates/dateinput-normal.tsx
9106
- import { jsx as jsx180 } from "react/jsx-runtime";
9107
-
9108
9013
  // src/calendar/calendar.spec.tsx
9109
- import { jsx as jsx181, jsxs as jsxs72 } from "react/jsx-runtime";
9014
+ import { jsx as jsx179, jsxs as jsxs71 } from "react/jsx-runtime";
9110
9015
  var CALENDAR_CLASSNAME = `k-calendar`;
9111
- var states67 = [];
9112
- var options64 = {
9016
+ var states66 = [];
9017
+ var options63 = {
9113
9018
  size: [Size.small, Size.medium, Size.large]
9114
9019
  };
9115
- var defaultProps63 = {
9020
+ var defaultProps62 = {
9116
9021
  size: Size.medium,
9117
9022
  viewsCount: 1,
9118
9023
  orientation: "horizontal",
@@ -9121,11 +9026,11 @@ var defaultProps63 = {
9121
9026
  };
9122
9027
  var Calendar = (props) => {
9123
9028
  const {
9124
- size = defaultProps63.size,
9125
- orientation = defaultProps63.orientation,
9126
- calendarView = defaultProps63.calendarView,
9127
- calendarHeaderText = defaultProps63.calendarHeaderText,
9128
- viewsCount = defaultProps63.viewsCount,
9029
+ size = defaultProps62.size,
9030
+ orientation = defaultProps62.orientation,
9031
+ calendarView = defaultProps62.calendarView,
9032
+ calendarHeaderText = defaultProps62.calendarHeaderText,
9033
+ viewsCount = defaultProps62.viewsCount,
9129
9034
  showWeek,
9130
9035
  showOtherMonth,
9131
9036
  showCalendarCaption,
@@ -9134,7 +9039,7 @@ var Calendar = (props) => {
9134
9039
  dir,
9135
9040
  ...other
9136
9041
  } = props;
9137
- return /* @__PURE__ */ jsxs72(
9042
+ return /* @__PURE__ */ jsxs71(
9138
9043
  "div",
9139
9044
  {
9140
9045
  ...other,
@@ -9150,7 +9055,7 @@ var Calendar = (props) => {
9150
9055
  }
9151
9056
  ),
9152
9057
  children: [
9153
- /* @__PURE__ */ jsx181(
9058
+ /* @__PURE__ */ jsx179(
9154
9059
  CalendarHeader,
9155
9060
  {
9156
9061
  showToday: showCalendarFooter ? false : true,
@@ -9160,7 +9065,7 @@ var Calendar = (props) => {
9160
9065
  dir
9161
9066
  }
9162
9067
  ),
9163
- /* @__PURE__ */ jsx181(
9068
+ /* @__PURE__ */ jsx179(
9164
9069
  CalendarView,
9165
9070
  {
9166
9071
  calendarView,
@@ -9172,19 +9077,19 @@ var Calendar = (props) => {
9172
9077
  selectedRange
9173
9078
  }
9174
9079
  ),
9175
- showCalendarFooter && /* @__PURE__ */ jsx181(CalendarFooter, {})
9080
+ showCalendarFooter && /* @__PURE__ */ jsx179(CalendarFooter, {})
9176
9081
  ]
9177
9082
  }
9178
9083
  );
9179
9084
  };
9180
- Calendar.states = states67;
9181
- Calendar.options = options64;
9085
+ Calendar.states = states66;
9086
+ Calendar.options = options63;
9182
9087
  Calendar.className = CALENDAR_CLASSNAME;
9183
- Calendar.defaultProps = defaultProps63;
9088
+ Calendar.defaultProps = defaultProps62;
9184
9089
 
9185
9090
  // src/calendar/calendar-cell.tsx
9186
- import { jsx as jsx182 } from "react/jsx-runtime";
9187
- var states68 = [
9091
+ import { jsx as jsx180 } from "react/jsx-runtime";
9092
+ var states67 = [
9188
9093
  States.hover,
9189
9094
  States.focus,
9190
9095
  States.active,
@@ -9233,21 +9138,21 @@ var CalendarCell = (props) => {
9233
9138
  }
9234
9139
  ];
9235
9140
  if (headerCell) {
9236
- return /* @__PURE__ */ jsx182("th", { ...other, className: classNames(calendarCellClasses), children: text });
9141
+ return /* @__PURE__ */ jsx180("th", { ...other, className: classNames(calendarCellClasses), children: text });
9237
9142
  }
9238
9143
  if (weekCell) {
9239
- return /* @__PURE__ */ jsx182("td", { ...other, className: classNames(calendarCellClasses), children: text });
9144
+ return /* @__PURE__ */ jsx180("td", { ...other, className: classNames(calendarCellClasses), children: text });
9240
9145
  }
9241
- return /* @__PURE__ */ jsx182("td", { ...other, className: classNames(calendarCellClasses), children: otherMonth && !showOtherMonth ? "" : /* @__PURE__ */ jsx182("span", { className: "k-link", children: text }) });
9146
+ return /* @__PURE__ */ jsx180("td", { ...other, className: classNames(calendarCellClasses), children: otherMonth && !showOtherMonth ? "" : /* @__PURE__ */ jsx180("span", { className: "k-link", children: text }) });
9242
9147
  };
9243
9148
 
9244
9149
  // src/calendar/calendar-header.tsx
9245
- import { jsx as jsx183, jsxs as jsxs73 } from "react/jsx-runtime";
9150
+ import { jsx as jsx181, jsxs as jsxs72 } from "react/jsx-runtime";
9246
9151
  var className14 = `k-calendar-header`;
9247
- var options65 = {
9152
+ var options64 = {
9248
9153
  size: [Size.small, Size.medium, Size.large]
9249
9154
  };
9250
- var defaultProps64 = {
9155
+ var defaultProps63 = {
9251
9156
  calendarHeaderText: "October 2021",
9252
9157
  showToday: true,
9253
9158
  orientation: "horizontal",
@@ -9255,16 +9160,16 @@ var defaultProps64 = {
9255
9160
  };
9256
9161
  var CalendarHeader = (props) => {
9257
9162
  const {
9258
- calendarHeaderText = defaultProps64.calendarHeaderText,
9259
- showToday = defaultProps64.showToday,
9260
- orientation = defaultProps64.orientation,
9261
- size = defaultProps64.size,
9163
+ calendarHeaderText = defaultProps63.calendarHeaderText,
9164
+ showToday = defaultProps63.showToday,
9165
+ orientation = defaultProps63.orientation,
9166
+ size = defaultProps63.size,
9262
9167
  dir,
9263
9168
  ...other
9264
9169
  } = props;
9265
9170
  const iconPrev = dir === "rtl" ? "chevron-right" : "chevron-left";
9266
9171
  const iconNext = dir === "rtl" ? "chevron-left" : "chevron-right";
9267
- return /* @__PURE__ */ jsxs73(
9172
+ return /* @__PURE__ */ jsxs72(
9268
9173
  "div",
9269
9174
  {
9270
9175
  ...other,
@@ -9276,12 +9181,12 @@ var CalendarHeader = (props) => {
9276
9181
  }
9277
9182
  ),
9278
9183
  children: [
9279
- /* @__PURE__ */ jsx183(Button, { className: "k-calendar-title", text: calendarHeaderText, size, fillMode: "flat" }),
9280
- /* @__PURE__ */ jsx183("span", { className: "k-spacer" }),
9281
- /* @__PURE__ */ jsxs73("span", { className: "k-calendar-nav", children: [
9282
- /* @__PURE__ */ jsx183(Button, { className: "k-calendar-nav-prev", icon: iconPrev, size, fillMode: "flat" }),
9283
- showToday && /* @__PURE__ */ jsx183(Button, { size, fillMode: "flat", themeColor: "primary", className: "k-calendar-nav-today", children: "Today" }),
9284
- /* @__PURE__ */ jsx183(Button, { className: "k-calendar-nav-next", icon: iconNext, size, fillMode: "flat" })
9184
+ /* @__PURE__ */ jsx181(Button, { className: "k-calendar-title", text: calendarHeaderText, size, fillMode: "flat" }),
9185
+ /* @__PURE__ */ jsx181("span", { className: "k-spacer" }),
9186
+ /* @__PURE__ */ jsxs72("span", { className: "k-calendar-nav", children: [
9187
+ /* @__PURE__ */ jsx181(Button, { className: "k-calendar-nav-prev", icon: iconPrev, size, fillMode: "flat" }),
9188
+ showToday && /* @__PURE__ */ jsx181(Button, { size, fillMode: "flat", themeColor: "primary", className: "k-calendar-nav-today", children: "Today" }),
9189
+ /* @__PURE__ */ jsx181(Button, { className: "k-calendar-nav-next", icon: iconNext, size, fillMode: "flat" })
9285
9190
  ] })
9286
9191
  ]
9287
9192
  }
@@ -9289,12 +9194,12 @@ var CalendarHeader = (props) => {
9289
9194
  };
9290
9195
 
9291
9196
  // src/calendar/calendar-footer.tsx
9292
- import { jsx as jsx184 } from "react/jsx-runtime";
9197
+ import { jsx as jsx182 } from "react/jsx-runtime";
9293
9198
  var className15 = `k-calendar-footer`;
9294
- var CalendarFooter = (props) => /* @__PURE__ */ jsx184("div", { ...props, className: classNames(props.className, className15), children: /* @__PURE__ */ jsx184(Button, { fillMode: "flat", themeColor: "primary", className: "k-calendar-nav-today", children: "Monday, October 29, 2021" }) });
9199
+ var CalendarFooter = (props) => /* @__PURE__ */ jsx182("div", { ...props, className: classNames(props.className, className15), children: /* @__PURE__ */ jsx182(Button, { fillMode: "flat", themeColor: "primary", className: "k-calendar-nav-today", children: "Monday, October 29, 2021" }) });
9295
9200
 
9296
9201
  // src/calendar/calendar-table.tsx
9297
- import { jsx as jsx185, jsxs as jsxs74 } from "react/jsx-runtime";
9202
+ import { jsx as jsx183, jsxs as jsxs73 } from "react/jsx-runtime";
9298
9203
  var CALENDARTABLE_CLASSNAME = `k-calendar-table`;
9299
9204
  var CalendarTable = (props) => {
9300
9205
  const {
@@ -9306,7 +9211,7 @@ var CalendarTable = (props) => {
9306
9211
  ...other
9307
9212
  } = props;
9308
9213
  if (calendarView === "year") {
9309
- return /* @__PURE__ */ jsxs74(
9214
+ return /* @__PURE__ */ jsxs73(
9310
9215
  "table",
9311
9216
  {
9312
9217
  ...other,
@@ -9315,25 +9220,25 @@ var CalendarTable = (props) => {
9315
9220
  CALENDARTABLE_CLASSNAME
9316
9221
  ),
9317
9222
  children: [
9318
- showCalendarCaption && /* @__PURE__ */ jsx185("caption", { className: "k-calendar-caption", children: "2022" }),
9319
- /* @__PURE__ */ jsxs74("tbody", { className: "k-calendar-tbody", children: [
9320
- /* @__PURE__ */ jsxs74("tr", { className: "k-calendar-tr", children: [
9321
- /* @__PURE__ */ jsx185(CalendarCell, { text: "Jan" }),
9322
- /* @__PURE__ */ jsx185(CalendarCell, { text: "Feb" }),
9323
- /* @__PURE__ */ jsx185(CalendarCell, { text: "Mar" }),
9324
- /* @__PURE__ */ jsx185(CalendarCell, { text: "Apr" })
9223
+ showCalendarCaption && /* @__PURE__ */ jsx183("caption", { className: "k-calendar-caption", children: "2022" }),
9224
+ /* @__PURE__ */ jsxs73("tbody", { className: "k-calendar-tbody", children: [
9225
+ /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9226
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "Jan" }),
9227
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "Feb" }),
9228
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "Mar" }),
9229
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "Apr" })
9325
9230
  ] }),
9326
- /* @__PURE__ */ jsxs74("tr", { className: "k-calendar-tr", children: [
9327
- /* @__PURE__ */ jsx185(CalendarCell, { text: "May" }),
9328
- /* @__PURE__ */ jsx185(CalendarCell, { text: "Jun", hover: true }),
9329
- /* @__PURE__ */ jsx185(CalendarCell, { text: "Jul", focus: true }),
9330
- /* @__PURE__ */ jsx185(CalendarCell, { text: "Au", selected: true })
9231
+ /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9232
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "May" }),
9233
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "Jun", hover: true }),
9234
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "Jul", focus: true }),
9235
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "Au", selected: true })
9331
9236
  ] }),
9332
- /* @__PURE__ */ jsxs74("tr", { className: "k-calendar-tr", children: [
9333
- /* @__PURE__ */ jsx185(CalendarCell, { text: "Sep" }),
9334
- /* @__PURE__ */ jsx185(CalendarCell, { text: "Oct", today: true }),
9335
- /* @__PURE__ */ jsx185(CalendarCell, { text: "Nov" }),
9336
- /* @__PURE__ */ jsx185(CalendarCell, { text: "Dec" })
9237
+ /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9238
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "Sep" }),
9239
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "Oct", today: true }),
9240
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "Nov" }),
9241
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "Dec" })
9337
9242
  ] })
9338
9243
  ] })
9339
9244
  ]
@@ -9341,7 +9246,7 @@ var CalendarTable = (props) => {
9341
9246
  );
9342
9247
  }
9343
9248
  if (calendarView === "decade") {
9344
- return /* @__PURE__ */ jsxs74(
9249
+ return /* @__PURE__ */ jsxs73(
9345
9250
  "table",
9346
9251
  {
9347
9252
  ...other,
@@ -9350,25 +9255,25 @@ var CalendarTable = (props) => {
9350
9255
  CALENDARTABLE_CLASSNAME
9351
9256
  ),
9352
9257
  children: [
9353
- showCalendarCaption && /* @__PURE__ */ jsx185("caption", { className: "k-calendar-caption", children: "2020 - 2029" }),
9354
- /* @__PURE__ */ jsxs74("tbody", { className: "k-calendar-tbody", children: [
9355
- /* @__PURE__ */ jsxs74("tr", { className: "k-calendar-tr", children: [
9356
- /* @__PURE__ */ jsx185(CalendarCell, { className: "k-out-of-range" }),
9357
- /* @__PURE__ */ jsx185(CalendarCell, { text: "2020" }),
9358
- /* @__PURE__ */ jsx185(CalendarCell, { text: "2021", today: true }),
9359
- /* @__PURE__ */ jsx185(CalendarCell, { text: "2022" })
9258
+ showCalendarCaption && /* @__PURE__ */ jsx183("caption", { className: "k-calendar-caption", children: "2020 - 2029" }),
9259
+ /* @__PURE__ */ jsxs73("tbody", { className: "k-calendar-tbody", children: [
9260
+ /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9261
+ /* @__PURE__ */ jsx183(CalendarCell, { className: "k-out-of-range" }),
9262
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "2020" }),
9263
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "2021", today: true }),
9264
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "2022" })
9360
9265
  ] }),
9361
- /* @__PURE__ */ jsxs74("tr", { className: "k-calendar-tr", children: [
9362
- /* @__PURE__ */ jsx185(CalendarCell, { text: "2023" }),
9363
- /* @__PURE__ */ jsx185(CalendarCell, { text: "2024", hover: true }),
9364
- /* @__PURE__ */ jsx185(CalendarCell, { text: "2025", focus: true }),
9365
- /* @__PURE__ */ jsx185(CalendarCell, { text: "2026", selected: true })
9266
+ /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9267
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "2023" }),
9268
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "2024", hover: true }),
9269
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "2025", focus: true }),
9270
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "2026", selected: true })
9366
9271
  ] }),
9367
- /* @__PURE__ */ jsxs74("tr", { className: "k-calendar-tr", children: [
9368
- /* @__PURE__ */ jsx185(CalendarCell, { text: "2027" }),
9369
- /* @__PURE__ */ jsx185(CalendarCell, { text: "2028" }),
9370
- /* @__PURE__ */ jsx185(CalendarCell, { text: "2029" }),
9371
- /* @__PURE__ */ jsx185(CalendarCell, { className: "k-out-of-range" })
9272
+ /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9273
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "2027" }),
9274
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "2028" }),
9275
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "2029" }),
9276
+ /* @__PURE__ */ jsx183(CalendarCell, { className: "k-out-of-range" })
9372
9277
  ] })
9373
9278
  ] })
9374
9279
  ]
@@ -9376,7 +9281,7 @@ var CalendarTable = (props) => {
9376
9281
  );
9377
9282
  }
9378
9283
  if (calendarView === "century") {
9379
- return /* @__PURE__ */ jsxs74(
9284
+ return /* @__PURE__ */ jsxs73(
9380
9285
  "table",
9381
9286
  {
9382
9287
  ...other,
@@ -9385,32 +9290,32 @@ var CalendarTable = (props) => {
9385
9290
  CALENDARTABLE_CLASSNAME
9386
9291
  ),
9387
9292
  children: [
9388
- showCalendarCaption && /* @__PURE__ */ jsx185("caption", { className: "k-calendar-caption", children: "2000 - 2099" }),
9389
- /* @__PURE__ */ jsxs74("tbody", { className: "k-calendar-tbody", children: [
9390
- /* @__PURE__ */ jsxs74("tr", { className: "k-calendar-tr", children: [
9391
- /* @__PURE__ */ jsx185(CalendarCell, { text: "1990 - 1999" }),
9392
- /* @__PURE__ */ jsx185(CalendarCell, { text: "2000 - 2009" }),
9393
- /* @__PURE__ */ jsx185(CalendarCell, { text: "2010 - 2019", today: true }),
9394
- /* @__PURE__ */ jsx185(CalendarCell, { text: "2020 - 2029" })
9293
+ showCalendarCaption && /* @__PURE__ */ jsx183("caption", { className: "k-calendar-caption", children: "2000 - 2099" }),
9294
+ /* @__PURE__ */ jsxs73("tbody", { className: "k-calendar-tbody", children: [
9295
+ /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9296
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "1990 - 1999" }),
9297
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "2000 - 2009" }),
9298
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "2010 - 2019", today: true }),
9299
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "2020 - 2029" })
9395
9300
  ] }),
9396
- /* @__PURE__ */ jsxs74("tr", { className: "k-calendar-tr", children: [
9397
- /* @__PURE__ */ jsx185(CalendarCell, { text: "2030 - 2039" }),
9398
- /* @__PURE__ */ jsx185(CalendarCell, { text: "2040 - 2049", hover: true }),
9399
- /* @__PURE__ */ jsx185(CalendarCell, { text: "2050 - 2059", focus: true }),
9400
- /* @__PURE__ */ jsx185(CalendarCell, { text: "2060 - 2069", selected: true })
9301
+ /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9302
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "2030 - 2039" }),
9303
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "2040 - 2049", hover: true }),
9304
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "2050 - 2059", focus: true }),
9305
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "2060 - 2069", selected: true })
9401
9306
  ] }),
9402
- /* @__PURE__ */ jsxs74("tr", { className: "k-calendar-tr", children: [
9403
- /* @__PURE__ */ jsx185(CalendarCell, { text: "2070 - 2079" }),
9404
- /* @__PURE__ */ jsx185(CalendarCell, { text: "2080 - 2089" }),
9405
- /* @__PURE__ */ jsx185(CalendarCell, { text: "2090 - 2099" }),
9406
- /* @__PURE__ */ jsx185(CalendarCell, { className: "k-out-of-range" })
9307
+ /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9308
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "2070 - 2079" }),
9309
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "2080 - 2089" }),
9310
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "2090 - 2099" }),
9311
+ /* @__PURE__ */ jsx183(CalendarCell, { className: "k-out-of-range" })
9407
9312
  ] })
9408
9313
  ] })
9409
9314
  ]
9410
9315
  }
9411
9316
  );
9412
9317
  }
9413
- return /* @__PURE__ */ jsxs74(
9318
+ return /* @__PURE__ */ jsxs73(
9414
9319
  "table",
9415
9320
  {
9416
9321
  ...other,
@@ -9419,68 +9324,68 @@ var CalendarTable = (props) => {
9419
9324
  CALENDARTABLE_CLASSNAME
9420
9325
  ),
9421
9326
  children: [
9422
- showCalendarCaption && /* @__PURE__ */ jsx185("caption", { className: "k-calendar-caption", children: "October 2021" }),
9423
- /* @__PURE__ */ jsx185(CalendarTableHead, { showWeek }),
9424
- /* @__PURE__ */ jsxs74("tbody", { className: "k-calendar-tbody", children: [
9425
- /* @__PURE__ */ jsxs74("tr", { className: "k-calendar-tr", children: [
9426
- showWeek && /* @__PURE__ */ jsx185(CalendarCell, { text: "39", weekCell: true }),
9427
- /* @__PURE__ */ jsx185(CalendarCell, { text: "30", otherMonth: true, showOtherMonth }),
9428
- /* @__PURE__ */ jsx185(CalendarCell, { text: "1" }),
9429
- /* @__PURE__ */ jsx185(CalendarCell, { text: "2" }),
9430
- /* @__PURE__ */ jsx185(CalendarCell, { text: "3" }),
9431
- /* @__PURE__ */ jsx185(CalendarCell, { text: "4" }),
9432
- /* @__PURE__ */ jsx185(CalendarCell, { text: "5" }),
9433
- /* @__PURE__ */ jsx185(CalendarCell, { text: "6", weekend: true })
9327
+ showCalendarCaption && /* @__PURE__ */ jsx183("caption", { className: "k-calendar-caption", children: "October 2021" }),
9328
+ /* @__PURE__ */ jsx183(CalendarTableHead, { showWeek }),
9329
+ /* @__PURE__ */ jsxs73("tbody", { className: "k-calendar-tbody", children: [
9330
+ /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9331
+ showWeek && /* @__PURE__ */ jsx183(CalendarCell, { text: "39", weekCell: true }),
9332
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "30", otherMonth: true, showOtherMonth }),
9333
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "1" }),
9334
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "2" }),
9335
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "3" }),
9336
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "4" }),
9337
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "5" }),
9338
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "6", weekend: true })
9434
9339
  ] }),
9435
- /* @__PURE__ */ jsxs74("tr", { className: "k-calendar-tr", children: [
9436
- showWeek && /* @__PURE__ */ jsx185(CalendarCell, { text: "40", weekCell: true }),
9437
- /* @__PURE__ */ jsx185(CalendarCell, { text: "7", weekend: true }),
9438
- /* @__PURE__ */ jsx185(CalendarCell, { text: "8", hover: true }),
9439
- /* @__PURE__ */ jsx185(CalendarCell, { text: "9", focus: true }),
9440
- /* @__PURE__ */ jsx185(CalendarCell, { text: "10", selected: true }),
9441
- /* @__PURE__ */ jsx185(CalendarCell, { text: "11", hover: true, focus: true }),
9442
- /* @__PURE__ */ jsx185(CalendarCell, { text: "12", hover: true, selected: true }),
9443
- /* @__PURE__ */ jsx185(CalendarCell, { text: "13", weekend: true })
9340
+ /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9341
+ showWeek && /* @__PURE__ */ jsx183(CalendarCell, { text: "40", weekCell: true }),
9342
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "7", weekend: true }),
9343
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "8", hover: true }),
9344
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "9", focus: true }),
9345
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "10", selected: true }),
9346
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "11", hover: true, focus: true }),
9347
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "12", hover: true, selected: true }),
9348
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "13", weekend: true })
9444
9349
  ] }),
9445
- /* @__PURE__ */ jsxs74("tr", { className: "k-calendar-tr", children: [
9446
- showWeek && /* @__PURE__ */ jsx185(CalendarCell, { text: "41", weekCell: true }),
9447
- /* @__PURE__ */ jsx185(CalendarCell, { text: "14", weekend: true }),
9448
- /* @__PURE__ */ jsx185(CalendarCell, { text: "15" }),
9449
- /* @__PURE__ */ jsx185(CalendarCell, { text: "16", today: true }),
9450
- /* @__PURE__ */ jsx185(CalendarCell, { text: "17" }),
9451
- /* @__PURE__ */ jsx185(CalendarCell, { text: "18" }),
9452
- /* @__PURE__ */ jsx185(CalendarCell, { text: "19" }),
9453
- /* @__PURE__ */ jsx185(CalendarCell, { text: "20", weekend: true })
9350
+ /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9351
+ showWeek && /* @__PURE__ */ jsx183(CalendarCell, { text: "41", weekCell: true }),
9352
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "14", weekend: true }),
9353
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "15" }),
9354
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "16", today: true }),
9355
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "17" }),
9356
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "18" }),
9357
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "19" }),
9358
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "20", weekend: true })
9454
9359
  ] }),
9455
- /* @__PURE__ */ jsxs74("tr", { className: "k-calendar-tr", children: [
9456
- showWeek && /* @__PURE__ */ jsx185(CalendarCell, { text: "42", weekCell: true }),
9457
- /* @__PURE__ */ jsx185(CalendarCell, { text: "21", weekend: true }),
9458
- /* @__PURE__ */ jsx185(CalendarCell, { text: "22" }),
9459
- /* @__PURE__ */ jsx185(CalendarCell, { text: "23" }),
9460
- /* @__PURE__ */ jsx185(CalendarCell, { text: "24" }),
9461
- /* @__PURE__ */ jsx185(CalendarCell, { text: "25", rangeStart: selectedRange, selected: selectedRange }),
9462
- /* @__PURE__ */ jsx185(CalendarCell, { text: "26", rangeMid: selectedRange }),
9463
- /* @__PURE__ */ jsx185(CalendarCell, { text: "27", weekend: true, rangeMid: selectedRange })
9360
+ /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9361
+ showWeek && /* @__PURE__ */ jsx183(CalendarCell, { text: "42", weekCell: true }),
9362
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "21", weekend: true }),
9363
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "22" }),
9364
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "23" }),
9365
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "24" }),
9366
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "25", rangeStart: selectedRange, selected: selectedRange }),
9367
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "26", rangeMid: selectedRange }),
9368
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "27", weekend: true, rangeMid: selectedRange })
9464
9369
  ] }),
9465
- /* @__PURE__ */ jsxs74("tr", { className: "k-calendar-tr", children: [
9466
- showWeek && /* @__PURE__ */ jsx185(CalendarCell, { text: "43", weekCell: true }),
9467
- /* @__PURE__ */ jsx185(CalendarCell, { text: "28", weekend: true, rangeMid: selectedRange }),
9468
- /* @__PURE__ */ jsx185(CalendarCell, { text: "29", rangeEnd: selectedRange, focus: selectedRange, selected: selectedRange }),
9469
- /* @__PURE__ */ jsx185(CalendarCell, { text: "30" }),
9470
- /* @__PURE__ */ jsx185(CalendarCell, { text: "31" }),
9471
- /* @__PURE__ */ jsx185(CalendarCell, { text: "1", otherMonth: true, showOtherMonth }),
9472
- /* @__PURE__ */ jsx185(CalendarCell, { text: "2", otherMonth: true, showOtherMonth }),
9473
- /* @__PURE__ */ jsx185(CalendarCell, { text: "3", otherMonth: true, weekend: true, showOtherMonth })
9370
+ /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9371
+ showWeek && /* @__PURE__ */ jsx183(CalendarCell, { text: "43", weekCell: true }),
9372
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "28", weekend: true, rangeMid: selectedRange }),
9373
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "29", rangeEnd: selectedRange, focus: selectedRange, selected: selectedRange }),
9374
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "30" }),
9375
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "31" }),
9376
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "1", otherMonth: true, showOtherMonth }),
9377
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "2", otherMonth: true, showOtherMonth }),
9378
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "3", otherMonth: true, weekend: true, showOtherMonth })
9474
9379
  ] }),
9475
- /* @__PURE__ */ jsxs74("tr", { className: "k-calendar-tr", children: [
9476
- showWeek && /* @__PURE__ */ jsx185(CalendarCell, { text: "44", weekCell: true }),
9477
- /* @__PURE__ */ jsx185(CalendarCell, { text: "4", otherMonth: true, weekend: true, showOtherMonth }),
9478
- /* @__PURE__ */ jsx185(CalendarCell, { text: "5", otherMonth: true, showOtherMonth }),
9479
- /* @__PURE__ */ jsx185(CalendarCell, { text: "6", otherMonth: true, showOtherMonth }),
9480
- /* @__PURE__ */ jsx185(CalendarCell, { text: "7", otherMonth: true, showOtherMonth }),
9481
- /* @__PURE__ */ jsx185(CalendarCell, { text: "8", otherMonth: true, showOtherMonth }),
9482
- /* @__PURE__ */ jsx185(CalendarCell, { text: "9", otherMonth: true, showOtherMonth }),
9483
- /* @__PURE__ */ jsx185(CalendarCell, { text: "10", otherMonth: true, weekend: true, showOtherMonth })
9380
+ /* @__PURE__ */ jsxs73("tr", { className: "k-calendar-tr", children: [
9381
+ showWeek && /* @__PURE__ */ jsx183(CalendarCell, { text: "44", weekCell: true }),
9382
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "4", otherMonth: true, weekend: true, showOtherMonth }),
9383
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "5", otherMonth: true, showOtherMonth }),
9384
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "6", otherMonth: true, showOtherMonth }),
9385
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "7", otherMonth: true, showOtherMonth }),
9386
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "8", otherMonth: true, showOtherMonth }),
9387
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "9", otherMonth: true, showOtherMonth }),
9388
+ /* @__PURE__ */ jsx183(CalendarCell, { text: "10", otherMonth: true, weekend: true, showOtherMonth })
9484
9389
  ] })
9485
9390
  ] })
9486
9391
  ]
@@ -9489,52 +9394,52 @@ var CalendarTable = (props) => {
9489
9394
  };
9490
9395
 
9491
9396
  // src/calendar/calendar-table-head.tsx
9492
- import { jsx as jsx186, jsxs as jsxs75 } from "react/jsx-runtime";
9397
+ import { jsx as jsx184, jsxs as jsxs74 } from "react/jsx-runtime";
9493
9398
  var className16 = `k-calendar-thead`;
9494
9399
  var CalendarTableHead = (props) => {
9495
9400
  const {
9496
9401
  showWeek,
9497
9402
  ...other
9498
9403
  } = props;
9499
- return /* @__PURE__ */ jsx186(
9404
+ return /* @__PURE__ */ jsx184(
9500
9405
  "thead",
9501
9406
  {
9502
9407
  ...other,
9503
9408
  className: classNames(props.className, className16),
9504
- children: /* @__PURE__ */ jsxs75("tr", { className: "k-calendar-tr", children: [
9505
- showWeek && /* @__PURE__ */ jsx186(CalendarCell, { weekCell: true, headerCell: true }),
9506
- /* @__PURE__ */ jsx186(CalendarCell, { text: "Su", headerCell: true }),
9507
- /* @__PURE__ */ jsx186(CalendarCell, { text: "Mo", headerCell: true }),
9508
- /* @__PURE__ */ jsx186(CalendarCell, { text: "Tu", headerCell: true }),
9509
- /* @__PURE__ */ jsx186(CalendarCell, { text: "We", headerCell: true }),
9510
- /* @__PURE__ */ jsx186(CalendarCell, { text: "Th", headerCell: true }),
9511
- /* @__PURE__ */ jsx186(CalendarCell, { text: "Fr", headerCell: true }),
9512
- /* @__PURE__ */ jsx186(CalendarCell, { text: "Sa", headerCell: true })
9409
+ children: /* @__PURE__ */ jsxs74("tr", { className: "k-calendar-tr", children: [
9410
+ showWeek && /* @__PURE__ */ jsx184(CalendarCell, { weekCell: true, headerCell: true }),
9411
+ /* @__PURE__ */ jsx184(CalendarCell, { text: "Su", headerCell: true }),
9412
+ /* @__PURE__ */ jsx184(CalendarCell, { text: "Mo", headerCell: true }),
9413
+ /* @__PURE__ */ jsx184(CalendarCell, { text: "Tu", headerCell: true }),
9414
+ /* @__PURE__ */ jsx184(CalendarCell, { text: "We", headerCell: true }),
9415
+ /* @__PURE__ */ jsx184(CalendarCell, { text: "Th", headerCell: true }),
9416
+ /* @__PURE__ */ jsx184(CalendarCell, { text: "Fr", headerCell: true }),
9417
+ /* @__PURE__ */ jsx184(CalendarCell, { text: "Sa", headerCell: true })
9513
9418
  ] })
9514
9419
  }
9515
9420
  );
9516
9421
  };
9517
9422
 
9518
9423
  // src/calendar/calendar-view.tsx
9519
- import { jsx as jsx187 } from "react/jsx-runtime";
9424
+ import { jsx as jsx185 } from "react/jsx-runtime";
9520
9425
  var className17 = `k-calendar-view`;
9521
- var defaultProps65 = {
9426
+ var defaultProps64 = {
9522
9427
  viewsCount: 1,
9523
9428
  orientation: "horizontal",
9524
9429
  calendarView: "month"
9525
9430
  };
9526
9431
  var CalendarView = (props) => {
9527
9432
  const {
9528
- orientation = defaultProps65.orientation,
9529
- calendarView = defaultProps65.calendarView,
9530
- viewsCount = defaultProps65.viewsCount,
9433
+ orientation = defaultProps64.orientation,
9434
+ calendarView = defaultProps64.calendarView,
9435
+ viewsCount = defaultProps64.viewsCount,
9531
9436
  showWeek,
9532
9437
  showOtherMonth,
9533
9438
  showCalendarCaption,
9534
9439
  selectedRange,
9535
9440
  ...other
9536
9441
  } = props;
9537
- return /* @__PURE__ */ jsx187(
9442
+ return /* @__PURE__ */ jsx185(
9538
9443
  "div",
9539
9444
  {
9540
9445
  ...other,
@@ -9550,7 +9455,7 @@ var CalendarView = (props) => {
9550
9455
  }
9551
9456
  ),
9552
9457
  children: [...Array(viewsCount)].map(
9553
- (_e, i) => /* @__PURE__ */ jsx187(
9458
+ (_e, i) => /* @__PURE__ */ jsx185(
9554
9459
  CalendarTable,
9555
9460
  {
9556
9461
  calendarView,
@@ -9566,6 +9471,101 @@ var CalendarView = (props) => {
9566
9471
  );
9567
9472
  };
9568
9473
 
9474
+ // src/dateinput/dateinput.spec.tsx
9475
+ import { jsx as jsx186, jsxs as jsxs75 } from "react/jsx-runtime";
9476
+ var DATEINPUT_CLASSNAME = `k-dateinput`;
9477
+ var states68 = [
9478
+ States.hover,
9479
+ States.focus,
9480
+ States.valid,
9481
+ States.invalid,
9482
+ States.required,
9483
+ States.disabled,
9484
+ States.loading,
9485
+ States.readonly
9486
+ ];
9487
+ var options65 = {
9488
+ size: [Size.small, Size.medium, Size.large],
9489
+ rounded: [Roundness.small, Roundness.medium, Roundness.large, Roundness.full],
9490
+ fillMode: [FillMode.solid, FillMode.flat, FillMode.outline]
9491
+ };
9492
+ var defaultProps65 = {
9493
+ size: Input.defaultProps.size,
9494
+ rounded: Input.defaultProps.rounded,
9495
+ fillMode: Input.defaultProps.fillMode
9496
+ };
9497
+ var DateInput = (props) => {
9498
+ const {
9499
+ value,
9500
+ placeholder,
9501
+ size,
9502
+ rounded,
9503
+ fillMode,
9504
+ hover,
9505
+ focus,
9506
+ valid,
9507
+ invalid,
9508
+ required,
9509
+ loading,
9510
+ disabled,
9511
+ readonly,
9512
+ showSpinButton,
9513
+ ...other
9514
+ } = props;
9515
+ return /* @__PURE__ */ jsxs75(
9516
+ Input,
9517
+ {
9518
+ ...other,
9519
+ size,
9520
+ rounded,
9521
+ fillMode,
9522
+ hover,
9523
+ focus,
9524
+ valid,
9525
+ invalid,
9526
+ required,
9527
+ loading,
9528
+ disabled,
9529
+ readonly,
9530
+ className: classNames(props.className, DATEINPUT_CLASSNAME),
9531
+ children: [
9532
+ /* @__PURE__ */ jsx186(InputInnerInput, { placeholder, value }),
9533
+ /* @__PURE__ */ jsx186(
9534
+ InputValidationIcon,
9535
+ {
9536
+ valid,
9537
+ invalid,
9538
+ loading,
9539
+ disabled
9540
+ }
9541
+ ),
9542
+ /* @__PURE__ */ jsx186(
9543
+ InputLoadingIcon,
9544
+ {
9545
+ loading,
9546
+ disabled
9547
+ }
9548
+ ),
9549
+ showSpinButton && /* @__PURE__ */ jsx186(
9550
+ SpinButton,
9551
+ {
9552
+ className: "k-input-spinner",
9553
+ size,
9554
+ fillMode
9555
+ }
9556
+ )
9557
+ ]
9558
+ }
9559
+ );
9560
+ };
9561
+ DateInput.states = states68;
9562
+ DateInput.options = options65;
9563
+ DateInput.className = DATEINPUT_CLASSNAME;
9564
+ DateInput.defaultProps = defaultProps65;
9565
+
9566
+ // src/dateinput/templates/dateinput-normal.tsx
9567
+ import { jsx as jsx187 } from "react/jsx-runtime";
9568
+
9569
9569
  // src/datepicker/datepicker.spec.tsx
9570
9570
  import { Fragment as Fragment56, jsx as jsx188, jsxs as jsxs76 } from "react/jsx-runtime";
9571
9571
  var DATEPICKER_CLASSNAME = `k-datepicker`;