@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
@@ -5793,8 +5793,20 @@ Pager.options = options22;
5793
5793
  Pager.className = PAGER_CLASSNAME;
5794
5794
  Pager.defaultProps = defaultProps20;
5795
5795
 
5796
- // src/button-group/button-group.spec.tsx
5796
+ // src/pager/templates/pager-normal.tsx
5797
5797
  var import_jsx_runtime52 = require("react/jsx-runtime");
5798
+
5799
+ // src/pager/templates/pager-input.tsx
5800
+ var import_jsx_runtime53 = require("react/jsx-runtime");
5801
+
5802
+ // src/pager/templates/pager-adaptive.tsx
5803
+ var import_jsx_runtime54 = require("react/jsx-runtime");
5804
+
5805
+ // src/pager/templates/pager-adaptive-input.tsx
5806
+ var import_jsx_runtime55 = require("react/jsx-runtime");
5807
+
5808
+ // src/button-group/button-group.spec.tsx
5809
+ var import_jsx_runtime56 = require("react/jsx-runtime");
5798
5810
  var BUTTONGROUP_CLASSNAME = `k-button-group`;
5799
5811
  var states24 = [
5800
5812
  States.disabled
@@ -5812,7 +5824,7 @@ var ButtonGroup = (props) => {
5812
5824
  stretched,
5813
5825
  ...other
5814
5826
  } = props;
5815
- return /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
5827
+ return /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
5816
5828
  "div",
5817
5829
  {
5818
5830
  ...other,
@@ -5839,19 +5851,19 @@ ButtonGroup.className = BUTTONGROUP_CLASSNAME;
5839
5851
  ButtonGroup.defaultProps = defaultProps21;
5840
5852
 
5841
5853
  // src/button-group/templates/icon-button-group.tsx
5842
- var import_jsx_runtime53 = require("react/jsx-runtime");
5854
+ var import_jsx_runtime57 = require("react/jsx-runtime");
5843
5855
 
5844
5856
  // src/button-group/templates/icon-text-button-group.tsx
5845
- var import_jsx_runtime54 = require("react/jsx-runtime");
5857
+ var import_jsx_runtime58 = require("react/jsx-runtime");
5846
5858
 
5847
5859
  // src/button-group/templates/text-button-group.tsx
5848
- var import_jsx_runtime55 = require("react/jsx-runtime");
5860
+ var import_jsx_runtime59 = require("react/jsx-runtime");
5849
5861
 
5850
5862
  // src/button-group/templates/mixed-button-group.tsx
5851
- var import_jsx_runtime56 = require("react/jsx-runtime");
5863
+ var import_jsx_runtime60 = require("react/jsx-runtime");
5852
5864
 
5853
5865
  // src/color-preview/color-preview.tsx
5854
- var import_jsx_runtime57 = require("react/jsx-runtime");
5866
+ var import_jsx_runtime61 = require("react/jsx-runtime");
5855
5867
  var COLORPREVIEW_CLASSNAME = `k-color-preview`;
5856
5868
  var states25 = [];
5857
5869
  var options24 = {};
@@ -5861,7 +5873,7 @@ var ColorPreview = (props) => {
5861
5873
  iconName,
5862
5874
  ...other
5863
5875
  } = props;
5864
- return /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)(
5876
+ return /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)(
5865
5877
  "span",
5866
5878
  {
5867
5879
  ...other,
@@ -5874,8 +5886,8 @@ var ColorPreview = (props) => {
5874
5886
  }
5875
5887
  ),
5876
5888
  children: [
5877
- iconName && /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(Icon, { icon: iconName, className: "k-color-preview-icon" }),
5878
- /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
5889
+ iconName && /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(Icon, { icon: iconName, className: "k-color-preview-icon" }),
5890
+ /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
5879
5891
  "span",
5880
5892
  {
5881
5893
  className: "k-color-preview-mask",
@@ -5891,7 +5903,7 @@ ColorPreview.options = options24;
5891
5903
  ColorPreview.className = COLORPREVIEW_CLASSNAME;
5892
5904
 
5893
5905
  // src/colorpicker/colorpicker.spec.tsx
5894
- var import_jsx_runtime58 = require("react/jsx-runtime");
5906
+ var import_jsx_runtime62 = require("react/jsx-runtime");
5895
5907
  var COLORPICKER_CLASSNAME = `k-colorpicker`;
5896
5908
  var states26 = [
5897
5909
  States.hover,
@@ -5931,7 +5943,7 @@ var ColorPicker = (props) => {
5931
5943
  arrowIconName = defaultProps22.arrowIconName,
5932
5944
  ...other
5933
5945
  } = props;
5934
- return /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)(
5946
+ return /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)(
5935
5947
  Picker,
5936
5948
  {
5937
5949
  ...other,
@@ -5950,14 +5962,14 @@ var ColorPicker = (props) => {
5950
5962
  "k-icon-picker"
5951
5963
  ),
5952
5964
  children: [
5953
- /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(InputPrefix, { children: prefix }),
5954
- /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
5965
+ /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(InputPrefix, { children: prefix }),
5966
+ /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
5955
5967
  InputInnerSpan,
5956
5968
  {
5957
5969
  placeholder,
5958
5970
  value,
5959
5971
  showValue: false,
5960
- valueIcon: /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
5972
+ valueIcon: /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
5961
5973
  ColorPreview,
5962
5974
  {
5963
5975
  className: "k-value-icon",
@@ -5968,8 +5980,8 @@ var ColorPicker = (props) => {
5968
5980
  valueIconName
5969
5981
  }
5970
5982
  ),
5971
- /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(InputSuffix, { children: suffix }),
5972
- /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
5983
+ /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(InputSuffix, { children: suffix }),
5984
+ /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
5973
5985
  Button,
5974
5986
  {
5975
5987
  className: "k-input-button",
@@ -5989,7 +6001,7 @@ ColorPicker.className = COLORPICKER_CLASSNAME;
5989
6001
  ColorPicker.defaultProps = defaultProps22;
5990
6002
 
5991
6003
  // src/action-sheet/action-sheet.spec.tsx
5992
- var import_jsx_runtime59 = require("react/jsx-runtime");
6004
+ var import_jsx_runtime63 = require("react/jsx-runtime");
5993
6005
  var ACTIONSHEET_CLASSNAME = `k-actionsheet`;
5994
6006
  var states27 = [];
5995
6007
  var options26 = {};
@@ -6012,8 +6024,8 @@ var ActionSheet = (props) => {
6012
6024
  overlay = defaultProps23.overlay,
6013
6025
  ...other
6014
6026
  } = props;
6015
- const _ActionSheetHeader = title ? /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(ActionSheetHeader, { title }) : header ? header : Array.isArray(children) && children.find((child) => child.type === ActionSheetHeader);
6016
- const _ActionSheetFooter = actions ? /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(ActionSheetFooter, { className: "k-actions", actions }) : footer ? typeof footer === "string" ? /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(ActionSheetFooter, { children: footer }) : footer : Array.isArray(children) && children.find((child) => child.type === ActionSheetFooter);
6027
+ const _ActionSheetHeader = title ? /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(ActionSheetHeader, { title }) : header ? header : Array.isArray(children) && children.find((child) => child.type === ActionSheetHeader);
6028
+ const _ActionSheetFooter = actions ? /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(ActionSheetFooter, { className: "k-actions", actions }) : footer ? typeof footer === "string" ? /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(ActionSheetFooter, { children: footer }) : footer : Array.isArray(children) && children.find((child) => child.type === ActionSheetFooter);
6017
6029
  const _ActionSheetContent = Array.isArray(children) ? children.filter((child) => {
6018
6030
  switch (child.type) {
6019
6031
  case ActionSheetHeader:
@@ -6023,10 +6035,10 @@ var ActionSheet = (props) => {
6023
6035
  return true;
6024
6036
  }
6025
6037
  return true;
6026
- }) : children.type === ActionSheetItems ? children : /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(import_jsx_runtime59.Fragment, {});
6027
- return /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)("div", { className: "k-actionsheet-container", children: [
6028
- overlay && /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("div", { className: "k-overlay" }),
6029
- /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
6038
+ }) : children.type === ActionSheetItems ? children : /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_jsx_runtime63.Fragment, {});
6039
+ return /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: "k-actionsheet-container", children: [
6040
+ overlay && /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("div", { className: "k-overlay" }),
6041
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
6030
6042
  AnimationContainer,
6031
6043
  {
6032
6044
  animationStyle: {
@@ -6036,7 +6048,7 @@ var ActionSheet = (props) => {
6036
6048
  [`${side === "top" || side === "bottom" ? "width" : null}`]: "100%",
6037
6049
  [`${side === "left" || side === "right" ? "height" : null}`]: "100%"
6038
6050
  },
6039
- children: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
6051
+ children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
6040
6052
  "div",
6041
6053
  {
6042
6054
  ...other,
@@ -6049,9 +6061,9 @@ var ActionSheet = (props) => {
6049
6061
  "k-adaptive-actionsheet": adaptive
6050
6062
  }
6051
6063
  ),
6052
- children: /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)(import_jsx_runtime59.Fragment, { children: [
6064
+ children: /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)(import_jsx_runtime63.Fragment, { children: [
6053
6065
  _ActionSheetHeader,
6054
- /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("div", { className: classNames(
6066
+ /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("div", { className: classNames(
6055
6067
  "k-actionsheet-content",
6056
6068
  {
6057
6069
  "!k-overflow-hidden": adaptive
@@ -6071,7 +6083,7 @@ ActionSheet.className = ACTIONSHEET_CLASSNAME;
6071
6083
  ActionSheet.defaultProps = defaultProps23;
6072
6084
 
6073
6085
  // src/action-sheet/actionsheet-header.tsx
6074
- var import_jsx_runtime60 = require("react/jsx-runtime");
6086
+ var import_jsx_runtime64 = require("react/jsx-runtime");
6075
6087
  var ACTIONSHEETHEADER_CLASSNAME = `k-actionsheet-titlebar`;
6076
6088
  var ActionSheetHeader = (props) => {
6077
6089
  const {
@@ -6081,7 +6093,7 @@ var ActionSheetHeader = (props) => {
6081
6093
  filter,
6082
6094
  ...other
6083
6095
  } = props;
6084
- return /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
6096
+ return /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
6085
6097
  "div",
6086
6098
  {
6087
6099
  ...other,
@@ -6089,23 +6101,23 @@ var ActionSheetHeader = (props) => {
6089
6101
  props.className,
6090
6102
  ACTIONSHEETHEADER_CLASSNAME
6091
6103
  ),
6092
- children: /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)(import_jsx_runtime60.Fragment, { children: [
6093
- /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)("div", { className: "k-actionsheet-titlebar-group k-hbox", children: [
6094
- !props.children && (title || subTitle) && /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(import_jsx_runtime60.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)("div", { className: "k-actionsheet-title", children: [
6095
- title !== "" && /* @__PURE__ */ (0, import_jsx_runtime60.jsx)("div", { className: "k-text-center", children: title }),
6096
- subTitle !== "" && /* @__PURE__ */ (0, import_jsx_runtime60.jsx)("div", { className: "k-actionsheet-subtitle k-text-center", children: subTitle })
6104
+ children: /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)(import_jsx_runtime64.Fragment, { children: [
6105
+ /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("div", { className: "k-actionsheet-titlebar-group k-hbox", children: [
6106
+ !props.children && (title || subTitle) && /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(import_jsx_runtime64.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)("div", { className: "k-actionsheet-title", children: [
6107
+ title !== "" && /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("div", { className: "k-text-center", children: title }),
6108
+ subTitle !== "" && /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("div", { className: "k-actionsheet-subtitle k-text-center", children: subTitle })
6097
6109
  ] }) }),
6098
- props.children && /* @__PURE__ */ (0, import_jsx_runtime60.jsx)("div", { className: "k-actionsheet-title", children: props.children }),
6099
- actions && /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(import_jsx_runtime60.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime60.jsx)("div", { className: "k-actionsheet-actions", children: actions.map((actionName) => /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(Button, { icon: actionName, size: "large", fillMode: "flat" }, actionName)) }) })
6110
+ props.children && /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("div", { className: "k-actionsheet-title", children: props.children }),
6111
+ actions && /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(import_jsx_runtime64.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("div", { className: "k-actionsheet-actions", children: actions.map((actionName) => /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(Button, { icon: actionName, size: "large", fillMode: "flat" }, actionName)) }) })
6100
6112
  ] }),
6101
- filter && /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(import_jsx_runtime60.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime60.jsx)("div", { className: "k-actionsheet-titlebar-group k-actionsheet-filter", children: /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(Searchbox, { placeholder: "Filter", size: "large" }) }) })
6113
+ filter && /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(import_jsx_runtime64.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("div", { className: "k-actionsheet-titlebar-group k-actionsheet-filter", children: /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(Searchbox, { placeholder: "Filter", size: "large" }) }) })
6102
6114
  ] })
6103
6115
  }
6104
6116
  );
6105
6117
  };
6106
6118
 
6107
6119
  // src/action-buttons/action-buttons.spec.tsx
6108
- var import_jsx_runtime61 = require("react/jsx-runtime");
6120
+ var import_jsx_runtime65 = require("react/jsx-runtime");
6109
6121
  var ACTIONBUTTONS_CLASSNAME = `k-actions`;
6110
6122
  var states28 = [];
6111
6123
  var options27 = {};
@@ -6119,7 +6131,7 @@ var ActionButtons = (props) => {
6119
6131
  orientation = defaultProps24.orientation,
6120
6132
  ...other
6121
6133
  } = props;
6122
- return /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
6134
+ return /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
6123
6135
  "div",
6124
6136
  {
6125
6137
  ...other,
@@ -6142,14 +6154,14 @@ ActionButtons.defaultProps = defaultProps24;
6142
6154
  var action_buttons_spec_default = ActionButtons;
6143
6155
 
6144
6156
  // src/action-sheet/actionsheet-footer.tsx
6145
- var import_jsx_runtime62 = require("react/jsx-runtime");
6157
+ var import_jsx_runtime66 = require("react/jsx-runtime");
6146
6158
  var ACTIONSHEETFOOTER_CLASSNAME = `k-actionsheet-footer`;
6147
6159
  var ActionSheetFooter = (props) => {
6148
6160
  const {
6149
6161
  actions,
6150
6162
  ...other
6151
6163
  } = props;
6152
- return /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
6164
+ return /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
6153
6165
  action_buttons_spec_default,
6154
6166
  {
6155
6167
  ...other,
@@ -6158,17 +6170,17 @@ var ActionSheetFooter = (props) => {
6158
6170
  ACTIONSHEETFOOTER_CLASSNAME
6159
6171
  ),
6160
6172
  alignment: "stretched",
6161
- children: /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)(import_jsx_runtime62.Fragment, { children: [
6173
+ children: /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(import_jsx_runtime66.Fragment, { children: [
6162
6174
  actions && actions.map((action, index) => {
6163
6175
  if (action === "|") {
6164
- return /* @__PURE__ */ (0, import_jsx_runtime62.jsx)("span", { className: "k-separator" }, index);
6176
+ return /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("span", { className: "k-separator" }, index);
6165
6177
  }
6166
6178
  if (action === " ") {
6167
- return /* @__PURE__ */ (0, import_jsx_runtime62.jsx)("span", { className: "k-spacer" }, index);
6179
+ return /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("span", { className: "k-spacer" }, index);
6168
6180
  }
6169
6181
  const importantFlag = action.startsWith("!");
6170
6182
  const actionName = importantFlag ? action.substring(1) : action;
6171
- return /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(Button, { text: actionName, size: "large", themeColor: importantFlag ? "primary" : "base" }, index);
6183
+ return /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(Button, { text: actionName, size: "large", themeColor: importantFlag ? "primary" : "base" }, index);
6172
6184
  }),
6173
6185
  !actions && props.children
6174
6186
  ] })
@@ -6177,12 +6189,12 @@ var ActionSheetFooter = (props) => {
6177
6189
  };
6178
6190
 
6179
6191
  // src/action-sheet/actionsheet-items.tsx
6180
- var import_jsx_runtime63 = require("react/jsx-runtime");
6192
+ var import_jsx_runtime67 = require("react/jsx-runtime");
6181
6193
  var ActionSheetItems = (props) => {
6182
6194
  const {
6183
6195
  ...other
6184
6196
  } = props;
6185
- return /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
6197
+ return /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
6186
6198
  "div",
6187
6199
  {
6188
6200
  ...other,
@@ -6196,7 +6208,7 @@ var ActionSheetItems = (props) => {
6196
6208
  };
6197
6209
 
6198
6210
  // src/action-sheet/actionsheet-item.tsx
6199
- var import_jsx_runtime64 = require("react/jsx-runtime");
6211
+ var import_jsx_runtime68 = require("react/jsx-runtime");
6200
6212
  var states29 = [
6201
6213
  States.hover,
6202
6214
  States.focus,
@@ -6205,7 +6217,7 @@ var states29 = [
6205
6217
  ];
6206
6218
 
6207
6219
  // src/combobox/combobox.spec.tsx
6208
- var import_jsx_runtime65 = require("react/jsx-runtime");
6220
+ var import_jsx_runtime69 = require("react/jsx-runtime");
6209
6221
  var COMBOBOX_CLASSNAME = `k-combobox`;
6210
6222
  var states30 = [
6211
6223
  States.hover,
@@ -6250,8 +6262,8 @@ var Combobox = (props) => {
6250
6262
  adaptiveSettings,
6251
6263
  ...other
6252
6264
  } = props;
6253
- return /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)(import_jsx_runtime65.Fragment, { children: [
6254
- /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)(
6265
+ return /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(import_jsx_runtime69.Fragment, { children: [
6266
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(
6255
6267
  Input,
6256
6268
  {
6257
6269
  ...other,
@@ -6268,9 +6280,9 @@ var Combobox = (props) => {
6268
6280
  readonly,
6269
6281
  className: classNames(props.className, COMBOBOX_CLASSNAME),
6270
6282
  children: [
6271
- /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(InputPrefix, { children: prefix }),
6272
- /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(InputInnerInput, { placeholder, value }),
6273
- /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
6283
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(InputPrefix, { children: prefix }),
6284
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(InputInnerInput, { placeholder, value }),
6285
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
6274
6286
  InputValidationIcon,
6275
6287
  {
6276
6288
  valid,
@@ -6279,14 +6291,14 @@ var Combobox = (props) => {
6279
6291
  disabled
6280
6292
  }
6281
6293
  ),
6282
- /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
6294
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
6283
6295
  InputLoadingIcon,
6284
6296
  {
6285
6297
  loading,
6286
6298
  disabled
6287
6299
  }
6288
6300
  ),
6289
- /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
6301
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
6290
6302
  InputClearValue,
6291
6303
  {
6292
6304
  loading,
@@ -6295,8 +6307,8 @@ var Combobox = (props) => {
6295
6307
  value
6296
6308
  }
6297
6309
  ),
6298
- /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(InputSuffix, { children: suffix }),
6299
- /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
6310
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(InputSuffix, { children: suffix }),
6311
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
6300
6312
  Button,
6301
6313
  {
6302
6314
  className: "k-input-button",
@@ -6309,9 +6321,9 @@ var Combobox = (props) => {
6309
6321
  ]
6310
6322
  }
6311
6323
  ),
6312
- opened && popup && /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(Popup, { className: "k-list-container k-combobox-popup", children: popup }),
6313
- adaptive && /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)(ActionSheet, { adaptive: true, ...adaptiveSettings, children: [
6314
- /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
6324
+ opened && popup && /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(Popup, { className: "k-list-container k-combobox-popup", children: popup }),
6325
+ adaptive && /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(ActionSheet, { adaptive: true, ...adaptiveSettings, children: [
6326
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
6315
6327
  ActionSheetHeader,
6316
6328
  {
6317
6329
  actions: ["x"],
@@ -6319,10 +6331,10 @@ var Combobox = (props) => {
6319
6331
  title: "Select Item"
6320
6332
  }
6321
6333
  ),
6322
- /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("div", { className: "k-list-container", children: /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)(List, { size: "large", children: [
6323
- /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(ListItem, { text: "List item" }),
6324
- /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(ListItem, { text: "List item" }),
6325
- /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(ListItem, { text: "List item" })
6334
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("div", { className: "k-list-container", children: /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(List, { size: "large", children: [
6335
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(ListItem, { text: "List item" }),
6336
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(ListItem, { text: "List item" }),
6337
+ /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(ListItem, { text: "List item" })
6326
6338
  ] }) })
6327
6339
  ] })
6328
6340
  ] });
@@ -6333,19 +6345,19 @@ Combobox.className = COMBOBOX_CLASSNAME;
6333
6345
  Combobox.defaultProps = defaultProps25;
6334
6346
 
6335
6347
  // src/combobox/templates/combobox-normal.tsx
6336
- var import_jsx_runtime66 = require("react/jsx-runtime");
6348
+ var import_jsx_runtime70 = require("react/jsx-runtime");
6337
6349
 
6338
6350
  // src/combobox/templates/combobox-popup.tsx
6339
- var import_jsx_runtime67 = require("react/jsx-runtime");
6351
+ var import_jsx_runtime71 = require("react/jsx-runtime");
6340
6352
 
6341
6353
  // src/combobox/templates/combobox-grouping.tsx
6342
- var import_jsx_runtime68 = require("react/jsx-runtime");
6354
+ var import_jsx_runtime72 = require("react/jsx-runtime");
6343
6355
 
6344
6356
  // src/combobox/templates/combobox-adaptive.tsx
6345
- var import_jsx_runtime69 = require("react/jsx-runtime");
6357
+ var import_jsx_runtime73 = require("react/jsx-runtime");
6346
6358
 
6347
6359
  // src/menu-button/menu-button.spec.tsx
6348
- var import_jsx_runtime70 = require("react/jsx-runtime");
6360
+ var import_jsx_runtime74 = require("react/jsx-runtime");
6349
6361
  var MENUBUTTON_CLASSNAME = `k-menu-button`;
6350
6362
  var states31 = [
6351
6363
  States.hover,
@@ -6399,8 +6411,8 @@ var MenuButton = (props) => {
6399
6411
  opened,
6400
6412
  ...other
6401
6413
  } = props;
6402
- return /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(import_jsx_runtime70.Fragment, { children: [
6403
- /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
6414
+ return /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)(import_jsx_runtime74.Fragment, { children: [
6415
+ /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
6404
6416
  Button,
6405
6417
  {
6406
6418
  ...other,
@@ -6423,7 +6435,7 @@ var MenuButton = (props) => {
6423
6435
  arrowIconName
6424
6436
  }
6425
6437
  ),
6426
- opened && popup && /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(Popup, { className: "k-menu-popup", children: popup })
6438
+ opened && popup && /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(Popup, { className: "k-menu-popup", children: popup })
6427
6439
  ] });
6428
6440
  };
6429
6441
  MenuButton.states = states31;
@@ -6432,16 +6444,16 @@ MenuButton.className = MENUBUTTON_CLASSNAME;
6432
6444
  MenuButton.defaultProps = defaultProps26;
6433
6445
 
6434
6446
  // src/menu-button/templates/icon-menu-button.tsx
6435
- var import_jsx_runtime71 = require("react/jsx-runtime");
6447
+ var import_jsx_runtime75 = require("react/jsx-runtime");
6436
6448
 
6437
6449
  // src/menu-button/templates/icon-text-menu-button.tsx
6438
- var import_jsx_runtime72 = require("react/jsx-runtime");
6450
+ var import_jsx_runtime76 = require("react/jsx-runtime");
6439
6451
 
6440
6452
  // src/menu-button/templates/text-menu-button.tsx
6441
- var import_jsx_runtime73 = require("react/jsx-runtime");
6453
+ var import_jsx_runtime77 = require("react/jsx-runtime");
6442
6454
 
6443
6455
  // src/menu/menu-item.spec.tsx
6444
- var import_jsx_runtime74 = require("react/jsx-runtime");
6456
+ var import_jsx_runtime78 = require("react/jsx-runtime");
6445
6457
  var MENUITEM_CLASSNAME = `k-menu-item`;
6446
6458
  var states32 = [
6447
6459
  States.hover,
@@ -6469,7 +6481,7 @@ var MenuItem = (props) => {
6469
6481
  children,
6470
6482
  ...other
6471
6483
  } = props;
6472
- const contentTemplate = /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(import_jsx_runtime74.Fragment, {});
6484
+ const contentTemplate = /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(import_jsx_runtime78.Fragment, {});
6473
6485
  if (children) {
6474
6486
  children.forEach((child) => {
6475
6487
  const component = child.type;
@@ -6483,7 +6495,7 @@ var MenuItem = (props) => {
6483
6495
  if (!expandArrowName) {
6484
6496
  expandArrowName = dir === "rtl" ? "caret-alt-left" : "caret-alt-right";
6485
6497
  }
6486
- return /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)(
6498
+ return /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)(
6487
6499
  "li",
6488
6500
  {
6489
6501
  ...other,
@@ -6498,7 +6510,7 @@ var MenuItem = (props) => {
6498
6510
  })
6499
6511
  ),
6500
6512
  children: [
6501
- /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)(
6513
+ /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)(
6502
6514
  "span",
6503
6515
  {
6504
6516
  className: classNames(
@@ -6511,9 +6523,9 @@ var MenuItem = (props) => {
6511
6523
  })
6512
6524
  ),
6513
6525
  children: [
6514
- icon && /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(Icon, { className: "k-menu-link-icon", icon }),
6515
- /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("span", { className: "k-menu-link-text", children: text }),
6516
- showArrow && /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("span", { className: "k-menu-expand-arrow", children: /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(Icon, { icon: expandArrowName }) })
6526
+ icon && /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(Icon, { className: "k-menu-link-icon", icon }),
6527
+ /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("span", { className: "k-menu-link-text", children: text }),
6528
+ showArrow && /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("span", { className: "k-menu-expand-arrow", children: /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(Icon, { icon: expandArrowName }) })
6517
6529
  ]
6518
6530
  }
6519
6531
  ),
@@ -6529,7 +6541,7 @@ MenuItem.defaultProps = defaultProps27;
6529
6541
  var menu_item_spec_default = MenuItem;
6530
6542
 
6531
6543
  // src/menu/menu-separator.spec.tsx
6532
- var import_jsx_runtime75 = require("react/jsx-runtime");
6544
+ var import_jsx_runtime79 = require("react/jsx-runtime");
6533
6545
  var SEPARATOR_CLASSNAME = `k-separator`;
6534
6546
  var defaultProps28 = {
6535
6547
  orientation: "horizontal"
@@ -6539,7 +6551,7 @@ var MenuSeparator = (props) => {
6539
6551
  orientation = defaultProps28.orientation,
6540
6552
  ...other
6541
6553
  } = props;
6542
- return /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
6554
+ return /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
6543
6555
  "li",
6544
6556
  {
6545
6557
  ...other,
@@ -6557,10 +6569,10 @@ var MenuSeparator = (props) => {
6557
6569
  var menu_separator_spec_default = MenuSeparator;
6558
6570
 
6559
6571
  // src/menu/menu-item-content.tsx
6560
- var import_jsx_runtime76 = require("react/jsx-runtime");
6572
+ var import_jsx_runtime80 = require("react/jsx-runtime");
6561
6573
 
6562
6574
  // src/menu/menu-list.spec.tsx
6563
- var import_jsx_runtime77 = require("react/jsx-runtime");
6575
+ var import_jsx_runtime81 = require("react/jsx-runtime");
6564
6576
  var import_react = require("react");
6565
6577
  var MENULIST_CLASSNAME = `k-menu-group`;
6566
6578
  var states33 = [];
@@ -6588,7 +6600,7 @@ var MenuList = (props) => {
6588
6600
  );
6589
6601
  } else if (child.type === menu_separator_spec_default) {
6590
6602
  listChildren.push(
6591
- /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(menu_separator_spec_default, {})
6603
+ /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(menu_separator_spec_default, {})
6592
6604
  );
6593
6605
  } else {
6594
6606
  listChildren.push(child);
@@ -6596,7 +6608,7 @@ var MenuList = (props) => {
6596
6608
  });
6597
6609
  }
6598
6610
  }
6599
- return /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
6611
+ return /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
6600
6612
  "ul",
6601
6613
  {
6602
6614
  ...other,
@@ -6617,10 +6629,10 @@ MenuList.className = MENULIST_CLASSNAME;
6617
6629
  MenuList.defaultProps = defaultProps29;
6618
6630
 
6619
6631
  // src/menu-button/templates/menu-button-popup.tsx
6620
- var import_jsx_runtime78 = require("react/jsx-runtime");
6632
+ var import_jsx_runtime82 = require("react/jsx-runtime");
6621
6633
 
6622
6634
  // src/split-button/split-button.spec.tsx
6623
- var import_jsx_runtime79 = require("react/jsx-runtime");
6635
+ var import_jsx_runtime83 = require("react/jsx-runtime");
6624
6636
  var SPLITBUTTON_CLASSNAME = `k-split-button`;
6625
6637
  var states34 = [
6626
6638
  States.hover,
@@ -6672,8 +6684,8 @@ var SplitButton = (props) => {
6672
6684
  opened,
6673
6685
  ...other
6674
6686
  } = props;
6675
- return /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(import_jsx_runtime79.Fragment, { children: [
6676
- /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(
6687
+ return /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)(import_jsx_runtime83.Fragment, { children: [
6688
+ /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)(
6677
6689
  "div",
6678
6690
  {
6679
6691
  ...other,
@@ -6686,7 +6698,7 @@ var SplitButton = (props) => {
6686
6698
  })
6687
6699
  ),
6688
6700
  children: [
6689
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
6701
+ /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
6690
6702
  Button,
6691
6703
  {
6692
6704
  text,
@@ -6703,7 +6715,7 @@ var SplitButton = (props) => {
6703
6715
  children: props.children
6704
6716
  }
6705
6717
  ),
6706
- /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
6718
+ /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
6707
6719
  Button,
6708
6720
  {
6709
6721
  className: "k-split-button-arrow",
@@ -6717,7 +6729,7 @@ var SplitButton = (props) => {
6717
6729
  ]
6718
6730
  }
6719
6731
  ),
6720
- opened && popup && /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(Popup, { className: "k-menu-popup", children: popup })
6732
+ opened && popup && /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(Popup, { className: "k-menu-popup", children: popup })
6721
6733
  ] });
6722
6734
  };
6723
6735
  SplitButton.states = states34;
@@ -6727,7 +6739,7 @@ SplitButton.defaultProps = defaultProps30;
6727
6739
  var split_button_spec_default = SplitButton;
6728
6740
 
6729
6741
  // src/toolbar/toolbar.spec.tsx
6730
- var import_jsx_runtime80 = require("react/jsx-runtime");
6742
+ var import_jsx_runtime84 = require("react/jsx-runtime");
6731
6743
  var TOOLBAR_CLASSNAME = `k-toolbar`;
6732
6744
  var states35 = [
6733
6745
  States.focus
@@ -6750,7 +6762,7 @@ var Toolbar = (props) => {
6750
6762
  const tempToolbarChildren = [];
6751
6763
  if (child.type === Button && child.props.className && child.props.className.includes("k-toolbar-overflow-button")) {
6752
6764
  tempToolbarChildren.push(
6753
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
6765
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
6754
6766
  Button,
6755
6767
  {
6756
6768
  ...child.props,
@@ -6761,7 +6773,7 @@ var Toolbar = (props) => {
6761
6773
  );
6762
6774
  } else if (child.type === Button && child.props.className && child.props.className.includes("k-toggle-button")) {
6763
6775
  tempToolbarChildren.push(
6764
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
6776
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
6765
6777
  Button,
6766
6778
  {
6767
6779
  ...child.props,
@@ -6772,7 +6784,7 @@ var Toolbar = (props) => {
6772
6784
  );
6773
6785
  } else if (child.type === Button) {
6774
6786
  tempToolbarChildren.push(
6775
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
6787
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
6776
6788
  Button,
6777
6789
  {
6778
6790
  ...child.props,
@@ -6783,7 +6795,7 @@ var Toolbar = (props) => {
6783
6795
  );
6784
6796
  } else if (child.type === MenuButton) {
6785
6797
  tempToolbarChildren.push(
6786
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
6798
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
6787
6799
  MenuButton,
6788
6800
  {
6789
6801
  ...child.props,
@@ -6794,7 +6806,7 @@ var Toolbar = (props) => {
6794
6806
  );
6795
6807
  } else if (child.type === split_button_spec_default) {
6796
6808
  tempToolbarChildren.push(
6797
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
6809
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
6798
6810
  split_button_spec_default,
6799
6811
  {
6800
6812
  ...child.props,
@@ -6808,7 +6820,7 @@ var Toolbar = (props) => {
6808
6820
  const childrenArray = Array.isArray(child.props.children) ? child.props.children : [child.props.children];
6809
6821
  childrenArray.forEach((button, bindex) => {
6810
6822
  buttonGroupItems.push(
6811
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
6823
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
6812
6824
  Button,
6813
6825
  {
6814
6826
  ...button.props,
@@ -6819,7 +6831,7 @@ var Toolbar = (props) => {
6819
6831
  );
6820
6832
  });
6821
6833
  tempToolbarChildren.push(
6822
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
6834
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
6823
6835
  ButtonGroup,
6824
6836
  {
6825
6837
  ...child.props,
@@ -6831,7 +6843,7 @@ var Toolbar = (props) => {
6831
6843
  );
6832
6844
  } else if (child.type === Combobox) {
6833
6845
  tempToolbarChildren.push(
6834
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
6846
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
6835
6847
  Combobox,
6836
6848
  {
6837
6849
  ...child.props,
@@ -6842,7 +6854,7 @@ var Toolbar = (props) => {
6842
6854
  );
6843
6855
  } else if (child.type === DropdownList) {
6844
6856
  tempToolbarChildren.push(
6845
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
6857
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
6846
6858
  DropdownList,
6847
6859
  {
6848
6860
  ...child.props,
@@ -6853,7 +6865,7 @@ var Toolbar = (props) => {
6853
6865
  );
6854
6866
  } else if (child.type === ColorPicker) {
6855
6867
  tempToolbarChildren.push(
6856
- /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
6868
+ /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
6857
6869
  ColorPicker,
6858
6870
  {
6859
6871
  ...child.props,
@@ -6875,7 +6887,7 @@ var Toolbar = (props) => {
6875
6887
  addUniqueToolClass(child, index);
6876
6888
  });
6877
6889
  }
6878
- return /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
6890
+ return /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
6879
6891
  "div",
6880
6892
  {
6881
6893
  ...other,
@@ -6902,7 +6914,7 @@ Toolbar.className = TOOLBAR_CLASSNAME;
6902
6914
  Toolbar.defaultProps = defaultProps31;
6903
6915
 
6904
6916
  // src/toolbar/toolbar-angular.spec.tsx
6905
- var import_jsx_runtime81 = require("react/jsx-runtime");
6917
+ var import_jsx_runtime85 = require("react/jsx-runtime");
6906
6918
  var TOOLBARANGULAR_CLASSNAME = `k-toolbar`;
6907
6919
  var states36 = [
6908
6920
  States.focus
@@ -6925,7 +6937,7 @@ var ToolbarAngular = (props) => {
6925
6937
  const tempToolbarChildren = [];
6926
6938
  if (child.type === Button && child.props.className && child.props.className.includes("k-toolbar-overflow-button")) {
6927
6939
  tempToolbarChildren.push(
6928
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
6940
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
6929
6941
  Button,
6930
6942
  {
6931
6943
  ...child.props,
@@ -6936,7 +6948,7 @@ var ToolbarAngular = (props) => {
6936
6948
  );
6937
6949
  } else if (child.type === Button && child.props.className && child.props.className.includes("k-toggle-button")) {
6938
6950
  tempToolbarChildren.push(
6939
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
6951
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
6940
6952
  Button,
6941
6953
  {
6942
6954
  ...child.props,
@@ -6947,7 +6959,7 @@ var ToolbarAngular = (props) => {
6947
6959
  );
6948
6960
  } else if (child.type === Button) {
6949
6961
  tempToolbarChildren.push(
6950
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
6962
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
6951
6963
  Button,
6952
6964
  {
6953
6965
  ...child.props,
@@ -6958,7 +6970,7 @@ var ToolbarAngular = (props) => {
6958
6970
  );
6959
6971
  } else if (child.type === MenuButton) {
6960
6972
  tempToolbarChildren.push(
6961
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
6973
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
6962
6974
  MenuButton,
6963
6975
  {
6964
6976
  ...child.props,
@@ -6969,7 +6981,7 @@ var ToolbarAngular = (props) => {
6969
6981
  );
6970
6982
  } else if (child.type === split_button_spec_default) {
6971
6983
  tempToolbarChildren.push(
6972
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
6984
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
6973
6985
  split_button_spec_default,
6974
6986
  {
6975
6987
  ...child.props,
@@ -6983,7 +6995,7 @@ var ToolbarAngular = (props) => {
6983
6995
  const childrenArray = Array.isArray(child.props.children) ? child.props.children : [child.props.children];
6984
6996
  childrenArray.forEach((button, bindex) => {
6985
6997
  buttonGroupItems.push(
6986
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
6998
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
6987
6999
  Button,
6988
7000
  {
6989
7001
  ...button.props,
@@ -6994,7 +7006,7 @@ var ToolbarAngular = (props) => {
6994
7006
  );
6995
7007
  });
6996
7008
  tempToolbarChildren.push(
6997
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
7009
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
6998
7010
  ButtonGroup,
6999
7011
  {
7000
7012
  ...child.props,
@@ -7006,7 +7018,7 @@ var ToolbarAngular = (props) => {
7006
7018
  );
7007
7019
  } else if (child.type === Combobox) {
7008
7020
  tempToolbarChildren.push(
7009
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
7021
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
7010
7022
  Combobox,
7011
7023
  {
7012
7024
  ...child.props,
@@ -7017,7 +7029,7 @@ var ToolbarAngular = (props) => {
7017
7029
  );
7018
7030
  } else if (child.type === DropdownList) {
7019
7031
  tempToolbarChildren.push(
7020
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
7032
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
7021
7033
  DropdownList,
7022
7034
  {
7023
7035
  ...child.props,
@@ -7028,7 +7040,7 @@ var ToolbarAngular = (props) => {
7028
7040
  );
7029
7041
  } else if (child.type === ColorPicker) {
7030
7042
  tempToolbarChildren.push(
7031
- /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
7043
+ /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
7032
7044
  ColorPicker,
7033
7045
  {
7034
7046
  ...child.props,
@@ -7050,7 +7062,7 @@ var ToolbarAngular = (props) => {
7050
7062
  addUniqueToolClass(child, index);
7051
7063
  });
7052
7064
  }
7053
- return /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
7065
+ return /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
7054
7066
  "div",
7055
7067
  {
7056
7068
  ...other,
@@ -7077,10 +7089,10 @@ ToolbarAngular.className = TOOLBARANGULAR_CLASSNAME;
7077
7089
  ToolbarAngular.defaultProps = defaultProps32;
7078
7090
 
7079
7091
  // src/toolbar/toolbar-separator.tsx
7080
- var import_jsx_runtime82 = require("react/jsx-runtime");
7092
+ var import_jsx_runtime86 = require("react/jsx-runtime");
7081
7093
 
7082
7094
  // src/toolbar/toolbar-item.spec.tsx
7083
- var import_jsx_runtime83 = require("react/jsx-runtime");
7095
+ var import_jsx_runtime87 = require("react/jsx-runtime");
7084
7096
  var TOOLBARITEM_CLASSNAME = `k-toolbar-item`;
7085
7097
  var states37 = [
7086
7098
  States.focus
@@ -7092,7 +7104,7 @@ var ToolbarItem = (props) => {
7092
7104
  focus,
7093
7105
  ...other
7094
7106
  } = props;
7095
- return /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
7107
+ return /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
7096
7108
  "div",
7097
7109
  {
7098
7110
  ...other,
@@ -7113,7 +7125,7 @@ ToolbarItem.className = TOOLBARITEM_CLASSNAME;
7113
7125
  ToolbarItem.defaultProps = defaultProps33;
7114
7126
 
7115
7127
  // src/table/data-table.spec.tsx
7116
- var import_jsx_runtime84 = require("react/jsx-runtime");
7128
+ var import_jsx_runtime88 = require("react/jsx-runtime");
7117
7129
  var DATATABLE_CLASSNAME = `k-data-table`;
7118
7130
  var states38 = [];
7119
7131
  var options36 = {
@@ -7127,7 +7139,7 @@ var DataTable = (props) => {
7127
7139
  size = defaultProps34.size,
7128
7140
  ...other
7129
7141
  } = props;
7130
- return /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
7142
+ return /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
7131
7143
  "div",
7132
7144
  {
7133
7145
  ...other,
@@ -7148,16 +7160,16 @@ DataTable.className = DATATABLE_CLASSNAME;
7148
7160
  DataTable.defaultProps = defaultProps34;
7149
7161
 
7150
7162
  // src/table/table-header.tsx
7151
- var import_jsx_runtime85 = require("react/jsx-runtime");
7163
+ var import_jsx_runtime89 = require("react/jsx-runtime");
7152
7164
 
7153
7165
  // src/table/table-body.tsx
7154
- var import_jsx_runtime86 = require("react/jsx-runtime");
7166
+ var import_jsx_runtime90 = require("react/jsx-runtime");
7155
7167
 
7156
7168
  // src/table/table-footer.tsx
7157
- var import_jsx_runtime87 = require("react/jsx-runtime");
7169
+ var import_jsx_runtime91 = require("react/jsx-runtime");
7158
7170
 
7159
7171
  // src/table/table.spec.tsx
7160
- var import_jsx_runtime88 = require("react/jsx-runtime");
7172
+ var import_jsx_runtime92 = require("react/jsx-runtime");
7161
7173
  var TABLE_CLASSNAME = `k-table`;
7162
7174
  var states39 = [];
7163
7175
  var options37 = {
@@ -7169,7 +7181,7 @@ var Table = (props) => {
7169
7181
  size,
7170
7182
  ...other
7171
7183
  } = props;
7172
- return /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
7184
+ return /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
7173
7185
  "table",
7174
7186
  {
7175
7187
  ...other,
@@ -7190,7 +7202,7 @@ Table.className = TABLE_CLASSNAME;
7190
7202
  Table.defaultProps = defaultProps35;
7191
7203
 
7192
7204
  // src/table/table-list.spec.tsx
7193
- var import_jsx_runtime89 = require("react/jsx-runtime");
7205
+ var import_jsx_runtime93 = require("react/jsx-runtime");
7194
7206
  var TABLELIST_CLASSNAME = `k-table-list`;
7195
7207
  var states40 = [];
7196
7208
  var options38 = {
@@ -7203,7 +7215,7 @@ var TableList = (props) => {
7203
7215
  virtualization,
7204
7216
  ...other
7205
7217
  } = props;
7206
- return /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
7218
+ return /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
7207
7219
  "ul",
7208
7220
  {
7209
7221
  ...other,
@@ -7228,9 +7240,9 @@ TableList.className = TABLELIST_CLASSNAME;
7228
7240
  TableList.defaultProps = defaultProps36;
7229
7241
 
7230
7242
  // src/table/table-thead.tsx
7231
- var import_jsx_runtime90 = require("react/jsx-runtime");
7243
+ var import_jsx_runtime94 = require("react/jsx-runtime");
7232
7244
  var className13 = `k-table-thead`;
7233
- var TableThead = (props) => /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
7245
+ var TableThead = (props) => /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
7234
7246
  "thead",
7235
7247
  {
7236
7248
  className: classNames(
@@ -7242,9 +7254,9 @@ var TableThead = (props) => /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
7242
7254
  );
7243
7255
 
7244
7256
  // src/table/table-tbody.tsx
7245
- var import_jsx_runtime91 = require("react/jsx-runtime");
7257
+ var import_jsx_runtime95 = require("react/jsx-runtime");
7246
7258
  var className14 = `k-table-tbody`;
7247
- var TableTbody = (props) => /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
7259
+ var TableTbody = (props) => /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
7248
7260
  "tbody",
7249
7261
  {
7250
7262
  className: classNames(
@@ -7256,10 +7268,10 @@ var TableTbody = (props) => /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
7256
7268
  );
7257
7269
 
7258
7270
  // src/table/table-tfoot.tsx
7259
- var import_jsx_runtime92 = require("react/jsx-runtime");
7271
+ var import_jsx_runtime96 = require("react/jsx-runtime");
7260
7272
 
7261
7273
  // src/table/table-row.tsx
7262
- var import_jsx_runtime93 = require("react/jsx-runtime");
7274
+ var import_jsx_runtime97 = require("react/jsx-runtime");
7263
7275
  var TABLEROW_CLASSNAME = `k-table-row`;
7264
7276
  var states41 = [
7265
7277
  States.hover,
@@ -7276,7 +7288,7 @@ var TableRow = (props) => {
7276
7288
  alt,
7277
7289
  ...other
7278
7290
  } = props;
7279
- return /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
7291
+ return /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
7280
7292
  "tr",
7281
7293
  {
7282
7294
  ...other,
@@ -7299,7 +7311,7 @@ var TableRow = (props) => {
7299
7311
  };
7300
7312
 
7301
7313
  // src/table/table-list-row.tsx
7302
- var import_jsx_runtime94 = require("react/jsx-runtime");
7314
+ var import_jsx_runtime98 = require("react/jsx-runtime");
7303
7315
  var states42 = [
7304
7316
  States.hover,
7305
7317
  States.focus,
@@ -7308,7 +7320,7 @@ var states42 = [
7308
7320
  ];
7309
7321
 
7310
7322
  // src/table/table-th.tsx
7311
- var import_jsx_runtime95 = require("react/jsx-runtime");
7323
+ var import_jsx_runtime99 = require("react/jsx-runtime");
7312
7324
  var className15 = `k-table-th`;
7313
7325
  var TableTh = (props) => {
7314
7326
  const {
@@ -7317,7 +7329,7 @@ var TableTh = (props) => {
7317
7329
  ...other
7318
7330
  } = props;
7319
7331
  const textOrChildren = text ? text : props.children;
7320
- return /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
7332
+ return /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
7321
7333
  "th",
7322
7334
  {
7323
7335
  colSpan: colspan,
@@ -7332,10 +7344,10 @@ var TableTh = (props) => {
7332
7344
  };
7333
7345
 
7334
7346
  // src/table/table-list-th.tsx
7335
- var import_jsx_runtime96 = require("react/jsx-runtime");
7347
+ var import_jsx_runtime100 = require("react/jsx-runtime");
7336
7348
 
7337
7349
  // src/table/table-td.tsx
7338
- var import_jsx_runtime97 = require("react/jsx-runtime");
7350
+ var import_jsx_runtime101 = require("react/jsx-runtime");
7339
7351
  var className16 = `k-table-td`;
7340
7352
  var TableTd = (props) => {
7341
7353
  const {
@@ -7344,7 +7356,7 @@ var TableTd = (props) => {
7344
7356
  ...other
7345
7357
  } = props;
7346
7358
  const textOrChildren = text ? text : props.children;
7347
- return /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
7359
+ return /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
7348
7360
  "td",
7349
7361
  {
7350
7362
  colSpan: colspan,
@@ -7359,117 +7371,117 @@ var TableTd = (props) => {
7359
7371
  };
7360
7372
 
7361
7373
  // src/table/table-list-td.tsx
7362
- var import_jsx_runtime98 = require("react/jsx-runtime");
7374
+ var import_jsx_runtime102 = require("react/jsx-runtime");
7363
7375
 
7364
7376
  // src/table/table-group-header.tsx
7365
- var import_jsx_runtime99 = require("react/jsx-runtime");
7377
+ var import_jsx_runtime103 = require("react/jsx-runtime");
7366
7378
 
7367
7379
  // src/table/table-group-sticky-header.tsx
7368
- var import_jsx_runtime100 = require("react/jsx-runtime");
7380
+ var import_jsx_runtime104 = require("react/jsx-runtime");
7369
7381
 
7370
7382
  // src/table/table-group-row.tsx
7371
- var import_jsx_runtime101 = require("react/jsx-runtime");
7383
+ var import_jsx_runtime105 = require("react/jsx-runtime");
7372
7384
 
7373
7385
  // src/table/table-list-group-row.tsx
7374
- var import_jsx_runtime102 = require("react/jsx-runtime");
7386
+ var import_jsx_runtime106 = require("react/jsx-runtime");
7375
7387
 
7376
7388
  // src/table/templates/table-list.tsx
7377
- var import_jsx_runtime103 = require("react/jsx-runtime");
7389
+ var import_jsx_runtime107 = require("react/jsx-runtime");
7378
7390
 
7379
7391
  // src/table/templates/table-list-virtualization.tsx
7380
- var import_jsx_runtime104 = require("react/jsx-runtime");
7392
+ var import_jsx_runtime108 = require("react/jsx-runtime");
7381
7393
 
7382
7394
  // src/table/templates/data-table-normal.tsx
7383
- var import_jsx_runtime105 = require("react/jsx-runtime");
7395
+ var import_jsx_runtime109 = require("react/jsx-runtime");
7384
7396
 
7385
7397
  // src/table/templates/table-native.tsx
7386
- var import_jsx_runtime106 = require("react/jsx-runtime");
7398
+ var import_jsx_runtime110 = require("react/jsx-runtime");
7387
7399
 
7388
7400
  // src/grid/tests/grid-row-reordering.tsx
7389
- var import_jsx_runtime107 = require("react/jsx-runtime");
7390
- var grid_row_reordering_default = () => /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(import_jsx_runtime107.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("div", { id: "test-area", className: "k-d-grid k-grid-cols-1", children: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("section", { children: /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)("div", { className: "k-grid k-grid-md k-grid-no-scrollbar", children: [
7391
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(Toolbar, { className: "k-grid-toolbar", children: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(Button, { className: "k-toolbar-button", themeColor: "primary", children: "Add New" }) }),
7392
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("div", { className: "k-grid-header", children: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("div", { className: "k-grid-header-wrap", children: /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)(Table, { size: "medium", className: "k-grid-header-table", children: [
7393
- /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)("colgroup", { children: [
7394
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("col", { className: "k-drag-col" }),
7395
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("col", {}),
7396
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("col", {})
7401
+ var import_jsx_runtime111 = require("react/jsx-runtime");
7402
+ var grid_row_reordering_default = () => /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(import_jsx_runtime111.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("div", { id: "test-area", className: "k-d-grid k-grid-cols-1", children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("section", { children: /* @__PURE__ */ (0, import_jsx_runtime111.jsxs)("div", { className: "k-grid k-grid-md k-grid-no-scrollbar", children: [
7403
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(Toolbar, { className: "k-grid-toolbar", children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(Button, { className: "k-toolbar-button", themeColor: "primary", children: "Add New" }) }),
7404
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("div", { className: "k-grid-header", children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("div", { className: "k-grid-header-wrap", children: /* @__PURE__ */ (0, import_jsx_runtime111.jsxs)(Table, { size: "medium", className: "k-grid-header-table", children: [
7405
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsxs)("colgroup", { children: [
7406
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("col", { className: "k-drag-col" }),
7407
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("col", {}),
7408
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("col", {})
7397
7409
  ] }),
7398
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableThead, { children: /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)(TableRow, { children: [
7399
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableTh, { className: "k-drag-cell k-header" }),
7400
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableTh, { className: "k-header k-sorted", children: /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)("span", { className: "k-cell-inner", children: [
7401
- /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)("span", { className: "k-link", children: [
7402
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("span", { className: "k-column-title", children: "Product Id" }),
7403
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("span", { className: "k-sort-icon", children: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(Icon, { icon: "sort-asc-small" }) })
7410
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableThead, { children: /* @__PURE__ */ (0, import_jsx_runtime111.jsxs)(TableRow, { children: [
7411
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableTh, { className: "k-drag-cell k-header" }),
7412
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableTh, { className: "k-header k-sorted", children: /* @__PURE__ */ (0, import_jsx_runtime111.jsxs)("span", { className: "k-cell-inner", children: [
7413
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsxs)("span", { className: "k-link", children: [
7414
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("span", { className: "k-column-title", children: "Product Id" }),
7415
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("span", { className: "k-sort-icon", children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(Icon, { icon: "sort-asc-small" }) })
7404
7416
  ] }),
7405
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("a", { href: "#", className: "k-grid-header-menu k-grid-column-menu", children: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(Icon, { icon: "more-vertical" }) })
7417
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("a", { href: "#", className: "k-grid-header-menu k-grid-column-menu", children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(Icon, { icon: "more-vertical" }) })
7406
7418
  ] }) }),
7407
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableTh, { className: "k-header k-sorted", children: /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)("span", { className: "k-cell-inner", children: [
7408
- /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)("span", { className: "k-link", children: [
7409
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("span", { className: "k-column-title", children: "Unit Price" }),
7410
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("span", { className: "k-sort-icon", children: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(Icon, { icon: "sort-asc-small" }) })
7419
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableTh, { className: "k-header k-sorted", children: /* @__PURE__ */ (0, import_jsx_runtime111.jsxs)("span", { className: "k-cell-inner", children: [
7420
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsxs)("span", { className: "k-link", children: [
7421
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("span", { className: "k-column-title", children: "Unit Price" }),
7422
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("span", { className: "k-sort-icon", children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(Icon, { icon: "sort-asc-small" }) })
7411
7423
  ] }),
7412
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("a", { href: "#", className: "k-grid-header-menu k-grid-column-menu", children: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(Icon, { icon: "more-vertical" }) })
7424
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("a", { href: "#", className: "k-grid-header-menu k-grid-column-menu", children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(Icon, { icon: "more-vertical" }) })
7413
7425
  ] }) }),
7414
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableTh, { className: "k-header k-sorted", children: /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)("span", { className: "k-cell-inner", children: [
7415
- /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)("span", { className: "k-link", children: [
7416
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("span", { className: "k-column-title", children: "Discontinued" }),
7417
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("span", { className: "k-sort-icon", children: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(Icon, { icon: "sort-asc-small" }) })
7426
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableTh, { className: "k-header k-sorted", children: /* @__PURE__ */ (0, import_jsx_runtime111.jsxs)("span", { className: "k-cell-inner", children: [
7427
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsxs)("span", { className: "k-link", children: [
7428
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("span", { className: "k-column-title", children: "Discontinued" }),
7429
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("span", { className: "k-sort-icon", children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(Icon, { icon: "sort-asc-small" }) })
7418
7430
  ] }),
7419
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("a", { href: "#", className: "k-grid-header-menu k-grid-column-menu", children: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(Icon, { icon: "more-vertical" }) })
7431
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("a", { href: "#", className: "k-grid-header-menu k-grid-column-menu", children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(Icon, { icon: "more-vertical" }) })
7420
7432
  ] }) }),
7421
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableTh, { className: "k-header k-sorted", children: /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)("span", { className: "k-cell-inner", children: [
7422
- /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)("span", { className: "k-link", children: [
7423
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("span", { className: "k-column-title", children: "Category" }),
7424
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("span", { className: "k-sort-icon", children: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(Icon, { icon: "sort-asc-small" }) })
7433
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableTh, { className: "k-header k-sorted", children: /* @__PURE__ */ (0, import_jsx_runtime111.jsxs)("span", { className: "k-cell-inner", children: [
7434
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsxs)("span", { className: "k-link", children: [
7435
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("span", { className: "k-column-title", children: "Category" }),
7436
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("span", { className: "k-sort-icon", children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(Icon, { icon: "sort-asc-small" }) })
7425
7437
  ] }),
7426
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("a", { href: "#", className: "k-grid-header-menu k-grid-column-menu", children: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(Icon, { icon: "more-vertical" }) })
7438
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("a", { href: "#", className: "k-grid-header-menu k-grid-column-menu", children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(Icon, { icon: "more-vertical" }) })
7427
7439
  ] }) })
7428
7440
  ] }) })
7429
7441
  ] }) }) }),
7430
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("div", { className: "k-grid-content", children: /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)(Table, { size: "medium", className: "k-grid-table", children: [
7431
- /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)("colgroup", { children: [
7432
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("col", { className: "k-drag-col" }),
7433
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("col", {}),
7434
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)("col", {})
7442
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("div", { className: "k-grid-content", children: /* @__PURE__ */ (0, import_jsx_runtime111.jsxs)(Table, { size: "medium", className: "k-grid-table", children: [
7443
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsxs)("colgroup", { children: [
7444
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("col", { className: "k-drag-col" }),
7445
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("col", {}),
7446
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("col", {})
7435
7447
  ] }),
7436
- /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)(TableTbody, { children: [
7437
- /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)(TableRow, { className: "k-master-row", children: [
7438
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableTd, { className: "k-drag-cell", children: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(Icon, { icon: "reorder" }) }),
7439
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableTd, { children: "Chef Anton's Gumbo" }),
7440
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableTd, { children: "21.35" }),
7441
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableTd, { children: "0" }),
7442
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableTd, { children: "Condiments" })
7448
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsxs)(TableTbody, { children: [
7449
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsxs)(TableRow, { className: "k-master-row", children: [
7450
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableTd, { className: "k-drag-cell", children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(Icon, { icon: "reorder" }) }),
7451
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableTd, { children: "Chef Anton's Gumbo" }),
7452
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableTd, { children: "21.35" }),
7453
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableTd, { children: "0" }),
7454
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableTd, { children: "Condiments" })
7443
7455
  ] }),
7444
- /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)(TableRow, { alt: true, children: [
7445
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableTd, { className: "k-drag-cell", children: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(Icon, { icon: "reorder" }) }),
7446
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableTd, { children: "Alice Mutton" }),
7447
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableTd, { children: "39" }),
7448
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableTd, { children: "0" }),
7449
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableTd, { children: "Meat/Poultry" })
7456
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsxs)(TableRow, { alt: true, children: [
7457
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableTd, { className: "k-drag-cell", children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(Icon, { icon: "reorder" }) }),
7458
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableTd, { children: "Alice Mutton" }),
7459
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableTd, { children: "39" }),
7460
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableTd, { children: "0" }),
7461
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableTd, { children: "Meat/Poultry" })
7450
7462
  ] }),
7451
- /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)(TableRow, { className: "k-master-row", children: [
7452
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableTd, { className: "k-drag-cell", children: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(Icon, { icon: "reorder" }) }),
7453
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableTd, { children: "Singaporean Hokkien Fried Mee" }),
7454
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableTd, { children: "123.79" }),
7455
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableTd, { children: "1" }),
7456
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableTd, { children: "Meat/Poultry" })
7463
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsxs)(TableRow, { className: "k-master-row", children: [
7464
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableTd, { className: "k-drag-cell", children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(Icon, { icon: "reorder" }) }),
7465
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableTd, { children: "Singaporean Hokkien Fried Mee" }),
7466
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableTd, { children: "123.79" }),
7467
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableTd, { children: "1" }),
7468
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableTd, { children: "Meat/Poultry" })
7457
7469
  ] }),
7458
- /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)(TableRow, { alt: true, children: [
7459
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableTd, { className: "k-drag-cell", children: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(Icon, { icon: "reorder" }) }),
7460
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableTd, { children: "Gorgonzola Telino" }),
7461
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableTd, { children: "12.5" }),
7462
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableTd, { children: "0" }),
7463
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableTd, { children: "Meat/Poultry" })
7470
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsxs)(TableRow, { alt: true, children: [
7471
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableTd, { className: "k-drag-cell", children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(Icon, { icon: "reorder" }) }),
7472
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableTd, { children: "Gorgonzola Telino" }),
7473
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableTd, { children: "12.5" }),
7474
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableTd, { children: "0" }),
7475
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableTd, { children: "Meat/Poultry" })
7464
7476
  ] }),
7465
- /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)(TableRow, { className: "k-master-row", children: [
7466
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableTd, { className: "k-drag-cell", children: /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(Icon, { icon: "reorder" }) }),
7467
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableTd, { children: "Perth Pasties" }),
7468
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableTd, { children: "32.8" }),
7469
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableTd, { children: "0" }),
7470
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(TableTd, { children: "Meat/Poultry" })
7477
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsxs)(TableRow, { className: "k-master-row", children: [
7478
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableTd, { className: "k-drag-cell", children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(Icon, { icon: "reorder" }) }),
7479
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableTd, { children: "Perth Pasties" }),
7480
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableTd, { children: "32.8" }),
7481
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableTd, { children: "0" }),
7482
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(TableTd, { children: "Meat/Poultry" })
7471
7483
  ] })
7472
7484
  ] })
7473
7485
  ] }) }),
7474
- /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(Pager, { refresh: false, className: "k-grid-pager" })
7486
+ /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(Pager, { refresh: false, className: "k-grid-pager" })
7475
7487
  ] }) }) }) });