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