add tabulator6

This commit is contained in:
Harald Bamberger
2025-02-27 11:35:21 +01:00
parent 470eac7d3c
commit 80b67ad416
6 changed files with 30 additions and 2 deletions
@@ -23,6 +23,7 @@
$tablesorter2 = isset($tablesorter2) ? $tablesorter2 : false; $tablesorter2 = isset($tablesorter2) ? $tablesorter2 : false;
$tabulator4 = isset($tabulator4) ? $tabulator4 : false; $tabulator4 = isset($tabulator4) ? $tabulator4 : false;
$tabulator5 = isset($tabulator5) ? $tabulator5 : false; $tabulator5 = isset($tabulator5) ? $tabulator5 : false;
$tabulator6 = isset($tabulator6) ? $tabulator6 : false;
$tabulator5JQuery = isset($tabulator5JQuery) ? $tabulator5JQuery : false; $tabulator5JQuery = isset($tabulator5JQuery) ? $tabulator5JQuery : false;
$tinymce3 = isset($tinymce3) ? $tinymce3 : false; $tinymce3 = isset($tinymce3) ? $tinymce3 : false;
$tinymce5 = isset($tinymce5) ? $tinymce5 : false; $tinymce5 = isset($tinymce5) ? $tinymce5 : false;
@@ -104,6 +104,8 @@
if ($tabulator5 === true) generateJSsInclude('vendor/olifolkerd/tabulator5/dist/js/tabulator.min.js'); if ($tabulator5 === true) generateJSsInclude('vendor/olifolkerd/tabulator5/dist/js/tabulator.min.js');
// Tabulator 5 JQuery // Tabulator 5 JQuery
if ($tabulator5JQuery === true) generateJSsInclude('public/js/tabulator/jquery_wrapper.js'); if ($tabulator5JQuery === true) generateJSsInclude('public/js/tabulator/jquery_wrapper.js');
// Tabulator 6 JS
if ($tabulator6 === true) generateJSsInclude('vendor/olifolkerd/tabulator6/dist/js/tabulator.min.js');
// Tinymce 3 JS // Tinymce 3 JS
if ($tinymce3 === true) generateJSsInclude('include/tiny_mce/tiny_mce.js'); if ($tinymce3 === true) generateJSsInclude('include/tiny_mce/tiny_mce.js');
@@ -79,6 +79,9 @@
// Tabulator 5 CSS // Tabulator 5 CSS
if ($tabulator5 === true) generateCSSsInclude('public/css/Tabulator5.css'); if ($tabulator5 === true) generateCSSsInclude('public/css/Tabulator5.css');
// Tabulator 6 CSS
if ($tabulator6 === true) generateCSSsInclude('public/css/Tabulator6.css');
// Tinymce 5 CSS // Tinymce 5 CSS
if ($tinymce5 === true) generateCSSsInclude('public/css/TinyMCE5.css'); if ($tinymce5 === true) generateCSSsInclude('public/css/TinyMCE5.css');
+12
View File
@@ -237,6 +237,17 @@
} }
} }
}, },
{
"type": "package",
"package": {
"name": "olifolkerd/tabulator6",
"version": "6.3.1",
"dist": {
"url": "https://github.com/olifolkerd/tabulator/archive/refs/tags/6.3.1.zip",
"type": "zip"
}
}
},
{ {
"type": "package", "type": "package",
"package": { "package": {
@@ -427,6 +438,7 @@
"olifolkerd/tabulator4": "4.9.*", "olifolkerd/tabulator4": "4.9.*",
"olifolkerd/tabulator5": "5.5.*", "olifolkerd/tabulator5": "5.5.*",
"olifolkerd/tabulator6": "6.3.*",
"phpseclib/phpseclib": "2.0.*", "phpseclib/phpseclib": "2.0.*",
Generated
+11 -2
View File
@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"content-hash": "01ea35652d88680f8262c5365828eb46", "content-hash": "d1ed276d478102b0f2b03f7a883ee058",
"packages": [ "packages": [
{ {
"name": "afarkas/html5shiv", "name": "afarkas/html5shiv",
@@ -1518,6 +1518,15 @@
}, },
"type": "library" "type": "library"
}, },
{
"name": "olifolkerd/tabulator6",
"version": "6.3.1",
"dist": {
"type": "zip",
"url": "https://github.com/olifolkerd/tabulator/archive/refs/tags/6.3.1.zip"
},
"type": "library"
},
{ {
"name": "phpseclib/phpseclib", "name": "phpseclib/phpseclib",
"version": "2.0.46", "version": "2.0.46",
@@ -4752,5 +4761,5 @@
"php": ">=5.6.40" "php": ">=5.6.40"
}, },
"platform-dev": [], "platform-dev": [],
"plugin-api-version": "2.2.0" "plugin-api-version": "2.6.0"
} }
+1
View File
@@ -0,0 +1 @@
@import '../../vendor/olifolkerd/tabulator6/dist/css/tabulator_simple.min.css';