@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.
- package/CHANGELOG.md +10 -0
- package/dist/ulu-frontend.min.css +1 -1
- package/docs-dev/changelog/index.html +7 -0
- package/docs-dev/demos/accordion/index.html +4 -18
- package/docs-dev/demos/card/index.html +16 -16
- package/docs-dev/demos/data-table/index.html +100 -100
- package/docs-dev/demos/progress-circle/index.html +44 -44
- package/docs-dev/javascript/events/index.html +477 -1407
- package/docs-dev/javascript/settings/index.html +4 -380
- package/docs-dev/javascript/ui-breakpoints/index.html +0 -540
- package/docs-dev/javascript/ui-collapsible/index.html +472 -1252
- package/docs-dev/javascript/ui-details-group/index.html +0 -540
- package/docs-dev/javascript/ui-dialog/index.html +472 -1252
- package/docs-dev/javascript/ui-flipcard/index.html +331 -2703
- package/docs-dev/javascript/ui-grid/index.html +342 -2534
- package/docs-dev/javascript/ui-modal-builder/index.html +327 -2489
- package/docs-dev/javascript/ui-overflow-scroller/index.html +342 -2534
- package/docs-dev/javascript/ui-overflow-scroller-pager/index.html +4 -380
- package/docs-dev/javascript/ui-page/index.html +4 -380
- package/docs-dev/javascript/ui-popover/index.html +4 -380
- package/docs-dev/javascript/ui-print/index.html +4 -380
- package/docs-dev/javascript/ui-print-details/index.html +4 -380
- package/docs-dev/javascript/ui-programmatic-modal/index.html +4 -380
- package/docs-dev/javascript/ui-proxy-click/index.html +4 -380
- package/docs-dev/javascript/ui-resizer/index.html +4 -380
- package/docs-dev/javascript/ui-scroll-slider/index.html +4 -380
- package/docs-dev/javascript/ui-scrollpoint/index.html +4 -380
- package/docs-dev/javascript/ui-slider/index.html +4 -380
- package/docs-dev/javascript/ui-tabs/index.html +4 -380
- package/docs-dev/javascript/ui-theme-toggle/index.html +4 -380
- package/docs-dev/javascript/ui-tooltip/index.html +4 -380
- package/docs-dev/javascript/utils-class-logger/index.html +4 -380
- package/docs-dev/javascript/utils-css/index.html +4 -380
- package/docs-dev/javascript/utils-dom/index.html +4 -380
- package/docs-dev/javascript/utils-file-save/index.html +4 -380
- package/docs-dev/javascript/utils-floating-ui/index.html +4 -380
- package/docs-dev/javascript/utils-id/index.html +4 -380
- package/docs-dev/javascript/utils-pause-youtube-video/index.html +4 -380
- package/docs-dev/javascript/utils-system/index.html +4 -380
- package/docs-dev/sass/base/elements/index.html +4 -380
- package/docs-dev/sass/base/normalize/index.html +4 -380
- package/docs-dev/sass/components/accordion/index.html +97 -63
- package/docs-dev/sass/core/typography/index.html +78 -27
- package/docs-dev/sass/helpers/color/index.html +4 -380
- package/docs-dev/sass/helpers/display/index.html +4 -380
- package/docs-dev/sass/helpers/index/index.html +4 -380
- package/docs-dev/sass/helpers/typography/index.html +4 -380
- package/docs-dev/sass/helpers/units/index.html +4 -380
- package/docs-dev/sass/helpers/utilities/index.html +4 -380
- package/package.json +1 -1
- package/scss/_typography.scss +13 -0
- 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
|