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