@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.
- package/dist/cjs/grid/tests/grid-adaptive-pager.js +18 -6
- package/dist/cjs/grid/tests/grid-angular.js +160 -148
- package/dist/cjs/grid/tests/grid-column-reordering-actions.js +275 -263
- package/dist/cjs/grid/tests/grid-column-reordering.js +280 -268
- package/dist/cjs/grid/tests/grid-column-resizing-actions.js +311 -299
- package/dist/cjs/grid/tests/grid-grouping-actions.js +241 -229
- package/dist/cjs/grid/tests/grid-pager.js +104 -92
- package/dist/cjs/grid/tests/grid-row-reordering.js +233 -221
- package/dist/cjs/grid/tests/grid-rtl-angular.js +106 -94
- package/dist/cjs/grid/tests/grid-rtl.js +99 -87
- package/dist/cjs/grid/tests/grid-selection-aggregates.js +108 -96
- package/dist/cjs/grid/tests/grid-size-sm-comp-sm.js +348 -336
- package/dist/cjs/grid/tests/grid-size-sm.js +348 -336
- package/dist/cjs/grid/tests/grid-sticky-columns-rtl.js +135 -123
- package/dist/cjs/grid/tests/grid.js +124 -112
- package/dist/cjs/index.js +1326 -1286
- package/dist/cjs/listview/listview.spec.js +22 -10
- package/dist/cjs/listview/tests/listview-layout.js +63 -51
- package/dist/cjs/listview/tests/listview-loading.js +34 -22
- package/dist/cjs/listview/tests/listview.js +49 -37
- package/dist/cjs/pager/index.js +41 -1
- package/dist/cjs/pager/templates/pager-adaptive-input.js +5806 -0
- package/dist/cjs/pager/templates/pager-adaptive.js +5805 -0
- package/dist/cjs/pager/templates/pager-input.js +5805 -0
- package/dist/cjs/pager/templates/pager-normal.js +5799 -0
- package/dist/cjs/pager/tests/pager-adaptive.js +49 -13
- package/dist/cjs/pager/tests/pager-sizes.js +34 -21
- package/dist/cjs/pager/tests/pager.js +27 -10
- package/dist/cjs/pdf-viewer/tests/pdf-viewer-blank-page-blazor.js +25 -13
- package/dist/cjs/pdf-viewer/tests/pdf-viewer-blank-page.js +31 -19
- package/dist/cjs/pdf-viewer/tests/pdf-viewer-search-panel.js +36 -24
- package/dist/cjs/pdf-viewer/tests/pdf-viewer.js +25 -13
- package/dist/esm/grid/tests/grid-adaptive-pager.js +18 -6
- package/dist/esm/grid/tests/grid-angular.js +130 -118
- package/dist/esm/grid/tests/grid-column-reordering-actions.js +232 -220
- package/dist/esm/grid/tests/grid-column-reordering.js +235 -223
- package/dist/esm/grid/tests/grid-column-resizing-actions.js +268 -256
- package/dist/esm/grid/tests/grid-grouping-actions.js +210 -198
- package/dist/esm/grid/tests/grid-pager.js +82 -70
- package/dist/esm/grid/tests/grid-row-reordering.js +206 -194
- package/dist/esm/grid/tests/grid-rtl-angular.js +88 -76
- package/dist/esm/grid/tests/grid-rtl.js +84 -72
- package/dist/esm/grid/tests/grid-selection-aggregates.js +80 -68
- package/dist/esm/grid/tests/grid-size-sm-comp-sm.js +289 -277
- package/dist/esm/grid/tests/grid-size-sm.js +289 -277
- package/dist/esm/grid/tests/grid-sticky-columns-rtl.js +124 -112
- package/dist/esm/grid/tests/grid.js +104 -92
- package/dist/esm/index.js +1044 -1004
- package/dist/esm/listview/listview.spec.js +20 -8
- package/dist/esm/listview/tests/listview-layout.js +49 -37
- package/dist/esm/listview/tests/listview-loading.js +29 -17
- package/dist/esm/listview/tests/listview.js +39 -27
- package/dist/esm/pager/index.js +41 -1
- package/dist/esm/pager/templates/pager-adaptive-input.js +5790 -0
- package/dist/esm/pager/templates/pager-adaptive.js +5789 -0
- package/dist/esm/pager/templates/pager-input.js +5789 -0
- package/dist/esm/pager/templates/pager-normal.js +5783 -0
- package/dist/esm/pager/tests/pager-adaptive.js +47 -11
- package/dist/esm/pager/tests/pager-sizes.js +34 -21
- package/dist/esm/pager/tests/pager.js +27 -10
- package/dist/esm/pdf-viewer/tests/pdf-viewer-blank-page-blazor.js +23 -11
- package/dist/esm/pdf-viewer/tests/pdf-viewer-blank-page.js +27 -15
- package/dist/esm/pdf-viewer/tests/pdf-viewer-search-panel.js +30 -18
- package/dist/esm/pdf-viewer/tests/pdf-viewer.js +23 -11
- package/dist/types/floating-label/floating-label.spec.d.ts +6 -2
- package/dist/types/pager/index.d.ts +4 -0
- package/dist/types/pager/templates/pager-adaptive-input.d.ts +1 -0
- package/dist/types/pager/templates/pager-adaptive.d.ts +1 -0
- package/dist/types/pager/templates/pager-input.d.ts +1 -0
- package/dist/types/pager/templates/pager-normal.d.ts +1 -0
- package/package.json +2 -2
- package/src/floating-label/floating-label.spec.tsx +7 -2
- package/src/pager/index.tsx +4 -0
- package/src/pager/templates/pager-adaptive-input.tsx +9 -0
- package/src/pager/templates/pager-adaptive.tsx +8 -0
- package/src/pager/templates/pager-input.tsx +8 -0
- package/src/pager/templates/pager-normal.tsx +3 -0
- package/src/pager/tests/pager-adaptive.tsx +7 -7
- package/src/pager/tests/pager-sizes.tsx +9 -22
- package/src/pager/tests/pager.tsx +21 -19
|
@@ -5793,136 +5793,148 @@ Pager.options = options22;
|
|
|
5793
5793
|
Pager.className = PAGER_CLASSNAME;
|
|
5794
5794
|
Pager.defaultProps = defaultProps20;
|
|
5795
5795
|
|
|
5796
|
-
// src/
|
|
5796
|
+
// src/pager/templates/pager-normal.tsx
|
|
5797
5797
|
var import_jsx_runtime52 = require("react/jsx-runtime");
|
|
5798
|
-
|
|
5799
|
-
|
|
5800
|
-
|
|
5801
|
-
|
|
5802
|
-
|
|
5803
|
-
|
|
5804
|
-
|
|
5805
|
-
|
|
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/grid/tests/grid-pager.tsx
|
|
5809
|
+
var import_jsx_runtime56 = require("react/jsx-runtime");
|
|
5810
|
+
var grid_pager_default = () => /* @__PURE__ */ (0, import_jsx_runtime56.jsx)(import_jsx_runtime56.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { id: "test-area", className: "k-d-grid k-grid-cols-2", children: [
|
|
5811
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("span", { children: "jQuery grid" }),
|
|
5812
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("span", { children: "Angular grid" }),
|
|
5813
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("section", { children: /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: "k-grid k-grid-md k-grid-no-scrollbar", children: [
|
|
5814
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("div", { className: "k-grid-header", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("div", { className: "k-grid-header-wrap", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("table", { className: "k-table k-table-md k-grid-header-table", children: [
|
|
5815
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("colgroup", { children: [
|
|
5816
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("col", { style: { width: "100px" } }),
|
|
5817
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("col", {})
|
|
5806
5818
|
] }),
|
|
5807
|
-
/* @__PURE__ */ (0,
|
|
5808
|
-
/* @__PURE__ */ (0,
|
|
5809
|
-
/* @__PURE__ */ (0,
|
|
5819
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("thead", { className: "k-table-thead", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("tr", { className: "k-table-row", children: [
|
|
5820
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("th", { className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("span", { className: "k-column-title", children: "100px" }) }) }) }),
|
|
5821
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("th", { className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("span", { className: "k-column-title", children: "no width" }) }) }) })
|
|
5810
5822
|
] }) })
|
|
5811
5823
|
] }) }) }),
|
|
5812
|
-
/* @__PURE__ */ (0,
|
|
5813
|
-
/* @__PURE__ */ (0,
|
|
5814
|
-
/* @__PURE__ */ (0,
|
|
5815
|
-
/* @__PURE__ */ (0,
|
|
5824
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("div", { className: "k-grid-content", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("table", { className: "k-table k-table-md k-grid-table", children: [
|
|
5825
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("colgroup", { children: [
|
|
5826
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("col", { style: { width: "100px" } }),
|
|
5827
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("col", {})
|
|
5816
5828
|
] }),
|
|
5817
|
-
/* @__PURE__ */ (0,
|
|
5818
|
-
/* @__PURE__ */ (0,
|
|
5819
|
-
/* @__PURE__ */ (0,
|
|
5820
|
-
/* @__PURE__ */ (0,
|
|
5829
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("tbody", { className: "k-table-tbody", children: [
|
|
5830
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("tr", { className: "k-table-row", children: [
|
|
5831
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("td", { className: "k-table-td", children: "1" }),
|
|
5832
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("td", { className: "k-table-td", children: "Row" })
|
|
5821
5833
|
] }),
|
|
5822
|
-
/* @__PURE__ */ (0,
|
|
5823
|
-
/* @__PURE__ */ (0,
|
|
5824
|
-
/* @__PURE__ */ (0,
|
|
5834
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("tr", { className: "k-table-row k-table-alt-row k-alt", children: [
|
|
5835
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("td", { className: "k-table-td", children: "2" }),
|
|
5836
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("td", { className: "k-table-td", children: "Alt row" })
|
|
5825
5837
|
] })
|
|
5826
5838
|
] })
|
|
5827
5839
|
] }) }),
|
|
5828
|
-
/* @__PURE__ */ (0,
|
|
5840
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)(Pager, { className: "k-grid-pager", focus: true })
|
|
5829
5841
|
] }) }),
|
|
5830
|
-
/* @__PURE__ */ (0,
|
|
5831
|
-
/* @__PURE__ */ (0,
|
|
5832
|
-
/* @__PURE__ */ (0,
|
|
5833
|
-
/* @__PURE__ */ (0,
|
|
5834
|
-
/* @__PURE__ */ (0,
|
|
5835
|
-
/* @__PURE__ */ (0,
|
|
5842
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("section", { children: /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: "k-grid k-grid-md k-grid-no-scrollbar", children: [
|
|
5843
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: "k-grid-aria-root", children: [
|
|
5844
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("div", { className: "k-grid-header", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("div", { className: "k-grid-header-wrap", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("table", { className: "k-table k-table-md k-grid-header-table", children: [
|
|
5845
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("colgroup", { children: [
|
|
5846
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("col", { style: { width: "100px" } }),
|
|
5847
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("col", {})
|
|
5836
5848
|
] }),
|
|
5837
|
-
/* @__PURE__ */ (0,
|
|
5838
|
-
/* @__PURE__ */ (0,
|
|
5839
|
-
/* @__PURE__ */ (0,
|
|
5849
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("thead", { className: "k-table-thead", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("tr", { className: "k-table-row", children: [
|
|
5850
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("th", { className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("span", { className: "k-column-title", children: "100px" }) }) }) }),
|
|
5851
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("th", { className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("span", { className: "k-column-title", children: "no width" }) }) }) })
|
|
5840
5852
|
] }) })
|
|
5841
5853
|
] }) }) }),
|
|
5842
|
-
/* @__PURE__ */ (0,
|
|
5843
|
-
/* @__PURE__ */ (0,
|
|
5844
|
-
/* @__PURE__ */ (0,
|
|
5845
|
-
/* @__PURE__ */ (0,
|
|
5846
|
-
/* @__PURE__ */ (0,
|
|
5854
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("div", { className: "k-grid-container", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: "k-grid-content k-virtual-content", children: [
|
|
5855
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("table", { className: "k-table k-table-md k-grid-table", children: [
|
|
5856
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("colgroup", { children: [
|
|
5857
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("col", { style: { width: "100px" } }),
|
|
5858
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("col", {})
|
|
5847
5859
|
] }),
|
|
5848
|
-
/* @__PURE__ */ (0,
|
|
5849
|
-
/* @__PURE__ */ (0,
|
|
5850
|
-
/* @__PURE__ */ (0,
|
|
5851
|
-
/* @__PURE__ */ (0,
|
|
5860
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("tbody", { className: "k-table-tbody", children: [
|
|
5861
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("tr", { className: "k-table-row", children: [
|
|
5862
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("td", { className: "k-table-td", children: "1" }),
|
|
5863
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("td", { className: "k-table-td", children: "Row" })
|
|
5852
5864
|
] }),
|
|
5853
|
-
/* @__PURE__ */ (0,
|
|
5854
|
-
/* @__PURE__ */ (0,
|
|
5855
|
-
/* @__PURE__ */ (0,
|
|
5865
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("tr", { className: "k-table-row k-table-alt-row k-alt", children: [
|
|
5866
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("td", { className: "k-table-td", children: "2" }),
|
|
5867
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("td", { className: "k-table-td", children: "Alt row" })
|
|
5856
5868
|
] })
|
|
5857
5869
|
] })
|
|
5858
5870
|
] }) }),
|
|
5859
|
-
/* @__PURE__ */ (0,
|
|
5871
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("div", { className: "k-height-container", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("div", { style: { height: "0px" } }) })
|
|
5860
5872
|
] }) })
|
|
5861
5873
|
] }),
|
|
5862
|
-
/* @__PURE__ */ (0,
|
|
5874
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)(Pager, { className: "k-grid-pager", focus: true })
|
|
5863
5875
|
] }) }),
|
|
5864
|
-
/* @__PURE__ */ (0,
|
|
5865
|
-
/* @__PURE__ */ (0,
|
|
5866
|
-
/* @__PURE__ */ (0,
|
|
5867
|
-
/* @__PURE__ */ (0,
|
|
5868
|
-
/* @__PURE__ */ (0,
|
|
5869
|
-
/* @__PURE__ */ (0,
|
|
5870
|
-
/* @__PURE__ */ (0,
|
|
5871
|
-
/* @__PURE__ */ (0,
|
|
5876
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("span", { children: "jQuery grid pager top" }),
|
|
5877
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("span", { children: "Angular grid pager top" }),
|
|
5878
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("section", { children: /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: "k-grid k-grid-md k-grid-no-scrollbar", children: [
|
|
5879
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)(Pager, { className: "k-grid-pager k-grid-pager-top" }),
|
|
5880
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("div", { className: "k-grid-header", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("div", { className: "k-grid-header-wrap", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("table", { className: "k-table k-table-md k-grid-header-table", children: [
|
|
5881
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("colgroup", { children: [
|
|
5882
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("col", { style: { width: "100px" } }),
|
|
5883
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("col", {})
|
|
5872
5884
|
] }),
|
|
5873
|
-
/* @__PURE__ */ (0,
|
|
5874
|
-
/* @__PURE__ */ (0,
|
|
5875
|
-
/* @__PURE__ */ (0,
|
|
5885
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("thead", { className: "k-table-thead", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("tr", { className: "k-table-row", children: [
|
|
5886
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("th", { className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("span", { className: "k-column-title", children: "100px" }) }) }) }),
|
|
5887
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("th", { className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("span", { className: "k-column-title", children: "no width" }) }) }) })
|
|
5876
5888
|
] }) })
|
|
5877
5889
|
] }) }) }),
|
|
5878
|
-
/* @__PURE__ */ (0,
|
|
5879
|
-
/* @__PURE__ */ (0,
|
|
5880
|
-
/* @__PURE__ */ (0,
|
|
5881
|
-
/* @__PURE__ */ (0,
|
|
5890
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("div", { className: "k-grid-content", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("table", { className: "k-table k-table-md k-grid-table", children: [
|
|
5891
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("colgroup", { children: [
|
|
5892
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("col", { style: { width: "100px" } }),
|
|
5893
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("col", {})
|
|
5882
5894
|
] }),
|
|
5883
|
-
/* @__PURE__ */ (0,
|
|
5884
|
-
/* @__PURE__ */ (0,
|
|
5885
|
-
/* @__PURE__ */ (0,
|
|
5886
|
-
/* @__PURE__ */ (0,
|
|
5895
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("tbody", { className: "k-table-tbody", children: [
|
|
5896
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("tr", { className: "k-table-row", children: [
|
|
5897
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("td", { className: "k-table-td", children: "1" }),
|
|
5898
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("td", { className: "k-table-td", children: "Row" })
|
|
5887
5899
|
] }),
|
|
5888
|
-
/* @__PURE__ */ (0,
|
|
5889
|
-
/* @__PURE__ */ (0,
|
|
5890
|
-
/* @__PURE__ */ (0,
|
|
5900
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("tr", { className: "k-table-row k-table-alt-row k-alt", children: [
|
|
5901
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("td", { className: "k-table-td", children: "2" }),
|
|
5902
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("td", { className: "k-table-td", children: "Alt row" })
|
|
5891
5903
|
] })
|
|
5892
5904
|
] })
|
|
5893
5905
|
] }) })
|
|
5894
5906
|
] }) }),
|
|
5895
|
-
/* @__PURE__ */ (0,
|
|
5896
|
-
/* @__PURE__ */ (0,
|
|
5897
|
-
/* @__PURE__ */ (0,
|
|
5898
|
-
/* @__PURE__ */ (0,
|
|
5899
|
-
/* @__PURE__ */ (0,
|
|
5900
|
-
/* @__PURE__ */ (0,
|
|
5901
|
-
/* @__PURE__ */ (0,
|
|
5907
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("section", { children: /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: "k-grid k-grid-md k-grid-no-scrollbar", children: [
|
|
5908
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)(Pager, { className: "k-grid-pager k-grid-pager-top" }),
|
|
5909
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: "k-grid-aria-root", children: [
|
|
5910
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("div", { className: "k-grid-header", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("div", { className: "k-grid-header-wrap", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("table", { className: "k-table k-table-md k-grid-header-table", children: [
|
|
5911
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("colgroup", { children: [
|
|
5912
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("col", { style: { width: "100px" } }),
|
|
5913
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("col", {})
|
|
5902
5914
|
] }),
|
|
5903
|
-
/* @__PURE__ */ (0,
|
|
5904
|
-
/* @__PURE__ */ (0,
|
|
5905
|
-
/* @__PURE__ */ (0,
|
|
5915
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("thead", { className: "k-table-thead", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("tr", { className: "k-table-row", children: [
|
|
5916
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("th", { className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("span", { className: "k-column-title", children: "100px" }) }) }) }),
|
|
5917
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("th", { className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("span", { className: "k-column-title", children: "no width" }) }) }) })
|
|
5906
5918
|
] }) })
|
|
5907
5919
|
] }) }) }),
|
|
5908
|
-
/* @__PURE__ */ (0,
|
|
5909
|
-
/* @__PURE__ */ (0,
|
|
5910
|
-
/* @__PURE__ */ (0,
|
|
5911
|
-
/* @__PURE__ */ (0,
|
|
5912
|
-
/* @__PURE__ */ (0,
|
|
5920
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("div", { className: "k-grid-container", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("div", { className: "k-grid-content k-virtual-content", children: [
|
|
5921
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("table", { className: "k-table k-table-md k-grid-table", children: [
|
|
5922
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("colgroup", { children: [
|
|
5923
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("col", { style: { width: "100px" } }),
|
|
5924
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("col", {})
|
|
5913
5925
|
] }),
|
|
5914
|
-
/* @__PURE__ */ (0,
|
|
5915
|
-
/* @__PURE__ */ (0,
|
|
5916
|
-
/* @__PURE__ */ (0,
|
|
5917
|
-
/* @__PURE__ */ (0,
|
|
5926
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("tbody", { className: "k-table-tbody", children: [
|
|
5927
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("tr", { className: "k-table-row", children: [
|
|
5928
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("td", { className: "k-table-td", children: "1" }),
|
|
5929
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("td", { className: "k-table-td", children: "Row" })
|
|
5918
5930
|
] }),
|
|
5919
|
-
/* @__PURE__ */ (0,
|
|
5920
|
-
/* @__PURE__ */ (0,
|
|
5921
|
-
/* @__PURE__ */ (0,
|
|
5931
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsxs)("tr", { className: "k-table-row k-table-alt-row k-alt", children: [
|
|
5932
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("td", { className: "k-table-td", children: "2" }),
|
|
5933
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("td", { className: "k-table-td", children: "Alt row" })
|
|
5922
5934
|
] })
|
|
5923
5935
|
] })
|
|
5924
5936
|
] }) }),
|
|
5925
|
-
/* @__PURE__ */ (0,
|
|
5937
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("div", { className: "k-height-container", children: /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("div", { style: { height: "0px" } }) })
|
|
5926
5938
|
] }) })
|
|
5927
5939
|
] })
|
|
5928
5940
|
] }) })
|