@gpa-gemstone/react-table
Version:
Table for GPA web applications
42 lines (41 loc) • 2.45 kB
JavaScript
;
// ******************************************************************************************************
// index.tsx - Gbtc
//
// Copyright © 2018, Grid Protection Alliance. All Rights Reserved.
//
// Licensed to the Grid Protection Alliance (GPA) under one or more contributor license agreements. See
// the NOTICE file distributed with this work for additional information regarding copyright ownership.
// The GPA licenses this file to you under the MIT License (MIT), the "License"; you may not use this
// file except in compliance with the License. You may obtain a copy of the License at:
//
// http://opensource.org/licenses/MIT
//
// Unless agreed to in writing, the subject software distributed under the License is distributed on an
// "AS-IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. Refer to the
// License for the specific language governing permissions and limitations.
//
// Code Modification History:
// ----------------------------------------------------------------------------------------------------
// 08/02/2018 - Billy Ernest
// Generated original version of source code.
// 02/12/2021 - C. lackner
// Moved table to seperate File.
//
// ******************************************************************************************************
Object.defineProperty(exports, "__esModule", { value: true });
exports.Paging = exports.ConfigurableColumn = exports.ConfigurableTable = exports.FilterableColumn = exports.Column = exports.Table = exports.ReactTableProps = void 0;
const Paging_1 = require("./Paging");
exports.Paging = Paging_1.default;
const ReactTableProps = require("./Table/Types");
exports.ReactTableProps = ReactTableProps;
const Table_1 = require("./Table/Table");
Object.defineProperty(exports, "Table", { enumerable: true, get: function () { return Table_1.Table; } });
const Column_1 = require("./Table/Column");
Object.defineProperty(exports, "Column", { enumerable: true, get: function () { return Column_1.Column; } });
const FilterableColumn_1 = require("./Table/FilterableColumn");
exports.FilterableColumn = FilterableColumn_1.default;
const ConfigurableTable_1 = require("./ConfigurableTable/ConfigurableTable");
exports.ConfigurableTable = ConfigurableTable_1.default;
const ConfigurableColumn_1 = require("./ConfigurableTable/ConfigurableColumn");
exports.ConfigurableColumn = ConfigurableColumn_1.default;