neo.mjs 4.6.1 → 4.6.3

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 (29) hide show
  1. package/README.md +0 -8
  2. package/docs/app/view/MainContainerController.mjs +12 -11
  3. package/docs/app/view/classdetails/SourceViewComponent.mjs +12 -12
  4. package/examples/form/field/text/MainContainer.mjs +6 -0
  5. package/examples/toast/MainContainer.mjs +136 -0
  6. package/examples/toast/MainContainerController.mjs +95 -0
  7. package/examples/toast/app.mjs +7 -0
  8. package/examples/toast/index.html +27 -0
  9. package/examples/toast/neo-config.json +7 -0
  10. package/examples/toast/resources/highlight/CHANGES.md +1739 -0
  11. package/examples/toast/resources/highlight/LICENSE +24 -0
  12. package/examples/toast/resources/highlight/README.md +186 -0
  13. package/examples/toast/resources/highlight/highlight.pack.js +2 -0
  14. package/examples/toast/resources/highlightjs-custom-dark-theme.css +120 -0
  15. package/examples/toast/resources/highlightjs-custom-github-theme.css +136 -0
  16. package/package.json +1 -1
  17. package/resources/scss/src/dialog/Toast.scss +132 -106
  18. package/resources/scss/src/form/field/Text.scss +130 -24
  19. package/resources/scss/theme-dark/dialog/Toast.scss +13 -0
  20. package/resources/scss/theme-dark/form/field/Text.scss +54 -34
  21. package/resources/scss/theme-light/dialog/Toast.scss +25 -0
  22. package/resources/scss/theme-light/form/field/Text.scss +54 -34
  23. package/src/collection/Base.mjs +0 -1
  24. package/src/component/Base.mjs +1 -17
  25. package/src/dialog/Toast.mjs +140 -68
  26. package/src/form/field/CheckBox.mjs +3 -3
  27. package/src/form/field/Text.mjs +51 -21
  28. package/src/main/addon/HighlightJS.mjs +28 -15
  29. package/src/manager/Toast.mjs +1 -1
@@ -124,7 +124,7 @@ class Toast extends Base {
124
124
  let me = this,
125
125
  toast;
126
126
 
127
- if (me.getCount > 0) {
127
+ if (me.getCount() > 0) {
128
128
  toast = me.findFirstToast();
129
129
 
130
130
  toast && me.showToast(toast)