@ti-engine/web-framework 1.18.1 → 1.19.1

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.
Files changed (39) hide show
  1. package/.env +4 -4
  2. package/CHANGELOG.md +362 -341
  3. package/README.md +73 -40
  4. package/bin/build/post-install.js +18 -18
  5. package/bin/localization/web-server-labels.json +27 -27
  6. package/bin/static/.well-known/appspecific/com.chrome.devtools.json +5 -5
  7. package/bin/static/fragments/components/component-notification-bar.html +21 -21
  8. package/bin/static/fragments/components/component-sidebar-flyout.html +36 -36
  9. package/bin/static/fragments/components/component-sidebar.html +33 -33
  10. package/bin/static/fragments/components/component-tooltip.html +10 -10
  11. package/bin/static/fragments/components/component-topbar.html +5 -5
  12. package/bin/static/fragments/frame-administration.html +2 -2
  13. package/bin/static/fragments/frame-application.html +18 -18
  14. package/bin/static/fragments/frame-dashboard.html +2 -2
  15. package/bin/static/fragments/frame-login.html +119 -119
  16. package/bin/static/fragments/frame-not-found.html +2 -2
  17. package/bin/static/fragments/frame-profile.html +2 -2
  18. package/bin/static/index.html +22 -22
  19. package/bin/static/scripts/ti-charts.js +1591 -1591
  20. package/bin/static/scripts/ti-framework.css +3194 -3194
  21. package/bin/static/scripts/ti-framework.js +1427 -1427
  22. package/bin/static/scripts/ti-theme-black-glass.css +216 -216
  23. package/bin/static/scripts/ti-theme-daylight.css +87 -87
  24. package/bin/web-app-manager.js +663 -663
  25. package/bin/web-server.js +936 -744
  26. package/bin/web-server.json +48 -48
  27. package/components/admin-config-handlers.js +92 -92
  28. package/components/auth-manager.js +441 -441
  29. package/components/authorization.js +135 -135
  30. package/components/config-change-notifier.js +98 -98
  31. package/components/config-registry.js +260 -260
  32. package/components/config-service.js +360 -360
  33. package/components/config-store.js +246 -246
  34. package/components/definitions.types.js +26 -26
  35. package/components/session-store.js +110 -110
  36. package/components/user.js +132 -132
  37. package/components/web-config-env.js +19 -2
  38. package/components/web-handlers.js +800 -800
  39. package/package.json +76 -67
package/.env CHANGED
@@ -1,4 +1,4 @@
1
- TI_AUDITING_LOG_MIN_LEVEL=200
2
- TI_INSTANCE_CLASS=bin/web-server.js
3
- TI_INSTANCE_NAME=ti-web-server
4
- TI_LOCALIZATION_LABELS_PATH=bin/localization/web-server-labels.json
1
+ TI_AUDITING_LOG_MIN_LEVEL=200
2
+ TI_INSTANCE_CLASS=bin/web-server.js
3
+ TI_INSTANCE_NAME=ti-web-server
4
+ TI_LOCALIZATION_LABELS_PATH=bin/localization/web-server-labels.json