@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/chip/chip-action.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/chip/chip-action.tsx
5809
+ var import_jsx_runtime56 = require("react/jsx-runtime");
5798
5810
  var CHIPACTION_CLASSNAME = `k-chip-action`;
5799
5811
  var ChipAction = (props) => {
5800
5812
  const {
@@ -5804,15 +5816,15 @@ var ChipAction = (props) => {
5804
5816
  let icon;
5805
5817
  switch (type) {
5806
5818
  case "remove" /* REMOVE */:
5807
- icon = /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(Icon, { icon: "x-circle", size: "small" });
5819
+ icon = /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(Icon, { icon: "x-circle", size: "small" });
5808
5820
  break;
5809
5821
  case "more" /* MORE */:
5810
- icon = /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(Icon, { icon: "more-vertical", size: "small" });
5822
+ icon = /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(Icon, { icon: "more-vertical", size: "small" });
5811
5823
  break;
5812
5824
  default:
5813
- return /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(Icon, { icon: type, size: "small" });
5825
+ return /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(Icon, { icon: type, size: "small" });
5814
5826
  }
5815
- return /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
5827
+ return /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
5816
5828
  "span",
5817
5829
  {
5818
5830
  ...other,
@@ -5827,7 +5839,7 @@ var ChipAction = (props) => {
5827
5839
  };
5828
5840
 
5829
5841
  // src/avatar/avatar.spec.tsx
5830
- var import_jsx_runtime53 = require("react/jsx-runtime");
5842
+ var import_jsx_runtime57 = require("react/jsx-runtime");
5831
5843
  var AVATAR_CLASSNAME = `k-avatar`;
5832
5844
  var states24 = [
5833
5845
  States.hover,
@@ -5872,7 +5884,7 @@ var Avatar = (props) => {
5872
5884
  border = defaultProps21.border,
5873
5885
  ...other
5874
5886
  } = props;
5875
- return /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
5887
+ return /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
5876
5888
  "div",
5877
5889
  {
5878
5890
  ...other,
@@ -5889,7 +5901,7 @@ var Avatar = (props) => {
5889
5901
  [`${AVATAR_CLASSNAME}-bordered`]: border
5890
5902
  }
5891
5903
  ),
5892
- children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: `${AVATAR_CLASSNAME}-${type}`, children: props.children })
5904
+ children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: `${AVATAR_CLASSNAME}-${type}`, children: props.children })
5893
5905
  }
5894
5906
  );
5895
5907
  };
@@ -5899,16 +5911,16 @@ Avatar.className = AVATAR_CLASSNAME;
5899
5911
  Avatar.defaultProps = defaultProps21;
5900
5912
 
5901
5913
  // src/avatar/templates/avatar-icon.tsx
5902
- var import_jsx_runtime54 = require("react/jsx-runtime");
5914
+ var import_jsx_runtime58 = require("react/jsx-runtime");
5903
5915
 
5904
5916
  // src/avatar/templates/avatar-text.tsx
5905
- var import_jsx_runtime55 = require("react/jsx-runtime");
5917
+ var import_jsx_runtime59 = require("react/jsx-runtime");
5906
5918
 
5907
5919
  // src/avatar/templates/avatar-image.tsx
5908
- var import_jsx_runtime56 = require("react/jsx-runtime");
5920
+ var import_jsx_runtime60 = require("react/jsx-runtime");
5909
5921
 
5910
5922
  // src/chip/chip.spec.tsx
5911
- var import_jsx_runtime57 = require("react/jsx-runtime");
5923
+ var import_jsx_runtime61 = require("react/jsx-runtime");
5912
5924
  var CHIP_CLASSNAME = `k-chip`;
5913
5925
  var states25 = [
5914
5926
  States.hover,
@@ -5952,7 +5964,7 @@ var Chip = (props) => {
5952
5964
  disabled,
5953
5965
  ...other
5954
5966
  } = props;
5955
- return /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)(
5967
+ return /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)(
5956
5968
  "div",
5957
5969
  {
5958
5970
  ...other,
@@ -5974,10 +5986,10 @@ var Chip = (props) => {
5974
5986
  })
5975
5987
  ),
5976
5988
  children: [
5977
- icon && /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(Icon, { className: "k-chip-icon", icon, size: "small" }),
5978
- showAvatar && /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(Avatar, { className: "k-chip-avatar", type: "image", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("img", { src: "/packages/html/assets/avatar.jpg" }) }),
5979
- /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-chip-content", children: props.children ? props.children : text && /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-chip-label k-text-ellipsis", children: text }) }),
5980
- actions && /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-chip-actions", children: actions })
5989
+ icon && /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(Icon, { className: "k-chip-icon", icon, size: "small" }),
5990
+ showAvatar && /* @__PURE__ */ (0, import_jsx_runtime61.jsx)(Avatar, { className: "k-chip-avatar", type: "image", children: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)("img", { src: "/packages/html/assets/avatar.jpg" }) }),
5991
+ /* @__PURE__ */ (0, import_jsx_runtime61.jsx)("span", { className: "k-chip-content", children: props.children ? props.children : text && /* @__PURE__ */ (0, import_jsx_runtime61.jsx)("span", { className: "k-chip-label k-text-ellipsis", children: text }) }),
5992
+ actions && /* @__PURE__ */ (0, import_jsx_runtime61.jsx)("span", { className: "k-chip-actions", children: actions })
5981
5993
  ]
5982
5994
  }
5983
5995
  );
@@ -5988,7 +6000,7 @@ Chip.className = CHIP_CLASSNAME;
5988
6000
  Chip.defaultProps = defaultProps22;
5989
6001
 
5990
6002
  // src/chip/chip-list.spec.tsx
5991
- var import_jsx_runtime58 = require("react/jsx-runtime");
6003
+ var import_jsx_runtime62 = require("react/jsx-runtime");
5992
6004
  var CHIPLIST_CLASSNAME = `k-chip-list`;
5993
6005
  var states26 = [];
5994
6006
  var options25 = {
@@ -6002,7 +6014,7 @@ var ChipList = (props) => {
6002
6014
  size = defaultProps23.size,
6003
6015
  ...other
6004
6016
  } = props;
6005
- return /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
6017
+ return /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
6006
6018
  "div",
6007
6019
  {
6008
6020
  ...other,
@@ -6023,137 +6035,137 @@ ChipList.className = CHIPLIST_CLASSNAME;
6023
6035
  ChipList.defaultProps = defaultProps23;
6024
6036
 
6025
6037
  // src/chip/templates/chip-avatar.tsx
6026
- var import_jsx_runtime59 = require("react/jsx-runtime");
6038
+ var import_jsx_runtime63 = require("react/jsx-runtime");
6027
6039
 
6028
6040
  // src/chip/templates/chip-icon.tsx
6029
- var import_jsx_runtime60 = require("react/jsx-runtime");
6041
+ var import_jsx_runtime64 = require("react/jsx-runtime");
6030
6042
 
6031
6043
  // src/chip/templates/chip-normal.tsx
6032
- var import_jsx_runtime61 = require("react/jsx-runtime");
6044
+ var import_jsx_runtime65 = require("react/jsx-runtime");
6033
6045
 
6034
6046
  // src/chip/templates/chip-removable.tsx
6035
- var import_jsx_runtime62 = require("react/jsx-runtime");
6047
+ var import_jsx_runtime66 = require("react/jsx-runtime");
6036
6048
 
6037
6049
  // src/grid/tests/grid-sticky-columns-rtl.tsx
6038
- var import_jsx_runtime63 = require("react/jsx-runtime");
6039
- var grid_sticky_columns_rtl_default = () => /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(import_jsx_runtime63.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { id: "test-area", className: "k-d-grid", children: [
6040
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("p", { children: "React Grid - Sticky columns - RTL" }),
6041
- /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: "k-grid k-grid-md k-rtl", role: "grid", style: { height: "700px", width: "500px" }, children: [
6042
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("div", { className: "k-grouping-header", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(ChipList, { children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(Chip, { icon: "sort-asc-small", actions: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(ChipAction, { type: "remove" }), children: "shipName" }) }) }),
6043
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("div", { className: "k-grid-header", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("div", { className: "k-grid-header-wrap", style: { borderWidth: "0px" }, children: /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("table", { className: "k-table k-table-md k-grid-header-table", style: { width: "1434px" }, children: [
6044
- /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("colgroup", { children: [
6045
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("col", { width: "32px" }),
6046
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("col", { width: "32px" }),
6047
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("col", { width: "200px" }),
6048
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("col", { width: "300px" }),
6049
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("col", { width: "280px" }),
6050
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("col", { width: "200px" }),
6051
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("col", { width: "300px" }),
6052
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("col", { width: "90px" })
6050
+ var import_jsx_runtime67 = require("react/jsx-runtime");
6051
+ var grid_sticky_columns_rtl_default = () => /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(import_jsx_runtime67.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { id: "test-area", className: "k-d-grid", children: [
6052
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("p", { children: "React Grid - Sticky columns - RTL" }),
6053
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: "k-grid k-grid-md k-rtl", role: "grid", style: { height: "700px", width: "500px" }, children: [
6054
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("div", { className: "k-grouping-header", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(ChipList, { children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(Chip, { icon: "sort-asc-small", actions: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(ChipAction, { type: "remove" }), children: "shipName" }) }) }),
6055
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("div", { className: "k-grid-header", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("div", { className: "k-grid-header-wrap", style: { borderWidth: "0px" }, children: /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("table", { className: "k-table k-table-md k-grid-header-table", style: { width: "1434px" }, children: [
6056
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("colgroup", { children: [
6057
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("col", { width: "32px" }),
6058
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("col", { width: "32px" }),
6059
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("col", { width: "200px" }),
6060
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("col", { width: "300px" }),
6061
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("col", { width: "280px" }),
6062
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("col", { width: "200px" }),
6063
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("col", { width: "300px" }),
6064
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("col", { width: "90px" })
6053
6065
  ] }),
6054
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("thead", { className: "k-table-thead", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("tr", { className: "k-table-row", role: "row", style: { touchAction: "none" }, children: [
6055
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("th", { colSpan: 1, rowSpan: 1, className: "k-table-th k-header", style: { left: "0px", right: "0px" } }),
6056
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("th", { colSpan: 1, rowSpan: 1, className: "k-table-th k-header k-hierarchy-cell", style: { left: "0px", right: "0px" } }),
6057
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("th", { colSpan: 1, rowSpan: 1, className: "k-table-th k-header k-grid-header-sticky", style: { left: "90px", right: "0px" }, children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: "k-column-title", children: "customerID" }) }) }) }),
6058
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("th", { colSpan: 1, rowSpan: 1, className: "k-table-th k-header k-sorted", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("span", { className: "k-link", children: [
6059
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: "k-column-title", children: "customerID" }),
6060
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: "k-sort-icon", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(Icon, { icon: "sort-desc-small" }) })
6066
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("thead", { className: "k-table-thead", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("tr", { className: "k-table-row", role: "row", style: { touchAction: "none" }, children: [
6067
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("th", { colSpan: 1, rowSpan: 1, className: "k-table-th k-header", style: { left: "0px", right: "0px" } }),
6068
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("th", { colSpan: 1, rowSpan: 1, className: "k-table-th k-header k-hierarchy-cell", style: { left: "0px", right: "0px" } }),
6069
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("th", { colSpan: 1, rowSpan: 1, className: "k-table-th k-header k-grid-header-sticky", style: { left: "90px", right: "0px" }, children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("span", { className: "k-column-title", children: "customerID" }) }) }) }),
6070
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("th", { colSpan: 1, rowSpan: 1, className: "k-table-th k-header k-sorted", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("span", { className: "k-link", children: [
6071
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("span", { className: "k-column-title", children: "customerID" }),
6072
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("span", { className: "k-sort-icon", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(Icon, { icon: "sort-desc-small" }) })
6061
6073
  ] }) }) }),
6062
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("th", { colSpan: 1, rowSpan: 1, className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: "k-column-title", children: "shipName" }) }) }) }),
6063
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("th", { colSpan: 1, rowSpan: 1, className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: "k-column-title", children: "freight" }) }) }) }),
6064
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("th", { colSpan: 1, rowSpan: 1, className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: "k-column-title", children: "shippedDate" }) }) }) }),
6065
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("th", { colSpan: 1, rowSpan: 1, className: "k-table-th k-header k-grid-header-sticky", style: { left: "0px", right: "200px" }, children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("span", { className: "k-column-title", children: "ID" }) }) }) })
6074
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("th", { colSpan: 1, rowSpan: 1, className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("span", { className: "k-column-title", children: "shipName" }) }) }) }),
6075
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("th", { colSpan: 1, rowSpan: 1, className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("span", { className: "k-column-title", children: "freight" }) }) }) }),
6076
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("th", { colSpan: 1, rowSpan: 1, className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("span", { className: "k-column-title", children: "shippedDate" }) }) }) }),
6077
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("th", { colSpan: 1, rowSpan: 1, className: "k-table-th k-header k-grid-header-sticky", style: { left: "0px", right: "200px" }, children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("span", { className: "k-column-title", children: "ID" }) }) }) })
6066
6078
  ] }) })
6067
6079
  ] }) }) }),
6068
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("div", { className: "k-grid-container", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("div", { className: "k-grid-content k-virtual-content", children: [
6069
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("div", { style: { position: "relative" }, children: /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("table", { className: "k-table k-table-md k-grid-table", style: { width: "1434px" }, children: [
6070
- /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("colgroup", { children: [
6071
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("col", { width: "32px" }),
6072
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("col", { width: "32px" }),
6073
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("col", { width: "200px" }),
6074
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("col", { className: "k-sorted", width: "300px" }),
6075
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("col", { width: "280px" }),
6076
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("col", { width: "200px" }),
6077
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("col", { width: "300px" }),
6078
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("col", { width: "90px" })
6080
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("div", { className: "k-grid-container", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: "k-grid-content k-virtual-content", children: [
6081
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("div", { style: { position: "relative" }, children: /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("table", { className: "k-table k-table-md k-grid-table", style: { width: "1434px" }, children: [
6082
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("colgroup", { children: [
6083
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("col", { width: "32px" }),
6084
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("col", { width: "32px" }),
6085
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("col", { width: "200px" }),
6086
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("col", { className: "k-sorted", width: "300px" }),
6087
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("col", { width: "280px" }),
6088
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("col", { width: "200px" }),
6089
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("col", { width: "300px" }),
6090
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("col", { width: "90px" })
6079
6091
  ] }),
6080
- /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("tbody", { className: "k-table-tbody", children: [
6081
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("tr", { className: "k-table-row k-table-group-row k-grouping-row", role: "row", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td", colSpan: 8, style: { left: "0px", right: "0px" }, children: /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("p", { className: "k-reset", children: [
6082
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(Icon, { icon: "caret-alt-down" }),
6092
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("tbody", { className: "k-table-tbody", children: [
6093
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("tr", { className: "k-table-row k-table-group-row k-grouping-row", role: "row", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td", colSpan: 8, style: { left: "0px", right: "0px" }, children: /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("p", { className: "k-reset", children: [
6094
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(Icon, { icon: "caret-alt-down" }),
6083
6095
  "Lehmanns Marktstand"
6084
6096
  ] }) }) }),
6085
- /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("tr", { className: "k-table-row k-master-row", role: "row", children: [
6086
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td k-table-group-td k-group-cell", style: { left: "0px", right: "0px" } }),
6087
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td k-hierarchy-cell", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(Icon, { icon: "plus" }) }),
6088
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td k-grid-content-sticky", colSpan: 1, style: { left: "90px", right: "0px" }, children: "LEHMS" }),
6089
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Saturday, January 13, 1996" }),
6090
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Lehmanns Marktstand" }),
6091
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td", colSpan: 1, children: "25.83" }),
6092
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Tuesday, January 16, 1996" }),
6093
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td k-grid-content-sticky", colSpan: 1, style: { left: "0px", right: "200px" }, children: "10279" })
6097
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("tr", { className: "k-table-row k-master-row", role: "row", children: [
6098
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td k-table-group-td k-group-cell", style: { left: "0px", right: "0px" } }),
6099
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td k-hierarchy-cell", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(Icon, { icon: "plus" }) }),
6100
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td k-grid-content-sticky", colSpan: 1, style: { left: "90px", right: "0px" }, children: "LEHMS" }),
6101
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Saturday, January 13, 1996" }),
6102
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Lehmanns Marktstand" }),
6103
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td", colSpan: 1, children: "25.83" }),
6104
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Tuesday, January 16, 1996" }),
6105
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td k-grid-content-sticky", colSpan: 1, style: { left: "0px", right: "200px" }, children: "10279" })
6094
6106
  ] }),
6095
- /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("tr", { className: "k-table-row k-table-alt-row k-master-row k-alt", role: "row", children: [
6096
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td k-table-group-td k-group-cell", style: { left: "0px", right: "0px" } }),
6097
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td k-hierarchy-cell", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(Icon, { icon: "plus" }) }),
6098
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td k-grid-content-sticky", colSpan: 1, style: { left: "90px", right: "0px" }, children: "LEHMS" }),
6099
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Saturday, January 13, 1996" }),
6100
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Lehmanns Marktstand" }),
6101
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td", colSpan: 1, children: "25.83" }),
6102
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Tuesday, January 16, 1996" }),
6103
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td k-grid-content-sticky", colSpan: 1, style: { left: "0px", right: "200px" }, children: "10279" })
6107
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("tr", { className: "k-table-row k-table-alt-row k-master-row k-alt", role: "row", children: [
6108
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td k-table-group-td k-group-cell", style: { left: "0px", right: "0px" } }),
6109
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td k-hierarchy-cell", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(Icon, { icon: "plus" }) }),
6110
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td k-grid-content-sticky", colSpan: 1, style: { left: "90px", right: "0px" }, children: "LEHMS" }),
6111
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Saturday, January 13, 1996" }),
6112
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Lehmanns Marktstand" }),
6113
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td", colSpan: 1, children: "25.83" }),
6114
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Tuesday, January 16, 1996" }),
6115
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td k-grid-content-sticky", colSpan: 1, style: { left: "0px", right: "200px" }, children: "10279" })
6104
6116
  ] }),
6105
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("tr", { className: "k-table-row k-table-group-row k-grouping-row", role: "row", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td", colSpan: 8, style: { left: "0px", right: "0px" }, children: /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("p", { className: "k-reset", children: [
6106
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(Icon, { icon: "caret-alt-down" }),
6117
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("tr", { className: "k-table-row k-table-group-row k-grouping-row", role: "row", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td", colSpan: 8, style: { left: "0px", right: "0px" }, children: /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("p", { className: "k-reset", children: [
6118
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(Icon, { icon: "caret-alt-down" }),
6107
6119
  "Split Rail Beer & Ale"
6108
6120
  ] }) }) }),
6109
- /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("tr", { className: "k-table-row k-master-row", role: "row", children: [
6110
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td k-table-group-td k-group-cell", style: { left: "0px", right: "0px" } }),
6111
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td k-hierarchy-cell", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(Icon, { icon: "plus" }) }),
6112
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td k-grid-content-sticky", colSpan: 1, style: { left: "90px", right: "0px" }, children: "SPLIR" }),
6113
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Monday, January 1, 1996" }),
6114
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Split Rail Beer & Ale" }),
6115
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td", colSpan: 1, children: "4.54" }),
6116
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Tuesday, January 30, 1996" }),
6117
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td k-grid-content-sticky", colSpan: 1, style: { left: "0px", right: "200px" }, children: "10271" })
6121
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("tr", { className: "k-table-row k-master-row", role: "row", children: [
6122
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td k-table-group-td k-group-cell", style: { left: "0px", right: "0px" } }),
6123
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td k-hierarchy-cell", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(Icon, { icon: "plus" }) }),
6124
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td k-grid-content-sticky", colSpan: 1, style: { left: "90px", right: "0px" }, children: "SPLIR" }),
6125
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Monday, January 1, 1996" }),
6126
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Split Rail Beer & Ale" }),
6127
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td", colSpan: 1, children: "4.54" }),
6128
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Tuesday, January 30, 1996" }),
6129
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td k-grid-content-sticky", colSpan: 1, style: { left: "0px", right: "200px" }, children: "10271" })
6118
6130
  ] }),
6119
- /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("tr", { className: "k-table-row k-table-alt-row k-master-row k-alt", role: "row", children: [
6120
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td k-table-group-td k-group-cell", style: { left: "0px", right: "0px" } }),
6121
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td k-hierarchy-cell", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(Icon, { icon: "plus" }) }),
6122
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td k-grid-content-sticky", colSpan: 1, style: { left: "90px", right: "0px" }, children: "SPLIR" }),
6123
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Monday, January 1, 1996" }),
6124
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Split Rail Beer & Ale" }),
6125
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td", colSpan: 1, children: "4.54" }),
6126
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Tuesday, January 30, 1996" }),
6127
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td k-grid-content-sticky", colSpan: 1, style: { left: "0px", right: "200px" }, children: "10271" })
6131
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("tr", { className: "k-table-row k-table-alt-row k-master-row k-alt", role: "row", children: [
6132
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td k-table-group-td k-group-cell", style: { left: "0px", right: "0px" } }),
6133
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td k-hierarchy-cell", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(Icon, { icon: "plus" }) }),
6134
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td k-grid-content-sticky", colSpan: 1, style: { left: "90px", right: "0px" }, children: "SPLIR" }),
6135
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Monday, January 1, 1996" }),
6136
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Split Rail Beer & Ale" }),
6137
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td", colSpan: 1, children: "4.54" }),
6138
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Tuesday, January 30, 1996" }),
6139
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td k-grid-content-sticky", colSpan: 1, style: { left: "0px", right: "200px" }, children: "10271" })
6128
6140
  ] }),
6129
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("tr", { className: "k-table-row k-table-group-row k-grouping-row", role: "row", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td", colSpan: 8, style: { left: "0px", right: "0px" }, children: /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("p", { className: "k-reset", children: [
6130
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(Icon, { icon: "caret-alt-down" }),
6141
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("tr", { className: "k-table-row k-table-group-row k-grouping-row", role: "row", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td", colSpan: 8, style: { left: "0px", right: "0px" }, children: /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("p", { className: "k-reset", children: [
6142
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(Icon, { icon: "caret-alt-down" }),
6131
6143
  "Wartian Herkku"
6132
6144
  ] }) }) }),
6133
- /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("tr", { className: "k-table-row k-master-row", role: "row", children: [
6134
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td k-table-group-td k-group-cell", style: { left: "0px", right: "0px" } }),
6135
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td k-hierarchy-cell", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(Icon, { icon: "plus" }) }),
6136
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td k-grid-content-sticky", colSpan: 1, style: { left: "90px", right: "0px" }, children: "WARTH" }),
6137
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Friday, January 26, 1996" }),
6138
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Wartian Herkku" }),
6139
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td", colSpan: 1, children: "25.73" }),
6140
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Wednesday, January 31, 1996" }),
6141
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td k-grid-content-sticky", colSpan: 1, style: { left: "0px", right: "200px" }, children: "10266" })
6145
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("tr", { className: "k-table-row k-master-row", role: "row", children: [
6146
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td k-table-group-td k-group-cell", style: { left: "0px", right: "0px" } }),
6147
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td k-hierarchy-cell", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(Icon, { icon: "plus" }) }),
6148
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td k-grid-content-sticky", colSpan: 1, style: { left: "90px", right: "0px" }, children: "WARTH" }),
6149
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Friday, January 26, 1996" }),
6150
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Wartian Herkku" }),
6151
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td", colSpan: 1, children: "25.73" }),
6152
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Wednesday, January 31, 1996" }),
6153
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td k-grid-content-sticky", colSpan: 1, style: { left: "0px", right: "200px" }, children: "10266" })
6142
6154
  ] }),
6143
- /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)("tr", { className: "k-table-row k-table-alt-row k-master-row k-alt", role: "row", children: [
6144
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td k-table-group-td k-group-cell", style: { left: "0px", right: "0px" } }),
6145
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td k-hierarchy-cell", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(Icon, { icon: "plus" }) }),
6146
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td k-grid-content-sticky", colSpan: 1, style: { left: "90px", right: "0px" }, children: "WARTH" }),
6147
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Friday, January 26, 1996" }),
6148
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Wartian Herkku" }),
6149
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td", colSpan: 1, children: "25.73" }),
6150
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Wednesday, January 31, 1996" }),
6151
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("td", { className: "k-table-td k-grid-content-sticky", colSpan: 1, style: { left: "0px", right: "200px" }, children: "10266" })
6155
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("tr", { className: "k-table-row k-table-alt-row k-master-row k-alt", role: "row", children: [
6156
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td k-table-group-td k-group-cell", style: { left: "0px", right: "0px" } }),
6157
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td k-hierarchy-cell", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(Icon, { icon: "plus" }) }),
6158
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td k-grid-content-sticky", colSpan: 1, style: { left: "90px", right: "0px" }, children: "WARTH" }),
6159
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Friday, January 26, 1996" }),
6160
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Wartian Herkku" }),
6161
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td", colSpan: 1, children: "25.73" }),
6162
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td", colSpan: 1, children: "Wednesday, January 31, 1996" }),
6163
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("td", { className: "k-table-td k-grid-content-sticky", colSpan: 1, style: { left: "0px", right: "200px" }, children: "10266" })
6152
6164
  ] })
6153
6165
  ] })
6154
6166
  ] }) }),
6155
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("div", { className: "k-height-container", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("div", {}) })
6167
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("div", { className: "k-height-container", children: /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("div", {}) })
6156
6168
  ] }) }),
6157
- /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(Pager, { className: "k-grid-pager", adaptive: true, pageSizes: false, dir: "rtl", info: false })
6169
+ /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(Pager, { className: "k-grid-pager", adaptive: true, pageSizes: false, dir: "rtl", info: false })
6158
6170
  ] })
6159
6171
  ] }) });