beathers 5.7.6 → 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 (48) hide show
  1. package/.prettierrc.js +10 -8
  2. package/CHANGELOG +305 -274
  3. package/css/beathers.min.css +2 -2
  4. package/css/beathers.min.css.map +1 -1
  5. package/docs/colors.md +250 -250
  6. package/docs/grid-system.md +130 -130
  7. package/docs/shaping.md +272 -272
  8. package/docs/typography.md +124 -124
  9. package/package.json +107 -105
  10. package/readme.md +301 -301
  11. package/scripts/commands/build.js +4 -4
  12. package/scripts/commands/clean.d.ts +2 -0
  13. package/scripts/commands/clean.d.ts.map +1 -0
  14. package/scripts/commands/clean.js +22 -0
  15. package/scripts/commands/fonts.d.ts.map +1 -1
  16. package/scripts/commands/fonts.js +4 -3
  17. package/scripts/commands/index.js +8 -8
  18. package/scripts/commands/init.js +1 -1
  19. package/scripts/commands/version-update.d.ts +2 -0
  20. package/scripts/commands/version-update.d.ts.map +1 -0
  21. package/scripts/commands/version-update.js +122 -0
  22. package/scripts/commands/version.js +1 -1
  23. package/scripts/helpers/BuildScssVariables.d.ts +1 -1
  24. package/scripts/helpers/BuildScssVariables.d.ts.map +1 -1
  25. package/scripts/helpers/BuildScssVariables.js +20 -10
  26. package/scripts/helpers/LoadUserConfigs.js +1 -1
  27. package/scripts/helpers/ReadDefaultValues.js +20 -20
  28. package/scripts/types.d.ts +1 -1
  29. package/scripts/types.d.ts.map +1 -1
  30. package/scss/_variables.scss +19 -19
  31. package/scss/beathers.min.scss +15 -14
  32. package/scss/functions/_colors.scss +242 -230
  33. package/scss/functions/_mediaQueries.scss +140 -136
  34. package/scss/functions/_others.scss +113 -79
  35. package/scss/functions/_typographic.scss +133 -129
  36. package/scss/functions/_validations.scss +293 -251
  37. package/scss/settings/_configs.scss +270 -270
  38. package/scss/settings/_defaults.scss +209 -214
  39. package/scss/settings/_index.scss +90 -90
  40. package/scss/style/_button.scss +103 -101
  41. package/scss/style/_colors.scss +156 -146
  42. package/scss/style/_dialog.scss +147 -146
  43. package/scss/style/_glass.scss +98 -80
  44. package/scss/style/_grid.scss +121 -95
  45. package/scss/style/_loader.scss +74 -62
  46. package/scss/style/_resets.scss +176 -168
  47. package/scss/style/_shaping.scss +561 -439
  48. package/scss/style/_typographic.scss +400 -345
package/.prettierrc.js CHANGED
@@ -1,8 +1,10 @@
1
- export default {
2
- trailingComma: 'es5',
3
- bracketSpacing: true,
4
- tabWidth: 2,
5
- printWidth: 120,
6
- semi: false,
7
- singleQuote: true,
8
- }
1
+ export default {
2
+ trailingComma: 'es5',
3
+ bracketSpacing: true,
4
+ tabWidth: 2,
5
+ printWidth: 120,
6
+ semi: false,
7
+ singleQuote: true,
8
+
9
+ overrides: [{ files: ['*.scss', '*.sass'], options: { trailingComma: 'none' } }],
10
+ }
package/CHANGELOG CHANGED
@@ -1,274 +1,305 @@
1
-
2
- # Changelog
3
-
4
- ## [5.7.4, 5.7.5, 5.7.6] - 2026-02-23
5
-
6
- ### Fixed
7
-
8
- - **mQ Mixin**: Updated default condition in mQ mixin to true and adjusted wrapper breakpoint handling for improved SCSS logic.
9
-
10
- ## [5.7.0, 5.7.1, 5.7.2, 5.7.3] - 2025-11-24
11
-
12
- ### Added
13
-
14
- - **Button Utilities**: Added comprehensive button utilities with support for rounded, circle, and sharp corners, loading states, hover effects, and proper focus management
15
- - **Configuration Options**: Added `useButton` toggle to enable/disable button utilities generation
16
-
17
- ### Changed
18
-
19
- - **Button Styles**: Moved button-related styles from resets to dedicated button module for better organization
20
-
21
- ## [5.6.2, 5.6.3] - 2025-09-27
22
-
23
- ### Added
24
-
25
- - **Documentation**: Added comprehensive documentation for colors, typography, grid system, and visual effects
26
- - **Package Configuration**: Included documentation files in package.json for better distribution
27
-
28
- ### Fixed
29
-
30
- - **SCSS Styling**: Uncommented style imports in beathers.min.scss to ensure proper styling functionality
31
-
32
- ### Changed
33
-
34
- - **Media Query Settings**: Removed useMediaQueries from theme roles and related settings for cleaner configuration
35
-
36
- ## [5.6.0, 5.6.1] - 2025-08-08
37
-
38
- ### Added
39
-
40
- - **Media Query Controls**: Added granular control over responsive utility generation with new role variables:
41
- - `useFontFamiliesMediaQueries` - Control responsive font family utilities
42
- - `useFontSizesMediaQueries` - Control responsive font size utilities
43
- - `useFontShapesMediaQueries` - Control responsive font style utilities
44
- - `useTextAlignsMediaQueries` - Control responsive text alignment utilities
45
- - `useTextTruncateMediaQueries` - Control responsive text truncation utilities
46
- - `useShadowsMediaQueries` - Control responsive shadow utilities
47
- - `useDisplaysMediaQueries` - Control responsive display utilities
48
- - `useOverflowsMediaQueries` - Control responsive overflow utilities
49
- - `useOpacitiesMediaQueries` - Control responsive opacity utilities
50
- - `useBlurMediaQueries` - Control responsive blur utilities
51
- - `useObjectFitsMediaQueries` - Control responsive object-fit utilities
52
- - `usePositionsMediaQueries` - Control responsive positioning utilities
53
- - `useInsetsMediaQueries` - Control responsive inset utilities
54
- - `useSizesMediaQueries` - Control responsive sizing utilities
55
- - `useGuttersMediaQueries` - Control responsive spacing utilities
56
- - `useBordersMediaQueries` - Control responsive border utilities
57
- - `useTextBordersMediaQueries` - Control responsive text border utilities
58
- - `useRadiusMediaQueries` - Control responsive border radius utilities
59
- - `useGridMediaQueries` - Control responsive grid utilities
60
-
61
- ### Improved
62
-
63
- - **CLI User Experience**: Significantly enhanced console output with professional, user-friendly messaging
64
- - Added meaningful emojis and color coding for better visual clarity
65
- - Implemented clean formatting for yes/no questions with clear [Y/N] options
66
- - Enhanced loading and processing state indicators
67
- - Improved error messages and success confirmations
68
- - Added consistent color styling for interactive elements (cyan, green, yellow)
69
- - **CSS Output Optimization**: Users can now fine-tune which responsive utilities are generated, reducing CSS bundle size
70
- - **Documentation**: Updated README with comprehensive documentation for all new media query control variables
71
- - **Type Safety**: Enhanced TypeScript types to include all new role variables
72
-
73
- ## [5.5.4] - 2025-07-07
74
-
75
- ### Improved
76
-
77
- - **Documentation**: Added comprehensive Glass settings documentation to README.md
78
- - **Glass utilities**: Enhanced glassmorphism configuration examples and usage instructions
79
-
80
- ### Fixed
81
-
82
- - **DeepMerge function**: Added missing glass property merging in theme configuration merge operation
83
- - Minor bug fixes and improvements
84
- - Enhanced build process stability
85
-
86
- ## [5.5.0] - 2025-07-04
87
-
88
- ### Added
89
-
90
- - **Glass effects**: New glassmorphism settings and utilities for modern UI effects
91
- - **Bhoenix branding colors**: Added official Bhoenix Studio brand colors to the color palette
92
-
93
- ### Fixed
94
-
95
- - **Typography**: Updated font mixin parameters to include font key for better font handling
96
- - **Build system**: Enhanced build process with proper isLocalBuild flag handling and improved font path resolution
97
- - **Icon fonts**: Fixed icon font path references for reliable icon loading
98
- - **Font families**: Updated font family definitions and color selections in reset styles
99
- - **CSS validation**: Improved SizeUnit type to properly handle zero values as valid CSS units
100
-
101
- ## [5.4.1] - 2025-06-15
102
-
103
- ### Fixed
104
-
105
- - Minor bug fixes and improvements
106
- - Enhanced build process stability
107
- - Improved CLI command reliability
108
- - Fixed edge cases in configuration handling
109
-
110
- ## [5.4.0] - 2025-06-12
111
-
112
- ### Changed
113
-
114
- - **BREAKING CHANGE**: Removed `dist` folder from package structure for cleaner imports
115
- - **Import paths**: Updated import paths from `beathers/dist/css/beathers.min.css` to `beathers/css/beathers.min.css`
116
- - **Package structure**: Moved CSS files from `dist/css/` to `css/` and SCSS files from `dist/scss/` to `scss/`
117
- - **Build scripts**: Updated all build and CLI scripts to work with new folder structure
118
-
119
- ### Fixed
120
-
121
- - **Package exports**: Updated package.json exports to reflect new structure without `dist` folder
122
-
123
- ## [5.3.6] - 2025-06-12
124
-
125
- ### Fixed
126
-
127
- - **CLI build paths**: Updated build paths to correctly reference package installation location
128
- - **Output directory logic**: Improved default output path handling for different execution contexts
129
-
130
- ## [5.3.5] - 2025-06-12
131
-
132
- ### Fixed
133
-
134
- - **CLI execution**: Fixed "Command failed: npm run build:pack" error when using `npx beathers` as library in other projects
135
- - **Package dependencies**: Moved `sass` from devDependencies to dependencies to ensure it's available when package is installed
136
- - **Build system**: CLI now uses sass compiler directly instead of trying to run npm scripts from user projects
137
-
138
- ## [5.3.4] - 2025-06-12
139
-
140
- ### Updated
141
-
142
- - **Package maintenance**: Minor fixes
143
-
144
- ## [5.3.3] - 2025-06-12
145
-
146
- ### Fixed
147
-
148
- - **Module exports**: Added CSS and SCSS files to package exports to fix "Module not found" error when importing CSS files
149
- - **Import paths**: Fixed package.json exports field to properly expose css/_and scss/_ files
150
-
151
- ## [5.3.2] - 2025-06-12
152
-
153
- ### Fixed
154
-
155
- - **CLI version display**: Fixed version command to show correct package version (5.3.2) instead of incorrect version
156
- - **NPM package structure**: Fixed SCSS file paths in distributed package by copying source SCSS files to scss/ directory
157
-
158
- ## [5.3.1] - 2025-06-12
159
-
160
- ### Fixed
161
-
162
- - **Module exports**: Fixed TypeScript path aliases in npm package exports to use relative paths for proper module resolution
163
-
164
- ## [5.3.0] - 2025-06-12
165
-
166
- ### Added
167
-
168
- - **Custom output path**: Added support for custom output path in build command for more flexible project structures
169
- - **Import commands**: New CLI import commands for colors and fonts to streamline workflow
170
- - **Enhanced console messaging**: Improved console.log messages across all commands for better user experience and clarity
171
- - **Type definitions enhancement**: Extended type definitions for typography and settings with new properties for font configurations, grid settings, and utility features
172
-
173
- ### Changed
174
-
175
- - **Code organization**: Moved functions to helper folder for better code structure and maintainability
176
- - **CLI cleanup**: Cleaned up CLI file structure for improved readability and maintenance
177
- - **Build script refactoring**: Refactored build scripts and removed stylelint configuration
178
- - **Path mapping**: Improved module importing with better path mapping
179
-
180
- ### Fixed
181
-
182
- - **Colors commands**: Fixed `add`, `remove` and `import` commands for colors
183
- - **Fonts commands**: Fixed `add`, `remove` and `import` commands for fonts
184
- - **Colors duplication**: Resolved issues with color duplication
185
- - **Default colors reading**: Fixed reading of default color values
186
- - **Help functions**: Updated and improved help command functions
187
-
188
- ## [5.2.2] - 2025-06-05
189
-
190
- ### Fixed
191
-
192
- - **README logo display**: Updated logo image source to use unpkg CDN for better compatibility and reliability on npm package page
193
-
194
- ## [5.2.1] - 2025-06-05
195
-
196
- ### Fixed
197
-
198
- - **ES module compatibility**: Fixed config loading to use `pathToFileURL` for better compatibility with ES modules
199
- - **Import resolution**: Enhanced module import handling in `LoadUserConfigs.ts` for cross-platform compatibility
200
-
201
- ## [5.2.0] - 2025-06-05
202
-
203
- ### Added
204
-
205
- - **Enhanced theme building system**: Complete refactor of `ReadDefaultValues.ts` with improved SCSS variable parsing
206
- - **Better default theme loading**: Added proper merging of default values with user configurations in `BuildTheme.ts`
207
- - **Improved type definitions**: Consolidated and organized type exports in `types.ts` for better developer experience
208
- - **Enhanced configuration handling**: Better support for nullish coalescing in `LoadUserConfigs.ts`
209
- - **More robust SCSS parsing**: Enhanced parsing logic for colors, fonts, breakpoints, and wrappers
210
- - **Better wrapper configuration**: Fixed wrapper property structure (size → width) for consistency
211
-
212
- ### Changed
213
-
214
- - **Type system overhaul**: Moved from separate type exports to consolidated type definitions
215
- - **Better configuration merging**: Enhanced default theme loading and user config integration
216
- - **Improved code organization**: More consistent code structure across TypeScript files
217
- - **Enhanced error handling**: Better validation and error messages in configuration loading
218
-
219
- ### Fixed
220
-
221
- - **Configuration parsing bugs**: Fixed various issues with SCSS variable parsing
222
- - **Type consistency**: Resolved type mismatches between different modules
223
- - **Wrapper configuration**: Fixed property naming inconsistency in wrapper settings
224
-
225
- ## [5.1.1] - 2025-06-05
226
-
227
- ### Fixed
228
-
229
- - Small bug fixes and improvements
230
-
231
- ## [5.1.0] - 2025-06-05
232
-
233
- ### Added
234
-
235
- - Enhanced CSS utility documentation in README
236
- - Comprehensive configuration examples for TypeScript users
237
- - Improved color utility system with better dark/light mode support
238
- - Font weight and size utility examples
239
-
240
- ### Changed
241
-
242
- - Updated README with detailed configuration tables
243
- - Improved TypeScript configuration examples
244
- - Enhanced documentation structure and readability
245
-
246
- ### Fixed
247
-
248
- - Configuration file format consistency
249
- - TypeScript type definitions alignment
250
-
251
- ## [5.0.0] - Initial Release
252
-
253
- ### Added
254
-
255
- - Core SCSS framework with utility-first approach
256
- - Interactive CLI tool for theme configuration
257
- - Comprehensive color system with light/dark variants
258
- - Typography utilities with customizable font families and sizes
259
- - Responsive grid system with 12-column layout
260
- - Flexbox utilities for modern layouts
261
- - Spacing utilities with customizable gutters
262
- - Border and border-radius utilities
263
- - Shadow and blur effects
264
- - Position and sizing utilities
265
- - Opacity and overflow utilities
266
- - Transition utilities for smooth animations
267
- - Display utilities for various layout needs
268
- - Container/wrapper utilities for responsive layouts
269
- - Icon integration support
270
- - Complete customization through configuration files
271
- - Support for JSON, JS, and TypeScript config formats
272
- - CSS custom properties (CSS variables) generation
273
- - Media query utilities for responsive design
274
- - Text alignment and truncation utilities
1
+
2
+ # Changelog
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
+
41
+ ## [5.7.0, 5.7.1, 5.7.2, 5.7.3] - 2025-11-24
42
+
43
+ ### Added
44
+
45
+ - **Button Utilities**: Added comprehensive button utilities with support for rounded, circle, and sharp corners, loading states, hover effects, and proper focus management
46
+ - **Configuration Options**: Added `useButton` toggle to enable/disable button utilities generation
47
+
48
+ ### Changed
49
+
50
+ - **Button Styles**: Moved button-related styles from resets to dedicated button module for better organization
51
+
52
+ ## [5.6.2, 5.6.3] - 2025-09-27
53
+
54
+ ### Added
55
+
56
+ - **Documentation**: Added comprehensive documentation for colors, typography, grid system, and visual effects
57
+ - **Package Configuration**: Included documentation files in package.json for better distribution
58
+
59
+ ### Fixed
60
+
61
+ - **SCSS Styling**: Uncommented style imports in beathers.min.scss to ensure proper styling functionality
62
+
63
+ ### Changed
64
+
65
+ - **Media Query Settings**: Removed useMediaQueries from theme roles and related settings for cleaner configuration
66
+
67
+ ## [5.6.0, 5.6.1] - 2025-08-08
68
+
69
+ ### Added
70
+
71
+ - **Media Query Controls**: Added granular control over responsive utility generation with new role variables:
72
+ - `useFontFamiliesMediaQueries` - Control responsive font family utilities
73
+ - `useFontSizesMediaQueries` - Control responsive font size utilities
74
+ - `useFontShapesMediaQueries` - Control responsive font style utilities
75
+ - `useTextAlignsMediaQueries` - Control responsive text alignment utilities
76
+ - `useTextTruncateMediaQueries` - Control responsive text truncation utilities
77
+ - `useShadowsMediaQueries` - Control responsive shadow utilities
78
+ - `useDisplaysMediaQueries` - Control responsive display utilities
79
+ - `useOverflowsMediaQueries` - Control responsive overflow utilities
80
+ - `useOpacitiesMediaQueries` - Control responsive opacity utilities
81
+ - `useBlurMediaQueries` - Control responsive blur utilities
82
+ - `useObjectFitsMediaQueries` - Control responsive object-fit utilities
83
+ - `usePositionsMediaQueries` - Control responsive positioning utilities
84
+ - `useInsetsMediaQueries` - Control responsive inset utilities
85
+ - `useSizesMediaQueries` - Control responsive sizing utilities
86
+ - `useGuttersMediaQueries` - Control responsive spacing utilities
87
+ - `useBordersMediaQueries` - Control responsive border utilities
88
+ - `useTextBordersMediaQueries` - Control responsive text border utilities
89
+ - `useRadiusMediaQueries` - Control responsive border radius utilities
90
+ - `useGridMediaQueries` - Control responsive grid utilities
91
+
92
+ ### Improved
93
+
94
+ - **CLI User Experience**: Significantly enhanced console output with professional, user-friendly messaging
95
+ - Added meaningful emojis and color coding for better visual clarity
96
+ - Implemented clean formatting for yes/no questions with clear [Y/N] options
97
+ - Enhanced loading and processing state indicators
98
+ - Improved error messages and success confirmations
99
+ - Added consistent color styling for interactive elements (cyan, green, yellow)
100
+ - **CSS Output Optimization**: Users can now fine-tune which responsive utilities are generated, reducing CSS bundle size
101
+ - **Documentation**: Updated README with comprehensive documentation for all new media query control variables
102
+ - **Type Safety**: Enhanced TypeScript types to include all new role variables
103
+
104
+ ## [5.5.4] - 2025-07-07
105
+
106
+ ### Improved
107
+
108
+ - **Documentation**: Added comprehensive Glass settings documentation to README.md
109
+ - **Glass utilities**: Enhanced glassmorphism configuration examples and usage instructions
110
+
111
+ ### Fixed
112
+
113
+ - **DeepMerge function**: Added missing glass property merging in theme configuration merge operation
114
+ - Minor bug fixes and improvements
115
+ - Enhanced build process stability
116
+
117
+ ## [5.5.0] - 2025-07-04
118
+
119
+ ### Added
120
+
121
+ - **Glass effects**: New glassmorphism settings and utilities for modern UI effects
122
+ - **Bhoenix branding colors**: Added official Bhoenix Studio brand colors to the color palette
123
+
124
+ ### Fixed
125
+
126
+ - **Typography**: Updated font mixin parameters to include font key for better font handling
127
+ - **Build system**: Enhanced build process with proper isLocalBuild flag handling and improved font path resolution
128
+ - **Icon fonts**: Fixed icon font path references for reliable icon loading
129
+ - **Font families**: Updated font family definitions and color selections in reset styles
130
+ - **CSS validation**: Improved SizeUnit type to properly handle zero values as valid CSS units
131
+
132
+ ## [5.4.1] - 2025-06-15
133
+
134
+ ### Fixed
135
+
136
+ - Minor bug fixes and improvements
137
+ - Enhanced build process stability
138
+ - Improved CLI command reliability
139
+ - Fixed edge cases in configuration handling
140
+
141
+ ## [5.4.0] - 2025-06-12
142
+
143
+ ### Changed
144
+
145
+ - **BREAKING CHANGE**: Removed `dist` folder from package structure for cleaner imports
146
+ - **Import paths**: Updated import paths from `beathers/dist/css/beathers.min.css` to `beathers/css/beathers.min.css`
147
+ - **Package structure**: Moved CSS files from `dist/css/` to `css/` and SCSS files from `dist/scss/` to `scss/`
148
+ - **Build scripts**: Updated all build and CLI scripts to work with new folder structure
149
+
150
+ ### Fixed
151
+
152
+ - **Package exports**: Updated package.json exports to reflect new structure without `dist` folder
153
+
154
+ ## [5.3.6] - 2025-06-12
155
+
156
+ ### Fixed
157
+
158
+ - **CLI build paths**: Updated build paths to correctly reference package installation location
159
+ - **Output directory logic**: Improved default output path handling for different execution contexts
160
+
161
+ ## [5.3.5] - 2025-06-12
162
+
163
+ ### Fixed
164
+
165
+ - **CLI execution**: Fixed "Command failed: npm run build:pack" error when using `npx beathers` as library in other projects
166
+ - **Package dependencies**: Moved `sass` from devDependencies to dependencies to ensure it's available when package is installed
167
+ - **Build system**: CLI now uses sass compiler directly instead of trying to run npm scripts from user projects
168
+
169
+ ## [5.3.4] - 2025-06-12
170
+
171
+ ### Updated
172
+
173
+ - **Package maintenance**: Minor fixes
174
+
175
+ ## [5.3.3] - 2025-06-12
176
+
177
+ ### Fixed
178
+
179
+ - **Module exports**: Added CSS and SCSS files to package exports to fix "Module not found" error when importing CSS files
180
+ - **Import paths**: Fixed package.json exports field to properly expose css/_and scss/_ files
181
+
182
+ ## [5.3.2] - 2025-06-12
183
+
184
+ ### Fixed
185
+
186
+ - **CLI version display**: Fixed version command to show correct package version (5.3.2) instead of incorrect version
187
+ - **NPM package structure**: Fixed SCSS file paths in distributed package by copying source SCSS files to scss/ directory
188
+
189
+ ## [5.3.1] - 2025-06-12
190
+
191
+ ### Fixed
192
+
193
+ - **Module exports**: Fixed TypeScript path aliases in npm package exports to use relative paths for proper module resolution
194
+
195
+ ## [5.3.0] - 2025-06-12
196
+
197
+ ### Added
198
+
199
+ - **Custom output path**: Added support for custom output path in build command for more flexible project structures
200
+ - **Import commands**: New CLI import commands for colors and fonts to streamline workflow
201
+ - **Enhanced console messaging**: Improved console.log messages across all commands for better user experience and clarity
202
+ - **Type definitions enhancement**: Extended type definitions for typography and settings with new properties for font configurations, grid settings, and utility features
203
+
204
+ ### Changed
205
+
206
+ - **Code organization**: Moved functions to helper folder for better code structure and maintainability
207
+ - **CLI cleanup**: Cleaned up CLI file structure for improved readability and maintenance
208
+ - **Build script refactoring**: Refactored build scripts and removed stylelint configuration
209
+ - **Path mapping**: Improved module importing with better path mapping
210
+
211
+ ### Fixed
212
+
213
+ - **Colors commands**: Fixed `add`, `remove` and `import` commands for colors
214
+ - **Fonts commands**: Fixed `add`, `remove` and `import` commands for fonts
215
+ - **Colors duplication**: Resolved issues with color duplication
216
+ - **Default colors reading**: Fixed reading of default color values
217
+ - **Help functions**: Updated and improved help command functions
218
+
219
+ ## [5.2.2] - 2025-06-05
220
+
221
+ ### Fixed
222
+
223
+ - **README logo display**: Updated logo image source to use unpkg CDN for better compatibility and reliability on npm package page
224
+
225
+ ## [5.2.1] - 2025-06-05
226
+
227
+ ### Fixed
228
+
229
+ - **ES module compatibility**: Fixed config loading to use `pathToFileURL` for better compatibility with ES modules
230
+ - **Import resolution**: Enhanced module import handling in `LoadUserConfigs.ts` for cross-platform compatibility
231
+
232
+ ## [5.2.0] - 2025-06-05
233
+
234
+ ### Added
235
+
236
+ - **Enhanced theme building system**: Complete refactor of `ReadDefaultValues.ts` with improved SCSS variable parsing
237
+ - **Better default theme loading**: Added proper merging of default values with user configurations in `BuildTheme.ts`
238
+ - **Improved type definitions**: Consolidated and organized type exports in `types.ts` for better developer experience
239
+ - **Enhanced configuration handling**: Better support for nullish coalescing in `LoadUserConfigs.ts`
240
+ - **More robust SCSS parsing**: Enhanced parsing logic for colors, fonts, breakpoints, and wrappers
241
+ - **Better wrapper configuration**: Fixed wrapper property structure (size → width) for consistency
242
+
243
+ ### Changed
244
+
245
+ - **Type system overhaul**: Moved from separate type exports to consolidated type definitions
246
+ - **Better configuration merging**: Enhanced default theme loading and user config integration
247
+ - **Improved code organization**: More consistent code structure across TypeScript files
248
+ - **Enhanced error handling**: Better validation and error messages in configuration loading
249
+
250
+ ### Fixed
251
+
252
+ - **Configuration parsing bugs**: Fixed various issues with SCSS variable parsing
253
+ - **Type consistency**: Resolved type mismatches between different modules
254
+ - **Wrapper configuration**: Fixed property naming inconsistency in wrapper settings
255
+
256
+ ## [5.1.1] - 2025-06-05
257
+
258
+ ### Fixed
259
+
260
+ - Small bug fixes and improvements
261
+
262
+ ## [5.1.0] - 2025-06-05
263
+
264
+ ### Added
265
+
266
+ - Enhanced CSS utility documentation in README
267
+ - Comprehensive configuration examples for TypeScript users
268
+ - Improved color utility system with better dark/light mode support
269
+ - Font weight and size utility examples
270
+
271
+ ### Changed
272
+
273
+ - Updated README with detailed configuration tables
274
+ - Improved TypeScript configuration examples
275
+ - Enhanced documentation structure and readability
276
+
277
+ ### Fixed
278
+
279
+ - Configuration file format consistency
280
+ - TypeScript type definitions alignment
281
+
282
+ ## [5.0.0] - Initial Release
283
+
284
+ ### Added
285
+
286
+ - Core SCSS framework with utility-first approach
287
+ - Interactive CLI tool for theme configuration
288
+ - Comprehensive color system with light/dark variants
289
+ - Typography utilities with customizable font families and sizes
290
+ - Responsive grid system with 12-column layout
291
+ - Flexbox utilities for modern layouts
292
+ - Spacing utilities with customizable gutters
293
+ - Border and border-radius utilities
294
+ - Shadow and blur effects
295
+ - Position and sizing utilities
296
+ - Opacity and overflow utilities
297
+ - Transition utilities for smooth animations
298
+ - Display utilities for various layout needs
299
+ - Container/wrapper utilities for responsive layouts
300
+ - Icon integration support
301
+ - Complete customization through configuration files
302
+ - Support for JSON, JS, and TypeScript config formats
303
+ - CSS custom properties (CSS variables) generation
304
+ - Media query utilities for responsive design
305
+ - Text alignment and truncation utilities