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