@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
|
@@ -6015,8 +6015,20 @@ Pager.options = options25;
|
|
|
6015
6015
|
Pager.className = PAGER_CLASSNAME;
|
|
6016
6016
|
Pager.defaultProps = defaultProps23;
|
|
6017
6017
|
|
|
6018
|
-
// src/
|
|
6018
|
+
// src/pager/templates/pager-normal.tsx
|
|
6019
6019
|
import { jsx as jsx63 } from "react/jsx-runtime";
|
|
6020
|
+
|
|
6021
|
+
// src/pager/templates/pager-input.tsx
|
|
6022
|
+
import { jsx as jsx64 } from "react/jsx-runtime";
|
|
6023
|
+
|
|
6024
|
+
// src/pager/templates/pager-adaptive.tsx
|
|
6025
|
+
import { jsx as jsx65 } from "react/jsx-runtime";
|
|
6026
|
+
|
|
6027
|
+
// src/pager/templates/pager-adaptive-input.tsx
|
|
6028
|
+
import { jsx as jsx66 } from "react/jsx-runtime";
|
|
6029
|
+
|
|
6030
|
+
// src/table/data-table.spec.tsx
|
|
6031
|
+
import { jsx as jsx67 } from "react/jsx-runtime";
|
|
6020
6032
|
var DATATABLE_CLASSNAME = `k-data-table`;
|
|
6021
6033
|
var states27 = [];
|
|
6022
6034
|
var options26 = {
|
|
@@ -6030,7 +6042,7 @@ var DataTable = (props) => {
|
|
|
6030
6042
|
size = defaultProps24.size,
|
|
6031
6043
|
...other
|
|
6032
6044
|
} = props;
|
|
6033
|
-
return /* @__PURE__ */
|
|
6045
|
+
return /* @__PURE__ */ jsx67(
|
|
6034
6046
|
"div",
|
|
6035
6047
|
{
|
|
6036
6048
|
...other,
|
|
@@ -6051,16 +6063,16 @@ DataTable.className = DATATABLE_CLASSNAME;
|
|
|
6051
6063
|
DataTable.defaultProps = defaultProps24;
|
|
6052
6064
|
|
|
6053
6065
|
// src/table/table-header.tsx
|
|
6054
|
-
import { jsx as
|
|
6066
|
+
import { jsx as jsx68 } from "react/jsx-runtime";
|
|
6055
6067
|
|
|
6056
6068
|
// src/table/table-body.tsx
|
|
6057
|
-
import { jsx as
|
|
6069
|
+
import { jsx as jsx69 } from "react/jsx-runtime";
|
|
6058
6070
|
|
|
6059
6071
|
// src/table/table-footer.tsx
|
|
6060
|
-
import { jsx as
|
|
6072
|
+
import { jsx as jsx70 } from "react/jsx-runtime";
|
|
6061
6073
|
|
|
6062
6074
|
// src/table/table.spec.tsx
|
|
6063
|
-
import { jsx as
|
|
6075
|
+
import { jsx as jsx71 } from "react/jsx-runtime";
|
|
6064
6076
|
var TABLE_CLASSNAME = `k-table`;
|
|
6065
6077
|
var states28 = [];
|
|
6066
6078
|
var options27 = {
|
|
@@ -6072,7 +6084,7 @@ var Table = (props) => {
|
|
|
6072
6084
|
size,
|
|
6073
6085
|
...other
|
|
6074
6086
|
} = props;
|
|
6075
|
-
return /* @__PURE__ */
|
|
6087
|
+
return /* @__PURE__ */ jsx71(
|
|
6076
6088
|
"table",
|
|
6077
6089
|
{
|
|
6078
6090
|
...other,
|
|
@@ -6093,7 +6105,7 @@ Table.className = TABLE_CLASSNAME;
|
|
|
6093
6105
|
Table.defaultProps = defaultProps25;
|
|
6094
6106
|
|
|
6095
6107
|
// src/table/table-list.spec.tsx
|
|
6096
|
-
import { jsx as
|
|
6108
|
+
import { jsx as jsx72 } from "react/jsx-runtime";
|
|
6097
6109
|
var TABLELIST_CLASSNAME = `k-table-list`;
|
|
6098
6110
|
var states29 = [];
|
|
6099
6111
|
var options28 = {
|
|
@@ -6106,7 +6118,7 @@ var TableList = (props) => {
|
|
|
6106
6118
|
virtualization,
|
|
6107
6119
|
...other
|
|
6108
6120
|
} = props;
|
|
6109
|
-
return /* @__PURE__ */
|
|
6121
|
+
return /* @__PURE__ */ jsx72(
|
|
6110
6122
|
"ul",
|
|
6111
6123
|
{
|
|
6112
6124
|
...other,
|
|
@@ -6131,9 +6143,9 @@ TableList.className = TABLELIST_CLASSNAME;
|
|
|
6131
6143
|
TableList.defaultProps = defaultProps26;
|
|
6132
6144
|
|
|
6133
6145
|
// src/table/table-thead.tsx
|
|
6134
|
-
import { jsx as
|
|
6146
|
+
import { jsx as jsx73 } from "react/jsx-runtime";
|
|
6135
6147
|
var className13 = `k-table-thead`;
|
|
6136
|
-
var TableThead = (props) => /* @__PURE__ */
|
|
6148
|
+
var TableThead = (props) => /* @__PURE__ */ jsx73(
|
|
6137
6149
|
"thead",
|
|
6138
6150
|
{
|
|
6139
6151
|
className: classNames(
|
|
@@ -6145,9 +6157,9 @@ var TableThead = (props) => /* @__PURE__ */ jsx69(
|
|
|
6145
6157
|
);
|
|
6146
6158
|
|
|
6147
6159
|
// src/table/table-tbody.tsx
|
|
6148
|
-
import { jsx as
|
|
6160
|
+
import { jsx as jsx74 } from "react/jsx-runtime";
|
|
6149
6161
|
var className14 = `k-table-tbody`;
|
|
6150
|
-
var TableTbody = (props) => /* @__PURE__ */
|
|
6162
|
+
var TableTbody = (props) => /* @__PURE__ */ jsx74(
|
|
6151
6163
|
"tbody",
|
|
6152
6164
|
{
|
|
6153
6165
|
className: classNames(
|
|
@@ -6159,10 +6171,10 @@ var TableTbody = (props) => /* @__PURE__ */ jsx70(
|
|
|
6159
6171
|
);
|
|
6160
6172
|
|
|
6161
6173
|
// src/table/table-tfoot.tsx
|
|
6162
|
-
import { jsx as
|
|
6174
|
+
import { jsx as jsx75 } from "react/jsx-runtime";
|
|
6163
6175
|
|
|
6164
6176
|
// src/table/table-row.tsx
|
|
6165
|
-
import { jsx as
|
|
6177
|
+
import { jsx as jsx76 } from "react/jsx-runtime";
|
|
6166
6178
|
var TABLEROW_CLASSNAME = `k-table-row`;
|
|
6167
6179
|
var states30 = [
|
|
6168
6180
|
States.hover,
|
|
@@ -6179,7 +6191,7 @@ var TableRow = (props) => {
|
|
|
6179
6191
|
alt,
|
|
6180
6192
|
...other
|
|
6181
6193
|
} = props;
|
|
6182
|
-
return /* @__PURE__ */
|
|
6194
|
+
return /* @__PURE__ */ jsx76(
|
|
6183
6195
|
"tr",
|
|
6184
6196
|
{
|
|
6185
6197
|
...other,
|
|
@@ -6202,7 +6214,7 @@ var TableRow = (props) => {
|
|
|
6202
6214
|
};
|
|
6203
6215
|
|
|
6204
6216
|
// src/table/table-list-row.tsx
|
|
6205
|
-
import { jsx as
|
|
6217
|
+
import { jsx as jsx77 } from "react/jsx-runtime";
|
|
6206
6218
|
var states31 = [
|
|
6207
6219
|
States.hover,
|
|
6208
6220
|
States.focus,
|
|
@@ -6211,7 +6223,7 @@ var states31 = [
|
|
|
6211
6223
|
];
|
|
6212
6224
|
|
|
6213
6225
|
// src/table/table-th.tsx
|
|
6214
|
-
import { jsx as
|
|
6226
|
+
import { jsx as jsx78 } from "react/jsx-runtime";
|
|
6215
6227
|
var className15 = `k-table-th`;
|
|
6216
6228
|
var TableTh = (props) => {
|
|
6217
6229
|
const {
|
|
@@ -6220,7 +6232,7 @@ var TableTh = (props) => {
|
|
|
6220
6232
|
...other
|
|
6221
6233
|
} = props;
|
|
6222
6234
|
const textOrChildren = text ? text : props.children;
|
|
6223
|
-
return /* @__PURE__ */
|
|
6235
|
+
return /* @__PURE__ */ jsx78(
|
|
6224
6236
|
"th",
|
|
6225
6237
|
{
|
|
6226
6238
|
colSpan: colspan,
|
|
@@ -6235,10 +6247,10 @@ var TableTh = (props) => {
|
|
|
6235
6247
|
};
|
|
6236
6248
|
|
|
6237
6249
|
// src/table/table-list-th.tsx
|
|
6238
|
-
import { jsx as
|
|
6250
|
+
import { jsx as jsx79 } from "react/jsx-runtime";
|
|
6239
6251
|
|
|
6240
6252
|
// src/table/table-td.tsx
|
|
6241
|
-
import { jsx as
|
|
6253
|
+
import { jsx as jsx80 } from "react/jsx-runtime";
|
|
6242
6254
|
var className16 = `k-table-td`;
|
|
6243
6255
|
var TableTd = (props) => {
|
|
6244
6256
|
const {
|
|
@@ -6247,7 +6259,7 @@ var TableTd = (props) => {
|
|
|
6247
6259
|
...other
|
|
6248
6260
|
} = props;
|
|
6249
6261
|
const textOrChildren = text ? text : props.children;
|
|
6250
|
-
return /* @__PURE__ */
|
|
6262
|
+
return /* @__PURE__ */ jsx80(
|
|
6251
6263
|
"td",
|
|
6252
6264
|
{
|
|
6253
6265
|
colSpan: colspan,
|
|
@@ -6262,34 +6274,34 @@ var TableTd = (props) => {
|
|
|
6262
6274
|
};
|
|
6263
6275
|
|
|
6264
6276
|
// src/table/table-list-td.tsx
|
|
6265
|
-
import { jsx as
|
|
6277
|
+
import { jsx as jsx81 } from "react/jsx-runtime";
|
|
6266
6278
|
|
|
6267
6279
|
// src/table/table-group-header.tsx
|
|
6268
|
-
import { jsx as
|
|
6280
|
+
import { jsx as jsx82 } from "react/jsx-runtime";
|
|
6269
6281
|
|
|
6270
6282
|
// src/table/table-group-sticky-header.tsx
|
|
6271
|
-
import { jsx as
|
|
6283
|
+
import { jsx as jsx83 } from "react/jsx-runtime";
|
|
6272
6284
|
|
|
6273
6285
|
// src/table/table-group-row.tsx
|
|
6274
|
-
import { jsx as
|
|
6286
|
+
import { jsx as jsx84 } from "react/jsx-runtime";
|
|
6275
6287
|
|
|
6276
6288
|
// src/table/table-list-group-row.tsx
|
|
6277
|
-
import { jsx as
|
|
6289
|
+
import { jsx as jsx85 } from "react/jsx-runtime";
|
|
6278
6290
|
|
|
6279
6291
|
// src/table/templates/table-list.tsx
|
|
6280
|
-
import { jsx as
|
|
6292
|
+
import { jsx as jsx86, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
6281
6293
|
|
|
6282
6294
|
// src/table/templates/table-list-virtualization.tsx
|
|
6283
|
-
import { jsx as
|
|
6295
|
+
import { jsx as jsx87, jsxs as jsxs24 } from "react/jsx-runtime";
|
|
6284
6296
|
|
|
6285
6297
|
// src/table/templates/data-table-normal.tsx
|
|
6286
|
-
import { jsx as
|
|
6298
|
+
import { jsx as jsx88, jsxs as jsxs25 } from "react/jsx-runtime";
|
|
6287
6299
|
|
|
6288
6300
|
// src/table/templates/table-native.tsx
|
|
6289
|
-
import { jsx as
|
|
6301
|
+
import { jsx as jsx89, jsxs as jsxs26 } from "react/jsx-runtime";
|
|
6290
6302
|
|
|
6291
6303
|
// src/button-group/button-group.spec.tsx
|
|
6292
|
-
import { jsx as
|
|
6304
|
+
import { jsx as jsx90 } from "react/jsx-runtime";
|
|
6293
6305
|
var BUTTONGROUP_CLASSNAME = `k-button-group`;
|
|
6294
6306
|
var states32 = [
|
|
6295
6307
|
States.disabled
|
|
@@ -6307,7 +6319,7 @@ var ButtonGroup = (props) => {
|
|
|
6307
6319
|
stretched,
|
|
6308
6320
|
...other
|
|
6309
6321
|
} = props;
|
|
6310
|
-
return /* @__PURE__ */
|
|
6322
|
+
return /* @__PURE__ */ jsx90(
|
|
6311
6323
|
"div",
|
|
6312
6324
|
{
|
|
6313
6325
|
...other,
|
|
@@ -6334,19 +6346,19 @@ ButtonGroup.className = BUTTONGROUP_CLASSNAME;
|
|
|
6334
6346
|
ButtonGroup.defaultProps = defaultProps27;
|
|
6335
6347
|
|
|
6336
6348
|
// src/button-group/templates/icon-button-group.tsx
|
|
6337
|
-
import { jsx as
|
|
6349
|
+
import { jsx as jsx91, jsxs as jsxs27 } from "react/jsx-runtime";
|
|
6338
6350
|
|
|
6339
6351
|
// src/button-group/templates/icon-text-button-group.tsx
|
|
6340
|
-
import { jsx as
|
|
6352
|
+
import { jsx as jsx92, jsxs as jsxs28 } from "react/jsx-runtime";
|
|
6341
6353
|
|
|
6342
6354
|
// src/button-group/templates/text-button-group.tsx
|
|
6343
|
-
import { jsx as
|
|
6355
|
+
import { jsx as jsx93, jsxs as jsxs29 } from "react/jsx-runtime";
|
|
6344
6356
|
|
|
6345
6357
|
// src/button-group/templates/mixed-button-group.tsx
|
|
6346
|
-
import { jsx as
|
|
6358
|
+
import { jsx as jsx94, jsxs as jsxs30 } from "react/jsx-runtime";
|
|
6347
6359
|
|
|
6348
6360
|
// src/color-preview/color-preview.tsx
|
|
6349
|
-
import { jsx as
|
|
6361
|
+
import { jsx as jsx95, jsxs as jsxs31 } from "react/jsx-runtime";
|
|
6350
6362
|
var COLORPREVIEW_CLASSNAME = `k-color-preview`;
|
|
6351
6363
|
var states33 = [];
|
|
6352
6364
|
var options30 = {};
|
|
@@ -6369,8 +6381,8 @@ var ColorPreview = (props) => {
|
|
|
6369
6381
|
}
|
|
6370
6382
|
),
|
|
6371
6383
|
children: [
|
|
6372
|
-
iconName && /* @__PURE__ */
|
|
6373
|
-
/* @__PURE__ */
|
|
6384
|
+
iconName && /* @__PURE__ */ jsx95(Icon, { icon: iconName, className: "k-color-preview-icon" }),
|
|
6385
|
+
/* @__PURE__ */ jsx95(
|
|
6374
6386
|
"span",
|
|
6375
6387
|
{
|
|
6376
6388
|
className: "k-color-preview-mask",
|
|
@@ -6386,7 +6398,7 @@ ColorPreview.options = options30;
|
|
|
6386
6398
|
ColorPreview.className = COLORPREVIEW_CLASSNAME;
|
|
6387
6399
|
|
|
6388
6400
|
// src/colorpicker/colorpicker.spec.tsx
|
|
6389
|
-
import { jsx as
|
|
6401
|
+
import { jsx as jsx96, jsxs as jsxs32 } from "react/jsx-runtime";
|
|
6390
6402
|
var COLORPICKER_CLASSNAME = `k-colorpicker`;
|
|
6391
6403
|
var states34 = [
|
|
6392
6404
|
States.hover,
|
|
@@ -6445,14 +6457,14 @@ var ColorPicker = (props) => {
|
|
|
6445
6457
|
"k-icon-picker"
|
|
6446
6458
|
),
|
|
6447
6459
|
children: [
|
|
6448
|
-
/* @__PURE__ */
|
|
6449
|
-
/* @__PURE__ */
|
|
6460
|
+
/* @__PURE__ */ jsx96(InputPrefix, { children: prefix }),
|
|
6461
|
+
/* @__PURE__ */ jsx96(
|
|
6450
6462
|
InputInnerSpan,
|
|
6451
6463
|
{
|
|
6452
6464
|
placeholder,
|
|
6453
6465
|
value,
|
|
6454
6466
|
showValue: false,
|
|
6455
|
-
valueIcon: /* @__PURE__ */
|
|
6467
|
+
valueIcon: /* @__PURE__ */ jsx96(
|
|
6456
6468
|
ColorPreview,
|
|
6457
6469
|
{
|
|
6458
6470
|
className: "k-value-icon",
|
|
@@ -6463,8 +6475,8 @@ var ColorPicker = (props) => {
|
|
|
6463
6475
|
valueIconName
|
|
6464
6476
|
}
|
|
6465
6477
|
),
|
|
6466
|
-
/* @__PURE__ */
|
|
6467
|
-
/* @__PURE__ */
|
|
6478
|
+
/* @__PURE__ */ jsx96(InputSuffix, { children: suffix }),
|
|
6479
|
+
/* @__PURE__ */ jsx96(
|
|
6468
6480
|
Button,
|
|
6469
6481
|
{
|
|
6470
6482
|
className: "k-input-button",
|
|
@@ -6484,7 +6496,7 @@ ColorPicker.className = COLORPICKER_CLASSNAME;
|
|
|
6484
6496
|
ColorPicker.defaultProps = defaultProps28;
|
|
6485
6497
|
|
|
6486
6498
|
// src/action-sheet/action-sheet.spec.tsx
|
|
6487
|
-
import { Fragment as Fragment15, jsx as
|
|
6499
|
+
import { Fragment as Fragment15, jsx as jsx97, jsxs as jsxs33 } from "react/jsx-runtime";
|
|
6488
6500
|
var ACTIONSHEET_CLASSNAME = `k-actionsheet`;
|
|
6489
6501
|
var states35 = [];
|
|
6490
6502
|
var options32 = {};
|
|
@@ -6507,8 +6519,8 @@ var ActionSheet = (props) => {
|
|
|
6507
6519
|
overlay = defaultProps29.overlay,
|
|
6508
6520
|
...other
|
|
6509
6521
|
} = props;
|
|
6510
|
-
const _ActionSheetHeader = title ? /* @__PURE__ */
|
|
6511
|
-
const _ActionSheetFooter = actions ? /* @__PURE__ */
|
|
6522
|
+
const _ActionSheetHeader = title ? /* @__PURE__ */ jsx97(ActionSheetHeader, { title }) : header ? header : Array.isArray(children) && children.find((child) => child.type === ActionSheetHeader);
|
|
6523
|
+
const _ActionSheetFooter = actions ? /* @__PURE__ */ jsx97(ActionSheetFooter, { className: "k-actions", actions }) : footer ? typeof footer === "string" ? /* @__PURE__ */ jsx97(ActionSheetFooter, { children: footer }) : footer : Array.isArray(children) && children.find((child) => child.type === ActionSheetFooter);
|
|
6512
6524
|
const _ActionSheetContent = Array.isArray(children) ? children.filter((child) => {
|
|
6513
6525
|
switch (child.type) {
|
|
6514
6526
|
case ActionSheetHeader:
|
|
@@ -6518,10 +6530,10 @@ var ActionSheet = (props) => {
|
|
|
6518
6530
|
return true;
|
|
6519
6531
|
}
|
|
6520
6532
|
return true;
|
|
6521
|
-
}) : children.type === ActionSheetItems ? children : /* @__PURE__ */
|
|
6533
|
+
}) : children.type === ActionSheetItems ? children : /* @__PURE__ */ jsx97(Fragment15, {});
|
|
6522
6534
|
return /* @__PURE__ */ jsxs33("div", { className: "k-actionsheet-container", children: [
|
|
6523
|
-
overlay && /* @__PURE__ */
|
|
6524
|
-
/* @__PURE__ */
|
|
6535
|
+
overlay && /* @__PURE__ */ jsx97("div", { className: "k-overlay" }),
|
|
6536
|
+
/* @__PURE__ */ jsx97(
|
|
6525
6537
|
AnimationContainer,
|
|
6526
6538
|
{
|
|
6527
6539
|
animationStyle: {
|
|
@@ -6531,7 +6543,7 @@ var ActionSheet = (props) => {
|
|
|
6531
6543
|
[`${side === "top" || side === "bottom" ? "width" : null}`]: "100%",
|
|
6532
6544
|
[`${side === "left" || side === "right" ? "height" : null}`]: "100%"
|
|
6533
6545
|
},
|
|
6534
|
-
children: /* @__PURE__ */
|
|
6546
|
+
children: /* @__PURE__ */ jsx97(
|
|
6535
6547
|
"div",
|
|
6536
6548
|
{
|
|
6537
6549
|
...other,
|
|
@@ -6546,7 +6558,7 @@ var ActionSheet = (props) => {
|
|
|
6546
6558
|
),
|
|
6547
6559
|
children: /* @__PURE__ */ jsxs33(Fragment15, { children: [
|
|
6548
6560
|
_ActionSheetHeader,
|
|
6549
|
-
/* @__PURE__ */
|
|
6561
|
+
/* @__PURE__ */ jsx97("div", { className: classNames(
|
|
6550
6562
|
"k-actionsheet-content",
|
|
6551
6563
|
{
|
|
6552
6564
|
"!k-overflow-hidden": adaptive
|
|
@@ -6566,7 +6578,7 @@ ActionSheet.className = ACTIONSHEET_CLASSNAME;
|
|
|
6566
6578
|
ActionSheet.defaultProps = defaultProps29;
|
|
6567
6579
|
|
|
6568
6580
|
// src/action-sheet/actionsheet-header.tsx
|
|
6569
|
-
import { Fragment as Fragment16, jsx as
|
|
6581
|
+
import { Fragment as Fragment16, jsx as jsx98, jsxs as jsxs34 } from "react/jsx-runtime";
|
|
6570
6582
|
var ACTIONSHEETHEADER_CLASSNAME = `k-actionsheet-titlebar`;
|
|
6571
6583
|
var ActionSheetHeader = (props) => {
|
|
6572
6584
|
const {
|
|
@@ -6576,7 +6588,7 @@ var ActionSheetHeader = (props) => {
|
|
|
6576
6588
|
filter,
|
|
6577
6589
|
...other
|
|
6578
6590
|
} = props;
|
|
6579
|
-
return /* @__PURE__ */
|
|
6591
|
+
return /* @__PURE__ */ jsx98(
|
|
6580
6592
|
"div",
|
|
6581
6593
|
{
|
|
6582
6594
|
...other,
|
|
@@ -6586,21 +6598,21 @@ var ActionSheetHeader = (props) => {
|
|
|
6586
6598
|
),
|
|
6587
6599
|
children: /* @__PURE__ */ jsxs34(Fragment16, { children: [
|
|
6588
6600
|
/* @__PURE__ */ jsxs34("div", { className: "k-actionsheet-titlebar-group k-hbox", children: [
|
|
6589
|
-
!props.children && (title || subTitle) && /* @__PURE__ */
|
|
6590
|
-
title !== "" && /* @__PURE__ */
|
|
6591
|
-
subTitle !== "" && /* @__PURE__ */
|
|
6601
|
+
!props.children && (title || subTitle) && /* @__PURE__ */ jsx98(Fragment16, { children: /* @__PURE__ */ jsxs34("div", { className: "k-actionsheet-title", children: [
|
|
6602
|
+
title !== "" && /* @__PURE__ */ jsx98("div", { className: "k-text-center", children: title }),
|
|
6603
|
+
subTitle !== "" && /* @__PURE__ */ jsx98("div", { className: "k-actionsheet-subtitle k-text-center", children: subTitle })
|
|
6592
6604
|
] }) }),
|
|
6593
|
-
props.children && /* @__PURE__ */
|
|
6594
|
-
actions && /* @__PURE__ */
|
|
6605
|
+
props.children && /* @__PURE__ */ jsx98("div", { className: "k-actionsheet-title", children: props.children }),
|
|
6606
|
+
actions && /* @__PURE__ */ jsx98(Fragment16, { children: /* @__PURE__ */ jsx98("div", { className: "k-actionsheet-actions", children: actions.map((actionName) => /* @__PURE__ */ jsx98(Button, { icon: actionName, size: "large", fillMode: "flat" }, actionName)) }) })
|
|
6595
6607
|
] }),
|
|
6596
|
-
filter && /* @__PURE__ */
|
|
6608
|
+
filter && /* @__PURE__ */ jsx98(Fragment16, { children: /* @__PURE__ */ jsx98("div", { className: "k-actionsheet-titlebar-group k-actionsheet-filter", children: /* @__PURE__ */ jsx98(Searchbox, { placeholder: "Filter", size: "large" }) }) })
|
|
6597
6609
|
] })
|
|
6598
6610
|
}
|
|
6599
6611
|
);
|
|
6600
6612
|
};
|
|
6601
6613
|
|
|
6602
6614
|
// src/action-buttons/action-buttons.spec.tsx
|
|
6603
|
-
import { jsx as
|
|
6615
|
+
import { jsx as jsx99 } from "react/jsx-runtime";
|
|
6604
6616
|
var ACTIONBUTTONS_CLASSNAME = `k-actions`;
|
|
6605
6617
|
var states36 = [];
|
|
6606
6618
|
var options33 = {};
|
|
@@ -6614,7 +6626,7 @@ var ActionButtons = (props) => {
|
|
|
6614
6626
|
orientation = defaultProps30.orientation,
|
|
6615
6627
|
...other
|
|
6616
6628
|
} = props;
|
|
6617
|
-
return /* @__PURE__ */
|
|
6629
|
+
return /* @__PURE__ */ jsx99(
|
|
6618
6630
|
"div",
|
|
6619
6631
|
{
|
|
6620
6632
|
...other,
|
|
@@ -6637,14 +6649,14 @@ ActionButtons.defaultProps = defaultProps30;
|
|
|
6637
6649
|
var action_buttons_spec_default = ActionButtons;
|
|
6638
6650
|
|
|
6639
6651
|
// src/action-sheet/actionsheet-footer.tsx
|
|
6640
|
-
import { Fragment as Fragment17, jsx as
|
|
6652
|
+
import { Fragment as Fragment17, jsx as jsx100, jsxs as jsxs35 } from "react/jsx-runtime";
|
|
6641
6653
|
var ACTIONSHEETFOOTER_CLASSNAME = `k-actionsheet-footer`;
|
|
6642
6654
|
var ActionSheetFooter = (props) => {
|
|
6643
6655
|
const {
|
|
6644
6656
|
actions,
|
|
6645
6657
|
...other
|
|
6646
6658
|
} = props;
|
|
6647
|
-
return /* @__PURE__ */
|
|
6659
|
+
return /* @__PURE__ */ jsx100(
|
|
6648
6660
|
action_buttons_spec_default,
|
|
6649
6661
|
{
|
|
6650
6662
|
...other,
|
|
@@ -6656,14 +6668,14 @@ var ActionSheetFooter = (props) => {
|
|
|
6656
6668
|
children: /* @__PURE__ */ jsxs35(Fragment17, { children: [
|
|
6657
6669
|
actions && actions.map((action, index) => {
|
|
6658
6670
|
if (action === "|") {
|
|
6659
|
-
return /* @__PURE__ */
|
|
6671
|
+
return /* @__PURE__ */ jsx100("span", { className: "k-separator" }, index);
|
|
6660
6672
|
}
|
|
6661
6673
|
if (action === " ") {
|
|
6662
|
-
return /* @__PURE__ */
|
|
6674
|
+
return /* @__PURE__ */ jsx100("span", { className: "k-spacer" }, index);
|
|
6663
6675
|
}
|
|
6664
6676
|
const importantFlag = action.startsWith("!");
|
|
6665
6677
|
const actionName = importantFlag ? action.substring(1) : action;
|
|
6666
|
-
return /* @__PURE__ */
|
|
6678
|
+
return /* @__PURE__ */ jsx100(Button, { text: actionName, size: "large", themeColor: importantFlag ? "primary" : "base" }, index);
|
|
6667
6679
|
}),
|
|
6668
6680
|
!actions && props.children
|
|
6669
6681
|
] })
|
|
@@ -6672,12 +6684,12 @@ var ActionSheetFooter = (props) => {
|
|
|
6672
6684
|
};
|
|
6673
6685
|
|
|
6674
6686
|
// src/action-sheet/actionsheet-items.tsx
|
|
6675
|
-
import { jsx as
|
|
6687
|
+
import { jsx as jsx101 } from "react/jsx-runtime";
|
|
6676
6688
|
var ActionSheetItems = (props) => {
|
|
6677
6689
|
const {
|
|
6678
6690
|
...other
|
|
6679
6691
|
} = props;
|
|
6680
|
-
return /* @__PURE__ */
|
|
6692
|
+
return /* @__PURE__ */ jsx101(
|
|
6681
6693
|
"div",
|
|
6682
6694
|
{
|
|
6683
6695
|
...other,
|
|
@@ -6691,7 +6703,7 @@ var ActionSheetItems = (props) => {
|
|
|
6691
6703
|
};
|
|
6692
6704
|
|
|
6693
6705
|
// src/action-sheet/actionsheet-item.tsx
|
|
6694
|
-
import { Fragment as Fragment18, jsx as
|
|
6706
|
+
import { Fragment as Fragment18, jsx as jsx102, jsxs as jsxs36 } from "react/jsx-runtime";
|
|
6695
6707
|
var states37 = [
|
|
6696
6708
|
States.hover,
|
|
6697
6709
|
States.focus,
|
|
@@ -6700,7 +6712,7 @@ var states37 = [
|
|
|
6700
6712
|
];
|
|
6701
6713
|
|
|
6702
6714
|
// src/combobox/combobox.spec.tsx
|
|
6703
|
-
import { Fragment as Fragment19, jsx as
|
|
6715
|
+
import { Fragment as Fragment19, jsx as jsx103, jsxs as jsxs37 } from "react/jsx-runtime";
|
|
6704
6716
|
var COMBOBOX_CLASSNAME = `k-combobox`;
|
|
6705
6717
|
var states38 = [
|
|
6706
6718
|
States.hover,
|
|
@@ -6763,9 +6775,9 @@ var Combobox = (props) => {
|
|
|
6763
6775
|
readonly,
|
|
6764
6776
|
className: classNames(props.className, COMBOBOX_CLASSNAME),
|
|
6765
6777
|
children: [
|
|
6766
|
-
/* @__PURE__ */
|
|
6767
|
-
/* @__PURE__ */
|
|
6768
|
-
/* @__PURE__ */
|
|
6778
|
+
/* @__PURE__ */ jsx103(InputPrefix, { children: prefix }),
|
|
6779
|
+
/* @__PURE__ */ jsx103(InputInnerInput, { placeholder, value }),
|
|
6780
|
+
/* @__PURE__ */ jsx103(
|
|
6769
6781
|
InputValidationIcon,
|
|
6770
6782
|
{
|
|
6771
6783
|
valid,
|
|
@@ -6774,14 +6786,14 @@ var Combobox = (props) => {
|
|
|
6774
6786
|
disabled
|
|
6775
6787
|
}
|
|
6776
6788
|
),
|
|
6777
|
-
/* @__PURE__ */
|
|
6789
|
+
/* @__PURE__ */ jsx103(
|
|
6778
6790
|
InputLoadingIcon,
|
|
6779
6791
|
{
|
|
6780
6792
|
loading,
|
|
6781
6793
|
disabled
|
|
6782
6794
|
}
|
|
6783
6795
|
),
|
|
6784
|
-
/* @__PURE__ */
|
|
6796
|
+
/* @__PURE__ */ jsx103(
|
|
6785
6797
|
InputClearValue,
|
|
6786
6798
|
{
|
|
6787
6799
|
loading,
|
|
@@ -6790,8 +6802,8 @@ var Combobox = (props) => {
|
|
|
6790
6802
|
value
|
|
6791
6803
|
}
|
|
6792
6804
|
),
|
|
6793
|
-
/* @__PURE__ */
|
|
6794
|
-
/* @__PURE__ */
|
|
6805
|
+
/* @__PURE__ */ jsx103(InputSuffix, { children: suffix }),
|
|
6806
|
+
/* @__PURE__ */ jsx103(
|
|
6795
6807
|
Button,
|
|
6796
6808
|
{
|
|
6797
6809
|
className: "k-input-button",
|
|
@@ -6804,9 +6816,9 @@ var Combobox = (props) => {
|
|
|
6804
6816
|
]
|
|
6805
6817
|
}
|
|
6806
6818
|
),
|
|
6807
|
-
opened && popup && /* @__PURE__ */
|
|
6819
|
+
opened && popup && /* @__PURE__ */ jsx103(Popup, { className: "k-list-container k-combobox-popup", children: popup }),
|
|
6808
6820
|
adaptive && /* @__PURE__ */ jsxs37(ActionSheet, { adaptive: true, ...adaptiveSettings, children: [
|
|
6809
|
-
/* @__PURE__ */
|
|
6821
|
+
/* @__PURE__ */ jsx103(
|
|
6810
6822
|
ActionSheetHeader,
|
|
6811
6823
|
{
|
|
6812
6824
|
actions: ["x"],
|
|
@@ -6814,10 +6826,10 @@ var Combobox = (props) => {
|
|
|
6814
6826
|
title: "Select Item"
|
|
6815
6827
|
}
|
|
6816
6828
|
),
|
|
6817
|
-
/* @__PURE__ */
|
|
6818
|
-
/* @__PURE__ */
|
|
6819
|
-
/* @__PURE__ */
|
|
6820
|
-
/* @__PURE__ */
|
|
6829
|
+
/* @__PURE__ */ jsx103("div", { className: "k-list-container", children: /* @__PURE__ */ jsxs37(List, { size: "large", children: [
|
|
6830
|
+
/* @__PURE__ */ jsx103(ListItem, { text: "List item" }),
|
|
6831
|
+
/* @__PURE__ */ jsx103(ListItem, { text: "List item" }),
|
|
6832
|
+
/* @__PURE__ */ jsx103(ListItem, { text: "List item" })
|
|
6821
6833
|
] }) })
|
|
6822
6834
|
] })
|
|
6823
6835
|
] });
|
|
@@ -6828,19 +6840,19 @@ Combobox.className = COMBOBOX_CLASSNAME;
|
|
|
6828
6840
|
Combobox.defaultProps = defaultProps31;
|
|
6829
6841
|
|
|
6830
6842
|
// src/combobox/templates/combobox-normal.tsx
|
|
6831
|
-
import { jsx as
|
|
6843
|
+
import { jsx as jsx104 } from "react/jsx-runtime";
|
|
6832
6844
|
|
|
6833
6845
|
// src/combobox/templates/combobox-popup.tsx
|
|
6834
|
-
import { jsx as
|
|
6846
|
+
import { jsx as jsx105, jsxs as jsxs38 } from "react/jsx-runtime";
|
|
6835
6847
|
|
|
6836
6848
|
// src/combobox/templates/combobox-grouping.tsx
|
|
6837
|
-
import { jsx as
|
|
6849
|
+
import { jsx as jsx106, jsxs as jsxs39 } from "react/jsx-runtime";
|
|
6838
6850
|
|
|
6839
6851
|
// src/combobox/templates/combobox-adaptive.tsx
|
|
6840
|
-
import { jsx as
|
|
6852
|
+
import { jsx as jsx107 } from "react/jsx-runtime";
|
|
6841
6853
|
|
|
6842
6854
|
// src/menu-button/menu-button.spec.tsx
|
|
6843
|
-
import { Fragment as Fragment20, jsx as
|
|
6855
|
+
import { Fragment as Fragment20, jsx as jsx108, jsxs as jsxs40 } from "react/jsx-runtime";
|
|
6844
6856
|
var MENUBUTTON_CLASSNAME = `k-menu-button`;
|
|
6845
6857
|
var states39 = [
|
|
6846
6858
|
States.hover,
|
|
@@ -6895,7 +6907,7 @@ var MenuButton = (props) => {
|
|
|
6895
6907
|
...other
|
|
6896
6908
|
} = props;
|
|
6897
6909
|
return /* @__PURE__ */ jsxs40(Fragment20, { children: [
|
|
6898
|
-
/* @__PURE__ */
|
|
6910
|
+
/* @__PURE__ */ jsx108(
|
|
6899
6911
|
Button,
|
|
6900
6912
|
{
|
|
6901
6913
|
...other,
|
|
@@ -6918,7 +6930,7 @@ var MenuButton = (props) => {
|
|
|
6918
6930
|
arrowIconName
|
|
6919
6931
|
}
|
|
6920
6932
|
),
|
|
6921
|
-
opened && popup && /* @__PURE__ */
|
|
6933
|
+
opened && popup && /* @__PURE__ */ jsx108(Popup, { className: "k-menu-popup", children: popup })
|
|
6922
6934
|
] });
|
|
6923
6935
|
};
|
|
6924
6936
|
MenuButton.states = states39;
|
|
@@ -6927,16 +6939,16 @@ MenuButton.className = MENUBUTTON_CLASSNAME;
|
|
|
6927
6939
|
MenuButton.defaultProps = defaultProps32;
|
|
6928
6940
|
|
|
6929
6941
|
// src/menu-button/templates/icon-menu-button.tsx
|
|
6930
|
-
import { jsx as
|
|
6942
|
+
import { jsx as jsx109 } from "react/jsx-runtime";
|
|
6931
6943
|
|
|
6932
6944
|
// src/menu-button/templates/icon-text-menu-button.tsx
|
|
6933
|
-
import { jsx as
|
|
6945
|
+
import { jsx as jsx110 } from "react/jsx-runtime";
|
|
6934
6946
|
|
|
6935
6947
|
// src/menu-button/templates/text-menu-button.tsx
|
|
6936
|
-
import { jsx as
|
|
6948
|
+
import { jsx as jsx111 } from "react/jsx-runtime";
|
|
6937
6949
|
|
|
6938
6950
|
// src/menu/menu-item.spec.tsx
|
|
6939
|
-
import { Fragment as Fragment21, jsx as
|
|
6951
|
+
import { Fragment as Fragment21, jsx as jsx112, jsxs as jsxs41 } from "react/jsx-runtime";
|
|
6940
6952
|
var MENUITEM_CLASSNAME = `k-menu-item`;
|
|
6941
6953
|
var states40 = [
|
|
6942
6954
|
States.hover,
|
|
@@ -6964,7 +6976,7 @@ var MenuItem = (props) => {
|
|
|
6964
6976
|
children,
|
|
6965
6977
|
...other
|
|
6966
6978
|
} = props;
|
|
6967
|
-
const contentTemplate = /* @__PURE__ */
|
|
6979
|
+
const contentTemplate = /* @__PURE__ */ jsx112(Fragment21, {});
|
|
6968
6980
|
if (children) {
|
|
6969
6981
|
children.forEach((child) => {
|
|
6970
6982
|
const component = child.type;
|
|
@@ -7006,9 +7018,9 @@ var MenuItem = (props) => {
|
|
|
7006
7018
|
})
|
|
7007
7019
|
),
|
|
7008
7020
|
children: [
|
|
7009
|
-
icon && /* @__PURE__ */
|
|
7010
|
-
/* @__PURE__ */
|
|
7011
|
-
showArrow && /* @__PURE__ */
|
|
7021
|
+
icon && /* @__PURE__ */ jsx112(Icon, { className: "k-menu-link-icon", icon }),
|
|
7022
|
+
/* @__PURE__ */ jsx112("span", { className: "k-menu-link-text", children: text }),
|
|
7023
|
+
showArrow && /* @__PURE__ */ jsx112("span", { className: "k-menu-expand-arrow", children: /* @__PURE__ */ jsx112(Icon, { icon: expandArrowName }) })
|
|
7012
7024
|
]
|
|
7013
7025
|
}
|
|
7014
7026
|
),
|
|
@@ -7024,7 +7036,7 @@ MenuItem.defaultProps = defaultProps33;
|
|
|
7024
7036
|
var menu_item_spec_default = MenuItem;
|
|
7025
7037
|
|
|
7026
7038
|
// src/menu/menu-separator.spec.tsx
|
|
7027
|
-
import { jsx as
|
|
7039
|
+
import { jsx as jsx113 } from "react/jsx-runtime";
|
|
7028
7040
|
var SEPARATOR_CLASSNAME = `k-separator`;
|
|
7029
7041
|
var defaultProps34 = {
|
|
7030
7042
|
orientation: "horizontal"
|
|
@@ -7034,7 +7046,7 @@ var MenuSeparator = (props) => {
|
|
|
7034
7046
|
orientation = defaultProps34.orientation,
|
|
7035
7047
|
...other
|
|
7036
7048
|
} = props;
|
|
7037
|
-
return /* @__PURE__ */
|
|
7049
|
+
return /* @__PURE__ */ jsx113(
|
|
7038
7050
|
"li",
|
|
7039
7051
|
{
|
|
7040
7052
|
...other,
|
|
@@ -7052,10 +7064,10 @@ var MenuSeparator = (props) => {
|
|
|
7052
7064
|
var menu_separator_spec_default = MenuSeparator;
|
|
7053
7065
|
|
|
7054
7066
|
// src/menu/menu-item-content.tsx
|
|
7055
|
-
import { Fragment as Fragment22, jsx as
|
|
7067
|
+
import { Fragment as Fragment22, jsx as jsx114 } from "react/jsx-runtime";
|
|
7056
7068
|
|
|
7057
7069
|
// src/menu/menu-list.spec.tsx
|
|
7058
|
-
import { jsx as
|
|
7070
|
+
import { jsx as jsx115 } from "react/jsx-runtime";
|
|
7059
7071
|
import { createElement } from "react";
|
|
7060
7072
|
var MENULIST_CLASSNAME = `k-menu-group`;
|
|
7061
7073
|
var states41 = [];
|
|
@@ -7083,7 +7095,7 @@ var MenuList = (props) => {
|
|
|
7083
7095
|
);
|
|
7084
7096
|
} else if (child.type === menu_separator_spec_default) {
|
|
7085
7097
|
listChildren.push(
|
|
7086
|
-
/* @__PURE__ */
|
|
7098
|
+
/* @__PURE__ */ jsx115(menu_separator_spec_default, {})
|
|
7087
7099
|
);
|
|
7088
7100
|
} else {
|
|
7089
7101
|
listChildren.push(child);
|
|
@@ -7091,7 +7103,7 @@ var MenuList = (props) => {
|
|
|
7091
7103
|
});
|
|
7092
7104
|
}
|
|
7093
7105
|
}
|
|
7094
|
-
return /* @__PURE__ */
|
|
7106
|
+
return /* @__PURE__ */ jsx115(
|
|
7095
7107
|
"ul",
|
|
7096
7108
|
{
|
|
7097
7109
|
...other,
|
|
@@ -7112,10 +7124,10 @@ MenuList.className = MENULIST_CLASSNAME;
|
|
|
7112
7124
|
MenuList.defaultProps = defaultProps35;
|
|
7113
7125
|
|
|
7114
7126
|
// src/menu-button/templates/menu-button-popup.tsx
|
|
7115
|
-
import { jsx as
|
|
7127
|
+
import { jsx as jsx116, jsxs as jsxs42 } from "react/jsx-runtime";
|
|
7116
7128
|
|
|
7117
7129
|
// src/split-button/split-button.spec.tsx
|
|
7118
|
-
import { Fragment as Fragment23, jsx as
|
|
7130
|
+
import { Fragment as Fragment23, jsx as jsx117, jsxs as jsxs43 } from "react/jsx-runtime";
|
|
7119
7131
|
var SPLITBUTTON_CLASSNAME = `k-split-button`;
|
|
7120
7132
|
var states42 = [
|
|
7121
7133
|
States.hover,
|
|
@@ -7181,7 +7193,7 @@ var SplitButton = (props) => {
|
|
|
7181
7193
|
})
|
|
7182
7194
|
),
|
|
7183
7195
|
children: [
|
|
7184
|
-
/* @__PURE__ */
|
|
7196
|
+
/* @__PURE__ */ jsx117(
|
|
7185
7197
|
Button,
|
|
7186
7198
|
{
|
|
7187
7199
|
text,
|
|
@@ -7198,7 +7210,7 @@ var SplitButton = (props) => {
|
|
|
7198
7210
|
children: props.children
|
|
7199
7211
|
}
|
|
7200
7212
|
),
|
|
7201
|
-
/* @__PURE__ */
|
|
7213
|
+
/* @__PURE__ */ jsx117(
|
|
7202
7214
|
Button,
|
|
7203
7215
|
{
|
|
7204
7216
|
className: "k-split-button-arrow",
|
|
@@ -7212,7 +7224,7 @@ var SplitButton = (props) => {
|
|
|
7212
7224
|
]
|
|
7213
7225
|
}
|
|
7214
7226
|
),
|
|
7215
|
-
opened && popup && /* @__PURE__ */
|
|
7227
|
+
opened && popup && /* @__PURE__ */ jsx117(Popup, { className: "k-menu-popup", children: popup })
|
|
7216
7228
|
] });
|
|
7217
7229
|
};
|
|
7218
7230
|
SplitButton.states = states42;
|
|
@@ -7222,7 +7234,7 @@ SplitButton.defaultProps = defaultProps36;
|
|
|
7222
7234
|
var split_button_spec_default = SplitButton;
|
|
7223
7235
|
|
|
7224
7236
|
// src/toolbar/toolbar.spec.tsx
|
|
7225
|
-
import { jsx as
|
|
7237
|
+
import { jsx as jsx118 } from "react/jsx-runtime";
|
|
7226
7238
|
var TOOLBAR_CLASSNAME = `k-toolbar`;
|
|
7227
7239
|
var states43 = [
|
|
7228
7240
|
States.focus
|
|
@@ -7245,7 +7257,7 @@ var Toolbar = (props) => {
|
|
|
7245
7257
|
const tempToolbarChildren = [];
|
|
7246
7258
|
if (child.type === Button && child.props.className && child.props.className.includes("k-toolbar-overflow-button")) {
|
|
7247
7259
|
tempToolbarChildren.push(
|
|
7248
|
-
/* @__PURE__ */
|
|
7260
|
+
/* @__PURE__ */ jsx118(
|
|
7249
7261
|
Button,
|
|
7250
7262
|
{
|
|
7251
7263
|
...child.props,
|
|
@@ -7256,7 +7268,7 @@ var Toolbar = (props) => {
|
|
|
7256
7268
|
);
|
|
7257
7269
|
} else if (child.type === Button && child.props.className && child.props.className.includes("k-toggle-button")) {
|
|
7258
7270
|
tempToolbarChildren.push(
|
|
7259
|
-
/* @__PURE__ */
|
|
7271
|
+
/* @__PURE__ */ jsx118(
|
|
7260
7272
|
Button,
|
|
7261
7273
|
{
|
|
7262
7274
|
...child.props,
|
|
@@ -7267,7 +7279,7 @@ var Toolbar = (props) => {
|
|
|
7267
7279
|
);
|
|
7268
7280
|
} else if (child.type === Button) {
|
|
7269
7281
|
tempToolbarChildren.push(
|
|
7270
|
-
/* @__PURE__ */
|
|
7282
|
+
/* @__PURE__ */ jsx118(
|
|
7271
7283
|
Button,
|
|
7272
7284
|
{
|
|
7273
7285
|
...child.props,
|
|
@@ -7278,7 +7290,7 @@ var Toolbar = (props) => {
|
|
|
7278
7290
|
);
|
|
7279
7291
|
} else if (child.type === MenuButton) {
|
|
7280
7292
|
tempToolbarChildren.push(
|
|
7281
|
-
/* @__PURE__ */
|
|
7293
|
+
/* @__PURE__ */ jsx118(
|
|
7282
7294
|
MenuButton,
|
|
7283
7295
|
{
|
|
7284
7296
|
...child.props,
|
|
@@ -7289,7 +7301,7 @@ var Toolbar = (props) => {
|
|
|
7289
7301
|
);
|
|
7290
7302
|
} else if (child.type === split_button_spec_default) {
|
|
7291
7303
|
tempToolbarChildren.push(
|
|
7292
|
-
/* @__PURE__ */
|
|
7304
|
+
/* @__PURE__ */ jsx118(
|
|
7293
7305
|
split_button_spec_default,
|
|
7294
7306
|
{
|
|
7295
7307
|
...child.props,
|
|
@@ -7303,7 +7315,7 @@ var Toolbar = (props) => {
|
|
|
7303
7315
|
const childrenArray = Array.isArray(child.props.children) ? child.props.children : [child.props.children];
|
|
7304
7316
|
childrenArray.forEach((button, bindex) => {
|
|
7305
7317
|
buttonGroupItems.push(
|
|
7306
|
-
/* @__PURE__ */
|
|
7318
|
+
/* @__PURE__ */ jsx118(
|
|
7307
7319
|
Button,
|
|
7308
7320
|
{
|
|
7309
7321
|
...button.props,
|
|
@@ -7314,7 +7326,7 @@ var Toolbar = (props) => {
|
|
|
7314
7326
|
);
|
|
7315
7327
|
});
|
|
7316
7328
|
tempToolbarChildren.push(
|
|
7317
|
-
/* @__PURE__ */
|
|
7329
|
+
/* @__PURE__ */ jsx118(
|
|
7318
7330
|
ButtonGroup,
|
|
7319
7331
|
{
|
|
7320
7332
|
...child.props,
|
|
@@ -7326,7 +7338,7 @@ var Toolbar = (props) => {
|
|
|
7326
7338
|
);
|
|
7327
7339
|
} else if (child.type === Combobox) {
|
|
7328
7340
|
tempToolbarChildren.push(
|
|
7329
|
-
/* @__PURE__ */
|
|
7341
|
+
/* @__PURE__ */ jsx118(
|
|
7330
7342
|
Combobox,
|
|
7331
7343
|
{
|
|
7332
7344
|
...child.props,
|
|
@@ -7337,7 +7349,7 @@ var Toolbar = (props) => {
|
|
|
7337
7349
|
);
|
|
7338
7350
|
} else if (child.type === DropdownList) {
|
|
7339
7351
|
tempToolbarChildren.push(
|
|
7340
|
-
/* @__PURE__ */
|
|
7352
|
+
/* @__PURE__ */ jsx118(
|
|
7341
7353
|
DropdownList,
|
|
7342
7354
|
{
|
|
7343
7355
|
...child.props,
|
|
@@ -7348,7 +7360,7 @@ var Toolbar = (props) => {
|
|
|
7348
7360
|
);
|
|
7349
7361
|
} else if (child.type === ColorPicker) {
|
|
7350
7362
|
tempToolbarChildren.push(
|
|
7351
|
-
/* @__PURE__ */
|
|
7363
|
+
/* @__PURE__ */ jsx118(
|
|
7352
7364
|
ColorPicker,
|
|
7353
7365
|
{
|
|
7354
7366
|
...child.props,
|
|
@@ -7370,7 +7382,7 @@ var Toolbar = (props) => {
|
|
|
7370
7382
|
addUniqueToolClass(child, index);
|
|
7371
7383
|
});
|
|
7372
7384
|
}
|
|
7373
|
-
return /* @__PURE__ */
|
|
7385
|
+
return /* @__PURE__ */ jsx118(
|
|
7374
7386
|
"div",
|
|
7375
7387
|
{
|
|
7376
7388
|
...other,
|
|
@@ -7397,7 +7409,7 @@ Toolbar.className = TOOLBAR_CLASSNAME;
|
|
|
7397
7409
|
Toolbar.defaultProps = defaultProps37;
|
|
7398
7410
|
|
|
7399
7411
|
// src/toolbar/toolbar-angular.spec.tsx
|
|
7400
|
-
import { jsx as
|
|
7412
|
+
import { jsx as jsx119 } from "react/jsx-runtime";
|
|
7401
7413
|
var TOOLBARANGULAR_CLASSNAME = `k-toolbar`;
|
|
7402
7414
|
var states44 = [
|
|
7403
7415
|
States.focus
|
|
@@ -7420,7 +7432,7 @@ var ToolbarAngular = (props) => {
|
|
|
7420
7432
|
const tempToolbarChildren = [];
|
|
7421
7433
|
if (child.type === Button && child.props.className && child.props.className.includes("k-toolbar-overflow-button")) {
|
|
7422
7434
|
tempToolbarChildren.push(
|
|
7423
|
-
/* @__PURE__ */
|
|
7435
|
+
/* @__PURE__ */ jsx119("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx119(
|
|
7424
7436
|
Button,
|
|
7425
7437
|
{
|
|
7426
7438
|
...child.props,
|
|
@@ -7431,7 +7443,7 @@ var ToolbarAngular = (props) => {
|
|
|
7431
7443
|
);
|
|
7432
7444
|
} else if (child.type === Button && child.props.className && child.props.className.includes("k-toggle-button")) {
|
|
7433
7445
|
tempToolbarChildren.push(
|
|
7434
|
-
/* @__PURE__ */
|
|
7446
|
+
/* @__PURE__ */ jsx119("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx119(
|
|
7435
7447
|
Button,
|
|
7436
7448
|
{
|
|
7437
7449
|
...child.props,
|
|
@@ -7442,7 +7454,7 @@ var ToolbarAngular = (props) => {
|
|
|
7442
7454
|
);
|
|
7443
7455
|
} else if (child.type === Button) {
|
|
7444
7456
|
tempToolbarChildren.push(
|
|
7445
|
-
/* @__PURE__ */
|
|
7457
|
+
/* @__PURE__ */ jsx119("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx119(
|
|
7446
7458
|
Button,
|
|
7447
7459
|
{
|
|
7448
7460
|
...child.props,
|
|
@@ -7453,7 +7465,7 @@ var ToolbarAngular = (props) => {
|
|
|
7453
7465
|
);
|
|
7454
7466
|
} else if (child.type === MenuButton) {
|
|
7455
7467
|
tempToolbarChildren.push(
|
|
7456
|
-
/* @__PURE__ */
|
|
7468
|
+
/* @__PURE__ */ jsx119("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx119(
|
|
7457
7469
|
MenuButton,
|
|
7458
7470
|
{
|
|
7459
7471
|
...child.props,
|
|
@@ -7464,7 +7476,7 @@ var ToolbarAngular = (props) => {
|
|
|
7464
7476
|
);
|
|
7465
7477
|
} else if (child.type === split_button_spec_default) {
|
|
7466
7478
|
tempToolbarChildren.push(
|
|
7467
|
-
/* @__PURE__ */
|
|
7479
|
+
/* @__PURE__ */ jsx119("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx119(
|
|
7468
7480
|
split_button_spec_default,
|
|
7469
7481
|
{
|
|
7470
7482
|
...child.props,
|
|
@@ -7478,7 +7490,7 @@ var ToolbarAngular = (props) => {
|
|
|
7478
7490
|
const childrenArray = Array.isArray(child.props.children) ? child.props.children : [child.props.children];
|
|
7479
7491
|
childrenArray.forEach((button, bindex) => {
|
|
7480
7492
|
buttonGroupItems.push(
|
|
7481
|
-
/* @__PURE__ */
|
|
7493
|
+
/* @__PURE__ */ jsx119(
|
|
7482
7494
|
Button,
|
|
7483
7495
|
{
|
|
7484
7496
|
...button.props,
|
|
@@ -7489,7 +7501,7 @@ var ToolbarAngular = (props) => {
|
|
|
7489
7501
|
);
|
|
7490
7502
|
});
|
|
7491
7503
|
tempToolbarChildren.push(
|
|
7492
|
-
/* @__PURE__ */
|
|
7504
|
+
/* @__PURE__ */ jsx119("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx119(
|
|
7493
7505
|
ButtonGroup,
|
|
7494
7506
|
{
|
|
7495
7507
|
...child.props,
|
|
@@ -7501,7 +7513,7 @@ var ToolbarAngular = (props) => {
|
|
|
7501
7513
|
);
|
|
7502
7514
|
} else if (child.type === Combobox) {
|
|
7503
7515
|
tempToolbarChildren.push(
|
|
7504
|
-
/* @__PURE__ */
|
|
7516
|
+
/* @__PURE__ */ jsx119("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx119(
|
|
7505
7517
|
Combobox,
|
|
7506
7518
|
{
|
|
7507
7519
|
...child.props,
|
|
@@ -7512,7 +7524,7 @@ var ToolbarAngular = (props) => {
|
|
|
7512
7524
|
);
|
|
7513
7525
|
} else if (child.type === DropdownList) {
|
|
7514
7526
|
tempToolbarChildren.push(
|
|
7515
|
-
/* @__PURE__ */
|
|
7527
|
+
/* @__PURE__ */ jsx119("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx119(
|
|
7516
7528
|
DropdownList,
|
|
7517
7529
|
{
|
|
7518
7530
|
...child.props,
|
|
@@ -7523,7 +7535,7 @@ var ToolbarAngular = (props) => {
|
|
|
7523
7535
|
);
|
|
7524
7536
|
} else if (child.type === ColorPicker) {
|
|
7525
7537
|
tempToolbarChildren.push(
|
|
7526
|
-
/* @__PURE__ */
|
|
7538
|
+
/* @__PURE__ */ jsx119("div", { className: "k-toolbar-renderer", children: /* @__PURE__ */ jsx119(
|
|
7527
7539
|
ColorPicker,
|
|
7528
7540
|
{
|
|
7529
7541
|
...child.props,
|
|
@@ -7545,7 +7557,7 @@ var ToolbarAngular = (props) => {
|
|
|
7545
7557
|
addUniqueToolClass(child, index);
|
|
7546
7558
|
});
|
|
7547
7559
|
}
|
|
7548
|
-
return /* @__PURE__ */
|
|
7560
|
+
return /* @__PURE__ */ jsx119(
|
|
7549
7561
|
"div",
|
|
7550
7562
|
{
|
|
7551
7563
|
...other,
|
|
@@ -7572,10 +7584,10 @@ ToolbarAngular.className = TOOLBARANGULAR_CLASSNAME;
|
|
|
7572
7584
|
ToolbarAngular.defaultProps = defaultProps38;
|
|
7573
7585
|
|
|
7574
7586
|
// src/toolbar/toolbar-separator.tsx
|
|
7575
|
-
import { jsx as
|
|
7587
|
+
import { jsx as jsx120 } from "react/jsx-runtime";
|
|
7576
7588
|
|
|
7577
7589
|
// src/toolbar/toolbar-item.spec.tsx
|
|
7578
|
-
import { jsx as
|
|
7590
|
+
import { jsx as jsx121 } from "react/jsx-runtime";
|
|
7579
7591
|
var TOOLBARITEM_CLASSNAME = `k-toolbar-item`;
|
|
7580
7592
|
var states45 = [
|
|
7581
7593
|
States.focus
|
|
@@ -7587,7 +7599,7 @@ var ToolbarItem = (props) => {
|
|
|
7587
7599
|
focus,
|
|
7588
7600
|
...other
|
|
7589
7601
|
} = props;
|
|
7590
|
-
return /* @__PURE__ */
|
|
7602
|
+
return /* @__PURE__ */ jsx121(
|
|
7591
7603
|
"div",
|
|
7592
7604
|
{
|
|
7593
7605
|
...other,
|
|
@@ -7608,7 +7620,7 @@ ToolbarItem.className = TOOLBARITEM_CLASSNAME;
|
|
|
7608
7620
|
ToolbarItem.defaultProps = defaultProps39;
|
|
7609
7621
|
|
|
7610
7622
|
// src/grid/tests/grid-column-reordering-actions.tsx
|
|
7611
|
-
import { Fragment as Fragment24, jsx as
|
|
7623
|
+
import { Fragment as Fragment24, jsx as jsx122, jsxs as jsxs44 } from "react/jsx-runtime";
|
|
7612
7624
|
var styles = `
|
|
7613
7625
|
.k-animation-container,
|
|
7614
7626
|
.k-popup {
|
|
@@ -7619,164 +7631,164 @@ var styles = `
|
|
|
7619
7631
|
}
|
|
7620
7632
|
`;
|
|
7621
7633
|
var grid_column_reordering_actions_default = () => /* @__PURE__ */ jsxs44(Fragment24, { children: [
|
|
7622
|
-
/* @__PURE__ */
|
|
7634
|
+
/* @__PURE__ */ jsx122("style", { children: styles }),
|
|
7623
7635
|
/* @__PURE__ */ jsxs44("div", { id: "test-area", children: [
|
|
7624
|
-
/* @__PURE__ */
|
|
7625
|
-
/* @__PURE__ */
|
|
7626
|
-
/* @__PURE__ */
|
|
7627
|
-
/* @__PURE__ */
|
|
7628
|
-
/* @__PURE__ */
|
|
7636
|
+
/* @__PURE__ */ jsx122("section", { children: /* @__PURE__ */ jsxs44("div", { className: "k-grid k-grid-md k-grid-no-scrollbar", children: [
|
|
7637
|
+
/* @__PURE__ */ jsx122(Toolbar, { className: "k-grid-toolbar", children: /* @__PURE__ */ jsxs44(ChipList, { children: [
|
|
7638
|
+
/* @__PURE__ */ jsx122(Chip, { text: "Units in Stock", icon: "sort-asc-small", actions: /* @__PURE__ */ jsxs44(Fragment24, { children: [
|
|
7639
|
+
/* @__PURE__ */ jsx122(ChipAction, { type: "more" }),
|
|
7640
|
+
/* @__PURE__ */ jsx122(ChipAction, { type: "remove" })
|
|
7629
7641
|
] }) }),
|
|
7630
|
-
/* @__PURE__ */
|
|
7631
|
-
/* @__PURE__ */
|
|
7632
|
-
/* @__PURE__ */
|
|
7642
|
+
/* @__PURE__ */ jsx122(Chip, { text: "Category", icon: "sort-desc-small", actions: /* @__PURE__ */ jsxs44(Fragment24, { children: [
|
|
7643
|
+
/* @__PURE__ */ jsx122(ChipAction, { type: "more" }),
|
|
7644
|
+
/* @__PURE__ */ jsx122(ChipAction, { type: "remove" })
|
|
7633
7645
|
] }) })
|
|
7634
7646
|
] }) }),
|
|
7635
|
-
/* @__PURE__ */
|
|
7647
|
+
/* @__PURE__ */ jsx122("div", { className: "k-grid-header", children: /* @__PURE__ */ jsx122("div", { className: "k-grid-header-wrap", children: /* @__PURE__ */ jsxs44(Table, { size: "medium", className: "k-grid-header-table", children: [
|
|
7636
7648
|
/* @__PURE__ */ jsxs44("colgroup", { children: [
|
|
7637
|
-
/* @__PURE__ */
|
|
7638
|
-
/* @__PURE__ */
|
|
7639
|
-
/* @__PURE__ */
|
|
7649
|
+
/* @__PURE__ */ jsx122("col", {}),
|
|
7650
|
+
/* @__PURE__ */ jsx122("col", {}),
|
|
7651
|
+
/* @__PURE__ */ jsx122("col", {})
|
|
7640
7652
|
] }),
|
|
7641
|
-
/* @__PURE__ */
|
|
7642
|
-
/* @__PURE__ */
|
|
7653
|
+
/* @__PURE__ */ jsx122(TableThead, { children: /* @__PURE__ */ jsxs44(TableRow, { children: [
|
|
7654
|
+
/* @__PURE__ */ jsx122(TableTh, { className: "k-header k-sorted", children: /* @__PURE__ */ jsxs44("span", { className: "k-cell-inner", children: [
|
|
7643
7655
|
/* @__PURE__ */ jsxs44("span", { className: "k-link", children: [
|
|
7644
|
-
/* @__PURE__ */
|
|
7645
|
-
/* @__PURE__ */
|
|
7656
|
+
/* @__PURE__ */ jsx122("span", { className: "k-column-title", children: "Product Id" }),
|
|
7657
|
+
/* @__PURE__ */ jsx122("span", { className: "k-sort-icon", children: /* @__PURE__ */ jsx122(Icon, { icon: "sort-asc-small" }) })
|
|
7646
7658
|
] }),
|
|
7647
|
-
/* @__PURE__ */
|
|
7659
|
+
/* @__PURE__ */ jsx122("a", { href: "#", className: "k-grid-header-menu k-grid-column-menu", children: /* @__PURE__ */ jsx122(Icon, { icon: "more-vertical" }) })
|
|
7648
7660
|
] }) }),
|
|
7649
|
-
/* @__PURE__ */
|
|
7661
|
+
/* @__PURE__ */ jsx122(TableTh, { className: "k-header k-sorted", children: /* @__PURE__ */ jsxs44("span", { className: "k-cell-inner", children: [
|
|
7650
7662
|
/* @__PURE__ */ jsxs44("span", { className: "k-link", children: [
|
|
7651
|
-
/* @__PURE__ */
|
|
7652
|
-
/* @__PURE__ */
|
|
7663
|
+
/* @__PURE__ */ jsx122("span", { className: "k-column-title", children: "Unit Price" }),
|
|
7664
|
+
/* @__PURE__ */ jsx122("span", { className: "k-sort-icon", children: /* @__PURE__ */ jsx122(Icon, { icon: "sort-asc-small" }) })
|
|
7653
7665
|
] }),
|
|
7654
|
-
/* @__PURE__ */
|
|
7666
|
+
/* @__PURE__ */ jsx122("a", { href: "#", className: "k-grid-header-menu k-grid-column-menu", children: /* @__PURE__ */ jsx122(Icon, { icon: "more-vertical" }) })
|
|
7655
7667
|
] }) }),
|
|
7656
|
-
/* @__PURE__ */
|
|
7668
|
+
/* @__PURE__ */ jsx122(TableTh, { className: "k-header k-sorted", children: /* @__PURE__ */ jsxs44("span", { className: "k-cell-inner", children: [
|
|
7657
7669
|
/* @__PURE__ */ jsxs44("span", { className: "k-link", children: [
|
|
7658
|
-
/* @__PURE__ */
|
|
7659
|
-
/* @__PURE__ */
|
|
7670
|
+
/* @__PURE__ */ jsx122("span", { className: "k-column-title", children: "Discontinued" }),
|
|
7671
|
+
/* @__PURE__ */ jsx122("span", { className: "k-sort-icon", children: /* @__PURE__ */ jsx122(Icon, { icon: "sort-asc-small" }) })
|
|
7660
7672
|
] }),
|
|
7661
|
-
/* @__PURE__ */
|
|
7673
|
+
/* @__PURE__ */ jsx122("a", { href: "#", className: "k-grid-header-menu k-grid-column-menu", children: /* @__PURE__ */ jsx122(Icon, { icon: "more-vertical" }) })
|
|
7662
7674
|
] }) }),
|
|
7663
|
-
/* @__PURE__ */
|
|
7675
|
+
/* @__PURE__ */ jsx122(TableTh, { className: "k-header k-sorted", children: /* @__PURE__ */ jsxs44("span", { className: "k-cell-inner", children: [
|
|
7664
7676
|
/* @__PURE__ */ jsxs44("span", { className: "k-link", children: [
|
|
7665
|
-
/* @__PURE__ */
|
|
7666
|
-
/* @__PURE__ */
|
|
7677
|
+
/* @__PURE__ */ jsx122("span", { className: "k-column-title", children: "Category" }),
|
|
7678
|
+
/* @__PURE__ */ jsx122("span", { className: "k-sort-icon", children: /* @__PURE__ */ jsx122(Icon, { icon: "sort-asc-small" }) })
|
|
7667
7679
|
] }),
|
|
7668
|
-
/* @__PURE__ */
|
|
7680
|
+
/* @__PURE__ */ jsx122("a", { href: "#", className: "k-grid-header-menu k-grid-column-menu", children: /* @__PURE__ */ jsx122(Icon, { icon: "more-vertical" }) })
|
|
7669
7681
|
] }) })
|
|
7670
7682
|
] }) })
|
|
7671
7683
|
] }) }) }),
|
|
7672
|
-
/* @__PURE__ */
|
|
7684
|
+
/* @__PURE__ */ jsx122("div", { className: "k-grid-content", children: /* @__PURE__ */ jsxs44(Table, { size: "medium", className: "k-grid-table", children: [
|
|
7673
7685
|
/* @__PURE__ */ jsxs44("colgroup", { children: [
|
|
7674
|
-
/* @__PURE__ */
|
|
7675
|
-
/* @__PURE__ */
|
|
7676
|
-
/* @__PURE__ */
|
|
7686
|
+
/* @__PURE__ */ jsx122("col", {}),
|
|
7687
|
+
/* @__PURE__ */ jsx122("col", {}),
|
|
7688
|
+
/* @__PURE__ */ jsx122("col", {})
|
|
7677
7689
|
] }),
|
|
7678
7690
|
/* @__PURE__ */ jsxs44(TableTbody, { children: [
|
|
7679
7691
|
/* @__PURE__ */ jsxs44(TableRow, { className: "k-master-row", children: [
|
|
7680
|
-
/* @__PURE__ */
|
|
7681
|
-
/* @__PURE__ */
|
|
7682
|
-
/* @__PURE__ */
|
|
7683
|
-
/* @__PURE__ */
|
|
7692
|
+
/* @__PURE__ */ jsx122(TableTd, { children: "Chef Anton's Gumbo" }),
|
|
7693
|
+
/* @__PURE__ */ jsx122(TableTd, { children: "21.35" }),
|
|
7694
|
+
/* @__PURE__ */ jsx122(TableTd, { children: "0" }),
|
|
7695
|
+
/* @__PURE__ */ jsx122(TableTd, { children: "Condiments" })
|
|
7684
7696
|
] }),
|
|
7685
7697
|
/* @__PURE__ */ jsxs44(TableRow, { alt: true, children: [
|
|
7686
|
-
/* @__PURE__ */
|
|
7687
|
-
/* @__PURE__ */
|
|
7688
|
-
/* @__PURE__ */
|
|
7689
|
-
/* @__PURE__ */
|
|
7698
|
+
/* @__PURE__ */ jsx122(TableTd, { children: "Alice Mutton" }),
|
|
7699
|
+
/* @__PURE__ */ jsx122(TableTd, { children: "39" }),
|
|
7700
|
+
/* @__PURE__ */ jsx122(TableTd, { children: "0" }),
|
|
7701
|
+
/* @__PURE__ */ jsx122(TableTd, { children: "Meat/Poultry" })
|
|
7690
7702
|
] }),
|
|
7691
7703
|
/* @__PURE__ */ jsxs44(TableRow, { className: "k-master-row", children: [
|
|
7692
|
-
/* @__PURE__ */
|
|
7693
|
-
/* @__PURE__ */
|
|
7694
|
-
/* @__PURE__ */
|
|
7695
|
-
/* @__PURE__ */
|
|
7704
|
+
/* @__PURE__ */ jsx122(TableTd, { children: "Singaporean Hokkien Fried Mee" }),
|
|
7705
|
+
/* @__PURE__ */ jsx122(TableTd, { children: "123.79" }),
|
|
7706
|
+
/* @__PURE__ */ jsx122(TableTd, { children: "1" }),
|
|
7707
|
+
/* @__PURE__ */ jsx122(TableTd, { children: "Meat/Poultry" })
|
|
7696
7708
|
] }),
|
|
7697
7709
|
/* @__PURE__ */ jsxs44(TableRow, { alt: true, children: [
|
|
7698
|
-
/* @__PURE__ */
|
|
7699
|
-
/* @__PURE__ */
|
|
7700
|
-
/* @__PURE__ */
|
|
7701
|
-
/* @__PURE__ */
|
|
7710
|
+
/* @__PURE__ */ jsx122(TableTd, { children: "Gorgonzola Telino" }),
|
|
7711
|
+
/* @__PURE__ */ jsx122(TableTd, { children: "12.5" }),
|
|
7712
|
+
/* @__PURE__ */ jsx122(TableTd, { children: "0" }),
|
|
7713
|
+
/* @__PURE__ */ jsx122(TableTd, { children: "Meat/Poultry" })
|
|
7702
7714
|
] }),
|
|
7703
7715
|
/* @__PURE__ */ jsxs44(TableRow, { className: "k-master-row", children: [
|
|
7704
|
-
/* @__PURE__ */
|
|
7705
|
-
/* @__PURE__ */
|
|
7706
|
-
/* @__PURE__ */
|
|
7707
|
-
/* @__PURE__ */
|
|
7716
|
+
/* @__PURE__ */ jsx122(TableTd, { children: "Perth Pasties" }),
|
|
7717
|
+
/* @__PURE__ */ jsx122(TableTd, { children: "32.8" }),
|
|
7718
|
+
/* @__PURE__ */ jsx122(TableTd, { children: "0" }),
|
|
7719
|
+
/* @__PURE__ */ jsx122(TableTd, { children: "Meat/Poultry" })
|
|
7708
7720
|
] })
|
|
7709
7721
|
] })
|
|
7710
7722
|
] }) }),
|
|
7711
|
-
/* @__PURE__ */
|
|
7723
|
+
/* @__PURE__ */ jsx122(Pager, { refresh: false, className: "k-grid-pager" })
|
|
7712
7724
|
] }) }),
|
|
7713
7725
|
/* @__PURE__ */ jsxs44(Popup, { className: "k-column-menu k-grid-columnmenu-popup", children: [
|
|
7714
7726
|
/* @__PURE__ */ jsxs44("div", { className: "k-columnmenu-item-wrapper", children: [
|
|
7715
7727
|
/* @__PURE__ */ jsxs44("div", { className: "k-columnmenu-item", children: [
|
|
7716
|
-
/* @__PURE__ */
|
|
7728
|
+
/* @__PURE__ */ jsx122(Icon, { icon: "sort-asc-small" }),
|
|
7717
7729
|
"Sort ascending"
|
|
7718
7730
|
] }),
|
|
7719
7731
|
/* @__PURE__ */ jsxs44("div", { className: "k-columnmenu-item", children: [
|
|
7720
|
-
/* @__PURE__ */
|
|
7732
|
+
/* @__PURE__ */ jsx122(Icon, { icon: "sort-desc-small" }),
|
|
7721
7733
|
"Sort descending"
|
|
7722
7734
|
] })
|
|
7723
7735
|
] }),
|
|
7724
|
-
/* @__PURE__ */
|
|
7725
|
-
/* @__PURE__ */
|
|
7736
|
+
/* @__PURE__ */ jsx122("div", { className: "k-columnmenu-item-wrapper", children: /* @__PURE__ */ jsx122("div", { className: "k-expander", children: /* @__PURE__ */ jsxs44("div", { className: "k-columnmenu-item", children: [
|
|
7737
|
+
/* @__PURE__ */ jsx122(Icon, { icon: "columns" }),
|
|
7726
7738
|
"Columns",
|
|
7727
|
-
/* @__PURE__ */
|
|
7728
|
-
/* @__PURE__ */
|
|
7739
|
+
/* @__PURE__ */ jsx122("span", { className: "k-spacer" }),
|
|
7740
|
+
/* @__PURE__ */ jsx122("span", { className: "k-expander-indicator", children: /* @__PURE__ */ jsx122(Icon, { icon: "chevron-down" }) })
|
|
7729
7741
|
] }) }) }),
|
|
7730
|
-
/* @__PURE__ */
|
|
7731
|
-
/* @__PURE__ */
|
|
7742
|
+
/* @__PURE__ */ jsx122("div", { className: "k-columnmenu-item-wrapper", children: /* @__PURE__ */ jsx122("div", { className: "k-expander", children: /* @__PURE__ */ jsxs44("div", { className: "k-columnmenu-item", children: [
|
|
7743
|
+
/* @__PURE__ */ jsx122(Icon, { icon: "filter" }),
|
|
7732
7744
|
"Filter",
|
|
7733
|
-
/* @__PURE__ */
|
|
7734
|
-
/* @__PURE__ */
|
|
7745
|
+
/* @__PURE__ */ jsx122("span", { className: "k-spacer" }),
|
|
7746
|
+
/* @__PURE__ */ jsx122("span", { className: "k-expander-indicator", children: /* @__PURE__ */ jsx122(Icon, { icon: "chevron-down" }) })
|
|
7735
7747
|
] }) }) }),
|
|
7736
|
-
/* @__PURE__ */
|
|
7737
|
-
/* @__PURE__ */
|
|
7748
|
+
/* @__PURE__ */ jsx122("div", { className: "k-columnmenu-item-wrapper", children: /* @__PURE__ */ jsxs44("div", { className: "k-columnmenu-item", children: [
|
|
7749
|
+
/* @__PURE__ */ jsx122(Icon, { icon: "group" }),
|
|
7738
7750
|
"Group column"
|
|
7739
7751
|
] }) }),
|
|
7740
7752
|
/* @__PURE__ */ jsxs44("div", { className: "k-columnmenu-item-wrapper", children: [
|
|
7741
7753
|
/* @__PURE__ */ jsxs44("div", { className: "k-columnmenu-item", children: [
|
|
7742
|
-
/* @__PURE__ */
|
|
7754
|
+
/* @__PURE__ */ jsx122(Icon, { icon: "max-width" }),
|
|
7743
7755
|
"Autosize this column"
|
|
7744
7756
|
] }),
|
|
7745
7757
|
/* @__PURE__ */ jsxs44("div", { className: "k-columnmenu-item", children: [
|
|
7746
|
-
/* @__PURE__ */
|
|
7758
|
+
/* @__PURE__ */ jsx122(Icon, { icon: "display-inline-flex" }),
|
|
7747
7759
|
"Autosize all columns"
|
|
7748
7760
|
] })
|
|
7749
7761
|
] }),
|
|
7750
|
-
/* @__PURE__ */
|
|
7762
|
+
/* @__PURE__ */ jsx122("div", { className: "k-columnmenu-item-wrapper", children: /* @__PURE__ */ jsxs44("div", { className: "k-expander", children: [
|
|
7751
7763
|
/* @__PURE__ */ jsxs44("div", { className: "k-columnmenu-item", children: [
|
|
7752
|
-
/* @__PURE__ */
|
|
7764
|
+
/* @__PURE__ */ jsx122(Icon, { icon: "set-column-position" }),
|
|
7753
7765
|
"Set column position",
|
|
7754
|
-
/* @__PURE__ */
|
|
7755
|
-
/* @__PURE__ */
|
|
7766
|
+
/* @__PURE__ */ jsx122("span", { className: "k-spacer" }),
|
|
7767
|
+
/* @__PURE__ */ jsx122("span", { className: "k-expander-indicator", children: /* @__PURE__ */ jsx122(Icon, { icon: "chevron-up" }) })
|
|
7756
7768
|
] }),
|
|
7757
|
-
/* @__PURE__ */
|
|
7769
|
+
/* @__PURE__ */ jsx122("div", { className: "k-columnmenu-item-content k-columns-item", children: /* @__PURE__ */ jsx122("div", { className: "k-column-list-wrapper", children: /* @__PURE__ */ jsxs44("div", { className: "k-column-list", style: { maxHeight: "260px", overflowY: "hidden" }, children: [
|
|
7758
7770
|
/* @__PURE__ */ jsxs44("div", { className: "k-column-list-item", children: [
|
|
7759
|
-
/* @__PURE__ */
|
|
7771
|
+
/* @__PURE__ */ jsx122(Icon, { icon: "lock" }),
|
|
7760
7772
|
"Lock column"
|
|
7761
7773
|
] }),
|
|
7762
7774
|
/* @__PURE__ */ jsxs44("div", { className: "k-column-list-item k-disabled", children: [
|
|
7763
|
-
/* @__PURE__ */
|
|
7775
|
+
/* @__PURE__ */ jsx122(Icon, { icon: "unlock" }),
|
|
7764
7776
|
"Unlock column"
|
|
7765
7777
|
] }),
|
|
7766
7778
|
/* @__PURE__ */ jsxs44("div", { className: "k-column-list-item", children: [
|
|
7767
|
-
/* @__PURE__ */
|
|
7779
|
+
/* @__PURE__ */ jsx122(Icon, { icon: "stick" }),
|
|
7768
7780
|
"Stick column"
|
|
7769
7781
|
] }),
|
|
7770
7782
|
/* @__PURE__ */ jsxs44("div", { className: "k-column-list-item k-disabled", children: [
|
|
7771
|
-
/* @__PURE__ */
|
|
7783
|
+
/* @__PURE__ */ jsx122(Icon, { icon: "unstick" }),
|
|
7772
7784
|
"Unstick column"
|
|
7773
7785
|
] }),
|
|
7774
7786
|
/* @__PURE__ */ jsxs44("div", { className: "k-column-list-item", children: [
|
|
7775
|
-
/* @__PURE__ */
|
|
7787
|
+
/* @__PURE__ */ jsx122(Icon, { icon: "caret-alt-left" }),
|
|
7776
7788
|
"Move previous"
|
|
7777
7789
|
] }),
|
|
7778
7790
|
/* @__PURE__ */ jsxs44("div", { className: "k-column-list-item", children: [
|
|
7779
|
-
/* @__PURE__ */
|
|
7791
|
+
/* @__PURE__ */ jsx122(Icon, { icon: "caret-alt-right" }),
|
|
7780
7792
|
"Move next"
|
|
7781
7793
|
] })
|
|
7782
7794
|
] }) }) })
|