@ulu/frontend 0.1.0-beta.65 → 0.1.0-beta.67
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 +11 -0
- package/README.dev.md +2 -2
- package/README.md +6 -0
- package/dist/ulu-frontend.min.css +1 -1
- package/docs-dev/changelog/index.html +23 -0
- package/docs-dev/demos/card/index.html +16 -16
- package/docs-dev/demos/counter-list/index.html +16 -0
- package/docs-dev/demos/data-table/index.html +100 -100
- package/docs-dev/sass/components/counter-list/index.html +9 -8
- package/docs-dev/sass/core/breakpoint/index.html +66 -28
- package/docs-dev/sass/core/utils/index.html +440 -193
- package/package.json +1 -1
- package/scss/_breakpoint.scss +28 -7
- package/scss/_utils.scss +140 -11
- package/scss/components/_counter-list.scss +21 -7
- package/scss/components/_data-grid.scss +17 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 0.1.0-beta.67
|
|
4
|
+
|
|
5
|
+
- **scss/components/counter-list**
|
|
6
|
+
- Add extra-selector option to allow class wrapper which styles all ol's inside container.
|
|
7
|
+
|
|
8
|
+
## 0.1.0-beta.66
|
|
9
|
+
|
|
10
|
+
- **scss/components/data-grid**
|
|
11
|
+
- Add missing row gutter breakpoint modifiers (so row gutters use breakpoint sizes)
|
|
12
|
+
- Add missing row gutter at breakpoint work with extra scales
|
|
13
|
+
|
|
3
14
|
## 0.1.0-beta.65
|
|
4
15
|
|
|
5
16
|
- **scss/element**
|
package/README.dev.md
CHANGED
package/README.md
CHANGED
|
@@ -6,5 +6,11 @@ Front end development library (SCSS, JS)
|
|
|
6
6
|
- [Change Log](CHANGELOG.md)
|
|
7
7
|
- [Development Notes](README.dev.md)
|
|
8
8
|
|
|
9
|
+
## API documentation
|
|
10
|
+
|
|
11
|
+
### scss
|
|
12
|
+
|
|
13
|
+
#### Workaround for syntax highlighting bug
|
|
14
|
+
- If the syntax highlighting isn't working properly after an example, add an empty line with "///" to workaround that bug
|
|
9
15
|
|
|
10
16
|
|