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