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.
Files changed (44) hide show
  1. package/.prettierrc.js +2 -0
  2. package/CHANGELOG +39 -1
  3. package/css/beathers.min.css +3 -3
  4. package/css/beathers.min.css.map +1 -1
  5. package/package.json +40 -34
  6. package/readme.md +2 -2
  7. package/scripts/cli.js +0 -0
  8. package/scripts/commands/build.js +4 -4
  9. package/scripts/commands/clean.d.ts +2 -0
  10. package/scripts/commands/clean.d.ts.map +1 -0
  11. package/scripts/commands/clean.js +22 -0
  12. package/scripts/commands/fonts.d.ts.map +1 -1
  13. package/scripts/commands/fonts.js +4 -3
  14. package/scripts/commands/index.js +8 -8
  15. package/scripts/commands/init.js +1 -1
  16. package/scripts/commands/version-update.d.ts +2 -0
  17. package/scripts/commands/version-update.d.ts.map +1 -0
  18. package/scripts/commands/version-update.js +122 -0
  19. package/scripts/commands/version.js +1 -1
  20. package/scripts/helpers/BuildScssVariables.d.ts +1 -1
  21. package/scripts/helpers/BuildScssVariables.d.ts.map +1 -1
  22. package/scripts/helpers/BuildScssVariables.js +20 -10
  23. package/scripts/helpers/LoadUserConfigs.js +1 -1
  24. package/scripts/helpers/ReadDefaultValues.js +20 -20
  25. package/scripts/types.d.ts +1 -1
  26. package/scripts/types.d.ts.map +1 -1
  27. package/scss/_variables.scss +106 -106
  28. package/scss/beathers.min.scss +2 -2
  29. package/scss/functions/_colors.scss +19 -7
  30. package/scss/functions/_mediaQueries.scss +7 -3
  31. package/scss/functions/_others.scss +49 -15
  32. package/scss/functions/_typographic.scss +6 -2
  33. package/scss/functions/_validations.scss +71 -29
  34. package/scss/settings/_configs.scss +48 -48
  35. package/scss/settings/_defaults.scss +26 -31
  36. package/scss/style/_button.scss +9 -7
  37. package/scss/style/_colors.scss +15 -5
  38. package/scss/style/_dialog.scss +28 -27
  39. package/scss/style/_glass.scss +27 -9
  40. package/scss/style/_grid.scss +36 -10
  41. package/scss/style/_loader.scss +20 -8
  42. package/scss/style/_resets.scss +12 -4
  43. package/scss/style/_shaping.scss +235 -106
  44. package/scss/style/_typographic.scss +101 -46
package/.prettierrc.js CHANGED
@@ -5,4 +5,6 @@ export default {
5
5
  printWidth: 120,
6
6
  semi: false,
7
7
  singleQuote: true,
8
+
9
+ overrides: [{ files: ['*.scss', '*.sass'], options: { trailingComma: 'none' } }],
8
10
  }
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/_ and scss/_ files
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