isite 2021.11.15 → 2021.11.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +486 -475
- package/apps/client-side/app.js +28 -1
- package/apps/client-side/site_files/css/btn.css +98 -0
- package/apps/client-side/site_files/css/checkbox.css +10 -7
- package/apps/client-side/site_files/css/dropdown.css +61 -0
- package/apps/client-side/site_files/css/effect.css +283 -280
- package/apps/client-side/site_files/css/font-awesome.css +4615 -3
- package/apps/client-side/site_files/css/font-awesome.min.css +5 -0
- package/apps/client-side/site_files/css/font-cairo.css +14 -0
- package/apps/client-side/site_files/css/font-droid.css +19 -0
- package/apps/client-side/site_files/css/fonts.css +6 -34
- package/apps/client-side/site_files/css/form.css +5 -100
- package/apps/client-side/site_files/css/layout.css +27 -13
- package/apps/client-side/site_files/css/modal.css +184 -164
- package/apps/client-side/site_files/css/tabs.css +3 -3
- package/apps/client-side/site_files/css/theme.css +1 -1
- package/apps/client-side/site_files/css/theme_dark.css +1 -1
- package/apps/client-side/site_files/css/theme_paper.css +175 -151
- package/apps/client-side/site_files/html/sub/i-date2.content.html +64 -0
- package/apps/client-side/site_files/html/sub/i-list.content.html +31 -0
- package/apps/client-side/site_files/html/sub/i-list2.content.html +22 -0
- package/apps/client-side/site_files/js/directive.js +1570 -1650
- package/apps/client-side/site_files/js/directive.min.js +2 -2
- package/apps/client-side/site_files/js/site.js +6 -0
- package/apps/client-side/site_files/js/site.min.js +1 -1
- package/apps/client-side/site_files/webfonts/fa-brands-400.eot +0 -0
- package/apps/client-side/site_files/webfonts/fa-brands-400.svg +3717 -0
- package/apps/client-side/site_files/webfonts/fa-brands-400.ttf +0 -0
- package/apps/client-side/site_files/webfonts/fa-brands-400.woff +0 -0
- package/apps/client-side/site_files/webfonts/fa-brands-400.woff2 +0 -0
- package/apps/client-side/site_files/webfonts/fa-regular-400.eot +0 -0
- package/apps/client-side/site_files/webfonts/fa-regular-400.svg +801 -0
- package/apps/client-side/site_files/webfonts/fa-regular-400.ttf +0 -0
- package/apps/client-side/site_files/webfonts/fa-regular-400.woff +0 -0
- package/apps/client-side/site_files/webfonts/fa-regular-400.woff2 +0 -0
- package/apps/client-side/site_files/webfonts/fa-solid-900.eot +0 -0
- package/apps/client-side/site_files/webfonts/fa-solid-900.svg +5034 -0
- package/apps/client-side/site_files/webfonts/fa-solid-900.ttf +0 -0
- package/apps/client-side/site_files/webfonts/fa-solid-900.woff +0 -0
- package/apps/client-side/site_files/webfonts/fa-solid-900.woff2 +0 -0
- package/apps/ui-print/site_files/js/index.js +1 -1
- package/index.js +2 -2
- package/lib/fsm.js +389 -346
- package/lib/mongodb.js +3 -4
- package/lib/parser.js +25 -13
- package/lib/routing.js +21 -2
- package/lib/security.js +2 -2
- package/lib/session.js +2 -8
- package/lib/sessions.js +4 -4
- package/lib/ws.js +3 -0
- package/object-options/index.js +3 -3
- package/object-options/lib/fn.js +1 -1
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -152,7 +152,7 @@ site.printAsImage = function (options, callback) {
|
|
|
152
152
|
}
|
|
153
153
|
|
|
154
154
|
domtoimage
|
|
155
|
-
.
|
|
155
|
+
.toPng(node, { quality: 1, bgcolor: '#ffffff' })
|
|
156
156
|
.then(function (dataUrl) {
|
|
157
157
|
var img = new Image();
|
|
158
158
|
img.src = dataUrl;
|
package/index.js
CHANGED
|
@@ -237,12 +237,12 @@ module.exports = function init(options) {
|
|
|
237
237
|
};
|
|
238
238
|
|
|
239
239
|
____0.on('[any][saving data]', function () {
|
|
240
|
-
____0.log('Saving Data :: ' + ____0.options.
|
|
240
|
+
____0.log('Saving Data :: ' + ____0.options.savingTime + ' Minute ');
|
|
241
241
|
});
|
|
242
242
|
|
|
243
243
|
setInterval(function () {
|
|
244
244
|
____0.call('[any][saving data]');
|
|
245
|
-
}, ____0.options.
|
|
245
|
+
}, ____0.options.savingTime * 1000 * 60);
|
|
246
246
|
|
|
247
247
|
____0.dashboard = require(__dirname + '/lib/dashboard.js');
|
|
248
248
|
____0.dashboard(____0);
|