@ulu/frontend 0.1.0-beta.109 → 0.1.0-beta.110

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 (52) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/dist/ulu-frontend.min.css +1 -1
  3. package/docs-dev/changelog/index.html +7 -0
  4. package/docs-dev/demos/accordion/index.html +4 -18
  5. package/docs-dev/demos/card/index.html +16 -16
  6. package/docs-dev/demos/data-table/index.html +100 -100
  7. package/docs-dev/demos/progress-circle/index.html +44 -44
  8. package/docs-dev/javascript/events/index.html +477 -1407
  9. package/docs-dev/javascript/settings/index.html +4 -380
  10. package/docs-dev/javascript/ui-breakpoints/index.html +0 -540
  11. package/docs-dev/javascript/ui-collapsible/index.html +472 -1252
  12. package/docs-dev/javascript/ui-details-group/index.html +0 -540
  13. package/docs-dev/javascript/ui-dialog/index.html +472 -1252
  14. package/docs-dev/javascript/ui-flipcard/index.html +331 -2703
  15. package/docs-dev/javascript/ui-grid/index.html +342 -2534
  16. package/docs-dev/javascript/ui-modal-builder/index.html +327 -2489
  17. package/docs-dev/javascript/ui-overflow-scroller/index.html +342 -2534
  18. package/docs-dev/javascript/ui-overflow-scroller-pager/index.html +4 -380
  19. package/docs-dev/javascript/ui-page/index.html +4 -380
  20. package/docs-dev/javascript/ui-popover/index.html +4 -380
  21. package/docs-dev/javascript/ui-print/index.html +4 -380
  22. package/docs-dev/javascript/ui-print-details/index.html +4 -380
  23. package/docs-dev/javascript/ui-programmatic-modal/index.html +4 -380
  24. package/docs-dev/javascript/ui-proxy-click/index.html +4 -380
  25. package/docs-dev/javascript/ui-resizer/index.html +4 -380
  26. package/docs-dev/javascript/ui-scroll-slider/index.html +4 -380
  27. package/docs-dev/javascript/ui-scrollpoint/index.html +4 -380
  28. package/docs-dev/javascript/ui-slider/index.html +4 -380
  29. package/docs-dev/javascript/ui-tabs/index.html +4 -380
  30. package/docs-dev/javascript/ui-theme-toggle/index.html +4 -380
  31. package/docs-dev/javascript/ui-tooltip/index.html +4 -380
  32. package/docs-dev/javascript/utils-class-logger/index.html +4 -380
  33. package/docs-dev/javascript/utils-css/index.html +4 -380
  34. package/docs-dev/javascript/utils-dom/index.html +4 -380
  35. package/docs-dev/javascript/utils-file-save/index.html +4 -380
  36. package/docs-dev/javascript/utils-floating-ui/index.html +4 -380
  37. package/docs-dev/javascript/utils-id/index.html +4 -380
  38. package/docs-dev/javascript/utils-pause-youtube-video/index.html +4 -380
  39. package/docs-dev/javascript/utils-system/index.html +4 -380
  40. package/docs-dev/sass/base/elements/index.html +4 -380
  41. package/docs-dev/sass/base/normalize/index.html +4 -380
  42. package/docs-dev/sass/components/accordion/index.html +97 -63
  43. package/docs-dev/sass/core/typography/index.html +78 -27
  44. package/docs-dev/sass/helpers/color/index.html +4 -380
  45. package/docs-dev/sass/helpers/display/index.html +4 -380
  46. package/docs-dev/sass/helpers/index/index.html +4 -380
  47. package/docs-dev/sass/helpers/typography/index.html +4 -380
  48. package/docs-dev/sass/helpers/units/index.html +4 -380
  49. package/docs-dev/sass/helpers/utilities/index.html +4 -380
  50. package/package.json +1 -1
  51. package/scss/_typography.scss +13 -0
  52. package/scss/components/_accordion.scss +144 -113
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.1.0-beta.110
4
+
5
+ - **scss/typography**
6
+ - Add `optional-size` mixin
7
+ - **scss/components/accordion**
8
+ - Refactored to not work for plain details elements. The component used to allow no container around the content. Content container is now required
9
+ - Does not support default details marker anymore (when icon is omitted), you must supply a icon in the correct structure
10
+ - Config, `margin` now is list form, configuration defaults adjusted slightly (from rem to em), remove transparent-padding- properties, add transparent-content-padding
11
+ - General refactor to remove things that are unnecessary, reduce code
12
+
3
13
  ## 0.1.0-beta.109
4
14
 
5
15
  - **scss/components/accordion** - Adjusted selectors from & + & to print out selectors incase this mixin is called when scoped .accordion + .accordion vs .scope .accordion + .scope .accordion which is incorrect