Renommage de la classe créant le HTML correspondant aux données à afficher.

This commit is contained in:
Fabrice PENHOËT 2021-10-20 12:43:49 +02:00
parent 62f15d7888
commit 5d71a3995b
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "freedatas2html",
"version": "0.8.5",
"version": "0.8.6",
"description": "Conversion and display of data in different formats (CSV, JSON, HTML) with the possibility of filtering, classifying and paginating the results.",
"main": "index.js",
"scripts": {

View File

@ -6,7 +6,7 @@ import { Pagination} from "./Pagination";
import { ParserForCSV} from "./ParserForCSV";
import { ParserForHTML} from "./ParserForHTML";
import { ParserForJSON} from "./ParserForJSON";
import { Render} from "./freeDatas2HTMLRender";
import { Render} from "./Render";
import { Selector } from "./freeDatas2HTMLSelector";
import { SortingField } from "./SortingField";
@ -236,6 +236,6 @@ export class FreeDatas2HTML
// Permet l'appel des dépendances via un seul script
export { Pagination } from "./Pagination";
export { Render} from "./freeDatas2HTMLRender";
export { Render} from "./Render";
export { Selector } from "./freeDatas2HTMLSelector";
export { SortingField } from "./SortingField";