beathers 5.7.3 → 5.9.1
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/.prettierrc.js +2 -0
- package/CHANGELOG +39 -1
- package/css/beathers.min.css +3 -3
- package/css/beathers.min.css.map +1 -1
- package/package.json +40 -34
- package/readme.md +2 -2
- package/scripts/cli.js +0 -0
- package/scripts/commands/build.js +4 -4
- package/scripts/commands/clean.d.ts +2 -0
- package/scripts/commands/clean.d.ts.map +1 -0
- package/scripts/commands/clean.js +22 -0
- package/scripts/commands/fonts.d.ts.map +1 -1
- package/scripts/commands/fonts.js +4 -3
- package/scripts/commands/index.js +8 -8
- package/scripts/commands/init.js +1 -1
- package/scripts/commands/version-update.d.ts +2 -0
- package/scripts/commands/version-update.d.ts.map +1 -0
- package/scripts/commands/version-update.js +122 -0
- package/scripts/commands/version.js +1 -1
- package/scripts/helpers/BuildScssVariables.d.ts +1 -1
- package/scripts/helpers/BuildScssVariables.d.ts.map +1 -1
- package/scripts/helpers/BuildScssVariables.js +20 -10
- package/scripts/helpers/LoadUserConfigs.js +1 -1
- package/scripts/helpers/ReadDefaultValues.js +20 -20
- package/scripts/types.d.ts +1 -1
- package/scripts/types.d.ts.map +1 -1
- package/scss/_variables.scss +106 -106
- package/scss/beathers.min.scss +2 -2
- package/scss/functions/_colors.scss +19 -7
- package/scss/functions/_mediaQueries.scss +7 -3
- package/scss/functions/_others.scss +49 -15
- package/scss/functions/_typographic.scss +6 -2
- package/scss/functions/_validations.scss +71 -29
- package/scss/settings/_configs.scss +48 -48
- package/scss/settings/_defaults.scss +26 -31
- package/scss/style/_button.scss +9 -7
- package/scss/style/_colors.scss +15 -5
- package/scss/style/_dialog.scss +28 -27
- package/scss/style/_glass.scss +27 -9
- package/scss/style/_grid.scss +36 -10
- package/scss/style/_loader.scss +20 -8
- package/scss/style/_resets.scss +12 -4
- package/scss/style/_shaping.scss +235 -106
- package/scss/style/_typographic.scss +101 -46
package/.prettierrc.js
CHANGED
package/CHANGELOG
CHANGED
|
@@ -1,5 +1,43 @@
|
|
|
1
|
+
|
|
1
2
|
# Changelog
|
|
2
3
|
|
|
4
|
+
## [5.9.0, 5.9.1] - 2026-04-01
|
|
5
|
+
|
|
6
|
+
### Changed
|
|
7
|
+
|
|
8
|
+
- Refactored SCSS variable assignments to use `sass()` for improved null checks and default values across style files, enhancing code readability and consistency.
|
|
9
|
+
- Updated button styles and corner radius definitions for better visual consistency.
|
|
10
|
+
- Updated import statements to use Node module syntax.
|
|
11
|
+
- Refactored code structure for improved readability and maintainability.
|
|
12
|
+
- Updated build:clean and build:update scripts for improved reliability and to use new commands.
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- Removed trailing commas in SCSS variable definitions for syntax consistency.
|
|
17
|
+
- Enhanced null checks in validation functions using `sass()` for better error handling.
|
|
18
|
+
- Removed unused stylelint rules and cleaned up SCSS files.
|
|
19
|
+
- Replaced error messages with debug statements in validation functions.
|
|
20
|
+
- Removed debug statements for cleaner color definitions.
|
|
21
|
+
- Removed baseUrl and paths from tsconfig.json for cleaner configuration.
|
|
22
|
+
- Corrected font name assignment in font-face mixin and improved unicode check spacing.
|
|
23
|
+
|
|
24
|
+
### Added
|
|
25
|
+
|
|
26
|
+
- Added version update script with changelog integration.
|
|
27
|
+
- Added overrides for SCSS and SASS files in Prettier configuration.
|
|
28
|
+
|
|
29
|
+
## [5.8.0] - 2026-03-31
|
|
30
|
+
|
|
31
|
+
### Changed
|
|
32
|
+
|
|
33
|
+
- Fix some font issues.
|
|
34
|
+
|
|
35
|
+
## [5.7.4, 5.7.5, 5.7.6] - 2026-02-23
|
|
36
|
+
|
|
37
|
+
### Fixed
|
|
38
|
+
|
|
39
|
+
- **mQ Mixin**: Updated default condition in mQ mixin to true and adjusted wrapper breakpoint handling for improved SCSS logic.
|
|
40
|
+
|
|
3
41
|
## [5.7.0, 5.7.1, 5.7.2, 5.7.3] - 2025-11-24
|
|
4
42
|
|
|
5
43
|
### Added
|
|
@@ -139,7 +177,7 @@
|
|
|
139
177
|
### Fixed
|
|
140
178
|
|
|
141
179
|
- **Module exports**: Added CSS and SCSS files to package exports to fix "Module not found" error when importing CSS files
|
|
142
|
-
- **Import paths**: Fixed package.json exports field to properly expose css/
|
|
180
|
+
- **Import paths**: Fixed package.json exports field to properly expose css/_and scss/_ files
|
|
143
181
|
|
|
144
182
|
## [5.3.2] - 2025-06-12
|
|
145
183
|
|