yummacss 0.1.1 → 1.0.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 CHANGED
@@ -44,3 +44,62 @@ All notable changes to the Yumma CSS Library will be documented in this file.
44
44
 
45
45
  ### Deprecated
46
46
  - None
47
+
48
+ ## v0.2.0
49
+
50
+ ### Added
51
+ - Added the `!default` flag to variables and maps in the _variables.scss file
52
+
53
+ ### Changed
54
+ - None
55
+
56
+ ### Fixed
57
+ - None
58
+
59
+ ### Deprecated
60
+ - None
61
+
62
+ ## v1.0.0
63
+
64
+ ### Added
65
+ - Added `flow-root` property to **Display** classes.
66
+ - Added `inline-start` and `inline-end` properties to **Float** classes.
67
+ - Added `justify-all` and `match-parent` properties to **Text Align** classes.
68
+ - Added `overline` property to **Text Decoration Line** classes.
69
+ - Added `flex-start` and `flex-end` properties to **Align Items** classes.
70
+ - Added `end`, `flex-start`, `flex-end`, `left`, `right`, `normal` and `stretch` properties to **Justify Content** classes.
71
+ - Added `.mx` and `.my` **Margin** classes.
72
+ - Added `.px` and `.py` **Padding** classes.
73
+ - Added viewport values for **Height** and **Width** classes.
74
+ - Added the color `lead` in the Color Palette.
75
+ - Added **Align Content** classes.
76
+ - Added **Align Self** classes.
77
+ - Added **Flex Basis** classes.
78
+ - Added **Flex Grow** classes.
79
+ - Added **Grid Auto Columns** classes.
80
+ - Added **Grid Auto Flow** classes.
81
+ - Added **Grid Auto Rows** classes.
82
+ - Added **Justify Items** classes.
83
+ - Added **Justify Self** classes.
84
+ - Added **Cursor** classes.
85
+ - Added **List Style Type** classes.
86
+ - Added **Appearance** classes.
87
+ - Added **Pointer Events** classes.
88
+ - Added **User Select** classes.
89
+ - Added **Caret Colors** classes.
90
+ - Added **Font Family** classes.
91
+ - Added **Text Decoration** classes.
92
+
93
+ ### Changed
94
+ - Updated display class syntax from `dis-{value}` to `d-{value}`.
95
+ - Updated hover state class syntax from `{value}-h-{value}` to `h:{value}`.
96
+ - Updated `greet()` function name to `showVer()`.
97
+ - Color palettes now use RGB.
98
+
99
+ ### Fixed
100
+ - Small CSS resetting improvements.
101
+
102
+ ### Deprecated
103
+ - Removed `break-all` and `keep-all` properties from **Overflow Wrap** classes.
104
+ - Removed duplicate classes for **Justify Content** classes.
105
+ - Removed class `nav-l` from navbar.scss.
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2023 Renildo Pereira
3
+ Copyright (c) 2023 Yumma CSS
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -18,28 +18,28 @@ npm install yummacss
18
18
  ```
19
19
 
20
20
  ## Version Display
21
- To display the Yumma CSS version in your console, import the following code snippet and call the `greet` function:
21
+ To display the Yumma CSS version in your console, import the following code snippet and call the `showVer` function:
22
22
 
23
23
  ```js
24
24
  const packageJson = require('./package.json');
25
25
 
26
- const greet = () => {
26
+ const showVer = () => {
27
27
  const version = packageJson.version;
28
28
  console.log(`You're running Yumma CSS v${version}`);
29
29
  };
30
30
 
31
- module.exports = { greet };
31
+ module.exports = { showVer };
32
32
  ```
33
33
 
34
34
  ### How to use
35
- To display the Yumma CSS version in your console, just call the `greet` function in your project code:
35
+ To display the Yumma CSS version in your console, just call the `showVer` function in your project code:
36
36
 
37
37
  ```js
38
- const { greet } = require('./index');
38
+ const { showVer } = require('./index');
39
39
  ```
40
40
 
41
41
  ## Documentation
42
- For comprehensive documentation, visit the [Yumma CSS Docs](https://yummacss.netlify.app/).
42
+ For comprehensive documentation, visit the [Yumma CSS Docs](https://yummacss.vercel.app/).
43
43
 
44
44
  ## License
45
45
  Yumma CSS is open-source software licensed under the MIT License.