@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 +283 -6
- package/dist/b2b.d.ts +115 -51
- package/dist/b2b.d.ts.map +1 -1
- package/dist/b2b.js +1 -1
- package/dist/b2b.js.map +1 -1
- package/dist/helpers/casing.d.ts.map +1 -1
- package/dist/helpers/casing.js +21 -23
- package/dist/helpers/dimens.d.ts +1 -0
- package/dist/helpers/dimens.d.ts.map +1 -1
- package/dist/helpers/dimens.js +11 -2
- package/dist/helpers/regex.d.ts.map +1 -1
- package/dist/index.d.ts +98 -83
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/tailwind/plugins/tokens/b2b/typography.d.ts.map +1 -1
- package/dist/tailwind/plugins/tokens/b2b/typography.js +25 -26
- package/dist/tailwind/plugins/tokens/mindvalley/typography.d.ts.map +1 -1
- package/dist/tailwind/plugins/tokens/mindvalley/typography.js +60 -67
- package/dist/tailwind/plugins/typography.d.ts.map +1 -1
- package/dist/tailwind/plugins/typography.js +25 -15
- package/dist/typography/b2b/fonts.css +19 -0
- package/dist/typography/b2b/fonts.d.ts +8 -0
- package/dist/typography/b2b/fonts.js +30 -0
- package/dist/typography/mindvalley/fonts.css +43 -0
- package/dist/typography/mindvalley/fonts.d.ts +8 -0
- package/dist/typography/mindvalley/fonts.js +54 -0
- package/docs/CONTRIBUTION.md +3 -3
- package/docs/RELEASING.md +12 -7
- package/docs/USAGE.md +121 -76
- package/docs/typography-fonts.md +552 -0
- package/docs/typography-token-pipeline-b2b.md +156 -0
- package/package.json +31 -23
- package/docs/token-validation.md +0 -298
package/dist/helpers/casing.js
CHANGED
|
@@ -8,39 +8,39 @@ exports.toCamelCase = toCamelCase;
|
|
|
8
8
|
exports.toPascalCase = toPascalCase;
|
|
9
9
|
const regex_1 = require("./regex");
|
|
10
10
|
exports.CASINGS = {
|
|
11
|
-
snakeCase:
|
|
12
|
-
camelCase:
|
|
13
|
-
pascalCase:
|
|
14
|
-
kebabCase:
|
|
15
|
-
noCase:
|
|
11
|
+
snakeCase: 'snakeCase',
|
|
12
|
+
camelCase: 'camelCase',
|
|
13
|
+
pascalCase: 'pascalCase',
|
|
14
|
+
kebabCase: 'kebabCase',
|
|
15
|
+
noCase: 'noCase',
|
|
16
16
|
};
|
|
17
17
|
function toNoCase(input) {
|
|
18
18
|
const words = toWordsList(input);
|
|
19
19
|
if (words.length === 0)
|
|
20
|
-
return
|
|
21
|
-
return words.join(
|
|
20
|
+
return '';
|
|
21
|
+
return words.join('').toLowerCase();
|
|
22
22
|
}
|
|
23
23
|
function toKebabCase(input) {
|
|
24
24
|
const words = toWordsList(input);
|
|
25
25
|
if (words.length === 0)
|
|
26
|
-
return
|
|
27
|
-
return words.map((x) => x.toLowerCase()).join(
|
|
26
|
+
return '';
|
|
27
|
+
return words.map((x) => x.toLowerCase()).join('-');
|
|
28
28
|
}
|
|
29
29
|
function toSnakeCase(input) {
|
|
30
30
|
const words = toWordsList(input);
|
|
31
31
|
if (words.length === 0)
|
|
32
|
-
return
|
|
33
|
-
return words.map((x) => x.toLowerCase()).join(
|
|
32
|
+
return '';
|
|
33
|
+
return words.map((x) => x.toLowerCase()).join('_');
|
|
34
34
|
}
|
|
35
35
|
function toCamelCase(input) {
|
|
36
36
|
const words = toWordsList(input);
|
|
37
37
|
if (words.length === 0)
|
|
38
|
-
return
|
|
39
|
-
let result =
|
|
38
|
+
return '';
|
|
39
|
+
let result = '';
|
|
40
40
|
for (let i = 0, len = words.length; i < len; i++) {
|
|
41
|
-
|
|
41
|
+
const currentStr = words[i];
|
|
42
42
|
let tempStr = currentStr.toLowerCase();
|
|
43
|
-
if (i
|
|
43
|
+
if (i !== 0) {
|
|
44
44
|
tempStr = tempStr[0].toUpperCase() + tempStr.substring(1);
|
|
45
45
|
}
|
|
46
46
|
result += tempStr;
|
|
@@ -50,27 +50,25 @@ function toCamelCase(input) {
|
|
|
50
50
|
function toPascalCase(input) {
|
|
51
51
|
const words = toWordsList(input);
|
|
52
52
|
if (words.length === 0)
|
|
53
|
-
return
|
|
54
|
-
return words
|
|
55
|
-
.map((x) => x.charAt(0).toUpperCase() + x.slice(1).toLowerCase())
|
|
56
|
-
.join("");
|
|
53
|
+
return '';
|
|
54
|
+
return words.map((x) => x.charAt(0).toUpperCase() + x.slice(1).toLowerCase()).join('');
|
|
57
55
|
}
|
|
58
56
|
function convertToString(input) {
|
|
59
57
|
if (input != null && input !== undefined) {
|
|
60
58
|
switch (typeof input) {
|
|
61
|
-
case
|
|
59
|
+
case 'string':
|
|
62
60
|
return input.trim();
|
|
63
|
-
case
|
|
61
|
+
case 'number':
|
|
64
62
|
return Math.abs(input).toString().trim();
|
|
65
63
|
default:
|
|
66
64
|
return String(input).trim();
|
|
67
65
|
}
|
|
68
66
|
}
|
|
69
|
-
return
|
|
67
|
+
return '';
|
|
70
68
|
}
|
|
71
69
|
function toWordsList(input) {
|
|
72
70
|
const stringToTest = convertToString(input);
|
|
73
|
-
if (stringToTest ===
|
|
71
|
+
if (stringToTest === '')
|
|
74
72
|
return [];
|
|
75
73
|
return stringToTest.match(regex_1.MATCH_WORDS_REGEX) || [];
|
|
76
74
|
}
|
package/dist/helpers/dimens.d.ts
CHANGED
|
@@ -3,5 +3,6 @@ interface StrPxToRemOptions {
|
|
|
3
3
|
decimalPlaces?: number;
|
|
4
4
|
}
|
|
5
5
|
export declare function strPxToRemStr(sizeInPx: string, { baseFontSize, decimalPlaces }?: StrPxToRemOptions): string;
|
|
6
|
+
export declare function lineHeightToRem(lineHeightInPx: string, options?: StrPxToRemOptions): string;
|
|
6
7
|
export {};
|
|
7
8
|
//# sourceMappingURL=dimens.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dimens.d.ts","sourceRoot":"","sources":["../../src/helpers/dimens.ts"],"names":[],"mappings":"AAAA,UAAU,iBAAiB;IACzB,YAAY,CAAC,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"dimens.d.ts","sourceRoot":"","sources":["../../src/helpers/dimens.ts"],"names":[],"mappings":"AAAA,UAAU,iBAAiB;IACzB,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,aAAa,CAAC,EAAE,MAAM,CAAA;CACvB;AAWD,wBAAgB,aAAa,CAC3B,QAAQ,EAAE,MAAM,EAChB,EAAE,YAAiB,EAAE,aAAa,EAAE,GAAE,iBAAsB,GAC3D,MAAM,CAIR;AAWD,wBAAgB,eAAe,CAAC,cAAc,EAAE,MAAM,EAAE,OAAO,GAAE,iBAAsB,GAAG,MAAM,CAS/F"}
|
package/dist/helpers/dimens.js
CHANGED
|
@@ -1,7 +1,16 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.strPxToRemStr = strPxToRemStr;
|
|
4
|
+
exports.lineHeightToRem = lineHeightToRem;
|
|
4
5
|
function strPxToRemStr(sizeInPx, { baseFontSize = 16, decimalPlaces } = {}) {
|
|
5
|
-
const result = Number(sizeInPx.replace(/px/g,
|
|
6
|
-
return decimalPlaces ? result.toFixed(decimalPlaces)
|
|
6
|
+
const result = Number(sizeInPx.replace(/px/g, '')) / baseFontSize;
|
|
7
|
+
return decimalPlaces ? `${result.toFixed(decimalPlaces)}rem` : `${result}rem`;
|
|
8
|
+
}
|
|
9
|
+
function lineHeightToRem(lineHeightInPx, options = {}) {
|
|
10
|
+
const valueWithUnit = lineHeightInPx.includes('px') ? lineHeightInPx : `${lineHeightInPx}px`;
|
|
11
|
+
const numericValue = Number(valueWithUnit.replace(/px/g, ''));
|
|
12
|
+
if (numericValue === 0) {
|
|
13
|
+
return 'normal';
|
|
14
|
+
}
|
|
15
|
+
return strPxToRemStr(valueWithUnit, options);
|
|
7
16
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"regex.d.ts","sourceRoot":"","sources":["../../src/helpers/regex.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,iBAAiB,
|
|
1
|
+
{"version":3,"file":"regex.d.ts","sourceRoot":"","sources":["../../src/helpers/regex.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,iBAAiB,QAC+E,CAAA"}
|
package/dist/index.d.ts
CHANGED
|
@@ -4,64 +4,36 @@ export interface ColorTokens {
|
|
|
4
4
|
export declare const colors: ColorTokens;
|
|
5
5
|
declare const _default: {
|
|
6
6
|
colors: {
|
|
7
|
-
"black-
|
|
8
|
-
"black-8a": string;
|
|
9
|
-
"black-70a": string;
|
|
7
|
+
"black-0a": string;
|
|
10
8
|
"black-12a": string;
|
|
11
|
-
"black-
|
|
9
|
+
"black-18a": string;
|
|
10
|
+
"black-24a": string;
|
|
12
11
|
"black-4a": string;
|
|
13
12
|
"black-40a": string;
|
|
14
|
-
"black-90a": string;
|
|
15
|
-
"black-80a": string;
|
|
16
|
-
"black-60a": string;
|
|
17
13
|
"black-50a": string;
|
|
18
|
-
"black-
|
|
19
|
-
"
|
|
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
20
|
"purple-500-20a": string;
|
|
21
|
+
"purple-500-90a": string;
|
|
21
22
|
"purple-600-10a": string;
|
|
22
|
-
"
|
|
23
|
-
"white-
|
|
23
|
+
"purple-tint": string;
|
|
24
|
+
"white-0a": string;
|
|
24
25
|
"white-12a": string;
|
|
25
|
-
"white-70a": string;
|
|
26
26
|
"white-18a": string;
|
|
27
|
-
"white-
|
|
28
|
-
"white-
|
|
29
|
-
"white-60a": string;
|
|
30
|
-
"white-50a": string;
|
|
27
|
+
"white-24a": string;
|
|
28
|
+
"white-4a": string;
|
|
31
29
|
"white-40a": string;
|
|
30
|
+
"white-50a": string;
|
|
32
31
|
"white-6a": string;
|
|
33
|
-
"white-
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"yellow-300": string;
|
|
39
|
-
"yellow-400": string;
|
|
40
|
-
"yellow-500": string;
|
|
41
|
-
"yellow-600": string;
|
|
42
|
-
"yellow-700": string;
|
|
43
|
-
"yellow-800": string;
|
|
44
|
-
"yellow-900": string;
|
|
45
|
-
"orange-50": string;
|
|
46
|
-
"orange-100": string;
|
|
47
|
-
"orange-200": string;
|
|
48
|
-
"orange-300": string;
|
|
49
|
-
"orange-400": string;
|
|
50
|
-
"orange-500": string;
|
|
51
|
-
"orange-600": string;
|
|
52
|
-
"orange-700": string;
|
|
53
|
-
"orange-800": string;
|
|
54
|
-
"orange-900": string;
|
|
55
|
-
"teal-50": string;
|
|
56
|
-
"teal-100": string;
|
|
57
|
-
"teal-200": string;
|
|
58
|
-
"teal-300": string;
|
|
59
|
-
"teal-400": string;
|
|
60
|
-
"teal-500": string;
|
|
61
|
-
"teal-600": string;
|
|
62
|
-
"teal-700": string;
|
|
63
|
-
"teal-800": string;
|
|
64
|
-
"teal-900": string;
|
|
32
|
+
"white-60a": string;
|
|
33
|
+
"white-70a": string;
|
|
34
|
+
"white-8a": string;
|
|
35
|
+
"white-80a": string;
|
|
36
|
+
"white-90a": string;
|
|
65
37
|
"aqua-50": string;
|
|
66
38
|
"aqua-100": string;
|
|
67
39
|
"aqua-200": string;
|
|
@@ -82,16 +54,19 @@ declare const _default: {
|
|
|
82
54
|
"blue-700": string;
|
|
83
55
|
"blue-800": string;
|
|
84
56
|
"blue-900": string;
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
"
|
|
94
|
-
"
|
|
57
|
+
"cool-grey-100": string;
|
|
58
|
+
"cool-grey-150": string;
|
|
59
|
+
"cool-grey-200": string;
|
|
60
|
+
"cool-grey-250": string;
|
|
61
|
+
"cool-grey-300": string;
|
|
62
|
+
"cool-grey-350": string;
|
|
63
|
+
"cool-grey-400": string;
|
|
64
|
+
"cool-grey-450": string;
|
|
65
|
+
"cool-grey-500": string;
|
|
66
|
+
"cool-grey-550": string;
|
|
67
|
+
"cool-grey-600": string;
|
|
68
|
+
"cool-grey-650": string;
|
|
69
|
+
"cool-grey-700": string;
|
|
95
70
|
"green-50": string;
|
|
96
71
|
"green-100": string;
|
|
97
72
|
"green-200": string;
|
|
@@ -102,16 +77,41 @@ declare const _default: {
|
|
|
102
77
|
"green-700": string;
|
|
103
78
|
"green-800": string;
|
|
104
79
|
"green-900": string;
|
|
105
|
-
"
|
|
106
|
-
"
|
|
107
|
-
"
|
|
108
|
-
"
|
|
109
|
-
"
|
|
110
|
-
"
|
|
111
|
-
"
|
|
112
|
-
"
|
|
113
|
-
"
|
|
114
|
-
"
|
|
80
|
+
"grey-100": string;
|
|
81
|
+
"grey-150": string;
|
|
82
|
+
"grey-200": string;
|
|
83
|
+
"grey-250": string;
|
|
84
|
+
"grey-300": string;
|
|
85
|
+
"grey-350": string;
|
|
86
|
+
"grey-400": string;
|
|
87
|
+
"grey-450": string;
|
|
88
|
+
"grey-500": string;
|
|
89
|
+
"grey-550": string;
|
|
90
|
+
"grey-600": string;
|
|
91
|
+
"grey-650": string;
|
|
92
|
+
"grey-700": string;
|
|
93
|
+
black: string;
|
|
94
|
+
white: string;
|
|
95
|
+
"orange-50": string;
|
|
96
|
+
"orange-100": string;
|
|
97
|
+
"orange-200": string;
|
|
98
|
+
"orange-300": string;
|
|
99
|
+
"orange-400": string;
|
|
100
|
+
"orange-500": string;
|
|
101
|
+
"orange-600": string;
|
|
102
|
+
"orange-700": string;
|
|
103
|
+
"orange-800": string;
|
|
104
|
+
"orange-900": string;
|
|
105
|
+
"pink-50": string;
|
|
106
|
+
"pink-100": string;
|
|
107
|
+
"pink-200": string;
|
|
108
|
+
"pink-300": string;
|
|
109
|
+
"pink-400": string;
|
|
110
|
+
"pink-500": string;
|
|
111
|
+
"pink-600": string;
|
|
112
|
+
"pink-700": string;
|
|
113
|
+
"pink-800": string;
|
|
114
|
+
"pink-900": string;
|
|
115
115
|
"purple-50": string;
|
|
116
116
|
"purple-100": string;
|
|
117
117
|
"purple-200": string;
|
|
@@ -122,21 +122,36 @@ declare const _default: {
|
|
|
122
122
|
"purple-700": string;
|
|
123
123
|
"purple-800": string;
|
|
124
124
|
"purple-900": string;
|
|
125
|
-
"
|
|
126
|
-
"
|
|
127
|
-
"
|
|
128
|
-
"
|
|
129
|
-
"
|
|
130
|
-
"
|
|
131
|
-
"
|
|
132
|
-
"
|
|
133
|
-
"
|
|
134
|
-
"
|
|
135
|
-
"
|
|
136
|
-
"
|
|
137
|
-
"
|
|
138
|
-
|
|
139
|
-
|
|
125
|
+
"red-50": string;
|
|
126
|
+
"red-100": string;
|
|
127
|
+
"red-200": string;
|
|
128
|
+
"red-300": string;
|
|
129
|
+
"red-400": string;
|
|
130
|
+
"red-500": string;
|
|
131
|
+
"red-600": string;
|
|
132
|
+
"red-700": string;
|
|
133
|
+
"red-800": string;
|
|
134
|
+
"red-900": string;
|
|
135
|
+
"teal-50": string;
|
|
136
|
+
"teal-100": string;
|
|
137
|
+
"teal-200": string;
|
|
138
|
+
"teal-300": string;
|
|
139
|
+
"teal-400": string;
|
|
140
|
+
"teal-500": string;
|
|
141
|
+
"teal-600": string;
|
|
142
|
+
"teal-700": string;
|
|
143
|
+
"teal-800": string;
|
|
144
|
+
"teal-900": string;
|
|
145
|
+
"yellow-50": string;
|
|
146
|
+
"yellow-100": string;
|
|
147
|
+
"yellow-200": string;
|
|
148
|
+
"yellow-300": string;
|
|
149
|
+
"yellow-400": string;
|
|
150
|
+
"yellow-500": string;
|
|
151
|
+
"yellow-600": string;
|
|
152
|
+
"yellow-700": string;
|
|
153
|
+
"yellow-800": string;
|
|
154
|
+
"yellow-900": string;
|
|
140
155
|
};
|
|
141
156
|
};
|
|
142
157
|
export default _default;
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,MAAM,WAAW,WAAW;IAC1B,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.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/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
!function(e,
|
|
1
|
+
!function(e,f){"object"==typeof exports&&"object"==typeof module?module.exports=f():"function"==typeof define&&define.amd?define([],f):"object"==typeof exports?exports.mvDesignSystem=f():e.mvDesignSystem=f()}(this,(()=>(()=>{var e={890:e=>{e.exports={"black-0a":"#00000000","black-12a":"#0000001f","black-18a":"#0000002e","black-24a":"#0000003d","black-4a":"#0000000a","black-40a":"#00000066","black-50a":"#00000080","black-6a":"#0000000f","black-60a":"#00000099","black-70a":"#000000b2","black-8a":"#00000014","black-80a":"#000000cc","black-90a":"#000000e5","purple-500-20a":"#ba62fd33","purple-500-90a":"#ba62fde5","purple-600-10a":"#7a12d41a","purple-tint":"#9b37f2","white-0a":"#ffffff00","white-12a":"#ffffff1f","white-18a":"#ffffff2e","white-24a":"#ffffff3d","white-4a":"#ffffff0a","white-40a":"#ffffff66","white-50a":"#ffffff80","white-6a":"#ffffff0f","white-60a":"#ffffff99","white-70a":"#ffffffb2","white-8a":"#ffffff14","white-80a":"#ffffffcc","white-90a":"#ffffffe5","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","cool-grey-100":"#f9f9f9","cool-grey-150":"#f3f4f6","cool-grey-200":"#f3f4f6","cool-grey-250":"#dfe1e5","cool-grey-300":"#ced1d7","cool-grey-350":"#b3b8c1","cool-grey-400":"#979ca5","cool-grey-450":"#71767f","cool-grey-500":"#595e67","cool-grey-550":"#41464f","cool-grey-600":"#292d38","cool-grey-650":"#181d26","cool-grey-700":"#0f131a","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"}}},f={};function a(r){var l=f[r];if(void 0!==l)return l.exports;var c=f[r]={exports:{}};return e[r](c,c.exports,a),c.exports}var r={};return(()=>{"use strict";var e=r;Object.defineProperty(e,"__esModule",{value:!0}),e.colors=void 0;const f=a(890);e.colors=f,e.default={colors:f}})(),r})()));
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.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,
|
|
1
|
+
{"version":3,"file":"index.js","mappings":"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","sources":["webpack://mvDesignSystem/webpack/universalModuleDefinition","webpack://mvDesignSystem/./src/build/js/mindvalley/colors.js","webpack://mvDesignSystem/webpack/bootstrap","webpack://mvDesignSystem/./src/index.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\": \"#00000000\",\n \"black-12a\": \"#0000001f\",\n \"black-18a\": \"#0000002e\",\n \"black-24a\": \"#0000003d\",\n \"black-4a\": \"#0000000a\",\n \"black-40a\": \"#00000066\",\n \"black-50a\": \"#00000080\",\n \"black-6a\": \"#0000000f\",\n \"black-60a\": \"#00000099\",\n \"black-70a\": \"#000000b2\",\n \"black-8a\": \"#00000014\",\n \"black-80a\": \"#000000cc\",\n \"black-90a\": \"#000000e5\",\n \"purple-500-20a\": \"#ba62fd33\",\n \"purple-500-90a\": \"#ba62fde5\",\n \"purple-600-10a\": \"#7a12d41a\",\n \"purple-tint\": \"#9b37f2\",\n \"white-0a\": \"#ffffff00\",\n \"white-12a\": \"#ffffff1f\",\n \"white-18a\": \"#ffffff2e\",\n \"white-24a\": \"#ffffff3d\",\n \"white-4a\": \"#ffffff0a\",\n \"white-40a\": \"#ffffff66\",\n \"white-50a\": \"#ffffff80\",\n \"white-6a\": \"#ffffff0f\",\n \"white-60a\": \"#ffffff99\",\n \"white-70a\": \"#ffffffb2\",\n \"white-8a\": \"#ffffff14\",\n \"white-80a\": \"#ffffffcc\",\n \"white-90a\": \"#ffffffe5\",\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 \"cool-grey-100\": \"#f9f9f9\",\n \"cool-grey-150\": \"#f3f4f6\",\n \"cool-grey-200\": \"#f3f4f6\",\n \"cool-grey-250\": \"#dfe1e5\",\n \"cool-grey-300\": \"#ced1d7\",\n \"cool-grey-350\": \"#b3b8c1\",\n \"cool-grey-400\": \"#979ca5\",\n \"cool-grey-450\": \"#71767f\",\n \"cool-grey-500\": \"#595e67\",\n \"cool-grey-550\": \"#41464f\",\n \"cool-grey-600\": \"#292d38\",\n \"cool-grey-650\": \"#181d26\",\n \"cool-grey-700\": \"#0f131a\",\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/mindvalley/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":"typography.d.ts","sourceRoot":"","sources":["../../../../../src/tailwind/plugins/tokens/b2b/typography.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"typography.d.ts","sourceRoot":"","sources":["../../../../../src/tailwind/plugins/tokens/b2b/typography.ts"],"names":[],"mappings":"AAMA,MAAM,WAAW,gBAAgB;IAC/B,CAAC,GAAG,EAAE,MAAM,GAAG;QACb,UAAU,EAAE,MAAM,CAAA;QAClB,QAAQ,EAAE,MAAM,CAAA;QAChB,aAAa,EAAE,MAAM,CAAA;QACrB,UAAU,EAAE,MAAM,CAAA;QAClB,UAAU,CAAC,EAAE,MAAM,CAAA;KACpB,CAAA;CACF;AAED,QAAA,MAAM,MAAM,EAAE,gBA0Bb,CAAA;AAED,eAAe,MAAM,CAAA"}
|
|
@@ -1,31 +1,30 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tokens = {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
"heading-10-mobile": { "fontFamily": "'Sharp Grotesk Cyr Medium 22', Helvetica, Arial, 'sans-serif'", "fontSize": "10px", "letterSpacing": "0.35px", "lineHeight": "15px" }
|
|
4
|
+
'display-1-mobile': { "fontFamily": "'Sharp Grotesk Cyr Medium 22', Helvetica, Arial, 'sans-serif'", "fontSize": "80px", "letterSpacing": "0.25px", "lineHeight": "96px", "fontWeight": 500 },
|
|
5
|
+
'display-1-desktop': { "fontFamily": "'Sharp Grotesk Cyr Medium 22', Helvetica, Arial, 'sans-serif'", "fontSize": "100px", "letterSpacing": "0.25px", "lineHeight": "115px", "fontWeight": 500 },
|
|
6
|
+
'display-2-mobile': { "fontFamily": "'Sharp Grotesk Cyr Medium 22', Helvetica, Arial, 'sans-serif'", "fontSize": "60px", "letterSpacing": "0.25px", "lineHeight": "72px", "fontWeight": 500 },
|
|
7
|
+
'display-2-desktop': { "fontFamily": "'Sharp Grotesk Cyr Medium 22', Helvetica, Arial, 'sans-serif'", "fontSize": "80px", "letterSpacing": "0.25px", "lineHeight": "96px", "fontWeight": 500 },
|
|
8
|
+
'display-3-mobile': { "fontFamily": "'Sharp Grotesk Cyr Medium 22', Helvetica, Arial, 'sans-serif'", "fontSize": "48px", "letterSpacing": "0.25px", "lineHeight": "56px", "fontWeight": 500 },
|
|
9
|
+
'display-3-desktop': { "fontFamily": "'Sharp Grotesk Cyr Medium 22', Helvetica, Arial, 'sans-serif'", "fontSize": "60px", "letterSpacing": "0.25px", "lineHeight": "72px", "fontWeight": 500 },
|
|
10
|
+
'heading-1-mobile': { "fontFamily": "'Sharp Grotesk Cyr Medium 22', Helvetica, Arial, 'sans-serif'", "fontSize": "32px", "letterSpacing": "0.25px", "lineHeight": "0px", "fontWeight": 500 },
|
|
11
|
+
'heading-1-desktop': { "fontFamily": "'Sharp Grotesk Cyr Medium 22', Helvetica, Arial, 'sans-serif'", "fontSize": "48px", "letterSpacing": "0.25px", "lineHeight": "0px", "fontWeight": 500 },
|
|
12
|
+
'heading-10': { "fontFamily": "'Sharp Grotesk Cyr Medium 22', Helvetica, Arial, 'sans-serif'", "fontSize": "10px", "letterSpacing": "0.35px", "lineHeight": "15px", "fontWeight": 500 },
|
|
13
|
+
'heading-2-mobile': { "fontFamily": "'Sharp Grotesk Cyr Medium 22', Helvetica, Arial, 'sans-serif'", "fontSize": "28px", "letterSpacing": "0.25px", "lineHeight": "0px", "fontWeight": 500 },
|
|
14
|
+
'heading-2-desktop': { "fontFamily": "'Sharp Grotesk Cyr Medium 22', Helvetica, Arial, 'sans-serif'", "fontSize": "36px", "letterSpacing": "0.25px", "lineHeight": "0px", "fontWeight": 500 },
|
|
15
|
+
'heading-3-mobile': { "fontFamily": "'Sharp Grotesk Cyr Medium 22', Helvetica, Arial, 'sans-serif'", "fontSize": "24px", "letterSpacing": "0.25px", "lineHeight": "0px", "fontWeight": 500 },
|
|
16
|
+
'heading-3-desktop': { "fontFamily": "'Sharp Grotesk Cyr Medium 22', Helvetica, Arial, 'sans-serif'", "fontSize": "28px", "letterSpacing": "0.25px", "lineHeight": "0px", "fontWeight": 500 },
|
|
17
|
+
'heading-4-mobile': { "fontFamily": "'Sharp Grotesk Cyr Medium 22', Helvetica, Arial, 'sans-serif'", "fontSize": "20px", "letterSpacing": "0.25px", "lineHeight": "0px", "fontWeight": 500 },
|
|
18
|
+
'heading-4-desktop': { "fontFamily": "'Sharp Grotesk Cyr Medium 22', Helvetica, Arial, 'sans-serif'", "fontSize": "24px", "letterSpacing": "0.25px", "lineHeight": "0px", "fontWeight": 500 },
|
|
19
|
+
'heading-5-mobile': { "fontFamily": "'Sharp Grotesk Cyr Medium 22', Helvetica, Arial, 'sans-serif'", "fontSize": "18px", "letterSpacing": "0.25px", "lineHeight": "0px", "fontWeight": 500 },
|
|
20
|
+
'heading-5-desktop': { "fontFamily": "'Sharp Grotesk Cyr Medium 22', Helvetica, Arial, 'sans-serif'", "fontSize": "20px", "letterSpacing": "0.25px", "lineHeight": "0px", "fontWeight": 500 },
|
|
21
|
+
'heading-6-mobile': { "fontFamily": "'Sharp Grotesk Cyr Medium 22', Helvetica, Arial, 'sans-serif'", "fontSize": "16px", "letterSpacing": "0.25px", "lineHeight": "22px", "fontWeight": 500 },
|
|
22
|
+
'heading-6-desktop': { "fontFamily": "'Sharp Grotesk Cyr Medium 22', Helvetica, Arial, 'sans-serif'", "fontSize": "18px", "letterSpacing": "0.25px", "lineHeight": "24px", "fontWeight": 500 },
|
|
23
|
+
'heading-7-mobile': { "fontFamily": "'Sharp Grotesk Cyr Medium 22', Helvetica, Arial, 'sans-serif'", "fontSize": "14px", "letterSpacing": "0.25px", "lineHeight": "20px", "fontWeight": 500 },
|
|
24
|
+
'heading-7-desktop': { "fontFamily": "'Sharp Grotesk Cyr Medium 22', Helvetica, Arial, 'sans-serif'", "fontSize": "16px", "letterSpacing": "0.25px", "lineHeight": "22px", "fontWeight": 500 },
|
|
25
|
+
'heading-8-mobile': { "fontFamily": "'Sharp Grotesk Cyr Medium 22', Helvetica, Arial, 'sans-serif'", "fontSize": "12px", "letterSpacing": "0.35px", "lineHeight": "16px", "fontWeight": 500 },
|
|
26
|
+
'heading-8-desktop': { "fontFamily": "'Sharp Grotesk Cyr Medium 22', Helvetica, Arial, 'sans-serif'", "fontSize": "14px", "letterSpacing": "0.25px", "lineHeight": "20px", "fontWeight": 500 },
|
|
27
|
+
'heading-9-mobile': { "fontFamily": "'Sharp Grotesk Cyr Medium 22', Helvetica, Arial, 'sans-serif'", "fontSize": "10px", "letterSpacing": "0.35px", "lineHeight": "15px", "fontWeight": 500 },
|
|
28
|
+
'heading-9-desktop': { "fontFamily": "'Sharp Grotesk Cyr Medium 22', Helvetica, Arial, 'sans-serif'", "fontSize": "12px", "letterSpacing": "0.35px", "lineHeight": "16px", "fontWeight": 500 }
|
|
30
29
|
};
|
|
31
30
|
exports.default = tokens;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"typography.d.ts","sourceRoot":"","sources":["../../../../../src/tailwind/plugins/tokens/mindvalley/typography.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"typography.d.ts","sourceRoot":"","sources":["../../../../../src/tailwind/plugins/tokens/mindvalley/typography.ts"],"names":[],"mappings":"AAMA,MAAM,WAAW,gBAAgB;IAC/B,CAAC,GAAG,EAAE,MAAM,GAAG;QACb,UAAU,EAAE,MAAM,CAAA;QAClB,QAAQ,EAAE,MAAM,CAAA;QAChB,aAAa,EAAE,MAAM,CAAA;QACrB,UAAU,EAAE,MAAM,CAAA;QAClB,UAAU,CAAC,EAAE,MAAM,CAAA;KACpB,CAAA;CACF;AAED,QAAA,MAAM,MAAM,EAAE,gBA6Db,CAAA;AAED,eAAe,MAAM,CAAA"}
|