beathers 5.2.2 → 5.3.0
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/CHANGELOG +113 -0
- package/dist/css/beathers-icons.min.css +1 -1
- package/dist/css/beathers-icons.min.css.map +1 -1
- package/dist/css/beathers.min.css +2 -2
- package/dist/css/beathers.min.css.map +1 -1
- package/dist/data/colors.d.ts +9 -0
- package/dist/data/colors.js +54 -0
- package/dist/data/font.d.ts +3 -0
- package/dist/data/font.js +32 -0
- package/dist/data/index.d.ts +2 -0
- package/dist/data/index.js +2 -0
- package/dist/index.d.ts +4 -2
- package/dist/index.js +4 -1
- package/dist/scripts/cli.js +7 -220
- package/dist/scripts/commands/build.d.ts +1 -0
- package/dist/scripts/commands/build.js +128 -0
- package/dist/scripts/commands/colors.d.ts +4 -0
- package/dist/scripts/commands/colors.js +140 -0
- package/dist/scripts/commands/fonts.d.ts +3 -0
- package/dist/scripts/commands/fonts.js +124 -0
- package/dist/scripts/commands/help.d.ts +1 -0
- package/dist/scripts/commands/help.js +42 -0
- package/dist/scripts/commands/index.d.ts +13 -0
- package/dist/scripts/commands/index.js +95 -0
- package/dist/scripts/commands/init.d.ts +1 -0
- package/dist/scripts/commands/init.js +129 -0
- package/dist/scripts/commands/list.d.ts +2 -0
- package/dist/scripts/commands/list.js +29 -0
- package/dist/scripts/commands/version.d.ts +1 -0
- package/dist/scripts/commands/version.js +13 -0
- package/dist/scripts/{BuildScssVariables.d.ts → helpers/BuildScssVariables.d.ts} +1 -1
- package/dist/scripts/{BuildScssVariables.js → helpers/BuildScssVariables.js} +4 -4
- package/dist/scripts/{LoadUserConfigs.d.ts → helpers/LoadUserConfigs.d.ts} +1 -1
- package/dist/scripts/{Merge.d.ts → helpers/Merge.d.ts} +1 -1
- package/dist/scripts/{ReadDefaultValues.d.ts → helpers/ReadDefaultValues.d.ts} +1 -1
- package/dist/scripts/{ReadDefaultValues.js → helpers/ReadDefaultValues.js} +6 -2
- package/dist/scripts/helpers/index.d.ts +5 -0
- package/dist/scripts/helpers/index.js +5 -0
- package/dist/scripts/types.d.ts +41 -4
- package/dist/scripts/types.js +1 -0
- package/package.json +83 -80
- package/readme.md +28 -0
- package/src/scss/_variables.scss +1 -305
- package/src/scss/beathers-icons.min.scss +245 -245
- package/src/scss/beathers.min.scss +2 -4
- package/src/scss/functions/_colors.scss +79 -68
- package/src/scss/functions/_mediaQueries.scss +22 -12
- package/src/scss/functions/_others.scss +31 -22
- package/src/scss/functions/_typographic.scss +11 -2
- package/src/scss/functions/_validations.scss +38 -43
- package/src/scss/settings/_configs.scss +1 -72
- package/src/scss/settings/_defaults.scss +139 -212
- package/src/scss/style/_colors.scss +39 -23
- package/src/scss/style/_grid.scss +23 -25
- package/src/scss/style/_resets.scss +119 -0
- package/src/scss/style/_shaping.scss +142 -89
- package/src/scss/style/_typographic.scss +79 -36
- package/dist/scripts/BuildTheme.d.ts +0 -1
- package/dist/scripts/BuildTheme.js +0 -75
- package/src/scss/settings/_resets.scss +0 -103
- /package/dist/scripts/{CallNewVariables.d.ts → helpers/CallNewVariables.d.ts} +0 -0
- /package/dist/scripts/{CallNewVariables.js → helpers/CallNewVariables.js} +0 -0
- /package/dist/scripts/{LoadUserConfigs.js → helpers/LoadUserConfigs.js} +0 -0
- /package/dist/scripts/{Merge.js → helpers/Merge.js} +0 -0
package/CHANGELOG
ADDED
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [5.3.0] - 2025-06-12
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- **Custom output path**: Added support for custom output path in build command for more flexible project structures
|
|
8
|
+
- **Import commands**: New CLI import commands for colors and fonts to streamline workflow
|
|
9
|
+
- **Enhanced console messaging**: Improved console.log messages across all commands for better user experience and clarity
|
|
10
|
+
- **Type definitions enhancement**: Extended type definitions for typography and settings with new properties for font configurations, grid settings, and utility features
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **Code organization**: Moved functions to helper folder for better code structure and maintainability
|
|
15
|
+
- **CLI cleanup**: Cleaned up CLI file structure for improved readability and maintenance
|
|
16
|
+
- **Build script refactoring**: Refactored build scripts and removed stylelint configuration
|
|
17
|
+
- **Path mapping**: Improved module importing with better path mapping
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
|
|
21
|
+
- **Colors commands**: Fixed `add`, `remove` and `import` commands for colors
|
|
22
|
+
- **Fonts commands**: Fixed `add`, `remove` and `import` commands for fonts
|
|
23
|
+
- **Colors duplication**: Resolved issues with color duplication
|
|
24
|
+
- **Default colors reading**: Fixed reading of default color values
|
|
25
|
+
- **Help functions**: Updated and improved help command functions
|
|
26
|
+
|
|
27
|
+
## [5.2.2] - 2025-06-05
|
|
28
|
+
|
|
29
|
+
### Fixed
|
|
30
|
+
|
|
31
|
+
- **README logo display**: Updated logo image source to use unpkg CDN for better compatibility and reliability on npm package page
|
|
32
|
+
|
|
33
|
+
## [5.2.1] - 2025-06-05
|
|
34
|
+
|
|
35
|
+
### Fixed
|
|
36
|
+
|
|
37
|
+
- **ES module compatibility**: Fixed config loading to use `pathToFileURL` for better compatibility with ES modules
|
|
38
|
+
- **Import resolution**: Enhanced module import handling in `LoadUserConfigs.ts` for cross-platform compatibility
|
|
39
|
+
|
|
40
|
+
## [5.2.0] - 2025-06-05
|
|
41
|
+
|
|
42
|
+
### Added
|
|
43
|
+
|
|
44
|
+
- **Enhanced theme building system**: Complete refactor of `ReadDefaultValues.ts` with improved SCSS variable parsing
|
|
45
|
+
- **Better default theme loading**: Added proper merging of default values with user configurations in `BuildTheme.ts`
|
|
46
|
+
- **Improved type definitions**: Consolidated and organized type exports in `types.ts` for better developer experience
|
|
47
|
+
- **Enhanced configuration handling**: Better support for nullish coalescing in `LoadUserConfigs.ts`
|
|
48
|
+
- **More robust SCSS parsing**: Enhanced parsing logic for colors, fonts, breakpoints, and wrappers
|
|
49
|
+
- **Better wrapper configuration**: Fixed wrapper property structure (size → width) for consistency
|
|
50
|
+
|
|
51
|
+
### Changed
|
|
52
|
+
|
|
53
|
+
- **Type system overhaul**: Moved from separate type exports to consolidated type definitions
|
|
54
|
+
- **Better configuration merging**: Enhanced default theme loading and user config integration
|
|
55
|
+
- **Improved code organization**: More consistent code structure across TypeScript files
|
|
56
|
+
- **Enhanced error handling**: Better validation and error messages in configuration loading
|
|
57
|
+
|
|
58
|
+
### Fixed
|
|
59
|
+
|
|
60
|
+
- **Configuration parsing bugs**: Fixed various issues with SCSS variable parsing
|
|
61
|
+
- **Type consistency**: Resolved type mismatches between different modules
|
|
62
|
+
- **Wrapper configuration**: Fixed property naming inconsistency in wrapper settings
|
|
63
|
+
|
|
64
|
+
## [5.1.1] - 2025-06-05
|
|
65
|
+
|
|
66
|
+
### Fixed
|
|
67
|
+
|
|
68
|
+
- Small bug fixes and improvements
|
|
69
|
+
|
|
70
|
+
## [5.1.0] - 2025-06-05
|
|
71
|
+
|
|
72
|
+
### Added
|
|
73
|
+
|
|
74
|
+
- Enhanced CSS utility documentation in README
|
|
75
|
+
- Comprehensive configuration examples for TypeScript users
|
|
76
|
+
- Improved color utility system with better dark/light mode support
|
|
77
|
+
- Font weight and size utility examples
|
|
78
|
+
|
|
79
|
+
### Changed
|
|
80
|
+
|
|
81
|
+
- Updated README with detailed configuration tables
|
|
82
|
+
- Improved TypeScript configuration examples
|
|
83
|
+
- Enhanced documentation structure and readability
|
|
84
|
+
|
|
85
|
+
### Fixed
|
|
86
|
+
|
|
87
|
+
- Configuration file format consistency
|
|
88
|
+
- TypeScript type definitions alignment
|
|
89
|
+
|
|
90
|
+
## [5.0.0] - Initial Release
|
|
91
|
+
|
|
92
|
+
### Added
|
|
93
|
+
|
|
94
|
+
- Core SCSS framework with utility-first approach
|
|
95
|
+
- Interactive CLI tool for theme configuration
|
|
96
|
+
- Comprehensive color system with light/dark variants
|
|
97
|
+
- Typography utilities with customizable font families and sizes
|
|
98
|
+
- Responsive grid system with 12-column layout
|
|
99
|
+
- Flexbox utilities for modern layouts
|
|
100
|
+
- Spacing utilities with customizable gutters
|
|
101
|
+
- Border and border-radius utilities
|
|
102
|
+
- Shadow and blur effects
|
|
103
|
+
- Position and sizing utilities
|
|
104
|
+
- Opacity and overflow utilities
|
|
105
|
+
- Transition utilities for smooth animations
|
|
106
|
+
- Display utilities for various layout needs
|
|
107
|
+
- Container/wrapper utilities for responsive layouts
|
|
108
|
+
- Icon integration support
|
|
109
|
+
- Complete customization through configuration files
|
|
110
|
+
- Support for JSON, JS, and TypeScript config formats
|
|
111
|
+
- CSS custom properties (CSS variables) generation
|
|
112
|
+
- Media query utilities for responsive design
|
|
113
|
+
- Text alignment and truncation utilities
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@font-face{font-family:"beathers";src:url("/fonts/beathers.woff") format("woff")}.be{font-family:"beathers",system-ui
|
|
1
|
+
@font-face{font-family:"beathers";src:url("/fonts/beathers.woff") format("woff")}.be{font-family:"beathers",system-ui;font-size:1em;width:1em;height:1em;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.be.be-cart:before{content:""}.be.be-share:before{content:""}.be.be-tag-1:before{content:""}.be.be-facebook-messenger:before{content:""}.be.be-arrow-corner-up-left:before{content:""}.be.be-fastword:before{content:""}.be.be-tiktok:before{content:""}.be.be-database:before{content:""}.be.be-syrian-pound:before{content:""}.be.be-user-check:before{content:""}.be.be-server:before{content:""}.be.be-car:before{content:""}.be.be-times:before{content:""}.be.be-apple-store:before{content:""}.be.be-arrow-circle-up:before{content:""}.be.be-login:before{content:""}.be.be-settings:before{content:""}.be.be-instagram:before{content:""}.be.be-sun:before{content:""}.be.be-arrow-corner-left-up:before{content:""}.be.be-star-Half:before{content:""}.be.be-img:before{content:""}.be.be-gender:before{content:""}.be.be-amazon-payment:before{content:""}.be.be-pintrest:before{content:""}.be.be-arrow-droplist-down:before{content:""}.be.be-apple-pay:before{content:""}.be.be-whatsapp:before{content:""}.be.be-arrow-droplist-up:before{content:""}.be.be-pause:before{content:""}.be.be-arrow-corner-right-up:before{content:""}.be.be-save:before{content:""}.be.be-star:before{content:""}.be.be-arrow-corner-down-right:before{content:""}.be.be-moon:before{content:""}.be.be-arrow-classic-down-left:before{content:""}.be.be-logout:before{content:""}.be.be-certificate:before{content:""}.be.be-repeat:before{content:""}.be.be-rotate:before{content:""}.be.be-warning:before{content:""}.be.be-wallet:before{content:""}.be.be-headset:before{content:""}.be.be-plus:before{content:""}.be.be-double-check:before{content:""}.be.be-lock-opened:before{content:""}.be.be-arrow-classic-up-left:before{content:""}.be.be-chili:before{content:""}.be.be-github:before{content:""}.be.be-options:before{content:""}.be.be-volume-up:before{content:""}.be.be-flash:before{content:""}.be.be-usb:before{content:""}.be.be-shield-on:before{content:""}.be.be-copy:before{content:""}.be.be-stop:before{content:""}.be.be-warehouse:before{content:""}.be.be-user-delete:before{content:""}.be.be-target:before{content:""}.be.be-arrow-droplist-right:before{content:""}.be.be-arrow-sign-left:before{content:""}.be.be-check:before{content:""}.be.be-coin:before{content:""}.be.be-print:before{content:""}.be.be-arrow-lite-double-down:before{content:""}.be.be-card:before{content:""}.be.be-stackoverflow:before{content:""}.be.be-face-id:before{content:""}.be.be-signal:before{content:""}.be.be-arrow-droplist-left:before{content:""}.be.be-cart-1:before{content:""}.be.be-behance:before{content:""}.be.be-menu-1:before{content:""}.be.be-user-remove:before{content:""}.be.be-tag:before{content:""}.be.be-receipt:before{content:""}.be.be-check-1:before{content:""}.be.be-medal-1:before{content:""}.be.be-heart-rate:before{content:""}.be.be-coffee-1:before{content:""}.be.be-halal:before{content:""}.be.be-search-1:before{content:""}.be.be-power:before{content:""}.be.be-edit-1:before{content:""}.be.be-arrow-classic-right:before{content:""}.be.be-search:before{content:""}.be.be-phone:before{content:""}.be.be-saudi-riyal:before{content:""}.be.be-time:before{content:""}.be.be-btc:before{content:""}.be.be-play:before{content:""}.be.be-eye-closed:before{content:""}.be.be-shop:before{content:""}.be.be-menu:before{content:""}.be.be-facebook:before{content:""}.be.be-hackerrank:before{content:""}.be.be-gift-opened:before{content:""}.be.be-news:before{content:""}.be.be-medal:before{content:""}.be.be-finger-print:before{content:""}.be.be-Unlink:before{content:""}.be.be-huawei:before{content:""}.be.be-arrow-classic-up-right:before{content:""}.be.be-microsoft:before{content:""}.be.be-pdf:before{content:""}.be.be-dislike:before{content:""}.be.be-snapchat:before{content:""}.be.be-turkish:before{content:""}.be.be-bank:before{content:""}.be.be-home:before{content:""}.be.be-trash:before{content:""}.be.be-thermometer:before{content:""}.be.be-sort-up:before{content:""}.be.be-coffee-2:before{content:""}.be.be-scale-down:before{content:""}.be.be-lang-ar:before{content:""}.be.be-files:before{content:""}.be.be-archive:before{content:""}.be.be-like:before{content:""}.be.be-arrow-classic-down-right:before{content:""}.be.be-timer:before{content:""}.be.be-gold:before{content:""}.be.be-eye-opened:before{content:""}.be.be-arrow-circle-left:before{content:""}.be.be-telegram:before{content:""}.be.be-volume:before{content:""}.be.be-linkedin:before{content:""}.be.be-arrow-corner-down-left:before{content:""}.be.be-download:before{content:""}.be.be-inbox:before{content:""}.be.be-arrow-corner-right-down:before{content:""}.be.be-pin-2:before{content:""}.be.be-game-contraller:before{content:""}.be.be-users:before{content:""}.be.be-volume-down:before{content:""}.be.be-user:before{content:""}.be.be-info:before{content:""}.be.be-pin-1:before{content:""}.be.be-google-play:before{content:""}.be.be-arrow-sign-right:before{content:""}.be.be-ads:before{content:""}.be.be-car-1:before{content:""}.be.be-arrow-corner-left-down:before{content:""}.be.be-arrow-circle-down:before{content:""}.be.be-ship:before{content:""}.be.be-chart-3:before{content:""}.be.be-dribbble:before{content:""}.be.be-arrow-lite-double-right:before{content:""}.be.be-check-2:before{content:""}.be.be-arrow-classic-down:before{content:""}.be.be-question:before{content:""}.be.be-new-tab:before{content:""}.be.be-cart-2:before{content:""}.be.be-arrow-corner-up-right:before{content:""}.be.be-arrow-classic-left:before{content:""}.be.be-octagon:before{content:""}.be.be-rupee:before{content:""}.be.be-usb-1:before{content:""}.be.be-yuan:before{content:""}.be.be-cheeze:before{content:""}.be.be-arrow-lite-double-up:before{content:""}.be.be-dashboard:before{content:""}.be.be-android:before{content:""}.be.be-mail:before{content:""}.be.be-age:before{content:""}.be.be-filters:before{content:""}.be.be-chart-2:before{content:""}.be.be-drop:before{content:""}.be.be-gift-closed:before{content:""}.be.be-euro:before{content:""}.be.be-loading:before{content:""}.be.be-upload:before{content:""}.be.be-arrow-sign-up:before{content:""}.be.be-bell-off:before{content:""}.be.be-passport:before{content:""}.be.be-chart-1:before{content:""}.be.be-user-add:before{content:""}.be.be-edit:before{content:""}.be.be-Chipset:before{content:""}.be.be-youtube:before{content:""}.be.be-arrow-lite-left:before{content:""}.be.be-arrow-sign-down:before{content:""}.be.be-arrow-classic-up:before{content:""}.be.be-white-board:before{content:""}.be.be-grid:before{content:""}.be.be-pounds:before{content:""}.be.be-pin:before{content:""}.be.be-arrow-lite-right:before{content:""}.be.be-shield-off:before{content:""}.be.be-arrow-lite-up:before{content:""}.be.be-scale-up:before{content:""}.be.be-barcode:before{content:""}.be.be-plane:before{content:""}.be.be-quote:before{content:""}.be.be-ruble:before{content:""}.be.be-ice-cream:before{content:""}.be.be-move:before{content:""}.be.be-times-2:before{content:""}.be.be-link-1:before{content:""}.be.be-board:before{content:""}.be.be-mobile:before{content:""}.be.be-arrow-circle-right:before{content:""}.be.be-apple:before{content:""}.be.be-google:before{content:""}.be.be-arrow-outside:before{content:""}.be.be-compare:before{content:""}.be.be-mice:before{content:""}.be.be-cloud:before{content:""}.be.be-times-1:before{content:""}.be.be-calendar:before{content:""}.be.be-twitter:before{content:""}.be.be-motorbike:before{content:""}.be.be-categories:before{content:""}.be.be-app-gallery:before{content:""}.be.be-aws:before{content:""}.be.be-arrow-inside:before{content:""}.be.be-folder:before{content:""}.be.be-x:before{content:""}.be.be-camera:before{content:""}.be.be-minus:before{content:""}.be.be-link:before{content:""}.be.be-box:before{content:""}.be.be-color:before{content:""}.be.be-sort-down:before{content:""}.be.be-settings-1:before{content:""}.be.be-google-pay:before{content:""}.be.be-chart:before{content:""}.be.be-heart:before{content:""}.be.be-doller:before{content:""}.be.be-lock-closed:before{content:""}.be.be-umbrella:before{content:""}.be.be-arrow-lite-double-left:before{content:""}.be.be-gitlab:before{content:""}.be.be-arrow-lite-down:before{content:""}.be.be-bell:before{content:""}.be.be-git:before{content:""}.be.be-paypal:before{content:""}.be.be-coupon:before{content:""}/*# sourceMappingURL=beathers-icons.min.css.map */
|
|
@@ -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$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@if (settings.$useIcons) {\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 !important;\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;\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"]}
|