@mindvalley/design-system 3.4.0 → 4.0.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.md CHANGED
@@ -1,8 +1,290 @@
1
+ # [4.0.0](https://github.com/mindvalley/mv-design-system/compare/v3.4.2...v4.0.0) (2025-11-20)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Add typography font loading and generation utilities ([1ac5359](https://github.com/mindvalley/mv-design-system/commit/1ac5359270a8b8ecfda272728f20654e7c881aae))
7
+ * **tokens:** Correct color token opacity notation ([1ac5359](https://github.com/mindvalley/mv-design-system/commit/1ac5359270a8b8ecfda272728f20654e7c881aae))
8
+ * Correct typography for Mindvalley tokens ([1ac5359](https://github.com/mindvalley/mv-design-system/commit/1ac5359270a8b8ecfda272728f20654e7c881aae))
9
+ * Token filters ([1ac5359](https://github.com/mindvalley/mv-design-system/commit/1ac5359270a8b8ecfda272728f20654e7c881aae))
10
+ * Update color categories filter and naming transforms for grey tokens ([1ac5359](https://github.com/mindvalley/mv-design-system/commit/1ac5359270a8b8ecfda272728f20654e7c881aae))
11
+ * Use sentence-case in auto-format workflow commit message ([1ac5359](https://github.com/mindvalley/mv-design-system/commit/1ac5359270a8b8ecfda272728f20654e7c881aae))
12
+
13
+
14
+ ### Code Refactoring
15
+
16
+ * **style-dictionary:** Fix directory name typo and reorganize structure ([1ac5359](https://github.com/mindvalley/mv-design-system/commit/1ac5359270a8b8ecfda272728f20654e7c881aae))
17
+
18
+
19
+ * CRF-928: Update Mindvalley brand tokens (#132) ([1ac5359](https://github.com/mindvalley/mv-design-system/commit/1ac5359270a8b8ecfda272728f20654e7c881aae)), closes [#132](https://github.com/mindvalley/mv-design-system/issues/132)
20
+
21
+
22
+ ### Features
23
+
24
+ * **tokens:** Add color subcategory filtering ([1ac5359](https://github.com/mindvalley/mv-design-system/commit/1ac5359270a8b8ecfda272728f20654e7c881aae))
25
+ * Add lineHeightToRem function for converting line height values ([1ac5359](https://github.com/mindvalley/mv-design-system/commit/1ac5359270a8b8ecfda272728f20654e7c881aae))
26
+ * **tokens:** Add theme filtering for color tokens ([1ac5359](https://github.com/mindvalley/mv-design-system/commit/1ac5359270a8b8ecfda272728f20654e7c881aae))
27
+ * **tokens:** Update Style Dictionary v5 type interfaces ([1ac5359](https://github.com/mindvalley/mv-design-system/commit/1ac5359270a8b8ecfda272728f20654e7c881aae))
28
+ * **build:** Upgrade to Style Dictionary v5 and update build system ([1ac5359](https://github.com/mindvalley/mv-design-system/commit/1ac5359270a8b8ecfda272728f20654e7c881aae))
29
+
30
+
31
+ ### BREAKING CHANGES
32
+
33
+ * Import paths have changed from style-dictonary to style-dictionary
34
+
35
+ * feat(build): Upgrade to Style Dictionary v5 and update build system
36
+
37
+ - Update to Style Dictionary v5 API with async/await support
38
+ - Replace deprecated SD.buildAllPlatforms() with platform-specific builds
39
+ - Add new preprocessors for typography tokens
40
+ - Implement error handling for build failures
41
+ - Update import to use new modular style-dictionary structure
42
+ - Add explicit platform definitions with proper transform chains
43
+ * Build system now requires Style Dictionary v5
44
+
45
+ * feat(tokens): Add theme filtering for color tokens
46
+
47
+ Add color-base-theme filter to remove duplicate responsive theme variants
48
+ (desktop/tablet/mobile) from color token output. Currently filters to 'base'
49
+ theme only since all variants contain identical values.
50
+
51
+ - Add color-base-theme.ts with theme filtering logic
52
+ - Use constants pattern for maintainability and future extensibility
53
+ - Register filter in filters/index.ts
54
+
55
+ This establishes foundation for future light/dark theme support by updating
56
+ INCLUDED_COLOR_THEMES constant to ['base', 'light', 'dark'].
57
+
58
+ * feat(tokens): Add color subcategory filtering
59
+
60
+ Add color-categories filter to include only specific color subcategories
61
+ (accent and colors) in the build output, excluding 11 other subcategories
62
+ like primary, secondary, backgrounds, etc.
63
+
64
+ - Add color-categories.ts with subcategory filtering logic
65
+ - Follow brand-typography.ts pattern for consistency
66
+ - Use constants for type-safe filtering
67
+ - Register filter in filters/index.ts
68
+
69
+ This reduces the number of color tokens in the output to only those
70
+ needed by consumers.
71
+
72
+ * fix(tokens): Correct color token opacity notation
73
+
74
+ Transform opacity segments from hyphenated format (18-a) to concatenated format (18a).
75
+ This ensures consistent token naming and prevents build issues with opacity values.
76
+
77
+ * feat(tokens): Update Style Dictionary v5 type interfaces
78
+
79
+ Update build configuration to use correct Style Dictionary v5 TypeScript interfaces.
80
+ This ensures type safety and compatibility with the new filter system.
81
+
82
+ * docs(tokens): Add color aliasing strategy guide
83
+
84
+ Document the strategy for handling future color token aliasing when Supernova
85
+ switches from direct values to reference-based formats. Includes implementation
86
+ options, migration path, and Style Dictionary utility usage examples.
87
+
88
+ * test(tokens): Fix naming transform tests for theme suffix removal
89
+
90
+ Update test cases to include theme suffix in token paths (base) to match
91
+ actual token structure. Add test case for opacity notation fix (18-a → 18a).
92
+
93
+ * refactor(transforms): Rename responsiveTypography to kebab-case
94
+
95
+ Rename transform file from responsiveTypography.ts to responsive-typography.ts
96
+ for consistency with project naming conventions.
97
+
98
+ * refactor(types): Add proper TypeScript interfaces for typography tokens
99
+
100
+ Replace 'any' types with proper interfaces for typography token structure:
101
+ - Add TokenWithPreprocessorFields for preprocessor-added fields
102
+ - Add TypographyOriginalValue and TypographyTokenValue interfaces
103
+ - Add MeasureValue interface for nested value structures
104
+ - Update brand-typography filter with proper typing
105
+
106
+ * refactor(validation): Improve token schema validation with better types
107
+
108
+ Update Zod schemas and validation utilities:
109
+ - Add proper TypeScript types for validation results
110
+ - Improve schema structure for typography tokens
111
+ - Better error handling and type safety
112
+
113
+ * refactor(constants): Reorganize Style Dictionary constants
114
+
115
+ - Remove excluded-tokens.ts (no longer needed)
116
+ - Add typography/filter-config.ts for centralized filter configuration
117
+ - Update index.ts exports to reflect new structure
118
+
119
+ * refactor(preprocessors): Improve typography description preprocessor
120
+
121
+ Update preprocessor with better type safety and cleaner logic for
122
+ extracting and formatting typography token descriptions.
123
+
124
+ * build(tokens): Regenerate typography tokens with updated pipeline
125
+
126
+ Rebuild typography tokens using updated Style Dictionary v5 configuration:
127
+ - Cleaner token structure with proper formatting
128
+ - Improved type safety
129
+ - Better documentation comments
130
+
131
+ * refactor(tailwind): Update typography plugin imports
132
+
133
+ Update Tailwind typography plugin to use new token file structure.
134
+
135
+ * style(tests): Format test files with Biome
136
+
137
+ Apply Biome formatting to all test files for consistency.
138
+ Some forEach callback return warnings remain (safe to ignore in tests).
139
+
140
+ * chore(config): Update project configuration files
141
+
142
+ - Format CLAUDE.md documentation with consistent spacing
143
+ - Update .markdownlint.json rules
144
+ - Refine jest.config.js and tsconfig.build.json settings
145
+
146
+ * docs: Add Style Dictionary v5 migration documentation
147
+
148
+ Add comprehensive documentation for:
149
+ - B2B typography changes and migration guide
150
+ - Mindvalley typography changes and migration guide
151
+ - Typography token pipeline documentation
152
+ - Color theming migration strategy
153
+
154
+ * chore: update Mindvalley design tokens
155
+
156
+ * chore: update B2B design tokens
157
+
158
+ * chore: update B2B design tokens
159
+
160
+ * chore: update Mindvalley design tokens
161
+
162
+ * chore: update B2B design tokens
163
+
164
+ * chore: update Mindvalley design tokens
165
+
166
+ * chore: update Mindvalley design tokens
167
+
168
+ * chore: Update @biomejs/biome and related dependencies to version 2.3.4
169
+
170
+ - Updated schema version in biome.json to 2.3.4.
171
+ - Updated @biomejs/biome and its CLI dependencies in package.json and package-lock.json to version 2.3.4 for consistency and compatibility.
172
+
173
+ * chore: Apply formatting fixes to config and token files
174
+
175
+ - Add trailing newlines to all token JSON files (21 files)
176
+ - Format babel.config.js with consistent spacing and trailing commas
177
+ - Remove trailing semicolon from babel.config.js
178
+
179
+ All changes are formatting-only with no functional impact.
180
+
181
+ * refactor: Simplify typography plugin import and configuration in plugin.helpers.ts
182
+
183
+ - Consolidated typography plugin import statement.
184
+ - Streamlined the configuration setup for generating plugin CSS by removing unnecessary try-catch block.
185
+ - Ensured consistent formatting and readability of the code.
186
+
187
+ * chore: Update Jest configuration to ignore TypeScript declaration files and add test-utils path mapping
188
+
189
+ - Removed temporary path ignore for '.conductor/' and added ignore for TypeScript declaration files (\\.d\\.ts$).
190
+ - Added path mapping for test utilities to streamline test imports.
191
+
192
+ * build: Update TypeScript configuration files to enhance module resolution and include additional paths
193
+
194
+ - Modified tsconfig.build.json to include JavaScript files from the build directory and TypeScript files from the tailwind plugins directory.
195
+ - Updated tsconfig.json to remove the rootDir setting, include test files, and add path mapping for test utilities.
196
+ - Enhanced tsconfig.test.json with baseUrl and path mappings for better module resolution in tests.
197
+
198
+ * fix: Correct typography for Mindvalley tokens
199
+
200
+ - Updated the description for multiple typography tokens from "Sharp Grotesk Cyr Semibold 21" to "Sharp Grotesk Cyr Semibold 20" to ensure accuracy in design specifications.
201
+
202
+ * build: Style dictionary tooling
203
+
204
+ * refactor: Typography formatter utilities
205
+
206
+ * refactor: Typography transforms
207
+
208
+ * fix: Token filters
209
+
210
+ * refactor: Token schemas
211
+
212
+ * test: Utility coverage
213
+
214
+ * chore: Regenerate typography tokens
215
+
216
+ * docs: Typography weights
217
+
218
+ * docs: Remove outdated typography and color theming documentation
219
+
220
+ - Deleted temporary documentation files for B2B and Mindvalley typography changes, color theming migration, color token aliasing strategy, and design token validation, as they are no longer relevant or needed.
221
+ - Ensured that all references to these documents are removed to maintain clarity in the documentation structure.
222
+
223
+ * refactor: Update TypeScript imports for Style Dictionary compatibility
224
+
225
+ - Adjusted TypeScript import statements in various files to comply with TypeScript 5.8+ requirements, utilizing resolution-mode for ES module type imports in CommonJS.
226
+ - Reorganized exports in index.d.ts to streamline type definitions and ensure proper re-exporting of tokens and schemas.
227
+
228
+ * chore: Regenerate typography tokens after merge
229
+
230
+ * chore: Update package dependencies and TypeScript configuration
231
+
232
+ - Added @types/svg-sprite and @types/expect to package.json and package-lock.json.
233
+ - Included @types/vinyl in package-lock.json with its dependencies.
234
+ - Modified tsconfig.json to exclude __tests__ from the include path.
235
+
236
+ * refactor: Enhance SVG sprite configuration and type definitions
237
+
238
+ - Updated the import statement for SVGSpriter to include its Config type.
239
+ - Refactored the SvgSpriteConfig interface to use Partial<SVGSpriterConfig>.
240
+ - Simplified the SVG transformation process by removing redundant transformations.
241
+ - Added a JSDoc comment for the replaceSvgFillColorWithCurrent function to improve documentation clarity.
242
+
243
+ * docs: Remove CLAUDE.md file containing project guidance and documentation
244
+
245
+ - Deleted the CLAUDE.md file, which provided comprehensive guidance on the Mindvalley Design System, including project overview, key commands, architecture, and TypeScript migration notes.
246
+
247
+ * fix: Update color categories filter and naming transforms for grey tokens
248
+
249
+ - Enhanced the color categories filter to include all tokens in the 'grey' color group, allowing "black" and "white".
250
+ - Modified naming transforms to handle special cases for grey tokens, ensuring "grey.black" and "grey.white" are output as "black" and "white" without prefixes.
251
+
252
+ * fix: Add typography font loading and generation utilities
253
+
254
+ - Implemented a new utility to generate @font-face CSS declarations for typography tokens, mapping font families to CDN URLs.
255
+ - Updated the build script to generate font face CSS files during the token build process.
256
+ - Added comprehensive documentation on loading typography fonts across various frameworks, including usage examples for Mindvalley and B2B brands.
257
+ - Enhanced package.json to include new typography output paths for TypeScript definitions and JavaScript modules.
258
+
259
+ * test: Fix color token naming tests to preserve opacity suffixes
260
+
261
+ - Updated tests to expect 'black-0a' and 'white-0a' instead of stripping the suffix
262
+ - These tokens should preserve their opacity notation for proper color variants
263
+ - All 386 tests now passing
264
+
265
+ * fix: Use sentence-case in auto-format workflow commit message
266
+
267
+ - Changed 'auto-format' to 'Auto-format' to comply with commitlint rules
268
+ - Fixes automated workflow commit message validation failures
269
+
270
+ * chore: Auto-format design token updates
271
+
272
+ Applied Biome formatting to ensure consistency across token files.
273
+ This is an automated formatting commit.
274
+ * **style-dictionary:** Import paths have changed from style-dictonary to style-dictionary
275
+ * **build:** Build system now requires Style Dictionary v5
276
+
1
277
  # Changelog
278
+
2
279
  All notable changes to this project will be documented in this file.
3
280
 
4
- # [3.4.0](https://github.com/mindvalley/mv-design-system/compare/v3.3.4...v3.4.0) (2025-09-03)
281
+ ## [3.4.2](https://github.com/mindvalley/mv-design-system/compare/v3.4.1...v3.4.2) (2025-10-22)
282
+
283
+ ### Bug Fixes
5
284
 
285
+ * Disable npm provenance for private repository ([#138](https://github.com/mindvalley/mv-design-system/issues/138)) ([df21279](https://github.com/mindvalley/mv-design-system/commit/df212796ce7bfaa60dcc8792649112b977a99456))
286
+
287
+ # [3.4.0](https://github.com/mindvalley/mv-design-system/compare/v3.3.4...v3.4.0) (2025-09-03)
6
288
 
7
289
  ### Bug Fixes
8
290
 
@@ -11,7 +293,6 @@ All notable changes to this project will be documented in this file.
11
293
  * Restore typography plugin imports to use source files ([72e3511](https://github.com/mindvalley/mv-design-system/commit/72e3511b9a58c550c6da0fc8d92894058495b910))
12
294
  * Update test helper to handle TypeScript module imports ([72e3511](https://github.com/mindvalley/mv-design-system/commit/72e3511b9a58c550c6da0fc8d92894058495b910))
13
295
 
14
-
15
296
  ### Features
16
297
 
17
298
  * Add TypeScript support to webpack configuration ([72e3511](https://github.com/mindvalley/mv-design-system/commit/72e3511b9a58c550c6da0fc8d92894058495b910))
@@ -22,10 +303,6 @@ All notable changes to this project will be documented in this file.
22
303
  * Convert typography plugin to TypeScript ([72e3511](https://github.com/mindvalley/mv-design-system/commit/72e3511b9a58c550c6da0fc8d92894058495b910))
23
304
  * Update build system to generate TypeScript token files ([72e3511](https://github.com/mindvalley/mv-design-system/commit/72e3511b9a58c550c6da0fc8d92894058495b910))
24
305
 
25
- # Changelog
26
-
27
- All notable changes to this project will be documented in this file.
28
-
29
306
  ## [3.3.4](https://github.com/mindvalley/mv-design-system/compare/v3.3.3...v3.3.4) (2025-06-26)
30
307
 
31
308
  ### ⚠ Updates
package/dist/b2b.d.ts CHANGED
@@ -4,57 +4,46 @@ export interface ColorTokens {
4
4
  export declare const colors: ColorTokens;
5
5
  declare const _default: {
6
6
  colors: {
7
- "red-50": string;
8
- "red-100": string;
9
- "red-200": string;
10
- "red-300": string;
11
- "red-400": string;
12
- "red-500": string;
13
- "red-600": string;
14
- "red-700": string;
15
- "red-800": string;
16
- "red-900": string;
17
- "teal-50": string;
18
- "teal-100": string;
19
- "teal-200": string;
20
- "teal-300": string;
21
- "teal-400": string;
22
- "teal-500": string;
23
- "teal-600": string;
24
- "teal-700": string;
25
- "teal-800": string;
26
- "teal-900": string;
27
- "red-18a": string;
28
- "red-12a": string;
29
- "red-8a": string;
30
- "red-4a": string;
31
- "brown-90a": string;
32
- "red-28a": string;
33
- "dark-brown-12a": string;
34
- "dark-brown-80a": string;
35
- "brown-24a": string;
36
- "brown-12a": string;
37
- "brown-8a": string;
38
- "dark-brown-24a": string;
39
- "dark-brown-8a": string;
40
- "dark-brown-4a": string;
41
- "red-70a": string;
42
- "purple-70a": string;
43
- "purple-28a": string;
44
- "purple-18a": string;
45
- "purple-12a": string;
46
- "purple-8a": string;
47
- "purple-4a": string;
48
- "brown-50": string;
49
- "brown-100": string;
50
- "brown-200": string;
51
- "brown-300": string;
52
- "brown-400": string;
53
- "brown-500": string;
54
- "brown-600": string;
55
- "brown-700": string;
56
- "brown-800": string;
57
- "brown-900": string;
7
+ "black-0a": string;
8
+ "black-12a": string;
9
+ "black-18a": string;
10
+ "black-24a": string;
11
+ "black-4a": string;
12
+ "black-40a": string;
13
+ "black-50a": string;
14
+ "black-6a": string;
15
+ "black-60a": string;
16
+ "black-70a": string;
17
+ "black-8a": string;
18
+ "black-80a": string;
19
+ "black-90a": string;
20
+ "purple-500-20a": string;
21
+ "purple-500-90a": string;
22
+ "purple-600-10a": string;
23
+ "purple-tint": string;
24
+ "white-0a": string;
25
+ "white-12a": string;
26
+ "white-18a": string;
27
+ "white-24a": string;
28
+ "white-4a": string;
29
+ "white-40a": string;
30
+ "white-50a": string;
31
+ "white-6a": string;
32
+ "white-60a": string;
33
+ "white-70a": string;
34
+ "white-8a": string;
35
+ "white-80a": string;
36
+ "white-90a": string;
37
+ "aqua-50": string;
38
+ "aqua-100": string;
39
+ "aqua-200": string;
40
+ "aqua-300": string;
41
+ "aqua-400": string;
42
+ "aqua-500": string;
43
+ "aqua-600": string;
44
+ "aqua-700": string;
45
+ "aqua-800": string;
46
+ "aqua-900": string;
58
47
  "blue-50": string;
59
48
  "blue-100": string;
60
49
  "blue-200": string;
@@ -65,6 +54,51 @@ declare const _default: {
65
54
  "blue-700": string;
66
55
  "blue-800": string;
67
56
  "blue-900": string;
57
+ "green-50": string;
58
+ "green-100": string;
59
+ "green-200": string;
60
+ "green-300": string;
61
+ "green-400": string;
62
+ "green-500": string;
63
+ "green-600": string;
64
+ "green-700": string;
65
+ "green-800": string;
66
+ "green-900": string;
67
+ "grey-100": string;
68
+ "grey-150": string;
69
+ "grey-200": string;
70
+ "grey-250": string;
71
+ "grey-300": string;
72
+ "grey-350": string;
73
+ "grey-400": string;
74
+ "grey-450": string;
75
+ "grey-500": string;
76
+ "grey-550": string;
77
+ "grey-600": string;
78
+ "grey-650": string;
79
+ "grey-700": string;
80
+ black: string;
81
+ white: string;
82
+ "orange-50": string;
83
+ "orange-100": string;
84
+ "orange-200": string;
85
+ "orange-300": string;
86
+ "orange-400": string;
87
+ "orange-500": string;
88
+ "orange-600": string;
89
+ "orange-700": string;
90
+ "orange-800": string;
91
+ "orange-900": string;
92
+ "pink-50": string;
93
+ "pink-100": string;
94
+ "pink-200": string;
95
+ "pink-300": string;
96
+ "pink-400": string;
97
+ "pink-500": string;
98
+ "pink-600": string;
99
+ "pink-700": string;
100
+ "pink-800": string;
101
+ "pink-900": string;
68
102
  "purple-50": string;
69
103
  "purple-100": string;
70
104
  "purple-200": string;
@@ -75,6 +109,36 @@ declare const _default: {
75
109
  "purple-700": string;
76
110
  "purple-800": string;
77
111
  "purple-900": string;
112
+ "red-50": string;
113
+ "red-100": string;
114
+ "red-200": string;
115
+ "red-300": string;
116
+ "red-400": string;
117
+ "red-500": string;
118
+ "red-600": string;
119
+ "red-700": string;
120
+ "red-800": string;
121
+ "red-900": string;
122
+ "teal-50": string;
123
+ "teal-100": string;
124
+ "teal-200": string;
125
+ "teal-300": string;
126
+ "teal-400": string;
127
+ "teal-500": string;
128
+ "teal-600": string;
129
+ "teal-700": string;
130
+ "teal-800": string;
131
+ "teal-900": string;
132
+ "yellow-50": string;
133
+ "yellow-100": string;
134
+ "yellow-200": string;
135
+ "yellow-300": string;
136
+ "yellow-400": string;
137
+ "yellow-500": string;
138
+ "yellow-600": string;
139
+ "yellow-700": string;
140
+ "yellow-800": string;
141
+ "yellow-900": string;
78
142
  };
79
143
  };
80
144
  export default _default;
package/dist/b2b.d.ts.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"b2b.d.ts","sourceRoot":"","sources":["../src/b2b.ts"],"names":[],"mappings":"AACA,MAAM,WAAW,WAAW;IAC1B,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;CACvB;AAMD,eAAO,MAAM,MAAM,EAAmB,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGlD,wBAEE"}
1
+ {"version":3,"file":"b2b.d.ts","sourceRoot":"","sources":["../src/b2b.ts"],"names":[],"mappings":"AACA,MAAM,WAAW,WAAW;IAC1B,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;CACtB;AAMD,eAAO,MAAM,MAAM,EAAmB,WAAW,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGjD,wBAEC"}
package/dist/b2b.js CHANGED
@@ -1,2 +1,2 @@
1
- !function(e,r){"object"==typeof exports&&"object"==typeof module?module.exports=r():"function"==typeof define&&define.amd?define([],r):"object"==typeof exports?exports.mvDesignSystem=r():e.mvDesignSystem=r()}(this,(()=>(()=>{var e={875:e=>{e.exports={"red-50":"#fff2f1","red-100":"#ffe4e2","red-200":"#ffada7","red-300":"#ff8d82","red-400":"#ff6d5c","red-500":"#e85546","red-600":"#d03c2f","red-700":"#a83126","red-800":"#782b24","red-900":"#41120e","teal-50":"#f1fcfb","teal-100":"#d1f6f3","teal-200":"#a3ece8","teal-300":"#6ddbda","teal-400":"#3cbcbe","teal-500":"#25a4a7","teal-600":"#1b8186","teal-700":"#1a6367","teal-800":"#194448","teal-900":"#09252a","red-18a":"rgba(255, 109, 92, 0.18)","red-12a":"rgba(255, 109, 92, 0.12)","red-8a":"rgba(255, 109, 92, 0.08)","red-4a":"rgba(255, 109, 92, 0.04)","brown-90a":"rgba(249, 248, 244, 0.9)","red-28a":"rgba(255, 109, 92, 0.28)","dark-brown-12a":"rgba(135, 121, 111, 0.12)","dark-brown-80a":"rgba(135, 121, 111, 0.8)","brown-24a":"rgba(249, 248, 244, 0.24)","brown-12a":"rgba(249, 248, 244, 0.12)","brown-8a":"rgba(249, 248, 244, 0.08)","dark-brown-24a":"rgba(135, 121, 111, 0.24)","dark-brown-8a":"rgba(135, 121, 111, 0.08)","dark-brown-4a":"rgba(135, 121, 111, 0.04)","red-70a":"rgba(255, 109, 92, 0.7)","purple-70a":"rgba(158, 148, 241, 0.7)","purple-28a":"rgba(158, 148, 241, 0.28)","purple-18a":"rgba(158, 148, 241, 0.18)","purple-12a":"rgba(158, 148, 241, 0.12)","purple-8a":"rgba(158, 148, 241, 0.08)","purple-4a":"rgba(158, 148, 241, 0.04)","brown-50":"#f9f8f4","brown-100":"#f3efe9","brown-200":"#ede6de","brown-300":"#d4c5ba","brown-400":"#ae9f95","brown-500":"#87796f","brown-600":"#6f635c","brown-700":"#574e48","brown-800":"#3f3835","brown-900":"#272221","blue-50":"#f0f6fe","blue-100":"#dce9fd","blue-200":"#c2dafb","blue-300":"#98c3f8","blue-400":"#67a3f3","blue-500":"#4380ee","blue-600":"#3165e3","blue-700":"#204bb4","blue-800":"#192e75","blue-900":"#121f54","purple-50":"#f5f4fe","purple-100":"#ecebfc","purple-200":"#dad9fb","purple-300":"#bfbbf7","purple-400":"#9e94f1","purple-500":"#7e68ea","purple-600":"#664bdd","purple-700":"#4d2dab","purple-800":"#40268c","purple-900":"#26175e"}}},r={};function a(b){var f=r[b];if(void 0!==f)return f.exports;var d=r[b]={exports:{}};return e[b](d,d.exports,a),d.exports}var b={};return(()=>{"use strict";var e=b;Object.defineProperty(e,"__esModule",{value:!0}),e.colors=void 0;const r=a(875);e.colors=r,e.default={colors:r}})(),b})()));
1
+ !function(e,a){"object"==typeof exports&&"object"==typeof module?module.exports=a():"function"==typeof define&&define.amd?define([],a):"object"==typeof exports?exports.mvDesignSystem=a():e.mvDesignSystem=a()}(this,(()=>(()=>{var e={875:e=>{e.exports={"black-0a":"rgba(0, 0, 0, 0)","black-12a":"rgba(0, 0, 0, 0.12)","black-18a":"rgba(0, 0, 0, 0.18)","black-24a":"rgba(0, 0, 0, 0.24)","black-4a":"rgba(0, 0, 0, 0.04)","black-40a":"rgba(0, 0, 0, 0.4)","black-50a":"rgba(0, 0, 0, 0.5)","black-6a":"rgba(0, 0, 0, 0.06)","black-60a":"rgba(0, 0, 0, 0.6)","black-70a":"rgba(0, 0, 0, 0.7)","black-8a":"rgba(0, 0, 0, 0.08)","black-80a":"rgba(0, 0, 0, 0.8)","black-90a":"rgba(0, 0, 0, 0.9)","purple-500-20a":"rgba(186, 98, 253, 0.2)","purple-500-90a":"rgba(186, 98, 253, 0.9)","purple-600-10a":"rgba(122, 18, 212, 0.1)","purple-tint":"#9b37f2","white-0a":"rgba(255, 255, 255, 0)","white-12a":"rgba(255, 255, 255, 0.12)","white-18a":"rgba(255, 255, 255, 0.18)","white-24a":"rgba(255, 255, 255, 0.24)","white-4a":"rgba(255, 255, 255, 0.04)","white-40a":"rgba(255, 255, 255, 0.4)","white-50a":"rgba(255, 255, 255, 0.5)","white-6a":"rgba(255, 255, 255, 0.06)","white-60a":"rgba(255, 255, 255, 0.6)","white-70a":"rgba(255, 255, 255, 0.7)","white-8a":"rgba(255, 255, 255, 0.08)","white-80a":"rgba(255, 255, 255, 0.8)","white-90a":"rgba(255, 255, 255, 0.9)","aqua-50":"#eaf7ff","aqua-100":"#dff4ff","aqua-200":"#caecff","aqua-300":"#a0ddff","aqua-400":"#76ceff","aqua-500":"#2cb3ff","aqua-600":"#1b9ce6","aqua-700":"#1785c3","aqua-800":"#126596","aqua-900":"#0c4668","blue-50":"#ebf5ff","blue-100":"#e0f0ff","blue-200":"#cce6ff","blue-300":"#a3d3ff","blue-400":"#7abfff","blue-500":"#329dff","blue-600":"#005cff","blue-700":"#1c3bd4","blue-800":"#1832b4","blue-900":"#12268a","green-50":"#e8f9f1","green-100":"#dcf6ea","green-200":"#c5efdd","green-300":"#97e3c1","green-400":"#69d7a6","green-500":"#18c176","green-600":"#159f65","green-700":"#128756","green-800":"#0e6742","green-900":"#09482d","grey-100":"#f9f9f9","grey-150":"#f3f4f6","grey-200":"#ebedef","grey-250":"#dfe1e5","grey-300":"#ced1d7","grey-350":"#b3b8c1","grey-400":"#979ca5","grey-450":"#71767f","grey-500":"#595e67","grey-550":"#41464f","grey-600":"#292d38","grey-650":"#181d26","grey-700":"#0f131a",black:"#000000",white:"#ffffff","orange-50":"#fff4e9","orange-100":"#ffefdd","orange-200":"#ffe4c7","orange-300":"#ffce9a","orange-400":"#ffb96d","orange-500":"#ff931f","orange-600":"#ed6325","orange-700":"#c9541f","orange-800":"#9a4018","orange-900":"#6b2d11","pink-50":"#feeaf3","pink-100":"#fedfec","pink-200":"#fdcae0","pink-300":"#fca0c7","pink-400":"#fa76af","pink-500":"#f72c84","pink-600":"#df1a6f","pink-700":"#be165e","pink-800":"#911148","pink-900":"#640c32","purple-50":"#f8efff","purple-100":"#f5e7ff","purple-200":"#eed8fe","purple-300":"#e0b8fe","purple-400":"#d299fe","purple-500":"#9b37f2","purple-600":"#7a12d4","purple-700":"#680fb4","purple-800":"#4f0c8a","purple-900":"#37085f","red-50":"#feeded","red-100":"#fde3e3","red-200":"#fcd1d1","red-300":"#faacac","red-400":"#f78787","red-500":"#f34747","red-600":"#d8273a","red-700":"#b82131","red-800":"#8c1926","red-900":"#61121a","teal-50":"#ebfafb","teal-100":"#e1f8f9","teal-200":"#cdf3f5","teal-300":"#a5eaed","teal-400":"#7de0e4","teal-500":"#37d0d6","teal-600":"#1e9094","teal-700":"#1a7a7e","teal-800":"#145e60","teal-900":"#0e4143","yellow-50":"#fefae8","yellow-100":"#fef7dc","yellow-200":"#fcf1c5","yellow-300":"#fae797","yellow-400":"#f8dc69","yellow-500":"#f5c918","yellow-600":"#e8ad11","yellow-700":"#c5930e","yellow-800":"#97700b","yellow-900":"#684e08"}}},a={};function f(r){var b=a[r];if(void 0!==b)return b.exports;var l=a[r]={exports:{}};return e[r](l,l.exports,f),l.exports}var r={};return(()=>{"use strict";var e=r;Object.defineProperty(e,"__esModule",{value:!0}),e.colors=void 0;const a=f(875);e.colors=a,e.default={colors:a}})(),r})()));
2
2
  //# sourceMappingURL=b2b.js.map
package/dist/b2b.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"b2b.js","mappings":"CAAA,SAA2CA,EAAMC,GAC1B,iBAAZC,SAA0C,iBAAXC,OACxCA,OAAOD,QAAUD,IACQ,mBAAXG,QAAyBA,OAAOC,IAC9CD,OAAO,GAAIH,GACe,iBAAZC,QACdA,QAAwB,eAAID,IAE5BD,EAAqB,eAAIC,GAC1B,CATD,CASGK,MAAM,I,qBCJTH,EAAOD,QAAU,CACf,SAAU,UACV,UAAW,UACX,UAAW,UACX,UAAW,UACX,UAAW,UACX,UAAW,UACX,UAAW,UACX,UAAW,UACX,UAAW,UACX,UAAW,UACX,UAAW,UACX,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,UAAW,2BACX,UAAW,2BACX,SAAU,2BACV,SAAU,2BACV,YAAa,2BACb,UAAW,2BACX,iBAAkB,4BAClB,iBAAkB,2BAClB,YAAa,4BACb,YAAa,4BACb,WAAY,4BACZ,iBAAkB,4BAClB,gBAAiB,4BACjB,gBAAiB,4BACjB,UAAW,0BACX,aAAc,2BACd,aAAc,4BACd,aAAc,4BACd,aAAc,4BACd,YAAa,4BACb,YAAa,4BACb,WAAY,UACZ,YAAa,UACb,YAAa,UACb,YAAa,UACb,YAAa,UACb,YAAa,UACb,YAAa,UACb,YAAa,UACb,YAAa,UACb,YAAa,UACb,UAAW,UACX,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,YAAa,UACb,aAAc,UACd,aAAc,UACd,aAAc,UACd,aAAc,UACd,aAAc,UACd,aAAc,UACd,aAAc,UACd,aAAc,UACd,aAAc,U,GC3EZK,EAA2B,CAAC,EAGhC,SAASC,EAAoBC,GAE5B,IAAIC,EAAeH,EAAyBE,GAC5C,QAAqBE,IAAjBD,EACH,OAAOA,EAAaR,QAGrB,IAAIC,EAASI,EAAyBE,GAAY,CAGjDP,QAAS,CAAC,GAOX,OAHAU,EAAoBH,GAAUN,EAAQA,EAAOD,QAASM,GAG/CL,EAAOD,OACf,C,0CCrBAW,OAAOC,eAAeZ,EAAS,aAAc,CAAEa,OAAO,IACtDb,EAAQc,YAAS,EAEjB,MAAMC,EAAe,EAAQ,KAE7Bf,EAAQc,OAASC,EAEjBf,EAAA,QAAkB,CACdc,OAAQC,E","sources":["webpack://mvDesignSystem/webpack/universalModuleDefinition","webpack://mvDesignSystem/./src/build/js/b2b/colors.js","webpack://mvDesignSystem/webpack/bootstrap","webpack://mvDesignSystem/./src/b2b.ts"],"sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"mvDesignSystem\"] = factory();\n\telse\n\t\troot[\"mvDesignSystem\"] = factory();\n})(this, () => {\nreturn ","/**\n * Do not edit directly\n * Generated on Wed, 03 Sep 2025 01:08:45 GMT\n */\n\nmodule.exports = {\n \"red-50\": \"#fff2f1\",\n \"red-100\": \"#ffe4e2\",\n \"red-200\": \"#ffada7\",\n \"red-300\": \"#ff8d82\",\n \"red-400\": \"#ff6d5c\",\n \"red-500\": \"#e85546\",\n \"red-600\": \"#d03c2f\",\n \"red-700\": \"#a83126\",\n \"red-800\": \"#782b24\",\n \"red-900\": \"#41120e\",\n \"teal-50\": \"#f1fcfb\",\n \"teal-100\": \"#d1f6f3\",\n \"teal-200\": \"#a3ece8\",\n \"teal-300\": \"#6ddbda\",\n \"teal-400\": \"#3cbcbe\",\n \"teal-500\": \"#25a4a7\",\n \"teal-600\": \"#1b8186\",\n \"teal-700\": \"#1a6367\",\n \"teal-800\": \"#194448\",\n \"teal-900\": \"#09252a\",\n \"red-18a\": \"rgba(255, 109, 92, 0.18)\",\n \"red-12a\": \"rgba(255, 109, 92, 0.12)\",\n \"red-8a\": \"rgba(255, 109, 92, 0.08)\",\n \"red-4a\": \"rgba(255, 109, 92, 0.04)\",\n \"brown-90a\": \"rgba(249, 248, 244, 0.9)\",\n \"red-28a\": \"rgba(255, 109, 92, 0.28)\",\n \"dark-brown-12a\": \"rgba(135, 121, 111, 0.12)\",\n \"dark-brown-80a\": \"rgba(135, 121, 111, 0.8)\",\n \"brown-24a\": \"rgba(249, 248, 244, 0.24)\",\n \"brown-12a\": \"rgba(249, 248, 244, 0.12)\",\n \"brown-8a\": \"rgba(249, 248, 244, 0.08)\",\n \"dark-brown-24a\": \"rgba(135, 121, 111, 0.24)\",\n \"dark-brown-8a\": \"rgba(135, 121, 111, 0.08)\",\n \"dark-brown-4a\": \"rgba(135, 121, 111, 0.04)\",\n \"red-70a\": \"rgba(255, 109, 92, 0.7)\",\n \"purple-70a\": \"rgba(158, 148, 241, 0.7)\",\n \"purple-28a\": \"rgba(158, 148, 241, 0.28)\",\n \"purple-18a\": \"rgba(158, 148, 241, 0.18)\",\n \"purple-12a\": \"rgba(158, 148, 241, 0.12)\",\n \"purple-8a\": \"rgba(158, 148, 241, 0.08)\",\n \"purple-4a\": \"rgba(158, 148, 241, 0.04)\",\n \"brown-50\": \"#f9f8f4\",\n \"brown-100\": \"#f3efe9\",\n \"brown-200\": \"#ede6de\",\n \"brown-300\": \"#d4c5ba\",\n \"brown-400\": \"#ae9f95\",\n \"brown-500\": \"#87796f\",\n \"brown-600\": \"#6f635c\",\n \"brown-700\": \"#574e48\",\n \"brown-800\": \"#3f3835\",\n \"brown-900\": \"#272221\",\n \"blue-50\": \"#f0f6fe\",\n \"blue-100\": \"#dce9fd\",\n \"blue-200\": \"#c2dafb\",\n \"blue-300\": \"#98c3f8\",\n \"blue-400\": \"#67a3f3\",\n \"blue-500\": \"#4380ee\",\n \"blue-600\": \"#3165e3\",\n \"blue-700\": \"#204bb4\",\n \"blue-800\": \"#192e75\",\n \"blue-900\": \"#121f54\",\n \"purple-50\": \"#f5f4fe\",\n \"purple-100\": \"#ecebfc\",\n \"purple-200\": \"#dad9fb\",\n \"purple-300\": \"#bfbbf7\",\n \"purple-400\": \"#9e94f1\",\n \"purple-500\": \"#7e68ea\",\n \"purple-600\": \"#664bdd\",\n \"purple-700\": \"#4d2dab\",\n \"purple-800\": \"#40268c\",\n \"purple-900\": \"#26175e\"\n};\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.colors = void 0;\n// Import colors from CommonJS module\nconst colorsModule = require(\"./build/js/b2b/colors\");\n// Re-export colors with proper typing\nexports.colors = colorsModule;\n// Default export for CommonJS compatibility\nexports.default = {\n colors: colorsModule,\n};\n"],"names":["root","factory","exports","module","define","amd","this","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","undefined","__webpack_modules__","Object","defineProperty","value","colors","colorsModule"],"sourceRoot":""}
1
+ {"version":3,"file":"b2b.js","mappings":"CAAA,SAA2CA,EAAMC,GAC1B,iBAAZC,SAA0C,iBAAXC,OACxCA,OAAOD,QAAUD,IACQ,mBAAXG,QAAyBA,OAAOC,IAC9CD,OAAO,GAAIH,GACe,iBAAZC,QACdA,QAAwB,eAAID,IAE5BD,EAAqB,eAAIC,GAC1B,CATD,CASGK,MAAM,I,qBCLTH,EAAOD,QAAU,CACf,WAAY,mBACZ,YAAa,sBACb,YAAa,sBACb,YAAa,sBACb,WAAY,sBACZ,YAAa,qBACb,YAAa,qBACb,WAAY,sBACZ,YAAa,qBACb,YAAa,qBACb,WAAY,sBACZ,YAAa,qBACb,YAAa,qBACb,iBAAkB,0BAClB,iBAAkB,0BAClB,iBAAkB,0BAClB,cAAe,UACf,WAAY,yBACZ,YAAa,4BACb,YAAa,4BACb,YAAa,4BACb,WAAY,4BACZ,YAAa,2BACb,YAAa,2BACb,WAAY,4BACZ,YAAa,2BACb,YAAa,2BACb,WAAY,4BACZ,YAAa,2BACb,YAAa,2BACb,UAAW,UACX,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,UAAW,UACX,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,YAAa,UACb,YAAa,UACb,YAAa,UACb,YAAa,UACb,YAAa,UACb,YAAa,UACb,YAAa,UACb,YAAa,UACb,YAAa,UACb,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZK,MAAO,UACPC,MAAO,UACP,YAAa,UACb,aAAc,UACd,aAAc,UACd,aAAc,UACd,aAAc,UACd,aAAc,UACd,aAAc,UACd,aAAc,UACd,aAAc,UACd,aAAc,UACd,UAAW,UACX,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,YAAa,UACb,aAAc,UACd,aAAc,UACd,aAAc,UACd,aAAc,UACd,aAAc,UACd,aAAc,UACd,aAAc,UACd,aAAc,UACd,aAAc,UACd,SAAU,UACV,UAAW,UACX,UAAW,UACX,UAAW,UACX,UAAW,UACX,UAAW,UACX,UAAW,UACX,UAAW,UACX,UAAW,UACX,UAAW,UACX,UAAW,UACX,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,YAAa,UACb,aAAc,UACd,aAAc,UACd,aAAc,UACd,aAAc,UACd,aAAc,UACd,aAAc,UACd,aAAc,UACd,aAAc,UACd,aAAc,U,GC1IZC,EAA2B,CAAC,EAGhC,SAASC,EAAoBC,GAE5B,IAAIC,EAAeH,EAAyBE,GAC5C,QAAqBE,IAAjBD,EACH,OAAOA,EAAaV,QAGrB,IAAIC,EAASM,EAAyBE,GAAY,CAGjDT,QAAS,CAAC,GAOX,OAHAY,EAAoBH,GAAUR,EAAQA,EAAOD,QAASQ,GAG/CP,EAAOD,OACf,C,0CCrBAa,OAAOC,eAAed,EAAS,aAAc,CAAEe,OAAO,IACtDf,EAAQgB,YAAS,EAEjB,MAAMC,EAAe,EAAQ,KAE7BjB,EAAQgB,OAASC,EAEjBjB,EAAA,QAAkB,CACdgB,OAAQC,E","sources":["webpack://mvDesignSystem/webpack/universalModuleDefinition","webpack://mvDesignSystem/./src/build/js/b2b/colors.js","webpack://mvDesignSystem/webpack/bootstrap","webpack://mvDesignSystem/./src/b2b.ts"],"sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"mvDesignSystem\"] = factory();\n\telse\n\t\troot[\"mvDesignSystem\"] = factory();\n})(this, () => {\nreturn ","/**\n * Do not edit directly, this file was auto-generated.\n */\n\nmodule.exports = {\n \"black-0a\": \"rgba(0, 0, 0, 0)\",\n \"black-12a\": \"rgba(0, 0, 0, 0.12)\",\n \"black-18a\": \"rgba(0, 0, 0, 0.18)\",\n \"black-24a\": \"rgba(0, 0, 0, 0.24)\",\n \"black-4a\": \"rgba(0, 0, 0, 0.04)\",\n \"black-40a\": \"rgba(0, 0, 0, 0.4)\",\n \"black-50a\": \"rgba(0, 0, 0, 0.5)\",\n \"black-6a\": \"rgba(0, 0, 0, 0.06)\",\n \"black-60a\": \"rgba(0, 0, 0, 0.6)\",\n \"black-70a\": \"rgba(0, 0, 0, 0.7)\",\n \"black-8a\": \"rgba(0, 0, 0, 0.08)\",\n \"black-80a\": \"rgba(0, 0, 0, 0.8)\",\n \"black-90a\": \"rgba(0, 0, 0, 0.9)\",\n \"purple-500-20a\": \"rgba(186, 98, 253, 0.2)\",\n \"purple-500-90a\": \"rgba(186, 98, 253, 0.9)\",\n \"purple-600-10a\": \"rgba(122, 18, 212, 0.1)\",\n \"purple-tint\": \"#9b37f2\",\n \"white-0a\": \"rgba(255, 255, 255, 0)\",\n \"white-12a\": \"rgba(255, 255, 255, 0.12)\",\n \"white-18a\": \"rgba(255, 255, 255, 0.18)\",\n \"white-24a\": \"rgba(255, 255, 255, 0.24)\",\n \"white-4a\": \"rgba(255, 255, 255, 0.04)\",\n \"white-40a\": \"rgba(255, 255, 255, 0.4)\",\n \"white-50a\": \"rgba(255, 255, 255, 0.5)\",\n \"white-6a\": \"rgba(255, 255, 255, 0.06)\",\n \"white-60a\": \"rgba(255, 255, 255, 0.6)\",\n \"white-70a\": \"rgba(255, 255, 255, 0.7)\",\n \"white-8a\": \"rgba(255, 255, 255, 0.08)\",\n \"white-80a\": \"rgba(255, 255, 255, 0.8)\",\n \"white-90a\": \"rgba(255, 255, 255, 0.9)\",\n \"aqua-50\": \"#eaf7ff\",\n \"aqua-100\": \"#dff4ff\",\n \"aqua-200\": \"#caecff\",\n \"aqua-300\": \"#a0ddff\",\n \"aqua-400\": \"#76ceff\",\n \"aqua-500\": \"#2cb3ff\",\n \"aqua-600\": \"#1b9ce6\",\n \"aqua-700\": \"#1785c3\",\n \"aqua-800\": \"#126596\",\n \"aqua-900\": \"#0c4668\",\n \"blue-50\": \"#ebf5ff\",\n \"blue-100\": \"#e0f0ff\",\n \"blue-200\": \"#cce6ff\",\n \"blue-300\": \"#a3d3ff\",\n \"blue-400\": \"#7abfff\",\n \"blue-500\": \"#329dff\",\n \"blue-600\": \"#005cff\",\n \"blue-700\": \"#1c3bd4\",\n \"blue-800\": \"#1832b4\",\n \"blue-900\": \"#12268a\",\n \"green-50\": \"#e8f9f1\",\n \"green-100\": \"#dcf6ea\",\n \"green-200\": \"#c5efdd\",\n \"green-300\": \"#97e3c1\",\n \"green-400\": \"#69d7a6\",\n \"green-500\": \"#18c176\",\n \"green-600\": \"#159f65\",\n \"green-700\": \"#128756\",\n \"green-800\": \"#0e6742\",\n \"green-900\": \"#09482d\",\n \"grey-100\": \"#f9f9f9\",\n \"grey-150\": \"#f3f4f6\",\n \"grey-200\": \"#ebedef\",\n \"grey-250\": \"#dfe1e5\",\n \"grey-300\": \"#ced1d7\",\n \"grey-350\": \"#b3b8c1\",\n \"grey-400\": \"#979ca5\",\n \"grey-450\": \"#71767f\",\n \"grey-500\": \"#595e67\",\n \"grey-550\": \"#41464f\",\n \"grey-600\": \"#292d38\",\n \"grey-650\": \"#181d26\",\n \"grey-700\": \"#0f131a\",\n black: \"#000000\",\n white: \"#ffffff\",\n \"orange-50\": \"#fff4e9\",\n \"orange-100\": \"#ffefdd\",\n \"orange-200\": \"#ffe4c7\",\n \"orange-300\": \"#ffce9a\",\n \"orange-400\": \"#ffb96d\",\n \"orange-500\": \"#ff931f\",\n \"orange-600\": \"#ed6325\",\n \"orange-700\": \"#c9541f\",\n \"orange-800\": \"#9a4018\",\n \"orange-900\": \"#6b2d11\",\n \"pink-50\": \"#feeaf3\",\n \"pink-100\": \"#fedfec\",\n \"pink-200\": \"#fdcae0\",\n \"pink-300\": \"#fca0c7\",\n \"pink-400\": \"#fa76af\",\n \"pink-500\": \"#f72c84\",\n \"pink-600\": \"#df1a6f\",\n \"pink-700\": \"#be165e\",\n \"pink-800\": \"#911148\",\n \"pink-900\": \"#640c32\",\n \"purple-50\": \"#f8efff\",\n \"purple-100\": \"#f5e7ff\",\n \"purple-200\": \"#eed8fe\",\n \"purple-300\": \"#e0b8fe\",\n \"purple-400\": \"#d299fe\",\n \"purple-500\": \"#9b37f2\",\n \"purple-600\": \"#7a12d4\",\n \"purple-700\": \"#680fb4\",\n \"purple-800\": \"#4f0c8a\",\n \"purple-900\": \"#37085f\",\n \"red-50\": \"#feeded\",\n \"red-100\": \"#fde3e3\",\n \"red-200\": \"#fcd1d1\",\n \"red-300\": \"#faacac\",\n \"red-400\": \"#f78787\",\n \"red-500\": \"#f34747\",\n \"red-600\": \"#d8273a\",\n \"red-700\": \"#b82131\",\n \"red-800\": \"#8c1926\",\n \"red-900\": \"#61121a\",\n \"teal-50\": \"#ebfafb\",\n \"teal-100\": \"#e1f8f9\",\n \"teal-200\": \"#cdf3f5\",\n \"teal-300\": \"#a5eaed\",\n \"teal-400\": \"#7de0e4\",\n \"teal-500\": \"#37d0d6\",\n \"teal-600\": \"#1e9094\",\n \"teal-700\": \"#1a7a7e\",\n \"teal-800\": \"#145e60\",\n \"teal-900\": \"#0e4143\",\n \"yellow-50\": \"#fefae8\",\n \"yellow-100\": \"#fef7dc\",\n \"yellow-200\": \"#fcf1c5\",\n \"yellow-300\": \"#fae797\",\n \"yellow-400\": \"#f8dc69\",\n \"yellow-500\": \"#f5c918\",\n \"yellow-600\": \"#e8ad11\",\n \"yellow-700\": \"#c5930e\",\n \"yellow-800\": \"#97700b\",\n \"yellow-900\": \"#684e08\",\n};\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.colors = void 0;\n// Import colors from CommonJS module\nconst colorsModule = require(\"./build/js/b2b/colors\");\n// Re-export colors with proper typing\nexports.colors = colorsModule;\n// Default export for CommonJS compatibility\nexports.default = {\n colors: colorsModule,\n};\n"],"names":["root","factory","exports","module","define","amd","this","black","white","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","undefined","__webpack_modules__","Object","defineProperty","value","colors","colorsModule"],"sourceRoot":""}
@@ -1 +1 @@
1
- {"version":3,"file":"casing.d.ts","sourceRoot":"","sources":["../../src/helpers/casing.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,OAAO;;;;;;CAMV,CAAC;AAEX,wBAAgB,QAAQ,CAAC,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,MAAM,CAK/D;AAED,wBAAgB,WAAW,CAAC,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,MAAM,CAKlE;AAED,wBAAgB,WAAW,CAAC,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,MAAM,CAKlE;AAED,wBAAgB,WAAW,CAAC,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,MAAM,CAelE;AAED,wBAAgB,YAAY,CAAC,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,MAAM,CAOnE"}
1
+ {"version":3,"file":"casing.d.ts","sourceRoot":"","sources":["../../src/helpers/casing.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,OAAO;;;;;;CAMV,CAAA;AAEV,wBAAgB,QAAQ,CAAC,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,MAAM,CAK/D;AAED,wBAAgB,WAAW,CAAC,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,MAAM,CAKlE;AAED,wBAAgB,WAAW,CAAC,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,MAAM,CAKlE;AAED,wBAAgB,WAAW,CAAC,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,MAAM,CAelE;AAED,wBAAgB,YAAY,CAAC,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,MAAM,CAKnE"}