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