Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rajkowski committed Dec 17, 2024
1 parent 5f52288 commit a97bda2
Show file tree
Hide file tree
Showing 28 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"jquery-formatcurrency": "1.6.3",
"js-cookie": "3.0.5",
"jspreadsheet-ce": "4.15.0",
"jsuites": "5.8.0",
"jsuites": "5.8.2",
"leaflet": "1.9.4",
"leaflet.markercluster": "1.5.3",
"masonry-layout": "4.2.2",
Expand Down
2 changes: 1 addition & 1 deletion src/main/webapp/WEB-INF/dependencies.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
]
},
"jsuites": {
"version": "5.8.0",
"version": "5.8.2",
"paths": [
"node_modules/jsuites/dist/jsuites.css",
"node_modules/jsuites/dist/jsuites.d.ts",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2293,7 +2293,7 @@ div[data-before]:before {
color:#000;
}

.jprogressbar::focus {
.jprogressbar:focus {
outline: auto 5px -webkit-focus-ring-color;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4650,7 +4650,7 @@ function Tabs(el, options) {

obj.create = function(title, url) {
if (typeof(obj.options.onbeforecreate) == 'function') {
var ret = obj.options.onbeforecreate(el);
var ret = obj.options.onbeforecreate(el, title);
if (ret === false) {
return false;
} else {
Expand Down Expand Up @@ -12861,7 +12861,7 @@ var jsuites_jSuites = {
...dictionary,
...helpers,
/** Current version */
version: '5.8.0',
version: '5.8.2',
/** Bind new extensions to Jsuites */
setExtensions: function(o) {
if (typeof(o) == 'object') {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ interface Options {
* On before create new tab event
* @return {string} Header title
*/
onbeforecreate: (el: HTMLElement) => string;
onbeforecreate: (el: HTMLElement, title: string | undefined) => string | false;
/** On change tab position event */
onchangeposition: (headers: HTMLElement[], from: number, to: number) => void;
/** Enable animation. Default: false */
Expand Down

0 comments on commit a97bda2

Please sign in to comment.