beathers 5.4.0 → 5.4.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 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,167 +1,176 @@
1
- # Changelog
2
-
3
- ## [5.4.0] - 2025-06-12
4
-
5
- ### Changed
6
-
7
- - **BREAKING CHANGE**: Removed `dist` folder from package structure for cleaner imports
8
- - **Import paths**: Updated import paths from `beathers/dist/css/beathers.min.css` to `beathers/css/beathers.min.css`
9
- - **Package structure**: Moved CSS files from `dist/css/` to `css/` and SCSS files from `dist/scss/` to `scss/`
10
- - **Build scripts**: Updated all build and CLI scripts to work with new folder structure
11
-
12
- ### Fixed
13
-
14
- - **Package exports**: Updated package.json exports to reflect new structure without `dist` folder
15
-
16
- ## [5.3.6] - 2025-06-12
17
-
18
- ### Fixed
19
-
20
- - **CLI build paths**: Updated build paths to correctly reference package installation location
21
- - **Output directory logic**: Improved default output path handling for different execution contexts
22
-
23
- ## [5.3.5] - 2025-06-12
24
-
25
- ### Fixed
26
-
27
- - **CLI execution**: Fixed "Command failed: npm run build:pack" error when using `npx beathers` as library in other projects
28
- - **Package dependencies**: Moved `sass` from devDependencies to dependencies to ensure it's available when package is installed
29
- - **Build system**: CLI now uses sass compiler directly instead of trying to run npm scripts from user projects
30
-
31
- ## [5.3.4] - 2025-06-12
32
-
33
- ### Updated
34
-
35
- - **Package maintenance**: Minor fixes
36
-
37
- ## [5.3.3] - 2025-06-12
38
-
39
- ### Fixed
40
-
41
- - **Module exports**: Added CSS and SCSS files to package exports to fix "Module not found" error when importing CSS files
42
- - **Import paths**: Fixed package.json exports field to properly expose css/_ and scss/_ files
43
-
44
- ## [5.3.2] - 2025-06-12
45
-
46
- ### Fixed
47
-
48
- - **CLI version display**: Fixed version command to show correct package version (5.3.2) instead of incorrect version
49
- - **NPM package structure**: Fixed SCSS file paths in distributed package by copying source SCSS files to scss/ directory
50
-
51
- ## [5.3.1] - 2025-06-12
52
-
53
- ### Fixed
54
-
55
- - **Module exports**: Fixed TypeScript path aliases in npm package exports to use relative paths for proper module resolution
56
-
57
- ## [5.3.0] - 2025-06-12
58
-
59
- ### Added
60
-
61
- - **Custom output path**: Added support for custom output path in build command for more flexible project structures
62
- - **Import commands**: New CLI import commands for colors and fonts to streamline workflow
63
- - **Enhanced console messaging**: Improved console.log messages across all commands for better user experience and clarity
64
- - **Type definitions enhancement**: Extended type definitions for typography and settings with new properties for font configurations, grid settings, and utility features
65
-
66
- ### Changed
67
-
68
- - **Code organization**: Moved functions to helper folder for better code structure and maintainability
69
- - **CLI cleanup**: Cleaned up CLI file structure for improved readability and maintenance
70
- - **Build script refactoring**: Refactored build scripts and removed stylelint configuration
71
- - **Path mapping**: Improved module importing with better path mapping
72
-
73
- ### Fixed
74
-
75
- - **Colors commands**: Fixed `add`, `remove` and `import` commands for colors
76
- - **Fonts commands**: Fixed `add`, `remove` and `import` commands for fonts
77
- - **Colors duplication**: Resolved issues with color duplication
78
- - **Default colors reading**: Fixed reading of default color values
79
- - **Help functions**: Updated and improved help command functions
80
-
81
- ## [5.2.2] - 2025-06-05
82
-
83
- ### Fixed
84
-
85
- - **README logo display**: Updated logo image source to use unpkg CDN for better compatibility and reliability on npm package page
86
-
87
- ## [5.2.1] - 2025-06-05
88
-
89
- ### Fixed
90
-
91
- - **ES module compatibility**: Fixed config loading to use `pathToFileURL` for better compatibility with ES modules
92
- - **Import resolution**: Enhanced module import handling in `LoadUserConfigs.ts` for cross-platform compatibility
93
-
94
- ## [5.2.0] - 2025-06-05
95
-
96
- ### Added
97
-
98
- - **Enhanced theme building system**: Complete refactor of `ReadDefaultValues.ts` with improved SCSS variable parsing
99
- - **Better default theme loading**: Added proper merging of default values with user configurations in `BuildTheme.ts`
100
- - **Improved type definitions**: Consolidated and organized type exports in `types.ts` for better developer experience
101
- - **Enhanced configuration handling**: Better support for nullish coalescing in `LoadUserConfigs.ts`
102
- - **More robust SCSS parsing**: Enhanced parsing logic for colors, fonts, breakpoints, and wrappers
103
- - **Better wrapper configuration**: Fixed wrapper property structure (size → width) for consistency
104
-
105
- ### Changed
106
-
107
- - **Type system overhaul**: Moved from separate type exports to consolidated type definitions
108
- - **Better configuration merging**: Enhanced default theme loading and user config integration
109
- - **Improved code organization**: More consistent code structure across TypeScript files
110
- - **Enhanced error handling**: Better validation and error messages in configuration loading
111
-
112
- ### Fixed
113
-
114
- - **Configuration parsing bugs**: Fixed various issues with SCSS variable parsing
115
- - **Type consistency**: Resolved type mismatches between different modules
116
- - **Wrapper configuration**: Fixed property naming inconsistency in wrapper settings
117
-
118
- ## [5.1.1] - 2025-06-05
119
-
120
- ### Fixed
121
-
122
- - Small bug fixes and improvements
123
-
124
- ## [5.1.0] - 2025-06-05
125
-
126
- ### Added
127
-
128
- - Enhanced CSS utility documentation in README
129
- - Comprehensive configuration examples for TypeScript users
130
- - Improved color utility system with better dark/light mode support
131
- - Font weight and size utility examples
132
-
133
- ### Changed
134
-
135
- - Updated README with detailed configuration tables
136
- - Improved TypeScript configuration examples
137
- - Enhanced documentation structure and readability
138
-
139
- ### Fixed
140
-
141
- - Configuration file format consistency
142
- - TypeScript type definitions alignment
143
-
144
- ## [5.0.0] - Initial Release
145
-
146
- ### Added
147
-
148
- - Core SCSS framework with utility-first approach
149
- - Interactive CLI tool for theme configuration
150
- - Comprehensive color system with light/dark variants
151
- - Typography utilities with customizable font families and sizes
152
- - Responsive grid system with 12-column layout
153
- - Flexbox utilities for modern layouts
154
- - Spacing utilities with customizable gutters
155
- - Border and border-radius utilities
156
- - Shadow and blur effects
157
- - Position and sizing utilities
158
- - Opacity and overflow utilities
159
- - Transition utilities for smooth animations
160
- - Display utilities for various layout needs
161
- - Container/wrapper utilities for responsive layouts
162
- - Icon integration support
163
- - Complete customization through configuration files
164
- - Support for JSON, JS, and TypeScript config formats
165
- - CSS custom properties (CSS variables) generation
166
- - Media query utilities for responsive design
167
- - Text alignment and truncation utilities
1
+ # Changelog
2
+
3
+ ## [5.4.1] - 2025-06-15
4
+
5
+ ### Fixed
6
+
7
+ - Minor bug fixes and improvements
8
+ - Enhanced build process stability
9
+ - Improved CLI command reliability
10
+ - Fixed edge cases in configuration handling
11
+
12
+ ## [5.4.0] - 2025-06-12
13
+
14
+ ### Changed
15
+
16
+ - **BREAKING CHANGE**: Removed `dist` folder from package structure for cleaner imports
17
+ - **Import paths**: Updated import paths from `beathers/dist/css/beathers.min.css` to `beathers/css/beathers.min.css`
18
+ - **Package structure**: Moved CSS files from `dist/css/` to `css/` and SCSS files from `dist/scss/` to `scss/`
19
+ - **Build scripts**: Updated all build and CLI scripts to work with new folder structure
20
+
21
+ ### Fixed
22
+
23
+ - **Package exports**: Updated package.json exports to reflect new structure without `dist` folder
24
+
25
+ ## [5.3.6] - 2025-06-12
26
+
27
+ ### Fixed
28
+
29
+ - **CLI build paths**: Updated build paths to correctly reference package installation location
30
+ - **Output directory logic**: Improved default output path handling for different execution contexts
31
+
32
+ ## [5.3.5] - 2025-06-12
33
+
34
+ ### Fixed
35
+
36
+ - **CLI execution**: Fixed "Command failed: npm run build:pack" error when using `npx beathers` as library in other projects
37
+ - **Package dependencies**: Moved `sass` from devDependencies to dependencies to ensure it's available when package is installed
38
+ - **Build system**: CLI now uses sass compiler directly instead of trying to run npm scripts from user projects
39
+
40
+ ## [5.3.4] - 2025-06-12
41
+
42
+ ### Updated
43
+
44
+ - **Package maintenance**: Minor fixes
45
+
46
+ ## [5.3.3] - 2025-06-12
47
+
48
+ ### Fixed
49
+
50
+ - **Module exports**: Added CSS and SCSS files to package exports to fix "Module not found" error when importing CSS files
51
+ - **Import paths**: Fixed package.json exports field to properly expose css/_ and scss/_ files
52
+
53
+ ## [5.3.2] - 2025-06-12
54
+
55
+ ### Fixed
56
+
57
+ - **CLI version display**: Fixed version command to show correct package version (5.3.2) instead of incorrect version
58
+ - **NPM package structure**: Fixed SCSS file paths in distributed package by copying source SCSS files to scss/ directory
59
+
60
+ ## [5.3.1] - 2025-06-12
61
+
62
+ ### Fixed
63
+
64
+ - **Module exports**: Fixed TypeScript path aliases in npm package exports to use relative paths for proper module resolution
65
+
66
+ ## [5.3.0] - 2025-06-12
67
+
68
+ ### Added
69
+
70
+ - **Custom output path**: Added support for custom output path in build command for more flexible project structures
71
+ - **Import commands**: New CLI import commands for colors and fonts to streamline workflow
72
+ - **Enhanced console messaging**: Improved console.log messages across all commands for better user experience and clarity
73
+ - **Type definitions enhancement**: Extended type definitions for typography and settings with new properties for font configurations, grid settings, and utility features
74
+
75
+ ### Changed
76
+
77
+ - **Code organization**: Moved functions to helper folder for better code structure and maintainability
78
+ - **CLI cleanup**: Cleaned up CLI file structure for improved readability and maintenance
79
+ - **Build script refactoring**: Refactored build scripts and removed stylelint configuration
80
+ - **Path mapping**: Improved module importing with better path mapping
81
+
82
+ ### Fixed
83
+
84
+ - **Colors commands**: Fixed `add`, `remove` and `import` commands for colors
85
+ - **Fonts commands**: Fixed `add`, `remove` and `import` commands for fonts
86
+ - **Colors duplication**: Resolved issues with color duplication
87
+ - **Default colors reading**: Fixed reading of default color values
88
+ - **Help functions**: Updated and improved help command functions
89
+
90
+ ## [5.2.2] - 2025-06-05
91
+
92
+ ### Fixed
93
+
94
+ - **README logo display**: Updated logo image source to use unpkg CDN for better compatibility and reliability on npm package page
95
+
96
+ ## [5.2.1] - 2025-06-05
97
+
98
+ ### Fixed
99
+
100
+ - **ES module compatibility**: Fixed config loading to use `pathToFileURL` for better compatibility with ES modules
101
+ - **Import resolution**: Enhanced module import handling in `LoadUserConfigs.ts` for cross-platform compatibility
102
+
103
+ ## [5.2.0] - 2025-06-05
104
+
105
+ ### Added
106
+
107
+ - **Enhanced theme building system**: Complete refactor of `ReadDefaultValues.ts` with improved SCSS variable parsing
108
+ - **Better default theme loading**: Added proper merging of default values with user configurations in `BuildTheme.ts`
109
+ - **Improved type definitions**: Consolidated and organized type exports in `types.ts` for better developer experience
110
+ - **Enhanced configuration handling**: Better support for nullish coalescing in `LoadUserConfigs.ts`
111
+ - **More robust SCSS parsing**: Enhanced parsing logic for colors, fonts, breakpoints, and wrappers
112
+ - **Better wrapper configuration**: Fixed wrapper property structure (size → width) for consistency
113
+
114
+ ### Changed
115
+
116
+ - **Type system overhaul**: Moved from separate type exports to consolidated type definitions
117
+ - **Better configuration merging**: Enhanced default theme loading and user config integration
118
+ - **Improved code organization**: More consistent code structure across TypeScript files
119
+ - **Enhanced error handling**: Better validation and error messages in configuration loading
120
+
121
+ ### Fixed
122
+
123
+ - **Configuration parsing bugs**: Fixed various issues with SCSS variable parsing
124
+ - **Type consistency**: Resolved type mismatches between different modules
125
+ - **Wrapper configuration**: Fixed property naming inconsistency in wrapper settings
126
+
127
+ ## [5.1.1] - 2025-06-05
128
+
129
+ ### Fixed
130
+
131
+ - Small bug fixes and improvements
132
+
133
+ ## [5.1.0] - 2025-06-05
134
+
135
+ ### Added
136
+
137
+ - Enhanced CSS utility documentation in README
138
+ - Comprehensive configuration examples for TypeScript users
139
+ - Improved color utility system with better dark/light mode support
140
+ - Font weight and size utility examples
141
+
142
+ ### Changed
143
+
144
+ - Updated README with detailed configuration tables
145
+ - Improved TypeScript configuration examples
146
+ - Enhanced documentation structure and readability
147
+
148
+ ### Fixed
149
+
150
+ - Configuration file format consistency
151
+ - TypeScript type definitions alignment
152
+
153
+ ## [5.0.0] - Initial Release
154
+
155
+ ### Added
156
+
157
+ - Core SCSS framework with utility-first approach
158
+ - Interactive CLI tool for theme configuration
159
+ - Comprehensive color system with light/dark variants
160
+ - Typography utilities with customizable font families and sizes
161
+ - Responsive grid system with 12-column layout
162
+ - Flexbox utilities for modern layouts
163
+ - Spacing utilities with customizable gutters
164
+ - Border and border-radius utilities
165
+ - Shadow and blur effects
166
+ - Position and sizing utilities
167
+ - Opacity and overflow utilities
168
+ - Transition utilities for smooth animations
169
+ - Display utilities for various layout needs
170
+ - Container/wrapper utilities for responsive layouts
171
+ - Icon integration support
172
+ - Complete customization through configuration files
173
+ - Support for JSON, JS, and TypeScript config formats
174
+ - CSS custom properties (CSS variables) generation
175
+ - Media query utilities for responsive design
176
+ - Text alignment and truncation utilities
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["../src/scss/beathers-icons.min.scss"],"names":[],"mappings":"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","file":"beathers-icons.min.css","sourcesContent":["@use './settings/index' as settings;\r\n\r\n@if (settings.$useIcons) {\r\n $icons: (\r\n 'cart': '\\ea01',\r\n 'share': '\\ea02',\r\n 'tag-1': '\\ea03',\r\n 'facebook-messenger': '\\ea04',\r\n 'arrow-corner-up-left': '\\ea05',\r\n 'fastword': '\\ea06',\r\n 'tiktok': '\\ea07',\r\n 'database': '\\ea08',\r\n 'syrian-pound': '\\ea09',\r\n 'user-check': '\\ea0a',\r\n 'server': '\\ea0b',\r\n 'car': '\\ea0c',\r\n 'times': '\\ea0d',\r\n 'apple-store': '\\ea0e',\r\n 'arrow-circle-up': '\\ea0f',\r\n 'login': '\\ea10',\r\n 'settings': '\\ea11',\r\n 'instagram': '\\ea12',\r\n 'sun': '\\ea13',\r\n 'arrow-corner-left-up': '\\ea14',\r\n 'star-Half': '\\ea15',\r\n 'img': '\\ea16',\r\n 'gender': '\\ea17',\r\n 'amazon-payment': '\\ea18',\r\n 'pintrest': '\\ea19',\r\n 'arrow-droplist-down': '\\ea1a',\r\n 'apple-pay': '\\ea1b',\r\n 'whatsapp': '\\ea1c',\r\n 'arrow-droplist-up': '\\ea1d',\r\n 'pause': '\\ea1e',\r\n 'arrow-corner-right-up': '\\ea1f',\r\n 'save': '\\ea20',\r\n 'star': '\\ea21',\r\n 'arrow-corner-down-right': '\\ea22',\r\n 'moon': '\\ea23',\r\n 'arrow-classic-down-left': '\\ea24',\r\n 'logout': '\\ea25',\r\n 'certificate': '\\ea26',\r\n 'repeat': '\\ea27',\r\n 'rotate': '\\ea28',\r\n 'warning': '\\ea29',\r\n 'wallet': '\\ea2a',\r\n 'headset': '\\ea2b',\r\n 'plus': '\\ea2c',\r\n 'double-check': '\\ea2d',\r\n 'lock-opened': '\\ea2e',\r\n 'arrow-classic-up-left': '\\ea2f',\r\n 'chili': '\\ea30',\r\n 'github': '\\ea31',\r\n 'options': '\\ea32',\r\n 'volume-up': '\\ea33',\r\n 'flash': '\\ea34',\r\n 'usb': '\\ea35',\r\n 'shield-on': '\\ea36',\r\n 'copy': '\\ea37',\r\n 'stop': '\\ea38',\r\n 'warehouse': '\\ea39',\r\n 'user-delete': '\\ea3a',\r\n 'target': '\\ea3b',\r\n 'arrow-droplist-right': '\\ea3c',\r\n 'arrow-sign-left': '\\ea3d',\r\n 'check': '\\ea3e',\r\n 'coin': '\\ea3f',\r\n 'print': '\\ea40',\r\n 'arrow-lite-double-down': '\\ea41',\r\n 'card': '\\ea42',\r\n 'stackoverflow': '\\ea43',\r\n 'face-id': '\\ea44',\r\n 'signal': '\\ea45',\r\n 'arrow-droplist-left': '\\ea46',\r\n 'cart-1': '\\ea47',\r\n 'behance': '\\ea48',\r\n 'menu-1': '\\ea49',\r\n 'user-remove': '\\ea4a',\r\n 'tag': '\\ea4b',\r\n 'receipt': '\\ea4c',\r\n 'check-1': '\\ea4d',\r\n 'medal-1': '\\ea4e',\r\n 'heart-rate': '\\ea4f',\r\n 'coffee-1': '\\ea50',\r\n 'halal': '\\ea51',\r\n 'search-1': '\\ea52',\r\n 'power': '\\ea53',\r\n 'edit-1': '\\ea54',\r\n 'arrow-classic-right': '\\ea55',\r\n 'search': '\\ea56',\r\n 'phone': '\\ea57',\r\n 'saudi-riyal': '\\ea58',\r\n 'time': '\\ea59',\r\n 'btc': '\\ea5a',\r\n 'play': '\\ea5b',\r\n 'eye-closed': '\\ea5c',\r\n 'shop': '\\ea5d',\r\n 'menu': '\\ea5e',\r\n 'facebook': '\\ea5f',\r\n 'hackerrank': '\\ea60',\r\n 'gift-opened': '\\ea61',\r\n 'news': '\\ea62',\r\n 'medal': '\\ea63',\r\n 'finger-print': '\\ea64',\r\n 'Unlink': '\\ea65',\r\n 'huawei': '\\ea66',\r\n 'arrow-classic-up-right': '\\ea67',\r\n 'microsoft': '\\ea68',\r\n 'pdf': '\\ea69',\r\n 'dislike': '\\ea6a',\r\n 'snapchat': '\\ea6b',\r\n 'turkish': '\\ea6c',\r\n 'bank': '\\ea6d',\r\n 'home': '\\ea6e',\r\n 'trash': '\\ea6f',\r\n 'thermometer': '\\ea70',\r\n 'sort-up': '\\ea71',\r\n 'coffee-2': '\\ea72',\r\n 'scale-down': '\\ea73',\r\n 'lang-ar': '\\ea74',\r\n 'files': '\\ea75',\r\n 'archive': '\\ea76',\r\n 'like': '\\ea77',\r\n 'arrow-classic-down-right': '\\ea78',\r\n 'timer': '\\ea79',\r\n 'gold': '\\ea7a',\r\n 'eye-opened': '\\ea7b',\r\n 'arrow-circle-left': '\\ea7c',\r\n 'telegram': '\\ea7d',\r\n 'volume': '\\ea7e',\r\n 'linkedin': '\\ea7f',\r\n 'arrow-corner-down-left': '\\ea80',\r\n 'download': '\\ea81',\r\n 'inbox': '\\ea82',\r\n 'arrow-corner-right-down': '\\ea83',\r\n 'pin-2': '\\ea84',\r\n 'game-contraller': '\\ea85',\r\n 'users': '\\ea86',\r\n 'volume-down': '\\ea87',\r\n 'user': '\\ea88',\r\n 'info': '\\ea89',\r\n 'pin-1': '\\ea8a',\r\n 'google-play': '\\ea8b',\r\n 'arrow-sign-right': '\\ea8c',\r\n 'ads': '\\ea8d',\r\n 'car-1': '\\ea8e',\r\n 'arrow-corner-left-down': '\\ea8f',\r\n 'arrow-circle-down': '\\ea90',\r\n 'ship': '\\ea91',\r\n 'chart-3': '\\ea92',\r\n 'dribbble': '\\ea93',\r\n 'arrow-lite-double-right': '\\ea94',\r\n 'check-2': '\\ea95',\r\n 'arrow-classic-down': '\\ea96',\r\n 'question': '\\ea97',\r\n 'new-tab': '\\ea98',\r\n 'cart-2': '\\ea99',\r\n 'arrow-corner-up-right': '\\ea9a',\r\n 'arrow-classic-left': '\\ea9b',\r\n 'octagon': '\\ea9c',\r\n 'rupee': '\\ea9d',\r\n 'usb-1': '\\ea9e',\r\n 'yuan': '\\ea9f',\r\n 'cheeze': '\\eaa0',\r\n 'arrow-lite-double-up': '\\eaa1',\r\n 'dashboard': '\\eaa2',\r\n 'android': '\\eaa3',\r\n 'mail': '\\eaa4',\r\n 'age': '\\eaa5',\r\n 'filters': '\\eaa6',\r\n 'chart-2': '\\eaa7',\r\n 'drop': '\\eaa8',\r\n 'gift-closed': '\\eaa9',\r\n 'euro': '\\eaaa',\r\n 'loading': '\\eaab',\r\n 'upload': '\\eaac',\r\n 'arrow-sign-up': '\\eaad',\r\n 'bell-off': '\\eaae',\r\n 'passport': '\\eaaf',\r\n 'chart-1': '\\eab0',\r\n 'user-add': '\\eab1',\r\n 'edit': '\\eab2',\r\n 'Chipset': '\\eab3',\r\n 'youtube': '\\eab4',\r\n 'arrow-lite-left': '\\eab5',\r\n 'arrow-sign-down': '\\eab6',\r\n 'arrow-classic-up': '\\eab7',\r\n 'white-board': '\\eab8',\r\n 'grid': '\\eab9',\r\n 'pounds': '\\eaba',\r\n 'pin': '\\eabb',\r\n 'arrow-lite-right': '\\eabc',\r\n 'shield-off': '\\eabd',\r\n 'arrow-lite-up': '\\eabe',\r\n 'scale-up': '\\eabf',\r\n 'barcode': '\\eac0',\r\n 'plane': '\\eac1',\r\n 'quote': '\\eac2',\r\n 'ruble': '\\eac3',\r\n 'ice-cream': '\\eac4',\r\n 'move': '\\eac5',\r\n 'times-2': '\\eac6',\r\n 'link-1': '\\eac7',\r\n 'board': '\\eac8',\r\n 'mobile': '\\eac9',\r\n 'arrow-circle-right': '\\eaca',\r\n 'apple': '\\eacb',\r\n 'google': '\\eacc',\r\n 'arrow-outside': '\\eacd',\r\n 'compare': '\\eace',\r\n 'mice': '\\eacf',\r\n 'cloud': '\\ead0',\r\n 'times-1': '\\ead1',\r\n 'calendar': '\\ead2',\r\n 'twitter': '\\ead3',\r\n 'motorbike': '\\ead4',\r\n 'categories': '\\ead5',\r\n 'app-gallery': '\\ead6',\r\n 'aws': '\\ead7',\r\n 'arrow-inside': '\\ead8',\r\n 'folder': '\\ead9',\r\n 'x': '\\eada',\r\n 'camera': '\\eadb',\r\n 'minus': '\\eadc',\r\n 'link': '\\eadd',\r\n 'box': '\\eade',\r\n 'color': '\\eadf',\r\n 'sort-down': '\\eae0',\r\n 'settings-1': '\\eae1',\r\n 'google-pay': '\\eae2',\r\n 'chart': '\\eae3',\r\n 'heart': '\\eae4',\r\n 'doller': '\\eae5',\r\n 'lock-closed': '\\eae6',\r\n 'umbrella': '\\eae7',\r\n 'arrow-lite-double-left': '\\eae8',\r\n 'gitlab': '\\eae9',\r\n 'arrow-lite-down': '\\eaea',\r\n 'bell': '\\eaeb',\r\n 'git': '\\eaec',\r\n 'paypal': '\\eaed',\r\n 'coupon': '\\eaee',\r\n );\r\n\r\n @font-face {\r\n font-family: 'beathers';\r\n src: url('/fonts/beathers.woff') format('woff');\r\n }\r\n\r\n .be {\r\n font-family: 'beathers', system-ui;\r\n font-size: 1em;\r\n width: 1em;\r\n height: 1em;\r\n font-style: normal;\r\n -webkit-font-smoothing: antialiased;\r\n -moz-osx-font-smoothing: grayscale;\r\n\r\n @each $name, $glyph in $icons {\r\n &.be-#{$name}:before {\r\n content: $glyph;\r\n }\r\n }\r\n }\r\n}\r\n"]}
1
+ {"version":3,"sourceRoot":"","sources":["../src/scss/beathers-icons.min.scss"],"names":[],"mappings":"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","file":"beathers-icons.min.css","sourcesContent":["@use './settings/index' as settings;\n\n@if (settings.$useIcons) {\n $icons: (\n 'cart': '\\ea01',\n 'share': '\\ea02',\n 'tag-1': '\\ea03',\n 'facebook-messenger': '\\ea04',\n 'arrow-corner-up-left': '\\ea05',\n 'fastword': '\\ea06',\n 'tiktok': '\\ea07',\n 'database': '\\ea08',\n 'syrian-pound': '\\ea09',\n 'user-check': '\\ea0a',\n 'server': '\\ea0b',\n 'car': '\\ea0c',\n 'times': '\\ea0d',\n 'apple-store': '\\ea0e',\n 'arrow-circle-up': '\\ea0f',\n 'login': '\\ea10',\n 'settings': '\\ea11',\n 'instagram': '\\ea12',\n 'sun': '\\ea13',\n 'arrow-corner-left-up': '\\ea14',\n 'star-Half': '\\ea15',\n 'img': '\\ea16',\n 'gender': '\\ea17',\n 'amazon-payment': '\\ea18',\n 'pintrest': '\\ea19',\n 'arrow-droplist-down': '\\ea1a',\n 'apple-pay': '\\ea1b',\n 'whatsapp': '\\ea1c',\n 'arrow-droplist-up': '\\ea1d',\n 'pause': '\\ea1e',\n 'arrow-corner-right-up': '\\ea1f',\n 'save': '\\ea20',\n 'star': '\\ea21',\n 'arrow-corner-down-right': '\\ea22',\n 'moon': '\\ea23',\n 'arrow-classic-down-left': '\\ea24',\n 'logout': '\\ea25',\n 'certificate': '\\ea26',\n 'repeat': '\\ea27',\n 'rotate': '\\ea28',\n 'warning': '\\ea29',\n 'wallet': '\\ea2a',\n 'headset': '\\ea2b',\n 'plus': '\\ea2c',\n 'double-check': '\\ea2d',\n 'lock-opened': '\\ea2e',\n 'arrow-classic-up-left': '\\ea2f',\n 'chili': '\\ea30',\n 'github': '\\ea31',\n 'options': '\\ea32',\n 'volume-up': '\\ea33',\n 'flash': '\\ea34',\n 'usb': '\\ea35',\n 'shield-on': '\\ea36',\n 'copy': '\\ea37',\n 'stop': '\\ea38',\n 'warehouse': '\\ea39',\n 'user-delete': '\\ea3a',\n 'target': '\\ea3b',\n 'arrow-droplist-right': '\\ea3c',\n 'arrow-sign-left': '\\ea3d',\n 'check': '\\ea3e',\n 'coin': '\\ea3f',\n 'print': '\\ea40',\n 'arrow-lite-double-down': '\\ea41',\n 'card': '\\ea42',\n 'stackoverflow': '\\ea43',\n 'face-id': '\\ea44',\n 'signal': '\\ea45',\n 'arrow-droplist-left': '\\ea46',\n 'cart-1': '\\ea47',\n 'behance': '\\ea48',\n 'menu-1': '\\ea49',\n 'user-remove': '\\ea4a',\n 'tag': '\\ea4b',\n 'receipt': '\\ea4c',\n 'check-1': '\\ea4d',\n 'medal-1': '\\ea4e',\n 'heart-rate': '\\ea4f',\n 'coffee-1': '\\ea50',\n 'halal': '\\ea51',\n 'search-1': '\\ea52',\n 'power': '\\ea53',\n 'edit-1': '\\ea54',\n 'arrow-classic-right': '\\ea55',\n 'search': '\\ea56',\n 'phone': '\\ea57',\n 'saudi-riyal': '\\ea58',\n 'time': '\\ea59',\n 'btc': '\\ea5a',\n 'play': '\\ea5b',\n 'eye-closed': '\\ea5c',\n 'shop': '\\ea5d',\n 'menu': '\\ea5e',\n 'facebook': '\\ea5f',\n 'hackerrank': '\\ea60',\n 'gift-opened': '\\ea61',\n 'news': '\\ea62',\n 'medal': '\\ea63',\n 'finger-print': '\\ea64',\n 'Unlink': '\\ea65',\n 'huawei': '\\ea66',\n 'arrow-classic-up-right': '\\ea67',\n 'microsoft': '\\ea68',\n 'pdf': '\\ea69',\n 'dislike': '\\ea6a',\n 'snapchat': '\\ea6b',\n 'turkish': '\\ea6c',\n 'bank': '\\ea6d',\n 'home': '\\ea6e',\n 'trash': '\\ea6f',\n 'thermometer': '\\ea70',\n 'sort-up': '\\ea71',\n 'coffee-2': '\\ea72',\n 'scale-down': '\\ea73',\n 'lang-ar': '\\ea74',\n 'files': '\\ea75',\n 'archive': '\\ea76',\n 'like': '\\ea77',\n 'arrow-classic-down-right': '\\ea78',\n 'timer': '\\ea79',\n 'gold': '\\ea7a',\n 'eye-opened': '\\ea7b',\n 'arrow-circle-left': '\\ea7c',\n 'telegram': '\\ea7d',\n 'volume': '\\ea7e',\n 'linkedin': '\\ea7f',\n 'arrow-corner-down-left': '\\ea80',\n 'download': '\\ea81',\n 'inbox': '\\ea82',\n 'arrow-corner-right-down': '\\ea83',\n 'pin-2': '\\ea84',\n 'game-contraller': '\\ea85',\n 'users': '\\ea86',\n 'volume-down': '\\ea87',\n 'user': '\\ea88',\n 'info': '\\ea89',\n 'pin-1': '\\ea8a',\n 'google-play': '\\ea8b',\n 'arrow-sign-right': '\\ea8c',\n 'ads': '\\ea8d',\n 'car-1': '\\ea8e',\n 'arrow-corner-left-down': '\\ea8f',\n 'arrow-circle-down': '\\ea90',\n 'ship': '\\ea91',\n 'chart-3': '\\ea92',\n 'dribbble': '\\ea93',\n 'arrow-lite-double-right': '\\ea94',\n 'check-2': '\\ea95',\n 'arrow-classic-down': '\\ea96',\n 'question': '\\ea97',\n 'new-tab': '\\ea98',\n 'cart-2': '\\ea99',\n 'arrow-corner-up-right': '\\ea9a',\n 'arrow-classic-left': '\\ea9b',\n 'octagon': '\\ea9c',\n 'rupee': '\\ea9d',\n 'usb-1': '\\ea9e',\n 'yuan': '\\ea9f',\n 'cheeze': '\\eaa0',\n 'arrow-lite-double-up': '\\eaa1',\n 'dashboard': '\\eaa2',\n 'android': '\\eaa3',\n 'mail': '\\eaa4',\n 'age': '\\eaa5',\n 'filters': '\\eaa6',\n 'chart-2': '\\eaa7',\n 'drop': '\\eaa8',\n 'gift-closed': '\\eaa9',\n 'euro': '\\eaaa',\n 'loading': '\\eaab',\n 'upload': '\\eaac',\n 'arrow-sign-up': '\\eaad',\n 'bell-off': '\\eaae',\n 'passport': '\\eaaf',\n 'chart-1': '\\eab0',\n 'user-add': '\\eab1',\n 'edit': '\\eab2',\n 'Chipset': '\\eab3',\n 'youtube': '\\eab4',\n 'arrow-lite-left': '\\eab5',\n 'arrow-sign-down': '\\eab6',\n 'arrow-classic-up': '\\eab7',\n 'white-board': '\\eab8',\n 'grid': '\\eab9',\n 'pounds': '\\eaba',\n 'pin': '\\eabb',\n 'arrow-lite-right': '\\eabc',\n 'shield-off': '\\eabd',\n 'arrow-lite-up': '\\eabe',\n 'scale-up': '\\eabf',\n 'barcode': '\\eac0',\n 'plane': '\\eac1',\n 'quote': '\\eac2',\n 'ruble': '\\eac3',\n 'ice-cream': '\\eac4',\n 'move': '\\eac5',\n 'times-2': '\\eac6',\n 'link-1': '\\eac7',\n 'board': '\\eac8',\n 'mobile': '\\eac9',\n 'arrow-circle-right': '\\eaca',\n 'apple': '\\eacb',\n 'google': '\\eacc',\n 'arrow-outside': '\\eacd',\n 'compare': '\\eace',\n 'mice': '\\eacf',\n 'cloud': '\\ead0',\n 'times-1': '\\ead1',\n 'calendar': '\\ead2',\n 'twitter': '\\ead3',\n 'motorbike': '\\ead4',\n 'categories': '\\ead5',\n 'app-gallery': '\\ead6',\n 'aws': '\\ead7',\n 'arrow-inside': '\\ead8',\n 'folder': '\\ead9',\n 'x': '\\eada',\n 'camera': '\\eadb',\n 'minus': '\\eadc',\n 'link': '\\eadd',\n 'box': '\\eade',\n 'color': '\\eadf',\n 'sort-down': '\\eae0',\n 'settings-1': '\\eae1',\n 'google-pay': '\\eae2',\n 'chart': '\\eae3',\n 'heart': '\\eae4',\n 'doller': '\\eae5',\n 'lock-closed': '\\eae6',\n 'umbrella': '\\eae7',\n 'arrow-lite-double-left': '\\eae8',\n 'gitlab': '\\eae9',\n 'arrow-lite-down': '\\eaea',\n 'bell': '\\eaeb',\n 'git': '\\eaec',\n 'paypal': '\\eaed',\n 'coupon': '\\eaee',\n );\n\n @font-face {\n font-family: 'beathers';\n src: url('/fonts/beathers.woff') format('woff');\n }\n\n .be {\n font-family: 'beathers', system-ui;\n font-size: 1em;\n width: 1em;\n height: 1em;\n font-style: normal;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n\n @each $name, $glyph in $icons {\n &.be-#{$name}:before {\n content: $glyph;\n }\n }\n }\n}\n"]}