@mindvalley/design-system 4.0.0 → 4.0.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/CHANGELOG.md CHANGED
@@ -1,282 +1,95 @@
1
- # [4.0.0](https://github.com/mindvalley/mv-design-system/compare/v3.4.2...v4.0.0) (2025-11-20)
1
+ ## [4.0.1](https://github.com/mindvalley/mv-design-system/compare/v4.0.0...v4.0.1) (2026-01-05)
2
2
 
3
3
 
4
4
  ### Bug Fixes
5
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
6
+ * Patched b2b back colors to how they were in v3.4.2 ([#142](https://github.com/mindvalley/mv-design-system/issues/142)) ([1d03f74](https://github.com/mindvalley/mv-design-system/commit/1d03f745d908aa762669b9066b7702eabd849141))
118
7
 
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
8
+ # Changelog
209
9
 
210
- * refactor: Token schemas
10
+ All notable changes to this project will be documented in this file.
211
11
 
212
- * test: Utility coverage
12
+ # [4.0.0](https://github.com/mindvalley/mv-design-system/compare/v3.4.2...v4.0.0) (2025-11-20)
213
13
 
214
- * chore: Regenerate typography tokens
14
+ ### Features
215
15
 
216
- * docs: Typography weights
16
+ * **Typography Font Loading**: New utility to generate `@font-face` CSS declarations for typography tokens
17
+ * Automatic font-face generation for both Mindvalley and B2B brands
18
+ * Outputs CSS, JS, and TypeScript declaration files
19
+ * Maps Sharp Grotesk fonts to Fastly CDN URLs
20
+ * See [Typography Font Loading Guide](./docs/typography-fonts.md) for usage
21
+ * New exports: `@mindvalley/design-system/typography/mindvalley/fonts.css` and `/b2b/fonts.css`
217
22
 
218
- * docs: Remove outdated typography and color theming documentation
23
+ ### 📝 Typography Changes
219
24
 
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.
25
+ #### Mindvalley Brand
222
26
 
223
- * refactor: Update TypeScript imports for Style Dictionary compatibility
27
+ **New Typography Tokens:**
224
28
 
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.
29
+ | Token | Font Family | Size | Letter Spacing | Line Height | Weight |
30
+ |-------|-------------|------|----------------|-------------|--------|
31
+ | `body-italic` | Sharp Grotesk Cyr Book Itl 19 | 16px | 0.35px | 24px | 400 |
32
+ | `body-large-italic` | Sharp Grotesk Cyr Book Itl 19 | 20px | 0.25px | 30px | 400 |
33
+ | `body-small-italic` | Sharp Grotesk Cyr Book Itl 19 | 14px | 0.35px | 20px | 400 |
34
+ | `body-xs-italic` | Sharp Grotesk Cyr Book 19 | 12px | 0.35px | 16px | 400 |
35
+ | `body-xs` | Sharp Grotesk Cyr Book 19 | 12px | 0.35px | 16px | 400 |
36
+ | `body-large-bold` | Sharp Grotesk Cyr Medium 19 | 20px | 0.25px | 30px | 500 |
227
37
 
228
- * chore: Regenerate typography tokens after merge
38
+ **Font Family Corrections:**
229
39
 
230
- * chore: Update package dependencies and TypeScript configuration
40
+ | Token | Before | After |
41
+ |-------|--------|-------|
42
+ | All `title-bold-*` variants | Sharp Grotesk Cyr Semibold **21** | Sharp Grotesk Cyr Semibold **20** |
43
+ | `body-bold` | Sharp Grotesk Cyr Semibold 20 | Sharp Grotesk Cyr Medium 19 |
44
+ | `body-small-bold` | Sharp Grotesk Cyr Semibold 20 | Sharp Grotesk Cyr Medium 19 |
231
45
 
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.
46
+ **Line Height Updates:**
235
47
 
236
- * refactor: Enhance SVG sprite configuration and type definitions
48
+ | Token | Before | After | Notes |
49
+ |-------|--------|-------|-------|
50
+ | `title-2-mobile` | 38px | 40px | Increased spacing |
51
+ | `title-4-desktop` | 34px | 36px | Increased spacing |
52
+ | `title-bold-6` through `title-bold-11` | Various | 0px | Browser-calculated (mobile & desktop) |
237
53
 
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.
54
+ **Token Consolidation:**
242
55
 
243
- * docs: Remove CLAUDE.md file containing project guidance and documentation
56
+ * `title-7`, `title-8`, `title-9`, `title-10`, `title-11`: Merged from separate mobile/desktop variants into single responsive tokens
244
57
 
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.
58
+ #### B2B Brand
246
59
 
247
- * fix: Update color categories filter and naming transforms for grey tokens
60
+ **Line Height Updates:**
248
61
 
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.
62
+ | Token | Before | After | Notes |
63
+ |-------|--------|-------|-------|
64
+ | `heading-1` through `heading-5` | Various | 0px | Browser-calculated (mobile & desktop) |
65
+ | `display-3-mobile` | 58px | 56px | Reduced spacing |
251
66
 
252
- * fix: Add typography font loading and generation utilities
67
+ **Token Consolidation:**
253
68
 
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.
69
+ * `heading-9`, `heading-10`: Merged from separate mobile/desktop variants into single responsive tokens
258
70
 
259
- * test: Fix color token naming tests to preserve opacity suffixes
71
+ **Font Weight Addition:**
260
72
 
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
73
+ * All B2B typography tokens now include explicit `fontWeight: 500`
264
74
 
265
- * fix: Use sentence-case in auto-format workflow commit message
75
+ ### 🔧 Code Quality
266
76
 
267
- - Changed 'auto-format' to 'Auto-format' to comply with commitlint rules
268
- - Fixes automated workflow commit message validation failures
77
+ * **TypeScript**: Comprehensive type improvements throughout the codebase
78
+ * Proper interfaces for typography tokens (no more `any` types)
79
+ * Enhanced Zod schema validation
80
+ * Better type safety for Style Dictionary v5 APIs
81
+ * **Testing**: All 386 tests passing with updated expectations for opacity suffixes
82
+ * **Formatting**: Applied Biome 2.3.4 formatting across all files
269
83
 
270
- * chore: Auto-format design token updates
84
+ ### 📚 Documentation
271
85
 
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
86
+ * Added comprehensive [Typography Font Loading Guide](./docs/typography-fonts.md) with framework examples (Next.js, Vite, Vue, Phoenix, etc.)
87
+ * Updated USAGE.md with new font loading instructions
276
88
 
277
- # Changelog
89
+ ### 📦 Package Updates
278
90
 
279
- All notable changes to this project will be documented in this file.
91
+ * Updated `@biomejs/biome` to 2.3.4
92
+ * Enhanced package.json exports for typography font files
280
93
 
281
94
  ## [3.4.2](https://github.com/mindvalley/mv-design-system/compare/v3.4.1...v3.4.2) (2025-10-22)
282
95
 
package/dist/b2b.d.ts CHANGED
@@ -4,46 +4,27 @@ export interface ColorTokens {
4
4
  export declare const colors: ColorTokens;
5
5
  declare const _default: {
6
6
  colors: {
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;
7
+ "brown-12a": string;
8
+ "brown-24a": string;
9
+ "brown-8a": string;
10
+ "brown-90a": string;
11
+ "dark-brown-12a": string;
12
+ "dark-brown-24a": string;
13
+ "dark-brown-4a": string;
14
+ "dark-brown-8a": string;
15
+ "dark-brown-80a": string;
16
+ "purple-12a": string;
17
+ "purple-18a": string;
18
+ "purple-28a": string;
19
+ "purple-4a": string;
20
+ "purple-70a": string;
21
+ "purple-8a": string;
22
+ "red-12a": string;
23
+ "red-18a": string;
24
+ "red-28a": string;
25
+ "red-4a": string;
26
+ "red-70a": string;
27
+ "red-8a": string;
47
28
  "blue-50": string;
48
29
  "blue-100": string;
49
30
  "blue-200": string;
@@ -54,51 +35,16 @@ declare const _default: {
54
35
  "blue-700": string;
55
36
  "blue-800": string;
56
37
  "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;
38
+ "brown-50": string;
39
+ "brown-100": string;
40
+ "brown-200": string;
41
+ "brown-300": string;
42
+ "brown-400": string;
43
+ "brown-500": string;
44
+ "brown-600": string;
45
+ "brown-700": string;
46
+ "brown-800": string;
47
+ "brown-900": string;
102
48
  "purple-50": string;
103
49
  "purple-100": string;
104
50
  "purple-200": string;
@@ -129,16 +75,6 @@ declare const _default: {
129
75
  "teal-700": string;
130
76
  "teal-800": string;
131
77
  "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;
142
78
  };
143
79
  };
144
80
  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,CAAA;CACtB;AAMD,eAAO,MAAM,MAAM,EAAmB,WAAW,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGjD,wBAEC"}
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,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})()));
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={"brown-12a":"rgba(249, 248, 244, 0.12)","brown-24a":"rgba(249, 248, 244, 0.24)","brown-8a":"rgba(249, 248, 244, 0.08)","brown-90a":"rgba(249, 248, 244, 0.9)","dark-brown-12a":"rgba(135, 121, 111, 0.12)","dark-brown-24a":"rgba(135, 121, 111, 0.24)","dark-brown-4a":"rgba(135, 121, 111, 0.04)","dark-brown-8a":"rgba(135, 121, 111, 0.08)","dark-brown-80a":"rgba(135, 121, 111, 0.8)","purple-12a":"rgba(158, 148, 241, 0.12)","purple-18a":"rgba(158, 148, 241, 0.18)","purple-28a":"rgba(158, 148, 241, 0.28)","purple-4a":"rgba(158, 148, 241, 0.04)","purple-70a":"rgba(158, 148, 241, 0.7)","purple-8a":"rgba(158, 148, 241, 0.08)","red-12a":"rgba(255, 109, 92, 0.12)","red-18a":"rgba(255, 109, 92, 0.18)","red-28a":"rgba(255, 109, 92, 0.28)","red-4a":"rgba(255, 109, 92, 0.04)","red-70a":"rgba(255, 109, 92, 0.7)","red-8a":"rgba(255, 109, 92, 0.08)","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","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","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","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"}}},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})()));
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,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
+ {"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,YAAa,4BACb,YAAa,4BACb,WAAY,4BACZ,YAAa,2BACb,iBAAkB,4BAClB,iBAAkB,4BAClB,gBAAiB,4BACjB,gBAAiB,4BACjB,iBAAkB,2BAClB,aAAc,4BACd,aAAc,4BACd,aAAc,4BACd,YAAa,4BACb,aAAc,2BACd,YAAa,4BACb,UAAW,2BACX,UAAW,2BACX,UAAW,2BACX,SAAU,2BACV,UAAW,0BACX,SAAU,2BACV,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,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,U,GC1EVK,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, this file was auto-generated.\n */\n\nmodule.exports = {\n \"brown-12a\": \"rgba(249, 248, 244, 0.12)\",\n \"brown-24a\": \"rgba(249, 248, 244, 0.24)\",\n \"brown-8a\": \"rgba(249, 248, 244, 0.08)\",\n \"brown-90a\": \"rgba(249, 248, 244, 0.9)\",\n \"dark-brown-12a\": \"rgba(135, 121, 111, 0.12)\",\n \"dark-brown-24a\": \"rgba(135, 121, 111, 0.24)\",\n \"dark-brown-4a\": \"rgba(135, 121, 111, 0.04)\",\n \"dark-brown-8a\": \"rgba(135, 121, 111, 0.08)\",\n \"dark-brown-80a\": \"rgba(135, 121, 111, 0.8)\",\n \"purple-12a\": \"rgba(158, 148, 241, 0.12)\",\n \"purple-18a\": \"rgba(158, 148, 241, 0.18)\",\n \"purple-28a\": \"rgba(158, 148, 241, 0.28)\",\n \"purple-4a\": \"rgba(158, 148, 241, 0.04)\",\n \"purple-70a\": \"rgba(158, 148, 241, 0.7)\",\n \"purple-8a\": \"rgba(158, 148, 241, 0.08)\",\n \"red-12a\": \"rgba(255, 109, 92, 0.12)\",\n \"red-18a\": \"rgba(255, 109, 92, 0.18)\",\n \"red-28a\": \"rgba(255, 109, 92, 0.28)\",\n \"red-4a\": \"rgba(255, 109, 92, 0.04)\",\n \"red-70a\": \"rgba(255, 109, 92, 0.7)\",\n \"red-8a\": \"rgba(255, 109, 92, 0.08)\",\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 \"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 \"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 \"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};\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":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindvalley/design-system",
3
- "version": "4.0.0",
3
+ "version": "4.0.1",
4
4
  "description": "Resources, components, design guidelines and tooling for Mindvalley's design system",
5
5
  "keywords": [
6
6
  "design-system",