@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/skeleton/skeleton.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/skeleton/skeleton.spec.tsx
5809
+ var import_jsx_runtime56 = require("react/jsx-runtime");
5798
5810
  var SKELETON_CLASSNAME = `k-skeleton`;
5799
5811
  var states24 = [];
5800
5812
  var options23 = {};
@@ -5808,7 +5820,7 @@ var Skeleton = (props) => {
5808
5820
  animation = defaultProps21.animation,
5809
5821
  ...other
5810
5822
  } = props;
5811
- return /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
5823
+ return /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
5812
5824
  "span",
5813
5825
  {
5814
5826
  ...other,
@@ -5830,128 +5842,128 @@ Skeleton.className = SKELETON_CLASSNAME;
5830
5842
  Skeleton.defaultProps = defaultProps21;
5831
5843
 
5832
5844
  // src/grid/tests/grid-rtl-angular.tsx
5833
- var import_jsx_runtime53 = require("react/jsx-runtime");
5834
- var grid_rtl_angular_default = () => /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(import_jsx_runtime53.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("div", { id: "test-area", className: "k-d-grid k-grid-cols-2", children: [
5835
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "col-2", children: "Angular grid" }),
5836
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("section", { className: "col-2", children: [
5837
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("div", { className: "k-grid k-grid-md k-grid-no-scrollbar", dir: "rtl", children: [
5838
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("div", { className: "k-grid-aria-root", children: [
5839
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: "k-grid-header", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: "k-grid-header-wrap", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("table", { className: "k-table k-table-md k-grid-header-table", children: [
5840
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("colgroup", { children: [
5841
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("col", { style: { width: "100px" } }),
5842
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("col", {})
5845
+ var import_jsx_runtime57 = require("react/jsx-runtime");
5846
+ var grid_rtl_angular_default = () => /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(import_jsx_runtime57.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("div", { id: "test-area", className: "k-d-grid k-grid-cols-2", children: [
5847
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "col-2", children: "Angular grid" }),
5848
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("section", { className: "col-2", children: [
5849
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("div", { className: "k-grid k-grid-md k-grid-no-scrollbar", dir: "rtl", children: [
5850
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("div", { className: "k-grid-aria-root", children: [
5851
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { className: "k-grid-header", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { className: "k-grid-header-wrap", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("table", { className: "k-table k-table-md k-grid-header-table", children: [
5852
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("colgroup", { children: [
5853
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("col", { style: { width: "100px" } }),
5854
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("col", {})
5843
5855
  ] }),
5844
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("thead", { className: "k-table-thead", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("tr", { className: "k-table-row", children: [
5845
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("th", { className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-column-title", children: "100px" }) }) }) }),
5846
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("th", { className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-column-title", children: "no width" }) }) }) })
5856
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("thead", { className: "k-table-thead", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("tr", { className: "k-table-row", children: [
5857
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("th", { className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-column-title", children: "100px" }) }) }) }),
5858
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("th", { className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-column-title", children: "no width" }) }) }) })
5847
5859
  ] }) })
5848
5860
  ] }) }) }),
5849
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: "k-grid-container", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("div", { className: "k-grid-content k-virtual-content", children: [
5850
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("table", { className: "k-table k-table-md k-grid-table", children: [
5851
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("colgroup", { children: [
5852
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("col", { style: { width: "100px" } }),
5853
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("col", {})
5861
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { className: "k-grid-container", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("div", { className: "k-grid-content k-virtual-content", children: [
5862
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("table", { className: "k-table k-table-md k-grid-table", children: [
5863
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("colgroup", { children: [
5864
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("col", { style: { width: "100px" } }),
5865
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("col", {})
5854
5866
  ] }),
5855
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("tbody", { className: "k-table-tbody", children: [
5856
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("tr", { className: "k-table-row", children: [
5857
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "1" }),
5858
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "Row" })
5867
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("tbody", { className: "k-table-tbody", children: [
5868
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("tr", { className: "k-table-row", children: [
5869
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "1" }),
5870
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "Row" })
5859
5871
  ] }),
5860
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("tr", { className: "k-table-row k-table-alt-row k-alt", children: [
5861
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "2" }),
5862
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "Alt row" })
5872
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("tr", { className: "k-table-row k-table-alt-row k-alt", children: [
5873
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "2" }),
5874
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "Alt row" })
5863
5875
  ] }),
5864
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("tr", { className: "k-table-row", children: [
5865
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "3" }),
5866
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "This text continues to the end of the grid to test overflow behavior of row contents, as well as line height and vertical alignment." })
5876
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("tr", { className: "k-table-row", children: [
5877
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "3" }),
5878
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "This text continues to the end of the grid to test overflow behavior of row contents, as well as line height and vertical alignment." })
5867
5879
  ] }),
5868
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("tr", { className: "k-table-row k-table-alt-row k-alt", children: [
5869
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "4" }),
5870
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(Skeleton, { animation: false }) })
5880
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("tr", { className: "k-table-row k-table-alt-row k-alt", children: [
5881
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "4" }),
5882
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(Skeleton, { animation: false }) })
5871
5883
  ] }),
5872
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("tr", { className: "k-table-row", children: [
5873
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "5" }),
5874
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(Skeleton, { animation: false }) })
5884
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("tr", { className: "k-table-row", children: [
5885
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "5" }),
5886
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(Skeleton, { animation: false }) })
5875
5887
  ] })
5876
5888
  ] })
5877
5889
  ] }) }),
5878
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: "k-height-container", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { style: { height: "0px" } }) })
5890
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { className: "k-height-container", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { style: { height: "0px" } }) })
5879
5891
  ] }) })
5880
5892
  ] }),
5881
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(Pager, { className: "k-grid-pager", dir: "rtl" })
5893
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(Pager, { className: "k-grid-pager", dir: "rtl" })
5882
5894
  ] }),
5883
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: "k-marquee", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: "k-marquee-color" }) })
5895
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { className: "k-marquee", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { className: "k-marquee-color" }) })
5884
5896
  ] }),
5885
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "col-2", children: "Angular -- fixed height, hierarchy, filter menu, sort icon" }),
5886
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("section", { className: "col-2", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: "k-grid k-grid-md k-grid-no-scrollbar", style: { height: "250px" }, dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("div", { className: "k-grid-aria-root", children: [
5887
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: "k-grid-header", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: "k-grid-header-wrap", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("table", { className: "k-table k-table-md k-grid-header-table", children: [
5888
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("colgroup", { children: [
5889
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("col", { className: "k-hierarchy-col" }),
5890
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("col", {}),
5891
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("col", {}),
5892
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("col", {}),
5893
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("col", {})
5897
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "col-2", children: "Angular -- fixed height, hierarchy, filter menu, sort icon" }),
5898
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("section", { className: "col-2", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { className: "k-grid k-grid-md k-grid-no-scrollbar", style: { height: "250px" }, dir: "rtl", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("div", { className: "k-grid-aria-root", children: [
5899
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { className: "k-grid-header", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { className: "k-grid-header-wrap", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("table", { className: "k-table k-table-md k-grid-header-table", children: [
5900
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("colgroup", { children: [
5901
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("col", { className: "k-hierarchy-col" }),
5902
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("col", {}),
5903
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("col", {}),
5904
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("col", {}),
5905
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("col", {})
5894
5906
  ] }),
5895
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("thead", { className: "k-table-thead", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("tr", { className: "k-table-row", children: [
5896
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("th", { className: "k-table-th k-header k-hierarchy-cell" }),
5897
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("th", { className: "k-table-th k-header k-filterable", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("span", { className: "k-cell-inner", children: [
5898
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-column-title", children: "Default" }) }),
5899
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(Icon, { icon: "filter" }) }) })
5907
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("thead", { className: "k-table-thead", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("tr", { className: "k-table-row", children: [
5908
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("th", { className: "k-table-th k-header k-hierarchy-cell" }),
5909
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("th", { className: "k-table-th k-header k-filterable", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("span", { className: "k-cell-inner", children: [
5910
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-column-title", children: "Default" }) }),
5911
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(Icon, { icon: "filter" }) }) })
5900
5912
  ] }) }),
5901
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("th", { className: "k-table-th k-header k-filterable", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("span", { className: "k-cell-inner", children: [
5902
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-column-title", children: "Hover" }) }),
5903
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(Icon, { icon: "filter" }) }) })
5913
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("th", { className: "k-table-th k-header k-filterable", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("span", { className: "k-cell-inner", children: [
5914
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-column-title", children: "Hover" }) }),
5915
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(Icon, { icon: "filter" }) }) })
5904
5916
  ] }) }),
5905
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("th", { className: "k-table-th k-header k-filterable k-focus", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("span", { className: "k-cell-inner", children: [
5906
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-column-title", children: "Focus" }) }),
5907
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(Icon, { icon: "filter" }) }) })
5917
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("th", { className: "k-table-th k-header k-filterable k-focus", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("span", { className: "k-cell-inner", children: [
5918
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-column-title", children: "Focus" }) }),
5919
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(Icon, { icon: "filter" }) }) })
5908
5920
  ] }) }),
5909
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("th", { className: "k-table-th k-header k-filterable", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("span", { className: "k-cell-inner", children: [
5910
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-column-title", children: "Active" }) }),
5911
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu k-active", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(Icon, { icon: "filter" }) }) })
5921
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("th", { className: "k-table-th k-header k-filterable", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("span", { className: "k-cell-inner", children: [
5922
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-column-title", children: "Active" }) }),
5923
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu k-active", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(Icon, { icon: "filter" }) }) })
5912
5924
  ] }) }),
5913
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("th", { className: "k-table-th k-header k-filterable k-sorted", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("span", { className: "k-cell-inner", children: [
5914
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("span", { className: "k-link", children: [
5915
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-column-title", children: "Sorted" }),
5916
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-sort-icon", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(Icon, { icon: "sort-asc-small" }) })
5925
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("th", { className: "k-table-th k-header k-filterable k-sorted", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("span", { className: "k-cell-inner", children: [
5926
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("span", { className: "k-link", children: [
5927
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-column-title", children: "Sorted" }),
5928
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-sort-icon", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(Icon, { icon: "sort-asc-small" }) })
5917
5929
  ] }),
5918
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(Icon, { icon: "filter" }) }) })
5930
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(Icon, { icon: "filter" }) }) })
5919
5931
  ] }) })
5920
5932
  ] }) })
5921
5933
  ] }) }) }),
5922
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: "k-grid-container", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("div", { className: "k-grid-content k-virtual-content", children: [
5923
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("table", { className: "k-table k-table-md k-grid-table", children: [
5924
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("colgroup", { children: [
5925
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("col", { className: "k-hierarchy-col" }),
5926
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("col", {}),
5927
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("col", {}),
5928
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("col", {}),
5929
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("col", {})
5934
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { className: "k-grid-container", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("div", { className: "k-grid-content k-virtual-content", children: [
5935
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("table", { className: "k-table k-table-md k-grid-table", children: [
5936
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("colgroup", { children: [
5937
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("col", { className: "k-hierarchy-col" }),
5938
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("col", {}),
5939
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("col", {}),
5940
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("col", {}),
5941
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("col", {})
5930
5942
  ] }),
5931
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("tbody", { className: "k-table-tbody", children: [
5932
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("tr", { className: "k-table-row k-master-row k-expanded", children: [
5933
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td k-hierarchy-cell", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(Icon, { icon: "minus" }) }),
5934
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "1" }),
5935
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "Text" }),
5936
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "Text" }),
5937
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "Text" }),
5938
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "Text" })
5943
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("tbody", { className: "k-table-tbody", children: [
5944
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("tr", { className: "k-table-row k-master-row k-expanded", children: [
5945
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td k-hierarchy-cell", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(Icon, { icon: "minus" }) }),
5946
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "1" }),
5947
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "Text" }),
5948
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "Text" }),
5949
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "Text" }),
5950
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "Text" })
5939
5951
  ] }),
5940
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("tr", { className: "k-table-row k-detail-row", children: [
5941
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td k-hierarchy-cell" }),
5942
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td k-detail-cell", colSpan: 5, children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { style: { background: "#ccc", padding: "10px" }, children: "Nested content" }) })
5952
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("tr", { className: "k-table-row k-detail-row", children: [
5953
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td k-hierarchy-cell" }),
5954
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td k-detail-cell", colSpan: 5, children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { style: { background: "#ccc", padding: "10px" }, children: "Nested content" }) })
5943
5955
  ] }),
5944
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("tr", { className: "k-table-row k-table-alt-row k-alt k-master-row", children: [
5945
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td k-hierarchy-cell", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(Icon, { icon: "plus" }) }),
5946
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "2" }),
5947
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "Text" }),
5948
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "Text" }),
5949
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "Text" }),
5950
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "Text" })
5956
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("tr", { className: "k-table-row k-table-alt-row k-alt k-master-row", children: [
5957
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td k-hierarchy-cell", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(Icon, { icon: "plus" }) }),
5958
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "2" }),
5959
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "Text" }),
5960
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "Text" }),
5961
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "Text" }),
5962
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "Text" })
5951
5963
  ] })
5952
5964
  ] })
5953
5965
  ] }) }),
5954
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: "k-height-container", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", {}) })
5966
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { className: "k-height-container", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", {}) })
5955
5967
  ] }) })
5956
5968
  ] }) }) })
5957
5969
  ] }) });
@@ -5793,8 +5793,20 @@ Pager.options = options22;
5793
5793
  Pager.className = PAGER_CLASSNAME;
5794
5794
  Pager.defaultProps = defaultProps20;
5795
5795
 
5796
- // src/skeleton/skeleton.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/skeleton/skeleton.spec.tsx
5809
+ var import_jsx_runtime56 = require("react/jsx-runtime");
5798
5810
  var SKELETON_CLASSNAME = `k-skeleton`;
5799
5811
  var states24 = [];
5800
5812
  var options23 = {};
@@ -5808,7 +5820,7 @@ var Skeleton = (props) => {
5808
5820
  animation = defaultProps21.animation,
5809
5821
  ...other
5810
5822
  } = props;
5811
- return /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
5823
+ return /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
5812
5824
  "span",
5813
5825
  {
5814
5826
  ...other,
@@ -5830,115 +5842,115 @@ Skeleton.className = SKELETON_CLASSNAME;
5830
5842
  Skeleton.defaultProps = defaultProps21;
5831
5843
 
5832
5844
  // src/grid/tests/grid-rtl.tsx
5833
- var import_jsx_runtime53 = require("react/jsx-runtime");
5834
- var grid_rtl_default = () => /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(import_jsx_runtime53.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("div", { id: "test-area", className: "k-d-grid k-grid-cols-1", children: [
5835
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { children: "jQuery grid" }),
5836
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("section", { children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("div", { className: "k-grid k-grid-md k-grid-no-scrollbar", dir: "rtl", children: [
5837
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: "k-grid-header", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: "k-grid-header-wrap", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("table", { className: "k-table k-table-md k-grid-header-table", children: [
5838
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("colgroup", { children: [
5839
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("col", { style: { width: "100px" } }),
5840
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("col", {})
5845
+ var import_jsx_runtime57 = require("react/jsx-runtime");
5846
+ var grid_rtl_default = () => /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(import_jsx_runtime57.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("div", { id: "test-area", className: "k-d-grid k-grid-cols-1", children: [
5847
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { children: "jQuery grid" }),
5848
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("section", { children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("div", { className: "k-grid k-grid-md k-grid-no-scrollbar", dir: "rtl", children: [
5849
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { className: "k-grid-header", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { className: "k-grid-header-wrap", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("table", { className: "k-table k-table-md k-grid-header-table", children: [
5850
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("colgroup", { children: [
5851
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("col", { style: { width: "100px" } }),
5852
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("col", {})
5841
5853
  ] }),
5842
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("thead", { className: "k-table-thead", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("tr", { className: "k-table-row", children: [
5843
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("th", { className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-column-title", children: "100px" }) }) }) }),
5844
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("th", { className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-column-title", children: "no width" }) }) }) })
5854
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("thead", { className: "k-table-thead", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("tr", { className: "k-table-row", children: [
5855
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("th", { className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-column-title", children: "100px" }) }) }) }),
5856
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("th", { className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-column-title", children: "no width" }) }) }) })
5845
5857
  ] }) })
5846
5858
  ] }) }) }),
5847
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: "k-grid-content", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("table", { className: "k-table k-table-md k-grid-table", children: [
5848
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("colgroup", { children: [
5849
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("col", { style: { width: "100px" } }),
5850
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("col", {})
5859
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { className: "k-grid-content", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("table", { className: "k-table k-table-md k-grid-table", children: [
5860
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("colgroup", { children: [
5861
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("col", { style: { width: "100px" } }),
5862
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("col", {})
5851
5863
  ] }),
5852
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("tbody", { className: "k-table-tbody", children: [
5853
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("tr", { className: "k-table-row", children: [
5854
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "1" }),
5855
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "Row" })
5864
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("tbody", { className: "k-table-tbody", children: [
5865
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("tr", { className: "k-table-row", children: [
5866
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "1" }),
5867
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "Row" })
5856
5868
  ] }),
5857
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("tr", { className: "k-table-row k-table-alt-row k-alt", children: [
5858
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "2" }),
5859
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "Alt row" })
5869
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("tr", { className: "k-table-row k-table-alt-row k-alt", children: [
5870
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "2" }),
5871
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "Alt row" })
5860
5872
  ] }),
5861
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("tr", { className: "k-table-row", children: [
5862
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "3" }),
5863
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "This text continues to the end of the grid to test overflow behavior of row contents, as well as line height and vertical alignment." })
5873
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("tr", { className: "k-table-row", children: [
5874
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "3" }),
5875
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "This text continues to the end of the grid to test overflow behavior of row contents, as well as line height and vertical alignment." })
5864
5876
  ] }),
5865
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("tr", { className: "k-table-row k-table-alt-row k-alt", children: [
5866
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "4" }),
5867
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(Skeleton, { animation: false }) })
5877
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("tr", { className: "k-table-row k-table-alt-row k-alt", children: [
5878
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "4" }),
5879
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(Skeleton, { animation: false }) })
5868
5880
  ] }),
5869
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("tr", { className: "k-table-row", children: [
5870
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "5" }),
5871
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(Skeleton, { animation: false }) })
5881
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("tr", { className: "k-table-row", children: [
5882
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "5" }),
5883
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(Skeleton, { animation: false }) })
5872
5884
  ] })
5873
5885
  ] })
5874
5886
  ] }) }),
5875
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(Pager, { className: "k-grid-pager", dir: "rtl" })
5887
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(Pager, { className: "k-grid-pager", dir: "rtl" })
5876
5888
  ] }) }),
5877
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { children: "jQuery -- fixed height, hierarchy, filter menu, sort icon" }),
5878
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("section", { children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("div", { className: "k-grid k-grid-md k-grid-no-scrollbar", style: { height: "250px" }, dir: "rtl", children: [
5879
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: "k-grid-header", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: "k-grid-header-wrap", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("table", { className: "k-table k-table-md k-grid-header-table", children: [
5880
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("colgroup", { children: [
5881
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("col", { className: "k-hierarchy-col" }),
5882
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("col", {}),
5883
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("col", {}),
5884
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("col", {}),
5885
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("col", {})
5889
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { children: "jQuery -- fixed height, hierarchy, filter menu, sort icon" }),
5890
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("section", { children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("div", { className: "k-grid k-grid-md k-grid-no-scrollbar", style: { height: "250px" }, dir: "rtl", children: [
5891
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { className: "k-grid-header", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { className: "k-grid-header-wrap", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("table", { className: "k-table k-table-md k-grid-header-table", children: [
5892
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("colgroup", { children: [
5893
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("col", { className: "k-hierarchy-col" }),
5894
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("col", {}),
5895
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("col", {}),
5896
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("col", {}),
5897
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("col", {})
5886
5898
  ] }),
5887
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("thead", { className: "k-table-thead", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("tr", { className: "k-table-row", children: [
5888
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("th", { className: "k-table-th k-header k-hierarchy-cell" }),
5889
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("th", { className: "k-table-th k-header k-filterable", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("span", { className: "k-cell-inner", children: [
5890
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-column-title", children: "Default" }) }),
5891
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(Icon, { icon: "filter" }) })
5899
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("thead", { className: "k-table-thead", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("tr", { className: "k-table-row", children: [
5900
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("th", { className: "k-table-th k-header k-hierarchy-cell" }),
5901
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("th", { className: "k-table-th k-header k-filterable", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("span", { className: "k-cell-inner", children: [
5902
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-column-title", children: "Default" }) }),
5903
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(Icon, { icon: "filter" }) })
5892
5904
  ] }) }),
5893
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("th", { className: "k-table-th k-header k-filterable k-hover", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("span", { className: "k-cell-inner", children: [
5894
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-column-title", children: "Hover" }) }),
5895
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(Icon, { icon: "filter" }) })
5905
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("th", { className: "k-table-th k-header k-filterable k-hover", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("span", { className: "k-cell-inner", children: [
5906
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-column-title", children: "Hover" }) }),
5907
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(Icon, { icon: "filter" }) })
5896
5908
  ] }) }),
5897
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("th", { className: "k-table-th k-header k-filterable k-focus", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("span", { className: "k-cell-inner", children: [
5898
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-column-title", children: "Focus" }) }),
5899
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(Icon, { icon: "filter" }) })
5909
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("th", { className: "k-table-th k-header k-filterable k-focus", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("span", { className: "k-cell-inner", children: [
5910
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-column-title", children: "Focus" }) }),
5911
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(Icon, { icon: "filter" }) })
5900
5912
  ] }) }),
5901
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("th", { className: "k-table-th k-header k-filterable k-active", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("span", { className: "k-cell-inner", children: [
5902
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-column-title", children: "Active" }) }),
5903
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu k-active", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(Icon, { icon: "filter" }) })
5913
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("th", { className: "k-table-th k-header k-filterable k-active", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("span", { className: "k-cell-inner", children: [
5914
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-column-title", children: "Active" }) }),
5915
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu k-active", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(Icon, { icon: "filter" }) })
5904
5916
  ] }) }),
5905
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("th", { className: "k-table-th k-header k-filterable k-sorted", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("span", { className: "k-cell-inner", children: [
5906
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("span", { className: "k-link", children: [
5907
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-column-title", children: "Sorted" }),
5908
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "k-sort-icon", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(Icon, { icon: "sort-asc-small" }) })
5917
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("th", { className: "k-table-th k-header k-filterable k-sorted", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("span", { className: "k-cell-inner", children: [
5918
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("span", { className: "k-link", children: [
5919
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-column-title", children: "Sorted" }),
5920
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("span", { className: "k-sort-icon", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(Icon, { icon: "sort-asc-small" }) })
5909
5921
  ] }),
5910
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(Icon, { icon: "filter" }) })
5922
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(Icon, { icon: "filter" }) })
5911
5923
  ] }) })
5912
5924
  ] }) })
5913
5925
  ] }) }) }),
5914
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: "k-grid-content", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("table", { className: "k-table k-table-md k-grid-table", children: [
5915
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("colgroup", { children: [
5916
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("col", { className: "k-hierarchy-col" }),
5917
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("col", {}),
5918
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("col", {}),
5919
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("col", {}),
5920
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("col", {})
5926
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { className: "k-grid-content", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("table", { className: "k-table k-table-md k-grid-table", children: [
5927
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("colgroup", { children: [
5928
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("col", { className: "k-hierarchy-col" }),
5929
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("col", {}),
5930
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("col", {}),
5931
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("col", {}),
5932
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("col", {})
5921
5933
  ] }),
5922
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("tbody", { className: "k-table-tbody", children: [
5923
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("tr", { className: "k-table-row k-master-row k-expanded", children: [
5924
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td k-hierarchy-cell", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(Icon, { icon: "caret-alt-down" }) }),
5925
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "1" }),
5926
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "Text" }),
5927
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "Text" }),
5928
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "Text" }),
5929
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "Text" })
5934
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("tbody", { className: "k-table-tbody", children: [
5935
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("tr", { className: "k-table-row k-master-row k-expanded", children: [
5936
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td k-hierarchy-cell", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(Icon, { icon: "caret-alt-down" }) }),
5937
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "1" }),
5938
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "Text" }),
5939
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "Text" }),
5940
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "Text" }),
5941
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "Text" })
5930
5942
  ] }),
5931
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("tr", { className: "k-table-row k-detail-row", children: [
5932
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td k-hierarchy-cell" }),
5933
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td k-detail-cell", colSpan: 5, children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { style: { background: "#ccc", padding: "10px" }, children: "Nested content" }) })
5943
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("tr", { className: "k-table-row k-detail-row", children: [
5944
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td k-hierarchy-cell" }),
5945
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td k-detail-cell", colSpan: 5, children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { style: { background: "#ccc", padding: "10px" }, children: "Nested content" }) })
5934
5946
  ] }),
5935
- /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("tr", { className: "k-table-row k-table-alt-row k-alt k-master-row", children: [
5936
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td k-hierarchy-cell", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(Icon, { icon: "caret-alt-left" }) }),
5937
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "2" }),
5938
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "Text" }),
5939
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "Text" }),
5940
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "Text" }),
5941
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("td", { className: "k-table-td", children: "Text" })
5947
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)("tr", { className: "k-table-row k-table-alt-row k-alt k-master-row", children: [
5948
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td k-hierarchy-cell", children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(Icon, { icon: "caret-alt-left" }) }),
5949
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "2" }),
5950
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "Text" }),
5951
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "Text" }),
5952
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "Text" }),
5953
+ /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("td", { className: "k-table-td", children: "Text" })
5942
5954
  ] })
5943
5955
  ] })
5944
5956
  ] }) })