@progress/kendo-themes-html 6.7.0-dev.2 → 6.7.0-dev.3

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 (80) hide show
  1. package/dist/cjs/grid/tests/grid-adaptive-pager.js +18 -6
  2. package/dist/cjs/grid/tests/grid-angular.js +160 -148
  3. package/dist/cjs/grid/tests/grid-column-reordering-actions.js +275 -263
  4. package/dist/cjs/grid/tests/grid-column-reordering.js +280 -268
  5. package/dist/cjs/grid/tests/grid-column-resizing-actions.js +311 -299
  6. package/dist/cjs/grid/tests/grid-grouping-actions.js +241 -229
  7. package/dist/cjs/grid/tests/grid-pager.js +104 -92
  8. package/dist/cjs/grid/tests/grid-row-reordering.js +233 -221
  9. package/dist/cjs/grid/tests/grid-rtl-angular.js +106 -94
  10. package/dist/cjs/grid/tests/grid-rtl.js +99 -87
  11. package/dist/cjs/grid/tests/grid-selection-aggregates.js +108 -96
  12. package/dist/cjs/grid/tests/grid-size-sm-comp-sm.js +348 -336
  13. package/dist/cjs/grid/tests/grid-size-sm.js +348 -336
  14. package/dist/cjs/grid/tests/grid-sticky-columns-rtl.js +135 -123
  15. package/dist/cjs/grid/tests/grid.js +124 -112
  16. package/dist/cjs/index.js +1326 -1286
  17. package/dist/cjs/listview/listview.spec.js +22 -10
  18. package/dist/cjs/listview/tests/listview-layout.js +63 -51
  19. package/dist/cjs/listview/tests/listview-loading.js +34 -22
  20. package/dist/cjs/listview/tests/listview.js +49 -37
  21. package/dist/cjs/pager/index.js +41 -1
  22. package/dist/cjs/pager/templates/pager-adaptive-input.js +5806 -0
  23. package/dist/cjs/pager/templates/pager-adaptive.js +5805 -0
  24. package/dist/cjs/pager/templates/pager-input.js +5805 -0
  25. package/dist/cjs/pager/templates/pager-normal.js +5799 -0
  26. package/dist/cjs/pager/tests/pager-adaptive.js +49 -13
  27. package/dist/cjs/pager/tests/pager-sizes.js +34 -21
  28. package/dist/cjs/pager/tests/pager.js +27 -10
  29. package/dist/cjs/pdf-viewer/tests/pdf-viewer-blank-page-blazor.js +25 -13
  30. package/dist/cjs/pdf-viewer/tests/pdf-viewer-blank-page.js +31 -19
  31. package/dist/cjs/pdf-viewer/tests/pdf-viewer-search-panel.js +36 -24
  32. package/dist/cjs/pdf-viewer/tests/pdf-viewer.js +25 -13
  33. package/dist/esm/grid/tests/grid-adaptive-pager.js +18 -6
  34. package/dist/esm/grid/tests/grid-angular.js +130 -118
  35. package/dist/esm/grid/tests/grid-column-reordering-actions.js +232 -220
  36. package/dist/esm/grid/tests/grid-column-reordering.js +235 -223
  37. package/dist/esm/grid/tests/grid-column-resizing-actions.js +268 -256
  38. package/dist/esm/grid/tests/grid-grouping-actions.js +210 -198
  39. package/dist/esm/grid/tests/grid-pager.js +82 -70
  40. package/dist/esm/grid/tests/grid-row-reordering.js +206 -194
  41. package/dist/esm/grid/tests/grid-rtl-angular.js +88 -76
  42. package/dist/esm/grid/tests/grid-rtl.js +84 -72
  43. package/dist/esm/grid/tests/grid-selection-aggregates.js +80 -68
  44. package/dist/esm/grid/tests/grid-size-sm-comp-sm.js +289 -277
  45. package/dist/esm/grid/tests/grid-size-sm.js +289 -277
  46. package/dist/esm/grid/tests/grid-sticky-columns-rtl.js +124 -112
  47. package/dist/esm/grid/tests/grid.js +104 -92
  48. package/dist/esm/index.js +1044 -1004
  49. package/dist/esm/listview/listview.spec.js +20 -8
  50. package/dist/esm/listview/tests/listview-layout.js +49 -37
  51. package/dist/esm/listview/tests/listview-loading.js +29 -17
  52. package/dist/esm/listview/tests/listview.js +39 -27
  53. package/dist/esm/pager/index.js +41 -1
  54. package/dist/esm/pager/templates/pager-adaptive-input.js +5790 -0
  55. package/dist/esm/pager/templates/pager-adaptive.js +5789 -0
  56. package/dist/esm/pager/templates/pager-input.js +5789 -0
  57. package/dist/esm/pager/templates/pager-normal.js +5783 -0
  58. package/dist/esm/pager/tests/pager-adaptive.js +47 -11
  59. package/dist/esm/pager/tests/pager-sizes.js +34 -21
  60. package/dist/esm/pager/tests/pager.js +27 -10
  61. package/dist/esm/pdf-viewer/tests/pdf-viewer-blank-page-blazor.js +23 -11
  62. package/dist/esm/pdf-viewer/tests/pdf-viewer-blank-page.js +27 -15
  63. package/dist/esm/pdf-viewer/tests/pdf-viewer-search-panel.js +30 -18
  64. package/dist/esm/pdf-viewer/tests/pdf-viewer.js +23 -11
  65. package/dist/types/floating-label/floating-label.spec.d.ts +6 -2
  66. package/dist/types/pager/index.d.ts +4 -0
  67. package/dist/types/pager/templates/pager-adaptive-input.d.ts +1 -0
  68. package/dist/types/pager/templates/pager-adaptive.d.ts +1 -0
  69. package/dist/types/pager/templates/pager-input.d.ts +1 -0
  70. package/dist/types/pager/templates/pager-normal.d.ts +1 -0
  71. package/package.json +2 -2
  72. package/src/floating-label/floating-label.spec.tsx +7 -2
  73. package/src/pager/index.tsx +4 -0
  74. package/src/pager/templates/pager-adaptive-input.tsx +9 -0
  75. package/src/pager/templates/pager-adaptive.tsx +8 -0
  76. package/src/pager/templates/pager-input.tsx +8 -0
  77. package/src/pager/templates/pager-normal.tsx +3 -0
  78. package/src/pager/tests/pager-adaptive.tsx +7 -7
  79. package/src/pager/tests/pager-sizes.tsx +9 -22
  80. package/src/pager/tests/pager.tsx +21 -19
@@ -6015,8 +6015,20 @@ Pager.options = options25;
6015
6015
  Pager.className = PAGER_CLASSNAME;
6016
6016
  Pager.defaultProps = defaultProps23;
6017
6017
 
6018
- // src/skeleton/skeleton.spec.tsx
6018
+ // src/pager/templates/pager-normal.tsx
6019
6019
  import { jsx as jsx63 } from "react/jsx-runtime";
6020
+
6021
+ // src/pager/templates/pager-input.tsx
6022
+ import { jsx as jsx64 } from "react/jsx-runtime";
6023
+
6024
+ // src/pager/templates/pager-adaptive.tsx
6025
+ import { jsx as jsx65 } from "react/jsx-runtime";
6026
+
6027
+ // src/pager/templates/pager-adaptive-input.tsx
6028
+ import { jsx as jsx66 } from "react/jsx-runtime";
6029
+
6030
+ // src/skeleton/skeleton.spec.tsx
6031
+ import { jsx as jsx67 } from "react/jsx-runtime";
6020
6032
  var SKELETON_CLASSNAME = `k-skeleton`;
6021
6033
  var states27 = [];
6022
6034
  var options26 = {};
@@ -6030,7 +6042,7 @@ var Skeleton = (props) => {
6030
6042
  animation = defaultProps24.animation,
6031
6043
  ...other
6032
6044
  } = props;
6033
- return /* @__PURE__ */ jsx63(
6045
+ return /* @__PURE__ */ jsx67(
6034
6046
  "span",
6035
6047
  {
6036
6048
  ...other,
@@ -6052,7 +6064,7 @@ Skeleton.className = SKELETON_CLASSNAME;
6052
6064
  Skeleton.defaultProps = defaultProps24;
6053
6065
 
6054
6066
  // src/textbox/textbox.spec.tsx
6055
- import { jsx as jsx64, jsxs as jsxs23 } from "react/jsx-runtime";
6067
+ import { jsx as jsx68, jsxs as jsxs23 } from "react/jsx-runtime";
6056
6068
  var TEXTBOX_CLASSNAME = `k-textbox`;
6057
6069
  var states28 = [
6058
6070
  States.hover,
@@ -6112,9 +6124,9 @@ var Textbox = (props) => {
6112
6124
  readonly,
6113
6125
  className: classNames(props.className, TEXTBOX_CLASSNAME),
6114
6126
  children: [
6115
- /* @__PURE__ */ jsx64(InputPrefix, { children: prefix }),
6116
- /* @__PURE__ */ jsx64(InputInnerInput, { placeholder, value }),
6117
- /* @__PURE__ */ jsx64(
6127
+ /* @__PURE__ */ jsx68(InputPrefix, { children: prefix }),
6128
+ /* @__PURE__ */ jsx68(InputInnerInput, { placeholder, value }),
6129
+ /* @__PURE__ */ jsx68(
6118
6130
  InputValidationIcon,
6119
6131
  {
6120
6132
  valid,
@@ -6123,14 +6135,14 @@ var Textbox = (props) => {
6123
6135
  disabled
6124
6136
  }
6125
6137
  ),
6126
- /* @__PURE__ */ jsx64(
6138
+ /* @__PURE__ */ jsx68(
6127
6139
  InputLoadingIcon,
6128
6140
  {
6129
6141
  loading,
6130
6142
  disabled
6131
6143
  }
6132
6144
  ),
6133
- showClearButton && /* @__PURE__ */ jsx64(
6145
+ showClearButton && /* @__PURE__ */ jsx68(
6134
6146
  InputClearValue,
6135
6147
  {
6136
6148
  loading,
@@ -6139,7 +6151,7 @@ var Textbox = (props) => {
6139
6151
  value
6140
6152
  }
6141
6153
  ),
6142
- /* @__PURE__ */ jsx64(InputSuffix, { children: suffix })
6154
+ /* @__PURE__ */ jsx68(InputSuffix, { children: suffix })
6143
6155
  ]
6144
6156
  }
6145
6157
  );
@@ -6150,16 +6162,16 @@ Textbox.className = TEXTBOX_CLASSNAME;
6150
6162
  Textbox.defaultProps = defaultProps25;
6151
6163
 
6152
6164
  // src/textbox/templates/textbox-normal.tsx
6153
- import { jsx as jsx65 } from "react/jsx-runtime";
6165
+ import { jsx as jsx69 } from "react/jsx-runtime";
6154
6166
 
6155
6167
  // src/textbox/templates/textbox-prefix.tsx
6156
- import { jsx as jsx66, jsxs as jsxs24 } from "react/jsx-runtime";
6168
+ import { jsx as jsx70, jsxs as jsxs24 } from "react/jsx-runtime";
6157
6169
 
6158
6170
  // src/textbox/templates/textbox-suffix.tsx
6159
- import { jsx as jsx67, jsxs as jsxs25 } from "react/jsx-runtime";
6171
+ import { jsx as jsx71, jsxs as jsxs25 } from "react/jsx-runtime";
6160
6172
 
6161
6173
  // src/button-group/button-group.spec.tsx
6162
- import { jsx as jsx68 } from "react/jsx-runtime";
6174
+ import { jsx as jsx72 } from "react/jsx-runtime";
6163
6175
  var BUTTONGROUP_CLASSNAME = `k-button-group`;
6164
6176
  var states29 = [
6165
6177
  States.disabled
@@ -6177,7 +6189,7 @@ var ButtonGroup = (props) => {
6177
6189
  stretched,
6178
6190
  ...other
6179
6191
  } = props;
6180
- return /* @__PURE__ */ jsx68(
6192
+ return /* @__PURE__ */ jsx72(
6181
6193
  "div",
6182
6194
  {
6183
6195
  ...other,
@@ -6204,19 +6216,19 @@ ButtonGroup.className = BUTTONGROUP_CLASSNAME;
6204
6216
  ButtonGroup.defaultProps = defaultProps26;
6205
6217
 
6206
6218
  // src/button-group/templates/icon-button-group.tsx
6207
- import { jsx as jsx69, jsxs as jsxs26 } from "react/jsx-runtime";
6219
+ import { jsx as jsx73, jsxs as jsxs26 } from "react/jsx-runtime";
6208
6220
 
6209
6221
  // src/button-group/templates/icon-text-button-group.tsx
6210
- import { jsx as jsx70, jsxs as jsxs27 } from "react/jsx-runtime";
6222
+ import { jsx as jsx74, jsxs as jsxs27 } from "react/jsx-runtime";
6211
6223
 
6212
6224
  // src/button-group/templates/text-button-group.tsx
6213
- import { jsx as jsx71, jsxs as jsxs28 } from "react/jsx-runtime";
6225
+ import { jsx as jsx75, jsxs as jsxs28 } from "react/jsx-runtime";
6214
6226
 
6215
6227
  // src/button-group/templates/mixed-button-group.tsx
6216
- import { jsx as jsx72, jsxs as jsxs29 } from "react/jsx-runtime";
6228
+ import { jsx as jsx76, jsxs as jsxs29 } from "react/jsx-runtime";
6217
6229
 
6218
6230
  // src/color-preview/color-preview.tsx
6219
- import { jsx as jsx73, jsxs as jsxs30 } from "react/jsx-runtime";
6231
+ import { jsx as jsx77, jsxs as jsxs30 } from "react/jsx-runtime";
6220
6232
  var COLORPREVIEW_CLASSNAME = `k-color-preview`;
6221
6233
  var states30 = [];
6222
6234
  var options29 = {};
@@ -6239,8 +6251,8 @@ var ColorPreview = (props) => {
6239
6251
  }
6240
6252
  ),
6241
6253
  children: [
6242
- iconName && /* @__PURE__ */ jsx73(Icon, { icon: iconName, className: "k-color-preview-icon" }),
6243
- /* @__PURE__ */ jsx73(
6254
+ iconName && /* @__PURE__ */ jsx77(Icon, { icon: iconName, className: "k-color-preview-icon" }),
6255
+ /* @__PURE__ */ jsx77(
6244
6256
  "span",
6245
6257
  {
6246
6258
  className: "k-color-preview-mask",
@@ -6256,7 +6268,7 @@ ColorPreview.options = options29;
6256
6268
  ColorPreview.className = COLORPREVIEW_CLASSNAME;
6257
6269
 
6258
6270
  // src/colorpicker/colorpicker.spec.tsx
6259
- import { jsx as jsx74, jsxs as jsxs31 } from "react/jsx-runtime";
6271
+ import { jsx as jsx78, jsxs as jsxs31 } from "react/jsx-runtime";
6260
6272
  var COLORPICKER_CLASSNAME = `k-colorpicker`;
6261
6273
  var states31 = [
6262
6274
  States.hover,
@@ -6315,14 +6327,14 @@ var ColorPicker = (props) => {
6315
6327
  "k-icon-picker"
6316
6328
  ),
6317
6329
  children: [
6318
- /* @__PURE__ */ jsx74(InputPrefix, { children: prefix }),
6319
- /* @__PURE__ */ jsx74(
6330
+ /* @__PURE__ */ jsx78(InputPrefix, { children: prefix }),
6331
+ /* @__PURE__ */ jsx78(
6320
6332
  InputInnerSpan,
6321
6333
  {
6322
6334
  placeholder,
6323
6335
  value,
6324
6336
  showValue: false,
6325
- valueIcon: /* @__PURE__ */ jsx74(
6337
+ valueIcon: /* @__PURE__ */ jsx78(
6326
6338
  ColorPreview,
6327
6339
  {
6328
6340
  className: "k-value-icon",
@@ -6333,8 +6345,8 @@ var ColorPicker = (props) => {
6333
6345
  valueIconName
6334
6346
  }
6335
6347
  ),
6336
- /* @__PURE__ */ jsx74(InputSuffix, { children: suffix }),
6337
- /* @__PURE__ */ jsx74(
6348
+ /* @__PURE__ */ jsx78(InputSuffix, { children: suffix }),
6349
+ /* @__PURE__ */ jsx78(
6338
6350
  Button,
6339
6351
  {
6340
6352
  className: "k-input-button",
@@ -6354,7 +6366,7 @@ ColorPicker.className = COLORPICKER_CLASSNAME;
6354
6366
  ColorPicker.defaultProps = defaultProps27;
6355
6367
 
6356
6368
  // src/action-sheet/action-sheet.spec.tsx
6357
- import { Fragment as Fragment15, jsx as jsx75, jsxs as jsxs32 } from "react/jsx-runtime";
6369
+ import { Fragment as Fragment15, jsx as jsx79, jsxs as jsxs32 } from "react/jsx-runtime";
6358
6370
  var ACTIONSHEET_CLASSNAME = `k-actionsheet`;
6359
6371
  var states32 = [];
6360
6372
  var options31 = {};
@@ -6377,8 +6389,8 @@ var ActionSheet = (props) => {
6377
6389
  overlay = defaultProps28.overlay,
6378
6390
  ...other
6379
6391
  } = props;
6380
- const _ActionSheetHeader = title ? /* @__PURE__ */ jsx75(ActionSheetHeader, { title }) : header ? header : Array.isArray(children) && children.find((child) => child.type === ActionSheetHeader);
6381
- const _ActionSheetFooter = actions ? /* @__PURE__ */ jsx75(ActionSheetFooter, { className: "k-actions", actions }) : footer ? typeof footer === "string" ? /* @__PURE__ */ jsx75(ActionSheetFooter, { children: footer }) : footer : Array.isArray(children) && children.find((child) => child.type === ActionSheetFooter);
6392
+ const _ActionSheetHeader = title ? /* @__PURE__ */ jsx79(ActionSheetHeader, { title }) : header ? header : Array.isArray(children) && children.find((child) => child.type === ActionSheetHeader);
6393
+ const _ActionSheetFooter = actions ? /* @__PURE__ */ jsx79(ActionSheetFooter, { className: "k-actions", actions }) : footer ? typeof footer === "string" ? /* @__PURE__ */ jsx79(ActionSheetFooter, { children: footer }) : footer : Array.isArray(children) && children.find((child) => child.type === ActionSheetFooter);
6382
6394
  const _ActionSheetContent = Array.isArray(children) ? children.filter((child) => {
6383
6395
  switch (child.type) {
6384
6396
  case ActionSheetHeader:
@@ -6388,10 +6400,10 @@ var ActionSheet = (props) => {
6388
6400
  return true;
6389
6401
  }
6390
6402
  return true;
6391
- }) : children.type === ActionSheetItems ? children : /* @__PURE__ */ jsx75(Fragment15, {});
6403
+ }) : children.type === ActionSheetItems ? children : /* @__PURE__ */ jsx79(Fragment15, {});
6392
6404
  return /* @__PURE__ */ jsxs32("div", { className: "k-actionsheet-container", children: [
6393
- overlay && /* @__PURE__ */ jsx75("div", { className: "k-overlay" }),
6394
- /* @__PURE__ */ jsx75(
6405
+ overlay && /* @__PURE__ */ jsx79("div", { className: "k-overlay" }),
6406
+ /* @__PURE__ */ jsx79(
6395
6407
  AnimationContainer,
6396
6408
  {
6397
6409
  animationStyle: {
@@ -6401,7 +6413,7 @@ var ActionSheet = (props) => {
6401
6413
  [`${side === "top" || side === "bottom" ? "width" : null}`]: "100%",
6402
6414
  [`${side === "left" || side === "right" ? "height" : null}`]: "100%"
6403
6415
  },
6404
- children: /* @__PURE__ */ jsx75(
6416
+ children: /* @__PURE__ */ jsx79(
6405
6417
  "div",
6406
6418
  {
6407
6419
  ...other,
@@ -6416,7 +6428,7 @@ var ActionSheet = (props) => {
6416
6428
  ),
6417
6429
  children: /* @__PURE__ */ jsxs32(Fragment15, { children: [
6418
6430
  _ActionSheetHeader,
6419
- /* @__PURE__ */ jsx75("div", { className: classNames(
6431
+ /* @__PURE__ */ jsx79("div", { className: classNames(
6420
6432
  "k-actionsheet-content",
6421
6433
  {
6422
6434
  "!k-overflow-hidden": adaptive
@@ -6436,7 +6448,7 @@ ActionSheet.className = ACTIONSHEET_CLASSNAME;
6436
6448
  ActionSheet.defaultProps = defaultProps28;
6437
6449
 
6438
6450
  // src/action-sheet/actionsheet-header.tsx
6439
- import { Fragment as Fragment16, jsx as jsx76, jsxs as jsxs33 } from "react/jsx-runtime";
6451
+ import { Fragment as Fragment16, jsx as jsx80, jsxs as jsxs33 } from "react/jsx-runtime";
6440
6452
  var ACTIONSHEETHEADER_CLASSNAME = `k-actionsheet-titlebar`;
6441
6453
  var ActionSheetHeader = (props) => {
6442
6454
  const {
@@ -6446,7 +6458,7 @@ var ActionSheetHeader = (props) => {
6446
6458
  filter,
6447
6459
  ...other
6448
6460
  } = props;
6449
- return /* @__PURE__ */ jsx76(
6461
+ return /* @__PURE__ */ jsx80(
6450
6462
  "div",
6451
6463
  {
6452
6464
  ...other,
@@ -6456,21 +6468,21 @@ var ActionSheetHeader = (props) => {
6456
6468
  ),
6457
6469
  children: /* @__PURE__ */ jsxs33(Fragment16, { children: [
6458
6470
  /* @__PURE__ */ jsxs33("div", { className: "k-actionsheet-titlebar-group k-hbox", children: [
6459
- !props.children && (title || subTitle) && /* @__PURE__ */ jsx76(Fragment16, { children: /* @__PURE__ */ jsxs33("div", { className: "k-actionsheet-title", children: [
6460
- title !== "" && /* @__PURE__ */ jsx76("div", { className: "k-text-center", children: title }),
6461
- subTitle !== "" && /* @__PURE__ */ jsx76("div", { className: "k-actionsheet-subtitle k-text-center", children: subTitle })
6471
+ !props.children && (title || subTitle) && /* @__PURE__ */ jsx80(Fragment16, { children: /* @__PURE__ */ jsxs33("div", { className: "k-actionsheet-title", children: [
6472
+ title !== "" && /* @__PURE__ */ jsx80("div", { className: "k-text-center", children: title }),
6473
+ subTitle !== "" && /* @__PURE__ */ jsx80("div", { className: "k-actionsheet-subtitle k-text-center", children: subTitle })
6462
6474
  ] }) }),
6463
- props.children && /* @__PURE__ */ jsx76("div", { className: "k-actionsheet-title", children: props.children }),
6464
- actions && /* @__PURE__ */ jsx76(Fragment16, { children: /* @__PURE__ */ jsx76("div", { className: "k-actionsheet-actions", children: actions.map((actionName) => /* @__PURE__ */ jsx76(Button, { icon: actionName, size: "large", fillMode: "flat" }, actionName)) }) })
6475
+ props.children && /* @__PURE__ */ jsx80("div", { className: "k-actionsheet-title", children: props.children }),
6476
+ actions && /* @__PURE__ */ jsx80(Fragment16, { children: /* @__PURE__ */ jsx80("div", { className: "k-actionsheet-actions", children: actions.map((actionName) => /* @__PURE__ */ jsx80(Button, { icon: actionName, size: "large", fillMode: "flat" }, actionName)) }) })
6465
6477
  ] }),
6466
- filter && /* @__PURE__ */ jsx76(Fragment16, { children: /* @__PURE__ */ jsx76("div", { className: "k-actionsheet-titlebar-group k-actionsheet-filter", children: /* @__PURE__ */ jsx76(Searchbox, { placeholder: "Filter", size: "large" }) }) })
6478
+ filter && /* @__PURE__ */ jsx80(Fragment16, { children: /* @__PURE__ */ jsx80("div", { className: "k-actionsheet-titlebar-group k-actionsheet-filter", children: /* @__PURE__ */ jsx80(Searchbox, { placeholder: "Filter", size: "large" }) }) })
6467
6479
  ] })
6468
6480
  }
6469
6481
  );
6470
6482
  };
6471
6483
 
6472
6484
  // src/action-buttons/action-buttons.spec.tsx
6473
- import { jsx as jsx77 } from "react/jsx-runtime";
6485
+ import { jsx as jsx81 } from "react/jsx-runtime";
6474
6486
  var ACTIONBUTTONS_CLASSNAME = `k-actions`;
6475
6487
  var states33 = [];
6476
6488
  var options32 = {};
@@ -6484,7 +6496,7 @@ var ActionButtons = (props) => {
6484
6496
  orientation = defaultProps29.orientation,
6485
6497
  ...other
6486
6498
  } = props;
6487
- return /* @__PURE__ */ jsx77(
6499
+ return /* @__PURE__ */ jsx81(
6488
6500
  "div",
6489
6501
  {
6490
6502
  ...other,
@@ -6507,14 +6519,14 @@ ActionButtons.defaultProps = defaultProps29;
6507
6519
  var action_buttons_spec_default = ActionButtons;
6508
6520
 
6509
6521
  // src/action-sheet/actionsheet-footer.tsx
6510
- import { Fragment as Fragment17, jsx as jsx78, jsxs as jsxs34 } from "react/jsx-runtime";
6522
+ import { Fragment as Fragment17, jsx as jsx82, jsxs as jsxs34 } from "react/jsx-runtime";
6511
6523
  var ACTIONSHEETFOOTER_CLASSNAME = `k-actionsheet-footer`;
6512
6524
  var ActionSheetFooter = (props) => {
6513
6525
  const {
6514
6526
  actions,
6515
6527
  ...other
6516
6528
  } = props;
6517
- return /* @__PURE__ */ jsx78(
6529
+ return /* @__PURE__ */ jsx82(
6518
6530
  action_buttons_spec_default,
6519
6531
  {
6520
6532
  ...other,
@@ -6526,14 +6538,14 @@ var ActionSheetFooter = (props) => {
6526
6538
  children: /* @__PURE__ */ jsxs34(Fragment17, { children: [
6527
6539
  actions && actions.map((action, index) => {
6528
6540
  if (action === "|") {
6529
- return /* @__PURE__ */ jsx78("span", { className: "k-separator" }, index);
6541
+ return /* @__PURE__ */ jsx82("span", { className: "k-separator" }, index);
6530
6542
  }
6531
6543
  if (action === " ") {
6532
- return /* @__PURE__ */ jsx78("span", { className: "k-spacer" }, index);
6544
+ return /* @__PURE__ */ jsx82("span", { className: "k-spacer" }, index);
6533
6545
  }
6534
6546
  const importantFlag = action.startsWith("!");
6535
6547
  const actionName = importantFlag ? action.substring(1) : action;
6536
- return /* @__PURE__ */ jsx78(Button, { text: actionName, size: "large", themeColor: importantFlag ? "primary" : "base" }, index);
6548
+ return /* @__PURE__ */ jsx82(Button, { text: actionName, size: "large", themeColor: importantFlag ? "primary" : "base" }, index);
6537
6549
  }),
6538
6550
  !actions && props.children
6539
6551
  ] })
@@ -6542,12 +6554,12 @@ var ActionSheetFooter = (props) => {
6542
6554
  };
6543
6555
 
6544
6556
  // src/action-sheet/actionsheet-items.tsx
6545
- import { jsx as jsx79 } from "react/jsx-runtime";
6557
+ import { jsx as jsx83 } from "react/jsx-runtime";
6546
6558
  var ActionSheetItems = (props) => {
6547
6559
  const {
6548
6560
  ...other
6549
6561
  } = props;
6550
- return /* @__PURE__ */ jsx79(
6562
+ return /* @__PURE__ */ jsx83(
6551
6563
  "div",
6552
6564
  {
6553
6565
  ...other,
@@ -6561,7 +6573,7 @@ var ActionSheetItems = (props) => {
6561
6573
  };
6562
6574
 
6563
6575
  // src/action-sheet/actionsheet-item.tsx
6564
- import { Fragment as Fragment18, jsx as jsx80, jsxs as jsxs35 } from "react/jsx-runtime";
6576
+ import { Fragment as Fragment18, jsx as jsx84, jsxs as jsxs35 } from "react/jsx-runtime";
6565
6577
  var states34 = [
6566
6578
  States.hover,
6567
6579
  States.focus,
@@ -6570,7 +6582,7 @@ var states34 = [
6570
6582
  ];
6571
6583
 
6572
6584
  // src/combobox/combobox.spec.tsx
6573
- import { Fragment as Fragment19, jsx as jsx81, jsxs as jsxs36 } from "react/jsx-runtime";
6585
+ import { Fragment as Fragment19, jsx as jsx85, jsxs as jsxs36 } from "react/jsx-runtime";
6574
6586
  var COMBOBOX_CLASSNAME = `k-combobox`;
6575
6587
  var states35 = [
6576
6588
  States.hover,
@@ -6633,9 +6645,9 @@ var Combobox = (props) => {
6633
6645
  readonly,
6634
6646
  className: classNames(props.className, COMBOBOX_CLASSNAME),
6635
6647
  children: [
6636
- /* @__PURE__ */ jsx81(InputPrefix, { children: prefix }),
6637
- /* @__PURE__ */ jsx81(InputInnerInput, { placeholder, value }),
6638
- /* @__PURE__ */ jsx81(
6648
+ /* @__PURE__ */ jsx85(InputPrefix, { children: prefix }),
6649
+ /* @__PURE__ */ jsx85(InputInnerInput, { placeholder, value }),
6650
+ /* @__PURE__ */ jsx85(
6639
6651
  InputValidationIcon,
6640
6652
  {
6641
6653
  valid,
@@ -6644,14 +6656,14 @@ var Combobox = (props) => {
6644
6656
  disabled
6645
6657
  }
6646
6658
  ),
6647
- /* @__PURE__ */ jsx81(
6659
+ /* @__PURE__ */ jsx85(
6648
6660
  InputLoadingIcon,
6649
6661
  {
6650
6662
  loading,
6651
6663
  disabled
6652
6664
  }
6653
6665
  ),
6654
- /* @__PURE__ */ jsx81(
6666
+ /* @__PURE__ */ jsx85(
6655
6667
  InputClearValue,
6656
6668
  {
6657
6669
  loading,
@@ -6660,8 +6672,8 @@ var Combobox = (props) => {
6660
6672
  value
6661
6673
  }
6662
6674
  ),
6663
- /* @__PURE__ */ jsx81(InputSuffix, { children: suffix }),
6664
- /* @__PURE__ */ jsx81(
6675
+ /* @__PURE__ */ jsx85(InputSuffix, { children: suffix }),
6676
+ /* @__PURE__ */ jsx85(
6665
6677
  Button,
6666
6678
  {
6667
6679
  className: "k-input-button",
@@ -6674,9 +6686,9 @@ var Combobox = (props) => {
6674
6686
  ]
6675
6687
  }
6676
6688
  ),
6677
- opened && popup && /* @__PURE__ */ jsx81(Popup, { className: "k-list-container k-combobox-popup", children: popup }),
6689
+ opened && popup && /* @__PURE__ */ jsx85(Popup, { className: "k-list-container k-combobox-popup", children: popup }),
6678
6690
  adaptive && /* @__PURE__ */ jsxs36(ActionSheet, { adaptive: true, ...adaptiveSettings, children: [
6679
- /* @__PURE__ */ jsx81(
6691
+ /* @__PURE__ */ jsx85(
6680
6692
  ActionSheetHeader,
6681
6693
  {
6682
6694
  actions: ["x"],
@@ -6684,10 +6696,10 @@ var Combobox = (props) => {
6684
6696
  title: "Select Item"
6685
6697
  }
6686
6698
  ),
6687
- /* @__PURE__ */ jsx81("div", { className: "k-list-container", children: /* @__PURE__ */ jsxs36(List, { size: "large", children: [
6688
- /* @__PURE__ */ jsx81(ListItem, { text: "List item" }),
6689
- /* @__PURE__ */ jsx81(ListItem, { text: "List item" }),
6690
- /* @__PURE__ */ jsx81(ListItem, { text: "List item" })
6699
+ /* @__PURE__ */ jsx85("div", { className: "k-list-container", children: /* @__PURE__ */ jsxs36(List, { size: "large", children: [
6700
+ /* @__PURE__ */ jsx85(ListItem, { text: "List item" }),
6701
+ /* @__PURE__ */ jsx85(ListItem, { text: "List item" }),
6702
+ /* @__PURE__ */ jsx85(ListItem, { text: "List item" })
6691
6703
  ] }) })
6692
6704
  ] })
6693
6705
  ] });
@@ -6698,19 +6710,19 @@ Combobox.className = COMBOBOX_CLASSNAME;
6698
6710
  Combobox.defaultProps = defaultProps30;
6699
6711
 
6700
6712
  // src/combobox/templates/combobox-normal.tsx
6701
- import { jsx as jsx82 } from "react/jsx-runtime";
6713
+ import { jsx as jsx86 } from "react/jsx-runtime";
6702
6714
 
6703
6715
  // src/combobox/templates/combobox-popup.tsx
6704
- import { jsx as jsx83, jsxs as jsxs37 } from "react/jsx-runtime";
6716
+ import { jsx as jsx87, jsxs as jsxs37 } from "react/jsx-runtime";
6705
6717
 
6706
6718
  // src/combobox/templates/combobox-grouping.tsx
6707
- import { jsx as jsx84, jsxs as jsxs38 } from "react/jsx-runtime";
6719
+ import { jsx as jsx88, jsxs as jsxs38 } from "react/jsx-runtime";
6708
6720
 
6709
6721
  // src/combobox/templates/combobox-adaptive.tsx
6710
- import { jsx as jsx85 } from "react/jsx-runtime";
6722
+ import { jsx as jsx89 } from "react/jsx-runtime";
6711
6723
 
6712
6724
  // src/menu-button/menu-button.spec.tsx
6713
- import { Fragment as Fragment20, jsx as jsx86, jsxs as jsxs39 } from "react/jsx-runtime";
6725
+ import { Fragment as Fragment20, jsx as jsx90, jsxs as jsxs39 } from "react/jsx-runtime";
6714
6726
  var MENUBUTTON_CLASSNAME = `k-menu-button`;
6715
6727
  var states36 = [
6716
6728
  States.hover,
@@ -6765,7 +6777,7 @@ var MenuButton = (props) => {
6765
6777
  ...other
6766
6778
  } = props;
6767
6779
  return /* @__PURE__ */ jsxs39(Fragment20, { children: [
6768
- /* @__PURE__ */ jsx86(
6780
+ /* @__PURE__ */ jsx90(
6769
6781
  Button,
6770
6782
  {
6771
6783
  ...other,
@@ -6788,7 +6800,7 @@ var MenuButton = (props) => {
6788
6800
  arrowIconName
6789
6801
  }
6790
6802
  ),
6791
- opened && popup && /* @__PURE__ */ jsx86(Popup, { className: "k-menu-popup", children: popup })
6803
+ opened && popup && /* @__PURE__ */ jsx90(Popup, { className: "k-menu-popup", children: popup })
6792
6804
  ] });
6793
6805
  };
6794
6806
  MenuButton.states = states36;
@@ -6797,16 +6809,16 @@ MenuButton.className = MENUBUTTON_CLASSNAME;
6797
6809
  MenuButton.defaultProps = defaultProps31;
6798
6810
 
6799
6811
  // src/menu-button/templates/icon-menu-button.tsx
6800
- import { jsx as jsx87 } from "react/jsx-runtime";
6812
+ import { jsx as jsx91 } from "react/jsx-runtime";
6801
6813
 
6802
6814
  // src/menu-button/templates/icon-text-menu-button.tsx
6803
- import { jsx as jsx88 } from "react/jsx-runtime";
6815
+ import { jsx as jsx92 } from "react/jsx-runtime";
6804
6816
 
6805
6817
  // src/menu-button/templates/text-menu-button.tsx
6806
- import { jsx as jsx89 } from "react/jsx-runtime";
6818
+ import { jsx as jsx93 } from "react/jsx-runtime";
6807
6819
 
6808
6820
  // src/menu/menu-item.spec.tsx
6809
- import { Fragment as Fragment21, jsx as jsx90, jsxs as jsxs40 } from "react/jsx-runtime";
6821
+ import { Fragment as Fragment21, jsx as jsx94, jsxs as jsxs40 } from "react/jsx-runtime";
6810
6822
  var MENUITEM_CLASSNAME = `k-menu-item`;
6811
6823
  var states37 = [
6812
6824
  States.hover,
@@ -6834,7 +6846,7 @@ var MenuItem = (props) => {
6834
6846
  children,
6835
6847
  ...other
6836
6848
  } = props;
6837
- const contentTemplate = /* @__PURE__ */ jsx90(Fragment21, {});
6849
+ const contentTemplate = /* @__PURE__ */ jsx94(Fragment21, {});
6838
6850
  if (children) {
6839
6851
  children.forEach((child) => {
6840
6852
  const component = child.type;
@@ -6876,9 +6888,9 @@ var MenuItem = (props) => {
6876
6888
  })
6877
6889
  ),
6878
6890
  children: [
6879
- icon && /* @__PURE__ */ jsx90(Icon, { className: "k-menu-link-icon", icon }),
6880
- /* @__PURE__ */ jsx90("span", { className: "k-menu-link-text", children: text }),
6881
- showArrow && /* @__PURE__ */ jsx90("span", { className: "k-menu-expand-arrow", children: /* @__PURE__ */ jsx90(Icon, { icon: expandArrowName }) })
6891
+ icon && /* @__PURE__ */ jsx94(Icon, { className: "k-menu-link-icon", icon }),
6892
+ /* @__PURE__ */ jsx94("span", { className: "k-menu-link-text", children: text }),
6893
+ showArrow && /* @__PURE__ */ jsx94("span", { className: "k-menu-expand-arrow", children: /* @__PURE__ */ jsx94(Icon, { icon: expandArrowName }) })
6882
6894
  ]
6883
6895
  }
6884
6896
  ),
@@ -6894,7 +6906,7 @@ MenuItem.defaultProps = defaultProps32;
6894
6906
  var menu_item_spec_default = MenuItem;
6895
6907
 
6896
6908
  // src/menu/menu-separator.spec.tsx
6897
- import { jsx as jsx91 } from "react/jsx-runtime";
6909
+ import { jsx as jsx95 } from "react/jsx-runtime";
6898
6910
  var SEPARATOR_CLASSNAME = `k-separator`;
6899
6911
  var defaultProps33 = {
6900
6912
  orientation: "horizontal"
@@ -6904,7 +6916,7 @@ var MenuSeparator = (props) => {
6904
6916
  orientation = defaultProps33.orientation,
6905
6917
  ...other
6906
6918
  } = props;
6907
- return /* @__PURE__ */ jsx91(
6919
+ return /* @__PURE__ */ jsx95(
6908
6920
  "li",
6909
6921
  {
6910
6922
  ...other,
@@ -6922,10 +6934,10 @@ var MenuSeparator = (props) => {
6922
6934
  var menu_separator_spec_default = MenuSeparator;
6923
6935
 
6924
6936
  // src/menu/menu-item-content.tsx
6925
- import { Fragment as Fragment22, jsx as jsx92 } from "react/jsx-runtime";
6937
+ import { Fragment as Fragment22, jsx as jsx96 } from "react/jsx-runtime";
6926
6938
 
6927
6939
  // src/menu/menu-list.spec.tsx
6928
- import { jsx as jsx93 } from "react/jsx-runtime";
6940
+ import { jsx as jsx97 } from "react/jsx-runtime";
6929
6941
  import { createElement } from "react";
6930
6942
  var MENULIST_CLASSNAME = `k-menu-group`;
6931
6943
  var states38 = [];
@@ -6953,7 +6965,7 @@ var MenuList = (props) => {
6953
6965
  );
6954
6966
  } else if (child.type === menu_separator_spec_default) {
6955
6967
  listChildren.push(
6956
- /* @__PURE__ */ jsx93(menu_separator_spec_default, {})
6968
+ /* @__PURE__ */ jsx97(menu_separator_spec_default, {})
6957
6969
  );
6958
6970
  } else {
6959
6971
  listChildren.push(child);
@@ -6961,7 +6973,7 @@ var MenuList = (props) => {
6961
6973
  });
6962
6974
  }
6963
6975
  }
6964
- return /* @__PURE__ */ jsx93(
6976
+ return /* @__PURE__ */ jsx97(
6965
6977
  "ul",
6966
6978
  {
6967
6979
  ...other,
@@ -6982,10 +6994,10 @@ MenuList.className = MENULIST_CLASSNAME;
6982
6994
  MenuList.defaultProps = defaultProps34;
6983
6995
 
6984
6996
  // src/menu-button/templates/menu-button-popup.tsx
6985
- import { jsx as jsx94, jsxs as jsxs41 } from "react/jsx-runtime";
6997
+ import { jsx as jsx98, jsxs as jsxs41 } from "react/jsx-runtime";
6986
6998
 
6987
6999
  // src/split-button/split-button.spec.tsx
6988
- import { Fragment as Fragment23, jsx as jsx95, jsxs as jsxs42 } from "react/jsx-runtime";
7000
+ import { Fragment as Fragment23, jsx as jsx99, jsxs as jsxs42 } from "react/jsx-runtime";
6989
7001
  var SPLITBUTTON_CLASSNAME = `k-split-button`;
6990
7002
  var states39 = [
6991
7003
  States.hover,
@@ -7051,7 +7063,7 @@ var SplitButton = (props) => {
7051
7063
  })
7052
7064
  ),
7053
7065
  children: [
7054
- /* @__PURE__ */ jsx95(
7066
+ /* @__PURE__ */ jsx99(
7055
7067
  Button,
7056
7068
  {
7057
7069
  text,
@@ -7068,7 +7080,7 @@ var SplitButton = (props) => {
7068
7080
  children: props.children
7069
7081
  }
7070
7082
  ),
7071
- /* @__PURE__ */ jsx95(
7083
+ /* @__PURE__ */ jsx99(
7072
7084
  Button,
7073
7085
  {
7074
7086
  className: "k-split-button-arrow",
@@ -7082,7 +7094,7 @@ var SplitButton = (props) => {
7082
7094
  ]
7083
7095
  }
7084
7096
  ),
7085
- opened && popup && /* @__PURE__ */ jsx95(Popup, { className: "k-menu-popup", children: popup })
7097
+ opened && popup && /* @__PURE__ */ jsx99(Popup, { className: "k-menu-popup", children: popup })
7086
7098
  ] });
7087
7099
  };
7088
7100
  SplitButton.states = states39;
@@ -7092,7 +7104,7 @@ SplitButton.defaultProps = defaultProps35;
7092
7104
  var split_button_spec_default = SplitButton;
7093
7105
 
7094
7106
  // src/toolbar/toolbar.spec.tsx
7095
- import { jsx as jsx96 } from "react/jsx-runtime";
7107
+ import { jsx as jsx100 } from "react/jsx-runtime";
7096
7108
  var TOOLBAR_CLASSNAME = `k-toolbar`;
7097
7109
  var states40 = [
7098
7110
  States.focus
@@ -7115,7 +7127,7 @@ var Toolbar = (props) => {
7115
7127
  const tempToolbarChildren = [];
7116
7128
  if (child.type === Button && child.props.className && child.props.className.includes("k-toolbar-overflow-button")) {
7117
7129
  tempToolbarChildren.push(
7118
- /* @__PURE__ */ jsx96(
7130
+ /* @__PURE__ */ jsx100(
7119
7131
  Button,
7120
7132
  {
7121
7133
  ...child.props,
@@ -7126,7 +7138,7 @@ var Toolbar = (props) => {
7126
7138
  );
7127
7139
  } else if (child.type === Button && child.props.className && child.props.className.includes("k-toggle-button")) {
7128
7140
  tempToolbarChildren.push(
7129
- /* @__PURE__ */ jsx96(
7141
+ /* @__PURE__ */ jsx100(
7130
7142
  Button,
7131
7143
  {
7132
7144
  ...child.props,
@@ -7137,7 +7149,7 @@ var Toolbar = (props) => {
7137
7149
  );
7138
7150
  } else if (child.type === Button) {
7139
7151
  tempToolbarChildren.push(
7140
- /* @__PURE__ */ jsx96(
7152
+ /* @__PURE__ */ jsx100(
7141
7153
  Button,
7142
7154
  {
7143
7155
  ...child.props,
@@ -7148,7 +7160,7 @@ var Toolbar = (props) => {
7148
7160
  );
7149
7161
  } else if (child.type === MenuButton) {
7150
7162
  tempToolbarChildren.push(
7151
- /* @__PURE__ */ jsx96(
7163
+ /* @__PURE__ */ jsx100(
7152
7164
  MenuButton,
7153
7165
  {
7154
7166
  ...child.props,
@@ -7159,7 +7171,7 @@ var Toolbar = (props) => {
7159
7171
  );
7160
7172
  } else if (child.type === split_button_spec_default) {
7161
7173
  tempToolbarChildren.push(
7162
- /* @__PURE__ */ jsx96(
7174
+ /* @__PURE__ */ jsx100(
7163
7175
  split_button_spec_default,
7164
7176
  {
7165
7177
  ...child.props,
@@ -7173,7 +7185,7 @@ var Toolbar = (props) => {
7173
7185
  const childrenArray = Array.isArray(child.props.children) ? child.props.children : [child.props.children];
7174
7186
  childrenArray.forEach((button, bindex) => {
7175
7187
  buttonGroupItems.push(
7176
- /* @__PURE__ */ jsx96(
7188
+ /* @__PURE__ */ jsx100(
7177
7189
  Button,
7178
7190
  {
7179
7191
  ...button.props,
@@ -7184,7 +7196,7 @@ var Toolbar = (props) => {
7184
7196
  );
7185
7197
  });
7186
7198
  tempToolbarChildren.push(
7187
- /* @__PURE__ */ jsx96(
7199
+ /* @__PURE__ */ jsx100(
7188
7200
  ButtonGroup,
7189
7201
  {
7190
7202
  ...child.props,
@@ -7196,7 +7208,7 @@ var Toolbar = (props) => {
7196
7208
  );
7197
7209
  } else if (child.type === Combobox) {
7198
7210
  tempToolbarChildren.push(
7199
- /* @__PURE__ */ jsx96(
7211
+ /* @__PURE__ */ jsx100(
7200
7212
  Combobox,
7201
7213
  {
7202
7214
  ...child.props,
@@ -7207,7 +7219,7 @@ var Toolbar = (props) => {
7207
7219
  );
7208
7220
  } else if (child.type === DropdownList) {
7209
7221
  tempToolbarChildren.push(
7210
- /* @__PURE__ */ jsx96(
7222
+ /* @__PURE__ */ jsx100(
7211
7223
  DropdownList,
7212
7224
  {
7213
7225
  ...child.props,
@@ -7218,7 +7230,7 @@ var Toolbar = (props) => {
7218
7230
  );
7219
7231
  } else if (child.type === ColorPicker) {
7220
7232
  tempToolbarChildren.push(
7221
- /* @__PURE__ */ jsx96(
7233
+ /* @__PURE__ */ jsx100(
7222
7234
  ColorPicker,
7223
7235
  {
7224
7236
  ...child.props,
@@ -7240,7 +7252,7 @@ var Toolbar = (props) => {
7240
7252
  addUniqueToolClass(child, index);
7241
7253
  });
7242
7254
  }
7243
- return /* @__PURE__ */ jsx96(
7255
+ return /* @__PURE__ */ jsx100(
7244
7256
  "div",
7245
7257
  {
7246
7258
  ...other,
@@ -7267,7 +7279,7 @@ Toolbar.className = TOOLBAR_CLASSNAME;
7267
7279
  Toolbar.defaultProps = defaultProps36;
7268
7280
 
7269
7281
  // src/toolbar/toolbar-angular.spec.tsx
7270
- import { jsx as jsx97 } from "react/jsx-runtime";
7282
+ import { jsx as jsx101 } from "react/jsx-runtime";
7271
7283
  var TOOLBARANGULAR_CLASSNAME = `k-toolbar`;
7272
7284
  var states41 = [
7273
7285
  States.focus
@@ -7290,7 +7302,7 @@ var ToolbarAngular = (props) => {
7290
7302
  const tempToolbarChildren = [];
7291
7303
  if (child.type === Button && child.props.className && child.props.className.includes("k-toolbar-overflow-button")) {
7292
7304
  tempToolbarChildren.push(
7293
- /* @__PURE__ */ jsx97("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx97(
7305
+ /* @__PURE__ */ jsx101("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx101(
7294
7306
  Button,
7295
7307
  {
7296
7308
  ...child.props,
@@ -7301,7 +7313,7 @@ var ToolbarAngular = (props) => {
7301
7313
  );
7302
7314
  } else if (child.type === Button && child.props.className && child.props.className.includes("k-toggle-button")) {
7303
7315
  tempToolbarChildren.push(
7304
- /* @__PURE__ */ jsx97("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx97(
7316
+ /* @__PURE__ */ jsx101("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx101(
7305
7317
  Button,
7306
7318
  {
7307
7319
  ...child.props,
@@ -7312,7 +7324,7 @@ var ToolbarAngular = (props) => {
7312
7324
  );
7313
7325
  } else if (child.type === Button) {
7314
7326
  tempToolbarChildren.push(
7315
- /* @__PURE__ */ jsx97("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx97(
7327
+ /* @__PURE__ */ jsx101("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx101(
7316
7328
  Button,
7317
7329
  {
7318
7330
  ...child.props,
@@ -7323,7 +7335,7 @@ var ToolbarAngular = (props) => {
7323
7335
  );
7324
7336
  } else if (child.type === MenuButton) {
7325
7337
  tempToolbarChildren.push(
7326
- /* @__PURE__ */ jsx97("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx97(
7338
+ /* @__PURE__ */ jsx101("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx101(
7327
7339
  MenuButton,
7328
7340
  {
7329
7341
  ...child.props,
@@ -7334,7 +7346,7 @@ var ToolbarAngular = (props) => {
7334
7346
  );
7335
7347
  } else if (child.type === split_button_spec_default) {
7336
7348
  tempToolbarChildren.push(
7337
- /* @__PURE__ */ jsx97("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx97(
7349
+ /* @__PURE__ */ jsx101("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx101(
7338
7350
  split_button_spec_default,
7339
7351
  {
7340
7352
  ...child.props,
@@ -7348,7 +7360,7 @@ var ToolbarAngular = (props) => {
7348
7360
  const childrenArray = Array.isArray(child.props.children) ? child.props.children : [child.props.children];
7349
7361
  childrenArray.forEach((button, bindex) => {
7350
7362
  buttonGroupItems.push(
7351
- /* @__PURE__ */ jsx97(
7363
+ /* @__PURE__ */ jsx101(
7352
7364
  Button,
7353
7365
  {
7354
7366
  ...button.props,
@@ -7359,7 +7371,7 @@ var ToolbarAngular = (props) => {
7359
7371
  );
7360
7372
  });
7361
7373
  tempToolbarChildren.push(
7362
- /* @__PURE__ */ jsx97("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx97(
7374
+ /* @__PURE__ */ jsx101("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx101(
7363
7375
  ButtonGroup,
7364
7376
  {
7365
7377
  ...child.props,
@@ -7371,7 +7383,7 @@ var ToolbarAngular = (props) => {
7371
7383
  );
7372
7384
  } else if (child.type === Combobox) {
7373
7385
  tempToolbarChildren.push(
7374
- /* @__PURE__ */ jsx97("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx97(
7386
+ /* @__PURE__ */ jsx101("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx101(
7375
7387
  Combobox,
7376
7388
  {
7377
7389
  ...child.props,
@@ -7382,7 +7394,7 @@ var ToolbarAngular = (props) => {
7382
7394
  );
7383
7395
  } else if (child.type === DropdownList) {
7384
7396
  tempToolbarChildren.push(
7385
- /* @__PURE__ */ jsx97("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx97(
7397
+ /* @__PURE__ */ jsx101("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx101(
7386
7398
  DropdownList,
7387
7399
  {
7388
7400
  ...child.props,
@@ -7393,7 +7405,7 @@ var ToolbarAngular = (props) => {
7393
7405
  );
7394
7406
  } else if (child.type === ColorPicker) {
7395
7407
  tempToolbarChildren.push(
7396
- /* @__PURE__ */ jsx97("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx97(
7408
+ /* @__PURE__ */ jsx101("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx101(
7397
7409
  ColorPicker,
7398
7410
  {
7399
7411
  ...child.props,
@@ -7415,7 +7427,7 @@ var ToolbarAngular = (props) => {
7415
7427
  addUniqueToolClass(child, index);
7416
7428
  });
7417
7429
  }
7418
- return /* @__PURE__ */ jsx97(
7430
+ return /* @__PURE__ */ jsx101(
7419
7431
  "div",
7420
7432
  {
7421
7433
  ...other,
@@ -7442,10 +7454,10 @@ ToolbarAngular.className = TOOLBARANGULAR_CLASSNAME;
7442
7454
  ToolbarAngular.defaultProps = defaultProps37;
7443
7455
 
7444
7456
  // src/toolbar/toolbar-separator.tsx
7445
- import { jsx as jsx98 } from "react/jsx-runtime";
7457
+ import { jsx as jsx102 } from "react/jsx-runtime";
7446
7458
 
7447
7459
  // src/toolbar/toolbar-item.spec.tsx
7448
- import { jsx as jsx99 } from "react/jsx-runtime";
7460
+ import { jsx as jsx103 } from "react/jsx-runtime";
7449
7461
  var TOOLBARITEM_CLASSNAME = `k-toolbar-item`;
7450
7462
  var states42 = [
7451
7463
  States.focus
@@ -7457,7 +7469,7 @@ var ToolbarItem = (props) => {
7457
7469
  focus,
7458
7470
  ...other
7459
7471
  } = props;
7460
- return /* @__PURE__ */ jsx99(
7472
+ return /* @__PURE__ */ jsx103(
7461
7473
  "div",
7462
7474
  {
7463
7475
  ...other,
@@ -7478,7 +7490,7 @@ ToolbarItem.className = TOOLBARITEM_CLASSNAME;
7478
7490
  ToolbarItem.defaultProps = defaultProps38;
7479
7491
 
7480
7492
  // src/grid/tests/grid-size-sm-comp-sm.tsx
7481
- import { Fragment as Fragment24, jsx as jsx100, jsxs as jsxs43 } from "react/jsx-runtime";
7493
+ import { Fragment as Fragment24, jsx as jsx104, jsxs as jsxs43 } from "react/jsx-runtime";
7482
7494
  var styles = `
7483
7495
  .k-grouping-header .k-grouping-dropclue {
7484
7496
  left: 0;
@@ -7488,274 +7500,274 @@ var styles = `
7488
7500
  }
7489
7501
  `;
7490
7502
  var grid_size_sm_comp_sm_default = () => /* @__PURE__ */ jsxs43(Fragment24, { children: [
7491
- /* @__PURE__ */ jsx100("style", { children: styles }),
7503
+ /* @__PURE__ */ jsx104("style", { children: styles }),
7492
7504
  /* @__PURE__ */ jsxs43("div", { id: "test-area", className: "k-d-grid k-grid-cols-2", children: [
7493
- /* @__PURE__ */ jsx100("span", { className: "col-2", children: "Grid" }),
7494
- /* @__PURE__ */ jsx100("section", { className: "col-2", children: /* @__PURE__ */ jsxs43("div", { className: "k-grid k-grid-sm k-grid-no-scrollbar", children: [
7495
- /* @__PURE__ */ jsx100("div", { className: "k-grid-header", children: /* @__PURE__ */ jsx100("div", { className: "k-grid-header-wrap", children: /* @__PURE__ */ jsxs43("table", { className: "k-table k-table-sm k-grid-header-table", children: [
7505
+ /* @__PURE__ */ jsx104("span", { className: "col-2", children: "Grid" }),
7506
+ /* @__PURE__ */ jsx104("section", { className: "col-2", children: /* @__PURE__ */ jsxs43("div", { className: "k-grid k-grid-sm k-grid-no-scrollbar", children: [
7507
+ /* @__PURE__ */ jsx104("div", { className: "k-grid-header", children: /* @__PURE__ */ jsx104("div", { className: "k-grid-header-wrap", children: /* @__PURE__ */ jsxs43("table", { className: "k-table k-table-sm k-grid-header-table", children: [
7496
7508
  /* @__PURE__ */ jsxs43("colgroup", { children: [
7497
- /* @__PURE__ */ jsx100("col", { style: { width: "100px" } }),
7498
- /* @__PURE__ */ jsx100("col", {})
7509
+ /* @__PURE__ */ jsx104("col", { style: { width: "100px" } }),
7510
+ /* @__PURE__ */ jsx104("col", {})
7499
7511
  ] }),
7500
- /* @__PURE__ */ jsx100("thead", { className: "k-table-thead", children: /* @__PURE__ */ jsxs43("tr", { className: "k-table-row", children: [
7501
- /* @__PURE__ */ jsx100("th", { className: "k-table-th k-header", children: /* @__PURE__ */ jsx100("span", { className: "k-cell-inner", children: /* @__PURE__ */ jsx100("span", { className: "k-link", children: /* @__PURE__ */ jsx100("span", { className: "k-column-title", children: "100px" }) }) }) }),
7502
- /* @__PURE__ */ jsx100("th", { className: "k-table-th k-header", children: /* @__PURE__ */ jsx100("span", { className: "k-cell-inner", children: /* @__PURE__ */ jsx100("span", { className: "k-link", children: /* @__PURE__ */ jsx100("span", { className: "k-column-title", children: "no width" }) }) }) })
7512
+ /* @__PURE__ */ jsx104("thead", { className: "k-table-thead", children: /* @__PURE__ */ jsxs43("tr", { className: "k-table-row", children: [
7513
+ /* @__PURE__ */ jsx104("th", { className: "k-table-th k-header", children: /* @__PURE__ */ jsx104("span", { className: "k-cell-inner", children: /* @__PURE__ */ jsx104("span", { className: "k-link", children: /* @__PURE__ */ jsx104("span", { className: "k-column-title", children: "100px" }) }) }) }),
7514
+ /* @__PURE__ */ jsx104("th", { className: "k-table-th k-header", children: /* @__PURE__ */ jsx104("span", { className: "k-cell-inner", children: /* @__PURE__ */ jsx104("span", { className: "k-link", children: /* @__PURE__ */ jsx104("span", { className: "k-column-title", children: "no width" }) }) }) })
7503
7515
  ] }) })
7504
7516
  ] }) }) }),
7505
- /* @__PURE__ */ jsx100("div", { className: "k-grid-content", children: /* @__PURE__ */ jsxs43("table", { className: "k-table k-table-sm k-grid-table", children: [
7517
+ /* @__PURE__ */ jsx104("div", { className: "k-grid-content", children: /* @__PURE__ */ jsxs43("table", { className: "k-table k-table-sm k-grid-table", children: [
7506
7518
  /* @__PURE__ */ jsxs43("colgroup", { children: [
7507
- /* @__PURE__ */ jsx100("col", { style: { width: "100px" } }),
7508
- /* @__PURE__ */ jsx100("col", {})
7519
+ /* @__PURE__ */ jsx104("col", { style: { width: "100px" } }),
7520
+ /* @__PURE__ */ jsx104("col", {})
7509
7521
  ] }),
7510
7522
  /* @__PURE__ */ jsxs43("tbody", { className: "k-table-tbody", children: [
7511
7523
  /* @__PURE__ */ jsxs43("tr", { className: "k-table-row", children: [
7512
- /* @__PURE__ */ jsx100("td", { className: "k-table-td", children: "1" }),
7513
- /* @__PURE__ */ jsx100("td", { className: "k-table-td", children: "Row" })
7524
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td", children: "1" }),
7525
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td", children: "Row" })
7514
7526
  ] }),
7515
7527
  /* @__PURE__ */ jsxs43("tr", { className: "k-table-row k-table-alt-row k-alt", children: [
7516
- /* @__PURE__ */ jsx100("td", { className: "k-table-td", children: "2" }),
7517
- /* @__PURE__ */ jsx100("td", { className: "k-table-td", children: "Alt row" })
7528
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td", children: "2" }),
7529
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td", children: "Alt row" })
7518
7530
  ] }),
7519
7531
  /* @__PURE__ */ jsxs43("tr", { className: "k-table-row", children: [
7520
- /* @__PURE__ */ jsx100("td", { className: "k-table-td", children: "3" }),
7521
- /* @__PURE__ */ jsx100("td", { className: "k-table-td", children: "This text continues to the end of the grid to test overflow behavior of row contents, as well as line height and vertical alignment." })
7532
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td", children: "3" }),
7533
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td", children: "This text continues to the end of the grid to test overflow behavior of row contents, as well as line height and vertical alignment." })
7522
7534
  ] }),
7523
7535
  /* @__PURE__ */ jsxs43("tr", { className: "k-table-row k-table-alt-row k-alt", children: [
7524
- /* @__PURE__ */ jsx100("td", { className: "k-table-td", children: "4" }),
7525
- /* @__PURE__ */ jsx100("td", { className: "k-table-td", children: /* @__PURE__ */ jsx100(Skeleton, { animation: false }) })
7536
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td", children: "4" }),
7537
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td", children: /* @__PURE__ */ jsx104(Skeleton, { animation: false }) })
7526
7538
  ] }),
7527
7539
  /* @__PURE__ */ jsxs43("tr", { className: "k-table-row", children: [
7528
- /* @__PURE__ */ jsx100("td", { className: "k-table-td", children: "5" }),
7529
- /* @__PURE__ */ jsx100("td", { className: "k-table-td", children: /* @__PURE__ */ jsx100(Skeleton, { animation: false }) })
7540
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td", children: "5" }),
7541
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td", children: /* @__PURE__ */ jsx104(Skeleton, { animation: false }) })
7530
7542
  ] })
7531
7543
  ] })
7532
7544
  ] }) }),
7533
- /* @__PURE__ */ jsx100(Pager, { className: "k-grid-pager", size: "small" })
7545
+ /* @__PURE__ */ jsx104(Pager, { className: "k-grid-pager", size: "small" })
7534
7546
  ] }) }),
7535
- /* @__PURE__ */ jsx100("span", { className: "col-2", children: "Filtering" }),
7536
- /* @__PURE__ */ jsx100("section", { className: "col-2", children: /* @__PURE__ */ jsxs43("div", { className: "k-grid k-grid-sm k-grid-no-scrollbar", style: { height: "150px" }, children: [
7537
- /* @__PURE__ */ jsx100("div", { className: "k-grid-header", children: /* @__PURE__ */ jsx100("div", { className: "k-grid-header-wrap", children: /* @__PURE__ */ jsxs43("table", { className: "k-table k-table-sm k-grid-header-table", children: [
7547
+ /* @__PURE__ */ jsx104("span", { className: "col-2", children: "Filtering" }),
7548
+ /* @__PURE__ */ jsx104("section", { className: "col-2", children: /* @__PURE__ */ jsxs43("div", { className: "k-grid k-grid-sm k-grid-no-scrollbar", style: { height: "150px" }, children: [
7549
+ /* @__PURE__ */ jsx104("div", { className: "k-grid-header", children: /* @__PURE__ */ jsx104("div", { className: "k-grid-header-wrap", children: /* @__PURE__ */ jsxs43("table", { className: "k-table k-table-sm k-grid-header-table", children: [
7538
7550
  /* @__PURE__ */ jsxs43("colgroup", { children: [
7539
- /* @__PURE__ */ jsx100("col", { className: "k-hierarchy-col" }),
7540
- /* @__PURE__ */ jsx100("col", {}),
7541
- /* @__PURE__ */ jsx100("col", {}),
7542
- /* @__PURE__ */ jsx100("col", {}),
7543
- /* @__PURE__ */ jsx100("col", {})
7551
+ /* @__PURE__ */ jsx104("col", { className: "k-hierarchy-col" }),
7552
+ /* @__PURE__ */ jsx104("col", {}),
7553
+ /* @__PURE__ */ jsx104("col", {}),
7554
+ /* @__PURE__ */ jsx104("col", {}),
7555
+ /* @__PURE__ */ jsx104("col", {})
7544
7556
  ] }),
7545
7557
  /* @__PURE__ */ jsxs43("thead", { className: "k-table-thead", children: [
7546
7558
  /* @__PURE__ */ jsxs43("tr", { className: "k-table-row", children: [
7547
- /* @__PURE__ */ jsx100("th", { className: "k-table-th k-header k-hierarchy-cell" }),
7548
- /* @__PURE__ */ jsx100("th", { className: "k-table-th k-header k-filterable", children: /* @__PURE__ */ jsxs43("span", { className: "k-cell-inner", children: [
7549
- /* @__PURE__ */ jsx100("span", { className: "k-link", children: /* @__PURE__ */ jsx100("span", { className: "k-column-title", children: "Default" }) }),
7550
- /* @__PURE__ */ jsx100("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu", children: /* @__PURE__ */ jsx100(Icon, { icon: "filter" }) })
7559
+ /* @__PURE__ */ jsx104("th", { className: "k-table-th k-header k-hierarchy-cell" }),
7560
+ /* @__PURE__ */ jsx104("th", { className: "k-table-th k-header k-filterable", children: /* @__PURE__ */ jsxs43("span", { className: "k-cell-inner", children: [
7561
+ /* @__PURE__ */ jsx104("span", { className: "k-link", children: /* @__PURE__ */ jsx104("span", { className: "k-column-title", children: "Default" }) }),
7562
+ /* @__PURE__ */ jsx104("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu", children: /* @__PURE__ */ jsx104(Icon, { icon: "filter" }) })
7551
7563
  ] }) }),
7552
- /* @__PURE__ */ jsx100("th", { className: "k-table-th k-header k-filterable k-hover", children: /* @__PURE__ */ jsxs43("span", { className: "k-cell-inner", children: [
7553
- /* @__PURE__ */ jsx100("span", { className: "k-link", children: /* @__PURE__ */ jsx100("span", { className: "k-column-title", children: "Hover" }) }),
7554
- /* @__PURE__ */ jsx100("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu", children: /* @__PURE__ */ jsx100(Icon, { icon: "filter" }) })
7564
+ /* @__PURE__ */ jsx104("th", { className: "k-table-th k-header k-filterable k-hover", children: /* @__PURE__ */ jsxs43("span", { className: "k-cell-inner", children: [
7565
+ /* @__PURE__ */ jsx104("span", { className: "k-link", children: /* @__PURE__ */ jsx104("span", { className: "k-column-title", children: "Hover" }) }),
7566
+ /* @__PURE__ */ jsx104("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu", children: /* @__PURE__ */ jsx104(Icon, { icon: "filter" }) })
7555
7567
  ] }) }),
7556
- /* @__PURE__ */ jsx100("th", { className: "k-table-th k-header k-filterable k-focus", children: /* @__PURE__ */ jsxs43("span", { className: "k-cell-inner", children: [
7557
- /* @__PURE__ */ jsx100("span", { className: "k-link", children: /* @__PURE__ */ jsx100("span", { className: "k-column-title", children: "Focus" }) }),
7558
- /* @__PURE__ */ jsx100("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu", children: /* @__PURE__ */ jsx100(Icon, { icon: "filter" }) })
7568
+ /* @__PURE__ */ jsx104("th", { className: "k-table-th k-header k-filterable k-focus", children: /* @__PURE__ */ jsxs43("span", { className: "k-cell-inner", children: [
7569
+ /* @__PURE__ */ jsx104("span", { className: "k-link", children: /* @__PURE__ */ jsx104("span", { className: "k-column-title", children: "Focus" }) }),
7570
+ /* @__PURE__ */ jsx104("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu", children: /* @__PURE__ */ jsx104(Icon, { icon: "filter" }) })
7559
7571
  ] }) }),
7560
- /* @__PURE__ */ jsx100("th", { className: "k-table-th k-header k-filterable k-active", children: /* @__PURE__ */ jsxs43("span", { className: "k-cell-inner", children: [
7561
- /* @__PURE__ */ jsx100("span", { className: "k-link", children: /* @__PURE__ */ jsx100("span", { className: "k-column-title", children: "Active" }) }),
7562
- /* @__PURE__ */ jsx100("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu k-active", children: /* @__PURE__ */ jsx100(Icon, { icon: "filter" }) })
7572
+ /* @__PURE__ */ jsx104("th", { className: "k-table-th k-header k-filterable k-active", children: /* @__PURE__ */ jsxs43("span", { className: "k-cell-inner", children: [
7573
+ /* @__PURE__ */ jsx104("span", { className: "k-link", children: /* @__PURE__ */ jsx104("span", { className: "k-column-title", children: "Active" }) }),
7574
+ /* @__PURE__ */ jsx104("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu k-active", children: /* @__PURE__ */ jsx104(Icon, { icon: "filter" }) })
7563
7575
  ] }) }),
7564
- /* @__PURE__ */ jsx100("th", { className: "k-table-th k-header k-filterable k-sorted", children: /* @__PURE__ */ jsxs43("span", { className: "k-cell-inner", children: [
7576
+ /* @__PURE__ */ jsx104("th", { className: "k-table-th k-header k-filterable k-sorted", children: /* @__PURE__ */ jsxs43("span", { className: "k-cell-inner", children: [
7565
7577
  /* @__PURE__ */ jsxs43("span", { className: "k-link", children: [
7566
- /* @__PURE__ */ jsx100("span", { className: "k-column-title", children: "Sorted" }),
7567
- /* @__PURE__ */ jsx100("span", { className: "k-sort-icon", children: /* @__PURE__ */ jsx100(Icon, { icon: "sort-asc-small" }) })
7578
+ /* @__PURE__ */ jsx104("span", { className: "k-column-title", children: "Sorted" }),
7579
+ /* @__PURE__ */ jsx104("span", { className: "k-sort-icon", children: /* @__PURE__ */ jsx104(Icon, { icon: "sort-asc-small" }) })
7568
7580
  ] }),
7569
- /* @__PURE__ */ jsx100("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu", children: /* @__PURE__ */ jsx100(Icon, { icon: "filter" }) })
7581
+ /* @__PURE__ */ jsx104("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu", children: /* @__PURE__ */ jsx104(Icon, { icon: "filter" }) })
7570
7582
  ] }) })
7571
7583
  ] }),
7572
7584
  /* @__PURE__ */ jsxs43("tr", { className: "k-table-row k-filter-row", children: [
7573
- /* @__PURE__ */ jsx100("th", { className: "k-table-th", children: /* @__PURE__ */ jsx100("div", { className: "k-filtercell", children: /* @__PURE__ */ jsx100("div", { className: "k-filtercell-wrapper" }) }) }),
7574
- /* @__PURE__ */ jsx100("th", { className: "k-table-th", children: /* @__PURE__ */ jsx100("div", { className: "k-filtercell", children: /* @__PURE__ */ jsxs43("div", { className: "k-filtercell-wrapper", children: [
7575
- /* @__PURE__ */ jsx100(NumericTextbox, { size: "small" }),
7585
+ /* @__PURE__ */ jsx104("th", { className: "k-table-th", children: /* @__PURE__ */ jsx104("div", { className: "k-filtercell", children: /* @__PURE__ */ jsx104("div", { className: "k-filtercell-wrapper" }) }) }),
7586
+ /* @__PURE__ */ jsx104("th", { className: "k-table-th", children: /* @__PURE__ */ jsx104("div", { className: "k-filtercell", children: /* @__PURE__ */ jsxs43("div", { className: "k-filtercell-wrapper", children: [
7587
+ /* @__PURE__ */ jsx104(NumericTextbox, { size: "small" }),
7576
7588
  /* @__PURE__ */ jsxs43("div", { className: "k-filtercell-operator", children: [
7577
- /* @__PURE__ */ jsx100(DropdownList, { size: "small", className: "k-dropdown-operator", arrowIconName: "filter" }),
7589
+ /* @__PURE__ */ jsx104(DropdownList, { size: "small", className: "k-dropdown-operator", arrowIconName: "filter" }),
7578
7590
  " ",
7579
- /* @__PURE__ */ jsx100(Button, { size: "small", icon: "filter-clear", disabled: true })
7591
+ /* @__PURE__ */ jsx104(Button, { size: "small", icon: "filter-clear", disabled: true })
7580
7592
  ] })
7581
7593
  ] }) }) }),
7582
- /* @__PURE__ */ jsx100("th", { className: "k-table-th", children: /* @__PURE__ */ jsx100("div", { className: "k-filtercell", children: /* @__PURE__ */ jsxs43("div", { className: "k-filtercell-wrapper", children: [
7583
- /* @__PURE__ */ jsx100(Textbox, { size: "small", showClearButton: false, value: "p" }),
7594
+ /* @__PURE__ */ jsx104("th", { className: "k-table-th", children: /* @__PURE__ */ jsx104("div", { className: "k-filtercell", children: /* @__PURE__ */ jsxs43("div", { className: "k-filtercell-wrapper", children: [
7595
+ /* @__PURE__ */ jsx104(Textbox, { size: "small", showClearButton: false, value: "p" }),
7584
7596
  /* @__PURE__ */ jsxs43("div", { className: "k-filtercell-operator", children: [
7585
- /* @__PURE__ */ jsx100(DropdownList, { size: "small", className: "k-dropdown-operator", arrowIconName: "filter" }),
7597
+ /* @__PURE__ */ jsx104(DropdownList, { size: "small", className: "k-dropdown-operator", arrowIconName: "filter" }),
7586
7598
  " ",
7587
- /* @__PURE__ */ jsx100(Button, { size: "small", icon: "filter-clear" })
7599
+ /* @__PURE__ */ jsx104(Button, { size: "small", icon: "filter-clear" })
7588
7600
  ] })
7589
7601
  ] }) }) }),
7590
- /* @__PURE__ */ jsx100("th", { className: "k-table-th", children: /* @__PURE__ */ jsx100("div", { className: "k-filtercell", children: /* @__PURE__ */ jsxs43("div", { className: "k-filtercell-wrapper", children: [
7591
- /* @__PURE__ */ jsx100(Textbox, { size: "small", showClearButton: false, value: "p" }),
7602
+ /* @__PURE__ */ jsx104("th", { className: "k-table-th", children: /* @__PURE__ */ jsx104("div", { className: "k-filtercell", children: /* @__PURE__ */ jsxs43("div", { className: "k-filtercell-wrapper", children: [
7603
+ /* @__PURE__ */ jsx104(Textbox, { size: "small", showClearButton: false, value: "p" }),
7592
7604
  /* @__PURE__ */ jsxs43("div", { className: "k-filtercell-operator", children: [
7593
- /* @__PURE__ */ jsx100(DropdownList, { size: "small", className: "k-dropdown-operator", arrowIconName: "filter" }),
7605
+ /* @__PURE__ */ jsx104(DropdownList, { size: "small", className: "k-dropdown-operator", arrowIconName: "filter" }),
7594
7606
  " ",
7595
- /* @__PURE__ */ jsx100(Button, { size: "small", icon: "filter-clear" })
7607
+ /* @__PURE__ */ jsx104(Button, { size: "small", icon: "filter-clear" })
7596
7608
  ] })
7597
7609
  ] }) }) }),
7598
- /* @__PURE__ */ jsx100("th", { className: "k-table-th", children: /* @__PURE__ */ jsx100("div", { className: "k-filtercell", children: /* @__PURE__ */ jsxs43("div", { className: "k-filtercell-wrapper", children: [
7599
- /* @__PURE__ */ jsx100(Textbox, { size: "small", showClearButton: false, value: "p" }),
7610
+ /* @__PURE__ */ jsx104("th", { className: "k-table-th", children: /* @__PURE__ */ jsx104("div", { className: "k-filtercell", children: /* @__PURE__ */ jsxs43("div", { className: "k-filtercell-wrapper", children: [
7611
+ /* @__PURE__ */ jsx104(Textbox, { size: "small", showClearButton: false, value: "p" }),
7600
7612
  /* @__PURE__ */ jsxs43("div", { className: "k-filtercell-operator", children: [
7601
- /* @__PURE__ */ jsx100(DropdownList, { size: "small", className: "k-dropdown-operator", arrowIconName: "filter" }),
7613
+ /* @__PURE__ */ jsx104(DropdownList, { size: "small", className: "k-dropdown-operator", arrowIconName: "filter" }),
7602
7614
  " ",
7603
- /* @__PURE__ */ jsx100(Button, { size: "small", icon: "filter-clear" })
7615
+ /* @__PURE__ */ jsx104(Button, { size: "small", icon: "filter-clear" })
7604
7616
  ] })
7605
7617
  ] }) }) }),
7606
- /* @__PURE__ */ jsx100("th", { className: "k-table-th", children: /* @__PURE__ */ jsx100("div", { className: "k-filtercell", children: /* @__PURE__ */ jsx100("div", { className: "k-filtercell-wrapper" }) }) })
7618
+ /* @__PURE__ */ jsx104("th", { className: "k-table-th", children: /* @__PURE__ */ jsx104("div", { className: "k-filtercell", children: /* @__PURE__ */ jsx104("div", { className: "k-filtercell-wrapper" }) }) })
7607
7619
  ] })
7608
7620
  ] })
7609
7621
  ] }) }) }),
7610
- /* @__PURE__ */ jsx100("div", { className: "k-grid-content", children: /* @__PURE__ */ jsxs43("table", { className: "k-table k-table-sm k-grid-table", children: [
7622
+ /* @__PURE__ */ jsx104("div", { className: "k-grid-content", children: /* @__PURE__ */ jsxs43("table", { className: "k-table k-table-sm k-grid-table", children: [
7611
7623
  /* @__PURE__ */ jsxs43("colgroup", { children: [
7612
- /* @__PURE__ */ jsx100("col", { className: "k-hierarchy-col" }),
7613
- /* @__PURE__ */ jsx100("col", {}),
7614
- /* @__PURE__ */ jsx100("col", {}),
7615
- /* @__PURE__ */ jsx100("col", {}),
7616
- /* @__PURE__ */ jsx100("col", {})
7624
+ /* @__PURE__ */ jsx104("col", { className: "k-hierarchy-col" }),
7625
+ /* @__PURE__ */ jsx104("col", {}),
7626
+ /* @__PURE__ */ jsx104("col", {}),
7627
+ /* @__PURE__ */ jsx104("col", {}),
7628
+ /* @__PURE__ */ jsx104("col", {})
7617
7629
  ] }),
7618
7630
  /* @__PURE__ */ jsxs43("tbody", { className: "k-table-tbody", children: [
7619
7631
  /* @__PURE__ */ jsxs43("tr", { className: "k-table-row k-master-row k-expanded", children: [
7620
- /* @__PURE__ */ jsx100("td", { className: "k-table-td k-hierarchy-cell", children: /* @__PURE__ */ jsx100(Icon, { icon: "caret-alt-down" }) }),
7621
- /* @__PURE__ */ jsx100("td", { className: "k-table-td", children: "1" }),
7622
- /* @__PURE__ */ jsx100("td", { className: "k-table-td", children: "Text" }),
7623
- /* @__PURE__ */ jsx100("td", { className: "k-table-td", children: "Text" }),
7624
- /* @__PURE__ */ jsx100("td", { className: "k-table-td", children: "Text" }),
7625
- /* @__PURE__ */ jsx100("td", { className: "k-table-td", children: "Text" })
7632
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td k-hierarchy-cell", children: /* @__PURE__ */ jsx104(Icon, { icon: "caret-alt-down" }) }),
7633
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td", children: "1" }),
7634
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td", children: "Text" }),
7635
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td", children: "Text" }),
7636
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td", children: "Text" }),
7637
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td", children: "Text" })
7626
7638
  ] }),
7627
7639
  /* @__PURE__ */ jsxs43("tr", { className: "k-table-row k-detail-row", children: [
7628
- /* @__PURE__ */ jsx100("td", { className: "k-table-td k-hierarchy-cell" }),
7629
- /* @__PURE__ */ jsx100("td", { className: "k-table-td k-detail-cell", colSpan: 5, children: /* @__PURE__ */ jsx100("div", { style: { background: "#ccc", padding: "10px" }, children: "Nested content" }) })
7640
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td k-hierarchy-cell" }),
7641
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td k-detail-cell", colSpan: 5, children: /* @__PURE__ */ jsx104("div", { style: { background: "#ccc", padding: "10px" }, children: "Nested content" }) })
7630
7642
  ] }),
7631
7643
  /* @__PURE__ */ jsxs43("tr", { className: "k-table-row k-table-alt-row k-alt k-master-row", children: [
7632
- /* @__PURE__ */ jsx100("td", { className: "k-table-td k-hierarchy-cell", children: /* @__PURE__ */ jsx100(Icon, { icon: "caret-alt-right" }) }),
7633
- /* @__PURE__ */ jsx100("td", { className: "k-table-td", children: "2" }),
7634
- /* @__PURE__ */ jsx100("td", { className: "k-table-td", children: "Text" }),
7635
- /* @__PURE__ */ jsx100("td", { className: "k-table-td", children: "Text" }),
7636
- /* @__PURE__ */ jsx100("td", { className: "k-table-td", children: "Text" }),
7637
- /* @__PURE__ */ jsx100("td", { className: "k-table-td", children: "Text" })
7644
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td k-hierarchy-cell", children: /* @__PURE__ */ jsx104(Icon, { icon: "caret-alt-right" }) }),
7645
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td", children: "2" }),
7646
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td", children: "Text" }),
7647
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td", children: "Text" }),
7648
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td", children: "Text" }),
7649
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td", children: "Text" })
7638
7650
  ] })
7639
7651
  ] })
7640
7652
  ] }) })
7641
7653
  ] }) }),
7642
- /* @__PURE__ */ jsx100("span", { children: "Editing" }),
7643
- /* @__PURE__ */ jsx100("section", { className: "col-2", children: /* @__PURE__ */ jsxs43("div", { className: "k-grid k-grid-sm k-grid-no-scrollbar", children: [
7644
- /* @__PURE__ */ jsx100(Toolbar, { className: "k-grid-toolbar", size: "small", children: /* @__PURE__ */ jsx100(Button, { icon: "plus", size: "small", children: "Add new record" }) }),
7645
- /* @__PURE__ */ jsx100("div", { className: "k-grid-header", children: /* @__PURE__ */ jsx100("div", { className: "k-grid-header-wrap", children: /* @__PURE__ */ jsxs43("table", { className: "k-table k-table-sm k-grid-header-table", children: [
7654
+ /* @__PURE__ */ jsx104("span", { children: "Editing" }),
7655
+ /* @__PURE__ */ jsx104("section", { className: "col-2", children: /* @__PURE__ */ jsxs43("div", { className: "k-grid k-grid-sm k-grid-no-scrollbar", children: [
7656
+ /* @__PURE__ */ jsx104(Toolbar, { className: "k-grid-toolbar", size: "small", children: /* @__PURE__ */ jsx104(Button, { icon: "plus", size: "small", children: "Add new record" }) }),
7657
+ /* @__PURE__ */ jsx104("div", { className: "k-grid-header", children: /* @__PURE__ */ jsx104("div", { className: "k-grid-header-wrap", children: /* @__PURE__ */ jsxs43("table", { className: "k-table k-table-sm k-grid-header-table", children: [
7646
7658
  /* @__PURE__ */ jsxs43("colgroup", { children: [
7647
- /* @__PURE__ */ jsx100("col", {}),
7648
- /* @__PURE__ */ jsx100("col", {}),
7649
- /* @__PURE__ */ jsx100("col", {}),
7650
- /* @__PURE__ */ jsx100("col", { style: { width: "300px" } })
7659
+ /* @__PURE__ */ jsx104("col", {}),
7660
+ /* @__PURE__ */ jsx104("col", {}),
7661
+ /* @__PURE__ */ jsx104("col", {}),
7662
+ /* @__PURE__ */ jsx104("col", { style: { width: "300px" } })
7651
7663
  ] }),
7652
- /* @__PURE__ */ jsx100("thead", { className: "k-table-thead", children: /* @__PURE__ */ jsxs43("tr", { className: "k-table-row", children: [
7653
- /* @__PURE__ */ jsx100("th", { scope: "col", className: "k-table-th k-header", children: /* @__PURE__ */ jsx100("span", { className: "k-cell-inner", children: /* @__PURE__ */ jsx100("span", { className: "k-link", children: /* @__PURE__ */ jsx100("span", { className: "k-column-title", children: "Name" }) }) }) }),
7654
- /* @__PURE__ */ jsx100("th", { scope: "col", className: "k-table-th k-header", children: /* @__PURE__ */ jsx100("span", { className: "k-cell-inner", children: /* @__PURE__ */ jsx100("span", { className: "k-link", children: /* @__PURE__ */ jsx100("span", { className: "k-column-title", children: "Price" }) }) }) }),
7655
- /* @__PURE__ */ jsx100("th", { scope: "col", className: "k-table-th k-header", children: /* @__PURE__ */ jsx100("span", { className: "k-cell-inner", children: /* @__PURE__ */ jsx100("span", { className: "k-link", children: /* @__PURE__ */ jsx100("span", { className: "k-column-title", children: "Available" }) }) }) }),
7656
- /* @__PURE__ */ jsx100("th", { scope: "col", className: "k-table-th k-header", children: "\xA0" })
7664
+ /* @__PURE__ */ jsx104("thead", { className: "k-table-thead", children: /* @__PURE__ */ jsxs43("tr", { className: "k-table-row", children: [
7665
+ /* @__PURE__ */ jsx104("th", { scope: "col", className: "k-table-th k-header", children: /* @__PURE__ */ jsx104("span", { className: "k-cell-inner", children: /* @__PURE__ */ jsx104("span", { className: "k-link", children: /* @__PURE__ */ jsx104("span", { className: "k-column-title", children: "Name" }) }) }) }),
7666
+ /* @__PURE__ */ jsx104("th", { scope: "col", className: "k-table-th k-header", children: /* @__PURE__ */ jsx104("span", { className: "k-cell-inner", children: /* @__PURE__ */ jsx104("span", { className: "k-link", children: /* @__PURE__ */ jsx104("span", { className: "k-column-title", children: "Price" }) }) }) }),
7667
+ /* @__PURE__ */ jsx104("th", { scope: "col", className: "k-table-th k-header", children: /* @__PURE__ */ jsx104("span", { className: "k-cell-inner", children: /* @__PURE__ */ jsx104("span", { className: "k-link", children: /* @__PURE__ */ jsx104("span", { className: "k-column-title", children: "Available" }) }) }) }),
7668
+ /* @__PURE__ */ jsx104("th", { scope: "col", className: "k-table-th k-header", children: "\xA0" })
7657
7669
  ] }) })
7658
7670
  ] }) }) }),
7659
- /* @__PURE__ */ jsx100("div", { className: "k-grid-content", children: /* @__PURE__ */ jsxs43("table", { className: "k-table k-table-sm k-grid-table", style: { height: "auto" }, children: [
7671
+ /* @__PURE__ */ jsx104("div", { className: "k-grid-content", children: /* @__PURE__ */ jsxs43("table", { className: "k-table k-table-sm k-grid-table", style: { height: "auto" }, children: [
7660
7672
  /* @__PURE__ */ jsxs43("colgroup", { children: [
7661
- /* @__PURE__ */ jsx100("col", {}),
7662
- /* @__PURE__ */ jsx100("col", {}),
7663
- /* @__PURE__ */ jsx100("col", {}),
7664
- /* @__PURE__ */ jsx100("col", { style: { width: "300px" } })
7673
+ /* @__PURE__ */ jsx104("col", {}),
7674
+ /* @__PURE__ */ jsx104("col", {}),
7675
+ /* @__PURE__ */ jsx104("col", {}),
7676
+ /* @__PURE__ */ jsx104("col", { style: { width: "300px" } })
7665
7677
  ] }),
7666
7678
  /* @__PURE__ */ jsxs43("tbody", { className: "k-table-tbody", children: [
7667
7679
  /* @__PURE__ */ jsxs43("tr", { className: "k-table-row k-grid-edit-row", children: [
7668
- /* @__PURE__ */ jsx100("td", { className: "k-table-td", children: /* @__PURE__ */ jsx100(Textbox, { value: "Towel", required: true, size: "small" }) }),
7680
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td", children: /* @__PURE__ */ jsx104(Textbox, { value: "Towel", required: true, size: "small" }) }),
7669
7681
  /* @__PURE__ */ jsxs43("td", { className: "k-table-td", children: [
7670
- /* @__PURE__ */ jsx100(NumericTextbox, { invalid: true, size: "small" }),
7682
+ /* @__PURE__ */ jsx104(NumericTextbox, { invalid: true, size: "small" }),
7671
7683
  /* @__PURE__ */ jsxs43("div", { className: "k-tooltip k-validator-tooltip k-tooltip-error k-invalid-msg", children: [
7672
- /* @__PURE__ */ jsx100(Icon, { className: "k-tooltip-icon", icon: "exclamation-circle" }),
7673
- /* @__PURE__ */ jsx100("span", { className: "k-tooltip-content", children: "Price" }),
7674
- /* @__PURE__ */ jsx100("div", { className: "k-callout k-callout-n" })
7684
+ /* @__PURE__ */ jsx104(Icon, { className: "k-tooltip-icon", icon: "exclamation-circle" }),
7685
+ /* @__PURE__ */ jsx104("span", { className: "k-tooltip-content", children: "Price" }),
7686
+ /* @__PURE__ */ jsx104("div", { className: "k-callout k-callout-n" })
7675
7687
  ] })
7676
7688
  ] }),
7677
7689
  /* @__PURE__ */ jsxs43("td", { className: "k-table-td", children: [
7678
- /* @__PURE__ */ jsx100(Checkbox, { id: "e77452cd-b3b5-4dc9-8210-17007584b695" }),
7679
- /* @__PURE__ */ jsx100("label", { className: "k-checkbox-label", htmlFor: "e77452cd-b3b5-4dc9-8210-17007584b695" })
7690
+ /* @__PURE__ */ jsx104(Checkbox, { id: "e77452cd-b3b5-4dc9-8210-17007584b695" }),
7691
+ /* @__PURE__ */ jsx104("label", { className: "k-checkbox-label", htmlFor: "e77452cd-b3b5-4dc9-8210-17007584b695" })
7680
7692
  ] }),
7681
7693
  /* @__PURE__ */ jsxs43("td", { className: "k-table-td k-command-cell", children: [
7682
- /* @__PURE__ */ jsx100(Button, { size: "small", icon: "check", themeColor: "primary", children: "Update" }),
7683
- /* @__PURE__ */ jsx100(Button, { size: "small", icon: "cancel", children: "Cancel" })
7694
+ /* @__PURE__ */ jsx104(Button, { size: "small", icon: "check", themeColor: "primary", children: "Update" }),
7695
+ /* @__PURE__ */ jsx104(Button, { size: "small", icon: "cancel", children: "Cancel" })
7684
7696
  ] })
7685
7697
  ] }),
7686
7698
  /* @__PURE__ */ jsxs43("tr", { className: "k-table-row k-table-alt-row k-alt k-grid-edit-row", children: [
7687
7699
  /* @__PURE__ */ jsxs43("td", { className: "k-table-td k-dirty-cell", children: [
7688
- /* @__PURE__ */ jsx100("span", { className: "k-dirty" }),
7700
+ /* @__PURE__ */ jsx104("span", { className: "k-dirty" }),
7689
7701
  "LongSingleWordTestLongSingleWordTestLongSingleWordTestLongSingleWordTest"
7690
7702
  ] }),
7691
- /* @__PURE__ */ jsx100("td", { className: "k-table-td", children: "18" }),
7692
- /* @__PURE__ */ jsx100("td", { className: "k-table-td", children: "false" }),
7703
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td", children: "18" }),
7704
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td", children: "false" }),
7693
7705
  /* @__PURE__ */ jsxs43("td", { className: "k-table-td k-command-cell", children: [
7694
- /* @__PURE__ */ jsx100(Button, { size: "small", icon: "pencil", children: "Edit" }),
7695
- /* @__PURE__ */ jsx100(Button, { size: "small", icon: "x", children: "Delete" })
7706
+ /* @__PURE__ */ jsx104(Button, { size: "small", icon: "pencil", children: "Edit" }),
7707
+ /* @__PURE__ */ jsx104(Button, { size: "small", icon: "x", children: "Delete" })
7696
7708
  ] })
7697
7709
  ] }),
7698
7710
  /* @__PURE__ */ jsxs43("tr", { className: "k-table-row", children: [
7699
- /* @__PURE__ */ jsx100("td", { className: "k-table-td", children: "Chang" }),
7700
- /* @__PURE__ */ jsx100("td", { className: "k-table-td", children: "19" }),
7701
- /* @__PURE__ */ jsx100("td", { className: "k-table-td", children: "false" }),
7711
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td", children: "Chang" }),
7712
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td", children: "19" }),
7713
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td", children: "false" }),
7702
7714
  /* @__PURE__ */ jsxs43("td", { className: "k-table-td k-command-cell", children: [
7703
- /* @__PURE__ */ jsx100(Button, { size: "small", icon: "pencil", children: "Edit" }),
7704
- /* @__PURE__ */ jsx100(Button, { size: "small", icon: "x", children: "Delete" })
7715
+ /* @__PURE__ */ jsx104(Button, { size: "small", icon: "pencil", children: "Edit" }),
7716
+ /* @__PURE__ */ jsx104(Button, { size: "small", icon: "x", children: "Delete" })
7705
7717
  ] })
7706
7718
  ] })
7707
7719
  ] })
7708
7720
  ] }) })
7709
7721
  ] }) }),
7710
- /* @__PURE__ */ jsx100("span", { children: "Grouping" }),
7711
- /* @__PURE__ */ jsx100("section", { className: "col-2", children: /* @__PURE__ */ jsxs43("div", { className: "k-grid k-grid-sm k-grid-no-scrollbar", children: [
7722
+ /* @__PURE__ */ jsx104("span", { children: "Grouping" }),
7723
+ /* @__PURE__ */ jsx104("section", { className: "col-2", children: /* @__PURE__ */ jsxs43("div", { className: "k-grid k-grid-sm k-grid-no-scrollbar", children: [
7712
7724
  /* @__PURE__ */ jsxs43("div", { className: "k-grouping-header", children: [
7713
- /* @__PURE__ */ jsx100("div", { className: "k-grouping-dropclue" }),
7725
+ /* @__PURE__ */ jsx104("div", { className: "k-grouping-dropclue" }),
7714
7726
  /* @__PURE__ */ jsxs43(ChipList, { size: "small", children: [
7715
- /* @__PURE__ */ jsx100(Chip, { size: "small", icon: "sort-asc-small", actions: /* @__PURE__ */ jsx100(ChipAction, { type: "remove" }), children: "Price" }),
7716
- /* @__PURE__ */ jsx100(Chip, { size: "small", icon: "sort-desc-small", actions: /* @__PURE__ */ jsx100(ChipAction, { type: "remove" }), children: "Name" })
7727
+ /* @__PURE__ */ jsx104(Chip, { size: "small", icon: "sort-asc-small", actions: /* @__PURE__ */ jsx104(ChipAction, { type: "remove" }), children: "Price" }),
7728
+ /* @__PURE__ */ jsx104(Chip, { size: "small", icon: "sort-desc-small", actions: /* @__PURE__ */ jsx104(ChipAction, { type: "remove" }), children: "Name" })
7717
7729
  ] }),
7718
- /* @__PURE__ */ jsx100("div", { className: "k-grouping-drop-container" })
7730
+ /* @__PURE__ */ jsx104("div", { className: "k-grouping-drop-container" })
7719
7731
  ] }),
7720
- /* @__PURE__ */ jsx100("div", { className: "k-grid-header", children: /* @__PURE__ */ jsx100("div", { className: "k-grid-header-wrap", children: /* @__PURE__ */ jsxs43("table", { className: "k-table k-table-sm k-grid-header-table", children: [
7732
+ /* @__PURE__ */ jsx104("div", { className: "k-grid-header", children: /* @__PURE__ */ jsx104("div", { className: "k-grid-header-wrap", children: /* @__PURE__ */ jsxs43("table", { className: "k-table k-table-sm k-grid-header-table", children: [
7721
7733
  /* @__PURE__ */ jsxs43("colgroup", { children: [
7722
- /* @__PURE__ */ jsx100("col", { className: "k-group-col" }),
7723
- /* @__PURE__ */ jsx100("col", {}),
7724
- /* @__PURE__ */ jsx100("col", {}),
7725
- /* @__PURE__ */ jsx100("col", {}),
7726
- /* @__PURE__ */ jsx100("col", {})
7734
+ /* @__PURE__ */ jsx104("col", { className: "k-group-col" }),
7735
+ /* @__PURE__ */ jsx104("col", {}),
7736
+ /* @__PURE__ */ jsx104("col", {}),
7737
+ /* @__PURE__ */ jsx104("col", {}),
7738
+ /* @__PURE__ */ jsx104("col", {})
7727
7739
  ] }),
7728
- /* @__PURE__ */ jsx100("thead", { className: "k-table-thead", children: /* @__PURE__ */ jsxs43("tr", { className: "k-table-row", children: [
7729
- /* @__PURE__ */ jsx100("th", { className: "k-table-th k-group-cell k-header", scope: "col" }),
7730
- /* @__PURE__ */ jsx100("th", { className: "k-table-th k-header", children: /* @__PURE__ */ jsx100("span", { className: "k-cell-inner", children: /* @__PURE__ */ jsx100("span", { className: "k-link", children: /* @__PURE__ */ jsx100("span", { className: "k-column-title", children: "Name" }) }) }) }),
7731
- /* @__PURE__ */ jsx100("th", { className: "k-table-th k-header", children: /* @__PURE__ */ jsx100("span", { className: "k-cell-inner", children: /* @__PURE__ */ jsx100("span", { className: "k-link", children: /* @__PURE__ */ jsx100("span", { className: "k-column-title", children: "Price" }) }) }) }),
7732
- /* @__PURE__ */ jsx100("th", { className: "k-table-th k-header", children: /* @__PURE__ */ jsx100("span", { className: "k-cell-inner", children: /* @__PURE__ */ jsx100("span", { className: "k-link", children: /* @__PURE__ */ jsx100("span", { className: "k-column-title", children: "Available" }) }) }) }),
7733
- /* @__PURE__ */ jsx100("th", { className: "k-table-th k-header", children: /* @__PURE__ */ jsx100("span", { className: "k-cell-inner", children: /* @__PURE__ */ jsx100("span", { className: "k-link", children: /* @__PURE__ */ jsx100("span", { className: "k-column-title", children: "Units" }) }) }) })
7740
+ /* @__PURE__ */ jsx104("thead", { className: "k-table-thead", children: /* @__PURE__ */ jsxs43("tr", { className: "k-table-row", children: [
7741
+ /* @__PURE__ */ jsx104("th", { className: "k-table-th k-group-cell k-header", scope: "col" }),
7742
+ /* @__PURE__ */ jsx104("th", { className: "k-table-th k-header", children: /* @__PURE__ */ jsx104("span", { className: "k-cell-inner", children: /* @__PURE__ */ jsx104("span", { className: "k-link", children: /* @__PURE__ */ jsx104("span", { className: "k-column-title", children: "Name" }) }) }) }),
7743
+ /* @__PURE__ */ jsx104("th", { className: "k-table-th k-header", children: /* @__PURE__ */ jsx104("span", { className: "k-cell-inner", children: /* @__PURE__ */ jsx104("span", { className: "k-link", children: /* @__PURE__ */ jsx104("span", { className: "k-column-title", children: "Price" }) }) }) }),
7744
+ /* @__PURE__ */ jsx104("th", { className: "k-table-th k-header", children: /* @__PURE__ */ jsx104("span", { className: "k-cell-inner", children: /* @__PURE__ */ jsx104("span", { className: "k-link", children: /* @__PURE__ */ jsx104("span", { className: "k-column-title", children: "Available" }) }) }) }),
7745
+ /* @__PURE__ */ jsx104("th", { className: "k-table-th k-header", children: /* @__PURE__ */ jsx104("span", { className: "k-cell-inner", children: /* @__PURE__ */ jsx104("span", { className: "k-link", children: /* @__PURE__ */ jsx104("span", { className: "k-column-title", children: "Units" }) }) }) })
7734
7746
  ] }) })
7735
7747
  ] }) }) }),
7736
- /* @__PURE__ */ jsx100("div", { className: "k-grid-content", children: /* @__PURE__ */ jsxs43("table", { className: "k-table k-table-sm k-grid-table", style: { height: "auto" }, children: [
7748
+ /* @__PURE__ */ jsx104("div", { className: "k-grid-content", children: /* @__PURE__ */ jsxs43("table", { className: "k-table k-table-sm k-grid-table", style: { height: "auto" }, children: [
7737
7749
  /* @__PURE__ */ jsxs43("colgroup", { children: [
7738
- /* @__PURE__ */ jsx100("col", { className: "k-group-col" }),
7739
- /* @__PURE__ */ jsx100("col", {}),
7740
- /* @__PURE__ */ jsx100("col", {}),
7741
- /* @__PURE__ */ jsx100("col", {}),
7742
- /* @__PURE__ */ jsx100("col", {})
7750
+ /* @__PURE__ */ jsx104("col", { className: "k-group-col" }),
7751
+ /* @__PURE__ */ jsx104("col", {}),
7752
+ /* @__PURE__ */ jsx104("col", {}),
7753
+ /* @__PURE__ */ jsx104("col", {}),
7754
+ /* @__PURE__ */ jsx104("col", {})
7743
7755
  ] }),
7744
7756
  /* @__PURE__ */ jsxs43("tbody", { className: "k-table-tbody", children: [
7745
- /* @__PURE__ */ jsx100("tr", { className: "k-table-row k-table-group-row k-grouping-row", children: /* @__PURE__ */ jsx100("td", { className: "k-table-td", colSpan: 5, children: /* @__PURE__ */ jsxs43("p", { className: "k-reset", children: [
7746
- /* @__PURE__ */ jsx100(Icon, { icon: "caret-alt-right" }),
7757
+ /* @__PURE__ */ jsx104("tr", { className: "k-table-row k-table-group-row k-grouping-row", children: /* @__PURE__ */ jsx104("td", { className: "k-table-td", colSpan: 5, children: /* @__PURE__ */ jsxs43("p", { className: "k-reset", children: [
7758
+ /* @__PURE__ */ jsx104(Icon, { icon: "caret-alt-right" }),
7747
7759
  "Price: 19"
7748
7760
  ] }) }) }),
7749
- /* @__PURE__ */ jsx100("tr", { className: "k-table-row k-table-group-row k-grouping-row", children: /* @__PURE__ */ jsx100("td", { className: "k-table-td", colSpan: 5, children: /* @__PURE__ */ jsxs43("p", { className: "k-reset", children: [
7750
- /* @__PURE__ */ jsx100(Icon, { icon: "caret-alt-down" }),
7761
+ /* @__PURE__ */ jsx104("tr", { className: "k-table-row k-table-group-row k-grouping-row", children: /* @__PURE__ */ jsx104("td", { className: "k-table-td", colSpan: 5, children: /* @__PURE__ */ jsxs43("p", { className: "k-reset", children: [
7762
+ /* @__PURE__ */ jsx104(Icon, { icon: "caret-alt-down" }),
7751
7763
  "Price: 30"
7752
7764
  ] }) }) }),
7753
7765
  /* @__PURE__ */ jsxs43("tr", { className: "k-table-row", children: [
7754
- /* @__PURE__ */ jsx100("td", { className: "k-table-td k-table-group-td k-group-cell", children: "\xA0" }),
7755
- /* @__PURE__ */ jsx100("td", { className: "k-table-td", children: "Chai" }),
7756
- /* @__PURE__ */ jsx100("td", { className: "k-table-td", children: "30" }),
7757
- /* @__PURE__ */ jsx100("td", { className: "k-table-td", children: "false" }),
7758
- /* @__PURE__ */ jsx100("td", { className: "k-table-td", children: "15" })
7766
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td k-table-group-td k-group-cell", children: "\xA0" }),
7767
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td", children: "Chai" }),
7768
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td", children: "30" }),
7769
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td", children: "false" }),
7770
+ /* @__PURE__ */ jsx104("td", { className: "k-table-td", children: "15" })
7759
7771
  ] })
7760
7772
  ] })
7761
7773
  ] }) })