@ulu/frontend 0.1.0-beta.35 → 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.
- package/CHANGELOG.md +41 -2
- package/dist/ulu-frontend.min.css +1 -1
- package/dist/ulu-frontend.min.js +20 -20
- package/docs-dev/changelog/index.html +40 -1
- package/docs-dev/demos/button/index.html +10 -0
- package/docs-dev/demos/card/index.html +21 -15
- package/docs-dev/demos/card-grid/index.html +34 -38
- package/docs-dev/demos/data-table/index.html +158 -25
- package/docs-dev/demos/menu-stack/index.html +15 -0
- package/docs-dev/demos/overlay-section/index.html +73 -3
- package/docs-dev/demos/popovers/index.html +88 -0
- package/docs-dev/demos/rule/index.html +13 -1
- package/docs-dev/demos/scroll-slider/index.html +12 -12
- package/docs-dev/sass/components/card/index.html +15 -9
- package/docs-dev/sass/components/form-theme/index.html +17 -17
- package/docs-dev/sass/components/rule/index.html +1 -1
- package/js/settings.js +23 -6
- package/js/ui/breakpoints.js +18 -14
- package/js/ui/collapsible.js +8 -1
- package/js/ui/modal-builder.js +21 -17
- package/js/ui/overflow-scroller.js +1 -0
- package/js/utils/css.js +13 -0
- package/package.json +1 -1
- package/scss/_breakpoint.scss +15 -2
- package/scss/_utils.scss +19 -2
- package/scss/components/_button-verbose.scss +19 -2
- package/scss/components/_card.scss +54 -5
- package/scss/components/_data-grid.scss +36 -7
- package/scss/components/_form-theme.scss +17 -17
- package/scss/components/_modal.scss +6 -0
- package/scss/components/_rule.scss +1 -0
- package/types/settings.d.ts +31 -3
- package/types/settings.d.ts.map +1 -1
- package/types/ui/breakpoints.d.ts +14 -14
- package/types/ui/breakpoints.d.ts.map +1 -1
- package/types/ui/collapsible.d.ts.map +1 -1
- package/types/ui/modal-builder.d.ts +1 -0
- package/types/ui/modal-builder.d.ts.map +1 -1
- package/types/ui/overflow-scroller.d.ts.map +1 -1
- package/types/utils/css.d.ts +11 -0
- package/types/utils/css.d.ts.map +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,48 @@
|
|
|
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
|
+
|
|
3
27
|
## Version 0.1.0-beta.35
|
|
4
28
|
|
|
5
|
-
-
|
|
6
|
-
-
|
|
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
|
|
7
46
|
|
|
8
47
|
## Version 0.1.0-beta.34
|
|
9
48
|
|