@progress/kendo-themes-html 6.2.1-dev.0 → 6.2.1-dev.44
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/action-sheet/tests/action-sheet-data-table.js +382 -2
- package/dist/action-sheet/tests/action-sheet-data-table.js.map +4 -4
- package/dist/dropdowngrid/dropdowngrid.js +1 -1
- package/dist/dropdowngrid/dropdowngrid.js.map +2 -2
- package/dist/dropdowngrid/tests/dropdowngrid-flat.js +1 -1
- package/dist/dropdowngrid/tests/dropdowngrid-flat.js.map +2 -2
- package/dist/dropdowngrid/tests/dropdowngrid-outline.js +1 -1
- package/dist/dropdowngrid/tests/dropdowngrid-outline.js.map +2 -2
- package/dist/dropdowngrid/tests/dropdowngrid.js +1 -1
- package/dist/dropdowngrid/tests/dropdowngrid.js.map +2 -2
- package/dist/fab/fab-item.js +104 -0
- package/dist/fab/fab-item.js.map +7 -0
- package/dist/fab/fab-items.js +64 -0
- package/dist/fab/fab-items.js.map +7 -0
- package/dist/fab/tests/fab-items.js +51 -4
- package/dist/fab/tests/fab-items.js.map +4 -4
- package/dist/fab/tests/fab-position.js +6 -0
- package/dist/fab/tests/fab-position.js.map +4 -4
- package/dist/fab/tests/fab-size.js +6 -0
- package/dist/fab/tests/fab-size.js.map +4 -4
- package/dist/fab/tests/fab-states.js +6 -0
- package/dist/fab/tests/fab-states.js.map +4 -4
- package/dist/fab/tests/fab.js +6 -0
- package/dist/fab/tests/fab.js.map +4 -4
- package/dist/grid/tests/grid-rows-resizing.js +1131 -0
- package/dist/grid/tests/grid-rows-resizing.js.map +7 -0
- package/dist/index.js +711 -184
- package/dist/index.js.map +4 -4
- package/dist/popup/tests/popup-dropdowngrid.js +508 -0
- package/dist/popup/tests/popup-dropdowngrid.js.map +7 -0
- package/dist/table/data-table.js +97 -0
- package/dist/table/data-table.js.map +7 -0
- package/dist/table/table-body.js +67 -0
- package/dist/table/table-body.js.map +7 -0
- package/dist/table/table-footer.js +66 -0
- package/dist/table/table-footer.js.map +7 -0
- package/dist/table/table-group-header.js +66 -0
- package/dist/table/table-group-header.js.map +7 -0
- package/dist/table/table-group-row.js +66 -0
- package/dist/table/table-group-row.js.map +7 -0
- package/dist/table/table-group-sticky-header.js +66 -0
- package/dist/table/table-group-sticky-header.js.map +7 -0
- package/dist/table/table-header.js +115 -0
- package/dist/table/table-header.js.map +7 -0
- package/dist/table/table-list-group-row.js +66 -0
- package/dist/table/table-list-group-row.js.map +7 -0
- package/dist/table/table-list-row.js +78 -0
- package/dist/table/table-list-row.js.map +7 -0
- package/dist/table/table-list-td.js +103 -0
- package/dist/table/table-list-td.js.map +7 -0
- package/dist/table/table-list-th.js +103 -0
- package/dist/table/table-list-th.js.map +7 -0
- package/dist/table/table-list.js +97 -0
- package/dist/table/table-list.js.map +7 -0
- package/dist/table/table-row.js +78 -0
- package/dist/table/table-row.js.map +7 -0
- package/dist/table/table-tbody.js +66 -0
- package/dist/table/table-tbody.js.map +7 -0
- package/dist/table/table-td.js +105 -0
- package/dist/table/table-td.js.map +7 -0
- package/dist/table/table-tfoot.js +66 -0
- package/dist/table/table-tfoot.js.map +7 -0
- package/dist/table/table-th.js +105 -0
- package/dist/table/table-th.js.map +7 -0
- package/dist/table/table-thead.js +66 -0
- package/dist/table/table-thead.js.map +7 -0
- package/dist/table/table.js +94 -0
- package/dist/table/table.js.map +7 -0
- package/dist/table/tests/table-data-sizes.js +392 -1
- package/dist/table/tests/table-data-sizes.js.map +4 -4
- package/dist/table/tests/table-list-jquery.js +409 -1
- package/dist/table/tests/table-list-jquery.js.map +4 -4
- package/dist/table/tests/table-list-sizes.js +453 -1
- package/dist/table/tests/table-list-sizes.js.map +4 -4
- package/dist/table/tests/table-list-virtual.js +373 -1
- package/dist/table/tests/table-list-virtual.js.map +4 -4
- package/dist/table/tests/table-native-sizes.js +335 -1
- package/dist/table/tests/table-native-sizes.js.map +4 -4
- package/dist/table/tests/table-native-states.js +299 -1
- package/dist/table/tests/table-native-states.js.map +4 -4
- package/package.json +2 -2
- package/src/action-sheet/tests/action-sheet-data-table.tsx +119 -144
- package/src/dropdowngrid/dropdowngrid.tsx +1 -1
- package/src/fab/fab-item.tsx +48 -0
- package/src/fab/fab-items.tsx +32 -0
- package/src/fab/index.ts +2 -0
- package/src/fab/tests/fab-items.tsx +65 -250
- package/src/grid/tests/grid-rows-resizing.tsx +202 -0
- package/src/index.ts +3 -0
- package/src/popup/tests/popup-dropdowngrid.tsx +163 -0
- package/src/table/data-table.tsx +37 -0
- package/src/table/index.ts +19 -0
- package/src/table/table-body.tsx +29 -0
- package/src/table/table-footer.tsx +28 -0
- package/src/table/table-group-header.tsx +28 -0
- package/src/table/table-group-row.tsx +28 -0
- package/src/table/table-group-sticky-header.tsx +28 -0
- package/src/table/table-header.tsx +31 -0
- package/src/table/table-list-group-row.tsx +28 -0
- package/src/table/table-list-row.tsx +45 -0
- package/src/table/table-list-td.tsx +38 -0
- package/src/table/table-list-th.tsx +38 -0
- package/src/table/table-list.tsx +37 -0
- package/src/table/table-row.tsx +45 -0
- package/src/table/table-tbody.tsx +28 -0
- package/src/table/table-td.tsx +39 -0
- package/src/table/table-tfoot.tsx +28 -0
- package/src/table/table-th.tsx +39 -0
- package/src/table/table-thead.tsx +28 -0
- package/src/table/table.tsx +33 -0
- package/src/table/tests/table-data-sizes.tsx +205 -228
- package/src/table/tests/table-list-jquery.tsx +187 -204
- package/src/table/tests/table-list-sizes.tsx +178 -189
- package/src/table/tests/table-list-virtual.tsx +76 -79
- package/src/table/tests/table-native-sizes.tsx +157 -168
- package/src/table/tests/table-native-states.tsx +62 -61
package/dist/index.js
CHANGED
|
@@ -109,9 +109,9 @@
|
|
|
109
109
|
"type"
|
|
110
110
|
]);
|
|
111
111
|
const typeClass = type === "p" ? "paragraph" : type;
|
|
112
|
-
const
|
|
112
|
+
const Component120 = type.includes("display") ? "div" : type;
|
|
113
113
|
return /* @__PURE__ */ React.createElement(
|
|
114
|
-
|
|
114
|
+
Component120,
|
|
115
115
|
__spreadProps(__spreadValues({}, htmlAttributes), {
|
|
116
116
|
className: classNames(
|
|
117
117
|
{
|
|
@@ -2244,7 +2244,7 @@
|
|
|
2244
2244
|
required,
|
|
2245
2245
|
loading,
|
|
2246
2246
|
disabled,
|
|
2247
|
-
className: classNames(className, "k-dropdowngrid")
|
|
2247
|
+
className: classNames(className, "k-combobox", "k-dropdowngrid")
|
|
2248
2248
|
},
|
|
2249
2249
|
/* @__PURE__ */ React51.createElement(InputPrefix, null, prefix),
|
|
2250
2250
|
/* @__PURE__ */ React51.createElement(InputInnerInput, { placeholder, value }),
|
|
@@ -2982,9 +2982,56 @@
|
|
|
2982
2982
|
themeColor: "primary"
|
|
2983
2983
|
};
|
|
2984
2984
|
|
|
2985
|
-
// src/
|
|
2985
|
+
// src/fab/fab-items.tsx
|
|
2986
2986
|
var React66 = __toESM(__require("react"));
|
|
2987
|
-
var
|
|
2987
|
+
var FloatingActionButtonItems = class extends React66.Component {
|
|
2988
|
+
render() {
|
|
2989
|
+
const {
|
|
2990
|
+
className,
|
|
2991
|
+
position,
|
|
2992
|
+
children
|
|
2993
|
+
} = this.props;
|
|
2994
|
+
return /* @__PURE__ */ React66.createElement("ul", { className: classNames(
|
|
2995
|
+
className,
|
|
2996
|
+
"k-fab-items",
|
|
2997
|
+
{
|
|
2998
|
+
[`k-fab-items-${position}`]: position
|
|
2999
|
+
}
|
|
3000
|
+
) }, children);
|
|
3001
|
+
}
|
|
3002
|
+
};
|
|
3003
|
+
|
|
3004
|
+
// src/fab/fab-item.tsx
|
|
3005
|
+
var React67 = __toESM(__require("react"));
|
|
3006
|
+
var FloatingActionButtonItem = class extends React67.Component {
|
|
3007
|
+
render() {
|
|
3008
|
+
const {
|
|
3009
|
+
className,
|
|
3010
|
+
align,
|
|
3011
|
+
text,
|
|
3012
|
+
icon,
|
|
3013
|
+
hover,
|
|
3014
|
+
focus,
|
|
3015
|
+
active,
|
|
3016
|
+
disabled
|
|
3017
|
+
} = this.props;
|
|
3018
|
+
return /* @__PURE__ */ React67.createElement("li", { className: classNames(
|
|
3019
|
+
className,
|
|
3020
|
+
"k-fab-item",
|
|
3021
|
+
{
|
|
3022
|
+
[`k-text-${align}`]: align,
|
|
3023
|
+
"k-hover": hover,
|
|
3024
|
+
"k-focus": focus,
|
|
3025
|
+
"k-active": active,
|
|
3026
|
+
"k-disabled": disabled
|
|
3027
|
+
}
|
|
3028
|
+
) }, /* @__PURE__ */ React67.createElement("span", { className: "k-fab-item-text" }, text), /* @__PURE__ */ React67.createElement(Icon, { className: "k-fab-item-icon", name: icon }));
|
|
3029
|
+
}
|
|
3030
|
+
};
|
|
3031
|
+
|
|
3032
|
+
// src/menu/menu-item.tsx
|
|
3033
|
+
var React68 = __toESM(__require("react"));
|
|
3034
|
+
var MenuItem = class extends React68.Component {
|
|
2988
3035
|
render() {
|
|
2989
3036
|
const {
|
|
2990
3037
|
className,
|
|
@@ -3000,7 +3047,7 @@
|
|
|
3000
3047
|
disabled,
|
|
3001
3048
|
dir
|
|
3002
3049
|
} = this.props;
|
|
3003
|
-
const contentTemplate = /* @__PURE__ */
|
|
3050
|
+
const contentTemplate = /* @__PURE__ */ React68.createElement(React68.Fragment, null);
|
|
3004
3051
|
if (children) {
|
|
3005
3052
|
children.forEach((child) => {
|
|
3006
3053
|
const component = child.type;
|
|
@@ -3014,7 +3061,7 @@
|
|
|
3014
3061
|
if (!expandArrowName) {
|
|
3015
3062
|
expandArrowName = dir === "rtl" ? "caret-alt-left" : "caret-alt-right";
|
|
3016
3063
|
}
|
|
3017
|
-
return /* @__PURE__ */
|
|
3064
|
+
return /* @__PURE__ */ React68.createElement(
|
|
3018
3065
|
"li",
|
|
3019
3066
|
{
|
|
3020
3067
|
className: classNames(
|
|
@@ -3026,7 +3073,7 @@
|
|
|
3026
3073
|
}
|
|
3027
3074
|
)
|
|
3028
3075
|
},
|
|
3029
|
-
/* @__PURE__ */
|
|
3076
|
+
/* @__PURE__ */ React68.createElement(
|
|
3030
3077
|
"span",
|
|
3031
3078
|
{
|
|
3032
3079
|
className: classNames(
|
|
@@ -3040,9 +3087,9 @@
|
|
|
3040
3087
|
}
|
|
3041
3088
|
)
|
|
3042
3089
|
},
|
|
3043
|
-
icon && /* @__PURE__ */
|
|
3044
|
-
/* @__PURE__ */
|
|
3045
|
-
showArrow && /* @__PURE__ */
|
|
3090
|
+
icon && /* @__PURE__ */ React68.createElement(Icon, { className: "k-menu-link-icon", name: icon }),
|
|
3091
|
+
/* @__PURE__ */ React68.createElement("span", { className: "k-menu-link-text" }, text),
|
|
3092
|
+
showArrow && /* @__PURE__ */ React68.createElement("span", { className: "k-menu-expand-arrow" }, /* @__PURE__ */ React68.createElement(Icon, { name: expandArrowName }))
|
|
3046
3093
|
),
|
|
3047
3094
|
contentTemplate
|
|
3048
3095
|
);
|
|
@@ -3054,17 +3101,17 @@
|
|
|
3054
3101
|
};
|
|
3055
3102
|
|
|
3056
3103
|
// src/menu/menu-item-content.tsx
|
|
3057
|
-
var
|
|
3058
|
-
var MenuItemContent = class extends
|
|
3104
|
+
var React69 = __toESM(__require("react"));
|
|
3105
|
+
var MenuItemContent = class extends React69.Component {
|
|
3059
3106
|
render() {
|
|
3060
3107
|
const {
|
|
3061
3108
|
className,
|
|
3062
3109
|
children
|
|
3063
3110
|
} = this.props;
|
|
3064
3111
|
if (!children) {
|
|
3065
|
-
return /* @__PURE__ */
|
|
3112
|
+
return /* @__PURE__ */ React69.createElement(React69.Fragment, null);
|
|
3066
3113
|
}
|
|
3067
|
-
return /* @__PURE__ */
|
|
3114
|
+
return /* @__PURE__ */ React69.createElement(
|
|
3068
3115
|
"span",
|
|
3069
3116
|
{
|
|
3070
3117
|
className: classNames(
|
|
@@ -3078,8 +3125,8 @@
|
|
|
3078
3125
|
};
|
|
3079
3126
|
|
|
3080
3127
|
// src/menu/menu-list.tsx
|
|
3081
|
-
var
|
|
3082
|
-
var MenuList = class extends
|
|
3128
|
+
var React70 = __toESM(__require("react"));
|
|
3129
|
+
var MenuList = class extends React70.Component {
|
|
3083
3130
|
render() {
|
|
3084
3131
|
const {
|
|
3085
3132
|
className,
|
|
@@ -3087,9 +3134,9 @@
|
|
|
3087
3134
|
size
|
|
3088
3135
|
} = this.props;
|
|
3089
3136
|
if (!children) {
|
|
3090
|
-
return /* @__PURE__ */
|
|
3137
|
+
return /* @__PURE__ */ React70.createElement(React70.Fragment, null);
|
|
3091
3138
|
}
|
|
3092
|
-
return /* @__PURE__ */
|
|
3139
|
+
return /* @__PURE__ */ React70.createElement(
|
|
3093
3140
|
"ul",
|
|
3094
3141
|
{
|
|
3095
3142
|
className: classNames(
|
|
@@ -3109,8 +3156,8 @@
|
|
|
3109
3156
|
};
|
|
3110
3157
|
|
|
3111
3158
|
// src/toolbar/toolbar.tsx
|
|
3112
|
-
var
|
|
3113
|
-
var Toolbar = class extends
|
|
3159
|
+
var React71 = __toESM(__require("react"));
|
|
3160
|
+
var Toolbar = class extends React71.Component {
|
|
3114
3161
|
render() {
|
|
3115
3162
|
const _a = this.props, {
|
|
3116
3163
|
children,
|
|
@@ -3130,7 +3177,7 @@
|
|
|
3130
3177
|
const tempToolbarChildren = [];
|
|
3131
3178
|
if (child.type === Button && child.props.className && child.props.className.includes("k-toolbar-overflow-button")) {
|
|
3132
3179
|
tempToolbarChildren.push(
|
|
3133
|
-
/* @__PURE__ */
|
|
3180
|
+
/* @__PURE__ */ React71.createElement(
|
|
3134
3181
|
Button,
|
|
3135
3182
|
__spreadProps(__spreadValues({
|
|
3136
3183
|
key: `${index}-${new Date().getTime()}`
|
|
@@ -3141,7 +3188,7 @@
|
|
|
3141
3188
|
);
|
|
3142
3189
|
} else if (child.type === Button && child.props.className && child.props.className.includes("k-toggle-button")) {
|
|
3143
3190
|
tempToolbarChildren.push(
|
|
3144
|
-
/* @__PURE__ */
|
|
3191
|
+
/* @__PURE__ */ React71.createElement(
|
|
3145
3192
|
Button,
|
|
3146
3193
|
__spreadProps(__spreadValues({
|
|
3147
3194
|
key: `${index}-${new Date().getTime()}`
|
|
@@ -3152,7 +3199,7 @@
|
|
|
3152
3199
|
);
|
|
3153
3200
|
} else if (child.type === Button) {
|
|
3154
3201
|
tempToolbarChildren.push(
|
|
3155
|
-
/* @__PURE__ */
|
|
3202
|
+
/* @__PURE__ */ React71.createElement(
|
|
3156
3203
|
Button,
|
|
3157
3204
|
__spreadProps(__spreadValues({
|
|
3158
3205
|
key: `${index}-${new Date().getTime()}`
|
|
@@ -3163,7 +3210,7 @@
|
|
|
3163
3210
|
);
|
|
3164
3211
|
} else if (child.type === MenuButton) {
|
|
3165
3212
|
tempToolbarChildren.push(
|
|
3166
|
-
/* @__PURE__ */
|
|
3213
|
+
/* @__PURE__ */ React71.createElement(
|
|
3167
3214
|
MenuButton,
|
|
3168
3215
|
__spreadProps(__spreadValues({
|
|
3169
3216
|
key: `${index}-${new Date().getTime()}`
|
|
@@ -3174,7 +3221,7 @@
|
|
|
3174
3221
|
);
|
|
3175
3222
|
} else if (child.type === SplitButton) {
|
|
3176
3223
|
tempToolbarChildren.push(
|
|
3177
|
-
/* @__PURE__ */
|
|
3224
|
+
/* @__PURE__ */ React71.createElement(
|
|
3178
3225
|
SplitButton,
|
|
3179
3226
|
__spreadProps(__spreadValues({
|
|
3180
3227
|
key: `${index}-${new Date().getTime()}`
|
|
@@ -3188,7 +3235,7 @@
|
|
|
3188
3235
|
const childrenArray = Array.isArray(child.props.children) ? child.props.children : [child.props.children];
|
|
3189
3236
|
childrenArray.forEach((button, bindex) => {
|
|
3190
3237
|
buttonGroupItems.push(
|
|
3191
|
-
/* @__PURE__ */
|
|
3238
|
+
/* @__PURE__ */ React71.createElement(
|
|
3192
3239
|
Button,
|
|
3193
3240
|
__spreadProps(__spreadValues({
|
|
3194
3241
|
key: `${bindex}-${new Date().getTime()}`
|
|
@@ -3199,7 +3246,7 @@
|
|
|
3199
3246
|
);
|
|
3200
3247
|
});
|
|
3201
3248
|
tempToolbarChildren.push(
|
|
3202
|
-
/* @__PURE__ */
|
|
3249
|
+
/* @__PURE__ */ React71.createElement(
|
|
3203
3250
|
ButtonGroup,
|
|
3204
3251
|
__spreadProps(__spreadValues({
|
|
3205
3252
|
key: `${index}-${new Date().getTime()}`
|
|
@@ -3211,7 +3258,7 @@
|
|
|
3211
3258
|
);
|
|
3212
3259
|
} else if (child.type === Combobox) {
|
|
3213
3260
|
tempToolbarChildren.push(
|
|
3214
|
-
/* @__PURE__ */
|
|
3261
|
+
/* @__PURE__ */ React71.createElement(
|
|
3215
3262
|
Combobox,
|
|
3216
3263
|
__spreadProps(__spreadValues({
|
|
3217
3264
|
key: `${index}-${new Date().getTime()}`
|
|
@@ -3222,7 +3269,7 @@
|
|
|
3222
3269
|
);
|
|
3223
3270
|
} else if (child.type === DropdownList) {
|
|
3224
3271
|
tempToolbarChildren.push(
|
|
3225
|
-
/* @__PURE__ */
|
|
3272
|
+
/* @__PURE__ */ React71.createElement(
|
|
3226
3273
|
DropdownList,
|
|
3227
3274
|
__spreadProps(__spreadValues({
|
|
3228
3275
|
key: `${index}-${new Date().getTime()}`
|
|
@@ -3233,7 +3280,7 @@
|
|
|
3233
3280
|
);
|
|
3234
3281
|
} else if (child.type === ColorPicker) {
|
|
3235
3282
|
tempToolbarChildren.push(
|
|
3236
|
-
/* @__PURE__ */
|
|
3283
|
+
/* @__PURE__ */ React71.createElement(
|
|
3237
3284
|
ColorPicker,
|
|
3238
3285
|
__spreadProps(__spreadValues({
|
|
3239
3286
|
key: `${index}-${new Date().getTime()}`
|
|
@@ -3246,7 +3293,7 @@
|
|
|
3246
3293
|
tempToolbarChildren.push(child);
|
|
3247
3294
|
}
|
|
3248
3295
|
tempToolbarChildren.forEach((item) => {
|
|
3249
|
-
const tool = framework === "angular" ?
|
|
3296
|
+
const tool = framework === "angular" ? React71.createElement("div", { className: "k-toolbar-renderer" }, item) : item;
|
|
3250
3297
|
toolbarChildren.push(tool);
|
|
3251
3298
|
});
|
|
3252
3299
|
};
|
|
@@ -3260,7 +3307,7 @@
|
|
|
3260
3307
|
}
|
|
3261
3308
|
});
|
|
3262
3309
|
}
|
|
3263
|
-
return /* @__PURE__ */
|
|
3310
|
+
return /* @__PURE__ */ React71.createElement(
|
|
3264
3311
|
"div",
|
|
3265
3312
|
__spreadProps(__spreadValues({}, htmlAttributes), {
|
|
3266
3313
|
className: classNames(
|
|
@@ -3282,26 +3329,26 @@
|
|
|
3282
3329
|
};
|
|
3283
3330
|
|
|
3284
3331
|
// src/toolbar/toolbar-separator.tsx
|
|
3285
|
-
var
|
|
3286
|
-
var ToolbarSeparator = class extends
|
|
3332
|
+
var React72 = __toESM(__require("react"));
|
|
3333
|
+
var ToolbarSeparator = class extends React72.Component {
|
|
3287
3334
|
render() {
|
|
3288
3335
|
const {
|
|
3289
3336
|
className
|
|
3290
3337
|
} = this.props;
|
|
3291
|
-
return /* @__PURE__ */
|
|
3338
|
+
return /* @__PURE__ */ React72.createElement("div", { className: classNames(className, "k-separator") });
|
|
3292
3339
|
}
|
|
3293
3340
|
};
|
|
3294
3341
|
|
|
3295
3342
|
// src/toolbar/toolbar-item.tsx
|
|
3296
|
-
var
|
|
3297
|
-
var ToolbarItem = class extends
|
|
3343
|
+
var React73 = __toESM(__require("react"));
|
|
3344
|
+
var ToolbarItem = class extends React73.Component {
|
|
3298
3345
|
render() {
|
|
3299
3346
|
const {
|
|
3300
3347
|
children,
|
|
3301
3348
|
className,
|
|
3302
3349
|
focus
|
|
3303
3350
|
} = this.props;
|
|
3304
|
-
return /* @__PURE__ */
|
|
3351
|
+
return /* @__PURE__ */ React73.createElement("div", { className: classNames(
|
|
3305
3352
|
className,
|
|
3306
3353
|
"k-toolbar-item",
|
|
3307
3354
|
{
|
|
@@ -3312,8 +3359,8 @@
|
|
|
3312
3359
|
};
|
|
3313
3360
|
|
|
3314
3361
|
// src/action-sheet/action-sheet.tsx
|
|
3315
|
-
var
|
|
3316
|
-
var ActionSheet = class extends
|
|
3362
|
+
var React74 = __toESM(__require("react"));
|
|
3363
|
+
var ActionSheet = class extends React74.Component {
|
|
3317
3364
|
render() {
|
|
3318
3365
|
const _a = this.props, {
|
|
3319
3366
|
children,
|
|
@@ -3336,11 +3383,11 @@
|
|
|
3336
3383
|
"adaptive",
|
|
3337
3384
|
"className"
|
|
3338
3385
|
]);
|
|
3339
|
-
const childrenArray =
|
|
3340
|
-
const _ActionSheetHeader = title ? /* @__PURE__ */
|
|
3341
|
-
const _ActionSheetFooter = actions ? /* @__PURE__ */
|
|
3386
|
+
const childrenArray = React74.Children.toArray(children);
|
|
3387
|
+
const _ActionSheetHeader = title ? /* @__PURE__ */ React74.createElement(ActionSheetHeader, { title }) : header ? header : childrenArray.find((child) => React74.isValidElement(child) && child.type === ActionSheetHeader);
|
|
3388
|
+
const _ActionSheetFooter = actions ? /* @__PURE__ */ React74.createElement(ActionSheetFooter, { className: "k-actions", actions }) : footer ? typeof footer === "string" ? /* @__PURE__ */ React74.createElement(ActionSheetFooter, null, footer) : footer : childrenArray.find((child) => React74.isValidElement(child) && child.type === ActionSheetFooter);
|
|
3342
3389
|
const _ActionSheetContent = childrenArray.filter((child) => {
|
|
3343
|
-
if (
|
|
3390
|
+
if (React74.isValidElement(child)) {
|
|
3344
3391
|
switch (child.type) {
|
|
3345
3392
|
case ActionSheetHeader:
|
|
3346
3393
|
case ActionSheetFooter:
|
|
@@ -3351,7 +3398,7 @@
|
|
|
3351
3398
|
}
|
|
3352
3399
|
return true;
|
|
3353
3400
|
});
|
|
3354
|
-
return /* @__PURE__ */
|
|
3401
|
+
return /* @__PURE__ */ React74.createElement("div", { className: "k-actionsheet-container" }, /* @__PURE__ */ React74.createElement("div", { className: "k-overlay" }), /* @__PURE__ */ React74.createElement("div", { className: "k-animation-container" }, /* @__PURE__ */ React74.createElement(
|
|
3355
3402
|
"div",
|
|
3356
3403
|
{
|
|
3357
3404
|
className: "k-child-animation-container",
|
|
@@ -3363,7 +3410,7 @@
|
|
|
3363
3410
|
[`${side === "left" || side === "right" ? "height" : null}`]: "100%"
|
|
3364
3411
|
}
|
|
3365
3412
|
},
|
|
3366
|
-
/* @__PURE__ */
|
|
3413
|
+
/* @__PURE__ */ React74.createElement(
|
|
3367
3414
|
"div",
|
|
3368
3415
|
__spreadValues({
|
|
3369
3416
|
className: classNames(
|
|
@@ -3376,7 +3423,7 @@
|
|
|
3376
3423
|
className
|
|
3377
3424
|
)
|
|
3378
3425
|
}, htmlAttributes),
|
|
3379
|
-
/* @__PURE__ */
|
|
3426
|
+
/* @__PURE__ */ React74.createElement(React74.Fragment, null, _ActionSheetHeader, /* @__PURE__ */ React74.createElement("div", { className: classNames(
|
|
3380
3427
|
"k-actionsheet-content",
|
|
3381
3428
|
{
|
|
3382
3429
|
"!k-overflow-hidden": adaptive
|
|
@@ -3393,8 +3440,8 @@
|
|
|
3393
3440
|
};
|
|
3394
3441
|
|
|
3395
3442
|
// src/action-sheet/actionsheet-header.tsx
|
|
3396
|
-
var
|
|
3397
|
-
var ActionSheetHeader = class extends
|
|
3443
|
+
var React75 = __toESM(__require("react"));
|
|
3444
|
+
var ActionSheetHeader = class extends React75.Component {
|
|
3398
3445
|
render() {
|
|
3399
3446
|
const {
|
|
3400
3447
|
title,
|
|
@@ -3404,7 +3451,7 @@
|
|
|
3404
3451
|
filter,
|
|
3405
3452
|
className
|
|
3406
3453
|
} = this.props;
|
|
3407
|
-
return /* @__PURE__ */
|
|
3454
|
+
return /* @__PURE__ */ React75.createElement(
|
|
3408
3455
|
"div",
|
|
3409
3456
|
{
|
|
3410
3457
|
className: classNames(
|
|
@@ -3412,42 +3459,42 @@
|
|
|
3412
3459
|
"k-actionsheet-titlebar"
|
|
3413
3460
|
)
|
|
3414
3461
|
},
|
|
3415
|
-
/* @__PURE__ */
|
|
3462
|
+
/* @__PURE__ */ React75.createElement(React75.Fragment, null, /* @__PURE__ */ React75.createElement("div", { className: "k-actionsheet-titlebar-group k-hbox" }, !children && (title || subTitle) && /* @__PURE__ */ React75.createElement(React75.Fragment, null, /* @__PURE__ */ React75.createElement("div", { className: "k-actionsheet-title" }, title !== "" && /* @__PURE__ */ React75.createElement("div", { className: "k-text-center" }, title), subTitle !== "" && /* @__PURE__ */ React75.createElement("div", { className: "k-actionsheet-subtitle k-text-center" }, subTitle))), children && /* @__PURE__ */ React75.createElement("div", { className: "k-actionsheet-title" }, children), actions && /* @__PURE__ */ React75.createElement(React75.Fragment, null, /* @__PURE__ */ React75.createElement("div", { className: "k-actionsheet-actions" }, actions.map((actionName) => /* @__PURE__ */ React75.createElement(Button, { key: actionName, icon: actionName, size: "large", fillMode: "flat" }))))), filter && /* @__PURE__ */ React75.createElement(React75.Fragment, null, /* @__PURE__ */ React75.createElement("div", { className: "k-actionsheet-titlebar-group k-actionsheet-filter" }, /* @__PURE__ */ React75.createElement(Searchbox, { placeholder: "Filter", size: "large" }))))
|
|
3416
3463
|
);
|
|
3417
3464
|
}
|
|
3418
3465
|
};
|
|
3419
3466
|
|
|
3420
3467
|
// src/action-sheet/actionsheet-footer.tsx
|
|
3421
|
-
var
|
|
3422
|
-
var ActionSheetFooter = class extends
|
|
3468
|
+
var React76 = __toESM(__require("react"));
|
|
3469
|
+
var ActionSheetFooter = class extends React76.Component {
|
|
3423
3470
|
render() {
|
|
3424
3471
|
const {
|
|
3425
3472
|
children,
|
|
3426
3473
|
actions
|
|
3427
3474
|
} = this.props;
|
|
3428
|
-
return /* @__PURE__ */
|
|
3475
|
+
return /* @__PURE__ */ React76.createElement(ActionButtons, { className: "k-actionsheet-footer", alignment: "stretched" }, /* @__PURE__ */ React76.createElement(React76.Fragment, null, actions && actions.map((action, index) => {
|
|
3429
3476
|
if (action === "|") {
|
|
3430
|
-
return /* @__PURE__ */
|
|
3477
|
+
return /* @__PURE__ */ React76.createElement("span", { key: index, className: "k-separator" });
|
|
3431
3478
|
}
|
|
3432
3479
|
if (action === " ") {
|
|
3433
|
-
return /* @__PURE__ */
|
|
3480
|
+
return /* @__PURE__ */ React76.createElement("span", { key: index, className: "k-spacer" });
|
|
3434
3481
|
}
|
|
3435
3482
|
const importantFlag = action.startsWith("!");
|
|
3436
3483
|
const actionName = importantFlag ? action.substring(1) : action;
|
|
3437
|
-
return /* @__PURE__ */
|
|
3484
|
+
return /* @__PURE__ */ React76.createElement(Button, { key: index, text: actionName, size: "large", themeColor: importantFlag ? "primary" : "base" });
|
|
3438
3485
|
}), !actions && children));
|
|
3439
3486
|
}
|
|
3440
3487
|
};
|
|
3441
3488
|
|
|
3442
3489
|
// src/action-sheet/actionsheet-items.tsx
|
|
3443
|
-
var
|
|
3444
|
-
var ActionSheetItems = class extends
|
|
3490
|
+
var React77 = __toESM(__require("react"));
|
|
3491
|
+
var ActionSheetItems = class extends React77.Component {
|
|
3445
3492
|
render() {
|
|
3446
3493
|
const {
|
|
3447
3494
|
children,
|
|
3448
3495
|
className
|
|
3449
3496
|
} = this.props;
|
|
3450
|
-
return /* @__PURE__ */
|
|
3497
|
+
return /* @__PURE__ */ React77.createElement("div", { className: classNames(
|
|
3451
3498
|
"k-list-ul",
|
|
3452
3499
|
className
|
|
3453
3500
|
) }, children);
|
|
@@ -3455,8 +3502,8 @@
|
|
|
3455
3502
|
};
|
|
3456
3503
|
|
|
3457
3504
|
// src/action-sheet/actionsheet-item.tsx
|
|
3458
|
-
var
|
|
3459
|
-
var ActionSheetItem = class extends
|
|
3505
|
+
var React78 = __toESM(__require("react"));
|
|
3506
|
+
var ActionSheetItem = class extends React78.Component {
|
|
3460
3507
|
render() {
|
|
3461
3508
|
const {
|
|
3462
3509
|
children,
|
|
@@ -3469,7 +3516,7 @@
|
|
|
3469
3516
|
selected,
|
|
3470
3517
|
disabled
|
|
3471
3518
|
} = this.props;
|
|
3472
|
-
return /* @__PURE__ */
|
|
3519
|
+
return /* @__PURE__ */ React78.createElement(
|
|
3473
3520
|
"span",
|
|
3474
3521
|
{
|
|
3475
3522
|
className: classNames(
|
|
@@ -3483,15 +3530,15 @@
|
|
|
3483
3530
|
}
|
|
3484
3531
|
)
|
|
3485
3532
|
},
|
|
3486
|
-
!children && (text !== "" || description !== "" || iconName !== "") && /* @__PURE__ */
|
|
3533
|
+
!children && (text !== "" || description !== "" || iconName !== "") && /* @__PURE__ */ React78.createElement(React78.Fragment, null, /* @__PURE__ */ React78.createElement("span", { className: "k-actionsheet-action" }, iconName !== "" && /* @__PURE__ */ React78.createElement("span", { className: "k-icon-wrap" }, /* @__PURE__ */ React78.createElement(Icon, { className: "k-actionsheet-item-icon", name: iconName })), /* @__PURE__ */ React78.createElement("span", { className: "k-actionsheet-item-text" }, text !== "" && /* @__PURE__ */ React78.createElement("span", { className: "k-actionsheet-item-title" }, text), description !== "" && /* @__PURE__ */ React78.createElement("span", { className: "k-actionsheet-item-description" }, description)))),
|
|
3487
3534
|
children
|
|
3488
3535
|
);
|
|
3489
3536
|
}
|
|
3490
3537
|
};
|
|
3491
3538
|
|
|
3492
3539
|
// src/dialog/dialog.tsx
|
|
3493
|
-
var
|
|
3494
|
-
var Dialog = class extends
|
|
3540
|
+
var React79 = __toESM(__require("react"));
|
|
3541
|
+
var Dialog = class extends React79.Component {
|
|
3495
3542
|
render() {
|
|
3496
3543
|
const {
|
|
3497
3544
|
className,
|
|
@@ -3502,7 +3549,7 @@
|
|
|
3502
3549
|
actionButtons,
|
|
3503
3550
|
actionButtonsAlign
|
|
3504
3551
|
} = this.props;
|
|
3505
|
-
return /* @__PURE__ */
|
|
3552
|
+
return /* @__PURE__ */ React79.createElement(
|
|
3506
3553
|
"div",
|
|
3507
3554
|
{
|
|
3508
3555
|
style: this.props.style,
|
|
@@ -3515,18 +3562,18 @@
|
|
|
3515
3562
|
className
|
|
3516
3563
|
)
|
|
3517
3564
|
},
|
|
3518
|
-
(title !== void 0 || actions) && /* @__PURE__ */
|
|
3519
|
-
(actionName) => /* @__PURE__ */
|
|
3565
|
+
(title !== void 0 || actions) && /* @__PURE__ */ React79.createElement("div", { className: "k-window-titlebar k-dialog-titlebar" }, title !== void 0 && /* @__PURE__ */ React79.createElement("span", { className: "k-window-title k-dialog-title" }, title), actions && /* @__PURE__ */ React79.createElement(React79.Fragment, null, /* @__PURE__ */ React79.createElement("div", { className: "k-window-titlebar-actions k-dialog-titlebar-actions" }, actions.map(
|
|
3566
|
+
(actionName) => /* @__PURE__ */ React79.createElement(Button, { key: actionName, icon: actionName, fillMode: "flat", className: "k-window-titlebar-action k-dialog-titlebar-action" })
|
|
3520
3567
|
)))),
|
|
3521
|
-
/* @__PURE__ */
|
|
3522
|
-
actionButtons && /* @__PURE__ */
|
|
3568
|
+
/* @__PURE__ */ React79.createElement("div", { className: "k-window-content k-dialog-content" }, children),
|
|
3569
|
+
actionButtons && /* @__PURE__ */ React79.createElement(ActionButtons, { alignment: actionButtonsAlign, className: "k-window-actions k-dialog-actions" }, /* @__PURE__ */ React79.createElement(Button, null, "Action"), /* @__PURE__ */ React79.createElement(Button, { themeColor: "primary" }, "Primary"))
|
|
3523
3570
|
);
|
|
3524
3571
|
}
|
|
3525
3572
|
};
|
|
3526
3573
|
|
|
3527
3574
|
// src/notification/notification.tsx
|
|
3528
|
-
var
|
|
3529
|
-
var Notification = class extends
|
|
3575
|
+
var React80 = __toESM(__require("react"));
|
|
3576
|
+
var Notification = class extends React80.Component {
|
|
3530
3577
|
render() {
|
|
3531
3578
|
const _a = this.props, {
|
|
3532
3579
|
actions,
|
|
@@ -3545,7 +3592,7 @@
|
|
|
3545
3592
|
"closable",
|
|
3546
3593
|
"children"
|
|
3547
3594
|
]);
|
|
3548
|
-
return /* @__PURE__ */
|
|
3595
|
+
return /* @__PURE__ */ React80.createElement(
|
|
3549
3596
|
"div",
|
|
3550
3597
|
__spreadProps(__spreadValues({}, htmlAttributes), {
|
|
3551
3598
|
dir: this.props.dir,
|
|
@@ -3558,9 +3605,9 @@
|
|
|
3558
3605
|
}
|
|
3559
3606
|
)
|
|
3560
3607
|
}),
|
|
3561
|
-
icon && /* @__PURE__ */
|
|
3562
|
-
children ? /* @__PURE__ */
|
|
3563
|
-
actions && /* @__PURE__ */
|
|
3608
|
+
icon && /* @__PURE__ */ React80.createElement(Icon, { className: "k-notification-status", name: icon }),
|
|
3609
|
+
children ? /* @__PURE__ */ React80.createElement("div", { className: "k-notification-content" }, text, children) : /* @__PURE__ */ React80.createElement(React80.Fragment, null, text && /* @__PURE__ */ React80.createElement("div", { className: "k-notification-content" }, text)),
|
|
3610
|
+
actions && /* @__PURE__ */ React80.createElement("span", { className: "k-notification-actions" }, actions)
|
|
3564
3611
|
);
|
|
3565
3612
|
}
|
|
3566
3613
|
};
|
|
@@ -3570,12 +3617,12 @@
|
|
|
3570
3617
|
};
|
|
3571
3618
|
|
|
3572
3619
|
// src/notification/notification-action.tsx
|
|
3573
|
-
var
|
|
3620
|
+
var React81 = __toESM(__require("react"));
|
|
3574
3621
|
var notificatonActionType = /* @__PURE__ */ ((notificatonActionType2) => {
|
|
3575
3622
|
notificatonActionType2["CLOSE"] = "close";
|
|
3576
3623
|
return notificatonActionType2;
|
|
3577
3624
|
})(notificatonActionType || {});
|
|
3578
|
-
var NotificationAction = class extends
|
|
3625
|
+
var NotificationAction = class extends React81.Component {
|
|
3579
3626
|
render() {
|
|
3580
3627
|
const {
|
|
3581
3628
|
className,
|
|
@@ -3584,12 +3631,12 @@
|
|
|
3584
3631
|
let icon;
|
|
3585
3632
|
switch (type) {
|
|
3586
3633
|
case "close" /* CLOSE */:
|
|
3587
|
-
icon = /* @__PURE__ */
|
|
3634
|
+
icon = /* @__PURE__ */ React81.createElement(Icon, { name: "x" });
|
|
3588
3635
|
break;
|
|
3589
3636
|
default:
|
|
3590
|
-
return /* @__PURE__ */
|
|
3637
|
+
return /* @__PURE__ */ React81.createElement(Icon, { name: type });
|
|
3591
3638
|
}
|
|
3592
|
-
return /* @__PURE__ */
|
|
3639
|
+
return /* @__PURE__ */ React81.createElement(
|
|
3593
3640
|
"span",
|
|
3594
3641
|
{
|
|
3595
3642
|
className: classNames(
|
|
@@ -3604,8 +3651,8 @@
|
|
|
3604
3651
|
};
|
|
3605
3652
|
|
|
3606
3653
|
// src/popover/popover.tsx
|
|
3607
|
-
var
|
|
3608
|
-
var Popover = class extends
|
|
3654
|
+
var React82 = __toESM(__require("react"));
|
|
3655
|
+
var Popover = class extends React82.Component {
|
|
3609
3656
|
render() {
|
|
3610
3657
|
const _a = this.props, {
|
|
3611
3658
|
className,
|
|
@@ -3620,18 +3667,18 @@
|
|
|
3620
3667
|
"title",
|
|
3621
3668
|
"body"
|
|
3622
3669
|
]);
|
|
3623
|
-
return /* @__PURE__ */
|
|
3670
|
+
return /* @__PURE__ */ React82.createElement("div", __spreadValues({ className: classNames(className, "k-popover") }, htmlAttributes), callout && /* @__PURE__ */ React82.createElement("div", { className: classNames(
|
|
3624
3671
|
"k-popover-callout",
|
|
3625
3672
|
{
|
|
3626
3673
|
[`k-callout-${kendoThemeMaps.calloutMap[callout] || callout}`]: callout
|
|
3627
3674
|
}
|
|
3628
|
-
) }), /* @__PURE__ */
|
|
3675
|
+
) }), /* @__PURE__ */ React82.createElement("div", { className: "k-popover-inner" }, title && /* @__PURE__ */ React82.createElement("div", { className: "k-popover-header" }, title), body && /* @__PURE__ */ React82.createElement("div", { className: "k-popover-body" }, body), /* @__PURE__ */ React82.createElement(React82.Fragment, null, children)));
|
|
3629
3676
|
}
|
|
3630
3677
|
};
|
|
3631
3678
|
|
|
3632
3679
|
// src/window/window.tsx
|
|
3633
|
-
var
|
|
3634
|
-
var Window = class extends
|
|
3680
|
+
var React83 = __toESM(__require("react"));
|
|
3681
|
+
var Window = class extends React83.Component {
|
|
3635
3682
|
render() {
|
|
3636
3683
|
const {
|
|
3637
3684
|
className,
|
|
@@ -3643,7 +3690,7 @@
|
|
|
3643
3690
|
actionButtons,
|
|
3644
3691
|
actionButtonsAlign
|
|
3645
3692
|
} = this.props;
|
|
3646
|
-
return /* @__PURE__ */
|
|
3693
|
+
return /* @__PURE__ */ React83.createElement(
|
|
3647
3694
|
"div",
|
|
3648
3695
|
{
|
|
3649
3696
|
className: classNames(
|
|
@@ -3655,23 +3702,23 @@
|
|
|
3655
3702
|
className
|
|
3656
3703
|
)
|
|
3657
3704
|
},
|
|
3658
|
-
(title !== void 0 || actions) && /* @__PURE__ */
|
|
3659
|
-
(actionName) => /* @__PURE__ */
|
|
3705
|
+
(title !== void 0 || actions) && /* @__PURE__ */ React83.createElement("div", { className: "k-window-titlebar" }, title !== void 0 && /* @__PURE__ */ React83.createElement("span", { className: "k-window-title" }, title), actions && /* @__PURE__ */ React83.createElement(React83.Fragment, null, /* @__PURE__ */ React83.createElement("div", { className: "k-window-titlebar-actions" }, actions.map(
|
|
3706
|
+
(actionName) => /* @__PURE__ */ React83.createElement(Button, { key: actionName, icon: actionName, fillMode: "flat", className: "k-window-titlebar-action" })
|
|
3660
3707
|
)))),
|
|
3661
|
-
/* @__PURE__ */
|
|
3708
|
+
/* @__PURE__ */ React83.createElement("div", { className: classNames(
|
|
3662
3709
|
"k-window-content",
|
|
3663
3710
|
{
|
|
3664
3711
|
"k-hidden": minimized
|
|
3665
3712
|
}
|
|
3666
3713
|
) }, children),
|
|
3667
|
-
actionButtons && /* @__PURE__ */
|
|
3714
|
+
actionButtons && /* @__PURE__ */ React83.createElement(ActionButtons, { alignment: actionButtonsAlign, className: "k-window-actions" }, /* @__PURE__ */ React83.createElement(Button, null, "Cancel"), /* @__PURE__ */ React83.createElement(Button, { themeColor: "primary" }, "Update"))
|
|
3668
3715
|
);
|
|
3669
3716
|
}
|
|
3670
3717
|
};
|
|
3671
3718
|
|
|
3672
3719
|
// src/appbar/appbar.tsx
|
|
3673
|
-
var
|
|
3674
|
-
var Appbar = class extends
|
|
3720
|
+
var React84 = __toESM(__require("react"));
|
|
3721
|
+
var Appbar = class extends React84.Component {
|
|
3675
3722
|
render() {
|
|
3676
3723
|
const _a = this.props, {
|
|
3677
3724
|
children,
|
|
@@ -3686,7 +3733,7 @@
|
|
|
3686
3733
|
"positionMode",
|
|
3687
3734
|
"position"
|
|
3688
3735
|
]);
|
|
3689
|
-
return /* @__PURE__ */
|
|
3736
|
+
return /* @__PURE__ */ React84.createElement(
|
|
3690
3737
|
"div",
|
|
3691
3738
|
__spreadValues({
|
|
3692
3739
|
className: classNames(
|
|
@@ -3705,17 +3752,17 @@
|
|
|
3705
3752
|
};
|
|
3706
3753
|
|
|
3707
3754
|
// src/appbar/appbar-section.tsx
|
|
3708
|
-
var
|
|
3709
|
-
var AppbarSection = class extends
|
|
3755
|
+
var React85 = __toESM(__require("react"));
|
|
3756
|
+
var AppbarSection = class extends React85.Component {
|
|
3710
3757
|
render() {
|
|
3711
3758
|
const { children } = this.props;
|
|
3712
|
-
return /* @__PURE__ */
|
|
3759
|
+
return /* @__PURE__ */ React85.createElement("div", { className: "k-appbar-section" }, children);
|
|
3713
3760
|
}
|
|
3714
3761
|
};
|
|
3715
3762
|
|
|
3716
3763
|
// src/pager/pager.tsx
|
|
3717
|
-
var
|
|
3718
|
-
var Pager = class extends
|
|
3764
|
+
var React86 = __toESM(__require("react"));
|
|
3765
|
+
var Pager = class extends React86.Component {
|
|
3719
3766
|
render() {
|
|
3720
3767
|
const _a = this.props, {
|
|
3721
3768
|
className,
|
|
@@ -3738,7 +3785,7 @@
|
|
|
3738
3785
|
"focus",
|
|
3739
3786
|
"disabled"
|
|
3740
3787
|
]);
|
|
3741
|
-
return /* @__PURE__ */
|
|
3788
|
+
return /* @__PURE__ */ React86.createElement(
|
|
3742
3789
|
"div",
|
|
3743
3790
|
__spreadProps(__spreadValues({}, htmlAttributes), {
|
|
3744
3791
|
dir: this.props.dir,
|
|
@@ -3754,14 +3801,14 @@
|
|
|
3754
3801
|
}
|
|
3755
3802
|
)
|
|
3756
3803
|
}),
|
|
3757
|
-
/* @__PURE__ */
|
|
3804
|
+
/* @__PURE__ */ React86.createElement(
|
|
3758
3805
|
"div",
|
|
3759
3806
|
{
|
|
3760
3807
|
className: classNames(
|
|
3761
3808
|
"k-pager-numbers-wrap"
|
|
3762
3809
|
)
|
|
3763
3810
|
},
|
|
3764
|
-
/* @__PURE__ */
|
|
3811
|
+
/* @__PURE__ */ React86.createElement(
|
|
3765
3812
|
Button,
|
|
3766
3813
|
{
|
|
3767
3814
|
className: classNames(
|
|
@@ -3775,7 +3822,7 @@
|
|
|
3775
3822
|
icon: "caret-alt-to-left"
|
|
3776
3823
|
}
|
|
3777
3824
|
),
|
|
3778
|
-
/* @__PURE__ */
|
|
3825
|
+
/* @__PURE__ */ React86.createElement(
|
|
3779
3826
|
Button,
|
|
3780
3827
|
{
|
|
3781
3828
|
className: classNames(
|
|
@@ -3788,7 +3835,7 @@
|
|
|
3788
3835
|
icon: "caret-alt-left"
|
|
3789
3836
|
}
|
|
3790
3837
|
),
|
|
3791
|
-
/* @__PURE__ */
|
|
3838
|
+
/* @__PURE__ */ React86.createElement(
|
|
3792
3839
|
"select",
|
|
3793
3840
|
{
|
|
3794
3841
|
className: classNames(
|
|
@@ -3801,16 +3848,16 @@
|
|
|
3801
3848
|
}
|
|
3802
3849
|
)
|
|
3803
3850
|
},
|
|
3804
|
-
/* @__PURE__ */
|
|
3851
|
+
/* @__PURE__ */ React86.createElement("option", null, "1")
|
|
3805
3852
|
),
|
|
3806
|
-
type === "numeric" && /* @__PURE__ */
|
|
3853
|
+
type === "numeric" && /* @__PURE__ */ React86.createElement(
|
|
3807
3854
|
"div",
|
|
3808
3855
|
{
|
|
3809
3856
|
className: classNames(
|
|
3810
3857
|
"k-pager-numbers"
|
|
3811
3858
|
)
|
|
3812
3859
|
},
|
|
3813
|
-
/* @__PURE__ */
|
|
3860
|
+
/* @__PURE__ */ React86.createElement(
|
|
3814
3861
|
Button,
|
|
3815
3862
|
{
|
|
3816
3863
|
fillMode: "flat",
|
|
@@ -3820,7 +3867,7 @@
|
|
|
3820
3867
|
},
|
|
3821
3868
|
"1"
|
|
3822
3869
|
),
|
|
3823
|
-
/* @__PURE__ */
|
|
3870
|
+
/* @__PURE__ */ React86.createElement(
|
|
3824
3871
|
Button,
|
|
3825
3872
|
{
|
|
3826
3873
|
hover: true,
|
|
@@ -3831,7 +3878,7 @@
|
|
|
3831
3878
|
},
|
|
3832
3879
|
"2"
|
|
3833
3880
|
),
|
|
3834
|
-
/* @__PURE__ */
|
|
3881
|
+
/* @__PURE__ */ React86.createElement(
|
|
3835
3882
|
Button,
|
|
3836
3883
|
{
|
|
3837
3884
|
focus: true,
|
|
@@ -3842,7 +3889,7 @@
|
|
|
3842
3889
|
},
|
|
3843
3890
|
"3"
|
|
3844
3891
|
),
|
|
3845
|
-
/* @__PURE__ */
|
|
3892
|
+
/* @__PURE__ */ React86.createElement(
|
|
3846
3893
|
Button,
|
|
3847
3894
|
{
|
|
3848
3895
|
selected: true,
|
|
@@ -3853,7 +3900,7 @@
|
|
|
3853
3900
|
},
|
|
3854
3901
|
"4"
|
|
3855
3902
|
),
|
|
3856
|
-
/* @__PURE__ */
|
|
3903
|
+
/* @__PURE__ */ React86.createElement(
|
|
3857
3904
|
Button,
|
|
3858
3905
|
{
|
|
3859
3906
|
hover: true,
|
|
@@ -3865,7 +3912,7 @@
|
|
|
3865
3912
|
},
|
|
3866
3913
|
"5"
|
|
3867
3914
|
),
|
|
3868
|
-
/* @__PURE__ */
|
|
3915
|
+
/* @__PURE__ */ React86.createElement(
|
|
3869
3916
|
Button,
|
|
3870
3917
|
{
|
|
3871
3918
|
selected: true,
|
|
@@ -3878,7 +3925,7 @@
|
|
|
3878
3925
|
"6"
|
|
3879
3926
|
)
|
|
3880
3927
|
),
|
|
3881
|
-
type === "input" && /* @__PURE__ */
|
|
3928
|
+
type === "input" && /* @__PURE__ */ React86.createElement(
|
|
3882
3929
|
"span",
|
|
3883
3930
|
{
|
|
3884
3931
|
className: classNames(
|
|
@@ -3886,10 +3933,10 @@
|
|
|
3886
3933
|
)
|
|
3887
3934
|
},
|
|
3888
3935
|
"Page",
|
|
3889
|
-
/* @__PURE__ */
|
|
3936
|
+
/* @__PURE__ */ React86.createElement(Textbox, { showClearButton: false, size: this.props.size, value: "999" }),
|
|
3890
3937
|
"of 8"
|
|
3891
3938
|
),
|
|
3892
|
-
/* @__PURE__ */
|
|
3939
|
+
/* @__PURE__ */ React86.createElement(
|
|
3893
3940
|
Button,
|
|
3894
3941
|
{
|
|
3895
3942
|
className: classNames(
|
|
@@ -3902,7 +3949,7 @@
|
|
|
3902
3949
|
icon: "caret-alt-right"
|
|
3903
3950
|
}
|
|
3904
3951
|
),
|
|
3905
|
-
/* @__PURE__ */
|
|
3952
|
+
/* @__PURE__ */ React86.createElement(
|
|
3906
3953
|
Button,
|
|
3907
3954
|
{
|
|
3908
3955
|
className: classNames(
|
|
@@ -3916,17 +3963,17 @@
|
|
|
3916
3963
|
}
|
|
3917
3964
|
)
|
|
3918
3965
|
),
|
|
3919
|
-
pageSizes && /* @__PURE__ */
|
|
3966
|
+
pageSizes && /* @__PURE__ */ React86.createElement(
|
|
3920
3967
|
"span",
|
|
3921
3968
|
{
|
|
3922
3969
|
className: classNames(
|
|
3923
3970
|
"k-pager-sizes"
|
|
3924
3971
|
)
|
|
3925
3972
|
},
|
|
3926
|
-
/* @__PURE__ */
|
|
3973
|
+
/* @__PURE__ */ React86.createElement(DropdownList, { value: "20", size: this.props.size }),
|
|
3927
3974
|
"items per page"
|
|
3928
3975
|
),
|
|
3929
|
-
refresh && /* @__PURE__ */
|
|
3976
|
+
refresh && /* @__PURE__ */ React86.createElement(
|
|
3930
3977
|
Button,
|
|
3931
3978
|
{
|
|
3932
3979
|
className: classNames(
|
|
@@ -3938,7 +3985,7 @@
|
|
|
3938
3985
|
icon: "arrow-rotate-cw"
|
|
3939
3986
|
}
|
|
3940
3987
|
),
|
|
3941
|
-
info && /* @__PURE__ */
|
|
3988
|
+
info && /* @__PURE__ */ React86.createElement(
|
|
3942
3989
|
"span",
|
|
3943
3990
|
{
|
|
3944
3991
|
className: classNames(
|
|
@@ -3960,29 +4007,29 @@
|
|
|
3960
4007
|
};
|
|
3961
4008
|
|
|
3962
4009
|
// src/treeview/treeview.tsx
|
|
3963
|
-
var
|
|
4010
|
+
var React88 = __toESM(__require("react"));
|
|
3964
4011
|
|
|
3965
4012
|
// src/treeview/treeview-group.tsx
|
|
3966
|
-
var
|
|
3967
|
-
var TreeviewGroup = class extends
|
|
4013
|
+
var React87 = __toESM(__require("react"));
|
|
4014
|
+
var TreeviewGroup = class extends React87.Component {
|
|
3968
4015
|
render() {
|
|
3969
4016
|
const {
|
|
3970
4017
|
className,
|
|
3971
4018
|
children
|
|
3972
4019
|
} = this.props;
|
|
3973
|
-
return /* @__PURE__ */
|
|
4020
|
+
return /* @__PURE__ */ React87.createElement("ul", { className: classNames(className, "k-treeview-group") }, children);
|
|
3974
4021
|
}
|
|
3975
4022
|
};
|
|
3976
4023
|
|
|
3977
4024
|
// src/treeview/treeview.tsx
|
|
3978
|
-
var Treeview = class extends
|
|
4025
|
+
var Treeview = class extends React88.Component {
|
|
3979
4026
|
render() {
|
|
3980
4027
|
const {
|
|
3981
4028
|
className,
|
|
3982
4029
|
size,
|
|
3983
4030
|
children
|
|
3984
4031
|
} = this.props;
|
|
3985
|
-
return /* @__PURE__ */
|
|
4032
|
+
return /* @__PURE__ */ React88.createElement(
|
|
3986
4033
|
"div",
|
|
3987
4034
|
{
|
|
3988
4035
|
className: classNames(
|
|
@@ -3993,7 +4040,7 @@
|
|
|
3993
4040
|
}
|
|
3994
4041
|
)
|
|
3995
4042
|
},
|
|
3996
|
-
/* @__PURE__ */
|
|
4043
|
+
/* @__PURE__ */ React88.createElement(TreeviewGroup, { className: "k-treeview-lines" }, children)
|
|
3997
4044
|
);
|
|
3998
4045
|
}
|
|
3999
4046
|
};
|
|
@@ -4002,11 +4049,11 @@
|
|
|
4002
4049
|
};
|
|
4003
4050
|
|
|
4004
4051
|
// src/treeview/treeview-item.tsx
|
|
4005
|
-
var
|
|
4052
|
+
var React90 = __toESM(__require("react"));
|
|
4006
4053
|
|
|
4007
4054
|
// src/treeview/treeview-leaf.tsx
|
|
4008
|
-
var
|
|
4009
|
-
var TreeViewLeaf = class extends
|
|
4055
|
+
var React89 = __toESM(__require("react"));
|
|
4056
|
+
var TreeViewLeaf = class extends React89.Component {
|
|
4010
4057
|
render() {
|
|
4011
4058
|
const {
|
|
4012
4059
|
className,
|
|
@@ -4017,7 +4064,7 @@
|
|
|
4017
4064
|
focus,
|
|
4018
4065
|
selected
|
|
4019
4066
|
} = this.props;
|
|
4020
|
-
return /* @__PURE__ */
|
|
4067
|
+
return /* @__PURE__ */ React89.createElement(
|
|
4021
4068
|
"span",
|
|
4022
4069
|
{
|
|
4023
4070
|
className: classNames(
|
|
@@ -4030,14 +4077,14 @@
|
|
|
4030
4077
|
}
|
|
4031
4078
|
)
|
|
4032
4079
|
},
|
|
4033
|
-
showIcon && /* @__PURE__ */
|
|
4034
|
-
/* @__PURE__ */
|
|
4080
|
+
showIcon && /* @__PURE__ */ React89.createElement(Icon, { name: icon }),
|
|
4081
|
+
/* @__PURE__ */ React89.createElement("span", { className: "k-treeview-leaf-text" }, text)
|
|
4035
4082
|
);
|
|
4036
4083
|
}
|
|
4037
4084
|
};
|
|
4038
4085
|
|
|
4039
4086
|
// src/treeview/treeview-item.tsx
|
|
4040
|
-
var TreeviewItem = class extends
|
|
4087
|
+
var TreeviewItem = class extends React90.Component {
|
|
4041
4088
|
render() {
|
|
4042
4089
|
const {
|
|
4043
4090
|
className,
|
|
@@ -4056,7 +4103,7 @@
|
|
|
4056
4103
|
disabled
|
|
4057
4104
|
} = this.props;
|
|
4058
4105
|
const _hasChildren = hasChildren || children;
|
|
4059
|
-
return /* @__PURE__ */
|
|
4106
|
+
return /* @__PURE__ */ React90.createElement(
|
|
4060
4107
|
"li",
|
|
4061
4108
|
{
|
|
4062
4109
|
className: classNames(
|
|
@@ -4064,7 +4111,7 @@
|
|
|
4064
4111
|
"k-treeview-item"
|
|
4065
4112
|
)
|
|
4066
4113
|
},
|
|
4067
|
-
/* @__PURE__ */
|
|
4114
|
+
/* @__PURE__ */ React90.createElement("span", { className: "k-treeview-mid" }, _hasChildren && /* @__PURE__ */ React90.createElement(
|
|
4068
4115
|
"span",
|
|
4069
4116
|
{
|
|
4070
4117
|
className: classNames(
|
|
@@ -4074,8 +4121,8 @@
|
|
|
4074
4121
|
}
|
|
4075
4122
|
)
|
|
4076
4123
|
},
|
|
4077
|
-
/* @__PURE__ */
|
|
4078
|
-
), showCheckbox && /* @__PURE__ */
|
|
4124
|
+
/* @__PURE__ */ React90.createElement(Icon, { name: expanded ? "caret-alt-down" : "caret-alt-right" })
|
|
4125
|
+
), showCheckbox && /* @__PURE__ */ React90.createElement(Checkbox, { checked, disabled }), /* @__PURE__ */ React90.createElement(
|
|
4079
4126
|
TreeViewLeaf,
|
|
4080
4127
|
{
|
|
4081
4128
|
className: classNames(
|
|
@@ -4092,14 +4139,14 @@
|
|
|
4092
4139
|
selected
|
|
4093
4140
|
}
|
|
4094
4141
|
)),
|
|
4095
|
-
expanded && _hasChildren && /* @__PURE__ */
|
|
4142
|
+
expanded && _hasChildren && /* @__PURE__ */ React90.createElement(React90.Fragment, null, children)
|
|
4096
4143
|
);
|
|
4097
4144
|
}
|
|
4098
4145
|
};
|
|
4099
4146
|
|
|
4100
4147
|
// src/card/card.tsx
|
|
4101
|
-
var
|
|
4102
|
-
var Card = class extends
|
|
4148
|
+
var React91 = __toESM(__require("react"));
|
|
4149
|
+
var Card = class extends React91.Component {
|
|
4103
4150
|
render() {
|
|
4104
4151
|
const _a = this.props, {
|
|
4105
4152
|
children,
|
|
@@ -4122,7 +4169,7 @@
|
|
|
4122
4169
|
"selected",
|
|
4123
4170
|
"disabled"
|
|
4124
4171
|
]);
|
|
4125
|
-
return /* @__PURE__ */
|
|
4172
|
+
return /* @__PURE__ */ React91.createElement(
|
|
4126
4173
|
"div",
|
|
4127
4174
|
__spreadProps(__spreadValues({
|
|
4128
4175
|
style: this.props.style
|
|
@@ -4141,15 +4188,15 @@
|
|
|
4141
4188
|
className
|
|
4142
4189
|
)
|
|
4143
4190
|
}),
|
|
4144
|
-
callout && callout !== "true" && /* @__PURE__ */
|
|
4145
|
-
/* @__PURE__ */
|
|
4191
|
+
callout && callout !== "true" && /* @__PURE__ */ React91.createElement(CardCallout, { callout }),
|
|
4192
|
+
/* @__PURE__ */ React91.createElement(React91.Fragment, null, children)
|
|
4146
4193
|
);
|
|
4147
4194
|
}
|
|
4148
4195
|
};
|
|
4149
4196
|
|
|
4150
4197
|
// src/card/card-callout.tsx
|
|
4151
|
-
var
|
|
4152
|
-
var CardCallout = class extends
|
|
4198
|
+
var React92 = __toESM(__require("react"));
|
|
4199
|
+
var CardCallout = class extends React92.Component {
|
|
4153
4200
|
render() {
|
|
4154
4201
|
const _a = this.props, {
|
|
4155
4202
|
className,
|
|
@@ -4158,7 +4205,7 @@
|
|
|
4158
4205
|
"className",
|
|
4159
4206
|
"callout"
|
|
4160
4207
|
]);
|
|
4161
|
-
return /* @__PURE__ */
|
|
4208
|
+
return /* @__PURE__ */ React92.createElement(
|
|
4162
4209
|
"span",
|
|
4163
4210
|
__spreadProps(__spreadValues({}, htmlAttributes), {
|
|
4164
4211
|
className: classNames(
|
|
@@ -4174,8 +4221,8 @@
|
|
|
4174
4221
|
};
|
|
4175
4222
|
|
|
4176
4223
|
// src/card/card-title.tsx
|
|
4177
|
-
var
|
|
4178
|
-
var CardTitle = class extends
|
|
4224
|
+
var React93 = __toESM(__require("react"));
|
|
4225
|
+
var CardTitle = class extends React93.Component {
|
|
4179
4226
|
render() {
|
|
4180
4227
|
const _a = this.props, {
|
|
4181
4228
|
children,
|
|
@@ -4188,7 +4235,7 @@
|
|
|
4188
4235
|
"hover",
|
|
4189
4236
|
"focus"
|
|
4190
4237
|
]);
|
|
4191
|
-
return /* @__PURE__ */
|
|
4238
|
+
return /* @__PURE__ */ React93.createElement(
|
|
4192
4239
|
"div",
|
|
4193
4240
|
__spreadProps(__spreadValues({}, htmlAttributes), {
|
|
4194
4241
|
className: classNames(
|
|
@@ -4206,8 +4253,8 @@
|
|
|
4206
4253
|
};
|
|
4207
4254
|
|
|
4208
4255
|
// src/card/card-subtitle.tsx
|
|
4209
|
-
var
|
|
4210
|
-
var CardSubtitle = class extends
|
|
4256
|
+
var React94 = __toESM(__require("react"));
|
|
4257
|
+
var CardSubtitle = class extends React94.Component {
|
|
4211
4258
|
render() {
|
|
4212
4259
|
const _a = this.props, {
|
|
4213
4260
|
children,
|
|
@@ -4216,7 +4263,7 @@
|
|
|
4216
4263
|
"children",
|
|
4217
4264
|
"className"
|
|
4218
4265
|
]);
|
|
4219
|
-
return /* @__PURE__ */
|
|
4266
|
+
return /* @__PURE__ */ React94.createElement(
|
|
4220
4267
|
"div",
|
|
4221
4268
|
__spreadProps(__spreadValues({}, htmlAttributes), {
|
|
4222
4269
|
className: classNames(
|
|
@@ -4230,8 +4277,8 @@
|
|
|
4230
4277
|
};
|
|
4231
4278
|
|
|
4232
4279
|
// src/card/card-img.tsx
|
|
4233
|
-
var
|
|
4234
|
-
var CardImage = class extends
|
|
4280
|
+
var React95 = __toESM(__require("react"));
|
|
4281
|
+
var CardImage = class extends React95.Component {
|
|
4235
4282
|
render() {
|
|
4236
4283
|
const _a = this.props, {
|
|
4237
4284
|
children,
|
|
@@ -4242,7 +4289,7 @@
|
|
|
4242
4289
|
"className",
|
|
4243
4290
|
"src"
|
|
4244
4291
|
]);
|
|
4245
|
-
return /* @__PURE__ */
|
|
4292
|
+
return /* @__PURE__ */ React95.createElement(React95.Fragment, null, src ? /* @__PURE__ */ React95.createElement(
|
|
4246
4293
|
"img",
|
|
4247
4294
|
__spreadProps(__spreadValues({
|
|
4248
4295
|
style: this.props.style
|
|
@@ -4253,7 +4300,7 @@
|
|
|
4253
4300
|
),
|
|
4254
4301
|
src
|
|
4255
4302
|
})
|
|
4256
|
-
) : /* @__PURE__ */
|
|
4303
|
+
) : /* @__PURE__ */ React95.createElement(
|
|
4257
4304
|
"span",
|
|
4258
4305
|
__spreadProps(__spreadValues({
|
|
4259
4306
|
style: this.props.style
|
|
@@ -4263,14 +4310,14 @@
|
|
|
4263
4310
|
className
|
|
4264
4311
|
)
|
|
4265
4312
|
}),
|
|
4266
|
-
/* @__PURE__ */
|
|
4313
|
+
/* @__PURE__ */ React95.createElement(React95.Fragment, null, children)
|
|
4267
4314
|
));
|
|
4268
4315
|
}
|
|
4269
4316
|
};
|
|
4270
4317
|
|
|
4271
4318
|
// src/card/card-header.tsx
|
|
4272
|
-
var
|
|
4273
|
-
var CardHeader = class extends
|
|
4319
|
+
var React96 = __toESM(__require("react"));
|
|
4320
|
+
var CardHeader = class extends React96.Component {
|
|
4274
4321
|
render() {
|
|
4275
4322
|
const _a = this.props, {
|
|
4276
4323
|
children,
|
|
@@ -4285,7 +4332,7 @@
|
|
|
4285
4332
|
"subtitle",
|
|
4286
4333
|
"details"
|
|
4287
4334
|
]);
|
|
4288
|
-
return /* @__PURE__ */
|
|
4335
|
+
return /* @__PURE__ */ React96.createElement(
|
|
4289
4336
|
"div",
|
|
4290
4337
|
__spreadProps(__spreadValues({}, htmlAttributes), {
|
|
4291
4338
|
className: classNames(
|
|
@@ -4293,10 +4340,10 @@
|
|
|
4293
4340
|
className
|
|
4294
4341
|
)
|
|
4295
4342
|
}),
|
|
4296
|
-
title && /* @__PURE__ */
|
|
4297
|
-
subtitle && /* @__PURE__ */
|
|
4298
|
-
/* @__PURE__ */
|
|
4299
|
-
details && /* @__PURE__ */
|
|
4343
|
+
title && /* @__PURE__ */ React96.createElement(CardTitle, null, title),
|
|
4344
|
+
subtitle && /* @__PURE__ */ React96.createElement(CardSubtitle, null, subtitle),
|
|
4345
|
+
/* @__PURE__ */ React96.createElement(React96.Fragment, null, children),
|
|
4346
|
+
details && /* @__PURE__ */ React96.createElement("span", { className: "k-card-header-actions" }, /* @__PURE__ */ React96.createElement(
|
|
4300
4347
|
Button,
|
|
4301
4348
|
{
|
|
4302
4349
|
className: "k-card-details",
|
|
@@ -4312,8 +4359,8 @@
|
|
|
4312
4359
|
};
|
|
4313
4360
|
|
|
4314
4361
|
// src/card/card-footer.tsx
|
|
4315
|
-
var
|
|
4316
|
-
var CardFooter = class extends
|
|
4362
|
+
var React97 = __toESM(__require("react"));
|
|
4363
|
+
var CardFooter = class extends React97.Component {
|
|
4317
4364
|
render() {
|
|
4318
4365
|
const _a = this.props, {
|
|
4319
4366
|
children,
|
|
@@ -4322,7 +4369,7 @@
|
|
|
4322
4369
|
"children",
|
|
4323
4370
|
"className"
|
|
4324
4371
|
]);
|
|
4325
|
-
return /* @__PURE__ */
|
|
4372
|
+
return /* @__PURE__ */ React97.createElement(
|
|
4326
4373
|
"div",
|
|
4327
4374
|
__spreadProps(__spreadValues({}, htmlAttributes), {
|
|
4328
4375
|
className: classNames(
|
|
@@ -4336,8 +4383,8 @@
|
|
|
4336
4383
|
};
|
|
4337
4384
|
|
|
4338
4385
|
// src/card/card-body.tsx
|
|
4339
|
-
var
|
|
4340
|
-
var CardBody = class extends
|
|
4386
|
+
var React98 = __toESM(__require("react"));
|
|
4387
|
+
var CardBody = class extends React98.Component {
|
|
4341
4388
|
render() {
|
|
4342
4389
|
const _a = this.props, {
|
|
4343
4390
|
children,
|
|
@@ -4352,7 +4399,7 @@
|
|
|
4352
4399
|
"subtitle",
|
|
4353
4400
|
"details"
|
|
4354
4401
|
]);
|
|
4355
|
-
return /* @__PURE__ */
|
|
4402
|
+
return /* @__PURE__ */ React98.createElement(
|
|
4356
4403
|
"div",
|
|
4357
4404
|
__spreadProps(__spreadValues({
|
|
4358
4405
|
style: this.props.style
|
|
@@ -4362,10 +4409,10 @@
|
|
|
4362
4409
|
className
|
|
4363
4410
|
)
|
|
4364
4411
|
}),
|
|
4365
|
-
title && /* @__PURE__ */
|
|
4366
|
-
subtitle && /* @__PURE__ */
|
|
4367
|
-
/* @__PURE__ */
|
|
4368
|
-
details && /* @__PURE__ */
|
|
4412
|
+
title && /* @__PURE__ */ React98.createElement(CardTitle, null, title),
|
|
4413
|
+
subtitle && /* @__PURE__ */ React98.createElement(CardSubtitle, null, subtitle),
|
|
4414
|
+
/* @__PURE__ */ React98.createElement(React98.Fragment, null, children),
|
|
4415
|
+
details && /* @__PURE__ */ React98.createElement("span", { className: "k-card-body-actions" }, /* @__PURE__ */ React98.createElement(
|
|
4369
4416
|
Button,
|
|
4370
4417
|
{
|
|
4371
4418
|
className: "k-card-details",
|
|
@@ -4381,8 +4428,8 @@
|
|
|
4381
4428
|
};
|
|
4382
4429
|
|
|
4383
4430
|
// src/card/card-deck.tsx
|
|
4384
|
-
var
|
|
4385
|
-
var CardDeck = class extends
|
|
4431
|
+
var React99 = __toESM(__require("react"));
|
|
4432
|
+
var CardDeck = class extends React99.Component {
|
|
4386
4433
|
render() {
|
|
4387
4434
|
const _a = this.props, {
|
|
4388
4435
|
children,
|
|
@@ -4391,7 +4438,7 @@
|
|
|
4391
4438
|
"children",
|
|
4392
4439
|
"className"
|
|
4393
4440
|
]);
|
|
4394
|
-
return /* @__PURE__ */
|
|
4441
|
+
return /* @__PURE__ */ React99.createElement(
|
|
4395
4442
|
"div",
|
|
4396
4443
|
__spreadProps(__spreadValues({}, htmlAttributes), {
|
|
4397
4444
|
className: classNames(
|
|
@@ -4405,15 +4452,15 @@
|
|
|
4405
4452
|
};
|
|
4406
4453
|
|
|
4407
4454
|
// src/editor/editor.tsx
|
|
4408
|
-
var
|
|
4409
|
-
var Editor = class extends
|
|
4455
|
+
var React100 = __toESM(__require("react"));
|
|
4456
|
+
var Editor = class extends React100.Component {
|
|
4410
4457
|
render() {
|
|
4411
4458
|
const {
|
|
4412
4459
|
children,
|
|
4413
4460
|
className,
|
|
4414
4461
|
readonly
|
|
4415
4462
|
} = this.props;
|
|
4416
|
-
return /* @__PURE__ */
|
|
4463
|
+
return /* @__PURE__ */ React100.createElement(
|
|
4417
4464
|
"div",
|
|
4418
4465
|
{
|
|
4419
4466
|
style: this.props.style,
|
|
@@ -4429,5 +4476,485 @@
|
|
|
4429
4476
|
);
|
|
4430
4477
|
}
|
|
4431
4478
|
};
|
|
4479
|
+
|
|
4480
|
+
// src/table/data-table.tsx
|
|
4481
|
+
var React101 = __toESM(__require("react"));
|
|
4482
|
+
var DataTable = class extends React101.Component {
|
|
4483
|
+
render() {
|
|
4484
|
+
const {
|
|
4485
|
+
children,
|
|
4486
|
+
className,
|
|
4487
|
+
size
|
|
4488
|
+
} = this.props;
|
|
4489
|
+
return /* @__PURE__ */ React101.createElement(
|
|
4490
|
+
"div",
|
|
4491
|
+
{
|
|
4492
|
+
className: classNames(
|
|
4493
|
+
className,
|
|
4494
|
+
"k-data-table",
|
|
4495
|
+
{
|
|
4496
|
+
[`k-table-${kendoThemeMaps.sizeMap[size] || size}`]: size
|
|
4497
|
+
}
|
|
4498
|
+
)
|
|
4499
|
+
},
|
|
4500
|
+
children
|
|
4501
|
+
);
|
|
4502
|
+
}
|
|
4503
|
+
};
|
|
4504
|
+
DataTable.defaultProps = {
|
|
4505
|
+
size: "medium"
|
|
4506
|
+
};
|
|
4507
|
+
|
|
4508
|
+
// src/table/table-header.tsx
|
|
4509
|
+
var React103 = __toESM(__require("react"));
|
|
4510
|
+
|
|
4511
|
+
// src/table/table.tsx
|
|
4512
|
+
var React102 = __toESM(__require("react"));
|
|
4513
|
+
var Table = class extends React102.Component {
|
|
4514
|
+
render() {
|
|
4515
|
+
const {
|
|
4516
|
+
children,
|
|
4517
|
+
className,
|
|
4518
|
+
size
|
|
4519
|
+
} = this.props;
|
|
4520
|
+
return /* @__PURE__ */ React102.createElement(
|
|
4521
|
+
"table",
|
|
4522
|
+
{
|
|
4523
|
+
className: classNames(
|
|
4524
|
+
className,
|
|
4525
|
+
"k-table",
|
|
4526
|
+
{
|
|
4527
|
+
[`k-table-${kendoThemeMaps.sizeMap[size]}`]: size
|
|
4528
|
+
}
|
|
4529
|
+
)
|
|
4530
|
+
},
|
|
4531
|
+
children
|
|
4532
|
+
);
|
|
4533
|
+
}
|
|
4534
|
+
};
|
|
4535
|
+
|
|
4536
|
+
// src/table/table-header.tsx
|
|
4537
|
+
var TableHeader = class extends React103.Component {
|
|
4538
|
+
render() {
|
|
4539
|
+
const {
|
|
4540
|
+
children,
|
|
4541
|
+
className
|
|
4542
|
+
} = this.props;
|
|
4543
|
+
return /* @__PURE__ */ React103.createElement(
|
|
4544
|
+
"div",
|
|
4545
|
+
{
|
|
4546
|
+
className: classNames(
|
|
4547
|
+
className,
|
|
4548
|
+
"k-table-header"
|
|
4549
|
+
)
|
|
4550
|
+
},
|
|
4551
|
+
/* @__PURE__ */ React103.createElement("div", { className: "k-table-header-wrap" }, /* @__PURE__ */ React103.createElement(Table, null, children))
|
|
4552
|
+
);
|
|
4553
|
+
}
|
|
4554
|
+
};
|
|
4555
|
+
|
|
4556
|
+
// src/table/table-body.tsx
|
|
4557
|
+
var React104 = __toESM(__require("react"));
|
|
4558
|
+
var TableBody = class extends React104.Component {
|
|
4559
|
+
render() {
|
|
4560
|
+
const {
|
|
4561
|
+
children,
|
|
4562
|
+
className
|
|
4563
|
+
} = this.props;
|
|
4564
|
+
return /* @__PURE__ */ React104.createElement(
|
|
4565
|
+
"div",
|
|
4566
|
+
{
|
|
4567
|
+
className: classNames(
|
|
4568
|
+
className,
|
|
4569
|
+
"k-table-body",
|
|
4570
|
+
"k-table-scroller"
|
|
4571
|
+
)
|
|
4572
|
+
},
|
|
4573
|
+
children
|
|
4574
|
+
);
|
|
4575
|
+
}
|
|
4576
|
+
};
|
|
4577
|
+
|
|
4578
|
+
// src/table/table-footer.tsx
|
|
4579
|
+
var React105 = __toESM(__require("react"));
|
|
4580
|
+
var TableFooter = class extends React105.Component {
|
|
4581
|
+
render() {
|
|
4582
|
+
const {
|
|
4583
|
+
children,
|
|
4584
|
+
className
|
|
4585
|
+
} = this.props;
|
|
4586
|
+
return /* @__PURE__ */ React105.createElement(
|
|
4587
|
+
"div",
|
|
4588
|
+
{
|
|
4589
|
+
className: classNames(
|
|
4590
|
+
className,
|
|
4591
|
+
"k-table-footer"
|
|
4592
|
+
)
|
|
4593
|
+
},
|
|
4594
|
+
children
|
|
4595
|
+
);
|
|
4596
|
+
}
|
|
4597
|
+
};
|
|
4598
|
+
|
|
4599
|
+
// src/table/table-list.tsx
|
|
4600
|
+
var React106 = __toESM(__require("react"));
|
|
4601
|
+
var TableList = class extends React106.Component {
|
|
4602
|
+
render() {
|
|
4603
|
+
const {
|
|
4604
|
+
children,
|
|
4605
|
+
className,
|
|
4606
|
+
size,
|
|
4607
|
+
virtualization
|
|
4608
|
+
} = this.props;
|
|
4609
|
+
return /* @__PURE__ */ React106.createElement(
|
|
4610
|
+
"ul",
|
|
4611
|
+
{
|
|
4612
|
+
className: classNames(
|
|
4613
|
+
className,
|
|
4614
|
+
"k-table",
|
|
4615
|
+
"k-table-list",
|
|
4616
|
+
{
|
|
4617
|
+
[`k-table-${kendoThemeMaps.sizeMap[size]}`]: size,
|
|
4618
|
+
"k-virtual-table": virtualization
|
|
4619
|
+
}
|
|
4620
|
+
)
|
|
4621
|
+
},
|
|
4622
|
+
children
|
|
4623
|
+
);
|
|
4624
|
+
}
|
|
4625
|
+
};
|
|
4626
|
+
|
|
4627
|
+
// src/table/table-thead.tsx
|
|
4628
|
+
var React107 = __toESM(__require("react"));
|
|
4629
|
+
var TableThead = class extends React107.Component {
|
|
4630
|
+
render() {
|
|
4631
|
+
const {
|
|
4632
|
+
children,
|
|
4633
|
+
className
|
|
4634
|
+
} = this.props;
|
|
4635
|
+
return /* @__PURE__ */ React107.createElement(
|
|
4636
|
+
"thead",
|
|
4637
|
+
{
|
|
4638
|
+
className: classNames(
|
|
4639
|
+
className,
|
|
4640
|
+
"k-table-thead"
|
|
4641
|
+
)
|
|
4642
|
+
},
|
|
4643
|
+
children
|
|
4644
|
+
);
|
|
4645
|
+
}
|
|
4646
|
+
};
|
|
4647
|
+
|
|
4648
|
+
// src/table/table-tbody.tsx
|
|
4649
|
+
var React108 = __toESM(__require("react"));
|
|
4650
|
+
var TableTbody = class extends React108.Component {
|
|
4651
|
+
render() {
|
|
4652
|
+
const {
|
|
4653
|
+
children,
|
|
4654
|
+
className
|
|
4655
|
+
} = this.props;
|
|
4656
|
+
return /* @__PURE__ */ React108.createElement(
|
|
4657
|
+
"tbody",
|
|
4658
|
+
{
|
|
4659
|
+
className: classNames(
|
|
4660
|
+
className,
|
|
4661
|
+
"k-table-tbody"
|
|
4662
|
+
)
|
|
4663
|
+
},
|
|
4664
|
+
children
|
|
4665
|
+
);
|
|
4666
|
+
}
|
|
4667
|
+
};
|
|
4668
|
+
|
|
4669
|
+
// src/table/table-tfoot.tsx
|
|
4670
|
+
var React109 = __toESM(__require("react"));
|
|
4671
|
+
var TableTfoot = class extends React109.Component {
|
|
4672
|
+
render() {
|
|
4673
|
+
const {
|
|
4674
|
+
children,
|
|
4675
|
+
className
|
|
4676
|
+
} = this.props;
|
|
4677
|
+
return /* @__PURE__ */ React109.createElement(
|
|
4678
|
+
"tfoot",
|
|
4679
|
+
{
|
|
4680
|
+
className: classNames(
|
|
4681
|
+
className,
|
|
4682
|
+
"k-table-tfoot"
|
|
4683
|
+
)
|
|
4684
|
+
},
|
|
4685
|
+
children
|
|
4686
|
+
);
|
|
4687
|
+
}
|
|
4688
|
+
};
|
|
4689
|
+
|
|
4690
|
+
// src/table/table-row.tsx
|
|
4691
|
+
var React110 = __toESM(__require("react"));
|
|
4692
|
+
var TableRow = class extends React110.Component {
|
|
4693
|
+
render() {
|
|
4694
|
+
const {
|
|
4695
|
+
children,
|
|
4696
|
+
className,
|
|
4697
|
+
alt,
|
|
4698
|
+
hover,
|
|
4699
|
+
focus,
|
|
4700
|
+
selected,
|
|
4701
|
+
disabled
|
|
4702
|
+
} = this.props;
|
|
4703
|
+
return /* @__PURE__ */ React110.createElement(
|
|
4704
|
+
"tr",
|
|
4705
|
+
{
|
|
4706
|
+
className: classNames(
|
|
4707
|
+
className,
|
|
4708
|
+
"k-table-row",
|
|
4709
|
+
{
|
|
4710
|
+
"k-table-alt-row": alt,
|
|
4711
|
+
"k-hover": hover,
|
|
4712
|
+
"k-focus": focus,
|
|
4713
|
+
"k-selected": selected,
|
|
4714
|
+
"k-disabled": disabled
|
|
4715
|
+
}
|
|
4716
|
+
)
|
|
4717
|
+
},
|
|
4718
|
+
children
|
|
4719
|
+
);
|
|
4720
|
+
}
|
|
4721
|
+
};
|
|
4722
|
+
|
|
4723
|
+
// src/table/table-list-row.tsx
|
|
4724
|
+
var React111 = __toESM(__require("react"));
|
|
4725
|
+
var TableListRow = class extends React111.Component {
|
|
4726
|
+
render() {
|
|
4727
|
+
const {
|
|
4728
|
+
children,
|
|
4729
|
+
className,
|
|
4730
|
+
alt,
|
|
4731
|
+
hover,
|
|
4732
|
+
focus,
|
|
4733
|
+
selected,
|
|
4734
|
+
disabled
|
|
4735
|
+
} = this.props;
|
|
4736
|
+
return /* @__PURE__ */ React111.createElement(
|
|
4737
|
+
"li",
|
|
4738
|
+
{
|
|
4739
|
+
className: classNames(
|
|
4740
|
+
className,
|
|
4741
|
+
"k-table-row",
|
|
4742
|
+
{
|
|
4743
|
+
"k-table-alt-row": alt,
|
|
4744
|
+
"k-hover": hover,
|
|
4745
|
+
"k-focus": focus,
|
|
4746
|
+
"k-selected": selected,
|
|
4747
|
+
"k-disabled": disabled
|
|
4748
|
+
}
|
|
4749
|
+
)
|
|
4750
|
+
},
|
|
4751
|
+
children
|
|
4752
|
+
);
|
|
4753
|
+
}
|
|
4754
|
+
};
|
|
4755
|
+
|
|
4756
|
+
// src/table/table-th.tsx
|
|
4757
|
+
var React112 = __toESM(__require("react"));
|
|
4758
|
+
var TableTh = class extends React112.Component {
|
|
4759
|
+
render() {
|
|
4760
|
+
const _a = this.props, {
|
|
4761
|
+
children,
|
|
4762
|
+
className,
|
|
4763
|
+
text,
|
|
4764
|
+
colspan
|
|
4765
|
+
} = _a, htmlAttributes = __objRest(_a, [
|
|
4766
|
+
"children",
|
|
4767
|
+
"className",
|
|
4768
|
+
"text",
|
|
4769
|
+
"colspan"
|
|
4770
|
+
]);
|
|
4771
|
+
const textOrChildren = text ? text : children;
|
|
4772
|
+
return /* @__PURE__ */ React112.createElement(
|
|
4773
|
+
"th",
|
|
4774
|
+
__spreadProps(__spreadValues({
|
|
4775
|
+
colSpan: colspan
|
|
4776
|
+
}, htmlAttributes), {
|
|
4777
|
+
className: classNames(
|
|
4778
|
+
className,
|
|
4779
|
+
"k-table-th"
|
|
4780
|
+
)
|
|
4781
|
+
}),
|
|
4782
|
+
textOrChildren
|
|
4783
|
+
);
|
|
4784
|
+
}
|
|
4785
|
+
};
|
|
4786
|
+
|
|
4787
|
+
// src/table/table-list-th.tsx
|
|
4788
|
+
var React113 = __toESM(__require("react"));
|
|
4789
|
+
var TableListTh = class extends React113.Component {
|
|
4790
|
+
render() {
|
|
4791
|
+
const _a = this.props, {
|
|
4792
|
+
children,
|
|
4793
|
+
className,
|
|
4794
|
+
text
|
|
4795
|
+
} = _a, htmlAttributes = __objRest(_a, [
|
|
4796
|
+
"children",
|
|
4797
|
+
"className",
|
|
4798
|
+
"text"
|
|
4799
|
+
]);
|
|
4800
|
+
const textOrChildren = text ? text : children;
|
|
4801
|
+
return /* @__PURE__ */ React113.createElement(
|
|
4802
|
+
"span",
|
|
4803
|
+
__spreadProps(__spreadValues({
|
|
4804
|
+
style: this.props.style
|
|
4805
|
+
}, htmlAttributes), {
|
|
4806
|
+
className: classNames(
|
|
4807
|
+
className,
|
|
4808
|
+
"k-table-th"
|
|
4809
|
+
)
|
|
4810
|
+
}),
|
|
4811
|
+
textOrChildren
|
|
4812
|
+
);
|
|
4813
|
+
}
|
|
4814
|
+
};
|
|
4815
|
+
|
|
4816
|
+
// src/table/table-td.tsx
|
|
4817
|
+
var React114 = __toESM(__require("react"));
|
|
4818
|
+
var TableTd = class extends React114.Component {
|
|
4819
|
+
render() {
|
|
4820
|
+
const _a = this.props, {
|
|
4821
|
+
children,
|
|
4822
|
+
className,
|
|
4823
|
+
text,
|
|
4824
|
+
colspan
|
|
4825
|
+
} = _a, htmlAttributes = __objRest(_a, [
|
|
4826
|
+
"children",
|
|
4827
|
+
"className",
|
|
4828
|
+
"text",
|
|
4829
|
+
"colspan"
|
|
4830
|
+
]);
|
|
4831
|
+
const textOrChildren = text ? text : children;
|
|
4832
|
+
return /* @__PURE__ */ React114.createElement(
|
|
4833
|
+
"td",
|
|
4834
|
+
__spreadProps(__spreadValues({
|
|
4835
|
+
colSpan: colspan
|
|
4836
|
+
}, htmlAttributes), {
|
|
4837
|
+
className: classNames(
|
|
4838
|
+
className,
|
|
4839
|
+
"k-table-td"
|
|
4840
|
+
)
|
|
4841
|
+
}),
|
|
4842
|
+
textOrChildren
|
|
4843
|
+
);
|
|
4844
|
+
}
|
|
4845
|
+
};
|
|
4846
|
+
|
|
4847
|
+
// src/table/table-list-td.tsx
|
|
4848
|
+
var React115 = __toESM(__require("react"));
|
|
4849
|
+
var TableListTd = class extends React115.Component {
|
|
4850
|
+
render() {
|
|
4851
|
+
const _a = this.props, {
|
|
4852
|
+
children,
|
|
4853
|
+
className,
|
|
4854
|
+
text
|
|
4855
|
+
} = _a, htmlAttributes = __objRest(_a, [
|
|
4856
|
+
"children",
|
|
4857
|
+
"className",
|
|
4858
|
+
"text"
|
|
4859
|
+
]);
|
|
4860
|
+
const textOrChildren = text ? text : children;
|
|
4861
|
+
return /* @__PURE__ */ React115.createElement(
|
|
4862
|
+
"span",
|
|
4863
|
+
__spreadProps(__spreadValues({
|
|
4864
|
+
style: this.props.style
|
|
4865
|
+
}, htmlAttributes), {
|
|
4866
|
+
className: classNames(
|
|
4867
|
+
className,
|
|
4868
|
+
"k-table-td"
|
|
4869
|
+
)
|
|
4870
|
+
}),
|
|
4871
|
+
textOrChildren
|
|
4872
|
+
);
|
|
4873
|
+
}
|
|
4874
|
+
};
|
|
4875
|
+
|
|
4876
|
+
// src/table/table-group-header.tsx
|
|
4877
|
+
var React116 = __toESM(__require("react"));
|
|
4878
|
+
var TableGroupHeader = class extends React116.Component {
|
|
4879
|
+
render() {
|
|
4880
|
+
const {
|
|
4881
|
+
children,
|
|
4882
|
+
className
|
|
4883
|
+
} = this.props;
|
|
4884
|
+
return /* @__PURE__ */ React116.createElement(
|
|
4885
|
+
"tr",
|
|
4886
|
+
{
|
|
4887
|
+
className: classNames(
|
|
4888
|
+
className,
|
|
4889
|
+
"k-table-group-header"
|
|
4890
|
+
)
|
|
4891
|
+
},
|
|
4892
|
+
children
|
|
4893
|
+
);
|
|
4894
|
+
}
|
|
4895
|
+
};
|
|
4896
|
+
|
|
4897
|
+
// src/table/table-group-sticky-header.tsx
|
|
4898
|
+
var React117 = __toESM(__require("react"));
|
|
4899
|
+
var TableGroupStickyHeader = class extends React117.Component {
|
|
4900
|
+
render() {
|
|
4901
|
+
const {
|
|
4902
|
+
children,
|
|
4903
|
+
className
|
|
4904
|
+
} = this.props;
|
|
4905
|
+
return /* @__PURE__ */ React117.createElement(
|
|
4906
|
+
"div",
|
|
4907
|
+
{
|
|
4908
|
+
className: classNames(
|
|
4909
|
+
className,
|
|
4910
|
+
"k-table-group-sticky-header"
|
|
4911
|
+
)
|
|
4912
|
+
},
|
|
4913
|
+
children
|
|
4914
|
+
);
|
|
4915
|
+
}
|
|
4916
|
+
};
|
|
4917
|
+
|
|
4918
|
+
// src/table/table-group-row.tsx
|
|
4919
|
+
var React118 = __toESM(__require("react"));
|
|
4920
|
+
var TableGroupRow = class extends React118.Component {
|
|
4921
|
+
render() {
|
|
4922
|
+
const {
|
|
4923
|
+
children,
|
|
4924
|
+
className
|
|
4925
|
+
} = this.props;
|
|
4926
|
+
return /* @__PURE__ */ React118.createElement(
|
|
4927
|
+
"tr",
|
|
4928
|
+
{
|
|
4929
|
+
className: classNames(
|
|
4930
|
+
className,
|
|
4931
|
+
"k-table-group-row"
|
|
4932
|
+
)
|
|
4933
|
+
},
|
|
4934
|
+
children
|
|
4935
|
+
);
|
|
4936
|
+
}
|
|
4937
|
+
};
|
|
4938
|
+
|
|
4939
|
+
// src/table/table-list-group-row.tsx
|
|
4940
|
+
var React119 = __toESM(__require("react"));
|
|
4941
|
+
var TableListGroupRow = class extends React119.Component {
|
|
4942
|
+
render() {
|
|
4943
|
+
const {
|
|
4944
|
+
children,
|
|
4945
|
+
className
|
|
4946
|
+
} = this.props;
|
|
4947
|
+
return /* @__PURE__ */ React119.createElement(
|
|
4948
|
+
"li",
|
|
4949
|
+
{
|
|
4950
|
+
className: classNames(
|
|
4951
|
+
className,
|
|
4952
|
+
"k-table-group-row"
|
|
4953
|
+
)
|
|
4954
|
+
},
|
|
4955
|
+
children
|
|
4956
|
+
);
|
|
4957
|
+
}
|
|
4958
|
+
};
|
|
4432
4959
|
})();
|
|
4433
4960
|
//# sourceMappingURL=index.js.map
|