multiple bug fixes including sender ID filtering
This commit is contained in:
95
public/assets/vendors/tabulator-master/README.md
vendored
Normal file
95
public/assets/vendors/tabulator-master/README.md
vendored
Normal file
@@ -0,0 +1,95 @@
|
||||
<p align="center">
|
||||
<img height="200" src="http://tabulator.info/images/logos/t_hollow.png">
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<img height="50" src="http://tabulator.info/images/tabulator.png">
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
An easy to use interactive table generation JavaScript library
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
Full documentation & demos can be found at: <a href="http://tabulator.info">http://tabulator.info</a>
|
||||
</p>
|
||||
|
||||
***
|
||||

|
||||
***
|
||||
|
||||
|
||||
Features
|
||||
================================
|
||||
Tabulator allows you to create interactive tables in seconds from any HTML Table, Javascript Array or JSON formatted data.
|
||||
|
||||
Simply include the library and the css in your project and you're away!
|
||||
|
||||
Tabulator is packed with useful features including:
|
||||
|
||||

|
||||
|
||||
|
||||
Frontend Framework Support
|
||||
================================
|
||||
Tabulator is built to work with all the major front end JavaScript frameworks including React, Angular and Vue.
|
||||
|
||||
|
||||
Setup
|
||||
================================
|
||||
Setting up tabulator could not be simpler.
|
||||
|
||||
Include the library and the css
|
||||
```html
|
||||
<link href="dist/css/tabulator.min.css" rel="stylesheet">
|
||||
<script type="text/javascript" src="dist/js/tabulator.min.js"></script>
|
||||
```
|
||||
|
||||
Create an element to hold the table
|
||||
```html
|
||||
<div id="example-table"></div>
|
||||
```
|
||||
|
||||
Turn the element into a tabulator with some simple javascript
|
||||
```js
|
||||
var table = new Tabulator("#example-table", {});
|
||||
```
|
||||
|
||||
|
||||
### Bower Installation
|
||||
To get Tabulator via the Bower package manager, open a terminal in your project directory and run the following command:
|
||||
```
|
||||
bower install tabulator --save
|
||||
```
|
||||
|
||||
### NPM Installation
|
||||
To get Tabulator via the NPM package manager, open a terminal in your project directory and run the following command:
|
||||
```
|
||||
npm install tabulator-tables --save
|
||||
```
|
||||
|
||||
### CDN - UNPKG
|
||||
To access Tabulator directly from the UNPKG CDN servers, include the following two lines at the start of your project, instead of the locally hosted versions:
|
||||
```html
|
||||
<link href="https://unpkg.com/tabulator-tables/dist/css/tabulator.min.css" rel="stylesheet">
|
||||
<script type="text/javascript" src="https://unpkg.com/tabulator-tables/dist/js/tabulator.min.js"></script>
|
||||
```
|
||||
|
||||
Testing
|
||||
================================
|
||||
Tabulator comes with both Unit and End-to-End (E2E) tests. Here’s how you can run them:
|
||||
|
||||
```bash
|
||||
# Unit test
|
||||
npm run test:unit
|
||||
|
||||
# E2E test
|
||||
npm run build # Make sure to build the project first
|
||||
npx playwright test # Run the tests
|
||||
# or
|
||||
npm run test:e2e
|
||||
|
||||
# Run all tests
|
||||
npm run test
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user