@ulu/frontend 0.1.0-beta.75 → 0.1.0-beta.77

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 (40) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/dist/ulu-frontend.min.css +1 -1
  3. package/dist/ulu-frontend.min.js +18 -17
  4. package/docs-dev/assets/main.js +7747 -503
  5. package/docs-dev/assets/style.css +221 -166
  6. package/docs-dev/changelog/index.html +22 -0
  7. package/docs-dev/demos/button/index.html +38 -7
  8. package/docs-dev/demos/card/index.html +16 -16
  9. package/docs-dev/demos/data-table/index.html +100 -100
  10. package/docs-dev/demos/modals/index.html +25 -0
  11. package/docs-dev/demos/popovers/index.html +5 -5
  12. package/docs-dev/javascript/ui-modal-builder/index.html +10 -0
  13. package/docs-dev/javascript/utils-dom/index.html +1 -215
  14. package/docs-dev/sass/components/modal/index.html +38 -10
  15. package/js/ui/dialog.js +1 -1
  16. package/js/ui/modal-builder.js +20 -3
  17. package/js/ui/page.js +2 -2
  18. package/js/ui/print.js +1 -1
  19. package/js/ui/programmatic-modal.js +1 -1
  20. package/js/ui/scrollpoint.js +1 -1
  21. package/js/ui/theme-toggle.js +2 -1
  22. package/js/utils/dom.js +2 -120
  23. package/js/utils/system.js +2 -1
  24. package/package.json +2 -2
  25. package/scss/components/_modal.scss +29 -14
  26. package/types/ui/index.d.ts +1 -1
  27. package/types/ui/modal-builder.d.ts +10 -0
  28. package/types/ui/modal-builder.d.ts.map +1 -1
  29. package/types/ui/theme-toggle.d.ts.map +1 -1
  30. package/types/utils/dom.d.ts +0 -59
  31. package/types/utils/dom.d.ts.map +1 -1
  32. package/types/utils/index.d.ts +1 -1
  33. package/types/utils/system.d.ts.map +1 -1
  34. package/docs-dev/changelog/updates-and-changes/index.html +0 -5109
  35. package/docs-dev/demos/card-new/index.html +0 -5088
  36. package/docs-dev/demos/card-old/index.html +0 -5223
  37. package/docs-dev/demos/card.1/index.html +0 -5223
  38. package/docs-dev/demos/card.TRASH/index.html +0 -5541
  39. package/docs-dev/demos/list-inline.1/index.html +0 -4727
  40. package/docs-dev/guide/updates-and-changes/index.html +0 -5033
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.1.0-beta.77
4
+
5
+ - **js**
6
+ - Move dom utils that were reusable to utils library
7
+ - **docs**
8
+ - Fix popover fixed demo for fixed strategy
9
+
10
+ ## 0.1.0-beta.76
11
+
12
+ - **scss/components/modal.scss**
13
+ - Add `.modal__footer` element and configuration for styling it
14
+ - Fix modal animations temporarily setting display block instead of flex
15
+ - **js/ui/modal-builder.js**
16
+ - Add options for `footerElement` which will select the element and move it into the modal on creation (when working in DOM with data-attributes)
17
+ - Add option for `footerHtml` which will insert the markup provided into the footer
18
+ - Output footer element if either setting is set
19
+
3
20
  ## 0.1.0-beta.75
4
21
 
5
22
  - **scss/components/modal.scss** | Remove unused selector `.modal__content`