From 5d71a3995b0ab077dbe9ec41fb5bdd28540d5281 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabrice=20PENHO=C3=8BT?= Date: Wed, 20 Oct 2021 12:43:49 +0200 Subject: [PATCH] =?UTF-8?q?Renommage=20de=20la=20classe=20cr=C3=A9ant=20le?= =?UTF-8?q?=20HTML=20correspondant=20aux=20donn=C3=A9es=20=C3=A0=20affiche?= =?UTF-8?q?r.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- src/{freeDatas2HTMLRender.ts => Render.ts} | 0 src/freeDatas2HTML.ts | 4 ++-- 3 files changed, 3 insertions(+), 3 deletions(-) rename src/{freeDatas2HTMLRender.ts => Render.ts} (100%) diff --git a/package.json b/package.json index 9a0e38c..4182691 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/src/freeDatas2HTMLRender.ts b/src/Render.ts similarity index 100% rename from src/freeDatas2HTMLRender.ts rename to src/Render.ts diff --git a/src/freeDatas2HTML.ts b/src/freeDatas2HTML.ts index 6194aa1..7516507 100644 --- a/src/freeDatas2HTML.ts +++ b/src/freeDatas2HTML.ts @@ -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"; \ No newline at end of file