@ulu/frontend 0.1.0-beta.34 → 0.1.0-beta.36

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 (42) hide show
  1. package/CHANGELOG.md +44 -0
  2. package/dist/ulu-frontend.min.css +1 -1
  3. package/dist/ulu-frontend.min.js +20 -20
  4. package/docs-dev/changelog/index.html +50 -0
  5. package/docs-dev/demos/button/index.html +10 -0
  6. package/docs-dev/demos/card/index.html +21 -15
  7. package/docs-dev/demos/card-grid/index.html +34 -38
  8. package/docs-dev/demos/data-table/index.html +158 -25
  9. package/docs-dev/demos/menu-stack/index.html +15 -0
  10. package/docs-dev/demos/overlay-section/index.html +73 -3
  11. package/docs-dev/demos/popovers/index.html +88 -0
  12. package/docs-dev/demos/rule/index.html +13 -1
  13. package/docs-dev/demos/scroll-slider/index.html +12 -12
  14. package/docs-dev/sass/components/card/index.html +15 -9
  15. package/docs-dev/sass/components/form-theme/index.html +17 -17
  16. package/docs-dev/sass/components/rule/index.html +1 -1
  17. package/js/settings.js +23 -6
  18. package/js/ui/breakpoints.js +18 -14
  19. package/js/ui/collapsible.js +8 -1
  20. package/js/ui/modal-builder.js +21 -17
  21. package/js/ui/overflow-scroller.js +1 -0
  22. package/js/ui/scroll-slider.js +1 -1
  23. package/js/utils/css.js +13 -0
  24. package/package.json +1 -1
  25. package/scss/_breakpoint.scss +15 -2
  26. package/scss/_utils.scss +19 -2
  27. package/scss/components/_button-verbose.scss +19 -2
  28. package/scss/components/_card.scss +54 -5
  29. package/scss/components/_data-grid.scss +36 -7
  30. package/scss/components/_form-theme.scss +17 -17
  31. package/scss/components/_modal.scss +6 -0
  32. package/scss/components/_rule.scss +1 -0
  33. package/types/settings.d.ts +31 -3
  34. package/types/settings.d.ts.map +1 -1
  35. package/types/ui/breakpoints.d.ts +14 -14
  36. package/types/ui/breakpoints.d.ts.map +1 -1
  37. package/types/ui/collapsible.d.ts.map +1 -1
  38. package/types/ui/modal-builder.d.ts +1 -0
  39. package/types/ui/modal-builder.d.ts.map +1 -1
  40. package/types/ui/overflow-scroller.d.ts.map +1 -1
  41. package/types/utils/css.d.ts +11 -0
  42. package/types/utils/css.d.ts.map +1 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,49 @@
1
1
  # Change Log
2
2
 
3
+ ## Version 0.1.0-beta.36 (unrealized)
4
+
5
+ - **scss/**
6
+ - **components/button-verbose**
7
+ - Add "border-width" and "border-color" options with ability to fallback to button defaults for each. No borders are added by default. Options descriptions added to sass api docs.
8
+ - **components/modal**
9
+ - Add fullscreen size modifier
10
+ - **components/data-grid**
11
+ - Create option "rule-fade-duration" which when enabled (can be disabled by passing false) will hide the rules for the grid until the grid's initialization script has finished (which gives positioning information about the column arrangement so the appropriate rules can be shown per column/row).
12
+ - **js**
13
+ - **settings**
14
+ - Update "wrapSettingString" function to have second argument for "transform" allowing default settings strings that can also be transformed. This was used in breakpoint module so user can match "cssvarPrefix" to create a default value of "--PREFIX-breakpoint" for example, where PREFIX is dynamic at time of string is used
15
+ - Add "cssvarPrefix" to match scss cssvar module's prefix value
16
+ - **ui/breakpoint**
17
+ - Fix all typos (options and methods) of "psuedo" to "pseudo" (valueFromPseudo, pseudoSelector)
18
+ - Bring in new setting (from settings.js) for "cssvarPrefix" for the breakpoint customProperty default value
19
+ - Create test for this in demos
20
+ - **ui/collapsibles**
21
+ - Fix bug with "focusoutCloses" check collapsible content for focus before closing (so only close if focusout led outside the content) which is the intended behavior. Note this is mechanism used to control popover's so it fixes the bug there as well
22
+ - **ui/modal-builder**
23
+ - Update all templates options (templateCloseIcon, templateResizerIcon, template) to include new option for "baseClass" so that base BEM selector can easily be changed (ie. .namespace-modal for example)
24
+ - **utils/css.js**
25
+ - Add new module to hold utility functions related to CSS, currently just new function getCustomProperty which is used in ui/breakpoints module
26
+
27
+ ## Version 0.1.0-beta.35
28
+
29
+ - **scss/**
30
+ - **components/card**
31
+ - add *card__aside* styling to enable sidebars
32
+ - added *card__main* wrapper to *card__title* and *card__content* to separate it from the *card__aside*
33
+ - added config options for *card__aside*
34
+ - toggle-aside-rule : toggles rule separating aside from main,
35
+ - aside-rule-width
36
+ - aside-background-color
37
+ - aside-rule-color
38
+ - remove padding from *card__image--icon*
39
+ - This was adding additional space on bottom of horizontal card. Most noticeably when using an aside background color and no footer.
40
+ - **elements/rule**
41
+ - Added "display: inline-block;" to short rule
42
+ - Note: user can use the old style by adding utility class "display-block"
43
+ - **js/**
44
+ - ui/scroll-slider
45
+ - Fix typo that introduced error in last update controls-context to control-context
46
+
3
47
  ## Version 0.1.0-beta.34
4
48
 
5
49
  - **scss/**