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