beathers 5.7.2 → 5.7.5

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