Inital Commit

This commit is contained in:
root
2025-06-24 15:43:32 +02:00
commit 23341b8abb
4657 changed files with 549083 additions and 0 deletions

18
html/rechner/node_modules/gauge/lib/base-theme.js generated vendored Normal file
View File

@@ -0,0 +1,18 @@
'use strict'
var spin = require('./spin.js')
var progressBar = require('./progress-bar.js')
module.exports = {
activityIndicator: function (values, theme, width) {
if (values.spun == null) {
return
}
return spin(theme, values.spun)
},
progressbar: function (values, theme, width) {
if (values.completed == null) {
return
}
return progressBar(theme, width, values.completed)
},
}