yummacss 1.0.2 → 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 +36 -0
- package/README.md +48 -43
- package/dist/yumma.css +42920 -437
- package/dist/yumma.min.css +1 -0
- package/gulpfile.js +2 -2
- package/index.js +2 -2
- package/package.json +4 -2
- 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/public/css/yumma.min.css +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -130,5 +130,41 @@ All notable changes to the Yumma CSS Library will be documented in this file.
|
|
|
130
130
|
- Fixed viewport classes from not working.
|
|
131
131
|
- Fixed caret color light and dark variations.
|
|
132
132
|
|
|
133
|
+
### Deprecated
|
|
134
|
+
- None
|
|
135
|
+
|
|
136
|
+
## v1.0.3
|
|
137
|
+
|
|
138
|
+
### Added
|
|
139
|
+
- None
|
|
140
|
+
|
|
141
|
+
### Changed
|
|
142
|
+
- Minified CSS file moved to the `/dist` folder.
|
|
143
|
+
|
|
144
|
+
### Fixed
|
|
145
|
+
- None
|
|
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
|
+
|
|
133
169
|
### Deprecated
|
|
134
170
|
- None
|
package/README.md
CHANGED
|
@@ -1,54 +1,59 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
<img src="https://
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
<
|
|
1
|
+
<p align="center">
|
|
2
|
+
<a href="https://yummacss.vercel.app/">
|
|
3
|
+
<img src="https://yummacss.vercel.app/img/yumma-css.png" width="64" alt="Yumma CSS Logo">
|
|
4
|
+
</a>
|
|
5
|
+
</p>
|
|
6
|
+
|
|
7
|
+
<h3 align="center">Yumma CSS</h3>
|
|
8
|
+
|
|
9
|
+
<p align="center">
|
|
10
|
+
Lightweight and streamlined CSS library that provides a set of tools to simplify web development.
|
|
11
|
+
<br>
|
|
12
|
+
<a href="https://yummacss.vercel.app/"><strong>Explore Yumma CSS Docs ↝</strong></a>
|
|
13
|
+
<br>
|
|
14
|
+
<br>
|
|
15
|
+
<a href="https://yummacss-editor.vercel.app/">Try Yumma CSS</a>
|
|
16
|
+
•
|
|
17
|
+
<a href="https://github.com/yumma-lib/yumma-css/issues">VS Code Extension</a>
|
|
18
|
+
•
|
|
19
|
+
<a href="https://yummacss.vercel.app/blog">Blog</a>
|
|
20
|
+
•
|
|
21
|
+
<a href="https://github.com/yumma-lib/yumma-css/issues">Issues</a>
|
|
22
|
+
</p>
|
|
23
|
+
|
|
24
|
+
<p align="center">
|
|
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
|
+
</a>
|
|
28
|
+
<a href="https://www.npmjs.com/yummacss">
|
|
29
|
+
<img src="https://img.shields.io/npm/dt/yummacss" alt="Downloads">
|
|
30
|
+
</a>
|
|
31
|
+
<a href="https://github.com/yumma-lib/yumma-css-docs?tab=MIT-1-ov-file#readme">
|
|
32
|
+
<img src="https://img.shields.io/badge/License-MIT-blue.svg" alt="License">
|
|
33
|
+
</a>
|
|
34
|
+
</p>
|
|
35
|
+
|
|
36
|
+
## Getting Started
|
|
37
|
+
|
|
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
|
+
|
|
40
|
+
### cdn
|
|
13
41
|
```
|
|
14
|
-
|
|
15
|
-
### Install via NPM
|
|
42
|
+
<link href="https://cdn.jsdelivr.net/npm/yummacss/dist/yumma.min.css" rel="stylesheet" crossorigin="anonymous">
|
|
16
43
|
```
|
|
17
|
-
npm install yummacss
|
|
18
|
-
```
|
|
19
|
-
|
|
20
|
-
## Version Display
|
|
21
|
-
To display the Yumma CSS version in your console, import the following code snippet and call the `showVer` function:
|
|
22
|
-
|
|
23
|
-
```js
|
|
24
|
-
const packageJson = require('./package.json');
|
|
25
44
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
};
|
|
30
|
-
|
|
31
|
-
module.exports = { showVer };
|
|
32
|
-
```
|
|
33
|
-
|
|
34
|
-
### How to use
|
|
35
|
-
To display the Yumma CSS version in your console, just call the `showVer` function in your project code:
|
|
36
|
-
|
|
37
|
-
```js
|
|
38
|
-
const { showVer } = require('./index');
|
|
45
|
+
### npm
|
|
46
|
+
```bash
|
|
47
|
+
npm install yummacss
|
|
39
48
|
```
|
|
40
49
|
|
|
41
|
-
##
|
|
42
|
-
For comprehensive documentation, visit the [Yumma CSS Docs](https://yummacss.vercel.app/).
|
|
43
|
-
|
|
44
|
-
## License
|
|
45
|
-
Yumma CSS is open-source software licensed under the MIT License.
|
|
46
|
-
|
|
47
|
-
## Support
|
|
50
|
+
## Community
|
|
48
51
|
|
|
49
52
|
If you have questions or want to stay updated on our projects, here are some ways to connect with us:
|
|
50
53
|
|
|
51
54
|
- Join our [Discord](https://discord.gg/CGw5vyqmQ6) server.
|
|
52
55
|
- Follow us on [Twitter](https://twitter.com/yummacss) for the latest updates.
|
|
53
56
|
|
|
54
|
-
|
|
57
|
+
## Contributing
|
|
58
|
+
|
|
59
|
+
If you'd like to show your support for our work, [you can buy me a coffee](https://www.buymeacoffee.com/rrenildoo).
|