ka-table
Version:
The customizable, extendable, lightweight, and fully free React Table Component
52 lines (51 loc) • 2.4 kB
JavaScript
;
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
var React = __importStar(require("react"));
var ComponentUtils_1 = require("../../Utils/ComponentUtils");
var Loading = function (props) {
var enabled = props.enabled, text = props.text, childComponents = props.childComponents;
if (enabled) {
var _a = (0, ComponentUtils_1.getElementCustomization)({
className: 'ka-loading',
}, props, childComponents === null || childComponents === void 0 ? void 0 : childComponents.loading), elementAttributes = _a.elementAttributes, content = _a.content;
return (React.createElement("div", __assign({}, elementAttributes), content || (React.createElement(React.Fragment, null,
React.createElement("div", { className: 'ka-loading-icon' }),
text && (React.createElement("div", { className: 'ka-loading-text' }, text))))));
}
return (React.createElement(React.Fragment, null));
};
exports.default = Loading;