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