@coorpacademy/components 10.27.1-alpha.0 → 10.27.2

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 (49) hide show
  1. package/es/atom/provider/web-context.d.ts +1 -1
  2. package/es/atom/provider/web-context.d.ts.map +1 -1
  3. package/es/atom/provider/web-context.js +1 -1
  4. package/es/atom/provider/web-context.js.map +1 -1
  5. package/es/organism/podcast-popin-intro/index.native.d.ts +10 -0
  6. package/es/organism/podcast-popin-intro/index.native.d.ts.map +1 -0
  7. package/es/organism/podcast-popin-intro/index.native.js +114 -0
  8. package/es/organism/podcast-popin-intro/index.native.js.map +1 -0
  9. package/es/template/app-review/template-context.d.ts +1 -1
  10. package/es/template/app-review/template-context.d.ts.map +1 -1
  11. package/es/template/app-review/template-context.js +2 -1
  12. package/es/template/app-review/template-context.js.map +1 -1
  13. package/es/variables/default-mobile-translations.d.ts +214 -0
  14. package/es/variables/default-mobile-translations.d.ts.map +1 -0
  15. package/es/variables/default-mobile-translations.js +278 -0
  16. package/es/variables/default-mobile-translations.js.map +1 -0
  17. package/es/variables/theme.native.d.ts +4 -0
  18. package/es/variables/theme.native.d.ts.map +1 -1
  19. package/es/variables/theme.native.js +5 -1
  20. package/es/variables/theme.native.js.map +1 -1
  21. package/lib/atom/provider/web-context.d.ts +1 -1
  22. package/lib/atom/provider/web-context.d.ts.map +1 -1
  23. package/lib/atom/provider/web-context.js +1 -1
  24. package/lib/atom/provider/web-context.js.map +1 -1
  25. package/lib/organism/podcast-popin-intro/index.native.d.ts +10 -0
  26. package/lib/organism/podcast-popin-intro/index.native.d.ts.map +1 -0
  27. package/lib/organism/podcast-popin-intro/index.native.js +131 -0
  28. package/lib/organism/podcast-popin-intro/index.native.js.map +1 -0
  29. package/lib/template/app-review/template-context.d.ts +1 -1
  30. package/lib/template/app-review/template-context.d.ts.map +1 -1
  31. package/lib/template/app-review/template-context.js +3 -1
  32. package/lib/template/app-review/template-context.js.map +1 -1
  33. package/lib/variables/default-mobile-translations.d.ts +214 -0
  34. package/lib/variables/default-mobile-translations.d.ts.map +1 -0
  35. package/lib/variables/default-mobile-translations.js +283 -0
  36. package/lib/variables/default-mobile-translations.js.map +1 -0
  37. package/lib/variables/theme.native.d.ts +4 -0
  38. package/lib/variables/theme.native.d.ts.map +1 -1
  39. package/lib/variables/theme.native.js +5 -1
  40. package/lib/variables/theme.native.js.map +1 -1
  41. package/package.json +2 -2
  42. package/es/types/translations.d.ts +0 -12
  43. package/es/types/translations.d.ts.map +0 -1
  44. package/es/types/translations.js +0 -2
  45. package/es/types/translations.js.map +0 -1
  46. package/lib/types/translations.d.ts +0 -12
  47. package/lib/types/translations.d.ts.map +0 -1
  48. package/lib/types/translations.js +0 -2
  49. package/lib/types/translations.js.map +0 -1
@@ -1 +1 @@
1
- {"version":3,"file":"theme.native.js","names":["HTML_ANCHOR_TEXT_COLOR","defaultTheme","colors","border","gray","extra","lighter","light","lightMedium","medium","dark","extraDark","text","primary","cta","negative","COLORS","positive","white","black","battle","notification","salmon","spacing","micro","tiny","small","base","large","xlarge","radius","common","card","regular","search","button","thumbnail","fontWeight","semiBold","bold","extraBold","fontSize","extraSmall","xxlarge","xxxlarge","letterSpacing","header"],"sources":["../../src/variables/theme.native.ts"],"sourcesContent":["import {TextStyle} from 'react-native';\nimport {COLORS} from './colors';\n\nexport type SpaceType = 'micro' | 'tiny' | 'small' | 'base' | 'medium' | 'large' | 'xlarge';\n\nexport const HTML_ANCHOR_TEXT_COLOR = '#002BDB';\n\nexport type Colors = {\n border: string;\n gray: {\n extra: string;\n light: string;\n lighter: string;\n lightMedium: string;\n medium: string;\n dark: string;\n extraDark: string;\n };\n text: {\n primary: '#06265B';\n };\n cta: string;\n negative: string;\n positive: string;\n white: string;\n black: string;\n battle: string;\n notification: string;\n salmon: string;\n};\n\nexport type Theme = {\n colors: Colors;\n spacing: {\n micro: number;\n tiny: number;\n small: number;\n base: number;\n medium: number;\n large: number;\n xlarge: number;\n };\n radius: {\n button: number;\n common: number;\n card: number;\n medium: number;\n regular: number;\n search: number;\n thumbnail: number;\n };\n fontWeight: {\n regular: TextStyle['fontWeight'];\n semiBold: TextStyle['fontWeight'];\n bold: TextStyle['fontWeight'];\n extraBold: TextStyle['fontWeight'];\n };\n fontSize: {\n extraSmall: TextStyle['fontSize'];\n small: TextStyle['fontSize'];\n medium: TextStyle['fontSize'];\n regular: TextStyle['fontSize'];\n large: TextStyle['fontSize'];\n xlarge: TextStyle['fontSize'];\n xxlarge: TextStyle['fontSize'];\n xxxlarge: TextStyle['fontSize'];\n };\n letterSpacing: {\n header: number;\n };\n};\n\nconst defaultTheme: Theme = {\n colors: {\n border: 'rgba(0, 0, 0, 0.1)',\n gray: {\n extra: '#FAFAFA',\n lighter: '#F4F4F5',\n light: '#ededed',\n lightMedium: '#CFD8DC',\n medium: '#90A4AE',\n dark: '#546E7A',\n extraDark: '#323232'\n },\n text: {\n primary: '#06265B'\n },\n cta: '#0061FF',\n negative: COLORS.negative,\n positive: COLORS.positive,\n white: '#FFFFFF',\n black: '#14171A',\n battle: '#FFDE03',\n notification: '#FF7043',\n salmon: '#FDE2E5'\n },\n spacing: {\n micro: 4,\n tiny: 8,\n small: 16,\n base: 24,\n medium: 32,\n large: 48,\n xlarge: 64\n },\n radius: {\n common: 3,\n card: 5,\n regular: 8,\n medium: 12,\n search: 24,\n button: 32,\n thumbnail: 1000\n },\n fontWeight: {\n regular: '400',\n semiBold: '500',\n bold: '700',\n extraBold: '900'\n },\n fontSize: {\n extraSmall: 10,\n small: 12,\n medium: 13,\n regular: 15,\n large: 17,\n xlarge: 22,\n xxlarge: 28,\n xxxlarge: 40\n },\n letterSpacing: {\n header: 5\n }\n};\n\nexport default defaultTheme;\n"],"mappings":";;;;;AACA;;AAIO,MAAMA,sBAAsB,GAAG,SAA/B;;AAmEP,MAAMC,YAAmB,GAAG;EAC1BC,MAAM,EAAE;IACNC,MAAM,EAAE,oBADF;IAENC,IAAI,EAAE;MACJC,KAAK,EAAE,SADH;MAEJC,OAAO,EAAE,SAFL;MAGJC,KAAK,EAAE,SAHH;MAIJC,WAAW,EAAE,SAJT;MAKJC,MAAM,EAAE,SALJ;MAMJC,IAAI,EAAE,SANF;MAOJC,SAAS,EAAE;IAPP,CAFA;IAWNC,IAAI,EAAE;MACJC,OAAO,EAAE;IADL,CAXA;IAcNC,GAAG,EAAE,SAdC;IAeNC,QAAQ,EAAEC,cAAA,CAAOD,QAfX;IAgBNE,QAAQ,EAAED,cAAA,CAAOC,QAhBX;IAiBNC,KAAK,EAAE,SAjBD;IAkBNC,KAAK,EAAE,SAlBD;IAmBNC,MAAM,EAAE,SAnBF;IAoBNC,YAAY,EAAE,SApBR;IAqBNC,MAAM,EAAE;EArBF,CADkB;EAwB1BC,OAAO,EAAE;IACPC,KAAK,EAAE,CADA;IAEPC,IAAI,EAAE,CAFC;IAGPC,KAAK,EAAE,EAHA;IAIPC,IAAI,EAAE,EAJC;IAKPlB,MAAM,EAAE,EALD;IAMPmB,KAAK,EAAE,EANA;IAOPC,MAAM,EAAE;EAPD,CAxBiB;EAiC1BC,MAAM,EAAE;IACNC,MAAM,EAAE,CADF;IAENC,IAAI,EAAE,CAFA;IAGNC,OAAO,EAAE,CAHH;IAINxB,MAAM,EAAE,EAJF;IAKNyB,MAAM,EAAE,EALF;IAMNC,MAAM,EAAE,EANF;IAONC,SAAS,EAAE;EAPL,CAjCkB;EA0C1BC,UAAU,EAAE;IACVJ,OAAO,EAAE,KADC;IAEVK,QAAQ,EAAE,KAFA;IAGVC,IAAI,EAAE,KAHI;IAIVC,SAAS,EAAE;EAJD,CA1Cc;EAgD1BC,QAAQ,EAAE;IACRC,UAAU,EAAE,EADJ;IAERhB,KAAK,EAAE,EAFC;IAGRjB,MAAM,EAAE,EAHA;IAIRwB,OAAO,EAAE,EAJD;IAKRL,KAAK,EAAE,EALC;IAMRC,MAAM,EAAE,EANA;IAORc,OAAO,EAAE,EAPD;IAQRC,QAAQ,EAAE;EARF,CAhDgB;EA0D1BC,aAAa,EAAE;IACbC,MAAM,EAAE;EADK;AA1DW,CAA5B;eA+De7C,Y"}
1
+ {"version":3,"file":"theme.native.js","names":["HTML_ANCHOR_TEXT_COLOR","defaultTheme","colors","border","gray","extra","lighter","light","lightMedium","medium","dark","extraDark","text","primary","cta","negative","COLORS","positive","white","black","battle","notification","salmon","podcast","background","spacing","micro","tiny","small","base","large","xlarge","radius","common","card","regular","search","button","thumbnail","fontWeight","semiBold","bold","extraBold","fontSize","extraSmall","xxlarge","xxxlarge","letterSpacing","header"],"sources":["../../src/variables/theme.native.ts"],"sourcesContent":["import {TextStyle} from 'react-native';\nimport {COLORS} from './colors';\n\nexport type SpaceType = 'micro' | 'tiny' | 'small' | 'base' | 'medium' | 'large' | 'xlarge';\n\nexport const HTML_ANCHOR_TEXT_COLOR = '#002BDB';\n\nexport type Colors = {\n border: string;\n gray: {\n extra: string;\n light: string;\n lighter: string;\n lightMedium: string;\n medium: string;\n dark: string;\n extraDark: string;\n };\n podcast: {\n background: string;\n primary: string;\n };\n text: {\n primary: '#06265B';\n };\n cta: string;\n negative: string;\n positive: string;\n white: string;\n black: string;\n battle: string;\n notification: string;\n salmon: string;\n};\n\nexport type Theme = {\n colors: Colors;\n spacing: {\n micro: number;\n tiny: number;\n small: number;\n base: number;\n medium: number;\n large: number;\n xlarge: number;\n };\n radius: {\n button: number;\n common: number;\n card: number;\n medium: number;\n regular: number;\n search: number;\n thumbnail: number;\n };\n fontWeight: {\n regular: TextStyle['fontWeight'];\n semiBold: TextStyle['fontWeight'];\n bold: TextStyle['fontWeight'];\n extraBold: TextStyle['fontWeight'];\n };\n fontSize: {\n extraSmall: TextStyle['fontSize'];\n small: TextStyle['fontSize'];\n medium: TextStyle['fontSize'];\n regular: TextStyle['fontSize'];\n large: TextStyle['fontSize'];\n xlarge: TextStyle['fontSize'];\n xxlarge: TextStyle['fontSize'];\n xxxlarge: TextStyle['fontSize'];\n };\n letterSpacing: {\n header: number;\n };\n};\n\nconst defaultTheme: Theme = {\n colors: {\n border: 'rgba(0, 0, 0, 0.1)',\n gray: {\n extra: '#FAFAFA',\n lighter: '#F4F4F5',\n light: '#ededed',\n lightMedium: '#CFD8DC',\n medium: '#90A4AE',\n dark: '#546E7A',\n extraDark: '#323232'\n },\n text: {\n primary: '#06265B'\n },\n cta: '#0061FF',\n negative: COLORS.negative,\n positive: COLORS.positive,\n white: '#FFFFFF',\n black: '#14171A',\n battle: '#FFDE03',\n notification: '#FF7043',\n salmon: '#FDE2E5',\n podcast: {\n background: '#171721',\n primary: '#FF541F'\n }\n },\n spacing: {\n micro: 4,\n tiny: 8,\n small: 16,\n base: 24,\n medium: 32,\n large: 48,\n xlarge: 64\n },\n radius: {\n common: 3,\n card: 5,\n regular: 8,\n medium: 12,\n search: 24,\n button: 32,\n thumbnail: 1000\n },\n fontWeight: {\n regular: '400',\n semiBold: '500',\n bold: '700',\n extraBold: '900'\n },\n fontSize: {\n extraSmall: 10,\n small: 12,\n medium: 13,\n regular: 15,\n large: 17,\n xlarge: 22,\n xxlarge: 28,\n xxxlarge: 40\n },\n letterSpacing: {\n header: 5\n }\n};\n\nexport default defaultTheme;\n"],"mappings":";;;;;AACA;;AAIO,MAAMA,sBAAsB,GAAG,SAA/B;;AAuEP,MAAMC,YAAmB,GAAG;EAC1BC,MAAM,EAAE;IACNC,MAAM,EAAE,oBADF;IAENC,IAAI,EAAE;MACJC,KAAK,EAAE,SADH;MAEJC,OAAO,EAAE,SAFL;MAGJC,KAAK,EAAE,SAHH;MAIJC,WAAW,EAAE,SAJT;MAKJC,MAAM,EAAE,SALJ;MAMJC,IAAI,EAAE,SANF;MAOJC,SAAS,EAAE;IAPP,CAFA;IAWNC,IAAI,EAAE;MACJC,OAAO,EAAE;IADL,CAXA;IAcNC,GAAG,EAAE,SAdC;IAeNC,QAAQ,EAAEC,cAAA,CAAOD,QAfX;IAgBNE,QAAQ,EAAED,cAAA,CAAOC,QAhBX;IAiBNC,KAAK,EAAE,SAjBD;IAkBNC,KAAK,EAAE,SAlBD;IAmBNC,MAAM,EAAE,SAnBF;IAoBNC,YAAY,EAAE,SApBR;IAqBNC,MAAM,EAAE,SArBF;IAsBNC,OAAO,EAAE;MACPC,UAAU,EAAE,SADL;MAEPX,OAAO,EAAE;IAFF;EAtBH,CADkB;EA4B1BY,OAAO,EAAE;IACPC,KAAK,EAAE,CADA;IAEPC,IAAI,EAAE,CAFC;IAGPC,KAAK,EAAE,EAHA;IAIPC,IAAI,EAAE,EAJC;IAKPpB,MAAM,EAAE,EALD;IAMPqB,KAAK,EAAE,EANA;IAOPC,MAAM,EAAE;EAPD,CA5BiB;EAqC1BC,MAAM,EAAE;IACNC,MAAM,EAAE,CADF;IAENC,IAAI,EAAE,CAFA;IAGNC,OAAO,EAAE,CAHH;IAIN1B,MAAM,EAAE,EAJF;IAKN2B,MAAM,EAAE,EALF;IAMNC,MAAM,EAAE,EANF;IAONC,SAAS,EAAE;EAPL,CArCkB;EA8C1BC,UAAU,EAAE;IACVJ,OAAO,EAAE,KADC;IAEVK,QAAQ,EAAE,KAFA;IAGVC,IAAI,EAAE,KAHI;IAIVC,SAAS,EAAE;EAJD,CA9Cc;EAoD1BC,QAAQ,EAAE;IACRC,UAAU,EAAE,EADJ;IAERhB,KAAK,EAAE,EAFC;IAGRnB,MAAM,EAAE,EAHA;IAIR0B,OAAO,EAAE,EAJD;IAKRL,KAAK,EAAE,EALC;IAMRC,MAAM,EAAE,EANA;IAORc,OAAO,EAAE,EAPD;IAQRC,QAAQ,EAAE;EARF,CApDgB;EA8D1BC,aAAa,EAAE;IACbC,MAAM,EAAE;EADK;AA9DW,CAA5B;eAmEe/C,Y"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coorpacademy/components",
3
- "version": "10.27.1-alpha.0+c67805b5f",
3
+ "version": "10.27.2",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -157,5 +157,5 @@
157
157
  "last 2 versions",
158
158
  "IE 11"
159
159
  ],
160
- "gitHead": "c67805b5f6cd6c8d74a4d9c3ead99fa8a0d5465d"
160
+ "gitHead": "eeed1f4a5b8f31270c33a00433de4b8efab609d7"
161
161
  }
@@ -1,12 +0,0 @@
1
- export declare type Translations = {
2
- selectAnAnswer?: string;
3
- selectSomethingBelow?: string;
4
- typeHere?: string;
5
- appReview?: {
6
- noSkills?: {
7
- title?: string;
8
- text?: string;
9
- };
10
- };
11
- };
12
- //# sourceMappingURL=translations.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"translations.d.ts","sourceRoot":"","sources":["../../src/types/translations.ts"],"names":[],"mappings":"AAAA,oBAAY,YAAY,GAAG;IACzB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE;QACV,QAAQ,CAAC,EAAE;YACT,KAAK,CAAC,EAAE,MAAM,CAAC;YACf,IAAI,CAAC,EAAE,MAAM,CAAC;SACf,CAAC;KACH,CAAC;CACH,CAAC"}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=translations.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"translations.js","names":[],"sources":["../../src/types/translations.ts"],"sourcesContent":["export type Translations = {\n selectAnAnswer?: string;\n selectSomethingBelow?: string;\n typeHere?: string;\n appReview?: {\n noSkills?: {\n title?: string;\n text?: string;\n };\n };\n};\n"],"mappings":""}
@@ -1,12 +0,0 @@
1
- export declare type Translations = {
2
- selectAnAnswer?: string;
3
- selectSomethingBelow?: string;
4
- typeHere?: string;
5
- appReview?: {
6
- noSkills?: {
7
- title?: string;
8
- text?: string;
9
- };
10
- };
11
- };
12
- //# sourceMappingURL=translations.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"translations.d.ts","sourceRoot":"","sources":["../../src/types/translations.ts"],"names":[],"mappings":"AAAA,oBAAY,YAAY,GAAG;IACzB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE;QACV,QAAQ,CAAC,EAAE;YACT,KAAK,CAAC,EAAE,MAAM,CAAC;YACf,IAAI,CAAC,EAAE,MAAM,CAAC;SACf,CAAC;KACH,CAAC;CACH,CAAC"}
@@ -1,2 +0,0 @@
1
- "use strict";
2
- //# sourceMappingURL=translations.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"translations.js","names":[],"sources":["../../src/types/translations.ts"],"sourcesContent":["export type Translations = {\n selectAnAnswer?: string;\n selectSomethingBelow?: string;\n typeHere?: string;\n appReview?: {\n noSkills?: {\n title?: string;\n text?: string;\n };\n };\n};\n"],"mappings":""}