@codecademy/gamut-styles 13.1.2-alpha.399e7f.0 → 13.1.2-alpha.6e3966.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/.turbo/turbo-build.log +6 -6
- package/CHANGELOG.md +1 -1
- package/dist/themes/enterprise.d.ts +45 -4
- package/dist/themes/enterprise.js +12 -2
- package/dist/themes/enterprise.js.map +1 -1
- package/dist/themes/index.d.ts +1 -0
- package/dist/themes/index.js +2 -1
- package/dist/themes/index.js.map +1 -1
- package/dist/variables/colors.d.ts +17 -0
- package/dist/variables/colors.js +14 -1
- package/dist/variables/colors.js.map +1 -1
- package/package.json +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
[
|
|
2
|
-
[
|
|
3
|
-
[
|
|
4
|
-
[
|
|
5
|
-
[
|
|
6
|
-
[
|
|
1
|
+
[33m@codecademy/gamut-styles:build: [0mcache hit, replaying output [2m6dc406c8f4a8a789[0m
|
|
2
|
+
[33m@codecademy/gamut-styles:build: [0m$ yarn build:clean && yarn build:compile && yarn build:transpile
|
|
3
|
+
[33m@codecademy/gamut-styles:build: [0m$ rm -rf ./dist
|
|
4
|
+
[33m@codecademy/gamut-styles:build: [0m$ tsc
|
|
5
|
+
[33m@codecademy/gamut-styles:build: [0m$ babel ./src --out-dir ./dist --copy-files --extensions ".ts,.tsx"
|
|
6
|
+
[33m@codecademy/gamut-styles:build: [0mSuccessfully compiled 46 files with Babel (1440ms).
|
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
### [13.1.2-alpha.
|
|
6
|
+
### [13.1.2-alpha.6e3966.0](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-styles@13.1.1...@codecademy/gamut-styles@13.1.2-alpha.6e3966.0) (2022-05-20)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @codecademy/gamut-styles
|
|
9
9
|
|
|
@@ -437,16 +437,33 @@ export declare const enterpriseTheme: Record<"breakpoints", {
|
|
|
437
437
|
readonly hotPink: "#e83e8c";
|
|
438
438
|
readonly enterpriseNavy: "#141c36";
|
|
439
439
|
readonly enterpriseBeige: "#ebe9df";
|
|
440
|
+
readonly enterpriseGreen: "#48ac2c";
|
|
441
|
+
readonly enterpriseYellow: "#ffc107";
|
|
442
|
+
readonly enterpriseRed: "#dc3545";
|
|
440
443
|
readonly "hotPink-100": "#e83e8c";
|
|
441
444
|
readonly "hotPink-400": "#c22c5a";
|
|
442
445
|
readonly "enterpriseNavy-100": "#212d56";
|
|
443
446
|
readonly "enterpriseNavy-400": "#141c36";
|
|
447
|
+
readonly "enterpriseBeige-100": "#F7F6F2";
|
|
444
448
|
readonly "enterpriseBeige-400": "#ebe9df";
|
|
449
|
+
readonly "enterpriseGreen-0": "#48ac2c";
|
|
450
|
+
readonly "enterpriseYellow-0": "#ffc107";
|
|
451
|
+
readonly "enterpriseRed-0": "#dc3545";
|
|
445
452
|
}, "-", "">, "color">>> & import("@codecademy/variance/dist/createTheme/types").PrivateThemeKeys, {
|
|
446
453
|
colors: import("@codecademy/variance").KeyAsVariable<import("@codecademy/variance").LiteralPaths<{
|
|
454
|
+
text: "enterpriseNavy-400";
|
|
447
455
|
primary: {
|
|
448
|
-
_: "hotPink-
|
|
449
|
-
hover: "hotPink-
|
|
456
|
+
_: "hotPink-100";
|
|
457
|
+
hover: "hotPink-400";
|
|
458
|
+
};
|
|
459
|
+
secondary: {
|
|
460
|
+
_: "enterpriseNavy-400";
|
|
461
|
+
hover: "enterpriseNavy-100";
|
|
462
|
+
};
|
|
463
|
+
feedback: {
|
|
464
|
+
error: "enterpriseRed-0";
|
|
465
|
+
success: "enterpriseGreen-0";
|
|
466
|
+
warning: "enterpriseYellow-0";
|
|
450
467
|
};
|
|
451
468
|
} | {}, "-", "_">, "colors"> & import("@codecademy/variance/dist/createTheme/types").Assign<import("@codecademy/variance/dist/createTheme/types").Assign<import("@codecademy/variance").KeyAsVariable<import("@codecademy/variance").LiteralPaths<{
|
|
452
469
|
readonly beige: "#FFF0E5";
|
|
@@ -648,11 +665,18 @@ export declare const enterpriseTheme: Record<"breakpoints", {
|
|
|
648
665
|
readonly hotPink: "#e83e8c";
|
|
649
666
|
readonly enterpriseNavy: "#141c36";
|
|
650
667
|
readonly enterpriseBeige: "#ebe9df";
|
|
668
|
+
readonly enterpriseGreen: "#48ac2c";
|
|
669
|
+
readonly enterpriseYellow: "#ffc107";
|
|
670
|
+
readonly enterpriseRed: "#dc3545";
|
|
651
671
|
readonly "hotPink-100": "#e83e8c";
|
|
652
672
|
readonly "hotPink-400": "#c22c5a";
|
|
653
673
|
readonly "enterpriseNavy-100": "#212d56";
|
|
654
674
|
readonly "enterpriseNavy-400": "#141c36";
|
|
675
|
+
readonly "enterpriseBeige-100": "#F7F6F2";
|
|
655
676
|
readonly "enterpriseBeige-400": "#ebe9df";
|
|
677
|
+
readonly "enterpriseGreen-0": "#48ac2c";
|
|
678
|
+
readonly "enterpriseYellow-0": "#ffc107";
|
|
679
|
+
readonly "enterpriseRed-0": "#dc3545";
|
|
656
680
|
}, "-", "">, "color">>;
|
|
657
681
|
modes: import("@codecademy/variance/dist/createTheme/types").Merge<import("@codecademy/variance/dist/createTheme/types").Merge<unknown, {
|
|
658
682
|
light: import("@codecademy/variance").LiteralPaths<{
|
|
@@ -737,9 +761,19 @@ export declare const enterpriseTheme: Record<"breakpoints", {
|
|
|
737
761
|
}, "-", "_">;
|
|
738
762
|
}>, {
|
|
739
763
|
light: import("@codecademy/variance").LiteralPaths<{
|
|
764
|
+
text: "enterpriseNavy-400";
|
|
740
765
|
primary: {
|
|
741
|
-
_: "hotPink-
|
|
742
|
-
hover: "hotPink-
|
|
766
|
+
_: "hotPink-100";
|
|
767
|
+
hover: "hotPink-400";
|
|
768
|
+
};
|
|
769
|
+
secondary: {
|
|
770
|
+
_: "enterpriseNavy-400";
|
|
771
|
+
hover: "enterpriseNavy-100";
|
|
772
|
+
};
|
|
773
|
+
feedback: {
|
|
774
|
+
error: "enterpriseRed-0";
|
|
775
|
+
success: "enterpriseGreen-0";
|
|
776
|
+
warning: "enterpriseYellow-0";
|
|
743
777
|
};
|
|
744
778
|
}, "-", "_">;
|
|
745
779
|
dark: import("@codecademy/variance").LiteralPaths<{}, "-", "_">;
|
|
@@ -808,11 +842,18 @@ export declare const enterpriseTheme: Record<"breakpoints", {
|
|
|
808
842
|
readonly hotPink: "#e83e8c";
|
|
809
843
|
readonly enterpriseNavy: "#141c36";
|
|
810
844
|
readonly enterpriseBeige: "#ebe9df";
|
|
845
|
+
readonly enterpriseGreen: "#48ac2c";
|
|
846
|
+
readonly enterpriseYellow: "#ffc107";
|
|
847
|
+
readonly enterpriseRed: "#dc3545";
|
|
811
848
|
readonly "hotPink-100": "#e83e8c";
|
|
812
849
|
readonly "hotPink-400": "#c22c5a";
|
|
813
850
|
readonly "enterpriseNavy-100": "#212d56";
|
|
814
851
|
readonly "enterpriseNavy-400": "#141c36";
|
|
852
|
+
readonly "enterpriseBeige-100": "#F7F6F2";
|
|
815
853
|
readonly "enterpriseBeige-400": "#ebe9df";
|
|
854
|
+
readonly "enterpriseGreen-0": "#48ac2c";
|
|
855
|
+
readonly "enterpriseYellow-0": "#ffc107";
|
|
856
|
+
readonly "enterpriseRed-0": "#dc3545";
|
|
816
857
|
}, "-">) => string;
|
|
817
858
|
}> & import("@codecademy/variance/dist/createTheme/types").PrivateThemeKeys;
|
|
818
859
|
export declare type EnterpriseThemeShape = typeof enterpriseTheme;
|
|
@@ -3,9 +3,19 @@ import { enterprisePalette } from '../variables';
|
|
|
3
3
|
import { coreTheme } from './core';
|
|
4
4
|
export var enterpriseTheme = createTheme(coreTheme).addColors(enterprisePalette).addColorModes('light', {
|
|
5
5
|
light: {
|
|
6
|
+
text: 'enterpriseNavy-400',
|
|
6
7
|
primary: {
|
|
7
|
-
_: 'hotPink-
|
|
8
|
-
hover: 'hotPink-
|
|
8
|
+
_: 'hotPink-100',
|
|
9
|
+
hover: 'hotPink-400'
|
|
10
|
+
},
|
|
11
|
+
secondary: {
|
|
12
|
+
_: 'enterpriseNavy-400',
|
|
13
|
+
hover: 'enterpriseNavy-100'
|
|
14
|
+
},
|
|
15
|
+
feedback: {
|
|
16
|
+
error: 'enterpriseRed-0',
|
|
17
|
+
success: 'enterpriseGreen-0',
|
|
18
|
+
warning: 'enterpriseYellow-0'
|
|
9
19
|
}
|
|
10
20
|
},
|
|
11
21
|
dark: {}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"enterprise.js","sourceRoot":"","sources":["../../src/themes/enterprise.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAEnD,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AACjD,OAAO,EAAE,SAAS,EAAE,MAAM,QAAQ,CAAC;AAEnC,MAAM,CAAC,MAAM,eAAe,GAAG,WAAW,CAAC,SAAS,CAAC;KAClD,SAAS,CAAC,iBAAiB,CAAC;KAC5B,aAAa,CAAC,OAAO,EAAE;IACtB,KAAK,EAAE;QACL,OAAO,EAAE;YACP,CAAC,EAAE,aAAa;YAChB,KAAK,EAAE,aAAa;SACrB;KACF;IACD,IAAI,EAAE,EAAE;CACT,CAAC;KACD,KAAK,EAAE,CAAC"}
|
|
1
|
+
{"version":3,"file":"enterprise.js","sourceRoot":"","sources":["../../src/themes/enterprise.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAEnD,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AACjD,OAAO,EAAE,SAAS,EAAE,MAAM,QAAQ,CAAC;AAEnC,MAAM,CAAC,MAAM,eAAe,GAAG,WAAW,CAAC,SAAS,CAAC;KAClD,SAAS,CAAC,iBAAiB,CAAC;KAC5B,aAAa,CAAC,OAAO,EAAE;IACtB,KAAK,EAAE;QACL,IAAI,EAAE,oBAAoB;QAC1B,OAAO,EAAE;YACP,CAAC,EAAE,aAAa;YAChB,KAAK,EAAE,aAAa;SACrB;QACD,SAAS,EAAE;YACT,CAAC,EAAE,oBAAoB;YACvB,KAAK,EAAE,oBAAoB;SAC5B;QACD,QAAQ,EAAE;YACR,KAAK,EAAE,iBAAiB;YACxB,OAAO,EAAE,mBAAmB;YAC5B,OAAO,EAAE,oBAAoB;SAC9B;KACF;IACD,IAAI,EAAE,EAAE;CACT,CAAC;KACD,KAAK,EAAE,CAAC"}
|
package/dist/themes/index.d.ts
CHANGED
package/dist/themes/index.js
CHANGED
package/dist/themes/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/themes/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/themes/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC"}
|
|
@@ -184,16 +184,33 @@ export declare const enterpriseSwatches: {
|
|
|
184
184
|
readonly '400': "#141c36";
|
|
185
185
|
};
|
|
186
186
|
readonly enterpriseBeige: {
|
|
187
|
+
readonly '100': "#F7F6F2";
|
|
187
188
|
readonly '400': "#ebe9df";
|
|
188
189
|
};
|
|
190
|
+
readonly enterpriseGreen: {
|
|
191
|
+
readonly '0': "#48ac2c";
|
|
192
|
+
};
|
|
193
|
+
readonly enterpriseYellow: {
|
|
194
|
+
readonly '0': "#ffc107";
|
|
195
|
+
};
|
|
196
|
+
readonly enterpriseRed: {
|
|
197
|
+
readonly '0': "#dc3545";
|
|
198
|
+
};
|
|
189
199
|
};
|
|
190
200
|
export declare const enterprisePalette: {
|
|
191
201
|
readonly hotPink: "#e83e8c";
|
|
192
202
|
readonly enterpriseNavy: "#141c36";
|
|
193
203
|
readonly enterpriseBeige: "#ebe9df";
|
|
204
|
+
readonly enterpriseGreen: "#48ac2c";
|
|
205
|
+
readonly enterpriseYellow: "#ffc107";
|
|
206
|
+
readonly enterpriseRed: "#dc3545";
|
|
194
207
|
readonly "hotPink-100": "#e83e8c";
|
|
195
208
|
readonly "hotPink-400": "#c22c5a";
|
|
196
209
|
readonly "enterpriseNavy-100": "#212d56";
|
|
197
210
|
readonly "enterpriseNavy-400": "#141c36";
|
|
211
|
+
readonly "enterpriseBeige-100": "#F7F6F2";
|
|
198
212
|
readonly "enterpriseBeige-400": "#ebe9df";
|
|
213
|
+
readonly "enterpriseGreen-0": "#48ac2c";
|
|
214
|
+
readonly "enterpriseYellow-0": "#ffc107";
|
|
215
|
+
readonly "enterpriseRed-0": "#dc3545";
|
|
199
216
|
};
|
package/dist/variables/colors.js
CHANGED
|
@@ -148,12 +148,25 @@ export var enterpriseSwatches = {
|
|
|
148
148
|
'400': '#141c36'
|
|
149
149
|
},
|
|
150
150
|
enterpriseBeige: {
|
|
151
|
+
'100': '#F7F6F2',
|
|
151
152
|
'400': '#ebe9df'
|
|
153
|
+
},
|
|
154
|
+
enterpriseGreen: {
|
|
155
|
+
'0': '#48ac2c'
|
|
156
|
+
},
|
|
157
|
+
enterpriseYellow: {
|
|
158
|
+
'0': '#ffc107'
|
|
159
|
+
},
|
|
160
|
+
enterpriseRed: {
|
|
161
|
+
'0': '#dc3545'
|
|
152
162
|
}
|
|
153
163
|
};
|
|
154
164
|
var trueEnterpriseColors = {
|
|
155
165
|
hotPink: enterpriseSwatches.hotPink[100],
|
|
156
166
|
enterpriseNavy: enterpriseSwatches.enterpriseNavy[400],
|
|
157
|
-
enterpriseBeige: enterpriseSwatches.enterpriseBeige[400]
|
|
167
|
+
enterpriseBeige: enterpriseSwatches.enterpriseBeige[400],
|
|
168
|
+
enterpriseGreen: enterpriseSwatches.enterpriseGreen[0],
|
|
169
|
+
enterpriseYellow: enterpriseSwatches.enterpriseYellow[0],
|
|
170
|
+
enterpriseRed: enterpriseSwatches.enterpriseRed[0]
|
|
158
171
|
};
|
|
159
172
|
export var enterprisePalette = _objectSpread(_objectSpread({}, flattenScale(enterpriseSwatches)), trueEnterpriseColors);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"colors.js","sourceRoot":"","sources":["../../src/variables/colors.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"colors.js","sourceRoot":"","sources":["../../src/variables/colors.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codecademy/gamut-styles",
|
|
3
3
|
"description": "Styleguide & Component library for codecademy.com",
|
|
4
|
-
"version": "13.1.2-alpha.
|
|
4
|
+
"version": "13.1.2-alpha.6e3966.0",
|
|
5
5
|
"author": "Jake Hiller <jake@codecademy.com>",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "f764a7cfebb00554b2c6b6b0169ccd15d19a3932"
|
|
43
43
|
}
|