@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
|
@@ -6034,8 +6034,20 @@ Pager.options = options25;
|
|
|
6034
6034
|
Pager.className = PAGER_CLASSNAME;
|
|
6035
6035
|
Pager.defaultProps = defaultProps23;
|
|
6036
6036
|
|
|
6037
|
-
// src/
|
|
6037
|
+
// src/pager/templates/pager-normal.tsx
|
|
6038
6038
|
var import_jsx_runtime63 = require("react/jsx-runtime");
|
|
6039
|
+
|
|
6040
|
+
// src/pager/templates/pager-input.tsx
|
|
6041
|
+
var import_jsx_runtime64 = require("react/jsx-runtime");
|
|
6042
|
+
|
|
6043
|
+
// src/pager/templates/pager-adaptive.tsx
|
|
6044
|
+
var import_jsx_runtime65 = require("react/jsx-runtime");
|
|
6045
|
+
|
|
6046
|
+
// src/pager/templates/pager-adaptive-input.tsx
|
|
6047
|
+
var import_jsx_runtime66 = require("react/jsx-runtime");
|
|
6048
|
+
|
|
6049
|
+
// src/skeleton/skeleton.spec.tsx
|
|
6050
|
+
var import_jsx_runtime67 = require("react/jsx-runtime");
|
|
6039
6051
|
var SKELETON_CLASSNAME = `k-skeleton`;
|
|
6040
6052
|
var states27 = [];
|
|
6041
6053
|
var options26 = {};
|
|
@@ -6049,7 +6061,7 @@ var Skeleton = (props) => {
|
|
|
6049
6061
|
animation = defaultProps24.animation,
|
|
6050
6062
|
...other
|
|
6051
6063
|
} = props;
|
|
6052
|
-
return /* @__PURE__ */ (0,
|
|
6064
|
+
return /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
6053
6065
|
"span",
|
|
6054
6066
|
{
|
|
6055
6067
|
...other,
|
|
@@ -6071,7 +6083,7 @@ Skeleton.className = SKELETON_CLASSNAME;
|
|
|
6071
6083
|
Skeleton.defaultProps = defaultProps24;
|
|
6072
6084
|
|
|
6073
6085
|
// src/textbox/textbox.spec.tsx
|
|
6074
|
-
var
|
|
6086
|
+
var import_jsx_runtime68 = require("react/jsx-runtime");
|
|
6075
6087
|
var TEXTBOX_CLASSNAME = `k-textbox`;
|
|
6076
6088
|
var states28 = [
|
|
6077
6089
|
States.hover,
|
|
@@ -6114,7 +6126,7 @@ var Textbox = (props) => {
|
|
|
6114
6126
|
showClearButton = defaultProps25.showClearButton,
|
|
6115
6127
|
...other
|
|
6116
6128
|
} = props;
|
|
6117
|
-
return /* @__PURE__ */ (0,
|
|
6129
|
+
return /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)(
|
|
6118
6130
|
Input,
|
|
6119
6131
|
{
|
|
6120
6132
|
...other,
|
|
@@ -6131,9 +6143,9 @@ var Textbox = (props) => {
|
|
|
6131
6143
|
readonly,
|
|
6132
6144
|
className: classNames(props.className, TEXTBOX_CLASSNAME),
|
|
6133
6145
|
children: [
|
|
6134
|
-
/* @__PURE__ */ (0,
|
|
6135
|
-
/* @__PURE__ */ (0,
|
|
6136
|
-
/* @__PURE__ */ (0,
|
|
6146
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)(InputPrefix, { children: prefix }),
|
|
6147
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)(InputInnerInput, { placeholder, value }),
|
|
6148
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
6137
6149
|
InputValidationIcon,
|
|
6138
6150
|
{
|
|
6139
6151
|
valid,
|
|
@@ -6142,14 +6154,14 @@ var Textbox = (props) => {
|
|
|
6142
6154
|
disabled
|
|
6143
6155
|
}
|
|
6144
6156
|
),
|
|
6145
|
-
/* @__PURE__ */ (0,
|
|
6157
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
6146
6158
|
InputLoadingIcon,
|
|
6147
6159
|
{
|
|
6148
6160
|
loading,
|
|
6149
6161
|
disabled
|
|
6150
6162
|
}
|
|
6151
6163
|
),
|
|
6152
|
-
showClearButton && /* @__PURE__ */ (0,
|
|
6164
|
+
showClearButton && /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
6153
6165
|
InputClearValue,
|
|
6154
6166
|
{
|
|
6155
6167
|
loading,
|
|
@@ -6158,7 +6170,7 @@ var Textbox = (props) => {
|
|
|
6158
6170
|
value
|
|
6159
6171
|
}
|
|
6160
6172
|
),
|
|
6161
|
-
/* @__PURE__ */ (0,
|
|
6173
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)(InputSuffix, { children: suffix })
|
|
6162
6174
|
]
|
|
6163
6175
|
}
|
|
6164
6176
|
);
|
|
@@ -6169,16 +6181,16 @@ Textbox.className = TEXTBOX_CLASSNAME;
|
|
|
6169
6181
|
Textbox.defaultProps = defaultProps25;
|
|
6170
6182
|
|
|
6171
6183
|
// src/textbox/templates/textbox-normal.tsx
|
|
6172
|
-
var
|
|
6184
|
+
var import_jsx_runtime69 = require("react/jsx-runtime");
|
|
6173
6185
|
|
|
6174
6186
|
// src/textbox/templates/textbox-prefix.tsx
|
|
6175
|
-
var
|
|
6187
|
+
var import_jsx_runtime70 = require("react/jsx-runtime");
|
|
6176
6188
|
|
|
6177
6189
|
// src/textbox/templates/textbox-suffix.tsx
|
|
6178
|
-
var
|
|
6190
|
+
var import_jsx_runtime71 = require("react/jsx-runtime");
|
|
6179
6191
|
|
|
6180
6192
|
// src/button-group/button-group.spec.tsx
|
|
6181
|
-
var
|
|
6193
|
+
var import_jsx_runtime72 = require("react/jsx-runtime");
|
|
6182
6194
|
var BUTTONGROUP_CLASSNAME = `k-button-group`;
|
|
6183
6195
|
var states29 = [
|
|
6184
6196
|
States.disabled
|
|
@@ -6196,7 +6208,7 @@ var ButtonGroup = (props) => {
|
|
|
6196
6208
|
stretched,
|
|
6197
6209
|
...other
|
|
6198
6210
|
} = props;
|
|
6199
|
-
return /* @__PURE__ */ (0,
|
|
6211
|
+
return /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
|
|
6200
6212
|
"div",
|
|
6201
6213
|
{
|
|
6202
6214
|
...other,
|
|
@@ -6223,19 +6235,19 @@ ButtonGroup.className = BUTTONGROUP_CLASSNAME;
|
|
|
6223
6235
|
ButtonGroup.defaultProps = defaultProps26;
|
|
6224
6236
|
|
|
6225
6237
|
// src/button-group/templates/icon-button-group.tsx
|
|
6226
|
-
var
|
|
6238
|
+
var import_jsx_runtime73 = require("react/jsx-runtime");
|
|
6227
6239
|
|
|
6228
6240
|
// src/button-group/templates/icon-text-button-group.tsx
|
|
6229
|
-
var
|
|
6241
|
+
var import_jsx_runtime74 = require("react/jsx-runtime");
|
|
6230
6242
|
|
|
6231
6243
|
// src/button-group/templates/text-button-group.tsx
|
|
6232
|
-
var
|
|
6244
|
+
var import_jsx_runtime75 = require("react/jsx-runtime");
|
|
6233
6245
|
|
|
6234
6246
|
// src/button-group/templates/mixed-button-group.tsx
|
|
6235
|
-
var
|
|
6247
|
+
var import_jsx_runtime76 = require("react/jsx-runtime");
|
|
6236
6248
|
|
|
6237
6249
|
// src/color-preview/color-preview.tsx
|
|
6238
|
-
var
|
|
6250
|
+
var import_jsx_runtime77 = require("react/jsx-runtime");
|
|
6239
6251
|
var COLORPREVIEW_CLASSNAME = `k-color-preview`;
|
|
6240
6252
|
var states30 = [];
|
|
6241
6253
|
var options29 = {};
|
|
@@ -6245,7 +6257,7 @@ var ColorPreview = (props) => {
|
|
|
6245
6257
|
iconName,
|
|
6246
6258
|
...other
|
|
6247
6259
|
} = props;
|
|
6248
|
-
return /* @__PURE__ */ (0,
|
|
6260
|
+
return /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)(
|
|
6249
6261
|
"span",
|
|
6250
6262
|
{
|
|
6251
6263
|
...other,
|
|
@@ -6258,8 +6270,8 @@ var ColorPreview = (props) => {
|
|
|
6258
6270
|
}
|
|
6259
6271
|
),
|
|
6260
6272
|
children: [
|
|
6261
|
-
iconName && /* @__PURE__ */ (0,
|
|
6262
|
-
/* @__PURE__ */ (0,
|
|
6273
|
+
iconName && /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(Icon, { icon: iconName, className: "k-color-preview-icon" }),
|
|
6274
|
+
/* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
|
|
6263
6275
|
"span",
|
|
6264
6276
|
{
|
|
6265
6277
|
className: "k-color-preview-mask",
|
|
@@ -6275,7 +6287,7 @@ ColorPreview.options = options29;
|
|
|
6275
6287
|
ColorPreview.className = COLORPREVIEW_CLASSNAME;
|
|
6276
6288
|
|
|
6277
6289
|
// src/colorpicker/colorpicker.spec.tsx
|
|
6278
|
-
var
|
|
6290
|
+
var import_jsx_runtime78 = require("react/jsx-runtime");
|
|
6279
6291
|
var COLORPICKER_CLASSNAME = `k-colorpicker`;
|
|
6280
6292
|
var states31 = [
|
|
6281
6293
|
States.hover,
|
|
@@ -6315,7 +6327,7 @@ var ColorPicker = (props) => {
|
|
|
6315
6327
|
arrowIconName = defaultProps27.arrowIconName,
|
|
6316
6328
|
...other
|
|
6317
6329
|
} = props;
|
|
6318
|
-
return /* @__PURE__ */ (0,
|
|
6330
|
+
return /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)(
|
|
6319
6331
|
Picker,
|
|
6320
6332
|
{
|
|
6321
6333
|
...other,
|
|
@@ -6334,14 +6346,14 @@ var ColorPicker = (props) => {
|
|
|
6334
6346
|
"k-icon-picker"
|
|
6335
6347
|
),
|
|
6336
6348
|
children: [
|
|
6337
|
-
/* @__PURE__ */ (0,
|
|
6338
|
-
/* @__PURE__ */ (0,
|
|
6349
|
+
/* @__PURE__ */ (0, import_jsx_runtime78.jsx)(InputPrefix, { children: prefix }),
|
|
6350
|
+
/* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
|
|
6339
6351
|
InputInnerSpan,
|
|
6340
6352
|
{
|
|
6341
6353
|
placeholder,
|
|
6342
6354
|
value,
|
|
6343
6355
|
showValue: false,
|
|
6344
|
-
valueIcon: /* @__PURE__ */ (0,
|
|
6356
|
+
valueIcon: /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
|
|
6345
6357
|
ColorPreview,
|
|
6346
6358
|
{
|
|
6347
6359
|
className: "k-value-icon",
|
|
@@ -6352,8 +6364,8 @@ var ColorPicker = (props) => {
|
|
|
6352
6364
|
valueIconName
|
|
6353
6365
|
}
|
|
6354
6366
|
),
|
|
6355
|
-
/* @__PURE__ */ (0,
|
|
6356
|
-
/* @__PURE__ */ (0,
|
|
6367
|
+
/* @__PURE__ */ (0, import_jsx_runtime78.jsx)(InputSuffix, { children: suffix }),
|
|
6368
|
+
/* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
|
|
6357
6369
|
Button,
|
|
6358
6370
|
{
|
|
6359
6371
|
className: "k-input-button",
|
|
@@ -6373,7 +6385,7 @@ ColorPicker.className = COLORPICKER_CLASSNAME;
|
|
|
6373
6385
|
ColorPicker.defaultProps = defaultProps27;
|
|
6374
6386
|
|
|
6375
6387
|
// src/action-sheet/action-sheet.spec.tsx
|
|
6376
|
-
var
|
|
6388
|
+
var import_jsx_runtime79 = require("react/jsx-runtime");
|
|
6377
6389
|
var ACTIONSHEET_CLASSNAME = `k-actionsheet`;
|
|
6378
6390
|
var states32 = [];
|
|
6379
6391
|
var options31 = {};
|
|
@@ -6396,8 +6408,8 @@ var ActionSheet = (props) => {
|
|
|
6396
6408
|
overlay = defaultProps28.overlay,
|
|
6397
6409
|
...other
|
|
6398
6410
|
} = props;
|
|
6399
|
-
const _ActionSheetHeader = title ? /* @__PURE__ */ (0,
|
|
6400
|
-
const _ActionSheetFooter = actions ? /* @__PURE__ */ (0,
|
|
6411
|
+
const _ActionSheetHeader = title ? /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(ActionSheetHeader, { title }) : header ? header : Array.isArray(children) && children.find((child) => child.type === ActionSheetHeader);
|
|
6412
|
+
const _ActionSheetFooter = actions ? /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(ActionSheetFooter, { className: "k-actions", actions }) : footer ? typeof footer === "string" ? /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(ActionSheetFooter, { children: footer }) : footer : Array.isArray(children) && children.find((child) => child.type === ActionSheetFooter);
|
|
6401
6413
|
const _ActionSheetContent = Array.isArray(children) ? children.filter((child) => {
|
|
6402
6414
|
switch (child.type) {
|
|
6403
6415
|
case ActionSheetHeader:
|
|
@@ -6407,10 +6419,10 @@ var ActionSheet = (props) => {
|
|
|
6407
6419
|
return true;
|
|
6408
6420
|
}
|
|
6409
6421
|
return true;
|
|
6410
|
-
}) : children.type === ActionSheetItems ? children : /* @__PURE__ */ (0,
|
|
6411
|
-
return /* @__PURE__ */ (0,
|
|
6412
|
-
overlay && /* @__PURE__ */ (0,
|
|
6413
|
-
/* @__PURE__ */ (0,
|
|
6422
|
+
}) : children.type === ActionSheetItems ? children : /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(import_jsx_runtime79.Fragment, {});
|
|
6423
|
+
return /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)("div", { className: "k-actionsheet-container", children: [
|
|
6424
|
+
overlay && /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("div", { className: "k-overlay" }),
|
|
6425
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
|
|
6414
6426
|
AnimationContainer,
|
|
6415
6427
|
{
|
|
6416
6428
|
animationStyle: {
|
|
@@ -6420,7 +6432,7 @@ var ActionSheet = (props) => {
|
|
|
6420
6432
|
[`${side === "top" || side === "bottom" ? "width" : null}`]: "100%",
|
|
6421
6433
|
[`${side === "left" || side === "right" ? "height" : null}`]: "100%"
|
|
6422
6434
|
},
|
|
6423
|
-
children: /* @__PURE__ */ (0,
|
|
6435
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
|
|
6424
6436
|
"div",
|
|
6425
6437
|
{
|
|
6426
6438
|
...other,
|
|
@@ -6433,9 +6445,9 @@ var ActionSheet = (props) => {
|
|
|
6433
6445
|
"k-adaptive-actionsheet": adaptive
|
|
6434
6446
|
}
|
|
6435
6447
|
),
|
|
6436
|
-
children: /* @__PURE__ */ (0,
|
|
6448
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(import_jsx_runtime79.Fragment, { children: [
|
|
6437
6449
|
_ActionSheetHeader,
|
|
6438
|
-
/* @__PURE__ */ (0,
|
|
6450
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)("div", { className: classNames(
|
|
6439
6451
|
"k-actionsheet-content",
|
|
6440
6452
|
{
|
|
6441
6453
|
"!k-overflow-hidden": adaptive
|
|
@@ -6455,7 +6467,7 @@ ActionSheet.className = ACTIONSHEET_CLASSNAME;
|
|
|
6455
6467
|
ActionSheet.defaultProps = defaultProps28;
|
|
6456
6468
|
|
|
6457
6469
|
// src/action-sheet/actionsheet-header.tsx
|
|
6458
|
-
var
|
|
6470
|
+
var import_jsx_runtime80 = require("react/jsx-runtime");
|
|
6459
6471
|
var ACTIONSHEETHEADER_CLASSNAME = `k-actionsheet-titlebar`;
|
|
6460
6472
|
var ActionSheetHeader = (props) => {
|
|
6461
6473
|
const {
|
|
@@ -6465,7 +6477,7 @@ var ActionSheetHeader = (props) => {
|
|
|
6465
6477
|
filter,
|
|
6466
6478
|
...other
|
|
6467
6479
|
} = props;
|
|
6468
|
-
return /* @__PURE__ */ (0,
|
|
6480
|
+
return /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
|
|
6469
6481
|
"div",
|
|
6470
6482
|
{
|
|
6471
6483
|
...other,
|
|
@@ -6473,23 +6485,23 @@ var ActionSheetHeader = (props) => {
|
|
|
6473
6485
|
props.className,
|
|
6474
6486
|
ACTIONSHEETHEADER_CLASSNAME
|
|
6475
6487
|
),
|
|
6476
|
-
children: /* @__PURE__ */ (0,
|
|
6477
|
-
/* @__PURE__ */ (0,
|
|
6478
|
-
!props.children && (title || subTitle) && /* @__PURE__ */ (0,
|
|
6479
|
-
title !== "" && /* @__PURE__ */ (0,
|
|
6480
|
-
subTitle !== "" && /* @__PURE__ */ (0,
|
|
6488
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(import_jsx_runtime80.Fragment, { children: [
|
|
6489
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsxs)("div", { className: "k-actionsheet-titlebar-group k-hbox", children: [
|
|
6490
|
+
!props.children && (title || subTitle) && /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(import_jsx_runtime80.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)("div", { className: "k-actionsheet-title", children: [
|
|
6491
|
+
title !== "" && /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("div", { className: "k-text-center", children: title }),
|
|
6492
|
+
subTitle !== "" && /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("div", { className: "k-actionsheet-subtitle k-text-center", children: subTitle })
|
|
6481
6493
|
] }) }),
|
|
6482
|
-
props.children && /* @__PURE__ */ (0,
|
|
6483
|
-
actions && /* @__PURE__ */ (0,
|
|
6494
|
+
props.children && /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("div", { className: "k-actionsheet-title", children: props.children }),
|
|
6495
|
+
actions && /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(import_jsx_runtime80.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("div", { className: "k-actionsheet-actions", children: actions.map((actionName) => /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(Button, { icon: actionName, size: "large", fillMode: "flat" }, actionName)) }) })
|
|
6484
6496
|
] }),
|
|
6485
|
-
filter && /* @__PURE__ */ (0,
|
|
6497
|
+
filter && /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(import_jsx_runtime80.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("div", { className: "k-actionsheet-titlebar-group k-actionsheet-filter", children: /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(Searchbox, { placeholder: "Filter", size: "large" }) }) })
|
|
6486
6498
|
] })
|
|
6487
6499
|
}
|
|
6488
6500
|
);
|
|
6489
6501
|
};
|
|
6490
6502
|
|
|
6491
6503
|
// src/action-buttons/action-buttons.spec.tsx
|
|
6492
|
-
var
|
|
6504
|
+
var import_jsx_runtime81 = require("react/jsx-runtime");
|
|
6493
6505
|
var ACTIONBUTTONS_CLASSNAME = `k-actions`;
|
|
6494
6506
|
var states33 = [];
|
|
6495
6507
|
var options32 = {};
|
|
@@ -6503,7 +6515,7 @@ var ActionButtons = (props) => {
|
|
|
6503
6515
|
orientation = defaultProps29.orientation,
|
|
6504
6516
|
...other
|
|
6505
6517
|
} = props;
|
|
6506
|
-
return /* @__PURE__ */ (0,
|
|
6518
|
+
return /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
|
|
6507
6519
|
"div",
|
|
6508
6520
|
{
|
|
6509
6521
|
...other,
|
|
@@ -6526,14 +6538,14 @@ ActionButtons.defaultProps = defaultProps29;
|
|
|
6526
6538
|
var action_buttons_spec_default = ActionButtons;
|
|
6527
6539
|
|
|
6528
6540
|
// src/action-sheet/actionsheet-footer.tsx
|
|
6529
|
-
var
|
|
6541
|
+
var import_jsx_runtime82 = require("react/jsx-runtime");
|
|
6530
6542
|
var ACTIONSHEETFOOTER_CLASSNAME = `k-actionsheet-footer`;
|
|
6531
6543
|
var ActionSheetFooter = (props) => {
|
|
6532
6544
|
const {
|
|
6533
6545
|
actions,
|
|
6534
6546
|
...other
|
|
6535
6547
|
} = props;
|
|
6536
|
-
return /* @__PURE__ */ (0,
|
|
6548
|
+
return /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
|
|
6537
6549
|
action_buttons_spec_default,
|
|
6538
6550
|
{
|
|
6539
6551
|
...other,
|
|
@@ -6542,17 +6554,17 @@ var ActionSheetFooter = (props) => {
|
|
|
6542
6554
|
ACTIONSHEETFOOTER_CLASSNAME
|
|
6543
6555
|
),
|
|
6544
6556
|
alignment: "stretched",
|
|
6545
|
-
children: /* @__PURE__ */ (0,
|
|
6557
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime82.jsxs)(import_jsx_runtime82.Fragment, { children: [
|
|
6546
6558
|
actions && actions.map((action, index) => {
|
|
6547
6559
|
if (action === "|") {
|
|
6548
|
-
return /* @__PURE__ */ (0,
|
|
6560
|
+
return /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("span", { className: "k-separator" }, index);
|
|
6549
6561
|
}
|
|
6550
6562
|
if (action === " ") {
|
|
6551
|
-
return /* @__PURE__ */ (0,
|
|
6563
|
+
return /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("span", { className: "k-spacer" }, index);
|
|
6552
6564
|
}
|
|
6553
6565
|
const importantFlag = action.startsWith("!");
|
|
6554
6566
|
const actionName = importantFlag ? action.substring(1) : action;
|
|
6555
|
-
return /* @__PURE__ */ (0,
|
|
6567
|
+
return /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(Button, { text: actionName, size: "large", themeColor: importantFlag ? "primary" : "base" }, index);
|
|
6556
6568
|
}),
|
|
6557
6569
|
!actions && props.children
|
|
6558
6570
|
] })
|
|
@@ -6561,12 +6573,12 @@ var ActionSheetFooter = (props) => {
|
|
|
6561
6573
|
};
|
|
6562
6574
|
|
|
6563
6575
|
// src/action-sheet/actionsheet-items.tsx
|
|
6564
|
-
var
|
|
6576
|
+
var import_jsx_runtime83 = require("react/jsx-runtime");
|
|
6565
6577
|
var ActionSheetItems = (props) => {
|
|
6566
6578
|
const {
|
|
6567
6579
|
...other
|
|
6568
6580
|
} = props;
|
|
6569
|
-
return /* @__PURE__ */ (0,
|
|
6581
|
+
return /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
|
|
6570
6582
|
"div",
|
|
6571
6583
|
{
|
|
6572
6584
|
...other,
|
|
@@ -6580,7 +6592,7 @@ var ActionSheetItems = (props) => {
|
|
|
6580
6592
|
};
|
|
6581
6593
|
|
|
6582
6594
|
// src/action-sheet/actionsheet-item.tsx
|
|
6583
|
-
var
|
|
6595
|
+
var import_jsx_runtime84 = require("react/jsx-runtime");
|
|
6584
6596
|
var states34 = [
|
|
6585
6597
|
States.hover,
|
|
6586
6598
|
States.focus,
|
|
@@ -6589,7 +6601,7 @@ var states34 = [
|
|
|
6589
6601
|
];
|
|
6590
6602
|
|
|
6591
6603
|
// src/combobox/combobox.spec.tsx
|
|
6592
|
-
var
|
|
6604
|
+
var import_jsx_runtime85 = require("react/jsx-runtime");
|
|
6593
6605
|
var COMBOBOX_CLASSNAME = `k-combobox`;
|
|
6594
6606
|
var states35 = [
|
|
6595
6607
|
States.hover,
|
|
@@ -6634,8 +6646,8 @@ var Combobox = (props) => {
|
|
|
6634
6646
|
adaptiveSettings,
|
|
6635
6647
|
...other
|
|
6636
6648
|
} = props;
|
|
6637
|
-
return /* @__PURE__ */ (0,
|
|
6638
|
-
/* @__PURE__ */ (0,
|
|
6649
|
+
return /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(import_jsx_runtime85.Fragment, { children: [
|
|
6650
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
|
|
6639
6651
|
Input,
|
|
6640
6652
|
{
|
|
6641
6653
|
...other,
|
|
@@ -6652,9 +6664,9 @@ var Combobox = (props) => {
|
|
|
6652
6664
|
readonly,
|
|
6653
6665
|
className: classNames(props.className, COMBOBOX_CLASSNAME),
|
|
6654
6666
|
children: [
|
|
6655
|
-
/* @__PURE__ */ (0,
|
|
6656
|
-
/* @__PURE__ */ (0,
|
|
6657
|
-
/* @__PURE__ */ (0,
|
|
6667
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(InputPrefix, { children: prefix }),
|
|
6668
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(InputInnerInput, { placeholder, value }),
|
|
6669
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
6658
6670
|
InputValidationIcon,
|
|
6659
6671
|
{
|
|
6660
6672
|
valid,
|
|
@@ -6663,14 +6675,14 @@ var Combobox = (props) => {
|
|
|
6663
6675
|
disabled
|
|
6664
6676
|
}
|
|
6665
6677
|
),
|
|
6666
|
-
/* @__PURE__ */ (0,
|
|
6678
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
6667
6679
|
InputLoadingIcon,
|
|
6668
6680
|
{
|
|
6669
6681
|
loading,
|
|
6670
6682
|
disabled
|
|
6671
6683
|
}
|
|
6672
6684
|
),
|
|
6673
|
-
/* @__PURE__ */ (0,
|
|
6685
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
6674
6686
|
InputClearValue,
|
|
6675
6687
|
{
|
|
6676
6688
|
loading,
|
|
@@ -6679,8 +6691,8 @@ var Combobox = (props) => {
|
|
|
6679
6691
|
value
|
|
6680
6692
|
}
|
|
6681
6693
|
),
|
|
6682
|
-
/* @__PURE__ */ (0,
|
|
6683
|
-
/* @__PURE__ */ (0,
|
|
6694
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(InputSuffix, { children: suffix }),
|
|
6695
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
6684
6696
|
Button,
|
|
6685
6697
|
{
|
|
6686
6698
|
className: "k-input-button",
|
|
@@ -6693,9 +6705,9 @@ var Combobox = (props) => {
|
|
|
6693
6705
|
]
|
|
6694
6706
|
}
|
|
6695
6707
|
),
|
|
6696
|
-
opened && popup && /* @__PURE__ */ (0,
|
|
6697
|
-
adaptive && /* @__PURE__ */ (0,
|
|
6698
|
-
/* @__PURE__ */ (0,
|
|
6708
|
+
opened && popup && /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(Popup, { className: "k-list-container k-combobox-popup", children: popup }),
|
|
6709
|
+
adaptive && /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(ActionSheet, { adaptive: true, ...adaptiveSettings, children: [
|
|
6710
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
6699
6711
|
ActionSheetHeader,
|
|
6700
6712
|
{
|
|
6701
6713
|
actions: ["x"],
|
|
@@ -6703,10 +6715,10 @@ var Combobox = (props) => {
|
|
|
6703
6715
|
title: "Select Item"
|
|
6704
6716
|
}
|
|
6705
6717
|
),
|
|
6706
|
-
/* @__PURE__ */ (0,
|
|
6707
|
-
/* @__PURE__ */ (0,
|
|
6708
|
-
/* @__PURE__ */ (0,
|
|
6709
|
-
/* @__PURE__ */ (0,
|
|
6718
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: "k-list-container", children: /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(List, { size: "large", children: [
|
|
6719
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(ListItem, { text: "List item" }),
|
|
6720
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(ListItem, { text: "List item" }),
|
|
6721
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)(ListItem, { text: "List item" })
|
|
6710
6722
|
] }) })
|
|
6711
6723
|
] })
|
|
6712
6724
|
] });
|
|
@@ -6717,19 +6729,19 @@ Combobox.className = COMBOBOX_CLASSNAME;
|
|
|
6717
6729
|
Combobox.defaultProps = defaultProps30;
|
|
6718
6730
|
|
|
6719
6731
|
// src/combobox/templates/combobox-normal.tsx
|
|
6720
|
-
var
|
|
6732
|
+
var import_jsx_runtime86 = require("react/jsx-runtime");
|
|
6721
6733
|
|
|
6722
6734
|
// src/combobox/templates/combobox-popup.tsx
|
|
6723
|
-
var
|
|
6735
|
+
var import_jsx_runtime87 = require("react/jsx-runtime");
|
|
6724
6736
|
|
|
6725
6737
|
// src/combobox/templates/combobox-grouping.tsx
|
|
6726
|
-
var
|
|
6738
|
+
var import_jsx_runtime88 = require("react/jsx-runtime");
|
|
6727
6739
|
|
|
6728
6740
|
// src/combobox/templates/combobox-adaptive.tsx
|
|
6729
|
-
var
|
|
6741
|
+
var import_jsx_runtime89 = require("react/jsx-runtime");
|
|
6730
6742
|
|
|
6731
6743
|
// src/menu-button/menu-button.spec.tsx
|
|
6732
|
-
var
|
|
6744
|
+
var import_jsx_runtime90 = require("react/jsx-runtime");
|
|
6733
6745
|
var MENUBUTTON_CLASSNAME = `k-menu-button`;
|
|
6734
6746
|
var states36 = [
|
|
6735
6747
|
States.hover,
|
|
@@ -6783,8 +6795,8 @@ var MenuButton = (props) => {
|
|
|
6783
6795
|
opened,
|
|
6784
6796
|
...other
|
|
6785
6797
|
} = props;
|
|
6786
|
-
return /* @__PURE__ */ (0,
|
|
6787
|
-
/* @__PURE__ */ (0,
|
|
6798
|
+
return /* @__PURE__ */ (0, import_jsx_runtime90.jsxs)(import_jsx_runtime90.Fragment, { children: [
|
|
6799
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
6788
6800
|
Button,
|
|
6789
6801
|
{
|
|
6790
6802
|
...other,
|
|
@@ -6807,7 +6819,7 @@ var MenuButton = (props) => {
|
|
|
6807
6819
|
arrowIconName
|
|
6808
6820
|
}
|
|
6809
6821
|
),
|
|
6810
|
-
opened && popup && /* @__PURE__ */ (0,
|
|
6822
|
+
opened && popup && /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(Popup, { className: "k-menu-popup", children: popup })
|
|
6811
6823
|
] });
|
|
6812
6824
|
};
|
|
6813
6825
|
MenuButton.states = states36;
|
|
@@ -6816,16 +6828,16 @@ MenuButton.className = MENUBUTTON_CLASSNAME;
|
|
|
6816
6828
|
MenuButton.defaultProps = defaultProps31;
|
|
6817
6829
|
|
|
6818
6830
|
// src/menu-button/templates/icon-menu-button.tsx
|
|
6819
|
-
var
|
|
6831
|
+
var import_jsx_runtime91 = require("react/jsx-runtime");
|
|
6820
6832
|
|
|
6821
6833
|
// src/menu-button/templates/icon-text-menu-button.tsx
|
|
6822
|
-
var
|
|
6834
|
+
var import_jsx_runtime92 = require("react/jsx-runtime");
|
|
6823
6835
|
|
|
6824
6836
|
// src/menu-button/templates/text-menu-button.tsx
|
|
6825
|
-
var
|
|
6837
|
+
var import_jsx_runtime93 = require("react/jsx-runtime");
|
|
6826
6838
|
|
|
6827
6839
|
// src/menu/menu-item.spec.tsx
|
|
6828
|
-
var
|
|
6840
|
+
var import_jsx_runtime94 = require("react/jsx-runtime");
|
|
6829
6841
|
var MENUITEM_CLASSNAME = `k-menu-item`;
|
|
6830
6842
|
var states37 = [
|
|
6831
6843
|
States.hover,
|
|
@@ -6853,7 +6865,7 @@ var MenuItem = (props) => {
|
|
|
6853
6865
|
children,
|
|
6854
6866
|
...other
|
|
6855
6867
|
} = props;
|
|
6856
|
-
const contentTemplate = /* @__PURE__ */ (0,
|
|
6868
|
+
const contentTemplate = /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(import_jsx_runtime94.Fragment, {});
|
|
6857
6869
|
if (children) {
|
|
6858
6870
|
children.forEach((child) => {
|
|
6859
6871
|
const component = child.type;
|
|
@@ -6867,7 +6879,7 @@ var MenuItem = (props) => {
|
|
|
6867
6879
|
if (!expandArrowName) {
|
|
6868
6880
|
expandArrowName = dir === "rtl" ? "caret-alt-left" : "caret-alt-right";
|
|
6869
6881
|
}
|
|
6870
|
-
return /* @__PURE__ */ (0,
|
|
6882
|
+
return /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)(
|
|
6871
6883
|
"li",
|
|
6872
6884
|
{
|
|
6873
6885
|
...other,
|
|
@@ -6882,7 +6894,7 @@ var MenuItem = (props) => {
|
|
|
6882
6894
|
})
|
|
6883
6895
|
),
|
|
6884
6896
|
children: [
|
|
6885
|
-
/* @__PURE__ */ (0,
|
|
6897
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsxs)(
|
|
6886
6898
|
"span",
|
|
6887
6899
|
{
|
|
6888
6900
|
className: classNames(
|
|
@@ -6895,9 +6907,9 @@ var MenuItem = (props) => {
|
|
|
6895
6907
|
})
|
|
6896
6908
|
),
|
|
6897
6909
|
children: [
|
|
6898
|
-
icon && /* @__PURE__ */ (0,
|
|
6899
|
-
/* @__PURE__ */ (0,
|
|
6900
|
-
showArrow && /* @__PURE__ */ (0,
|
|
6910
|
+
icon && /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(Icon, { className: "k-menu-link-icon", icon }),
|
|
6911
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)("span", { className: "k-menu-link-text", children: text }),
|
|
6912
|
+
showArrow && /* @__PURE__ */ (0, import_jsx_runtime94.jsx)("span", { className: "k-menu-expand-arrow", children: /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(Icon, { icon: expandArrowName }) })
|
|
6901
6913
|
]
|
|
6902
6914
|
}
|
|
6903
6915
|
),
|
|
@@ -6913,7 +6925,7 @@ MenuItem.defaultProps = defaultProps32;
|
|
|
6913
6925
|
var menu_item_spec_default = MenuItem;
|
|
6914
6926
|
|
|
6915
6927
|
// src/menu/menu-separator.spec.tsx
|
|
6916
|
-
var
|
|
6928
|
+
var import_jsx_runtime95 = require("react/jsx-runtime");
|
|
6917
6929
|
var SEPARATOR_CLASSNAME = `k-separator`;
|
|
6918
6930
|
var defaultProps33 = {
|
|
6919
6931
|
orientation: "horizontal"
|
|
@@ -6923,7 +6935,7 @@ var MenuSeparator = (props) => {
|
|
|
6923
6935
|
orientation = defaultProps33.orientation,
|
|
6924
6936
|
...other
|
|
6925
6937
|
} = props;
|
|
6926
|
-
return /* @__PURE__ */ (0,
|
|
6938
|
+
return /* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
6927
6939
|
"li",
|
|
6928
6940
|
{
|
|
6929
6941
|
...other,
|
|
@@ -6941,10 +6953,10 @@ var MenuSeparator = (props) => {
|
|
|
6941
6953
|
var menu_separator_spec_default = MenuSeparator;
|
|
6942
6954
|
|
|
6943
6955
|
// src/menu/menu-item-content.tsx
|
|
6944
|
-
var
|
|
6956
|
+
var import_jsx_runtime96 = require("react/jsx-runtime");
|
|
6945
6957
|
|
|
6946
6958
|
// src/menu/menu-list.spec.tsx
|
|
6947
|
-
var
|
|
6959
|
+
var import_jsx_runtime97 = require("react/jsx-runtime");
|
|
6948
6960
|
var import_react = require("react");
|
|
6949
6961
|
var MENULIST_CLASSNAME = `k-menu-group`;
|
|
6950
6962
|
var states38 = [];
|
|
@@ -6972,7 +6984,7 @@ var MenuList = (props) => {
|
|
|
6972
6984
|
);
|
|
6973
6985
|
} else if (child.type === menu_separator_spec_default) {
|
|
6974
6986
|
listChildren.push(
|
|
6975
|
-
/* @__PURE__ */ (0,
|
|
6987
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsx)(menu_separator_spec_default, {})
|
|
6976
6988
|
);
|
|
6977
6989
|
} else {
|
|
6978
6990
|
listChildren.push(child);
|
|
@@ -6980,7 +6992,7 @@ var MenuList = (props) => {
|
|
|
6980
6992
|
});
|
|
6981
6993
|
}
|
|
6982
6994
|
}
|
|
6983
|
-
return /* @__PURE__ */ (0,
|
|
6995
|
+
return /* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
6984
6996
|
"ul",
|
|
6985
6997
|
{
|
|
6986
6998
|
...other,
|
|
@@ -7001,10 +7013,10 @@ MenuList.className = MENULIST_CLASSNAME;
|
|
|
7001
7013
|
MenuList.defaultProps = defaultProps34;
|
|
7002
7014
|
|
|
7003
7015
|
// src/menu-button/templates/menu-button-popup.tsx
|
|
7004
|
-
var
|
|
7016
|
+
var import_jsx_runtime98 = require("react/jsx-runtime");
|
|
7005
7017
|
|
|
7006
7018
|
// src/split-button/split-button.spec.tsx
|
|
7007
|
-
var
|
|
7019
|
+
var import_jsx_runtime99 = require("react/jsx-runtime");
|
|
7008
7020
|
var SPLITBUTTON_CLASSNAME = `k-split-button`;
|
|
7009
7021
|
var states39 = [
|
|
7010
7022
|
States.hover,
|
|
@@ -7056,8 +7068,8 @@ var SplitButton = (props) => {
|
|
|
7056
7068
|
opened,
|
|
7057
7069
|
...other
|
|
7058
7070
|
} = props;
|
|
7059
|
-
return /* @__PURE__ */ (0,
|
|
7060
|
-
/* @__PURE__ */ (0,
|
|
7071
|
+
return /* @__PURE__ */ (0, import_jsx_runtime99.jsxs)(import_jsx_runtime99.Fragment, { children: [
|
|
7072
|
+
/* @__PURE__ */ (0, import_jsx_runtime99.jsxs)(
|
|
7061
7073
|
"div",
|
|
7062
7074
|
{
|
|
7063
7075
|
...other,
|
|
@@ -7070,7 +7082,7 @@ var SplitButton = (props) => {
|
|
|
7070
7082
|
})
|
|
7071
7083
|
),
|
|
7072
7084
|
children: [
|
|
7073
|
-
/* @__PURE__ */ (0,
|
|
7085
|
+
/* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
|
|
7074
7086
|
Button,
|
|
7075
7087
|
{
|
|
7076
7088
|
text,
|
|
@@ -7087,7 +7099,7 @@ var SplitButton = (props) => {
|
|
|
7087
7099
|
children: props.children
|
|
7088
7100
|
}
|
|
7089
7101
|
),
|
|
7090
|
-
/* @__PURE__ */ (0,
|
|
7102
|
+
/* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
|
|
7091
7103
|
Button,
|
|
7092
7104
|
{
|
|
7093
7105
|
className: "k-split-button-arrow",
|
|
@@ -7101,7 +7113,7 @@ var SplitButton = (props) => {
|
|
|
7101
7113
|
]
|
|
7102
7114
|
}
|
|
7103
7115
|
),
|
|
7104
|
-
opened && popup && /* @__PURE__ */ (0,
|
|
7116
|
+
opened && popup && /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(Popup, { className: "k-menu-popup", children: popup })
|
|
7105
7117
|
] });
|
|
7106
7118
|
};
|
|
7107
7119
|
SplitButton.states = states39;
|
|
@@ -7111,7 +7123,7 @@ SplitButton.defaultProps = defaultProps35;
|
|
|
7111
7123
|
var split_button_spec_default = SplitButton;
|
|
7112
7124
|
|
|
7113
7125
|
// src/toolbar/toolbar.spec.tsx
|
|
7114
|
-
var
|
|
7126
|
+
var import_jsx_runtime100 = require("react/jsx-runtime");
|
|
7115
7127
|
var TOOLBAR_CLASSNAME = `k-toolbar`;
|
|
7116
7128
|
var states40 = [
|
|
7117
7129
|
States.focus
|
|
@@ -7134,7 +7146,7 @@ var Toolbar = (props) => {
|
|
|
7134
7146
|
const tempToolbarChildren = [];
|
|
7135
7147
|
if (child.type === Button && child.props.className && child.props.className.includes("k-toolbar-overflow-button")) {
|
|
7136
7148
|
tempToolbarChildren.push(
|
|
7137
|
-
/* @__PURE__ */ (0,
|
|
7149
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
7138
7150
|
Button,
|
|
7139
7151
|
{
|
|
7140
7152
|
...child.props,
|
|
@@ -7145,7 +7157,7 @@ var Toolbar = (props) => {
|
|
|
7145
7157
|
);
|
|
7146
7158
|
} else if (child.type === Button && child.props.className && child.props.className.includes("k-toggle-button")) {
|
|
7147
7159
|
tempToolbarChildren.push(
|
|
7148
|
-
/* @__PURE__ */ (0,
|
|
7160
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
7149
7161
|
Button,
|
|
7150
7162
|
{
|
|
7151
7163
|
...child.props,
|
|
@@ -7156,7 +7168,7 @@ var Toolbar = (props) => {
|
|
|
7156
7168
|
);
|
|
7157
7169
|
} else if (child.type === Button) {
|
|
7158
7170
|
tempToolbarChildren.push(
|
|
7159
|
-
/* @__PURE__ */ (0,
|
|
7171
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
7160
7172
|
Button,
|
|
7161
7173
|
{
|
|
7162
7174
|
...child.props,
|
|
@@ -7167,7 +7179,7 @@ var Toolbar = (props) => {
|
|
|
7167
7179
|
);
|
|
7168
7180
|
} else if (child.type === MenuButton) {
|
|
7169
7181
|
tempToolbarChildren.push(
|
|
7170
|
-
/* @__PURE__ */ (0,
|
|
7182
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
7171
7183
|
MenuButton,
|
|
7172
7184
|
{
|
|
7173
7185
|
...child.props,
|
|
@@ -7178,7 +7190,7 @@ var Toolbar = (props) => {
|
|
|
7178
7190
|
);
|
|
7179
7191
|
} else if (child.type === split_button_spec_default) {
|
|
7180
7192
|
tempToolbarChildren.push(
|
|
7181
|
-
/* @__PURE__ */ (0,
|
|
7193
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
7182
7194
|
split_button_spec_default,
|
|
7183
7195
|
{
|
|
7184
7196
|
...child.props,
|
|
@@ -7192,7 +7204,7 @@ var Toolbar = (props) => {
|
|
|
7192
7204
|
const childrenArray = Array.isArray(child.props.children) ? child.props.children : [child.props.children];
|
|
7193
7205
|
childrenArray.forEach((button, bindex) => {
|
|
7194
7206
|
buttonGroupItems.push(
|
|
7195
|
-
/* @__PURE__ */ (0,
|
|
7207
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
7196
7208
|
Button,
|
|
7197
7209
|
{
|
|
7198
7210
|
...button.props,
|
|
@@ -7203,7 +7215,7 @@ var Toolbar = (props) => {
|
|
|
7203
7215
|
);
|
|
7204
7216
|
});
|
|
7205
7217
|
tempToolbarChildren.push(
|
|
7206
|
-
/* @__PURE__ */ (0,
|
|
7218
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
7207
7219
|
ButtonGroup,
|
|
7208
7220
|
{
|
|
7209
7221
|
...child.props,
|
|
@@ -7215,7 +7227,7 @@ var Toolbar = (props) => {
|
|
|
7215
7227
|
);
|
|
7216
7228
|
} else if (child.type === Combobox) {
|
|
7217
7229
|
tempToolbarChildren.push(
|
|
7218
|
-
/* @__PURE__ */ (0,
|
|
7230
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
7219
7231
|
Combobox,
|
|
7220
7232
|
{
|
|
7221
7233
|
...child.props,
|
|
@@ -7226,7 +7238,7 @@ var Toolbar = (props) => {
|
|
|
7226
7238
|
);
|
|
7227
7239
|
} else if (child.type === DropdownList) {
|
|
7228
7240
|
tempToolbarChildren.push(
|
|
7229
|
-
/* @__PURE__ */ (0,
|
|
7241
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
7230
7242
|
DropdownList,
|
|
7231
7243
|
{
|
|
7232
7244
|
...child.props,
|
|
@@ -7237,7 +7249,7 @@ var Toolbar = (props) => {
|
|
|
7237
7249
|
);
|
|
7238
7250
|
} else if (child.type === ColorPicker) {
|
|
7239
7251
|
tempToolbarChildren.push(
|
|
7240
|
-
/* @__PURE__ */ (0,
|
|
7252
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
7241
7253
|
ColorPicker,
|
|
7242
7254
|
{
|
|
7243
7255
|
...child.props,
|
|
@@ -7259,7 +7271,7 @@ var Toolbar = (props) => {
|
|
|
7259
7271
|
addUniqueToolClass(child, index);
|
|
7260
7272
|
});
|
|
7261
7273
|
}
|
|
7262
|
-
return /* @__PURE__ */ (0,
|
|
7274
|
+
return /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
7263
7275
|
"div",
|
|
7264
7276
|
{
|
|
7265
7277
|
...other,
|
|
@@ -7286,7 +7298,7 @@ Toolbar.className = TOOLBAR_CLASSNAME;
|
|
|
7286
7298
|
Toolbar.defaultProps = defaultProps36;
|
|
7287
7299
|
|
|
7288
7300
|
// src/toolbar/toolbar-angular.spec.tsx
|
|
7289
|
-
var
|
|
7301
|
+
var import_jsx_runtime101 = require("react/jsx-runtime");
|
|
7290
7302
|
var TOOLBARANGULAR_CLASSNAME = `k-toolbar`;
|
|
7291
7303
|
var states41 = [
|
|
7292
7304
|
States.focus
|
|
@@ -7309,7 +7321,7 @@ var ToolbarAngular = (props) => {
|
|
|
7309
7321
|
const tempToolbarChildren = [];
|
|
7310
7322
|
if (child.type === Button && child.props.className && child.props.className.includes("k-toolbar-overflow-button")) {
|
|
7311
7323
|
tempToolbarChildren.push(
|
|
7312
|
-
/* @__PURE__ */ (0,
|
|
7324
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
7313
7325
|
Button,
|
|
7314
7326
|
{
|
|
7315
7327
|
...child.props,
|
|
@@ -7320,7 +7332,7 @@ var ToolbarAngular = (props) => {
|
|
|
7320
7332
|
);
|
|
7321
7333
|
} else if (child.type === Button && child.props.className && child.props.className.includes("k-toggle-button")) {
|
|
7322
7334
|
tempToolbarChildren.push(
|
|
7323
|
-
/* @__PURE__ */ (0,
|
|
7335
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
7324
7336
|
Button,
|
|
7325
7337
|
{
|
|
7326
7338
|
...child.props,
|
|
@@ -7331,7 +7343,7 @@ var ToolbarAngular = (props) => {
|
|
|
7331
7343
|
);
|
|
7332
7344
|
} else if (child.type === Button) {
|
|
7333
7345
|
tempToolbarChildren.push(
|
|
7334
|
-
/* @__PURE__ */ (0,
|
|
7346
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
7335
7347
|
Button,
|
|
7336
7348
|
{
|
|
7337
7349
|
...child.props,
|
|
@@ -7342,7 +7354,7 @@ var ToolbarAngular = (props) => {
|
|
|
7342
7354
|
);
|
|
7343
7355
|
} else if (child.type === MenuButton) {
|
|
7344
7356
|
tempToolbarChildren.push(
|
|
7345
|
-
/* @__PURE__ */ (0,
|
|
7357
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
7346
7358
|
MenuButton,
|
|
7347
7359
|
{
|
|
7348
7360
|
...child.props,
|
|
@@ -7353,7 +7365,7 @@ var ToolbarAngular = (props) => {
|
|
|
7353
7365
|
);
|
|
7354
7366
|
} else if (child.type === split_button_spec_default) {
|
|
7355
7367
|
tempToolbarChildren.push(
|
|
7356
|
-
/* @__PURE__ */ (0,
|
|
7368
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
7357
7369
|
split_button_spec_default,
|
|
7358
7370
|
{
|
|
7359
7371
|
...child.props,
|
|
@@ -7367,7 +7379,7 @@ var ToolbarAngular = (props) => {
|
|
|
7367
7379
|
const childrenArray = Array.isArray(child.props.children) ? child.props.children : [child.props.children];
|
|
7368
7380
|
childrenArray.forEach((button, bindex) => {
|
|
7369
7381
|
buttonGroupItems.push(
|
|
7370
|
-
/* @__PURE__ */ (0,
|
|
7382
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
7371
7383
|
Button,
|
|
7372
7384
|
{
|
|
7373
7385
|
...button.props,
|
|
@@ -7378,7 +7390,7 @@ var ToolbarAngular = (props) => {
|
|
|
7378
7390
|
);
|
|
7379
7391
|
});
|
|
7380
7392
|
tempToolbarChildren.push(
|
|
7381
|
-
/* @__PURE__ */ (0,
|
|
7393
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
7382
7394
|
ButtonGroup,
|
|
7383
7395
|
{
|
|
7384
7396
|
...child.props,
|
|
@@ -7390,7 +7402,7 @@ var ToolbarAngular = (props) => {
|
|
|
7390
7402
|
);
|
|
7391
7403
|
} else if (child.type === Combobox) {
|
|
7392
7404
|
tempToolbarChildren.push(
|
|
7393
|
-
/* @__PURE__ */ (0,
|
|
7405
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
7394
7406
|
Combobox,
|
|
7395
7407
|
{
|
|
7396
7408
|
...child.props,
|
|
@@ -7401,7 +7413,7 @@ var ToolbarAngular = (props) => {
|
|
|
7401
7413
|
);
|
|
7402
7414
|
} else if (child.type === DropdownList) {
|
|
7403
7415
|
tempToolbarChildren.push(
|
|
7404
|
-
/* @__PURE__ */ (0,
|
|
7416
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
7405
7417
|
DropdownList,
|
|
7406
7418
|
{
|
|
7407
7419
|
...child.props,
|
|
@@ -7412,7 +7424,7 @@ var ToolbarAngular = (props) => {
|
|
|
7412
7424
|
);
|
|
7413
7425
|
} else if (child.type === ColorPicker) {
|
|
7414
7426
|
tempToolbarChildren.push(
|
|
7415
|
-
/* @__PURE__ */ (0,
|
|
7427
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsx)("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
7416
7428
|
ColorPicker,
|
|
7417
7429
|
{
|
|
7418
7430
|
...child.props,
|
|
@@ -7434,7 +7446,7 @@ var ToolbarAngular = (props) => {
|
|
|
7434
7446
|
addUniqueToolClass(child, index);
|
|
7435
7447
|
});
|
|
7436
7448
|
}
|
|
7437
|
-
return /* @__PURE__ */ (0,
|
|
7449
|
+
return /* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
7438
7450
|
"div",
|
|
7439
7451
|
{
|
|
7440
7452
|
...other,
|
|
@@ -7461,10 +7473,10 @@ ToolbarAngular.className = TOOLBARANGULAR_CLASSNAME;
|
|
|
7461
7473
|
ToolbarAngular.defaultProps = defaultProps37;
|
|
7462
7474
|
|
|
7463
7475
|
// src/toolbar/toolbar-separator.tsx
|
|
7464
|
-
var
|
|
7476
|
+
var import_jsx_runtime102 = require("react/jsx-runtime");
|
|
7465
7477
|
|
|
7466
7478
|
// src/toolbar/toolbar-item.spec.tsx
|
|
7467
|
-
var
|
|
7479
|
+
var import_jsx_runtime103 = require("react/jsx-runtime");
|
|
7468
7480
|
var TOOLBARITEM_CLASSNAME = `k-toolbar-item`;
|
|
7469
7481
|
var states42 = [
|
|
7470
7482
|
States.focus
|
|
@@ -7476,7 +7488,7 @@ var ToolbarItem = (props) => {
|
|
|
7476
7488
|
focus,
|
|
7477
7489
|
...other
|
|
7478
7490
|
} = props;
|
|
7479
|
-
return /* @__PURE__ */ (0,
|
|
7491
|
+
return /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
|
|
7480
7492
|
"div",
|
|
7481
7493
|
{
|
|
7482
7494
|
...other,
|
|
@@ -7497,7 +7509,7 @@ ToolbarItem.className = TOOLBARITEM_CLASSNAME;
|
|
|
7497
7509
|
ToolbarItem.defaultProps = defaultProps38;
|
|
7498
7510
|
|
|
7499
7511
|
// src/grid/tests/grid-size-sm-comp-sm.tsx
|
|
7500
|
-
var
|
|
7512
|
+
var import_jsx_runtime104 = require("react/jsx-runtime");
|
|
7501
7513
|
var styles = `
|
|
7502
7514
|
.k-grouping-header .k-grouping-dropclue {
|
|
7503
7515
|
left: 0;
|
|
@@ -7506,275 +7518,275 @@ var styles = `
|
|
|
7506
7518
|
position: relative;
|
|
7507
7519
|
}
|
|
7508
7520
|
`;
|
|
7509
|
-
var grid_size_sm_comp_sm_default = () => /* @__PURE__ */ (0,
|
|
7510
|
-
/* @__PURE__ */ (0,
|
|
7511
|
-
/* @__PURE__ */ (0,
|
|
7512
|
-
/* @__PURE__ */ (0,
|
|
7513
|
-
/* @__PURE__ */ (0,
|
|
7514
|
-
/* @__PURE__ */ (0,
|
|
7515
|
-
/* @__PURE__ */ (0,
|
|
7516
|
-
/* @__PURE__ */ (0,
|
|
7517
|
-
/* @__PURE__ */ (0,
|
|
7521
|
+
var grid_size_sm_comp_sm_default = () => /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)(import_jsx_runtime104.Fragment, { children: [
|
|
7522
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("style", { children: styles }),
|
|
7523
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("div", { id: "test-area", className: "k-d-grid k-grid-cols-2", children: [
|
|
7524
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "col-2", children: "Grid" }),
|
|
7525
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("section", { className: "col-2", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("div", { className: "k-grid k-grid-sm k-grid-no-scrollbar", children: [
|
|
7526
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("div", { className: "k-grid-header", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("div", { className: "k-grid-header-wrap", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("table", { className: "k-table k-table-sm k-grid-header-table", children: [
|
|
7527
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("colgroup", { children: [
|
|
7528
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", { style: { width: "100px" } }),
|
|
7529
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", {})
|
|
7518
7530
|
] }),
|
|
7519
|
-
/* @__PURE__ */ (0,
|
|
7520
|
-
/* @__PURE__ */ (0,
|
|
7521
|
-
/* @__PURE__ */ (0,
|
|
7531
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("thead", { className: "k-table-thead", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("tr", { className: "k-table-row", children: [
|
|
7532
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("th", { className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-column-title", children: "100px" }) }) }) }),
|
|
7533
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("th", { className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-column-title", children: "no width" }) }) }) })
|
|
7522
7534
|
] }) })
|
|
7523
7535
|
] }) }) }),
|
|
7524
|
-
/* @__PURE__ */ (0,
|
|
7525
|
-
/* @__PURE__ */ (0,
|
|
7526
|
-
/* @__PURE__ */ (0,
|
|
7527
|
-
/* @__PURE__ */ (0,
|
|
7536
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("div", { className: "k-grid-content", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("table", { className: "k-table k-table-sm k-grid-table", children: [
|
|
7537
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("colgroup", { children: [
|
|
7538
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", { style: { width: "100px" } }),
|
|
7539
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", {})
|
|
7528
7540
|
] }),
|
|
7529
|
-
/* @__PURE__ */ (0,
|
|
7530
|
-
/* @__PURE__ */ (0,
|
|
7531
|
-
/* @__PURE__ */ (0,
|
|
7532
|
-
/* @__PURE__ */ (0,
|
|
7541
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("tbody", { className: "k-table-tbody", children: [
|
|
7542
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("tr", { className: "k-table-row", children: [
|
|
7543
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", children: "1" }),
|
|
7544
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", children: "Row" })
|
|
7533
7545
|
] }),
|
|
7534
|
-
/* @__PURE__ */ (0,
|
|
7535
|
-
/* @__PURE__ */ (0,
|
|
7536
|
-
/* @__PURE__ */ (0,
|
|
7546
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("tr", { className: "k-table-row k-table-alt-row k-alt", children: [
|
|
7547
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", children: "2" }),
|
|
7548
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", children: "Alt row" })
|
|
7537
7549
|
] }),
|
|
7538
|
-
/* @__PURE__ */ (0,
|
|
7539
|
-
/* @__PURE__ */ (0,
|
|
7540
|
-
/* @__PURE__ */ (0,
|
|
7550
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("tr", { className: "k-table-row", children: [
|
|
7551
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", children: "3" }),
|
|
7552
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.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." })
|
|
7541
7553
|
] }),
|
|
7542
|
-
/* @__PURE__ */ (0,
|
|
7543
|
-
/* @__PURE__ */ (0,
|
|
7544
|
-
/* @__PURE__ */ (0,
|
|
7554
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("tr", { className: "k-table-row k-table-alt-row k-alt", children: [
|
|
7555
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", children: "4" }),
|
|
7556
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Skeleton, { animation: false }) })
|
|
7545
7557
|
] }),
|
|
7546
|
-
/* @__PURE__ */ (0,
|
|
7547
|
-
/* @__PURE__ */ (0,
|
|
7548
|
-
/* @__PURE__ */ (0,
|
|
7558
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("tr", { className: "k-table-row", children: [
|
|
7559
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", children: "5" }),
|
|
7560
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Skeleton, { animation: false }) })
|
|
7549
7561
|
] })
|
|
7550
7562
|
] })
|
|
7551
7563
|
] }) }),
|
|
7552
|
-
/* @__PURE__ */ (0,
|
|
7564
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Pager, { className: "k-grid-pager", size: "small" })
|
|
7553
7565
|
] }) }),
|
|
7554
|
-
/* @__PURE__ */ (0,
|
|
7555
|
-
/* @__PURE__ */ (0,
|
|
7556
|
-
/* @__PURE__ */ (0,
|
|
7557
|
-
/* @__PURE__ */ (0,
|
|
7558
|
-
/* @__PURE__ */ (0,
|
|
7559
|
-
/* @__PURE__ */ (0,
|
|
7560
|
-
/* @__PURE__ */ (0,
|
|
7561
|
-
/* @__PURE__ */ (0,
|
|
7562
|
-
/* @__PURE__ */ (0,
|
|
7566
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "col-2", children: "Filtering" }),
|
|
7567
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("section", { className: "col-2", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("div", { className: "k-grid k-grid-sm k-grid-no-scrollbar", style: { height: "150px" }, children: [
|
|
7568
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("div", { className: "k-grid-header", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("div", { className: "k-grid-header-wrap", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("table", { className: "k-table k-table-sm k-grid-header-table", children: [
|
|
7569
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("colgroup", { children: [
|
|
7570
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", { className: "k-hierarchy-col" }),
|
|
7571
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", {}),
|
|
7572
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", {}),
|
|
7573
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", {}),
|
|
7574
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", {})
|
|
7563
7575
|
] }),
|
|
7564
|
-
/* @__PURE__ */ (0,
|
|
7565
|
-
/* @__PURE__ */ (0,
|
|
7566
|
-
/* @__PURE__ */ (0,
|
|
7567
|
-
/* @__PURE__ */ (0,
|
|
7568
|
-
/* @__PURE__ */ (0,
|
|
7569
|
-
/* @__PURE__ */ (0,
|
|
7576
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("thead", { className: "k-table-thead", children: [
|
|
7577
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("tr", { className: "k-table-row", children: [
|
|
7578
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("th", { className: "k-table-th k-header k-hierarchy-cell" }),
|
|
7579
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("th", { className: "k-table-th k-header k-filterable", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("span", { className: "k-cell-inner", children: [
|
|
7580
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-column-title", children: "Default" }) }),
|
|
7581
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Icon, { icon: "filter" }) })
|
|
7570
7582
|
] }) }),
|
|
7571
|
-
/* @__PURE__ */ (0,
|
|
7572
|
-
/* @__PURE__ */ (0,
|
|
7573
|
-
/* @__PURE__ */ (0,
|
|
7583
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("th", { className: "k-table-th k-header k-filterable k-hover", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("span", { className: "k-cell-inner", children: [
|
|
7584
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-column-title", children: "Hover" }) }),
|
|
7585
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Icon, { icon: "filter" }) })
|
|
7574
7586
|
] }) }),
|
|
7575
|
-
/* @__PURE__ */ (0,
|
|
7576
|
-
/* @__PURE__ */ (0,
|
|
7577
|
-
/* @__PURE__ */ (0,
|
|
7587
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("th", { className: "k-table-th k-header k-filterable k-focus", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("span", { className: "k-cell-inner", children: [
|
|
7588
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-column-title", children: "Focus" }) }),
|
|
7589
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Icon, { icon: "filter" }) })
|
|
7578
7590
|
] }) }),
|
|
7579
|
-
/* @__PURE__ */ (0,
|
|
7580
|
-
/* @__PURE__ */ (0,
|
|
7581
|
-
/* @__PURE__ */ (0,
|
|
7591
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("th", { className: "k-table-th k-header k-filterable k-active", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("span", { className: "k-cell-inner", children: [
|
|
7592
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-column-title", children: "Active" }) }),
|
|
7593
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu k-active", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Icon, { icon: "filter" }) })
|
|
7582
7594
|
] }) }),
|
|
7583
|
-
/* @__PURE__ */ (0,
|
|
7584
|
-
/* @__PURE__ */ (0,
|
|
7585
|
-
/* @__PURE__ */ (0,
|
|
7586
|
-
/* @__PURE__ */ (0,
|
|
7595
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("th", { className: "k-table-th k-header k-filterable k-sorted", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("span", { className: "k-cell-inner", children: [
|
|
7596
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("span", { className: "k-link", children: [
|
|
7597
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-column-title", children: "Sorted" }),
|
|
7598
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-sort-icon", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Icon, { icon: "sort-asc-small" }) })
|
|
7587
7599
|
] }),
|
|
7588
|
-
/* @__PURE__ */ (0,
|
|
7600
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("a", { href: "#", className: "k-grid-filter-menu k-grid-header-menu", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Icon, { icon: "filter" }) })
|
|
7589
7601
|
] }) })
|
|
7590
7602
|
] }),
|
|
7591
|
-
/* @__PURE__ */ (0,
|
|
7592
|
-
/* @__PURE__ */ (0,
|
|
7593
|
-
/* @__PURE__ */ (0,
|
|
7594
|
-
/* @__PURE__ */ (0,
|
|
7595
|
-
/* @__PURE__ */ (0,
|
|
7596
|
-
/* @__PURE__ */ (0,
|
|
7603
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("tr", { className: "k-table-row k-filter-row", children: [
|
|
7604
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("th", { className: "k-table-th", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("div", { className: "k-filtercell", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("div", { className: "k-filtercell-wrapper" }) }) }),
|
|
7605
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("th", { className: "k-table-th", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("div", { className: "k-filtercell", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("div", { className: "k-filtercell-wrapper", children: [
|
|
7606
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(NumericTextbox, { size: "small" }),
|
|
7607
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("div", { className: "k-filtercell-operator", children: [
|
|
7608
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(DropdownList, { size: "small", className: "k-dropdown-operator", arrowIconName: "filter" }),
|
|
7597
7609
|
" ",
|
|
7598
|
-
/* @__PURE__ */ (0,
|
|
7610
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Button, { size: "small", icon: "filter-clear", disabled: true })
|
|
7599
7611
|
] })
|
|
7600
7612
|
] }) }) }),
|
|
7601
|
-
/* @__PURE__ */ (0,
|
|
7602
|
-
/* @__PURE__ */ (0,
|
|
7603
|
-
/* @__PURE__ */ (0,
|
|
7604
|
-
/* @__PURE__ */ (0,
|
|
7613
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("th", { className: "k-table-th", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("div", { className: "k-filtercell", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("div", { className: "k-filtercell-wrapper", children: [
|
|
7614
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Textbox, { size: "small", showClearButton: false, value: "p" }),
|
|
7615
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("div", { className: "k-filtercell-operator", children: [
|
|
7616
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(DropdownList, { size: "small", className: "k-dropdown-operator", arrowIconName: "filter" }),
|
|
7605
7617
|
" ",
|
|
7606
|
-
/* @__PURE__ */ (0,
|
|
7618
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Button, { size: "small", icon: "filter-clear" })
|
|
7607
7619
|
] })
|
|
7608
7620
|
] }) }) }),
|
|
7609
|
-
/* @__PURE__ */ (0,
|
|
7610
|
-
/* @__PURE__ */ (0,
|
|
7611
|
-
/* @__PURE__ */ (0,
|
|
7612
|
-
/* @__PURE__ */ (0,
|
|
7621
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("th", { className: "k-table-th", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("div", { className: "k-filtercell", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("div", { className: "k-filtercell-wrapper", children: [
|
|
7622
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Textbox, { size: "small", showClearButton: false, value: "p" }),
|
|
7623
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("div", { className: "k-filtercell-operator", children: [
|
|
7624
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(DropdownList, { size: "small", className: "k-dropdown-operator", arrowIconName: "filter" }),
|
|
7613
7625
|
" ",
|
|
7614
|
-
/* @__PURE__ */ (0,
|
|
7626
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Button, { size: "small", icon: "filter-clear" })
|
|
7615
7627
|
] })
|
|
7616
7628
|
] }) }) }),
|
|
7617
|
-
/* @__PURE__ */ (0,
|
|
7618
|
-
/* @__PURE__ */ (0,
|
|
7619
|
-
/* @__PURE__ */ (0,
|
|
7620
|
-
/* @__PURE__ */ (0,
|
|
7629
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("th", { className: "k-table-th", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("div", { className: "k-filtercell", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("div", { className: "k-filtercell-wrapper", children: [
|
|
7630
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Textbox, { size: "small", showClearButton: false, value: "p" }),
|
|
7631
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("div", { className: "k-filtercell-operator", children: [
|
|
7632
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(DropdownList, { size: "small", className: "k-dropdown-operator", arrowIconName: "filter" }),
|
|
7621
7633
|
" ",
|
|
7622
|
-
/* @__PURE__ */ (0,
|
|
7634
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Button, { size: "small", icon: "filter-clear" })
|
|
7623
7635
|
] })
|
|
7624
7636
|
] }) }) }),
|
|
7625
|
-
/* @__PURE__ */ (0,
|
|
7637
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("th", { className: "k-table-th", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("div", { className: "k-filtercell", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("div", { className: "k-filtercell-wrapper" }) }) })
|
|
7626
7638
|
] })
|
|
7627
7639
|
] })
|
|
7628
7640
|
] }) }) }),
|
|
7629
|
-
/* @__PURE__ */ (0,
|
|
7630
|
-
/* @__PURE__ */ (0,
|
|
7631
|
-
/* @__PURE__ */ (0,
|
|
7632
|
-
/* @__PURE__ */ (0,
|
|
7633
|
-
/* @__PURE__ */ (0,
|
|
7634
|
-
/* @__PURE__ */ (0,
|
|
7635
|
-
/* @__PURE__ */ (0,
|
|
7641
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("div", { className: "k-grid-content", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("table", { className: "k-table k-table-sm k-grid-table", children: [
|
|
7642
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("colgroup", { children: [
|
|
7643
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", { className: "k-hierarchy-col" }),
|
|
7644
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", {}),
|
|
7645
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", {}),
|
|
7646
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", {}),
|
|
7647
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", {})
|
|
7636
7648
|
] }),
|
|
7637
|
-
/* @__PURE__ */ (0,
|
|
7638
|
-
/* @__PURE__ */ (0,
|
|
7639
|
-
/* @__PURE__ */ (0,
|
|
7640
|
-
/* @__PURE__ */ (0,
|
|
7641
|
-
/* @__PURE__ */ (0,
|
|
7642
|
-
/* @__PURE__ */ (0,
|
|
7643
|
-
/* @__PURE__ */ (0,
|
|
7644
|
-
/* @__PURE__ */ (0,
|
|
7649
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("tbody", { className: "k-table-tbody", children: [
|
|
7650
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("tr", { className: "k-table-row k-master-row k-expanded", children: [
|
|
7651
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td k-hierarchy-cell", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Icon, { icon: "caret-alt-down" }) }),
|
|
7652
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", children: "1" }),
|
|
7653
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", children: "Text" }),
|
|
7654
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", children: "Text" }),
|
|
7655
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", children: "Text" }),
|
|
7656
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", children: "Text" })
|
|
7645
7657
|
] }),
|
|
7646
|
-
/* @__PURE__ */ (0,
|
|
7647
|
-
/* @__PURE__ */ (0,
|
|
7648
|
-
/* @__PURE__ */ (0,
|
|
7658
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("tr", { className: "k-table-row k-detail-row", children: [
|
|
7659
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td k-hierarchy-cell" }),
|
|
7660
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td k-detail-cell", colSpan: 5, children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("div", { style: { background: "#ccc", padding: "10px" }, children: "Nested content" }) })
|
|
7649
7661
|
] }),
|
|
7650
|
-
/* @__PURE__ */ (0,
|
|
7651
|
-
/* @__PURE__ */ (0,
|
|
7652
|
-
/* @__PURE__ */ (0,
|
|
7653
|
-
/* @__PURE__ */ (0,
|
|
7654
|
-
/* @__PURE__ */ (0,
|
|
7655
|
-
/* @__PURE__ */ (0,
|
|
7656
|
-
/* @__PURE__ */ (0,
|
|
7662
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("tr", { className: "k-table-row k-table-alt-row k-alt k-master-row", children: [
|
|
7663
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td k-hierarchy-cell", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Icon, { icon: "caret-alt-right" }) }),
|
|
7664
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", children: "2" }),
|
|
7665
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", children: "Text" }),
|
|
7666
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", children: "Text" }),
|
|
7667
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", children: "Text" }),
|
|
7668
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", children: "Text" })
|
|
7657
7669
|
] })
|
|
7658
7670
|
] })
|
|
7659
7671
|
] }) })
|
|
7660
7672
|
] }) }),
|
|
7661
|
-
/* @__PURE__ */ (0,
|
|
7662
|
-
/* @__PURE__ */ (0,
|
|
7663
|
-
/* @__PURE__ */ (0,
|
|
7664
|
-
/* @__PURE__ */ (0,
|
|
7665
|
-
/* @__PURE__ */ (0,
|
|
7666
|
-
/* @__PURE__ */ (0,
|
|
7667
|
-
/* @__PURE__ */ (0,
|
|
7668
|
-
/* @__PURE__ */ (0,
|
|
7669
|
-
/* @__PURE__ */ (0,
|
|
7673
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { children: "Editing" }),
|
|
7674
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("section", { className: "col-2", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("div", { className: "k-grid k-grid-sm k-grid-no-scrollbar", children: [
|
|
7675
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Toolbar, { className: "k-grid-toolbar", size: "small", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Button, { icon: "plus", size: "small", children: "Add new record" }) }),
|
|
7676
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("div", { className: "k-grid-header", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("div", { className: "k-grid-header-wrap", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("table", { className: "k-table k-table-sm k-grid-header-table", children: [
|
|
7677
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("colgroup", { children: [
|
|
7678
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", {}),
|
|
7679
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", {}),
|
|
7680
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", {}),
|
|
7681
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", { style: { width: "300px" } })
|
|
7670
7682
|
] }),
|
|
7671
|
-
/* @__PURE__ */ (0,
|
|
7672
|
-
/* @__PURE__ */ (0,
|
|
7673
|
-
/* @__PURE__ */ (0,
|
|
7674
|
-
/* @__PURE__ */ (0,
|
|
7675
|
-
/* @__PURE__ */ (0,
|
|
7683
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("thead", { className: "k-table-thead", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("tr", { className: "k-table-row", children: [
|
|
7684
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("th", { scope: "col", className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-column-title", children: "Name" }) }) }) }),
|
|
7685
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("th", { scope: "col", className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-column-title", children: "Price" }) }) }) }),
|
|
7686
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("th", { scope: "col", className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-column-title", children: "Available" }) }) }) }),
|
|
7687
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("th", { scope: "col", className: "k-table-th k-header", children: "\xA0" })
|
|
7676
7688
|
] }) })
|
|
7677
7689
|
] }) }) }),
|
|
7678
|
-
/* @__PURE__ */ (0,
|
|
7679
|
-
/* @__PURE__ */ (0,
|
|
7680
|
-
/* @__PURE__ */ (0,
|
|
7681
|
-
/* @__PURE__ */ (0,
|
|
7682
|
-
/* @__PURE__ */ (0,
|
|
7683
|
-
/* @__PURE__ */ (0,
|
|
7690
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("div", { className: "k-grid-content", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("table", { className: "k-table k-table-sm k-grid-table", style: { height: "auto" }, children: [
|
|
7691
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("colgroup", { children: [
|
|
7692
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", {}),
|
|
7693
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", {}),
|
|
7694
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", {}),
|
|
7695
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", { style: { width: "300px" } })
|
|
7684
7696
|
] }),
|
|
7685
|
-
/* @__PURE__ */ (0,
|
|
7686
|
-
/* @__PURE__ */ (0,
|
|
7687
|
-
/* @__PURE__ */ (0,
|
|
7688
|
-
/* @__PURE__ */ (0,
|
|
7689
|
-
/* @__PURE__ */ (0,
|
|
7690
|
-
/* @__PURE__ */ (0,
|
|
7691
|
-
/* @__PURE__ */ (0,
|
|
7692
|
-
/* @__PURE__ */ (0,
|
|
7693
|
-
/* @__PURE__ */ (0,
|
|
7697
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("tbody", { className: "k-table-tbody", children: [
|
|
7698
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("tr", { className: "k-table-row k-grid-edit-row", children: [
|
|
7699
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Textbox, { value: "Towel", required: true, size: "small" }) }),
|
|
7700
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("td", { className: "k-table-td", children: [
|
|
7701
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(NumericTextbox, { invalid: true, size: "small" }),
|
|
7702
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("div", { className: "k-tooltip k-validator-tooltip k-tooltip-error k-invalid-msg", children: [
|
|
7703
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Icon, { className: "k-tooltip-icon", icon: "exclamation-circle" }),
|
|
7704
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-tooltip-content", children: "Price" }),
|
|
7705
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("div", { className: "k-callout k-callout-n" })
|
|
7694
7706
|
] })
|
|
7695
7707
|
] }),
|
|
7696
|
-
/* @__PURE__ */ (0,
|
|
7697
|
-
/* @__PURE__ */ (0,
|
|
7698
|
-
/* @__PURE__ */ (0,
|
|
7708
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("td", { className: "k-table-td", children: [
|
|
7709
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Checkbox, { id: "e77452cd-b3b5-4dc9-8210-17007584b695" }),
|
|
7710
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("label", { className: "k-checkbox-label", htmlFor: "e77452cd-b3b5-4dc9-8210-17007584b695" })
|
|
7699
7711
|
] }),
|
|
7700
|
-
/* @__PURE__ */ (0,
|
|
7701
|
-
/* @__PURE__ */ (0,
|
|
7702
|
-
/* @__PURE__ */ (0,
|
|
7712
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("td", { className: "k-table-td k-command-cell", children: [
|
|
7713
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Button, { size: "small", icon: "check", themeColor: "primary", children: "Update" }),
|
|
7714
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Button, { size: "small", icon: "cancel", children: "Cancel" })
|
|
7703
7715
|
] })
|
|
7704
7716
|
] }),
|
|
7705
|
-
/* @__PURE__ */ (0,
|
|
7706
|
-
/* @__PURE__ */ (0,
|
|
7707
|
-
/* @__PURE__ */ (0,
|
|
7717
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("tr", { className: "k-table-row k-table-alt-row k-alt k-grid-edit-row", children: [
|
|
7718
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("td", { className: "k-table-td k-dirty-cell", children: [
|
|
7719
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-dirty" }),
|
|
7708
7720
|
"LongSingleWordTestLongSingleWordTestLongSingleWordTestLongSingleWordTest"
|
|
7709
7721
|
] }),
|
|
7710
|
-
/* @__PURE__ */ (0,
|
|
7711
|
-
/* @__PURE__ */ (0,
|
|
7712
|
-
/* @__PURE__ */ (0,
|
|
7713
|
-
/* @__PURE__ */ (0,
|
|
7714
|
-
/* @__PURE__ */ (0,
|
|
7722
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", children: "18" }),
|
|
7723
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", children: "false" }),
|
|
7724
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("td", { className: "k-table-td k-command-cell", children: [
|
|
7725
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Button, { size: "small", icon: "pencil", children: "Edit" }),
|
|
7726
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Button, { size: "small", icon: "x", children: "Delete" })
|
|
7715
7727
|
] })
|
|
7716
7728
|
] }),
|
|
7717
|
-
/* @__PURE__ */ (0,
|
|
7718
|
-
/* @__PURE__ */ (0,
|
|
7719
|
-
/* @__PURE__ */ (0,
|
|
7720
|
-
/* @__PURE__ */ (0,
|
|
7721
|
-
/* @__PURE__ */ (0,
|
|
7722
|
-
/* @__PURE__ */ (0,
|
|
7723
|
-
/* @__PURE__ */ (0,
|
|
7729
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("tr", { className: "k-table-row", children: [
|
|
7730
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", children: "Chang" }),
|
|
7731
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", children: "19" }),
|
|
7732
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", children: "false" }),
|
|
7733
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("td", { className: "k-table-td k-command-cell", children: [
|
|
7734
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Button, { size: "small", icon: "pencil", children: "Edit" }),
|
|
7735
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Button, { size: "small", icon: "x", children: "Delete" })
|
|
7724
7736
|
] })
|
|
7725
7737
|
] })
|
|
7726
7738
|
] })
|
|
7727
7739
|
] }) })
|
|
7728
7740
|
] }) }),
|
|
7729
|
-
/* @__PURE__ */ (0,
|
|
7730
|
-
/* @__PURE__ */ (0,
|
|
7731
|
-
/* @__PURE__ */ (0,
|
|
7732
|
-
/* @__PURE__ */ (0,
|
|
7733
|
-
/* @__PURE__ */ (0,
|
|
7734
|
-
/* @__PURE__ */ (0,
|
|
7735
|
-
/* @__PURE__ */ (0,
|
|
7741
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { children: "Grouping" }),
|
|
7742
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("section", { className: "col-2", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("div", { className: "k-grid k-grid-sm k-grid-no-scrollbar", children: [
|
|
7743
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("div", { className: "k-grouping-header", children: [
|
|
7744
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("div", { className: "k-grouping-dropclue" }),
|
|
7745
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)(ChipList, { size: "small", children: [
|
|
7746
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Chip, { size: "small", icon: "sort-asc-small", actions: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(ChipAction, { type: "remove" }), children: "Price" }),
|
|
7747
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Chip, { size: "small", icon: "sort-desc-small", actions: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(ChipAction, { type: "remove" }), children: "Name" })
|
|
7736
7748
|
] }),
|
|
7737
|
-
/* @__PURE__ */ (0,
|
|
7749
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("div", { className: "k-grouping-drop-container" })
|
|
7738
7750
|
] }),
|
|
7739
|
-
/* @__PURE__ */ (0,
|
|
7740
|
-
/* @__PURE__ */ (0,
|
|
7741
|
-
/* @__PURE__ */ (0,
|
|
7742
|
-
/* @__PURE__ */ (0,
|
|
7743
|
-
/* @__PURE__ */ (0,
|
|
7744
|
-
/* @__PURE__ */ (0,
|
|
7745
|
-
/* @__PURE__ */ (0,
|
|
7751
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("div", { className: "k-grid-header", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("div", { className: "k-grid-header-wrap", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("table", { className: "k-table k-table-sm k-grid-header-table", children: [
|
|
7752
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("colgroup", { children: [
|
|
7753
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", { className: "k-group-col" }),
|
|
7754
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", {}),
|
|
7755
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", {}),
|
|
7756
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", {}),
|
|
7757
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", {})
|
|
7746
7758
|
] }),
|
|
7747
|
-
/* @__PURE__ */ (0,
|
|
7748
|
-
/* @__PURE__ */ (0,
|
|
7749
|
-
/* @__PURE__ */ (0,
|
|
7750
|
-
/* @__PURE__ */ (0,
|
|
7751
|
-
/* @__PURE__ */ (0,
|
|
7752
|
-
/* @__PURE__ */ (0,
|
|
7759
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("thead", { className: "k-table-thead", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("tr", { className: "k-table-row", children: [
|
|
7760
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("th", { className: "k-table-th k-group-cell k-header", scope: "col" }),
|
|
7761
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("th", { className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-column-title", children: "Name" }) }) }) }),
|
|
7762
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("th", { className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-column-title", children: "Price" }) }) }) }),
|
|
7763
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("th", { className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-column-title", children: "Available" }) }) }) }),
|
|
7764
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("th", { className: "k-table-th k-header", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-cell-inner", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-link", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("span", { className: "k-column-title", children: "Units" }) }) }) })
|
|
7753
7765
|
] }) })
|
|
7754
7766
|
] }) }) }),
|
|
7755
|
-
/* @__PURE__ */ (0,
|
|
7756
|
-
/* @__PURE__ */ (0,
|
|
7757
|
-
/* @__PURE__ */ (0,
|
|
7758
|
-
/* @__PURE__ */ (0,
|
|
7759
|
-
/* @__PURE__ */ (0,
|
|
7760
|
-
/* @__PURE__ */ (0,
|
|
7761
|
-
/* @__PURE__ */ (0,
|
|
7767
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("div", { className: "k-grid-content", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("table", { className: "k-table k-table-sm k-grid-table", style: { height: "auto" }, children: [
|
|
7768
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("colgroup", { children: [
|
|
7769
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", { className: "k-group-col" }),
|
|
7770
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", {}),
|
|
7771
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", {}),
|
|
7772
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", {}),
|
|
7773
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("col", {})
|
|
7762
7774
|
] }),
|
|
7763
|
-
/* @__PURE__ */ (0,
|
|
7764
|
-
/* @__PURE__ */ (0,
|
|
7765
|
-
/* @__PURE__ */ (0,
|
|
7775
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("tbody", { className: "k-table-tbody", children: [
|
|
7776
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("tr", { className: "k-table-row k-table-group-row k-grouping-row", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", colSpan: 5, children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("p", { className: "k-reset", children: [
|
|
7777
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Icon, { icon: "caret-alt-right" }),
|
|
7766
7778
|
"Price: 19"
|
|
7767
7779
|
] }) }) }),
|
|
7768
|
-
/* @__PURE__ */ (0,
|
|
7769
|
-
/* @__PURE__ */ (0,
|
|
7780
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("tr", { className: "k-table-row k-table-group-row k-grouping-row", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", colSpan: 5, children: /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("p", { className: "k-reset", children: [
|
|
7781
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)(Icon, { icon: "caret-alt-down" }),
|
|
7770
7782
|
"Price: 30"
|
|
7771
7783
|
] }) }) }),
|
|
7772
|
-
/* @__PURE__ */ (0,
|
|
7773
|
-
/* @__PURE__ */ (0,
|
|
7774
|
-
/* @__PURE__ */ (0,
|
|
7775
|
-
/* @__PURE__ */ (0,
|
|
7776
|
-
/* @__PURE__ */ (0,
|
|
7777
|
-
/* @__PURE__ */ (0,
|
|
7784
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsxs)("tr", { className: "k-table-row", children: [
|
|
7785
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td k-table-group-td k-group-cell", children: "\xA0" }),
|
|
7786
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", children: "Chai" }),
|
|
7787
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", children: "30" }),
|
|
7788
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", children: "false" }),
|
|
7789
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("td", { className: "k-table-td", children: "15" })
|
|
7778
7790
|
] })
|
|
7779
7791
|
] })
|
|
7780
7792
|
] }) })
|