yummacss 1.0.3 → 1.1.0
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 +22 -0
- package/README.md +7 -7
- package/dist/yumma.css +42920 -437
- package/dist/yumma.min.css +1 -1
- package/gulpfile.js +1 -1
- package/index.js +2 -2
- package/package.json +1 -1
- package/yumma-css/_breakpoints.scss +8 -8
- package/yumma-css/_colors.scss +14 -2
- package/yumma-css/_fonts.scss +9 -9
- package/yumma-css/_functions.scss +2 -2
- package/yumma-css/_grid.scss +11 -12
- package/yumma-css/_layout.scss +5 -5
- package/yumma-css/{_utilities.scss → _utils.scss} +308 -70
- package/yumma-css/_variables.scss +28 -24
- package/yumma-css/components/_button.scss +3 -2
- package/yumma-css/components/_card.scss +1 -1
- package/yumma-css/index.scss +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -144,5 +144,27 @@ All notable changes to the Yumma CSS Library will be documented in this file.
|
|
|
144
144
|
### Fixed
|
|
145
145
|
- None
|
|
146
146
|
|
|
147
|
+
### Deprecated
|
|
148
|
+
- None
|
|
149
|
+
|
|
150
|
+
## v1.1.0
|
|
151
|
+
|
|
152
|
+
### Added
|
|
153
|
+
- Added responsive classes for utility classes.
|
|
154
|
+
- Added transition property to button component.
|
|
155
|
+
- Added extra small variant for font size classes.
|
|
156
|
+
- Added `.dim-{value}` classes.
|
|
157
|
+
|
|
158
|
+
### Changed
|
|
159
|
+
- Updated syntax for column responsive classes.
|
|
160
|
+
- Updated box shadow syntax from `bs-xsm` to `bs-xs` and `bs-xlg` to `bs-xl`.
|
|
161
|
+
- Updated box shadow syntax from `fs-xlg` to `bs-xl`.
|
|
162
|
+
- Updated box shadow syntax from `col-{value}` to `cols-{value}`.
|
|
163
|
+
|
|
164
|
+
### Fixed
|
|
165
|
+
- Fixed list style type syntax from `tst-{value}` to `lst-{value}`.
|
|
166
|
+
- Fixed `fs-md` class not working.
|
|
167
|
+
- Fixed caret color variants.
|
|
168
|
+
|
|
147
169
|
### Deprecated
|
|
148
170
|
- None
|
package/README.md
CHANGED
|
@@ -22,24 +22,24 @@
|
|
|
22
22
|
</p>
|
|
23
23
|
|
|
24
24
|
<p align="center">
|
|
25
|
-
<a href="https://www.npmjs.com/
|
|
26
|
-
<img src="https://img.shields.io/npm/v/yummacss
|
|
25
|
+
<a href="https://www.npmjs.com/package/yummacss?activeTab=versions">
|
|
26
|
+
<img src="https://img.shields.io/npm/v/yummacss" alt="npm version">
|
|
27
27
|
</a>
|
|
28
|
-
<a href="https://www.npmjs.com/yummacss
|
|
29
|
-
<img src="https://img.shields.io/npm/dt/yummacss
|
|
28
|
+
<a href="https://www.npmjs.com/yummacss">
|
|
29
|
+
<img src="https://img.shields.io/npm/dt/yummacss" alt="Downloads">
|
|
30
30
|
</a>
|
|
31
|
-
<a href="https://
|
|
31
|
+
<a href="https://github.com/yumma-lib/yumma-css-docs?tab=MIT-1-ov-file#readme">
|
|
32
32
|
<img src="https://img.shields.io/badge/License-MIT-blue.svg" alt="License">
|
|
33
33
|
</a>
|
|
34
34
|
</p>
|
|
35
35
|
|
|
36
36
|
## Getting Started
|
|
37
37
|
|
|
38
|
-
You can use [npm](https://www.npmjs.com/yummacss
|
|
38
|
+
You can use [npm](https://www.npmjs.com/yummacss) to include the Yumma CSS in your project, or you can add it using [jsDelivr](https://www.jsdelivr.com/):
|
|
39
39
|
|
|
40
40
|
### cdn
|
|
41
41
|
```
|
|
42
|
-
<link href="https://cdn.jsdelivr.net/npm/yummacss/dist/yumma.min.css rel="stylesheet" crossorigin="anonymous">
|
|
42
|
+
<link href="https://cdn.jsdelivr.net/npm/yummacss/dist/yumma.min.css" rel="stylesheet" crossorigin="anonymous">
|
|
43
43
|
```
|
|
44
44
|
|
|
45
45
|
### npm
|