@ulu/frontend 0.1.0-beta.74 → 0.1.0-beta.76
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 +14 -0
- package/dist/ulu-frontend.min.css +1 -1
- package/dist/ulu-frontend.min.js +14 -13
- package/docs-dev/assets/main.js +7747 -503
- package/docs-dev/assets/style.css +221 -166
- package/docs-dev/changelog/index.html +29 -0
- package/docs-dev/demos/button/index.html +38 -7
- package/docs-dev/demos/card/index.html +16 -16
- package/docs-dev/demos/data-table/index.html +100 -100
- package/docs-dev/demos/modals/index.html +25 -0
- package/docs-dev/demos/popovers/index.html +5483 -0
- package/docs-dev/javascript/ui-modal-builder/index.html +10 -0
- package/docs-dev/sass/components/modal/index.html +38 -10
- package/js/ui/modal-builder.js +20 -2
- package/package.json +1 -1
- package/scss/components/_modal.scss +29 -20
- package/types/ui/index.d.ts +1 -1
- package/types/ui/modal-builder.d.ts +10 -0
- package/types/ui/modal-builder.d.ts.map +1 -1
- package/types/utils/index.d.ts +1 -1
- package/docs-dev/changelog/updates-and-changes/index.html +0 -5109
- package/docs-dev/demos/card-new/index.html +0 -5088
- package/docs-dev/demos/card-old/index.html +0 -5223
- package/docs-dev/demos/card.1/index.html +0 -5223
- package/docs-dev/demos/card.TRASH/index.html +0 -5541
- package/docs-dev/demos/list-inline.1/index.html +0 -4727
- package/docs-dev/guide/updates-and-changes/index.html +0 -5033
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 0.1.0-beta.76
|
|
4
|
+
|
|
5
|
+
- **scss/components/modal.scss**
|
|
6
|
+
- Add `.modal__footer` element and configuration for styling it
|
|
7
|
+
- Fix modal animations temporarily setting display block instead of flex
|
|
8
|
+
- **js/ui/modal-builder.js**
|
|
9
|
+
- Add options for `footerElement` which will select the element and move it into the modal on creation (when working in DOM with data-attributes)
|
|
10
|
+
- Add option for `footerHtml` which will insert the markup provided into the footer
|
|
11
|
+
- Output footer element if either setting is set
|
|
12
|
+
|
|
13
|
+
## 0.1.0-beta.75
|
|
14
|
+
|
|
15
|
+
- **scss/components/modal.scss** | Remove unused selector `.modal__content`
|
|
16
|
+
|
|
3
17
|
## 0.1.0-beta.74
|
|
4
18
|
|
|
5
19
|
- **js/ui/modal-builder.js**
|