@hero-design/colors 8.2.0 → 8.2.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.
Files changed (39) hide show
  1. package/.rollup.cache/root/hero-design/packages/colors/types/colorScales/createColorScales.d.ts +10 -0
  2. package/.rollup.cache/root/hero-design/packages/colors/types/colorScales/createColorScales.js +10 -0
  3. package/.rollup.cache/root/hero-design/packages/colors/types/colorScales/createColorScales.js.map +1 -0
  4. package/.rollup.cache/root/hero-design/packages/colors/types/colorScales/index.d.ts +45 -0
  5. package/.rollup.cache/root/hero-design/packages/colors/types/colorScales/index.js +50 -0
  6. package/.rollup.cache/root/hero-design/packages/colors/types/colorScales/index.js.map +1 -0
  7. package/.rollup.cache/root/hero-design/packages/colors/types/colorScales/mixColor.d.ts +6 -0
  8. package/.rollup.cache/root/hero-design/packages/colors/types/colorScales/mixColor.js +11 -0
  9. package/.rollup.cache/root/hero-design/packages/colors/types/colorScales/mixColor.js.map +1 -0
  10. package/.rollup.cache/root/hero-design/packages/colors/types/defaultMobilePalette/index.d.ts +39 -0
  11. package/.rollup.cache/root/hero-design/packages/colors/types/defaultMobilePalette/index.js +42 -0
  12. package/.rollup.cache/root/hero-design/packages/colors/types/defaultMobilePalette/index.js.map +1 -0
  13. package/.rollup.cache/root/hero-design/packages/colors/types/defaultWebPalette/index.d.ts +88 -0
  14. package/.rollup.cache/root/hero-design/packages/colors/types/defaultWebPalette/index.js +91 -0
  15. package/.rollup.cache/root/hero-design/packages/colors/types/defaultWebPalette/index.js.map +1 -0
  16. package/.rollup.cache/root/hero-design/packages/colors/types/eBensPalette/index.d.ts +45 -0
  17. package/.rollup.cache/root/hero-design/packages/colors/types/eBensPalette/index.js +6 -0
  18. package/.rollup.cache/root/hero-design/packages/colors/types/eBensPalette/index.js.map +1 -0
  19. package/.rollup.cache/root/hero-design/packages/colors/types/index.d.ts +11 -0
  20. package/.rollup.cache/root/hero-design/packages/colors/types/index.js +12 -0
  21. package/.rollup.cache/root/hero-design/packages/colors/types/index.js.map +1 -0
  22. package/.rollup.cache/root/hero-design/packages/colors/types/jobsPalette/index.d.ts +46 -0
  23. package/.rollup.cache/root/hero-design/packages/colors/types/jobsPalette/index.js +6 -0
  24. package/.rollup.cache/root/hero-design/packages/colors/types/jobsPalette/index.js.map +1 -0
  25. package/.rollup.cache/root/hero-design/packages/colors/types/mobileVisualisationPalette/index.d.ts +23 -0
  26. package/.rollup.cache/root/hero-design/packages/colors/types/mobileVisualisationPalette/index.js +26 -0
  27. package/.rollup.cache/root/hero-design/packages/colors/types/mobileVisualisationPalette/index.js.map +1 -0
  28. package/.rollup.cache/root/hero-design/packages/colors/types/swagPalette/index.d.ts +51 -0
  29. package/.rollup.cache/root/hero-design/packages/colors/types/swagPalette/index.js +6 -0
  30. package/.rollup.cache/root/hero-design/packages/colors/types/swagPalette/index.js.map +1 -0
  31. package/.rollup.cache/root/hero-design/packages/colors/types/tsconfig.tsbuildinfo +1 -0
  32. package/.rollup.cache/root/hero-design/packages/colors/types/walletPalette/index.d.ts +47 -0
  33. package/.rollup.cache/root/hero-design/packages/colors/types/walletPalette/index.js +6 -0
  34. package/.rollup.cache/root/hero-design/packages/colors/types/walletPalette/index.js.map +1 -0
  35. package/.rollup.cache/root/hero-design/packages/colors/types/workPalette/index.d.ts +49 -0
  36. package/.rollup.cache/root/hero-design/packages/colors/types/workPalette/index.js +6 -0
  37. package/.rollup.cache/root/hero-design/packages/colors/types/workPalette/index.js.map +1 -0
  38. package/.turbo/turbo-build.log +17 -17
  39. package/package.json +3 -3
@@ -0,0 +1,10 @@
1
+ declare const STEPS: readonly [5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95];
2
+ declare type LIGHTEN_STEPS = `lighten${typeof STEPS[number]}`;
3
+ declare type DARKEN_STEPS = `darken${typeof STEPS[number]}`;
4
+ declare type ColorScales = {
5
+ base: string;
6
+ } & {
7
+ [k in LIGHTEN_STEPS | DARKEN_STEPS]: string;
8
+ };
9
+ declare const createColorScales: (base: string) => ColorScales;
10
+ export default createColorScales;
@@ -0,0 +1,10 @@
1
+ import mixColor from './mixColor';
2
+ const STEPS = [
3
+ 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95,
4
+ ];
5
+ const createColorScales = (base) => {
6
+ const mixed = mixColor(base);
7
+ return Object.assign(Object.assign({}, STEPS.reduce((acc, step) => (Object.assign(Object.assign({}, acc), { [`lighten${step}`]: mixed.tint(step), [`darken${step}`]: mixed.shade(step) })), {})), { base: mixed.base });
8
+ };
9
+ export default createColorScales;
10
+ //# sourceMappingURL=createColorScales.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"createColorScales.js","sourceRoot":"","sources":["../../src/colorScales/createColorScales.ts"],"names":[],"mappings":"AAAA,OAAO,QAAQ,MAAM,YAAY,CAAC;AAElC,MAAM,KAAK,GAAG;IACZ,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;CACjE,CAAC;AAUX,MAAM,iBAAiB,GAAG,CAAC,IAAY,EAAe,EAAE;IACtD,MAAM,KAAK,GAAG,QAAQ,CAAC,IAAI,CAAC,CAAC;IAE7B,uCACK,KAAK,CAAC,MAAM,CACb,CAAC,GAAG,EAAE,IAAI,EAAE,EAAE,CAAC,iCACV,GAAG,KACN,CAAC,UAAU,IAAI,EAAE,CAAC,EAAE,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,EACpC,CAAC,SAAS,IAAI,EAAE,CAAC,EAAE,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,IACpC,EACF,EAA+B,CAChC,KACD,IAAI,EAAE,KAAK,CAAC,IAAI,IAChB;AACJ,CAAC,CAAC;AAEF,eAAe,iBAAiB,CAAC","sourcesContent":["import mixColor from './mixColor';\n\nconst STEPS = [\n 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95,\n] as const;\n\ntype LIGHTEN_STEPS = `lighten${typeof STEPS[number]}`;\n\ntype DARKEN_STEPS = `darken${typeof STEPS[number]}`;\n\ntype ColorScales = { base: string } & {\n [k in LIGHTEN_STEPS | DARKEN_STEPS]: string; // eslint-disable-line no-unused-vars\n};\n\nconst createColorScales = (base: string): ColorScales => {\n const mixed = mixColor(base);\n\n return {\n ...STEPS.reduce(\n (acc, step) => ({\n ...acc,\n [`lighten${step}`]: mixed.tint(step),\n [`darken${step}`]: mixed.shade(step),\n }),\n {} as Omit<ColorScales, 'base'>\n ),\n base: mixed.base,\n };\n};\n\nexport default createColorScales;\n"]}
@@ -0,0 +1,45 @@
1
+ import mixColor from './mixColor';
2
+ declare const colorScales: Record<"aliceBlue" | "antiFlashWhite" | "apple" | "blue1" | "blue" | "cornflowerBlue" | "currant" | "darkBlue" | "deepSaffron" | "emerald" | "frenchSky" | "gold" | "green" | "grey" | "grotesqueGreen" | "hitPink" | "honeydew" | "jordyBlue" | "linen" | "maasstrichtBlue" | "mauve" | "mellowApricot" | "nightBlue" | "pastelRed" | "paua" | "peach" | "pineGreen" | "pink" | "policeBlue" | "purple" | "royalBlue" | "scarletGum" | "seashell" | "silverChalice" | "smalt" | "sonicSilver" | "ultramarineBlue" | "vermilion" | "violet1" | "violet" | "vodka" | "yellow", {
3
+ base: string;
4
+ } & {
5
+ lighten5: string;
6
+ lighten10: string;
7
+ lighten15: string;
8
+ lighten20: string;
9
+ lighten25: string;
10
+ lighten30: string;
11
+ lighten35: string;
12
+ lighten40: string;
13
+ lighten45: string;
14
+ lighten50: string;
15
+ lighten55: string;
16
+ lighten60: string;
17
+ lighten65: string;
18
+ lighten70: string;
19
+ lighten75: string;
20
+ lighten80: string;
21
+ lighten85: string;
22
+ lighten90: string;
23
+ lighten95: string;
24
+ darken5: string;
25
+ darken10: string;
26
+ darken15: string;
27
+ darken20: string;
28
+ darken25: string;
29
+ darken30: string;
30
+ darken35: string;
31
+ darken40: string;
32
+ darken45: string;
33
+ darken50: string;
34
+ darken55: string;
35
+ darken60: string;
36
+ darken65: string;
37
+ darken70: string;
38
+ darken75: string;
39
+ darken80: string;
40
+ darken85: string;
41
+ darken90: string;
42
+ darken95: string;
43
+ }>;
44
+ export { mixColor };
45
+ export default colorScales;
@@ -0,0 +1,50 @@
1
+ import createColorScales from './createColorScales';
2
+ import mixColor from './mixColor';
3
+ const BASE_COLORS = {
4
+ aliceBlue: '#ecf0ff',
5
+ antiFlashWhite: '#f1f2f3',
6
+ apple: '#e3602a',
7
+ blue1: '#5a68e2',
8
+ blue: '#1dbeee',
9
+ cornflowerBlue: '#5d80f0',
10
+ currant: '#48000a',
11
+ darkBlue: '#25006e',
12
+ deepSaffron: '#ffa234',
13
+ emerald: '#5ace7d',
14
+ frenchSky: '#8999ff',
15
+ gold: '#ffd500',
16
+ green: '#01b39c',
17
+ grey: '#a3a6ac',
18
+ grotesqueGreen: '#6af293',
19
+ hitPink: '#ffad79',
20
+ honeydew: '#f0fef4',
21
+ jordyBlue: '#92abfc',
22
+ linen: '#fcebe7',
23
+ maasstrichtBlue: '#001f23',
24
+ mauve: '#c38cee',
25
+ mellowApricot: '#ffbe71',
26
+ nightBlue: '#353957',
27
+ pastelRed: '#f46363',
28
+ paua: '#130066',
29
+ peach: '#f8ac7d',
30
+ pineGreen: '#017d6d',
31
+ pink: '#fe56aa',
32
+ policeBlue: '#2e456d',
33
+ purple: '#be83cf',
34
+ royalBlue: '#5a68e2',
35
+ scarletGum: '#401960',
36
+ seashell: '#fff6eb',
37
+ silverChalice: '#abacaf',
38
+ smalt: '#003580',
39
+ sonicSilver: '#737479',
40
+ ultramarineBlue: '#4568fb',
41
+ vermilion: '#de350b',
42
+ violet1: '#8505a2',
43
+ violet: '#7622d7',
44
+ vodka: '#b5c3fd',
45
+ yellow: '#fadb14',
46
+ };
47
+ const colorScales = Object.entries(BASE_COLORS).reduce((acc, [key, value]) => (Object.assign(Object.assign({}, acc), { [key]: createColorScales(value) })), {});
48
+ export { mixColor };
49
+ export default colorScales;
50
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/colorScales/index.ts"],"names":[],"mappings":"AAAA,OAAO,iBAAiB,MAAM,qBAAqB,CAAC;AACpD,OAAO,QAAQ,MAAM,YAAY,CAAC;AAElC,MAAM,WAAW,GAAG;IAClB,SAAS,EAAE,SAAS;IACpB,cAAc,EAAE,SAAS;IACzB,KAAK,EAAE,SAAS;IAChB,KAAK,EAAE,SAAS;IAChB,IAAI,EAAE,SAAS;IACf,cAAc,EAAE,SAAS;IACzB,OAAO,EAAE,SAAS;IAClB,QAAQ,EAAE,SAAS;IACnB,WAAW,EAAE,SAAS;IACtB,OAAO,EAAE,SAAS;IAClB,SAAS,EAAE,SAAS;IACpB,IAAI,EAAE,SAAS;IACf,KAAK,EAAE,SAAS;IAChB,IAAI,EAAE,SAAS;IACf,cAAc,EAAE,SAAS;IACzB,OAAO,EAAE,SAAS;IAClB,QAAQ,EAAE,SAAS;IACnB,SAAS,EAAE,SAAS;IACpB,KAAK,EAAE,SAAS;IAChB,eAAe,EAAE,SAAS;IAC1B,KAAK,EAAE,SAAS;IAChB,aAAa,EAAE,SAAS;IACxB,SAAS,EAAE,SAAS;IACpB,SAAS,EAAE,SAAS;IACpB,IAAI,EAAE,SAAS;IACf,KAAK,EAAE,SAAS;IAChB,SAAS,EAAE,SAAS;IACpB,IAAI,EAAE,SAAS;IACf,UAAU,EAAE,SAAS;IACrB,MAAM,EAAE,SAAS;IACjB,SAAS,EAAE,SAAS;IACpB,UAAU,EAAE,SAAS;IACrB,QAAQ,EAAE,SAAS;IACnB,aAAa,EAAE,SAAS;IACxB,KAAK,EAAE,SAAS;IAChB,WAAW,EAAE,SAAS;IACtB,eAAe,EAAE,SAAS;IAC1B,SAAS,EAAE,SAAS;IACpB,OAAO,EAAE,SAAS;IAClB,MAAM,EAAE,SAAS;IACjB,KAAK,EAAE,SAAS;IAChB,MAAM,EAAE,SAAS;CACT,CAAC;AAEX,MAAM,WAAW,GAAG,MAAM,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,MAAM,CACpD,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,KAAK,CAAC,EAAE,EAAE,CAAC,iCAAM,GAAG,KAAE,CAAC,GAAG,CAAC,EAAE,iBAAiB,CAAC,KAAK,CAAC,IAAG,EACpE,EAA4E,CAC7E,CAAC;AAEF,OAAO,EAAE,QAAQ,EAAE,CAAC;AAEpB,eAAe,WAAW,CAAC","sourcesContent":["import createColorScales from './createColorScales';\nimport mixColor from './mixColor';\n\nconst BASE_COLORS = {\n aliceBlue: '#ecf0ff',\n antiFlashWhite: '#f1f2f3',\n apple: '#e3602a',\n blue1: '#5a68e2',\n blue: '#1dbeee',\n cornflowerBlue: '#5d80f0',\n currant: '#48000a',\n darkBlue: '#25006e',\n deepSaffron: '#ffa234',\n emerald: '#5ace7d',\n frenchSky: '#8999ff',\n gold: '#ffd500',\n green: '#01b39c',\n grey: '#a3a6ac',\n grotesqueGreen: '#6af293',\n hitPink: '#ffad79',\n honeydew: '#f0fef4',\n jordyBlue: '#92abfc',\n linen: '#fcebe7',\n maasstrichtBlue: '#001f23',\n mauve: '#c38cee',\n mellowApricot: '#ffbe71',\n nightBlue: '#353957',\n pastelRed: '#f46363',\n paua: '#130066',\n peach: '#f8ac7d',\n pineGreen: '#017d6d',\n pink: '#fe56aa',\n policeBlue: '#2e456d',\n purple: '#be83cf',\n royalBlue: '#5a68e2',\n scarletGum: '#401960',\n seashell: '#fff6eb',\n silverChalice: '#abacaf',\n smalt: '#003580',\n sonicSilver: '#737479',\n ultramarineBlue: '#4568fb',\n vermilion: '#de350b',\n violet1: '#8505a2',\n violet: '#7622d7',\n vodka: '#b5c3fd',\n yellow: '#fadb14',\n} as const;\n\nconst colorScales = Object.entries(BASE_COLORS).reduce(\n (acc, [key, value]) => ({ ...acc, [key]: createColorScales(value) }),\n {} as Record<keyof typeof BASE_COLORS, ReturnType<typeof createColorScales>>\n);\n\nexport { mixColor };\n\nexport default colorScales;\n"]}
@@ -0,0 +1,6 @@
1
+ declare const mixColor: (color: string) => {
2
+ tint: (step: number) => string;
3
+ shade: (step: number) => string;
4
+ base: string;
5
+ };
6
+ export default mixColor;
@@ -0,0 +1,11 @@
1
+ import Values from 'values.js';
2
+ const mixColor = (color) => {
3
+ const colorValues = new Values(color);
4
+ return {
5
+ tint: (step) => colorValues.tint(step).hexString(),
6
+ shade: (step) => colorValues.shade(step).hexString(),
7
+ base: colorValues.hexString(),
8
+ };
9
+ };
10
+ export default mixColor;
11
+ //# sourceMappingURL=mixColor.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mixColor.js","sourceRoot":"","sources":["../../src/colorScales/mixColor.ts"],"names":[],"mappings":"AAAA,OAAO,MAAM,MAAM,WAAW,CAAC;AAE/B,MAAM,QAAQ,GAAG,CAAC,KAAa,EAAE,EAAE;IACjC,MAAM,WAAW,GAAG,IAAI,MAAM,CAAC,KAAK,CAAC,CAAC;IACtC,OAAO;QACL,IAAI,EAAE,CAAC,IAAY,EAAE,EAAE,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,SAAS,EAAE;QAC1D,KAAK,EAAE,CAAC,IAAY,EAAE,EAAE,CAAC,WAAW,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,SAAS,EAAE;QAC5D,IAAI,EAAE,WAAW,CAAC,SAAS,EAAE;KAC9B,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,QAAQ,CAAC","sourcesContent":["import Values from 'values.js';\n\nconst mixColor = (color: string) => {\n const colorValues = new Values(color);\n return {\n tint: (step: number) => colorValues.tint(step).hexString(),\n shade: (step: number) => colorValues.shade(step).hexString(),\n base: colorValues.hexString(),\n };\n};\n\nexport default mixColor;\n"]}
@@ -0,0 +1,39 @@
1
+ declare const palette: {
2
+ black: string;
3
+ white: string;
4
+ greyLight95: string;
5
+ greyLight90: string;
6
+ greyLight75: string;
7
+ greyLight45: string;
8
+ greyLight30: string;
9
+ grey: string;
10
+ maasstrichtBlueLight90: string;
11
+ maasstrichtBlueLight80: string;
12
+ maasstrichtBlueLight50: string;
13
+ maasstrichtBlueLight30: string;
14
+ maasstrichtBlue: string;
15
+ pastelRed: string;
16
+ pastelRedLight20: string;
17
+ mellowApricot: string;
18
+ mellowApricotLight20: string;
19
+ emerald: string;
20
+ emeraldLight20: string;
21
+ emeraldDark20: string;
22
+ vodka: string;
23
+ vodkaLight20: string;
24
+ vermilion: string;
25
+ deepSaffron: string;
26
+ deepSaffronDark20: string;
27
+ pineGreen: string;
28
+ ultramarineBlue: string;
29
+ sonicSilver: string;
30
+ linen: string;
31
+ seashell: string;
32
+ honeydew: string;
33
+ aliceBlue: string;
34
+ antiFlashWhite: string;
35
+ apple: string;
36
+ silverChalice: string;
37
+ silverChaliceLight20: string;
38
+ };
39
+ export default palette;
@@ -0,0 +1,42 @@
1
+ import colorScales from '../colorScales';
2
+ const { aliceBlue, antiFlashWhite, apple, deepSaffron, emerald, grey, honeydew, linen, maasstrichtBlue, mellowApricot, pastelRed, pineGreen, seashell, silverChalice, sonicSilver, ultramarineBlue, vermilion, vodka, } = colorScales;
3
+ const palette = {
4
+ black: '#000000',
5
+ white: '#ffffff',
6
+ greyLight95: grey.lighten95,
7
+ greyLight90: grey.lighten90,
8
+ greyLight75: grey.lighten75,
9
+ greyLight45: grey.lighten45,
10
+ greyLight30: grey.lighten30,
11
+ grey: grey.base,
12
+ maasstrichtBlueLight90: maasstrichtBlue.lighten90,
13
+ maasstrichtBlueLight80: maasstrichtBlue.lighten80,
14
+ maasstrichtBlueLight50: maasstrichtBlue.lighten50,
15
+ maasstrichtBlueLight30: maasstrichtBlue.lighten30,
16
+ maasstrichtBlue: maasstrichtBlue.base,
17
+ pastelRed: pastelRed.base,
18
+ pastelRedLight20: pastelRed.lighten20,
19
+ mellowApricot: mellowApricot.base,
20
+ mellowApricotLight20: mellowApricot.lighten20,
21
+ emerald: emerald.base,
22
+ emeraldLight20: emerald.lighten20,
23
+ emeraldDark20: emerald.darken20,
24
+ vodka: vodka.base,
25
+ vodkaLight20: vodka.lighten20,
26
+ vermilion: vermilion.base,
27
+ deepSaffron: deepSaffron.base,
28
+ deepSaffronDark20: deepSaffron.darken20,
29
+ pineGreen: pineGreen.base,
30
+ ultramarineBlue: ultramarineBlue.base,
31
+ sonicSilver: sonicSilver.base,
32
+ linen: linen.base,
33
+ seashell: seashell.base,
34
+ honeydew: honeydew.base,
35
+ aliceBlue: aliceBlue.base,
36
+ antiFlashWhite: antiFlashWhite.base,
37
+ apple: apple.base,
38
+ silverChalice: silverChalice.base,
39
+ silverChaliceLight20: silverChalice.lighten20,
40
+ };
41
+ export default palette;
42
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/defaultMobilePalette/index.ts"],"names":[],"mappings":"AAAA,OAAO,WAAW,MAAM,gBAAgB,CAAC;AAEzC,MAAM,EACJ,SAAS,EACT,cAAc,EACd,KAAK,EACL,WAAW,EACX,OAAO,EACP,IAAI,EACJ,QAAQ,EACR,KAAK,EACL,eAAe,EACf,aAAa,EACb,SAAS,EACT,SAAS,EACT,QAAQ,EACR,aAAa,EACb,WAAW,EACX,eAAe,EACf,SAAS,EACT,KAAK,GACN,GAAG,WAAW,CAAC;AAEhB,MAAM,OAAO,GAAG;IACd,KAAK,EAAE,SAAS;IAChB,KAAK,EAAE,SAAS;IAEhB,WAAW,EAAE,IAAI,CAAC,SAAS;IAC3B,WAAW,EAAE,IAAI,CAAC,SAAS;IAC3B,WAAW,EAAE,IAAI,CAAC,SAAS;IAC3B,WAAW,EAAE,IAAI,CAAC,SAAS;IAC3B,WAAW,EAAE,IAAI,CAAC,SAAS;IAC3B,IAAI,EAAE,IAAI,CAAC,IAAI;IAEf,sBAAsB,EAAE,eAAe,CAAC,SAAS;IACjD,sBAAsB,EAAE,eAAe,CAAC,SAAS;IACjD,sBAAsB,EAAE,eAAe,CAAC,SAAS;IACjD,sBAAsB,EAAE,eAAe,CAAC,SAAS;IACjD,eAAe,EAAE,eAAe,CAAC,IAAI;IAErC,SAAS,EAAE,SAAS,CAAC,IAAI;IACzB,gBAAgB,EAAE,SAAS,CAAC,SAAS;IAErC,aAAa,EAAE,aAAa,CAAC,IAAI;IACjC,oBAAoB,EAAE,aAAa,CAAC,SAAS;IAE7C,OAAO,EAAE,OAAO,CAAC,IAAI;IACrB,cAAc,EAAE,OAAO,CAAC,SAAS;IACjC,aAAa,EAAE,OAAO,CAAC,QAAQ;IAE/B,KAAK,EAAE,KAAK,CAAC,IAAI;IACjB,YAAY,EAAE,KAAK,CAAC,SAAS;IAE7B,SAAS,EAAE,SAAS,CAAC,IAAI;IAEzB,WAAW,EAAE,WAAW,CAAC,IAAI;IAC7B,iBAAiB,EAAE,WAAW,CAAC,QAAQ;IAEvC,SAAS,EAAE,SAAS,CAAC,IAAI;IACzB,eAAe,EAAE,eAAe,CAAC,IAAI;IACrC,WAAW,EAAE,WAAW,CAAC,IAAI;IAC7B,KAAK,EAAE,KAAK,CAAC,IAAI;IACjB,QAAQ,EAAE,QAAQ,CAAC,IAAI;IACvB,QAAQ,EAAE,QAAQ,CAAC,IAAI;IACvB,SAAS,EAAE,SAAS,CAAC,IAAI;IACzB,cAAc,EAAE,cAAc,CAAC,IAAI;IACnC,KAAK,EAAE,KAAK,CAAC,IAAI;IAEjB,aAAa,EAAE,aAAa,CAAC,IAAI;IACjC,oBAAoB,EAAE,aAAa,CAAC,SAAS;CAC9C,CAAC;AAEF,eAAe,OAAO,CAAC","sourcesContent":["import colorScales from '../colorScales';\n\nconst {\n aliceBlue,\n antiFlashWhite,\n apple,\n deepSaffron,\n emerald,\n grey,\n honeydew,\n linen,\n maasstrichtBlue,\n mellowApricot,\n pastelRed,\n pineGreen,\n seashell,\n silverChalice,\n sonicSilver,\n ultramarineBlue,\n vermilion,\n vodka,\n} = colorScales;\n\nconst palette = {\n black: '#000000',\n white: '#ffffff',\n\n greyLight95: grey.lighten95,\n greyLight90: grey.lighten90,\n greyLight75: grey.lighten75,\n greyLight45: grey.lighten45,\n greyLight30: grey.lighten30,\n grey: grey.base,\n\n maasstrichtBlueLight90: maasstrichtBlue.lighten90,\n maasstrichtBlueLight80: maasstrichtBlue.lighten80,\n maasstrichtBlueLight50: maasstrichtBlue.lighten50,\n maasstrichtBlueLight30: maasstrichtBlue.lighten30,\n maasstrichtBlue: maasstrichtBlue.base,\n\n pastelRed: pastelRed.base,\n pastelRedLight20: pastelRed.lighten20,\n\n mellowApricot: mellowApricot.base,\n mellowApricotLight20: mellowApricot.lighten20,\n\n emerald: emerald.base,\n emeraldLight20: emerald.lighten20,\n emeraldDark20: emerald.darken20,\n\n vodka: vodka.base,\n vodkaLight20: vodka.lighten20,\n\n vermilion: vermilion.base,\n\n deepSaffron: deepSaffron.base,\n deepSaffronDark20: deepSaffron.darken20,\n\n pineGreen: pineGreen.base,\n ultramarineBlue: ultramarineBlue.base,\n sonicSilver: sonicSilver.base,\n linen: linen.base,\n seashell: seashell.base,\n honeydew: honeydew.base,\n aliceBlue: aliceBlue.base,\n antiFlashWhite: antiFlashWhite.base,\n apple: apple.base,\n\n silverChalice: silverChalice.base,\n silverChaliceLight20: silverChalice.lighten20,\n};\n\nexport default palette;\n"]}
@@ -0,0 +1,88 @@
1
+ declare const palette: {
2
+ black: string;
3
+ white: string;
4
+ blue: string;
5
+ blueDark30: string;
6
+ blueDark75: string;
7
+ blueLight30: string;
8
+ blueLight75: string;
9
+ blueLight90: string;
10
+ dodgerBlue: string;
11
+ dodgerBlueDark30: string;
12
+ dodgerBlueLight30: string;
13
+ dodgerBlueLight75: string;
14
+ dodgerBlueLight90: string;
15
+ green: string;
16
+ greenDark15: string;
17
+ greenDark30: string;
18
+ greenDark75: string;
19
+ greenLight30: string;
20
+ greenLight75: string;
21
+ greenLight90: string;
22
+ grey: string;
23
+ greyDark15: string;
24
+ greyDark30: string;
25
+ greyDark45: string;
26
+ greyDark60: string;
27
+ greyDark75: string;
28
+ greyLight45: string;
29
+ greyLight60: string;
30
+ greyLight75: string;
31
+ greyLight85: string;
32
+ greyLight90: string;
33
+ greyLight95: string;
34
+ grotesqueGreen: string;
35
+ grotesqueGreenDark45: string;
36
+ grotesqueGreenLight60: string;
37
+ grotesqueGreenLight75: string;
38
+ grotesqueGreenLight90: string;
39
+ orange: string;
40
+ orangeDark15: string;
41
+ orangeDark30: string;
42
+ orangeDark75: string;
43
+ orangeLight30: string;
44
+ orangeLight75: string;
45
+ orangeLight90: string;
46
+ pink: string;
47
+ pinkDark15: string;
48
+ pinkDark30: string;
49
+ pinkDark45: string;
50
+ pinkDark75: string;
51
+ pinkLight30: string;
52
+ pinkLight45: string;
53
+ pinkLight75: string;
54
+ pinkLight90: string;
55
+ purple: string;
56
+ purpleDark15: string;
57
+ red: string;
58
+ redDark15: string;
59
+ redDark30: string;
60
+ redDark75: string;
61
+ redLight15: string;
62
+ redLight30: string;
63
+ redLight60: string;
64
+ redLight75: string;
65
+ redLight90: string;
66
+ smalt: string;
67
+ smaltDark75: string;
68
+ smaltLight30: string;
69
+ smaltLight45: string;
70
+ smaltLight75: string;
71
+ smaltLight90: string;
72
+ violet: string;
73
+ violetDark15: string;
74
+ violetDark30: string;
75
+ violetDark45: string;
76
+ violetDark60: string;
77
+ violetDark75: string;
78
+ violetLight30: string;
79
+ violetLight60: string;
80
+ violetLight75: string;
81
+ violetLight90: string;
82
+ yellow: string;
83
+ yellowDark15: string;
84
+ yellowDark75: string;
85
+ yellowLight60: string;
86
+ yellowLight90: string;
87
+ };
88
+ export default palette;
@@ -0,0 +1,91 @@
1
+ import colorScales from '../colorScales';
2
+ const { blue, ultramarineBlue, green, grey, grotesqueGreen, deepSaffron, pink, purple, vermilion, smalt, violet, yellow, } = colorScales;
3
+ const palette = {
4
+ black: '#000000',
5
+ white: '#ffffff',
6
+ blue: blue.base,
7
+ blueDark30: blue.darken30,
8
+ blueDark75: blue.darken75,
9
+ blueLight30: blue.lighten30,
10
+ blueLight75: blue.lighten75,
11
+ blueLight90: blue.lighten90,
12
+ dodgerBlue: ultramarineBlue.base,
13
+ dodgerBlueDark30: ultramarineBlue.darken30,
14
+ dodgerBlueLight30: ultramarineBlue.lighten30,
15
+ dodgerBlueLight75: ultramarineBlue.lighten75,
16
+ dodgerBlueLight90: ultramarineBlue.lighten90,
17
+ green: green.base,
18
+ greenDark15: green.darken15,
19
+ greenDark30: green.darken30,
20
+ greenDark75: green.darken75,
21
+ greenLight30: green.lighten30,
22
+ greenLight75: green.lighten75,
23
+ greenLight90: green.lighten90,
24
+ grey: grey.base,
25
+ greyDark15: grey.darken15,
26
+ greyDark30: grey.darken30,
27
+ greyDark45: grey.darken45,
28
+ greyDark60: grey.darken60,
29
+ greyDark75: grey.darken75,
30
+ greyLight45: grey.lighten45,
31
+ greyLight60: grey.lighten60,
32
+ greyLight75: grey.lighten75,
33
+ greyLight85: grey.lighten85,
34
+ greyLight90: grey.lighten90,
35
+ greyLight95: grey.lighten95,
36
+ grotesqueGreen: grotesqueGreen.base,
37
+ grotesqueGreenDark45: grotesqueGreen.darken45,
38
+ grotesqueGreenLight60: grotesqueGreen.lighten60,
39
+ grotesqueGreenLight75: grotesqueGreen.lighten75,
40
+ grotesqueGreenLight90: grotesqueGreen.lighten90,
41
+ orange: deepSaffron.base,
42
+ orangeDark15: deepSaffron.darken15,
43
+ orangeDark30: deepSaffron.darken30,
44
+ orangeDark75: deepSaffron.darken75,
45
+ orangeLight30: deepSaffron.lighten30,
46
+ orangeLight75: deepSaffron.lighten75,
47
+ orangeLight90: deepSaffron.lighten90,
48
+ pink: pink.base,
49
+ pinkDark15: pink.darken15,
50
+ pinkDark30: pink.darken30,
51
+ pinkDark45: pink.darken45,
52
+ pinkDark75: pink.darken75,
53
+ pinkLight30: pink.lighten30,
54
+ pinkLight45: pink.lighten45,
55
+ pinkLight75: pink.lighten75,
56
+ pinkLight90: pink.lighten90,
57
+ purple: purple.base,
58
+ purpleDark15: purple.darken15,
59
+ red: vermilion.base,
60
+ redDark15: vermilion.darken15,
61
+ redDark30: vermilion.darken30,
62
+ redDark75: vermilion.darken75,
63
+ redLight15: vermilion.lighten15,
64
+ redLight30: vermilion.lighten30,
65
+ redLight60: vermilion.lighten60,
66
+ redLight75: vermilion.lighten75,
67
+ redLight90: vermilion.lighten90,
68
+ smalt: smalt.base,
69
+ smaltDark75: smalt.darken75,
70
+ smaltLight30: smalt.lighten30,
71
+ smaltLight45: smalt.lighten45,
72
+ smaltLight75: smalt.lighten75,
73
+ smaltLight90: smalt.lighten90,
74
+ violet: violet.base,
75
+ violetDark15: violet.darken15,
76
+ violetDark30: violet.darken30,
77
+ violetDark45: violet.darken45,
78
+ violetDark60: violet.darken60,
79
+ violetDark75: violet.darken75,
80
+ violetLight30: violet.lighten30,
81
+ violetLight60: violet.lighten60,
82
+ violetLight75: violet.lighten75,
83
+ violetLight90: violet.lighten90,
84
+ yellow: yellow.base,
85
+ yellowDark15: yellow.darken15,
86
+ yellowDark75: yellow.darken75,
87
+ yellowLight60: yellow.lighten60,
88
+ yellowLight90: yellow.lighten90,
89
+ };
90
+ export default palette;
91
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/defaultWebPalette/index.ts"],"names":[],"mappings":"AAAA,OAAO,WAAW,MAAM,gBAAgB,CAAC;AAEzC,MAAM,EACJ,IAAI,EACJ,eAAe,EACf,KAAK,EACL,IAAI,EACJ,cAAc,EACd,WAAW,EACX,IAAI,EACJ,MAAM,EACN,SAAS,EACT,KAAK,EACL,MAAM,EACN,MAAM,GACP,GAAG,WAAW,CAAC;AAEhB,MAAM,OAAO,GAAG;IACd,KAAK,EAAE,SAAS;IAChB,KAAK,EAAE,SAAS;IAChB,IAAI,EAAE,IAAI,CAAC,IAAI;IACf,UAAU,EAAE,IAAI,CAAC,QAAQ;IACzB,UAAU,EAAE,IAAI,CAAC,QAAQ;IACzB,WAAW,EAAE,IAAI,CAAC,SAAS;IAC3B,WAAW,EAAE,IAAI,CAAC,SAAS;IAC3B,WAAW,EAAE,IAAI,CAAC,SAAS;IAC3B,UAAU,EAAE,eAAe,CAAC,IAAI;IAChC,gBAAgB,EAAE,eAAe,CAAC,QAAQ;IAC1C,iBAAiB,EAAE,eAAe,CAAC,SAAS;IAC5C,iBAAiB,EAAE,eAAe,CAAC,SAAS;IAC5C,iBAAiB,EAAE,eAAe,CAAC,SAAS;IAC5C,KAAK,EAAE,KAAK,CAAC,IAAI;IACjB,WAAW,EAAE,KAAK,CAAC,QAAQ;IAC3B,WAAW,EAAE,KAAK,CAAC,QAAQ;IAC3B,WAAW,EAAE,KAAK,CAAC,QAAQ;IAC3B,YAAY,EAAE,KAAK,CAAC,SAAS;IAC7B,YAAY,EAAE,KAAK,CAAC,SAAS;IAC7B,YAAY,EAAE,KAAK,CAAC,SAAS;IAC7B,IAAI,EAAE,IAAI,CAAC,IAAI;IACf,UAAU,EAAE,IAAI,CAAC,QAAQ;IACzB,UAAU,EAAE,IAAI,CAAC,QAAQ;IACzB,UAAU,EAAE,IAAI,CAAC,QAAQ;IACzB,UAAU,EAAE,IAAI,CAAC,QAAQ;IACzB,UAAU,EAAE,IAAI,CAAC,QAAQ;IACzB,WAAW,EAAE,IAAI,CAAC,SAAS;IAC3B,WAAW,EAAE,IAAI,CAAC,SAAS;IAC3B,WAAW,EAAE,IAAI,CAAC,SAAS;IAC3B,WAAW,EAAE,IAAI,CAAC,SAAS;IAC3B,WAAW,EAAE,IAAI,CAAC,SAAS;IAC3B,WAAW,EAAE,IAAI,CAAC,SAAS;IAC3B,cAAc,EAAE,cAAc,CAAC,IAAI;IACnC,oBAAoB,EAAE,cAAc,CAAC,QAAQ;IAC7C,qBAAqB,EAAE,cAAc,CAAC,SAAS;IAC/C,qBAAqB,EAAE,cAAc,CAAC,SAAS;IAC/C,qBAAqB,EAAE,cAAc,CAAC,SAAS;IAC/C,MAAM,EAAE,WAAW,CAAC,IAAI;IACxB,YAAY,EAAE,WAAW,CAAC,QAAQ;IAClC,YAAY,EAAE,WAAW,CAAC,QAAQ;IAClC,YAAY,EAAE,WAAW,CAAC,QAAQ;IAClC,aAAa,EAAE,WAAW,CAAC,SAAS;IACpC,aAAa,EAAE,WAAW,CAAC,SAAS;IACpC,aAAa,EAAE,WAAW,CAAC,SAAS;IACpC,IAAI,EAAE,IAAI,CAAC,IAAI;IACf,UAAU,EAAE,IAAI,CAAC,QAAQ;IACzB,UAAU,EAAE,IAAI,CAAC,QAAQ;IACzB,UAAU,EAAE,IAAI,CAAC,QAAQ;IACzB,UAAU,EAAE,IAAI,CAAC,QAAQ;IACzB,WAAW,EAAE,IAAI,CAAC,SAAS;IAC3B,WAAW,EAAE,IAAI,CAAC,SAAS;IAC3B,WAAW,EAAE,IAAI,CAAC,SAAS;IAC3B,WAAW,EAAE,IAAI,CAAC,SAAS;IAC3B,MAAM,EAAE,MAAM,CAAC,IAAI;IACnB,YAAY,EAAE,MAAM,CAAC,QAAQ;IAC7B,GAAG,EAAE,SAAS,CAAC,IAAI;IACnB,SAAS,EAAE,SAAS,CAAC,QAAQ;IAC7B,SAAS,EAAE,SAAS,CAAC,QAAQ;IAC7B,SAAS,EAAE,SAAS,CAAC,QAAQ;IAC7B,UAAU,EAAE,SAAS,CAAC,SAAS;IAC/B,UAAU,EAAE,SAAS,CAAC,SAAS;IAC/B,UAAU,EAAE,SAAS,CAAC,SAAS;IAC/B,UAAU,EAAE,SAAS,CAAC,SAAS;IAC/B,UAAU,EAAE,SAAS,CAAC,SAAS;IAC/B,KAAK,EAAE,KAAK,CAAC,IAAI;IACjB,WAAW,EAAE,KAAK,CAAC,QAAQ;IAC3B,YAAY,EAAE,KAAK,CAAC,SAAS;IAC7B,YAAY,EAAE,KAAK,CAAC,SAAS;IAC7B,YAAY,EAAE,KAAK,CAAC,SAAS;IAC7B,YAAY,EAAE,KAAK,CAAC,SAAS;IAC7B,MAAM,EAAE,MAAM,CAAC,IAAI;IACnB,YAAY,EAAE,MAAM,CAAC,QAAQ;IAC7B,YAAY,EAAE,MAAM,CAAC,QAAQ;IAC7B,YAAY,EAAE,MAAM,CAAC,QAAQ;IAC7B,YAAY,EAAE,MAAM,CAAC,QAAQ;IAC7B,YAAY,EAAE,MAAM,CAAC,QAAQ;IAC7B,aAAa,EAAE,MAAM,CAAC,SAAS;IAC/B,aAAa,EAAE,MAAM,CAAC,SAAS;IAC/B,aAAa,EAAE,MAAM,CAAC,SAAS;IAC/B,aAAa,EAAE,MAAM,CAAC,SAAS;IAC/B,MAAM,EAAE,MAAM,CAAC,IAAI;IACnB,YAAY,EAAE,MAAM,CAAC,QAAQ;IAC7B,YAAY,EAAE,MAAM,CAAC,QAAQ;IAC7B,aAAa,EAAE,MAAM,CAAC,SAAS;IAC/B,aAAa,EAAE,MAAM,CAAC,SAAS;CAChC,CAAC;AAEF,eAAe,OAAO,CAAC","sourcesContent":["import colorScales from '../colorScales';\n\nconst {\n blue,\n ultramarineBlue,\n green,\n grey,\n grotesqueGreen,\n deepSaffron,\n pink,\n purple,\n vermilion,\n smalt,\n violet,\n yellow,\n} = colorScales;\n\nconst palette = {\n black: '#000000',\n white: '#ffffff',\n blue: blue.base,\n blueDark30: blue.darken30,\n blueDark75: blue.darken75,\n blueLight30: blue.lighten30,\n blueLight75: blue.lighten75,\n blueLight90: blue.lighten90,\n dodgerBlue: ultramarineBlue.base,\n dodgerBlueDark30: ultramarineBlue.darken30,\n dodgerBlueLight30: ultramarineBlue.lighten30,\n dodgerBlueLight75: ultramarineBlue.lighten75,\n dodgerBlueLight90: ultramarineBlue.lighten90,\n green: green.base,\n greenDark15: green.darken15,\n greenDark30: green.darken30,\n greenDark75: green.darken75,\n greenLight30: green.lighten30,\n greenLight75: green.lighten75,\n greenLight90: green.lighten90,\n grey: grey.base,\n greyDark15: grey.darken15,\n greyDark30: grey.darken30,\n greyDark45: grey.darken45,\n greyDark60: grey.darken60,\n greyDark75: grey.darken75,\n greyLight45: grey.lighten45,\n greyLight60: grey.lighten60,\n greyLight75: grey.lighten75,\n greyLight85: grey.lighten85,\n greyLight90: grey.lighten90,\n greyLight95: grey.lighten95,\n grotesqueGreen: grotesqueGreen.base,\n grotesqueGreenDark45: grotesqueGreen.darken45,\n grotesqueGreenLight60: grotesqueGreen.lighten60,\n grotesqueGreenLight75: grotesqueGreen.lighten75,\n grotesqueGreenLight90: grotesqueGreen.lighten90,\n orange: deepSaffron.base,\n orangeDark15: deepSaffron.darken15,\n orangeDark30: deepSaffron.darken30,\n orangeDark75: deepSaffron.darken75,\n orangeLight30: deepSaffron.lighten30,\n orangeLight75: deepSaffron.lighten75,\n orangeLight90: deepSaffron.lighten90,\n pink: pink.base,\n pinkDark15: pink.darken15,\n pinkDark30: pink.darken30,\n pinkDark45: pink.darken45,\n pinkDark75: pink.darken75,\n pinkLight30: pink.lighten30,\n pinkLight45: pink.lighten45,\n pinkLight75: pink.lighten75,\n pinkLight90: pink.lighten90,\n purple: purple.base,\n purpleDark15: purple.darken15,\n red: vermilion.base,\n redDark15: vermilion.darken15,\n redDark30: vermilion.darken30,\n redDark75: vermilion.darken75,\n redLight15: vermilion.lighten15,\n redLight30: vermilion.lighten30,\n redLight60: vermilion.lighten60,\n redLight75: vermilion.lighten75,\n redLight90: vermilion.lighten90,\n smalt: smalt.base,\n smaltDark75: smalt.darken75,\n smaltLight30: smalt.lighten30,\n smaltLight45: smalt.lighten45,\n smaltLight75: smalt.lighten75,\n smaltLight90: smalt.lighten90,\n violet: violet.base,\n violetDark15: violet.darken15,\n violetDark30: violet.darken30,\n violetDark45: violet.darken45,\n violetDark60: violet.darken60,\n violetDark75: violet.darken75,\n violetLight30: violet.lighten30,\n violetLight60: violet.lighten60,\n violetLight75: violet.lighten75,\n violetLight90: violet.lighten90,\n yellow: yellow.base,\n yellowDark15: yellow.darken15,\n yellowDark75: yellow.darken75,\n yellowLight60: yellow.lighten60,\n yellowLight90: yellow.lighten90,\n};\n\nexport default palette;\n"]}
@@ -0,0 +1,45 @@
1
+ declare const palette: {
2
+ violet: string;
3
+ violetLight20: string;
4
+ violetLight30: string;
5
+ violetLight90: string;
6
+ mauve: string;
7
+ mauveLight80: string;
8
+ black: string;
9
+ white: string;
10
+ greyLight95: string;
11
+ greyLight90: string;
12
+ greyLight75: string;
13
+ greyLight45: string;
14
+ greyLight30: string;
15
+ grey: string;
16
+ maasstrichtBlueLight90: string;
17
+ maasstrichtBlueLight80: string;
18
+ maasstrichtBlueLight50: string;
19
+ maasstrichtBlueLight30: string;
20
+ maasstrichtBlue: string;
21
+ pastelRed: string;
22
+ pastelRedLight20: string;
23
+ mellowApricot: string;
24
+ mellowApricotLight20: string;
25
+ emerald: string;
26
+ emeraldLight20: string;
27
+ emeraldDark20: string;
28
+ vodka: string;
29
+ vodkaLight20: string;
30
+ vermilion: string;
31
+ deepSaffron: string;
32
+ deepSaffronDark20: string;
33
+ pineGreen: string;
34
+ ultramarineBlue: string;
35
+ sonicSilver: string;
36
+ linen: string;
37
+ seashell: string;
38
+ honeydew: string;
39
+ aliceBlue: string;
40
+ antiFlashWhite: string;
41
+ apple: string;
42
+ silverChalice: string;
43
+ silverChaliceLight20: string;
44
+ };
45
+ export default palette;
@@ -0,0 +1,6 @@
1
+ import colorScales from '../colorScales';
2
+ import defaultMobilePalette from '../defaultMobilePalette';
3
+ const { violet, mauve } = colorScales;
4
+ const palette = Object.assign(Object.assign({}, defaultMobilePalette), { violet: violet.base, violetLight20: violet.lighten20, violetLight30: violet.lighten30, violetLight90: violet.lighten90, mauve: mauve.base, mauveLight80: mauve.lighten80 });
5
+ export default palette;
6
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/eBensPalette/index.ts"],"names":[],"mappings":"AAAA,OAAO,WAAW,MAAM,gBAAgB,CAAC;AACzC,OAAO,oBAAoB,MAAM,yBAAyB,CAAC;AAE3D,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,WAAW,CAAC;AAEtC,MAAM,OAAO,mCACR,oBAAoB,KAEvB,MAAM,EAAE,MAAM,CAAC,IAAI,EACnB,aAAa,EAAE,MAAM,CAAC,SAAS,EAC/B,aAAa,EAAE,MAAM,CAAC,SAAS,EAC/B,aAAa,EAAE,MAAM,CAAC,SAAS,EAE/B,KAAK,EAAE,KAAK,CAAC,IAAI,EACjB,YAAY,EAAE,KAAK,CAAC,SAAS,GAC9B,CAAC;AAEF,eAAe,OAAO,CAAC","sourcesContent":["import colorScales from '../colorScales';\nimport defaultMobilePalette from '../defaultMobilePalette';\n\nconst { violet, mauve } = colorScales;\n\nconst palette = {\n ...defaultMobilePalette,\n\n violet: violet.base,\n violetLight20: violet.lighten20,\n violetLight30: violet.lighten30,\n violetLight90: violet.lighten90,\n\n mauve: mauve.base,\n mauveLight80: mauve.lighten80,\n};\n\nexport default palette;\n"]}
@@ -0,0 +1,11 @@
1
+ import colorScales, { mixColor } from './colorScales';
2
+ import defaultWebPalette from './defaultWebPalette';
3
+ import defaultMobilePalette from './defaultMobilePalette';
4
+ import mobileVisualisationPalette from './mobileVisualisationPalette';
5
+ import eBensPalette from './eBensPalette';
6
+ import jobsPalette from './jobsPalette';
7
+ import swagPalette from './swagPalette';
8
+ import walletPalette from './walletPalette';
9
+ import workPalette from './workPalette';
10
+ export { mixColor, colorScales, defaultWebPalette, defaultMobilePalette, mobileVisualisationPalette, eBensPalette, jobsPalette, swagPalette, walletPalette, workPalette, };
11
+ export default defaultWebPalette;
@@ -0,0 +1,12 @@
1
+ import colorScales, { mixColor } from './colorScales';
2
+ import defaultWebPalette from './defaultWebPalette';
3
+ import defaultMobilePalette from './defaultMobilePalette';
4
+ import mobileVisualisationPalette from './mobileVisualisationPalette';
5
+ import eBensPalette from './eBensPalette';
6
+ import jobsPalette from './jobsPalette';
7
+ import swagPalette from './swagPalette';
8
+ import walletPalette from './walletPalette';
9
+ import workPalette from './workPalette';
10
+ export { mixColor, colorScales, defaultWebPalette, defaultMobilePalette, mobileVisualisationPalette, eBensPalette, jobsPalette, swagPalette, walletPalette, workPalette, };
11
+ export default defaultWebPalette;
12
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,WAAW,EAAE,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACtD,OAAO,iBAAiB,MAAM,qBAAqB,CAAC;AAEpD,OAAO,oBAAoB,MAAM,wBAAwB,CAAC;AAC1D,OAAO,0BAA0B,MAAM,8BAA8B,CAAC;AACtE,OAAO,YAAY,MAAM,gBAAgB,CAAC;AAC1C,OAAO,WAAW,MAAM,eAAe,CAAC;AACxC,OAAO,WAAW,MAAM,eAAe,CAAC;AACxC,OAAO,aAAa,MAAM,iBAAiB,CAAC;AAC5C,OAAO,WAAW,MAAM,eAAe,CAAC;AAExC,OAAO,EACL,QAAQ,EACR,WAAW,EACX,iBAAiB,EACjB,oBAAoB,EACpB,0BAA0B,EAC1B,YAAY,EACZ,WAAW,EACX,WAAW,EACX,aAAa,EACb,WAAW,GACZ,CAAC;AAEF,eAAe,iBAAiB,CAAC","sourcesContent":["import colorScales, { mixColor } from './colorScales';\nimport defaultWebPalette from './defaultWebPalette';\n\nimport defaultMobilePalette from './defaultMobilePalette';\nimport mobileVisualisationPalette from './mobileVisualisationPalette';\nimport eBensPalette from './eBensPalette';\nimport jobsPalette from './jobsPalette';\nimport swagPalette from './swagPalette';\nimport walletPalette from './walletPalette';\nimport workPalette from './workPalette';\n\nexport {\n mixColor,\n colorScales,\n defaultWebPalette,\n defaultMobilePalette,\n mobileVisualisationPalette,\n eBensPalette,\n jobsPalette,\n swagPalette,\n walletPalette,\n workPalette,\n};\n\nexport default defaultWebPalette;\n"]}
@@ -0,0 +1,46 @@
1
+ declare const palette: {
2
+ apple: string;
3
+ appleLight10: string;
4
+ hitPink: string;
5
+ hitPinkLight30: string;
6
+ hitPinkLight50: string;
7
+ hitPinkLight80: string;
8
+ hitPinkLight90: string;
9
+ currant: string;
10
+ black: string;
11
+ white: string;
12
+ greyLight95: string;
13
+ greyLight90: string;
14
+ greyLight75: string;
15
+ greyLight45: string;
16
+ greyLight30: string;
17
+ grey: string;
18
+ maasstrichtBlueLight90: string;
19
+ maasstrichtBlueLight80: string;
20
+ maasstrichtBlueLight50: string;
21
+ maasstrichtBlueLight30: string;
22
+ maasstrichtBlue: string;
23
+ pastelRed: string;
24
+ pastelRedLight20: string;
25
+ mellowApricot: string;
26
+ mellowApricotLight20: string;
27
+ emerald: string;
28
+ emeraldLight20: string;
29
+ emeraldDark20: string;
30
+ vodka: string;
31
+ vodkaLight20: string;
32
+ vermilion: string;
33
+ deepSaffron: string;
34
+ deepSaffronDark20: string;
35
+ pineGreen: string;
36
+ ultramarineBlue: string;
37
+ sonicSilver: string;
38
+ linen: string;
39
+ seashell: string;
40
+ honeydew: string;
41
+ aliceBlue: string;
42
+ antiFlashWhite: string;
43
+ silverChalice: string;
44
+ silverChaliceLight20: string;
45
+ };
46
+ export default palette;
@@ -0,0 +1,6 @@
1
+ import colorScales from '../colorScales';
2
+ import defaultMobilePalette from '../defaultMobilePalette';
3
+ const { apple, currant, hitPink } = colorScales;
4
+ const palette = Object.assign(Object.assign({}, defaultMobilePalette), { apple: apple.base, appleLight10: apple.lighten10, hitPink: hitPink.base, hitPinkLight30: hitPink.lighten30, hitPinkLight50: hitPink.lighten50, hitPinkLight80: hitPink.lighten80, hitPinkLight90: hitPink.lighten90, currant: currant.base });
5
+ export default palette;
6
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/jobsPalette/index.ts"],"names":[],"mappings":"AAAA,OAAO,WAAW,MAAM,gBAAgB,CAAC;AACzC,OAAO,oBAAoB,MAAM,yBAAyB,CAAC;AAE3D,MAAM,EAAE,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,GAAG,WAAW,CAAC;AAEhD,MAAM,OAAO,mCACR,oBAAoB,KAEvB,KAAK,EAAE,KAAK,CAAC,IAAI,EACjB,YAAY,EAAE,KAAK,CAAC,SAAS,EAE7B,OAAO,EAAE,OAAO,CAAC,IAAI,EACrB,cAAc,EAAE,OAAO,CAAC,SAAS,EACjC,cAAc,EAAE,OAAO,CAAC,SAAS,EACjC,cAAc,EAAE,OAAO,CAAC,SAAS,EACjC,cAAc,EAAE,OAAO,CAAC,SAAS,EAEjC,OAAO,EAAE,OAAO,CAAC,IAAI,GACtB,CAAC;AAEF,eAAe,OAAO,CAAC","sourcesContent":["import colorScales from '../colorScales';\nimport defaultMobilePalette from '../defaultMobilePalette';\n\nconst { apple, currant, hitPink } = colorScales;\n\nconst palette = {\n ...defaultMobilePalette,\n\n apple: apple.base,\n appleLight10: apple.lighten10,\n\n hitPink: hitPink.base,\n hitPinkLight30: hitPink.lighten30,\n hitPinkLight50: hitPink.lighten50,\n hitPinkLight80: hitPink.lighten80,\n hitPinkLight90: hitPink.lighten90,\n\n currant: currant.base,\n};\n\nexport default palette;\n"]}
@@ -0,0 +1,23 @@
1
+ declare const palette: {
2
+ currant: string;
3
+ sonicSilver: string;
4
+ maasstrichtBlue: string;
5
+ nightBlue: string;
6
+ darkBlue: string;
7
+ ultramarineBlue: string;
8
+ royalBlue: string;
9
+ royalBlueDark20: string;
10
+ emeraldDark20: string;
11
+ pineGreen: string;
12
+ deepSaffronDark20: string;
13
+ goldDark40: string;
14
+ apple: string;
15
+ pastelRed: string;
16
+ vermilion: string;
17
+ mauve: string;
18
+ violetLight30: string;
19
+ violet1: string;
20
+ violet: string;
21
+ scarletGum: string;
22
+ };
23
+ export default palette;
@@ -0,0 +1,26 @@
1
+ import colorScales from '../colorScales';
2
+ const { currant, sonicSilver, maasstrichtBlue, nightBlue, darkBlue, ultramarineBlue, royalBlue, emerald, pineGreen, deepSaffron, gold, apple, pastelRed, vermilion, mauve, violet1, violet, scarletGum, } = colorScales;
3
+ const palette = {
4
+ currant: currant.base,
5
+ sonicSilver: sonicSilver.base,
6
+ maasstrichtBlue: maasstrichtBlue.base,
7
+ nightBlue: nightBlue.base,
8
+ darkBlue: darkBlue.base,
9
+ ultramarineBlue: ultramarineBlue.base,
10
+ royalBlue: royalBlue.base,
11
+ royalBlueDark20: royalBlue.darken20,
12
+ emeraldDark20: emerald.darken20,
13
+ pineGreen: pineGreen.base,
14
+ deepSaffronDark20: deepSaffron.darken20,
15
+ goldDark40: gold.darken40,
16
+ apple: apple.base,
17
+ pastelRed: pastelRed.base,
18
+ vermilion: vermilion.base,
19
+ mauve: mauve.base,
20
+ violetLight30: violet.lighten30,
21
+ violet1: violet1.base,
22
+ violet: violet.base,
23
+ scarletGum: scarletGum.base,
24
+ };
25
+ export default palette;
26
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/mobileVisualisationPalette/index.ts"],"names":[],"mappings":"AAAA,OAAO,WAAW,MAAM,gBAAgB,CAAC;AAEzC,MAAM,EACJ,OAAO,EACP,WAAW,EACX,eAAe,EACf,SAAS,EACT,QAAQ,EACR,eAAe,EACf,SAAS,EACT,OAAO,EACP,SAAS,EACT,WAAW,EACX,IAAI,EACJ,KAAK,EACL,SAAS,EACT,SAAS,EACT,KAAK,EACL,OAAO,EACP,MAAM,EACN,UAAU,GACX,GAAG,WAAW,CAAC;AAEhB,MAAM,OAAO,GAAG;IACd,OAAO,EAAE,OAAO,CAAC,IAAI;IACrB,WAAW,EAAE,WAAW,CAAC,IAAI;IAC7B,eAAe,EAAE,eAAe,CAAC,IAAI;IACrC,SAAS,EAAE,SAAS,CAAC,IAAI;IACzB,QAAQ,EAAE,QAAQ,CAAC,IAAI;IACvB,eAAe,EAAE,eAAe,CAAC,IAAI;IACrC,SAAS,EAAE,SAAS,CAAC,IAAI;IACzB,eAAe,EAAE,SAAS,CAAC,QAAQ;IACnC,aAAa,EAAE,OAAO,CAAC,QAAQ;IAC/B,SAAS,EAAE,SAAS,CAAC,IAAI;IACzB,iBAAiB,EAAE,WAAW,CAAC,QAAQ;IACvC,UAAU,EAAE,IAAI,CAAC,QAAQ;IACzB,KAAK,EAAE,KAAK,CAAC,IAAI;IACjB,SAAS,EAAE,SAAS,CAAC,IAAI;IACzB,SAAS,EAAE,SAAS,CAAC,IAAI;IACzB,KAAK,EAAE,KAAK,CAAC,IAAI;IACjB,aAAa,EAAE,MAAM,CAAC,SAAS;IAC/B,OAAO,EAAE,OAAO,CAAC,IAAI;IACrB,MAAM,EAAE,MAAM,CAAC,IAAI;IACnB,UAAU,EAAE,UAAU,CAAC,IAAI;CAC5B,CAAC;AAEF,eAAe,OAAO,CAAC","sourcesContent":["import colorScales from '../colorScales';\n\nconst {\n currant,\n sonicSilver,\n maasstrichtBlue,\n nightBlue,\n darkBlue,\n ultramarineBlue,\n royalBlue,\n emerald,\n pineGreen,\n deepSaffron,\n gold,\n apple,\n pastelRed,\n vermilion,\n mauve,\n violet1,\n violet,\n scarletGum,\n} = colorScales;\n\nconst palette = {\n currant: currant.base,\n sonicSilver: sonicSilver.base,\n maasstrichtBlue: maasstrichtBlue.base,\n nightBlue: nightBlue.base,\n darkBlue: darkBlue.base,\n ultramarineBlue: ultramarineBlue.base,\n royalBlue: royalBlue.base,\n royalBlueDark20: royalBlue.darken20,\n emeraldDark20: emerald.darken20,\n pineGreen: pineGreen.base,\n deepSaffronDark20: deepSaffron.darken20,\n goldDark40: gold.darken40,\n apple: apple.base,\n pastelRed: pastelRed.base,\n vermilion: vermilion.base,\n mauve: mauve.base,\n violetLight30: violet.lighten30,\n violet1: violet1.base,\n violet: violet.base,\n scarletGum: scarletGum.base,\n};\n\nexport default palette;\n"]}
@@ -0,0 +1,51 @@
1
+ declare const palette: {
2
+ scarletGumLight20: string;
3
+ scarletGumLight30: string;
4
+ scarletGumLight50: string;
5
+ scarletGumLight80: string;
6
+ scarletGumLight90: string;
7
+ scarletGum: string;
8
+ violetLight30: string;
9
+ violetLight50: string;
10
+ violetLight80: string;
11
+ violetLight90: string;
12
+ violet: string;
13
+ mauve: string;
14
+ black: string;
15
+ white: string;
16
+ greyLight95: string;
17
+ greyLight90: string;
18
+ greyLight75: string;
19
+ greyLight45: string;
20
+ greyLight30: string;
21
+ grey: string;
22
+ maasstrichtBlueLight90: string;
23
+ maasstrichtBlueLight80: string;
24
+ maasstrichtBlueLight50: string;
25
+ maasstrichtBlueLight30: string;
26
+ maasstrichtBlue: string;
27
+ pastelRed: string;
28
+ pastelRedLight20: string;
29
+ mellowApricot: string;
30
+ mellowApricotLight20: string;
31
+ emerald: string;
32
+ emeraldLight20: string;
33
+ emeraldDark20: string;
34
+ vodka: string;
35
+ vodkaLight20: string;
36
+ vermilion: string;
37
+ deepSaffron: string;
38
+ deepSaffronDark20: string;
39
+ pineGreen: string;
40
+ ultramarineBlue: string;
41
+ sonicSilver: string;
42
+ linen: string;
43
+ seashell: string;
44
+ honeydew: string;
45
+ aliceBlue: string;
46
+ antiFlashWhite: string;
47
+ apple: string;
48
+ silverChalice: string;
49
+ silverChaliceLight20: string;
50
+ };
51
+ export default palette;
@@ -0,0 +1,6 @@
1
+ import colorScales from '../colorScales';
2
+ import defaultMobilePalette from '../defaultMobilePalette';
3
+ const { scarletGum, violet1, mauve } = colorScales;
4
+ const palette = Object.assign(Object.assign({}, defaultMobilePalette), { scarletGumLight20: scarletGum.lighten20, scarletGumLight30: scarletGum.lighten30, scarletGumLight50: scarletGum.lighten50, scarletGumLight80: scarletGum.lighten80, scarletGumLight90: scarletGum.lighten90, scarletGum: scarletGum.base, violetLight30: violet1.lighten30, violetLight50: violet1.lighten50, violetLight80: violet1.lighten80, violetLight90: violet1.lighten90, violet: violet1.base, mauve: mauve.base });
5
+ export default palette;
6
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/swagPalette/index.ts"],"names":[],"mappings":"AAAA,OAAO,WAAW,MAAM,gBAAgB,CAAC;AACzC,OAAO,oBAAoB,MAAM,yBAAyB,CAAC;AAE3D,MAAM,EAAE,UAAU,EAAE,OAAO,EAAE,KAAK,EAAE,GAAG,WAAW,CAAC;AAEnD,MAAM,OAAO,mCACR,oBAAoB,KAEvB,iBAAiB,EAAE,UAAU,CAAC,SAAS,EACvC,iBAAiB,EAAE,UAAU,CAAC,SAAS,EACvC,iBAAiB,EAAE,UAAU,CAAC,SAAS,EACvC,iBAAiB,EAAE,UAAU,CAAC,SAAS,EACvC,iBAAiB,EAAE,UAAU,CAAC,SAAS,EACvC,UAAU,EAAE,UAAU,CAAC,IAAI,EAE3B,aAAa,EAAE,OAAO,CAAC,SAAS,EAChC,aAAa,EAAE,OAAO,CAAC,SAAS,EAChC,aAAa,EAAE,OAAO,CAAC,SAAS,EAChC,aAAa,EAAE,OAAO,CAAC,SAAS,EAChC,MAAM,EAAE,OAAO,CAAC,IAAI,EAEpB,KAAK,EAAE,KAAK,CAAC,IAAI,GAClB,CAAC;AAEF,eAAe,OAAO,CAAC","sourcesContent":["import colorScales from '../colorScales';\nimport defaultMobilePalette from '../defaultMobilePalette';\n\nconst { scarletGum, violet1, mauve } = colorScales;\n\nconst palette = {\n ...defaultMobilePalette,\n\n scarletGumLight20: scarletGum.lighten20,\n scarletGumLight30: scarletGum.lighten30,\n scarletGumLight50: scarletGum.lighten50,\n scarletGumLight80: scarletGum.lighten80,\n scarletGumLight90: scarletGum.lighten90,\n scarletGum: scarletGum.base,\n\n violetLight30: violet1.lighten30,\n violetLight50: violet1.lighten50,\n violetLight80: violet1.lighten80,\n violetLight90: violet1.lighten90,\n violet: violet1.base,\n\n mauve: mauve.base,\n};\n\nexport default palette;\n"]}
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es6.d.ts","../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/values.js/dist/index.d.ts","../src/colorScales/mixColor.ts","../src/colorScales/createColorScales.ts","../src/colorScales/index.ts","../src/defaultWebPalette/index.ts","../src/defaultMobilePalette/index.ts","../src/mobileVisualisationPalette/index.ts","../src/eBensPalette/index.ts","../src/jobsPalette/index.ts","../src/swagPalette/index.ts","../src/walletPalette/index.ts","../src/workPalette/index.ts","../src/index.ts","../../../node_modules/@types/aria-query/index.d.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@types/babel__core/node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/events/index.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/base.d.ts","../../../node_modules/@types/node/ts3.2/fs.d.ts","../../../node_modules/@types/node/ts3.2/util.d.ts","../../../node_modules/@types/node/ts3.2/globals.d.ts","../../../node_modules/@types/node/ts3.2/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/@types/keyv/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/responselike/index.d.ts","../../../node_modules/@types/cacheable-request/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/ms/index.d.ts","../../../node_modules/@types/debug/index.d.ts","../../../node_modules/@types/decompress/index.d.ts","../../../node_modules/@types/got/index.d.ts","../../../node_modules/@types/download/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/node_modules/@types/mime/index.d.ts","../../../node_modules/@types/express/node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/fs-extra/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/hammerjs/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/hast/index.d.ts","../../../node_modules/@types/history/DOMUtils.d.ts","../../../node_modules/@types/history/createBrowserHistory.d.ts","../../../node_modules/@types/history/createHashHistory.d.ts","../../../node_modules/@types/history/createMemoryHistory.d.ts","../../../node_modules/@types/history/LocationUtils.d.ts","../../../node_modules/@types/history/PathUtils.d.ts","../../../node_modules/@types/history/index.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/@types/react/node_modules/csstype/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/hoist-non-react-statics/index.d.ts","../../../node_modules/@types/html-minifier-terser/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/is-hotkey/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/jest-diff/build/cleanupSemantic.d.ts","../../../node_modules/jest-diff/build/types.d.ts","../../../node_modules/jest-diff/build/diffLines.d.ts","../../../node_modules/jest-diff/build/printDiffs.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/pretty-format/build/types.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/lodash/ts3.1/common/common.d.ts","../../../node_modules/@types/lodash/ts3.1/common/array.d.ts","../../../node_modules/@types/lodash/ts3.1/common/collection.d.ts","../../../node_modules/@types/lodash/ts3.1/common/date.d.ts","../../../node_modules/@types/lodash/ts3.1/common/function.d.ts","../../../node_modules/@types/lodash/ts3.1/common/lang.d.ts","../../../node_modules/@types/lodash/ts3.1/common/math.d.ts","../../../node_modules/@types/lodash/ts3.1/common/number.d.ts","../../../node_modules/@types/lodash/ts3.1/common/object.d.ts","../../../node_modules/@types/lodash/ts3.1/common/seq.d.ts","../../../node_modules/@types/lodash/ts3.1/common/string.d.ts","../../../node_modules/@types/lodash/ts3.1/common/util.d.ts","../../../node_modules/@types/lodash/ts3.1/index.d.ts","../../../node_modules/@types/mdast/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/parse5/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/q/index.d.ts","../../../node_modules/@types/react-dom/index.d.ts","../../../node_modules/@types/react-native/globals.d.ts","../../../node_modules/@types/react-native/legacy-properties.d.ts","../../../node_modules/@types/react-native/BatchedBridge.d.ts","../../../node_modules/@types/react-native/Devtools.d.ts","../../../node_modules/@types/react-native/LaunchScreen.d.ts","../../../node_modules/@types/react-native/index.d.ts","../../../node_modules/@types/react-native-vector-icons/node_modules/@types/react-native/globals.d.ts","../../../node_modules/@types/react-native-vector-icons/node_modules/@types/react-native/legacy-properties.d.ts","../../../node_modules/@types/react-native-vector-icons/node_modules/@types/react-native/BatchedBridge.d.ts","../../../node_modules/@types/react-native-vector-icons/node_modules/@types/react-native/Codegen.d.ts","../../../node_modules/@types/react-native-vector-icons/node_modules/@types/react-native/Devtools.d.ts","../../../node_modules/@types/react-native-vector-icons/node_modules/@types/react-native/LaunchScreen.d.ts","../../../node_modules/@types/react-native-vector-icons/node_modules/@types/react-native/index.d.ts","../../../node_modules/@types/react-native-vector-icons/Icon.d.ts","../../../node_modules/@types/react-native-vector-icons/index.d.ts","../../../node_modules/@types/react-router/node_modules/@types/history/DOMUtils.d.ts","../../../node_modules/@types/react-router/node_modules/@types/history/createBrowserHistory.d.ts","../../../node_modules/@types/react-router/node_modules/@types/history/createHashHistory.d.ts","../../../node_modules/@types/react-router/node_modules/@types/history/createMemoryHistory.d.ts","../../../node_modules/@types/react-router/node_modules/@types/history/LocationUtils.d.ts","../../../node_modules/@types/react-router/node_modules/@types/history/PathUtils.d.ts","../../../node_modules/@types/react-router/node_modules/@types/history/index.d.ts","../../../node_modules/@types/react-router/index.d.ts","../../../node_modules/@types/react-router-config/index.d.ts","../../../node_modules/@types/react-router-dom/index.d.ts","../../../node_modules/@types/react-table/index.d.ts","../../../node_modules/@types/resolve/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/sax/index.d.ts","../../../node_modules/@types/scheduler/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/sockjs/index.d.ts","../../../node_modules/@types/source-list-map/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/styled-components/index.d.ts","../../../node_modules/@types/tapable/index.d.ts","../../../node_modules/@types/testing-library__jest-dom/index.d.ts","../../../node_modules/source-map/source-map.d.ts","../../../node_modules/@types/uglify-js/index.d.ts","../../../node_modules/@types/webpack/node_modules/anymatch/index.d.ts","../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../../node_modules/@types/webpack-sources/lib/Source.d.ts","../../../node_modules/@types/webpack-sources/lib/CompatSource.d.ts","../../../node_modules/@types/webpack-sources/lib/ConcatSource.d.ts","../../../node_modules/@types/webpack-sources/lib/OriginalSource.d.ts","../../../node_modules/@types/webpack-sources/lib/PrefixSource.d.ts","../../../node_modules/@types/webpack-sources/lib/RawSource.d.ts","../../../node_modules/@types/webpack-sources/lib/ReplaceSource.d.ts","../../../node_modules/@types/webpack-sources/lib/SizeOnlySource.d.ts","../../../node_modules/@types/webpack-sources/lib/SourceMapSource.d.ts","../../../node_modules/@types/webpack-sources/lib/index.d.ts","../../../node_modules/@types/webpack-sources/lib/CachedSource.d.ts","../../../node_modules/@types/webpack-sources/index.d.ts","../../../node_modules/@types/webpack/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts","../../../node_modules/@types/yauzl/index.d.ts"],"fileInfos":["721cec59c3fef87aaf480047d821fb758b3ec9482c4129a54631e6e25e432a31",{"version":"f20c05dbfe50a208301d2a1da37b9931bce0466eb5a1f4fe240971b4ecc82b67","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"9b087de7268e4efc5f215347a62656663933d63c0b1d7b624913240367b999ea","affectsGlobalScope":true},{"version":"3260e3386d9535b804205bdddb5618a9a27735bd22927f48ad54363abcd23d45","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"55f400eec64d17e888e278f4def2f254b41b89515d3b88ad75d5e05f019daddd","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"775d9c9fd150d5de79e0450f35bc8b8f94ae64e3eb5da12725ff2a649dccc777","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"14a84fbe4ec531dcbaf5d2594fd95df107258e60ae6c6a076404f13c3f66f28e","302e29b1fd2bce31325b71fd4fa9344bc992eadad3d359d241a4ea4292590360","638026fabc65444c7d11ebbb2be870c7e58afe7a6c45cee0e4d7af7e7785a165","f57a4ee8a0191def886a28c2c061dbc5e632095b5ce8dceaad007978deef4214","7b414e43b800c8eaf81394025328dff30a53dc55c5b5c6bc00a93dcc4fd514a2","e167e99514397dd430df752add2e4f38f0609b8776b1912c9be0d215388250d6","d7adb3ae52688210fd8c44b68c3b2509b2835417e4f5ee1f10cd4afae163b44c","e39c03ad636aac0d091e99220daf63ad8ffcfd2538010985d6e0901200588e7e","6799d13c902fc646afde3b8146144dd3a31f241a893db4b361a2ae84bcd5bc65","d6e273d121ee804eaed128a286acb5d7f3e15d01cfb00f84884e0114fa6fd7d2","a768fe668552bb97582cbb80c8e955eca61648dec2ecb235deb8ae70ecfb3aff","9f0f35ed8c362aafc1b0ec03ce3700dd4e5d3c6ba073d5176f9c3cdc5c4f95c0","9c71302b95b8c5ef67cf0db8aed94c593ae84c270f754015ad777cfdf865a561","ed597d9777aa7b9640d7b6b0e85f0d4aaea6b4afad22ff2e906b5326c282e781","e51e34b4d8bd97569a7101c1b77234f6a1272cbb5bd50ed649b1da3f71070300","e8c8045d31df75a2031be9d0e96274b26a394f48e6eac6a7cbb1b778d16d74ac","b71b7d1e18c61f41ed9b3917a6ccf2929022278154d9f55e2b8990549c1826a9","56dede90729ef85351f132d66e05510851211d627e2f2c6621475d4f7938f365","56dede90729ef85351f132d66e05510851211d627e2f2c6621475d4f7938f365","3e0a34f7207431d967dc32d593d1cda0c23975e9484bc8895b39d96ffca4a0d8","3db699e002d857ea05942e0b19b5091919fa5d01c21ea789c74763c9a81bb28f","d0b0a00cf31968a33baeaadf974ce4e5e7edf58cea5288765293f41ba5e72b3a",{"version":"6cf62fbc792aa81fa62f99dab5cc692c5315ecd5da09dd35f1ccc82778c4d5bc","affectsGlobalScope":true},"7860312f33f0cf2c93500787d02c4cc43ea3d0c080d4781095ac7715d5da3316","1305b079a057355f496bdde048716189178877a6b4fe0e9267a46af67f8c7561","61215c1a376bbe8f51cab4cc4ddbf3746387015113c37a84d981d4738c21b878","400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935","163b9cd8ff3c8f1d4a7fd110099bb5d606a389c58233562516d70ac2d7e0ec7c","ce629710e5e58724902b753212e97861fd73e2aa09f5d88cb6d55dc763cf8c8a","525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d","8ce9418c78d3c1fb703ddbe38c936d34a989ba278666979826590dfa0772a424","b3f81dd4989859ead76eccc72ddbec4054be6a3f929f10b4d5152dfc7056aa3d","7954df44c35d39b851b996fdc1af0a252e4e23f862abfef388a058203bb94c30","ef226a42de7022eacdfa0f15aabf73b46c47af93044c8ebfab8aa8e3cf6c330c","d5b7c8819ce1bd31a45f7675309e145ec28e3aa1b60a8e0637fd0e8916255baa","3ad728027671c2c3c829e21803f8d7a15b29d808293644d50d928213280c072d","73960df01a343af100864718ac28699edf0a108d742270b8709df2f2c60192ce","d5470fad800f025be0c4bd1b14c013ea5b4aeec90e53ab0e2703a8fe01f292b3","ecf9856b1bddabca617353ec5ae8389b91e5055c8f0fbb7f3dae001db6cce4bb","dacbe08610729f6343ea9880ea8e737c6d7a6efa4a318d8f6acaf85db4aceed6","4218ced3933a31eed1278d350dd63c5900df0f0904f57d61c054d7a4b83dbe4c","03394bf8deb8781b490ae9266a843fbdf00647947d79e25fcbf1d89a9e9c8a66","358398fe4034395d85c87c319cca7a04001434b13dc68d067481ecb374385bfc","1a6016bd905855b2b45881e9edbd7ab8c7175f8bcbb711ff06989c4bcdc75486","5fb30076f0e0e5744db8993648bfb67aadd895f439edad5cce039127a87a8a36","27ef4001526ee9d8afa57687a60bb3b59c52b32d29db0a2260094ab64726164f",{"version":"0e0d58f5e90c0a270dac052b9c5ad8ccdfc8271118c2105b361063218d528d6e","affectsGlobalScope":true},"30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1","5b34786b5d59b4e627c76f1294a00b5e92260a31ca87b29d9b7cb9acd3ba1acc","e1045d32a6a59dbcbe0ed2edddc6568221acc299ac68d92284153e7c00b39d51","65dbe15ed8a8ed5d4707a63868178dc38111cfc06de28a2e50713ca017a9c157","735c23d34f165346d39c45817cb2557adf5548676687e6afbbf54a6e96731dec","7e62aac2cc9c0710d772047ad89e8d7117f52592c791eb995ce1f865fedab432","b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9","af5f07deb33b2fb92ef67ea5ebb69670b81c74908b646e7cd4361a331d2a558a","978aecd2e6bc2ac094e9a35eda98ff8586713857b3655e7c98ca5ed8f7d50662","df905913ad47e24b6cb41d33f0c1f500bf9c4befe4325413a7644c9eb1e7965c","1e3da92862604b1f7a32265169f9aa712c4567742d42597704e04ae3e07019e7","bf237fb2ca1ac62fde63e5f8178a9030e4d6b11987744007272f03a9deec6f76","4407bd5f1d6f748590ba125195eb1d7a003c2de2f3b057456d3ac76a742d2561","bf244a366e8ee68acda125761c6e337c8795b37eef05947d62f89b584de926b3","7780573ed8387aaadcc61d87f3d60d77dabf1e060da252dc72ab1d73401988bb","f409183966a1dd93d3a9cd1d54fbeb85c73101e87cd5b19467c5e37b252f3fd8","6622f76993bdfeaacb947ba7c4cf26f2e5c5194194d02d792c3cba4174cd8fce","1ed55651f38540dba21f4a864bd89834ddb552446dce8c8a5f9dc0b44ce0b024","4f54f0a9dd3b644c99ec32b32f8804d5978bc854799b228ae9c467bf3c84c64c",{"version":"4926e99d2ad39c0bbd36f2d37cc8f52756bc7a5661ad7b12815df871a4b07ba1","affectsGlobalScope":true},"7c7dabe6de2f88a1b4a4d9a15479c2a99b6f5864b434b9d960fc312ba9498c0a","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","9e7f7ac4d964992cf1b77612ca07e5695821881aa1a9acb0ef0509f192a5ea23","0bf440ab914e79e890cb15e5ffacb5e18bec678338b3eab069a5829d3d5c96e3","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","73c05cca1bb5aa8e93efd089af51643b7ff005e47064a0e624a74ee20480a2eb","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49","affectsGlobalScope":true},"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41","825080a15a8b14b40ac8c7f90c12a5a11efb0b3857dc02195eae2a3dc98aea14","8f76c6bfb627f38ab44c35d1915dfa2d24d4b96307d9b6cc56df5bba246a3ab6","265aa5dae437b70cc82626488e3e68747e80fddeccc89ef47205b4dcaf864f47",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","89ccbe04e737ce613f5f04990271cfa84901446350b8551b0555ddf19319723b","8566fa84085caa46340393b1704ecd368491918fb45bd688d6e89736aec73a2f","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","c8fda835044ca50d9eacb72ea0d354fe22f321dd9eb0e424f294fe1806ce6dfb","f47887b61c6cf2f48746980390d6cb5b8013518951d912cfb37fe748071942be","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","6de408de17cb0e3fa3a5e3d0f79bd104848d98dbfa72e92fddfa1a4aa3d8393c","1d1e6bd176eee5970968423d7e215bfd66828b6db8d54d17afec05a831322633","d852d6282c8dc8156d26d6bda83ab4bde51fee05ba2fe0ecdc165ddda009d3ee","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba",{"version":"3e947c8dc536e569ceb62a7cb0255e4866fd54dd5d35d21e49c7e755f5c134a6","affectsGlobalScope":true},"1320ee42b30487cceb6da9f230354fc34826111f76bf12f0ad76c717c12625b0","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0",{"version":"271cde49dfd9b398ccc91bb3aaa43854cf76f4d14e10fed91cbac649aa6cbc63","affectsGlobalScope":true},"2bcecd31f1b4281710c666843fc55133a0ee25b143e59f35f49c62e168123f4b","a6273756fa05f794b64fe1aff45f4371d444f51ed0257f9364a8b25f3501915d","9c4e644fe9bf08d93c93bd892705842189fe345163f8896849d5964d21b56b78","25d91fb9ed77a828cc6c7a863236fb712dafcd52f816eec481bd0c1f589f4404","4cd14cea22eed1bfb0dc76183e56989f897ac5b14c0e2a819e5162eafdcfe243","8d32432f68ca4ce93ad717823976f2db2add94c70c19602bf87ee67fe51df48b",{"version":"d90b8dc8412ca005c4992e2b5c94d836a8234d32a6ec05d78ec725bbb634c5fb","affectsGlobalScope":true},"9e89b1bb8360de8b984781243a920ac631ac5261cf7bf882e556c6c7dbf2e4ee","a7e32dcb90bf0c1b7a1e4ac89b0f7747cbcba25e7beddc1ebf17be1e161842ad",{"version":"2893daa576cf34d3375368ecdc8ff844d85e3634904ff4ded6d3c9f210e9b00b","affectsGlobalScope":true},"bfe1b52cf71aea9bf8815810cc5d9490fa9617313e3d3c2ee3809a28b80d0bb4","ee65fe452abe1309389c5f50710f24114e08a302d40708101c4aa950a2a7d044","e4b4326b61261bf5ffd6de8b4825f00eb11ebb89a51bd92663dd6e660abf4210","b73ea413df9e83ca42d28742f2461976e527b531da9a0093e0b7677411629686","9e951ec338c4232d611552a1be7b4ecec79a8c2307a893ce39701316fe2374bd","70c61ff569aabdf2b36220da6c06caaa27e45cd7acac81a1966ab4ee2eadc4f2","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","f014d6d053cb1840965952268a589c9e2a74d66c8c88286562d5699350e28e19","66851b263230decb3684072b2cb777f70ea3e52d4489b88f78f185618d4d398e",{"version":"e9f2cdc4e98e73a606ff68c470a8cb4f23cd638c47649d71b90a2d9413102080","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","4025cf62742c5bb3d383c8a62342481622c87e3397ea5e7b7baab18b9efd5798","c21830111d49a5cd7a9f384370db5b41c659d045fe920bcac1cc9f507c88125d","0c75b204aed9cf6ff1c7b4bed87a3ece0d9d6fc857a6350c0c95ed0c38c814e8","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","035b95793288bf4457a2b80bfe9b7500a29324ad62adcf9991277198e8833096","c2d47e5668f89ed8768d306919c42bb88d50d4029d68f58343141360895cfcc0","65648639567d214f62c1b21d200c852807e68bdb08311f95ab6f526ef5b98995","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","c95aec6e01c1b18c75c09d18767352761c00394e4864d4b7dd29386a1728eae9","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","e34f3f6159b1e23de9bb5521382795aaa5aaed6f53b4702e70a2ec45bc76ddb5","c84107ce3522799b7a821463b1743ef230669093b2746afd1e817fcbb5885e67",{"version":"bbf144d4354e2aaa6439f32761f3ee798cc68d1600adab6e2a596f25269f106d","affectsGlobalScope":true},"9a6d65d77455efaaaeff945bea30c38b8fe0922b807ba45cd23792392f1bfe76","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","c555dd691dd05955e99cd93dd99c685a65e5287813ccb5e6bfde951183248e26","9d9e658d1d5b805562749ce383ef8c67ccb796394d8734d9c138788d7dab6ee3","57427a9a368f8f0ee4ce03c36a762e19166756b95ab688948b29be553b24a78a","1923cbe22fe3f5005de4192f014b558a88e0fdec16726bb4f94ac76dd1a82c92",{"version":"4452f559618410bd9950973795fa657dbf3411cdc55c4c3460c5bab189903863","affectsGlobalScope":true},"9e9df0ee50fc117b15fd7815162a41c46e95996b513e4107b433d3e37dbe2ce8",{"version":"efd32b1ab5e3897f64ed3d0f236657c3c9c7bcc669449e608ebee1ad9dbe396a","affectsGlobalScope":true},"7fb3279c4bf36d993b1e8b339cded5908f7b2ec1b6e0ac2feaa842b5b6b143f1","234b97ac9af46707f2315ff395a9b340d37b7dbc8290d91f5d6bd97189d220f3",{"version":"6cb5e3d3f0babcdca611a20b4bd29f0e604a0ae6bb618da4452d299876cb493d","affectsGlobalScope":true},{"version":"a76bbd53b4eafb985c6200962d1c9ec1ded8fa80c06ade7488be971e9eaa0e2d","affectsGlobalScope":true},"840dd3c9c22dc9f99d2cd7861d105f2275ba34b40c01a65f3a0f33b07b09ab4b",{"version":"efd32b1ab5e3897f64ed3d0f236657c3c9c7bcc669449e608ebee1ad9dbe396a","affectsGlobalScope":true},"ec8c27fd889adbf6a774c7915d25030f19adf16143bce0cbc42b566762e0b5a9","7fb3279c4bf36d993b1e8b339cded5908f7b2ec1b6e0ac2feaa842b5b6b143f1","234b97ac9af46707f2315ff395a9b340d37b7dbc8290d91f5d6bd97189d220f3",{"version":"ec098916e691815f53433757e1b42b2c759b244027341ce52f51f68a4290cedc","affectsGlobalScope":true},"3e5d9ab93e6db6abcbec2d039dc6b05a36d85b569977a61394209b8fb699893f","ebbaa442c3363dd9d5dccef31e3be3353378f716ef3ce989a0f30f7b6453ac64",{"version":"dc49082466ff7e61cfbaf146f106a59274dbb95f726ed1e22a54375f82992953","affectsGlobalScope":true},"9b7ecef2a99fc603b20ce8524a3459d260fa8b128f4dd71c8718e93ded32023d","fe2cd61bbf91d54ff07a1cd0174dd9338c1fd3f6069ae2a6119136aef817a9c8","9f96df319156b4debf90395c415c53f0080a4d9db97966fe69396760217413e0","7c076b2d16b2254072943e10999e08a5a650e0c6621ba04a501fc9e3f03f7371","bca166983a1b4bea5aff7ac14949ed25c065d0a006990136b75c3f4690c4e93c","577eb25bca27a3a4ddd46b57f28cd83211501bfbc4786bd65639b951f20cff82","34ec771f7f52c8f7f7d1a9a0999d7f00d1f05e36ca1134b1a15e12f82b9fda1c","2ffcb0c75e294706a4d425ee3ead87826a4cda729fa901c6c605e68948adaf55","8017277c3843df85296d8730f9edf097d68d7d5f9bc9d8124fcacf17ecfd487e","3aadf150a6eca57103ba553a50281525e574866f723a2e84e0e5d15390662570","8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","8b3ba0006858bfefa8fd045d446377e0fb1738baa819a1f7e4a520644a0dc131","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","d9e55d93aa33fad61bd5c63800972d00ba8879ec5d29f6f3bce67d16d86abc33","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","c544d81603149987796b24cca297c965db427b84b2580fb27e52fb37ddc1f470","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","9eb2875a1e4c583066af7d6194ea8162191b2756e5d87ccb3c562fdf74d06869","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","6eef5113135a0f2bbac8259909a5bbb7666bcde022c28f4ab95145623cbe1f72","058b8dd97b7c67b6bf33e7bda7b1e247b019b675d4b6449d14ac002091a8b4f8","89c8a7b88c378663a8124664f2d9b8c2887e186b55aa066edf6d67177ca1aa04","5a30ba65ad753eb2ef65355dbb3011b28b192cb9df2ef0b5f595b51ca7faf353","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","86d425f7fcd8d100dafa6286cc289af88cbb639ecbdbd25c3018a8f0f7b09fe5","9795e0a3a45d5b6f1a791ee54b7c8b58bc931e8900966cea2dff9c5bae56073b","5890be29879d02424b7654f40592915189034948f7a18c5ad121c006d4e92811","0ab49086f10c75a1cb3b18bffe799dae021774146d8a2d5a4bb42dda67b64f9b","81c77839e152b8f715ec67b0a8b910bcc2d6cf916794c3519f8798c40efd12ac","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","464843c00fb3dd4735b28255c5c9fe713f16b8e47a3db09ba1647687440f7aef","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","d0f6d36b2d86f934560c48d8bfdc7ab60c67cfb2ab6dc1916706aa68e83d6dc2","acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57","0a6f28e1d77b99b0ef7da2f0bf50f301ea8a7eb7b4f573e458e725452a477bd2",{"version":"6839e1779e1f61e0ed62b1ca3ff7e74dc70479a5455077a38434d0e404103c28","affectsGlobalScope":true},"3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67",{"version":"40bbeaccf39d6ad00da30e96553f0c4aa1b8a87535393c7fdf939170b639c95d","affectsGlobalScope":true},"2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","a2b7081f3e83eaa6b7140f1d6210576bfa29d064cbfe482085bf3e4d4c715284","4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","b2f006ee835f315d01c43c0f5d9e9ad78a5870b380899877b32a33078d065dbd","b4358a89fcd9c579f84a6c68e2ce44ca91b07e4db3f8f403c2b7a72c1a1e04b6","e65fca93c26b09681d33dad7b3af32ae42bf0d114d859671ffed30a92691439c","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438","3845d3b64286c12c60d39fc90ac1cc5e47cbc951530658d2567d578b2faa1f26"],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"declarationMap":false,"emitDeclarationOnly":false,"esModuleInterop":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitHelpers":true,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noPropertyAccessFromIndexSignature":false,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"target":2},"fileIdsList":[[70,92,98,99,187,188,189,193,195,196],[49,50,51,53,54,70,92,98,99,187,188,189,193,195,196],[49,70,92,98,99,187,188,189,193,195,196],[49,51,70,92,98,99,187,188,189,193,195,196],[70,71,92,98,99,101,102,187,188,189,193,195,196],[66,70,92,98,99,101,187,188,189,193,195,196],[69,70,71,91,92,98,99,101,105,106,107,187,188,189,193,195,196],[70,91,92,98,99,101,111,187,188,189,193,195,196],[70,71,92,98,99,101,187,188,189,193,195,196],[70,92,98,99,113,187,188,189,193,195,196],[70,92,98,99,101,187,188,189,193,195,196],[70,85,92,98,99,101,115,116,187,188,189,193,195,196],[70,92,98,99,120,121,187,188,189,193,195,196],[70,92,98,99,118,119,120,187,188,189,193,195,196],[69,70,71,92,98,99,101,109,110,187,188,189,193,195,196],[70,92,98,99,103,110,111,124,126,187,188,189,193,195,196],[70,71,92,98,99,101,125,187,188,189,193,195,196],[69,70,92,98,99,101,129,187,188,189,193,195,196],[70,71,73,85,91,92,98,99,101,187,188,189,193,195,196],[70,92,98,99,133,187,188,189,193,195,196],[70,92,98,99,141,187,188,189,193,195,196],[70,92,98,99,135,141,187,188,189,193,195,196],[70,92,98,99,136,137,138,139,140,187,188,189,193,195,196],[70,92,98,99,145,187,188,189,193,195,196],[69,70,71,73,76,85,91,92,98,99,101,187,188,189,193,195,196],[70,92,98,99,150,187,188,189,193,195,196],[70,92,98,99,151,187,188,189,193,195,196],[70,92,98,99,157,159,187,188,189,193,195,196],[69,70,92,98,99,101,187,188,189,193,195,196],[70,92,98,99,162,164,165,166,167,168,169,170,171,172,173,174,187,188,189,193,195,196],[70,92,98,99,162,163,165,166,167,168,169,170,171,172,173,174,187,188,189,193,195,196],[70,92,98,99,163,164,165,166,167,168,169,170,171,172,173,174,187,188,189,193,195,196],[70,92,98,99,162,163,164,166,167,168,169,170,171,172,173,174,187,188,189,193,195,196],[70,92,98,99,162,163,164,165,167,168,169,170,171,172,173,174,187,188,189,193,195,196],[70,92,98,99,162,163,164,165,166,168,169,170,171,172,173,174,187,188,189,193,195,196],[70,92,98,99,162,163,164,165,166,167,169,170,171,172,173,174,187,188,189,193,195,196],[70,92,98,99,162,163,164,165,166,167,168,170,171,172,173,174,187,188,189,193,195,196],[70,92,98,99,162,163,164,165,166,167,168,169,171,172,173,174,187,188,189,193,195,196],[70,92,98,99,162,163,164,165,166,167,168,169,170,172,173,174,187,188,189,193,195,196],[70,92,98,99,162,163,164,165,166,167,168,169,170,171,173,174,187,188,189,193,195,196],[70,92,98,99,162,163,164,165,166,167,168,169,170,171,172,174,187,188,189,193,195,196],[70,92,98,99,162,163,164,165,166,167,168,169,170,171,172,173,187,188,189,193,195,196],[70,71,91,92,98,99,101,176,177,187,188,189,193,195,196],[56,57,58,59,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,98,99,187,188,189,193,195,196],[69,70,76,85,92,98,99,187,188,189,193,195,196],[61,69,70,76,92,98,99,187,188,189,193,195,196],[70,85,92,98,99,187,188,189,193,195,196],[67,69,70,76,92,98,99,187,188,189,193,195,196],[69,70,92,98,99,187,188,189,193,195,196],[69,85,91,92,98,99,187,188,189,193,195,196],[69,70,76,85,91,92,98,99,187,188,189,193,195,196],[69,70,71,76,85,88,91,92,98,99,187,188,189,193,195,196],[69,70,71,88,91,92,98,99,187,188,189,193,195,196],[67,69,70,85,92,98,99,187,188,189,193,195,196],[58,70,92,98,99,187,188,189,193,195,196],[70,90,92,98,99,187,188,189,193,195,196],[69,70,85,92,98,99,187,188,189,193,195,196],[70,83,92,94,98,99,187,188,189,193,195,196],[65,67,70,76,85,92,98,99,187,188,189,193,195,196],[70,92,99,187,188,189,193,195,196],[56,70,92,98,99,187,188,189,193,195,196],[70,92,97,98,99,100,187,188,189,193,195,196],[70,92,98,187,188,189,193,195,196],[70,76,92,98,99,187,188,189,193,195,196],[70,82,92,98,99,187,188,189,193,195,196],[70,98,99,187,188,189,193,195,196],[69,70,85,92,94,98,99,187,188,189,193,195,196],[70,92,98,99,145,187,188,189,192,193,195,196,197],[70,92,98,99,145,187,188,189,192,193,195,196,197,198],[70,92,98,99,187,188,189,195,196],[70,92,98,99,187,188,189,192,193,195,196,197],[70,92,98,99,187,188,189,193,195],[70,92,98,99,145,187,188,189,191,192,193,194,195,196],[70,92,98,99,188,189,193,195,196],[70,92,98,99,187,188,193,195,196],[70,92,98,99,145,185,186,187,188,189,193,195,196],[70,92,98,99,186,187,188,189,190,193,195,196],[70,92,98,99,141,145,187,188,189,193,195,196,207],[70,92,98,99,145,187,188,189,193,195,196,206],[70,92,98,99,187,188,189,193,195,196,206],[70,92,98,99,187,188,189,193,195,196,200,206],[70,92,98,99,187,188,189,193,195,196,201,202,203,204,205],[70,92,98,99,142,143,144,187,188,189,193,195,196],[70,71,85,92,98,99,101,187,188,189,193,195,196],[70,85,92,98,99,101,187,188,189,193,195,196],[70,92,98,99,187,188,189,193,195,196,215,254],[70,92,98,99,187,188,189,193,195,196,215,239,254],[70,92,98,99,187,188,189,193,195,196,254],[70,92,98,99,187,188,189,193,195,196,215],[70,92,98,99,187,188,189,193,195,196,215,240,254],[70,92,98,99,187,188,189,193,195,196,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253],[70,92,98,99,187,188,189,193,195,196,240,254],[70,92,98,99,127,187,188,189,193,195,196],[70,71,92,98,99,101,123,187,188,189,193,195,196],[70,92,98,99,145,146,187,188,189,193,195,196,259],[70,92,98,99,160,187,188,189,193,195,196],[70,92,98,99,187,188,189,193,195,196,263],[70,92,98,99,101,187,188,189,193,195,196,267,268,269,270,271,272,273,274,275,276,277],[70,92,98,99,187,188,189,193,195,196,266,267,276],[70,92,98,99,187,188,189,193,195,196,267,276],[70,92,98,99,187,188,189,193,195,196,257,266,267,276],[70,92,98,99,187,188,189,193,195,196,267],[65,70,92,98,99,187,188,189,193,195,196,266,276],[70,92,98,99,187,188,189,193,195,196,266,267,268,269,270,271,272,273,274,275,277],[65,70,92,98,99,101,187,188,189,193,195,196,261,263,264,265,278],[69,70,71,73,85,88,91,92,96,98,99,101,187,188,189,193,195,196],[70,92,98,99,187,188,189,193,195,196,281],[69,70,85,92,98,99,101,187,188,189,193,195,196],[70,92,98,99,153,154,187,188,189,193,195,196],[70,92,98,99,153,154,155,156,187,188,189,193,195,196],[70,92,98,99,158,187,188,189,193,195,196],[34,36,70,92,98,99,187,188,189,193,195,196],[34,36,37,70,92,98,99,187,188,189,193,195,196],[34,35,70,92,98,99,187,188,189,193,195,196],[34,38,70,92,98,99,187,188,189,193,195,196],[34,38,40,70,92,98,99,187,188,189,193,195,196],[34,38,39,40,41,42,43,44,45,46,70,92,98,99,187,188,189,193,195,196]],"referencedMap":[[49,1],[48,1],[55,2],[51,3],[50,3],[53,4],[52,3],[54,3],[103,5],[104,6],[108,7],[112,8],[102,9],[114,10],[115,11],[117,12],[122,13],[118,1],[121,14],[120,1],[60,1],[111,15],[127,16],[125,1],[126,17],[128,11],[130,18],[116,19],[131,11],[132,1],[134,20],[135,1],[139,21],[140,21],[136,22],[137,22],[138,22],[141,23],[146,24],[147,1],[106,1],[148,25],[149,1],[150,1],[151,26],[152,27],[160,28],[119,1],[161,1],[105,29],[163,30],[164,31],[162,32],[165,33],[166,34],[167,35],[168,36],[169,37],[170,38],[171,39],[172,40],[173,41],[174,42],[175,20],[123,1],[129,1],[113,1],[177,1],[178,43],[57,1],[58,1],[97,44],[59,1],[61,45],[62,46],[63,1],[64,1],[65,47],[66,48],[67,1],[68,49],[69,1],[70,50],[56,1],[71,51],[72,52],[73,53],[74,49],[75,1],[76,54],[77,1],[78,1],[79,55],[80,56],[81,1],[82,1],[83,57],[84,58],[85,49],[86,1],[87,1],[88,59],[89,1],[98,60],[100,61],[101,62],[99,63],[90,64],[91,65],[92,66],[93,47],[94,1],[95,67],[96,47],[179,1],[180,1],[181,1],[182,1],[144,1],[183,1],[110,1],[109,1],[184,24],[198,68],[199,69],[193,70],[194,71],[195,1],[196,72],[191,1],[197,73],[192,71],[187,74],[188,1],[189,75],[185,1],[190,76],[186,77],[208,78],[209,78],[207,79],[200,1],[204,80],[205,80],[201,81],[202,81],[203,81],[206,82],[210,24],[142,1],[145,83],[143,1],[211,11],[107,84],[212,1],[213,85],[214,1],[239,86],[240,87],[215,88],[218,88],[237,86],[238,86],[228,89],[227,89],[225,86],[220,86],[233,86],[231,86],[235,86],[219,86],[232,86],[236,86],[221,86],[222,86],[234,86],[216,86],[223,86],[224,86],[226,86],[230,86],[241,90],[229,86],[217,86],[254,91],[253,1],[248,90],[250,92],[249,90],[242,90],[243,90],[245,90],[247,90],[251,92],[252,92],[244,92],[246,92],[255,93],[124,94],[256,9],[257,1],[258,1],[260,95],[261,1],[262,96],[264,97],[133,1],[278,98],[277,99],[268,100],[269,101],[270,101],[271,100],[272,100],[273,100],[274,102],[267,103],[275,99],[276,104],[266,1],[279,105],[265,1],[280,106],[281,1],[282,107],[283,108],[259,1],[176,84],[153,1],[155,109],[157,110],[156,109],[154,1],[159,111],[158,1],[263,1],[34,1],[7,1],[8,1],[12,1],[11,1],[3,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[4,1],[5,1],[24,1],[21,1],[22,1],[23,1],[25,1],[26,1],[27,1],[6,1],[28,1],[29,1],[30,1],[31,1],[32,1],[2,1],[1,1],[33,1],[10,1],[9,1],[35,1],[37,112],[38,113],[36,114],[40,115],[39,115],[42,116],[47,117],[43,116],[41,115],[44,116],[45,116],[46,116]],"exportedModulesMap":[[49,1],[48,1],[55,2],[51,3],[50,3],[53,4],[52,3],[54,3],[103,5],[104,6],[108,7],[112,8],[102,9],[114,10],[115,11],[117,12],[122,13],[118,1],[121,14],[120,1],[60,1],[111,15],[127,16],[125,1],[126,17],[128,11],[130,18],[116,19],[131,11],[132,1],[134,20],[135,1],[139,21],[140,21],[136,22],[137,22],[138,22],[141,23],[146,24],[147,1],[106,1],[148,25],[149,1],[150,1],[151,26],[152,27],[160,28],[119,1],[161,1],[105,29],[163,30],[164,31],[162,32],[165,33],[166,34],[167,35],[168,36],[169,37],[170,38],[171,39],[172,40],[173,41],[174,42],[175,20],[123,1],[129,1],[113,1],[177,1],[178,43],[57,1],[58,1],[97,44],[59,1],[61,45],[62,46],[63,1],[64,1],[65,47],[66,48],[67,1],[68,49],[69,1],[70,50],[56,1],[71,51],[72,52],[73,53],[74,49],[75,1],[76,54],[77,1],[78,1],[79,55],[80,56],[81,1],[82,1],[83,57],[84,58],[85,49],[86,1],[87,1],[88,59],[89,1],[98,60],[100,61],[101,62],[99,63],[90,64],[91,65],[92,66],[93,47],[94,1],[95,67],[96,47],[179,1],[180,1],[181,1],[182,1],[144,1],[183,1],[110,1],[109,1],[184,24],[198,68],[199,69],[193,70],[194,71],[195,1],[196,72],[191,1],[197,73],[192,71],[187,74],[188,1],[189,75],[185,1],[190,76],[186,77],[208,78],[209,78],[207,79],[200,1],[204,80],[205,80],[201,81],[202,81],[203,81],[206,82],[210,24],[142,1],[145,83],[143,1],[211,11],[107,84],[212,1],[213,85],[214,1],[239,86],[240,87],[215,88],[218,88],[237,86],[238,86],[228,89],[227,89],[225,86],[220,86],[233,86],[231,86],[235,86],[219,86],[232,86],[236,86],[221,86],[222,86],[234,86],[216,86],[223,86],[224,86],[226,86],[230,86],[241,90],[229,86],[217,86],[254,91],[253,1],[248,90],[250,92],[249,90],[242,90],[243,90],[245,90],[247,90],[251,92],[252,92],[244,92],[246,92],[255,93],[124,94],[256,9],[257,1],[258,1],[260,95],[261,1],[262,96],[264,97],[133,1],[278,98],[277,99],[268,100],[269,101],[270,101],[271,100],[272,100],[273,100],[274,102],[267,103],[275,99],[276,104],[266,1],[279,105],[265,1],[280,106],[281,1],[282,107],[283,108],[259,1],[176,84],[153,1],[155,109],[157,110],[156,109],[154,1],[159,111],[158,1],[263,1],[34,1],[7,1],[8,1],[12,1],[11,1],[3,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[4,1],[5,1],[24,1],[21,1],[22,1],[23,1],[25,1],[26,1],[27,1],[6,1],[28,1],[29,1],[30,1],[31,1],[32,1],[2,1],[1,1],[33,1],[10,1],[9,1],[35,1],[37,112],[38,113],[36,114],[40,115],[39,115],[42,116],[47,117],[43,116],[41,115],[44,116],[45,116],[46,116]],"semanticDiagnosticsPerFile":[49,48,55,51,50,53,52,54,103,104,108,112,102,114,115,117,122,118,121,120,60,111,127,125,126,128,130,116,131,132,134,135,139,140,136,137,138,141,146,147,106,148,149,150,151,152,160,119,161,105,163,164,162,165,166,167,168,169,170,171,172,173,174,175,123,129,113,177,178,57,58,97,59,61,62,63,64,65,66,67,68,69,70,56,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,98,100,101,99,90,91,92,93,94,95,96,179,180,181,182,144,183,110,109,184,198,199,193,194,195,196,191,197,192,187,188,189,185,190,186,208,209,207,200,204,205,201,202,203,206,210,142,145,143,211,107,212,213,214,239,240,215,218,237,238,228,227,225,220,233,231,235,219,232,236,221,222,234,216,223,224,226,230,241,229,217,254,253,248,250,249,242,243,245,247,251,252,244,246,255,124,256,257,258,260,261,262,264,133,278,277,268,269,270,271,272,273,274,267,275,276,266,279,265,280,281,282,283,259,176,153,155,157,156,154,159,158,263,34,7,8,12,11,3,13,14,15,16,17,18,19,20,4,5,24,21,22,23,25,26,27,6,28,29,30,31,32,2,1,33,10,9,35,37,38,36,40,39,42,47,43,41,44,45,46]},"version":"4.8.4"}
@@ -0,0 +1,47 @@
1
+ declare const palette: {
2
+ royalBlue: string;
3
+ royalBlueLight10: string;
4
+ royalBlueLight80: string;
5
+ royalBlueLight90: string;
6
+ royalBlueDark30: string;
7
+ frenchSky: string;
8
+ frenchSkyLight70: string;
9
+ frenchSkyLight80: string;
10
+ black: string;
11
+ white: string;
12
+ greyLight95: string;
13
+ greyLight90: string;
14
+ greyLight75: string;
15
+ greyLight45: string;
16
+ greyLight30: string;
17
+ grey: string;
18
+ maasstrichtBlueLight90: string;
19
+ maasstrichtBlueLight80: string;
20
+ maasstrichtBlueLight50: string;
21
+ maasstrichtBlueLight30: string;
22
+ maasstrichtBlue: string;
23
+ pastelRed: string;
24
+ pastelRedLight20: string;
25
+ mellowApricot: string;
26
+ mellowApricotLight20: string;
27
+ emerald: string;
28
+ emeraldLight20: string;
29
+ emeraldDark20: string;
30
+ vodka: string;
31
+ vodkaLight20: string;
32
+ vermilion: string;
33
+ deepSaffron: string;
34
+ deepSaffronDark20: string;
35
+ pineGreen: string;
36
+ ultramarineBlue: string;
37
+ sonicSilver: string;
38
+ linen: string;
39
+ seashell: string;
40
+ honeydew: string;
41
+ aliceBlue: string;
42
+ antiFlashWhite: string;
43
+ apple: string;
44
+ silverChalice: string;
45
+ silverChaliceLight20: string;
46
+ };
47
+ export default palette;
@@ -0,0 +1,6 @@
1
+ import colorScales from '../colorScales';
2
+ import defaultMobilePalette from '../defaultMobilePalette';
3
+ const { royalBlue, frenchSky } = colorScales;
4
+ const palette = Object.assign(Object.assign({}, defaultMobilePalette), { royalBlue: royalBlue.base, royalBlueLight10: royalBlue.lighten10, royalBlueLight80: royalBlue.lighten80, royalBlueLight90: royalBlue.lighten90, royalBlueDark30: royalBlue.darken30, frenchSky: frenchSky.base, frenchSkyLight70: frenchSky.lighten70, frenchSkyLight80: frenchSky.lighten80 });
5
+ export default palette;
6
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/walletPalette/index.ts"],"names":[],"mappings":"AAAA,OAAO,WAAW,MAAM,gBAAgB,CAAC;AACzC,OAAO,oBAAoB,MAAM,yBAAyB,CAAC;AAE3D,MAAM,EAAE,SAAS,EAAE,SAAS,EAAE,GAAG,WAAW,CAAC;AAE7C,MAAM,OAAO,mCACR,oBAAoB,KAEvB,SAAS,EAAE,SAAS,CAAC,IAAI,EACzB,gBAAgB,EAAE,SAAS,CAAC,SAAS,EACrC,gBAAgB,EAAE,SAAS,CAAC,SAAS,EACrC,gBAAgB,EAAE,SAAS,CAAC,SAAS,EACrC,eAAe,EAAE,SAAS,CAAC,QAAQ,EAEnC,SAAS,EAAE,SAAS,CAAC,IAAI,EACzB,gBAAgB,EAAE,SAAS,CAAC,SAAS,EACrC,gBAAgB,EAAE,SAAS,CAAC,SAAS,GACtC,CAAC;AAEF,eAAe,OAAO,CAAC","sourcesContent":["import colorScales from '../colorScales';\nimport defaultMobilePalette from '../defaultMobilePalette';\n\nconst { royalBlue, frenchSky } = colorScales;\n\nconst palette = {\n ...defaultMobilePalette,\n\n royalBlue: royalBlue.base,\n royalBlueLight10: royalBlue.lighten10,\n royalBlueLight80: royalBlue.lighten80,\n royalBlueLight90: royalBlue.lighten90,\n royalBlueDark30: royalBlue.darken30,\n\n frenchSky: frenchSky.base,\n frenchSkyLight70: frenchSky.lighten70,\n frenchSkyLight80: frenchSky.lighten80,\n};\n\nexport default palette;\n"]}
@@ -0,0 +1,49 @@
1
+ declare const palette: {
2
+ goldLight20: string;
3
+ goldLight50: string;
4
+ goldLight70: string;
5
+ goldLight80: string;
6
+ goldLight90: string;
7
+ gold: string;
8
+ policeBlue: string;
9
+ policeBlueLight20: string;
10
+ policeBlueLight25: string;
11
+ policeBlueLight90: string;
12
+ black: string;
13
+ white: string;
14
+ greyLight95: string;
15
+ greyLight90: string;
16
+ greyLight75: string;
17
+ greyLight45: string;
18
+ greyLight30: string;
19
+ grey: string;
20
+ maasstrichtBlueLight90: string;
21
+ maasstrichtBlueLight80: string;
22
+ maasstrichtBlueLight50: string;
23
+ maasstrichtBlueLight30: string;
24
+ maasstrichtBlue: string;
25
+ pastelRed: string;
26
+ pastelRedLight20: string;
27
+ mellowApricot: string;
28
+ mellowApricotLight20: string;
29
+ emerald: string;
30
+ emeraldLight20: string;
31
+ emeraldDark20: string;
32
+ vodka: string;
33
+ vodkaLight20: string;
34
+ vermilion: string;
35
+ deepSaffron: string;
36
+ deepSaffronDark20: string;
37
+ pineGreen: string;
38
+ ultramarineBlue: string;
39
+ sonicSilver: string;
40
+ linen: string;
41
+ seashell: string;
42
+ honeydew: string;
43
+ aliceBlue: string;
44
+ antiFlashWhite: string;
45
+ apple: string;
46
+ silverChalice: string;
47
+ silverChaliceLight20: string;
48
+ };
49
+ export default palette;
@@ -0,0 +1,6 @@
1
+ import colorScales from '../colorScales';
2
+ import defaultMobilePalette from '../defaultMobilePalette';
3
+ const { gold, policeBlue } = colorScales;
4
+ const palette = Object.assign(Object.assign({}, defaultMobilePalette), { goldLight20: gold.lighten20, goldLight50: gold.lighten50, goldLight70: gold.lighten70, goldLight80: gold.lighten80, goldLight90: gold.lighten90, gold: gold.base, policeBlue: policeBlue.base, policeBlueLight20: policeBlue.lighten20, policeBlueLight25: policeBlue.lighten25, policeBlueLight90: policeBlue.lighten90 });
5
+ export default palette;
6
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/workPalette/index.ts"],"names":[],"mappings":"AAAA,OAAO,WAAW,MAAM,gBAAgB,CAAC;AACzC,OAAO,oBAAoB,MAAM,yBAAyB,CAAC;AAE3D,MAAM,EAAE,IAAI,EAAE,UAAU,EAAE,GAAG,WAAW,CAAC;AAEzC,MAAM,OAAO,mCACR,oBAAoB,KAEvB,WAAW,EAAE,IAAI,CAAC,SAAS,EAC3B,WAAW,EAAE,IAAI,CAAC,SAAS,EAC3B,WAAW,EAAE,IAAI,CAAC,SAAS,EAC3B,WAAW,EAAE,IAAI,CAAC,SAAS,EAC3B,WAAW,EAAE,IAAI,CAAC,SAAS,EAC3B,IAAI,EAAE,IAAI,CAAC,IAAI,EAEf,UAAU,EAAE,UAAU,CAAC,IAAI,EAC3B,iBAAiB,EAAE,UAAU,CAAC,SAAS,EACvC,iBAAiB,EAAE,UAAU,CAAC,SAAS,EACvC,iBAAiB,EAAE,UAAU,CAAC,SAAS,GACxC,CAAC;AAEF,eAAe,OAAO,CAAC","sourcesContent":["import colorScales from '../colorScales';\nimport defaultMobilePalette from '../defaultMobilePalette';\n\nconst { gold, policeBlue } = colorScales;\n\nconst palette = {\n ...defaultMobilePalette,\n\n goldLight20: gold.lighten20,\n goldLight50: gold.lighten50,\n goldLight70: gold.lighten70,\n goldLight80: gold.lighten80,\n goldLight90: gold.lighten90,\n gold: gold.base,\n\n policeBlue: policeBlue.base,\n policeBlueLight20: policeBlue.lighten20,\n policeBlueLight25: policeBlue.lighten25,\n policeBlueLight90: policeBlue.lighten90,\n};\n\nexport default palette;\n"]}
@@ -1,17 +1,17 @@
1
- @hero-design/colors:build: cache hit, replaying output e37b02164044ca89
2
- @hero-design/colors:build: $ yarn build:js && yarn build:types
3
- @hero-design/colors:build: $ rollup -c
4
- @hero-design/colors:build: 
5
- @hero-design/colors:build: src/index.ts → lib/index.js, es/index.js...
6
- @hero-design/colors:build: (!) Unresolved dependencies
7
- @hero-design/colors:build: https://rollupjs.org/guide/en/#warning-treating-module-as-external-dependency
8
- @hero-design/colors:build: hex-rgb (imported by ../../node_modules/parse-css-color/dist/index.esm.js, ../../node_modules/mix-css-color/node_modules/parse-css-color/dist/index.esm.js)
9
- @hero-design/colors:build: (!) Plugin typescript: @rollup/plugin-typescript: outputToFilesystem option is defaulting to true.
10
- @hero-design/colors:build: (!) Mixing named and default exports
11
- @hero-design/colors:build: https://rollupjs.org/guide/en/#outputexports
12
- @hero-design/colors:build: The following entry modules are using named and default exports together:
13
- @hero-design/colors:build: src/index.ts
14
- @hero-design/colors:build: 
15
- @hero-design/colors:build: Consumers of your bundle will have to use chunk['default'] to access their default export, which may not be what you want. Use `output.exports: 'named'` to disable this warning
16
- @hero-design/colors:build: created lib/index.js, es/index.js in 3.2s
17
- @hero-design/colors:build: $ tsc --emitDeclarationOnly
1
+ @hero-design/colors:build: cache hit, replaying output 077b8e7a0a56fee1
2
+ @hero-design/colors:build: $ yarn build:js && yarn build:types
3
+ @hero-design/colors:build: $ rollup -c
4
+ @hero-design/colors:build: 
5
+ @hero-design/colors:build: src/index.ts → lib/index.js, es/index.js...
6
+ @hero-design/colors:build: (!) Unresolved dependencies
7
+ @hero-design/colors:build: https://rollupjs.org/guide/en/#warning-treating-module-as-external-dependency
8
+ @hero-design/colors:build: hex-rgb (imported by ../../node_modules/parse-css-color/dist/index.esm.js, ../../node_modules/mix-css-color/node_modules/parse-css-color/dist/index.esm.js)
9
+ @hero-design/colors:build: (!) Plugin typescript: @rollup/plugin-typescript: outputToFilesystem option is defaulting to true.
10
+ @hero-design/colors:build: (!) Mixing named and default exports
11
+ @hero-design/colors:build: https://rollupjs.org/guide/en/#outputexports
12
+ @hero-design/colors:build: The following entry modules are using named and default exports together:
13
+ @hero-design/colors:build: src/index.ts
14
+ @hero-design/colors:build: 
15
+ @hero-design/colors:build: Consumers of your bundle will have to use chunk['default'] to access their default export, which may not be what you want. Use `output.exports: 'named'` to disable this warning
16
+ @hero-design/colors:build: created lib/index.js, es/index.js in 3.5s
17
+ @hero-design/colors:build: $ tsc --emitDeclarationOnly
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hero-design/colors",
3
- "version": "8.2.0",
3
+ "version": "8.2.1",
4
4
  "license": "MIT",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -23,8 +23,8 @@
23
23
  "@rollup/plugin-commonjs": "^20.0.0",
24
24
  "@rollup/plugin-node-resolve": "^13.1.3",
25
25
  "@rollup/plugin-typescript": "^8.3.1",
26
- "eslint-config-hd": "8.2.0",
27
- "prettier-config-hd": "8.2.0",
26
+ "eslint-config-hd": "8.2.1",
27
+ "prettier-config-hd": "8.2.1",
28
28
  "rollup": "^2.70.1"
29
29
  },
30
30
  "prettier": "prettier-config-hd"