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