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