@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 +60 -247
- package/dist/b2b.d.ts +31 -95
- package/dist/b2b.d.ts.map +1 -1
- package/dist/b2b.js +1 -1
- package/dist/b2b.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,282 +1,95 @@
|
|
|
1
|
-
|
|
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
|
-
*
|
|
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
|
-
|
|
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
|
-
|
|
10
|
+
All notable changes to this project will be documented in this file.
|
|
211
11
|
|
|
212
|
-
|
|
12
|
+
# [4.0.0](https://github.com/mindvalley/mv-design-system/compare/v3.4.2...v4.0.0) (2025-11-20)
|
|
213
13
|
|
|
214
|
-
|
|
14
|
+
### ✨ Features
|
|
215
15
|
|
|
216
|
-
*
|
|
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
|
-
|
|
23
|
+
### 📝 Typography Changes
|
|
219
24
|
|
|
220
|
-
|
|
221
|
-
- Ensured that all references to these documents are removed to maintain clarity in the documentation structure.
|
|
25
|
+
#### Mindvalley Brand
|
|
222
26
|
|
|
223
|
-
|
|
27
|
+
**New Typography Tokens:**
|
|
224
28
|
|
|
225
|
-
|
|
226
|
-
|
|
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
|
-
|
|
38
|
+
**Font Family Corrections:**
|
|
229
39
|
|
|
230
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
*
|
|
56
|
+
* `title-7`, `title-8`, `title-9`, `title-10`, `title-11`: Merged from separate mobile/desktop variants into single responsive tokens
|
|
244
57
|
|
|
245
|
-
|
|
58
|
+
#### B2B Brand
|
|
246
59
|
|
|
247
|
-
|
|
60
|
+
**Line Height Updates:**
|
|
248
61
|
|
|
249
|
-
|
|
250
|
-
|
|
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
|
-
|
|
67
|
+
**Token Consolidation:**
|
|
253
68
|
|
|
254
|
-
-
|
|
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
|
-
|
|
71
|
+
**Font Weight Addition:**
|
|
260
72
|
|
|
261
|
-
|
|
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
|
-
|
|
75
|
+
### 🔧 Code Quality
|
|
266
76
|
|
|
267
|
-
|
|
268
|
-
|
|
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
|
-
|
|
84
|
+
### 📚 Documentation
|
|
271
85
|
|
|
272
|
-
|
|
273
|
-
|
|
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
|
-
|
|
89
|
+
### 📦 Package Updates
|
|
278
90
|
|
|
279
|
-
|
|
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
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"purple-
|
|
21
|
-
"purple-
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
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
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
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
|
|
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,
|
|
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,
|
|
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":""}
|