@coorpacademy/components 10.27.2 β†’ 10.27.3

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 (41) hide show
  1. package/es/atom/review-presentation/index.native.d.ts +5 -0
  2. package/es/atom/review-presentation/index.native.d.ts.map +1 -0
  3. package/es/atom/review-presentation/index.native.js +141 -0
  4. package/es/atom/review-presentation/index.native.js.map +1 -0
  5. package/es/atom/review-presentation/prop-types.d.ts +38 -2
  6. package/es/atom/review-presentation/prop-types.d.ts.map +1 -1
  7. package/es/atom/review-presentation/prop-types.js +7 -0
  8. package/es/atom/review-presentation/prop-types.js.map +1 -1
  9. package/es/template/app-review/onboarding/index.native.d.ts +1 -7
  10. package/es/template/app-review/onboarding/index.native.d.ts.map +1 -1
  11. package/es/template/app-review/onboarding/index.native.js +1 -82
  12. package/es/template/app-review/onboarding/index.native.js.map +1 -1
  13. package/es/variables/default-mobile-translations.d.ts +1 -0
  14. package/es/variables/default-mobile-translations.d.ts.map +1 -1
  15. package/es/variables/default-mobile-translations.js +1 -0
  16. package/es/variables/default-mobile-translations.js.map +1 -1
  17. package/es/variables/theme.native.d.ts +2 -1
  18. package/es/variables/theme.native.d.ts.map +1 -1
  19. package/es/variables/theme.native.js +2 -1
  20. package/es/variables/theme.native.js.map +1 -1
  21. package/lib/atom/review-presentation/index.native.d.ts +5 -0
  22. package/lib/atom/review-presentation/index.native.d.ts.map +1 -0
  23. package/lib/atom/review-presentation/index.native.js +158 -0
  24. package/lib/atom/review-presentation/index.native.js.map +1 -0
  25. package/lib/atom/review-presentation/prop-types.d.ts +38 -2
  26. package/lib/atom/review-presentation/prop-types.d.ts.map +1 -1
  27. package/lib/atom/review-presentation/prop-types.js +10 -1
  28. package/lib/atom/review-presentation/prop-types.js.map +1 -1
  29. package/lib/template/app-review/onboarding/index.native.d.ts +1 -7
  30. package/lib/template/app-review/onboarding/index.native.d.ts.map +1 -1
  31. package/lib/template/app-review/onboarding/index.native.js +2 -90
  32. package/lib/template/app-review/onboarding/index.native.js.map +1 -1
  33. package/lib/variables/default-mobile-translations.d.ts +1 -0
  34. package/lib/variables/default-mobile-translations.d.ts.map +1 -1
  35. package/lib/variables/default-mobile-translations.js +1 -0
  36. package/lib/variables/default-mobile-translations.js.map +1 -1
  37. package/lib/variables/theme.native.d.ts +2 -1
  38. package/lib/variables/theme.native.d.ts.map +1 -1
  39. package/lib/variables/theme.native.js +2 -1
  40. package/lib/variables/theme.native.js.map +1 -1
  41. package/package.json +2 -2
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ import { OnboardingProps } from './prop-types';
3
+ declare const Onboarding: (props: OnboardingProps) => JSX.Element | null;
4
+ export default Onboarding;
5
+ //# sourceMappingURL=index.native.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.native.d.ts","sourceRoot":"","sources":["../../../src/atom/review-presentation/index.native.tsx"],"names":[],"mappings":";AAaA,OAAO,EAAC,eAAe,EAAW,MAAM,cAAc,CAAC;AAyFvD,QAAA,MAAM,UAAU,UAAW,eAAe,uBA0CzC,CAAC;AAEF,eAAe,UAAU,CAAC"}
@@ -0,0 +1,141 @@
1
+ import React, { useState, useEffect } from 'react';
2
+ import { View, StyleSheet, Text } from 'react-native';
3
+ import { NovaLineSelectionCursorsCursorArrowTarget as TargetIcon, NovaSolidInterfaceFeedbackInterfaceQuestionMark as QuestionMarkIcon, NovaSolidStatusCheckCircle2 as CheckCircle2Icon, NovaCompositionCoorpacademyHeart as HeartIcon } from '@coorpacademy/nova-icons';
4
+ import { useTemplateContext } from '../../template/app-review/template-context';
5
+ import { HEADER_HEIGHT } from '../../organism/header-v2/index.native';
6
+ import Touchable from '../../hoc/touchable/index.native';
7
+
8
+ const createStyleSheet = theme => StyleSheet.create({
9
+ container: {
10
+ justifyContent: 'space-between',
11
+ flex: 1,
12
+ padding: 20,
13
+ paddingTop: HEADER_HEIGHT + 20
14
+ },
15
+ title: {
16
+ height: 72,
17
+ width: 268,
18
+ fontSize: theme.fontSize.xxlarge,
19
+ fontWeight: theme.fontWeight.bold,
20
+ lineHeight: 36,
21
+ color: theme.colors.text.primary,
22
+ marginBottom: theme.spacing.small
23
+ },
24
+ text: {
25
+ fontSize: theme.fontSize.large,
26
+ color: theme.colors.text.primary,
27
+ opacity: 0.7,
28
+ marginBottom: theme.spacing.small
29
+ },
30
+ tip: {
31
+ flexDirection: 'row',
32
+ overflow: 'hidden',
33
+ alignItems: 'center',
34
+ height: 54,
35
+ borderRadius: 8,
36
+ backgroundColor: theme.colors.gray.extra,
37
+ marginTop: theme.spacing.micro,
38
+ marginBottom: theme.spacing.micro
39
+ },
40
+ tipText: {
41
+ fontSize: theme.fontSize.large,
42
+ color: theme.colors.text.primary
43
+ },
44
+ icon: {
45
+ margin: 10
46
+ },
47
+ button: {
48
+ height: 52,
49
+ borderRadius: 7,
50
+ marginBottom: theme.spacing.large,
51
+ marginTop: theme.spacing.large
52
+ },
53
+ buttonText: {
54
+ fontWeight: theme.fontWeight.bold,
55
+ fontSize: theme.fontSize.large,
56
+ color: theme.colors.text.secondary
57
+ }
58
+ });
59
+
60
+ const Tip = props => {
61
+ const templateContext = useTemplateContext();
62
+ const [styleSheet, setStylesheet] = useState(null);
63
+ const {
64
+ theme
65
+ } = templateContext;
66
+ const {
67
+ Icon,
68
+ text
69
+ } = props;
70
+ useEffect(() => {
71
+ const _stylesheet = createStyleSheet(theme);
72
+
73
+ setStylesheet(_stylesheet);
74
+ }, [theme]);
75
+
76
+ if (!styleSheet) {
77
+ return null;
78
+ }
79
+
80
+ return /*#__PURE__*/React.createElement(View, {
81
+ style: styleSheet.tip
82
+ }, /*#__PURE__*/React.createElement(Icon, {
83
+ height: 16,
84
+ width: 16,
85
+ style: styleSheet.icon,
86
+ color: theme.colors.text.primary
87
+ }), /*#__PURE__*/React.createElement(Text, {
88
+ style: styleSheet.tipText
89
+ }, text));
90
+ };
91
+
92
+ const Onboarding = props => {
93
+ const templateContext = useTemplateContext();
94
+ const [styleSheet, setStylesheet] = useState(null);
95
+ const {
96
+ theme,
97
+ translations
98
+ } = templateContext;
99
+ const {
100
+ onPress
101
+ } = props;
102
+ useEffect(() => {
103
+ const _stylesheet = createStyleSheet(theme);
104
+
105
+ setStylesheet(_stylesheet);
106
+ }, [theme]); // ------------------------------------
107
+
108
+ if (!styleSheet) {
109
+ return null;
110
+ }
111
+
112
+ return /*#__PURE__*/React.createElement(View, {
113
+ style: styleSheet.container
114
+ }, /*#__PURE__*/React.createElement(Text, {
115
+ style: styleSheet.title
116
+ }, translations.appReview?.presentation.title), /*#__PURE__*/React.createElement(Text, {
117
+ style: styleSheet.text
118
+ }, translations.appReview?.presentation.text), /*#__PURE__*/React.createElement(Tip, {
119
+ Icon: TargetIcon,
120
+ text: translations.appReview?.presentation?.labelList?.skills?.text
121
+ }), /*#__PURE__*/React.createElement(Tip, {
122
+ Icon: QuestionMarkIcon,
123
+ text: translations.appReview?.presentation?.labelList?.questions?.text
124
+ }), /*#__PURE__*/React.createElement(Tip, {
125
+ Icon: HeartIcon,
126
+ text: translations.appReview?.presentation?.labelList?.lifes?.text
127
+ }), /*#__PURE__*/React.createElement(Tip, {
128
+ Icon: CheckCircle2Icon,
129
+ text: translations.appReview?.presentation?.labelList?.allright?.text
130
+ }), /*#__PURE__*/React.createElement(Touchable, {
131
+ testID: `button-quit-revision-onboarding`,
132
+ onPress: onPress,
133
+ analyticsID: "button-start",
134
+ style: styleSheet.button
135
+ }, /*#__PURE__*/React.createElement(Text, {
136
+ style: styleSheet.buttonText
137
+ }, translations.appReview?.presentation.button)));
138
+ };
139
+
140
+ export default Onboarding;
141
+ //# sourceMappingURL=index.native.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.native.js","names":["React","useState","useEffect","View","StyleSheet","Text","NovaLineSelectionCursorsCursorArrowTarget","TargetIcon","NovaSolidInterfaceFeedbackInterfaceQuestionMark","QuestionMarkIcon","NovaSolidStatusCheckCircle2","CheckCircle2Icon","NovaCompositionCoorpacademyHeart","HeartIcon","useTemplateContext","HEADER_HEIGHT","Touchable","createStyleSheet","theme","create","container","justifyContent","flex","padding","paddingTop","title","height","width","fontSize","xxlarge","fontWeight","bold","lineHeight","color","colors","text","primary","marginBottom","spacing","small","large","opacity","tip","flexDirection","overflow","alignItems","borderRadius","backgroundColor","gray","extra","marginTop","micro","tipText","icon","margin","button","buttonText","secondary","Tip","props","templateContext","styleSheet","setStylesheet","Icon","_stylesheet","Onboarding","translations","onPress","appReview","presentation","labelList","skills","questions","lifes","allright"],"sources":["../../../src/atom/review-presentation/index.native.tsx"],"sourcesContent":["import React, {useState, useEffect} from 'react';\nimport {View, StyleSheet, Text, ViewStyle, TextStyle} from 'react-native';\nimport {\n NovaLineSelectionCursorsCursorArrowTarget as TargetIcon,\n NovaSolidInterfaceFeedbackInterfaceQuestionMark as QuestionMarkIcon,\n NovaSolidStatusCheckCircle2 as CheckCircle2Icon,\n NovaCompositionCoorpacademyHeart as HeartIcon\n} from '@coorpacademy/nova-icons';\n\nimport {useTemplateContext} from '../../template/app-review/template-context';\nimport {Theme} from '../../variables/theme.native';\nimport {HEADER_HEIGHT} from '../../organism/header-v2/index.native';\nimport Touchable from '../../hoc/touchable/index.native';\nimport {OnboardingProps, TipProps} from './prop-types';\n\ntype StyleSheetType = {\n container: ViewStyle;\n title: TextStyle;\n text: TextStyle;\n tip: ViewStyle;\n tipText: TextStyle;\n icon: ViewStyle;\n button: ViewStyle;\n buttonText: TextStyle;\n};\n\nconst createStyleSheet = (theme: Theme): StyleSheetType =>\n StyleSheet.create({\n container: {\n justifyContent: 'space-between',\n flex: 1,\n padding: 20,\n paddingTop: HEADER_HEIGHT + 20\n },\n title: {\n height: 72,\n width: 268,\n fontSize: theme.fontSize.xxlarge,\n fontWeight: theme.fontWeight.bold,\n lineHeight: 36,\n color: theme.colors.text.primary,\n marginBottom: theme.spacing.small\n },\n text: {\n fontSize: theme.fontSize.large,\n color: theme.colors.text.primary,\n opacity: 0.7,\n marginBottom: theme.spacing.small\n },\n tip: {\n flexDirection: 'row',\n overflow: 'hidden',\n alignItems: 'center',\n height: 54,\n borderRadius: 8,\n backgroundColor: theme.colors.gray.extra,\n marginTop: theme.spacing.micro,\n marginBottom: theme.spacing.micro\n },\n tipText: {\n fontSize: theme.fontSize.large,\n color: theme.colors.text.primary\n },\n icon: {\n margin: 10\n },\n button: {\n height: 52,\n borderRadius: 7,\n marginBottom: theme.spacing.large,\n marginTop: theme.spacing.large\n },\n buttonText: {\n fontWeight: theme.fontWeight.bold,\n fontSize: theme.fontSize.large,\n color: theme.colors.text.secondary\n }\n });\n\nconst Tip = (props: TipProps) => {\n const templateContext = useTemplateContext();\n const [styleSheet, setStylesheet] = useState<StyleSheetType | null>(null);\n const {theme} = templateContext;\n const {Icon, text} = props;\n\n useEffect(() => {\n const _stylesheet = createStyleSheet(theme);\n setStylesheet(_stylesheet);\n }, [theme]);\n\n if (!styleSheet) {\n return null;\n }\n\n return (\n <View style={styleSheet.tip}>\n {<Icon height={16} width={16} style={styleSheet.icon} color={theme.colors.text.primary} />}\n <Text style={styleSheet.tipText}>{text}</Text>\n </View>\n );\n};\n\nconst Onboarding = (props: OnboardingProps) => {\n const templateContext = useTemplateContext();\n const [styleSheet, setStylesheet] = useState<StyleSheetType | null>(null);\n const {theme, translations} = templateContext;\n const {onPress} = props;\n\n useEffect(() => {\n const _stylesheet = createStyleSheet(theme);\n setStylesheet(_stylesheet);\n }, [theme]);\n\n // ------------------------------------\n\n if (!styleSheet) {\n return null;\n }\n\n return (\n <View style={styleSheet.container}>\n <Text style={styleSheet.title}>{translations.appReview?.presentation.title}</Text>\n <Text style={styleSheet.text}>{translations.appReview?.presentation.text}</Text>\n\n <Tip Icon={TargetIcon} text={translations.appReview?.presentation?.labelList?.skills?.text} />\n <Tip\n Icon={QuestionMarkIcon}\n text={translations.appReview?.presentation?.labelList?.questions?.text}\n />\n <Tip Icon={HeartIcon} text={translations.appReview?.presentation?.labelList?.lifes?.text} />\n <Tip\n Icon={CheckCircle2Icon}\n text={translations.appReview?.presentation?.labelList?.allright?.text}\n />\n <Touchable\n testID={`button-quit-revision-onboarding`}\n onPress={onPress}\n analyticsID=\"button-start\"\n style={styleSheet.button}\n >\n <Text style={styleSheet.buttonText}>{translations.appReview?.presentation.button}</Text>\n </Touchable>\n </View>\n );\n};\n\nexport default Onboarding;\n"],"mappings":"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"}
@@ -1,4 +1,5 @@
1
- export default propTypes;
1
+ import PropTypes from 'prop-types';
2
+ import { GestureResponderEvent } from 'react-native';
2
3
  declare const propTypes: {
3
4
  'aria-label': PropTypes.Requireable<string>;
4
5
  reviewTitle: PropTypes.Requireable<string>;
@@ -22,5 +23,40 @@ declare const propTypes: {
22
23
  }>>;
23
24
  }>>;
24
25
  };
25
- import PropTypes from "prop-types";
26
+ export default propTypes;
27
+ export declare const OnboardingPropsTypes: {
28
+ onPress: PropTypes.Requireable<(...args: any[]) => any>;
29
+ };
30
+ export declare const TipPropsTypes: {
31
+ text: PropTypes.Requireable<string>;
32
+ Icon: PropTypes.Requireable<any>;
33
+ };
34
+ export declare type OnboardingProps = {
35
+ 'aria-label'?: string | undefined;
36
+ reviewTitle?: string | undefined;
37
+ reviewText?: string | undefined;
38
+ labelsList?: {
39
+ skills?: {
40
+ text?: string | undefined;
41
+ tooltipText?: string | undefined;
42
+ } | undefined;
43
+ questions?: {
44
+ text?: string | undefined;
45
+ tooltipText?: string | undefined;
46
+ };
47
+ lifes?: {
48
+ text?: string | undefined;
49
+ tooltipText?: string | undefined;
50
+ } | undefined;
51
+ allright?: {
52
+ text?: string | undefined;
53
+ tooltipText?: string | undefined;
54
+ } | undefined;
55
+ };
56
+ onPress: (event: GestureResponderEvent) => any;
57
+ };
58
+ export declare type TipProps = {
59
+ text: string | undefined;
60
+ Icon: any;
61
+ };
26
62
  //# sourceMappingURL=prop-types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"prop-types.d.ts","sourceRoot":"","sources":["../../../src/atom/review-presentation/prop-types.js"],"names":[],"mappings":";AAOA;;;;;;;;;;;;;;;;;;;;;;EAUE"}
1
+ {"version":3,"file":"prop-types.d.ts","sourceRoot":"","sources":["../../../src/atom/review-presentation/prop-types.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,YAAY,CAAC;AACnC,OAAO,EAAC,qBAAqB,EAAC,MAAM,cAAc,CAAC;AAOnD,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;CAUd,CAAC;AAEF,eAAe,SAAS,CAAC;AAEzB,eAAO,MAAM,oBAAoB;;CAEhC,CAAC;AAEF,eAAO,MAAM,aAAa;;;CAGzB,CAAC;AAEF,oBAAY,eAAe,GAAG;IAC5B,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAClC,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACjC,UAAU,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAChC,UAAU,CAAC,EAAE;QACX,MAAM,CAAC,EACH;YACE,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;YAC1B,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;SAClC,GACD,SAAS,CAAC;QACd,SAAS,CAAC,EAAE;YACV,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;YAC1B,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;SAClC,CAAC;QACF,KAAK,CAAC,EACF;YACE,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;YAC1B,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;SAClC,GACD,SAAS,CAAC;QACd,QAAQ,CAAC,EACL;YACE,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;YAC1B,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;SAClC,GACD,SAAS,CAAC;KACf,CAAC;IACF,OAAO,EAAE,CAAC,KAAK,EAAE,qBAAqB,KAAK,GAAG,CAAC;CAChD,CAAC;AAEF,oBAAY,QAAQ,GAAG;IACrB,IAAI,EAAE,MAAM,GAAG,SAAS,CAAC;IACzB,IAAI,EAAE,GAAG,CAAC;CACX,CAAC"}
@@ -15,4 +15,11 @@ const propTypes = {
15
15
  })
16
16
  };
17
17
  export default propTypes;
18
+ export const OnboardingPropsTypes = {
19
+ onPress: PropTypes.func
20
+ };
21
+ export const TipPropsTypes = {
22
+ text: PropTypes.string,
23
+ Icon: PropTypes.any
24
+ };
18
25
  //# sourceMappingURL=prop-types.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"prop-types.js","names":["PropTypes","levelItem","shape","text","string","tooltipText","propTypes","reviewTitle","reviewText","labelsList","skills","questions","lifes","allright"],"sources":["../../../src/atom/review-presentation/prop-types.js"],"sourcesContent":["import PropTypes from 'prop-types';\n\nconst levelItem = PropTypes.shape({\n text: PropTypes.string,\n tooltipText: PropTypes.string\n});\n\nconst propTypes = {\n 'aria-label': PropTypes.string,\n reviewTitle: PropTypes.string,\n reviewText: PropTypes.string,\n labelsList: PropTypes.shape({\n skills: levelItem,\n questions: levelItem,\n lifes: levelItem,\n allright: levelItem\n })\n};\n\nexport default propTypes;\n"],"mappings":"AAAA,OAAOA,SAAP,MAAsB,YAAtB;AAEA,MAAMC,SAAS,GAAGD,SAAS,CAACE,KAAV,CAAgB;EAChCC,IAAI,EAAEH,SAAS,CAACI,MADgB;EAEhCC,WAAW,EAAEL,SAAS,CAACI;AAFS,CAAhB,CAAlB;AAKA,MAAME,SAAS,GAAG;EAChB,cAAcN,SAAS,CAACI,MADR;EAEhBG,WAAW,EAAEP,SAAS,CAACI,MAFP;EAGhBI,UAAU,EAAER,SAAS,CAACI,MAHN;EAIhBK,UAAU,EAAET,SAAS,CAACE,KAAV,CAAgB;IAC1BQ,MAAM,EAAET,SADkB;IAE1BU,SAAS,EAAEV,SAFe;IAG1BW,KAAK,EAAEX,SAHmB;IAI1BY,QAAQ,EAAEZ;EAJgB,CAAhB;AAJI,CAAlB;AAYA,eAAeK,SAAf"}
1
+ {"version":3,"file":"prop-types.js","names":["PropTypes","levelItem","shape","text","string","tooltipText","propTypes","reviewTitle","reviewText","labelsList","skills","questions","lifes","allright","OnboardingPropsTypes","onPress","func","TipPropsTypes","Icon","any"],"sources":["../../../src/atom/review-presentation/prop-types.ts"],"sourcesContent":["import PropTypes from 'prop-types';\nimport {GestureResponderEvent} from 'react-native';\n\nconst levelItem = PropTypes.shape({\n text: PropTypes.string,\n tooltipText: PropTypes.string\n});\n\nconst propTypes = {\n 'aria-label': PropTypes.string,\n reviewTitle: PropTypes.string,\n reviewText: PropTypes.string,\n labelsList: PropTypes.shape({\n skills: levelItem,\n questions: levelItem,\n lifes: levelItem,\n allright: levelItem\n })\n};\n\nexport default propTypes;\n\nexport const OnboardingPropsTypes = {\n onPress: PropTypes.func\n};\n\nexport const TipPropsTypes = {\n text: PropTypes.string,\n Icon: PropTypes.any\n};\n\nexport type OnboardingProps = {\n 'aria-label'?: string | undefined;\n reviewTitle?: string | undefined;\n reviewText?: string | undefined;\n labelsList?: {\n skills?:\n | {\n text?: string | undefined;\n tooltipText?: string | undefined;\n }\n | undefined;\n questions?: {\n text?: string | undefined;\n tooltipText?: string | undefined;\n };\n lifes?:\n | {\n text?: string | undefined;\n tooltipText?: string | undefined;\n }\n | undefined;\n allright?:\n | {\n text?: string | undefined;\n tooltipText?: string | undefined;\n }\n | undefined;\n };\n onPress: (event: GestureResponderEvent) => any;\n};\n\nexport type TipProps = {\n text: string | undefined;\n Icon: any;\n};\n"],"mappings":"AAAA,OAAOA,SAAP,MAAsB,YAAtB;AAGA,MAAMC,SAAS,GAAGD,SAAS,CAACE,KAAV,CAAgB;EAChCC,IAAI,EAAEH,SAAS,CAACI,MADgB;EAEhCC,WAAW,EAAEL,SAAS,CAACI;AAFS,CAAhB,CAAlB;AAKA,MAAME,SAAS,GAAG;EAChB,cAAcN,SAAS,CAACI,MADR;EAEhBG,WAAW,EAAEP,SAAS,CAACI,MAFP;EAGhBI,UAAU,EAAER,SAAS,CAACI,MAHN;EAIhBK,UAAU,EAAET,SAAS,CAACE,KAAV,CAAgB;IAC1BQ,MAAM,EAAET,SADkB;IAE1BU,SAAS,EAAEV,SAFe;IAG1BW,KAAK,EAAEX,SAHmB;IAI1BY,QAAQ,EAAEZ;EAJgB,CAAhB;AAJI,CAAlB;AAYA,eAAeK,SAAf;AAEA,OAAO,MAAMQ,oBAAoB,GAAG;EAClCC,OAAO,EAAEf,SAAS,CAACgB;AADe,CAA7B;AAIP,OAAO,MAAMC,aAAa,GAAG;EAC3Bd,IAAI,EAAEH,SAAS,CAACI,MADW;EAE3Bc,IAAI,EAAElB,SAAS,CAACmB;AAFW,CAAtB"}
@@ -1,9 +1,3 @@
1
1
  export default Onboarding;
2
- declare function Onboarding({ reviewTitle }: {
3
- reviewTitle: any;
4
- }): JSX.Element;
5
- declare namespace Onboarding {
6
- export { propTypes };
7
- }
8
- import propTypes from "../../../atom/review-presentation/prop-types";
2
+ import Onboarding from "../../../atom/review-presentation/index.native";
9
3
  //# sourceMappingURL=index.native.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.native.d.ts","sourceRoot":"","sources":["../../../../src/template/app-review/onboarding/index.native.js"],"names":[],"mappings":";AAgFA;;gBAIC"}
1
+ {"version":3,"file":"index.native.d.ts","sourceRoot":"","sources":["../../../../src/template/app-review/onboarding/index.native.js"],"names":[],"mappings":""}
@@ -1,84 +1,3 @@
1
- import * as React from 'react';
2
- import { View, StyleSheet, Text } from 'react-native';
3
- import propTypes from '../../../atom/review-presentation/prop-types'; // import {NovaLineSelectionCursorsCursorArrowTarget as TargetIcon} from '@coorpacademy/nova-icons';
4
- // import theme from '../../../modules/theme';
5
- // import translations from '../../../translations';
6
- // import Button from '../../../app-shared/components/button';
7
- // import {HEADER_HEIGHT} from '../../../app-shared/components/header-v2';
8
-
9
- const styles = StyleSheet.create({
10
- container: {
11
- justifyContent: 'space-between',
12
- flex: 1,
13
- padding: 20 // paddingTop: HEADER_HEIGHT + 20
14
-
15
- },
16
- title: {
17
- height: 72,
18
- width: 268,
19
- // fontSize: theme.fontSize.xxlarge,
20
- // fontWeight: theme.fontWeight.bold,
21
- lineHeight: 36 // color: theme.colors.text.primary,
22
- // marginBottom: theme.spacing.small
23
-
24
- },
25
- text: {
26
- // fontSize: theme.fontSize.large,
27
- // color: theme.colors.text.primary,
28
- opacity: 0.7 // marginBottom: theme.spacing.small
29
-
30
- },
31
- tip: {
32
- flexDirection: 'row',
33
- overflow: 'hidden',
34
- alignItems: 'center',
35
- height: 54,
36
- borderRadius: 8 // backgroundColor: theme.colors.gray.extra,
37
- // marginTop: theme.spacing.micro,
38
- // marginBottom: theme.spacing.micro
39
-
40
- },
41
- tipText: {// fontSize: theme.fontSize.large,
42
- // color: theme.colors.text.primary
43
- },
44
- icon: {
45
- margin: 10
46
- },
47
- button: {
48
- height: 52,
49
- borderRadius: 7 // marginBottom: theme.spacing.large,
50
- // marginTop: theme.spacing.large
51
-
52
- }
53
- }); // const Tip = ({Icon, text}) => (
54
- // <View style={styles.tip}>
55
- // {/* <Icon height={16} width={16} style={styles.icon} color={theme.colors.text.primary} /> */}
56
- // <Text style={styles.tipText}>{text}</Text>
57
- // </View>
58
- // );
59
-
60
- /*
61
- reviewTitle --> translations.revision.onboarding.title
62
- */
63
- // {/* <Text style={styles.title}>{translations.revision.onboarding.title}</Text>
64
- // <Text style={styles.text}>{translations.revision.onboarding.intro1}</Text>
65
- // <Text style={styles.text}>{translations.revision.onboarding.intro2}</Text>
66
- // <Tip Icon={TargetIcon} text={translations.revision.onboarding.tip1} />
67
- // <Tip Icon={TargetIcon} text={translations.revision.onboarding.tip2} />
68
- // <Tip Icon={TargetIcon} text={translations.revision.onboarding.tip3} />
69
- // <Tip Icon={TargetIcon} text={translations.revision.onboarding.tip4} /> */}
70
- // {/* <Button style={styles.button} onPress={onButtonPress} testID={`button-quit-revision-onboarding`}>
71
- // {translations.revision.onboarding.validate}
72
- // </Button> */}
73
-
74
- const Onboarding = ({
75
- reviewTitle
76
- }) => /*#__PURE__*/React.createElement(View, {
77
- style: styles.container
78
- }, /*#__PURE__*/React.createElement(Text, {
79
- style: styles.title
80
- }, reviewTitle));
81
-
82
- Onboarding.propTypes = process.env.NODE_ENV !== "production" ? propTypes : {};
1
+ import Onboarding from '../../../atom/review-presentation/index.native';
83
2
  export default Onboarding;
84
3
  //# sourceMappingURL=index.native.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.native.js","names":["React","View","StyleSheet","Text","propTypes","styles","create","container","justifyContent","flex","padding","title","height","width","lineHeight","text","opacity","tip","flexDirection","overflow","alignItems","borderRadius","tipText","icon","margin","button","Onboarding","reviewTitle"],"sources":["../../../../src/template/app-review/onboarding/index.native.js"],"sourcesContent":["import * as React from 'react';\nimport {View, StyleSheet, Text} from 'react-native';\nimport propTypes from '../../../atom/review-presentation/prop-types';\n\n// import {NovaLineSelectionCursorsCursorArrowTarget as TargetIcon} from '@coorpacademy/nova-icons';\n\n// import theme from '../../../modules/theme';\n// import translations from '../../../translations';\n// import Button from '../../../app-shared/components/button';\n// import {HEADER_HEIGHT} from '../../../app-shared/components/header-v2';\n\nconst styles = StyleSheet.create({\n container: {\n justifyContent: 'space-between',\n flex: 1,\n padding: 20\n // paddingTop: HEADER_HEIGHT + 20\n },\n title: {\n height: 72,\n width: 268,\n // fontSize: theme.fontSize.xxlarge,\n // fontWeight: theme.fontWeight.bold,\n lineHeight: 36\n // color: theme.colors.text.primary,\n // marginBottom: theme.spacing.small\n },\n text: {\n // fontSize: theme.fontSize.large,\n // color: theme.colors.text.primary,\n opacity: 0.7\n // marginBottom: theme.spacing.small\n },\n tip: {\n flexDirection: 'row',\n overflow: 'hidden',\n alignItems: 'center',\n height: 54,\n borderRadius: 8\n // backgroundColor: theme.colors.gray.extra,\n // marginTop: theme.spacing.micro,\n // marginBottom: theme.spacing.micro\n },\n tipText: {\n // fontSize: theme.fontSize.large,\n // color: theme.colors.text.primary\n },\n icon: {\n margin: 10\n },\n button: {\n height: 52,\n borderRadius: 7\n // marginBottom: theme.spacing.large,\n // marginTop: theme.spacing.large\n }\n});\n\n// const Tip = ({Icon, text}) => (\n// <View style={styles.tip}>\n// {/* <Icon height={16} width={16} style={styles.icon} color={theme.colors.text.primary} /> */}\n// <Text style={styles.tipText}>{text}</Text>\n// </View>\n// );\n\n/*\nreviewTitle --> translations.revision.onboarding.title\n*/\n// {/* <Text style={styles.title}>{translations.revision.onboarding.title}</Text>\n// <Text style={styles.text}>{translations.revision.onboarding.intro1}</Text>\n// <Text style={styles.text}>{translations.revision.onboarding.intro2}</Text>\n\n// <Tip Icon={TargetIcon} text={translations.revision.onboarding.tip1} />\n// <Tip Icon={TargetIcon} text={translations.revision.onboarding.tip2} />\n// <Tip Icon={TargetIcon} text={translations.revision.onboarding.tip3} />\n// <Tip Icon={TargetIcon} text={translations.revision.onboarding.tip4} /> */}\n\n// {/* <Button style={styles.button} onPress={onButtonPress} testID={`button-quit-revision-onboarding`}>\n// {translations.revision.onboarding.validate}\n// </Button> */}\nconst Onboarding = ({reviewTitle}) => (\n <View style={styles.container}>\n <Text style={styles.title}>{reviewTitle}</Text>\n </View>\n);\n\nOnboarding.propTypes = propTypes;\n\nexport default Onboarding;\n"],"mappings":"AAAA,OAAO,KAAKA,KAAZ,MAAuB,OAAvB;AACA,SAAQC,IAAR,EAAcC,UAAd,EAA0BC,IAA1B,QAAqC,cAArC;AACA,OAAOC,SAAP,MAAsB,8CAAtB,C,CAEA;AAEA;AACA;AACA;AACA;;AAEA,MAAMC,MAAM,GAAGH,UAAU,CAACI,MAAX,CAAkB;EAC/BC,SAAS,EAAE;IACTC,cAAc,EAAE,eADP;IAETC,IAAI,EAAE,CAFG;IAGTC,OAAO,EAAE,EAHA,CAIT;;EAJS,CADoB;EAO/BC,KAAK,EAAE;IACLC,MAAM,EAAE,EADH;IAELC,KAAK,EAAE,GAFF;IAGL;IACA;IACAC,UAAU,EAAE,EALP,CAML;IACA;;EAPK,CAPwB;EAgB/BC,IAAI,EAAE;IACJ;IACA;IACAC,OAAO,EAAE,GAHL,CAIJ;;EAJI,CAhByB;EAsB/BC,GAAG,EAAE;IACHC,aAAa,EAAE,KADZ;IAEHC,QAAQ,EAAE,QAFP;IAGHC,UAAU,EAAE,QAHT;IAIHR,MAAM,EAAE,EAJL;IAKHS,YAAY,EAAE,CALX,CAMH;IACA;IACA;;EARG,CAtB0B;EAgC/BC,OAAO,EAAE,CACP;IACA;EAFO,CAhCsB;EAoC/BC,IAAI,EAAE;IACJC,MAAM,EAAE;EADJ,CApCyB;EAuC/BC,MAAM,EAAE;IACNb,MAAM,EAAE,EADF;IAENS,YAAY,EAAE,CAFR,CAGN;IACA;;EAJM;AAvCuB,CAAlB,CAAf,C,CA+CA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AAEA;AACA;AACA;;AACA,MAAMK,UAAU,GAAG,CAAC;EAACC;AAAD,CAAD,kBACjB,oBAAC,IAAD;EAAM,KAAK,EAAEtB,MAAM,CAACE;AAApB,gBACE,oBAAC,IAAD;EAAM,KAAK,EAAEF,MAAM,CAACM;AAApB,GAA4BgB,WAA5B,CADF,CADF;;AAMAD,UAAU,CAACtB,SAAX,2CAAuBA,SAAvB;AAEA,eAAesB,UAAf"}
1
+ {"version":3,"file":"index.native.js","names":["Onboarding"],"sources":["../../../../src/template/app-review/onboarding/index.native.js"],"sourcesContent":["import Onboarding from '../../../atom/review-presentation/index.native';\n\nexport default Onboarding;\n"],"mappings":"AAAA,OAAOA,UAAP,MAAuB,gDAAvB;AAEA,eAAeA,UAAf"}
@@ -71,6 +71,7 @@ export declare type Translations = {
71
71
  ariaLabel: string;
72
72
  title: string;
73
73
  text: string;
74
+ button: string;
74
75
  labelList: {
75
76
  skills: {
76
77
  text: string;
@@ -1 +1 @@
1
- {"version":3,"file":"default-mobile-translations.d.ts","sourceRoot":"","sources":["../../src/variables/default-mobile-translations.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"default-mobile-translations.d.ts","sourceRoot":"","sources":["../../src/variables/default-mobile-translations.ts"],"names":[],"mappings":"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"}
@@ -67,6 +67,7 @@ const defaultMobileTranslations = {
67
67
  ariaLabel: 'Review Presentation Container',
68
68
  title: 'What is<br/>Revision Mode ?',
69
69
  text: 'Information vanishes from your mind as soon as it enters it? It’s perfectly normal: there is no retention without repetition! To keep your knowledge in the long term, use the Revision Mode to refresh your memory!',
70
+ button: '',
70
71
  labelList: {
71
72
  skills: {
72
73
  text: 'Choose 1 skill',
@@ -1 +1 @@
1
- {"version":3,"file":"default-mobile-translations.js","names":["defaultMobileTranslations","accessTheLesson","appPodcast","podcast","podcasts","playlist","home","courseMode","allPlaylists","seeMore","podcastCoorpacademy","podcastCourseMode","podcastMode","switchText","switchCourseText","cancelSwitch","switchOk","seeLess","play","noResult","allEpisodes","seeAllEpisodes","addToFavorites","removeFromFavorites","shareEpisode","close","errorNetwork","bottomNavigation","search","favorites","byPlaylists","searchForPodcasts","searchTitle","searchText","searchSubText","settings","wifi","high","medium","low","mobile","title","addedToFavorites","removedFromFavorites","errorFavoriteAdd","errorFavorite","errorFavoriteRemove","infoNewFeature","message","cta","appReview","ariaLabel","presentation","text","labelList","skills","tooltip","questions","lifes","allright","listTitle","listAriaLabel","card","buttonText","noSkills","article","authenticationMagicLinkHeader","authenticationMagicLinkStepOneDescription","authenticationMagicLinkStepTwoDescription","authenticationMagicLinkStepThreeDescription","authenticationMagicLinkTitle","authenticationQRCodeHeader","authenticationQRCodeStepOneDescription","authenticationQRCodeStepTwoDescription","authenticationQRCodeStepThreeDescription","authenticationQRCodeTitle","authorizeNotifications","askForHelp","backToHome","bonus","cancel","clue","clueStarsToLoose","congratulations","connectionLost","connectionRestored","context","correction","currentlyDoingReminder","dataLost","didYouKnowThat","finishCourse","finishCourseWordings","description","finishLearning","forYou","gameOver","getAnExtralife","goodAnswer","goodJob","goToQuestion","highscore","howToSignIn","iWantIt","keyPoint","lesson","logOut","needHelp","new","next","nextChapter","nextLevel","noResults","noResultsDescription","notifications","ok","ooops","open","openBrowser","openSettings","ouch","outOfLives","notificationSamples","permission","permissionCamera","permissionNotificationHeadline","permissionNotificationDescription","permissionNotificationAuthorize","maybeLater","platformHasBeenDisabled","question","quit","reactivatePlatform","refresh","refreshEnjoyLearning","refreshNotWorking","relatedSubjects","resumeLearning","retryChapter","retryLevel","scanQRCode","scorm","externalFinishCourse","seeClue","selectSomethingBelow","startDemo","startLearning","selectAnAnswer","signInDesktop","signInMobile","step","suggestion","suggestionWordings","typeHere","validate","version","video","videoLoadingError","unlockNextLevel","upgrade","upgradeDescription","winAdditionalStars","welcome","welcomeDescription","welcomeUser","wrongAnswer","yesNotifyMe","yourAnswer","yourAnswers"],"sources":["../../src/variables/default-mobile-translations.ts"],"sourcesContent":["type NotificationWording = {\n title: string;\n description: string;\n};\n\nexport type Translations = {\n accessTheLesson: string;\n appPodcast: {\n infoNewFeature: {\n title: string;\n message: string;\n cta: string;\n };\n podcast: string;\n podcasts: string;\n playlist: string;\n home: string;\n courseMode: string;\n allPlaylists: string;\n seeMore: string;\n podcastCoorpacademy: string;\n podcastCourseMode: string;\n podcastMode: string;\n switchText: string;\n switchCourseText: string;\n cancelSwitch: string;\n switchOk: string;\n seeLess: string;\n play: string;\n noResult: string;\n allEpisodes: string;\n seeAllEpisodes: string;\n addToFavorites: string;\n removeFromFavorites: string;\n shareEpisode: string;\n close: string;\n errorNetwork: string;\n bottomNavigation: {\n home: string;\n search: string;\n favorites: string;\n podcasts: string;\n };\n search: {\n byPlaylists: string;\n searchForPodcasts: string;\n searchTitle: string;\n searchText: string;\n searchSubText: string;\n };\n settings: {\n settings: string;\n wifi: string;\n high: string;\n medium: string;\n low: string;\n mobile: string;\n };\n favorites: {\n title: string;\n podcasts: string;\n addedToFavorites: string;\n removedFromFavorites: string;\n errorFavoriteAdd: string;\n errorFavorite: string;\n errorFavoriteRemove: string;\n };\n };\n appReview: {\n ariaLabel: string;\n presentation: {\n ariaLabel: string;\n title: string;\n text: string;\n labelList: {\n skills: {\n text: string;\n tooltip: string;\n };\n questions: {\n text: string;\n tooltip: string;\n };\n lifes: {\n text: string;\n tooltip: string;\n };\n allright: {\n text: string;\n tooltip: string;\n };\n };\n };\n listTitle: string;\n listAriaLabel: string;\n card: {\n ariaLabel: string;\n text: string;\n buttonText: string;\n };\n noSkills: {\n title: string;\n text: string;\n };\n };\n article: string;\n authenticationMagicLinkHeader: string;\n authenticationMagicLinkStepOneDescription: string;\n authenticationMagicLinkStepTwoDescription: string;\n authenticationMagicLinkStepThreeDescription: string;\n authenticationMagicLinkTitle: string;\n authenticationQRCodeHeader: string;\n authenticationQRCodeStepOneDescription: string;\n authenticationQRCodeStepTwoDescription: string;\n authenticationQRCodeStepThreeDescription: string;\n authenticationQRCodeTitle: string;\n authorizeNotifications: string;\n askForHelp: string;\n backToHome: string;\n bonus: string;\n cancel: string;\n clue: string;\n clueStarsToLoose: string;\n congratulations: string;\n connectionLost: string;\n connectionRestored: string;\n context: string;\n correction: string;\n dataLost: string;\n didYouKnowThat: string;\n finishCourse: string;\n finishCourseWordings: NotificationWording[];\n finishLearning: string;\n forYou: string;\n gameOver: string;\n getAnExtralife: string;\n goodAnswer: string;\n goodJob: string;\n goToQuestion: string;\n highscore: string;\n howToSignIn: string;\n iWantIt: string;\n keyPoint: string;\n lesson: string;\n logOut: string;\n needHelp: string;\n new: string;\n next: string;\n nextLevel: string;\n nextChapter: string;\n noResults: string;\n noResultsDescription: string;\n ok: string;\n ooops: string;\n open: string;\n openBrowser: string;\n openSettings: string;\n ouch: string;\n outOfLives: string;\n permission: string;\n permissionCamera: string;\n notifications: string;\n notificationSamples: NotificationWording[];\n permissionNotificationHeadline: string;\n permissionNotificationDescription: string;\n permissionNotificationAuthorize: string;\n currentlyDoingReminder: string;\n yesNotifyMe: string;\n maybeLater: string;\n platformHasBeenDisabled: string;\n podcast: string;\n question: string;\n quit: string;\n reactivatePlatform: string;\n refresh: string;\n refreshEnjoyLearning: string;\n refreshNotWorking: string;\n resumeLearning: string;\n retryLevel: string;\n retryChapter: string;\n relatedSubjects: string;\n scanQRCode: string;\n scorm: string;\n externalFinishCourse: string;\n search: string;\n seeClue: string;\n selectAnAnswer: string;\n selectSomethingBelow: string;\n settings: string;\n signInDesktop: string;\n signInMobile: string;\n startDemo: string;\n startLearning: string;\n step: string;\n suggestion: string;\n suggestionWordings: NotificationWording[];\n typeHere: string;\n unlockNextLevel: string;\n upgrade: string;\n upgradeDescription: string;\n validate: string;\n version: string;\n video: string;\n videoLoadingError: string;\n welcome: string;\n welcomeDescription: string;\n welcomeUser: string;\n winAdditionalStars: string;\n wrongAnswer: string;\n yourAnswer: string;\n yourAnswers: string;\n};\n\nconst defaultMobileTranslations: Translations = {\n accessTheLesson: 'Access the lesson',\n appPodcast: {\n podcast: 'Podcast',\n podcasts: 'Podcasts',\n playlist: 'Playlist',\n home: 'Home',\n courseMode: 'Course Mode',\n allPlaylists: 'All Playlists',\n seeMore: 'See more',\n podcastCoorpacademy: 'Coorpacademy',\n podcastCourseMode: 'Course mode',\n podcastMode: 'Podcast mode',\n switchText: 'Switching to Course mode will interrupt the listening.',\n switchCourseText: 'You are about to switch on Podcast mode',\n cancelSwitch: 'No, cancel',\n switchOk: 'Yes, switch',\n seeLess: 'See less',\n play: 'Play',\n noResult: 'No results!',\n allEpisodes: 'All episodes',\n seeAllEpisodes: 'See all episode',\n addToFavorites: 'Add to my favorites',\n removeFromFavorites: 'Remove from my favorites',\n shareEpisode: 'Share this episode',\n close: 'Close',\n errorNetwork: 'something went wrong',\n bottomNavigation: {\n home: 'Home',\n search: 'Search',\n favorites: 'Favorites',\n podcasts: 'podcasts'\n },\n search: {\n byPlaylists: 'By playlists',\n searchForPodcasts: 'Search for podcasts',\n searchTitle: 'Search',\n searchText: 'No results for',\n searchSubText: 'Please check the spelling or use other keywords'\n },\n settings: {\n settings: 'Settings',\n wifi: 'Wifi audio quality',\n high: 'High quality',\n medium: 'Medium quality',\n low: 'Low quality',\n mobile: 'Mobile audio quality'\n },\n favorites: {\n title: 'Favorites',\n podcasts: 'podcasts',\n addedToFavorites: 'Added to your favorites',\n removedFromFavorites: 'Removed from your favorites',\n errorFavoriteAdd: 'Could not add to your favorites. Please try again.',\n errorFavorite: 'There was an error',\n errorFavoriteRemove: 'Could not remove from your favorites. Please try again.'\n },\n infoNewFeature: {\n title: 'Introducing the new Podcast mode',\n message:\n 'Click on the button at the top of your app to discover a whole new audio experience',\n cta: 'Start learning'\n }\n },\n appReview: {\n ariaLabel: 'Review Skills Template',\n presentation: {\n ariaLabel: 'Review Presentation Container',\n title: 'What is<br/>Revision Mode ?',\n text: 'Information vanishes from your mind as soon as it enters it? It’s perfectly normal: there is no retention without repetition! To keep your knowledge in the long term, use the Revision Mode to refresh your memory!',\n labelList: {\n skills: {text: 'Choose 1 skill', tooltip: 'You can review one skill at a time.'},\n questions: {\n text: 'Answer 5 questions',\n tooltip: 'Answer the 5 questions correctly to validate your revision mode session.'\n },\n lifes: {\n text: 'You have infinite live',\n tooltip: 'You can answer as many times as you like to complete your session.'\n },\n allright: {\n text: 'Get it all right',\n tooltip: 'To validate your session, you must get a correct answer to each question.'\n }\n }\n },\n listTitle: 'Skills you can review',\n listAriaLabel: 'Review Skills Container',\n card: {\n ariaLabel: 'Skill Card',\n text: '{{total}} questions to review',\n buttonText: 'Review this skill'\n },\n noSkills: {\n title: 'You have no skill to revise yet',\n text: 'First you need to complete courses before you can review different skills.'\n }\n },\n article: 'Documents',\n authenticationMagicLinkHeader:\n 'Click on the link you received by email to connect to your platform',\n authenticationMagicLinkStepOneDescription:\n 'Go to your <b>professional mailbox</b> with this phone',\n authenticationMagicLinkStepTwoDescription:\n '<b>Open the email</b> with the invitation to download the Coorpacademy App',\n authenticationMagicLinkStepThreeDescription: 'Click on the button <b>\"Connect to the App\"</b>',\n authenticationMagicLinkTitle: 'Magic link',\n authenticationQRCodeHeader:\n \"Didn't receive an email? That's fine! We'll use a computer to verify your identity on the web platform\",\n authenticationQRCodeStepOneDescription:\n 'Connect to your learning platform <b>with a computer</b>',\n authenticationQRCodeStepTwoDescription:\n 'Go to <b>your Account</b> <br/>in the upper right-hand corner',\n authenticationQRCodeStepThreeDescription:\n '<b>VoilΓ !</b><br/>Scan your QR code using the button below',\n authenticationQRCodeTitle: 'QR Code',\n authorizeNotifications: 'Authorize notifications',\n askForHelp: 'Ask for help',\n backToHome: 'Back to home',\n bonus: 'Bonus!',\n cancel: 'Cancel',\n clue: 'Clue',\n clueStarsToLoose:\n 'Unlocking the clue reduces the stars you can gain on this question by {{count}} (if you get it right)',\n congratulations: 'Congratulations!',\n connectionLost: 'No Internet connection',\n connectionRestored: 'You are now connected to the Internet',\n context: 'Context',\n correction: 'Correction',\n currentlyDoingReminder: 'Currently doing reminder',\n dataLost: 'Your data seems to be lost',\n didYouKnowThat: 'Did you know that?',\n finishCourse: 'Finish Course',\n finishCourseWordings: [\n {\n title: \"Let's gets it done {{givenName}}! πŸš€\",\n description: 'Complete this course: \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: 'Your mission, should you choose to accept it 😎',\n description: 'Finish your course: \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: '{{givenName}}, I bet you can do it! πŸ’ͺ',\n description: 'Finish the course: \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: 'Ready to learn {{givenName}}? πŸ’ͺ',\n description: 'Let\\'s complete \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: '{{givenName}}, you are close to complete your course πŸ™ƒ',\n description: 'Let\\'s finish \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: 'Do you accept the challenge {{givenName}}? πŸ’ͺ',\n description: 'Complete the course: \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: '{{givenName}}, your challenge of the day! πŸ˜‰',\n description: 'Complete the course: \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: \"{{givenName}}, it's time to learn! πŸ˜‰\",\n description: 'Continue your course: \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: 'How about learning {{givenName}}? πŸš€',\n description: 'Complete the course: \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: \"Once it's done, it's done πŸ™ƒ\",\n description: 'Complete the course: \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: 'Your course is almost completed! βœ“',\n description: 'Complete the course: \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: '{{givenName}}, you are so close! πŸ™ƒ',\n description: 'Just a few questions to complete \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: 'Come on {{givenName}}, almost finished β˜‘',\n description: 'Complete your course: \\\\\"{{contentName}}\\\\\"'\n }\n ],\n finishLearning: 'Continue this one first',\n forYou: 'Our top picks for you',\n gameOver: 'Game over',\n getAnExtralife: 'Get an extra life by viewing the lesson',\n goodAnswer: 'Good answer',\n goodJob: 'Good job!',\n goToQuestion: 'Go to question',\n highscore: 'You have a new highscore<br><b>you just won {{score}} stars</b>',\n howToSignIn: 'Did you receive an email to download the app?',\n iWantIt: 'I want it !',\n keyPoint: 'Key point',\n lesson: 'Lesson',\n logOut: 'Log out',\n needHelp: 'Need help?',\n new: 'new',\n next: 'Next',\n nextChapter: 'Next chapter',\n nextLevel: 'Next level',\n noResults: 'No results',\n noResultsDescription: 'Your search did not have any results.<br/>Try searching other keywords.',\n notifications: 'Notifications',\n ok: 'OK',\n ooops: 'Ooops...',\n open: 'Open',\n openBrowser: 'Open <b>my mailbox</b>',\n openSettings: 'Open settings',\n ouch: 'Ouch...',\n outOfLives: 'You are out of lives!',\n notificationSamples: [\n {title: 'Challenge of the day πŸ‘Š', description: 'Start the course<br><b>Online Customer</b>'}\n ],\n permission: 'Permission',\n permissionCamera:\n 'We need to access your camera in order to scan your QR code and authenticate you.',\n permissionNotificationHeadline: 'We help you stay motivated!',\n permissionNotificationDescription:\n 'Get notifications and stay on top of your goals. We promise not to blow up your phone a million times a day.',\n permissionNotificationAuthorize: 'Authorize notifications',\n maybeLater: 'Maybe later',\n platformHasBeenDisabled: 'The app has been disabled for your platform',\n podcast: 'Podcasts',\n question: 'Question',\n quit: 'Quit',\n reactivatePlatform:\n 'if you want to reactivate it, contact your manager or click on the link below and we will pass the message on',\n refresh: 'Refresh',\n refreshEnjoyLearning:\n 'in the network between Saturn and the Earth, please refresh in order to enjoy learning',\n refreshNotWorking: 'Refresh not working?',\n relatedSubjects: 'Recommended for you:',\n resumeLearning: 'Continue Learning',\n retryChapter: 'Retry chapter',\n retryLevel: 'Retry level',\n scanQRCode: 'Scan your <b>QR code</b>',\n scorm: 'Animated resources',\n externalFinishCourse: 'I have completed this course',\n search: 'Search',\n seeClue: 'See clue',\n selectSomethingBelow: 'Select something below',\n settings: 'Settings',\n startDemo: 'No account? <a href=\"/\"><b><u>Start trial!</u></b></a>',\n startLearning: 'You should start with this one',\n selectAnAnswer: 'Select an answer',\n signInDesktop: 'No',\n signInMobile: 'Yes',\n step: 'Step',\n suggestion: 'Course recommendations',\n suggestionWordings: [\n {\n title: '{{givenName}}, here is a course for you! πŸ‘€',\n description: 'Find out with this course \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: 'In the mood for learning {{givenName}}? πŸš€',\n description: 'Check out \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: 'Your mission, should you choose to accept it 😎',\n description: 'Check out \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: '{{givenName}}, your challenge of the day awaits you! πŸ˜‰',\n description: 'Start the course \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: '{{givenName}}, take on the challenge πŸ’ͺ',\n description: 'Start the course \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: '{{givenName}}, broaden your horizons!',\n description: 'Find out more about \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: \"{{givenName}}, it's time to learn! πŸ˜‰\",\n description: 'Start the course \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: \"It's time to (re) launch {{givenName}} πŸš€\",\n description: 'Start this course \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: '{{givenName}}, I bet you can do it! πŸ’ͺ',\n description: 'Start the course \\\\\"{{contentName}}\\\\\"'\n }\n ],\n typeHere: 'Type here',\n validate: 'Submit',\n version: 'Version',\n video: 'Videos',\n videoLoadingError: 'An error occurred while loading the video, please try again.',\n unlockNextLevel: 'You have just unlocked<br><b>{{levelName}} level</b>',\n upgrade: 'Upgrade',\n upgradeDescription:\n 'Your application has been updated! Please download the latest version to enjoy it.',\n winAdditionalStars:\n 'Win {{count}} additional stars in this chapter the first time you view a lesson!',\n welcome: 'Welcome',\n welcomeDescription: 'This app is linked to your account on your company’s Learning Platform.',\n welcomeUser: 'Welcome, {{displayname}}!',\n wrongAnswer: 'Wrong answer',\n yesNotifyMe: 'Yes, notify me',\n yourAnswer: 'Your answer:',\n yourAnswers: 'Your answers:'\n};\n\nexport default defaultMobileTranslations;\n"],"mappings":"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"}
1
+ {"version":3,"file":"default-mobile-translations.js","names":["defaultMobileTranslations","accessTheLesson","appPodcast","podcast","podcasts","playlist","home","courseMode","allPlaylists","seeMore","podcastCoorpacademy","podcastCourseMode","podcastMode","switchText","switchCourseText","cancelSwitch","switchOk","seeLess","play","noResult","allEpisodes","seeAllEpisodes","addToFavorites","removeFromFavorites","shareEpisode","close","errorNetwork","bottomNavigation","search","favorites","byPlaylists","searchForPodcasts","searchTitle","searchText","searchSubText","settings","wifi","high","medium","low","mobile","title","addedToFavorites","removedFromFavorites","errorFavoriteAdd","errorFavorite","errorFavoriteRemove","infoNewFeature","message","cta","appReview","ariaLabel","presentation","text","button","labelList","skills","tooltip","questions","lifes","allright","listTitle","listAriaLabel","card","buttonText","noSkills","article","authenticationMagicLinkHeader","authenticationMagicLinkStepOneDescription","authenticationMagicLinkStepTwoDescription","authenticationMagicLinkStepThreeDescription","authenticationMagicLinkTitle","authenticationQRCodeHeader","authenticationQRCodeStepOneDescription","authenticationQRCodeStepTwoDescription","authenticationQRCodeStepThreeDescription","authenticationQRCodeTitle","authorizeNotifications","askForHelp","backToHome","bonus","cancel","clue","clueStarsToLoose","congratulations","connectionLost","connectionRestored","context","correction","currentlyDoingReminder","dataLost","didYouKnowThat","finishCourse","finishCourseWordings","description","finishLearning","forYou","gameOver","getAnExtralife","goodAnswer","goodJob","goToQuestion","highscore","howToSignIn","iWantIt","keyPoint","lesson","logOut","needHelp","new","next","nextChapter","nextLevel","noResults","noResultsDescription","notifications","ok","ooops","open","openBrowser","openSettings","ouch","outOfLives","notificationSamples","permission","permissionCamera","permissionNotificationHeadline","permissionNotificationDescription","permissionNotificationAuthorize","maybeLater","platformHasBeenDisabled","question","quit","reactivatePlatform","refresh","refreshEnjoyLearning","refreshNotWorking","relatedSubjects","resumeLearning","retryChapter","retryLevel","scanQRCode","scorm","externalFinishCourse","seeClue","selectSomethingBelow","startDemo","startLearning","selectAnAnswer","signInDesktop","signInMobile","step","suggestion","suggestionWordings","typeHere","validate","version","video","videoLoadingError","unlockNextLevel","upgrade","upgradeDescription","winAdditionalStars","welcome","welcomeDescription","welcomeUser","wrongAnswer","yesNotifyMe","yourAnswer","yourAnswers"],"sources":["../../src/variables/default-mobile-translations.ts"],"sourcesContent":["type NotificationWording = {\n title: string;\n description: string;\n};\n\nexport type Translations = {\n accessTheLesson: string;\n appPodcast: {\n infoNewFeature: {\n title: string;\n message: string;\n cta: string;\n };\n podcast: string;\n podcasts: string;\n playlist: string;\n home: string;\n courseMode: string;\n allPlaylists: string;\n seeMore: string;\n podcastCoorpacademy: string;\n podcastCourseMode: string;\n podcastMode: string;\n switchText: string;\n switchCourseText: string;\n cancelSwitch: string;\n switchOk: string;\n seeLess: string;\n play: string;\n noResult: string;\n allEpisodes: string;\n seeAllEpisodes: string;\n addToFavorites: string;\n removeFromFavorites: string;\n shareEpisode: string;\n close: string;\n errorNetwork: string;\n bottomNavigation: {\n home: string;\n search: string;\n favorites: string;\n podcasts: string;\n };\n search: {\n byPlaylists: string;\n searchForPodcasts: string;\n searchTitle: string;\n searchText: string;\n searchSubText: string;\n };\n settings: {\n settings: string;\n wifi: string;\n high: string;\n medium: string;\n low: string;\n mobile: string;\n };\n favorites: {\n title: string;\n podcasts: string;\n addedToFavorites: string;\n removedFromFavorites: string;\n errorFavoriteAdd: string;\n errorFavorite: string;\n errorFavoriteRemove: string;\n };\n };\n appReview: {\n ariaLabel: string;\n presentation: {\n ariaLabel: string;\n title: string;\n text: string;\n button: string;\n labelList: {\n skills: {\n text: string;\n tooltip: string;\n };\n questions: {\n text: string;\n tooltip: string;\n };\n lifes: {\n text: string;\n tooltip: string;\n };\n allright: {\n text: string;\n tooltip: string;\n };\n };\n };\n listTitle: string;\n listAriaLabel: string;\n card: {\n ariaLabel: string;\n text: string;\n buttonText: string;\n };\n noSkills: {\n title: string;\n text: string;\n };\n };\n article: string;\n authenticationMagicLinkHeader: string;\n authenticationMagicLinkStepOneDescription: string;\n authenticationMagicLinkStepTwoDescription: string;\n authenticationMagicLinkStepThreeDescription: string;\n authenticationMagicLinkTitle: string;\n authenticationQRCodeHeader: string;\n authenticationQRCodeStepOneDescription: string;\n authenticationQRCodeStepTwoDescription: string;\n authenticationQRCodeStepThreeDescription: string;\n authenticationQRCodeTitle: string;\n authorizeNotifications: string;\n askForHelp: string;\n backToHome: string;\n bonus: string;\n cancel: string;\n clue: string;\n clueStarsToLoose: string;\n congratulations: string;\n connectionLost: string;\n connectionRestored: string;\n context: string;\n correction: string;\n dataLost: string;\n didYouKnowThat: string;\n finishCourse: string;\n finishCourseWordings: NotificationWording[];\n finishLearning: string;\n forYou: string;\n gameOver: string;\n getAnExtralife: string;\n goodAnswer: string;\n goodJob: string;\n goToQuestion: string;\n highscore: string;\n howToSignIn: string;\n iWantIt: string;\n keyPoint: string;\n lesson: string;\n logOut: string;\n needHelp: string;\n new: string;\n next: string;\n nextLevel: string;\n nextChapter: string;\n noResults: string;\n noResultsDescription: string;\n ok: string;\n ooops: string;\n open: string;\n openBrowser: string;\n openSettings: string;\n ouch: string;\n outOfLives: string;\n permission: string;\n permissionCamera: string;\n notifications: string;\n notificationSamples: NotificationWording[];\n permissionNotificationHeadline: string;\n permissionNotificationDescription: string;\n permissionNotificationAuthorize: string;\n currentlyDoingReminder: string;\n yesNotifyMe: string;\n maybeLater: string;\n platformHasBeenDisabled: string;\n podcast: string;\n question: string;\n quit: string;\n reactivatePlatform: string;\n refresh: string;\n refreshEnjoyLearning: string;\n refreshNotWorking: string;\n resumeLearning: string;\n retryLevel: string;\n retryChapter: string;\n relatedSubjects: string;\n scanQRCode: string;\n scorm: string;\n externalFinishCourse: string;\n search: string;\n seeClue: string;\n selectAnAnswer: string;\n selectSomethingBelow: string;\n settings: string;\n signInDesktop: string;\n signInMobile: string;\n startDemo: string;\n startLearning: string;\n step: string;\n suggestion: string;\n suggestionWordings: NotificationWording[];\n typeHere: string;\n unlockNextLevel: string;\n upgrade: string;\n upgradeDescription: string;\n validate: string;\n version: string;\n video: string;\n videoLoadingError: string;\n welcome: string;\n welcomeDescription: string;\n welcomeUser: string;\n winAdditionalStars: string;\n wrongAnswer: string;\n yourAnswer: string;\n yourAnswers: string;\n};\n\nconst defaultMobileTranslations: Translations = {\n accessTheLesson: 'Access the lesson',\n appPodcast: {\n podcast: 'Podcast',\n podcasts: 'Podcasts',\n playlist: 'Playlist',\n home: 'Home',\n courseMode: 'Course Mode',\n allPlaylists: 'All Playlists',\n seeMore: 'See more',\n podcastCoorpacademy: 'Coorpacademy',\n podcastCourseMode: 'Course mode',\n podcastMode: 'Podcast mode',\n switchText: 'Switching to Course mode will interrupt the listening.',\n switchCourseText: 'You are about to switch on Podcast mode',\n cancelSwitch: 'No, cancel',\n switchOk: 'Yes, switch',\n seeLess: 'See less',\n play: 'Play',\n noResult: 'No results!',\n allEpisodes: 'All episodes',\n seeAllEpisodes: 'See all episode',\n addToFavorites: 'Add to my favorites',\n removeFromFavorites: 'Remove from my favorites',\n shareEpisode: 'Share this episode',\n close: 'Close',\n errorNetwork: 'something went wrong',\n bottomNavigation: {\n home: 'Home',\n search: 'Search',\n favorites: 'Favorites',\n podcasts: 'podcasts'\n },\n search: {\n byPlaylists: 'By playlists',\n searchForPodcasts: 'Search for podcasts',\n searchTitle: 'Search',\n searchText: 'No results for',\n searchSubText: 'Please check the spelling or use other keywords'\n },\n settings: {\n settings: 'Settings',\n wifi: 'Wifi audio quality',\n high: 'High quality',\n medium: 'Medium quality',\n low: 'Low quality',\n mobile: 'Mobile audio quality'\n },\n favorites: {\n title: 'Favorites',\n podcasts: 'podcasts',\n addedToFavorites: 'Added to your favorites',\n removedFromFavorites: 'Removed from your favorites',\n errorFavoriteAdd: 'Could not add to your favorites. Please try again.',\n errorFavorite: 'There was an error',\n errorFavoriteRemove: 'Could not remove from your favorites. Please try again.'\n },\n infoNewFeature: {\n title: 'Introducing the new Podcast mode',\n message:\n 'Click on the button at the top of your app to discover a whole new audio experience',\n cta: 'Start learning'\n }\n },\n appReview: {\n ariaLabel: 'Review Skills Template',\n presentation: {\n ariaLabel: 'Review Presentation Container',\n title: 'What is<br/>Revision Mode ?',\n text: 'Information vanishes from your mind as soon as it enters it? It’s perfectly normal: there is no retention without repetition! To keep your knowledge in the long term, use the Revision Mode to refresh your memory!',\n button: '',\n labelList: {\n skills: {text: 'Choose 1 skill', tooltip: 'You can review one skill at a time.'},\n questions: {\n text: 'Answer 5 questions',\n tooltip: 'Answer the 5 questions correctly to validate your revision mode session.'\n },\n lifes: {\n text: 'You have infinite live',\n tooltip: 'You can answer as many times as you like to complete your session.'\n },\n allright: {\n text: 'Get it all right',\n tooltip: 'To validate your session, you must get a correct answer to each question.'\n }\n }\n },\n listTitle: 'Skills you can review',\n listAriaLabel: 'Review Skills Container',\n card: {\n ariaLabel: 'Skill Card',\n text: '{{total}} questions to review',\n buttonText: 'Review this skill'\n },\n noSkills: {\n title: 'You have no skill to revise yet',\n text: 'First you need to complete courses before you can review different skills.'\n }\n },\n article: 'Documents',\n authenticationMagicLinkHeader:\n 'Click on the link you received by email to connect to your platform',\n authenticationMagicLinkStepOneDescription:\n 'Go to your <b>professional mailbox</b> with this phone',\n authenticationMagicLinkStepTwoDescription:\n '<b>Open the email</b> with the invitation to download the Coorpacademy App',\n authenticationMagicLinkStepThreeDescription: 'Click on the button <b>\"Connect to the App\"</b>',\n authenticationMagicLinkTitle: 'Magic link',\n authenticationQRCodeHeader:\n \"Didn't receive an email? That's fine! We'll use a computer to verify your identity on the web platform\",\n authenticationQRCodeStepOneDescription:\n 'Connect to your learning platform <b>with a computer</b>',\n authenticationQRCodeStepTwoDescription:\n 'Go to <b>your Account</b> <br/>in the upper right-hand corner',\n authenticationQRCodeStepThreeDescription:\n '<b>VoilΓ !</b><br/>Scan your QR code using the button below',\n authenticationQRCodeTitle: 'QR Code',\n authorizeNotifications: 'Authorize notifications',\n askForHelp: 'Ask for help',\n backToHome: 'Back to home',\n bonus: 'Bonus!',\n cancel: 'Cancel',\n clue: 'Clue',\n clueStarsToLoose:\n 'Unlocking the clue reduces the stars you can gain on this question by {{count}} (if you get it right)',\n congratulations: 'Congratulations!',\n connectionLost: 'No Internet connection',\n connectionRestored: 'You are now connected to the Internet',\n context: 'Context',\n correction: 'Correction',\n currentlyDoingReminder: 'Currently doing reminder',\n dataLost: 'Your data seems to be lost',\n didYouKnowThat: 'Did you know that?',\n finishCourse: 'Finish Course',\n finishCourseWordings: [\n {\n title: \"Let's gets it done {{givenName}}! πŸš€\",\n description: 'Complete this course: \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: 'Your mission, should you choose to accept it 😎',\n description: 'Finish your course: \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: '{{givenName}}, I bet you can do it! πŸ’ͺ',\n description: 'Finish the course: \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: 'Ready to learn {{givenName}}? πŸ’ͺ',\n description: 'Let\\'s complete \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: '{{givenName}}, you are close to complete your course πŸ™ƒ',\n description: 'Let\\'s finish \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: 'Do you accept the challenge {{givenName}}? πŸ’ͺ',\n description: 'Complete the course: \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: '{{givenName}}, your challenge of the day! πŸ˜‰',\n description: 'Complete the course: \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: \"{{givenName}}, it's time to learn! πŸ˜‰\",\n description: 'Continue your course: \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: 'How about learning {{givenName}}? πŸš€',\n description: 'Complete the course: \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: \"Once it's done, it's done πŸ™ƒ\",\n description: 'Complete the course: \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: 'Your course is almost completed! βœ“',\n description: 'Complete the course: \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: '{{givenName}}, you are so close! πŸ™ƒ',\n description: 'Just a few questions to complete \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: 'Come on {{givenName}}, almost finished β˜‘',\n description: 'Complete your course: \\\\\"{{contentName}}\\\\\"'\n }\n ],\n finishLearning: 'Continue this one first',\n forYou: 'Our top picks for you',\n gameOver: 'Game over',\n getAnExtralife: 'Get an extra life by viewing the lesson',\n goodAnswer: 'Good answer',\n goodJob: 'Good job!',\n goToQuestion: 'Go to question',\n highscore: 'You have a new highscore<br><b>you just won {{score}} stars</b>',\n howToSignIn: 'Did you receive an email to download the app?',\n iWantIt: 'I want it !',\n keyPoint: 'Key point',\n lesson: 'Lesson',\n logOut: 'Log out',\n needHelp: 'Need help?',\n new: 'new',\n next: 'Next',\n nextChapter: 'Next chapter',\n nextLevel: 'Next level',\n noResults: 'No results',\n noResultsDescription: 'Your search did not have any results.<br/>Try searching other keywords.',\n notifications: 'Notifications',\n ok: 'OK',\n ooops: 'Ooops...',\n open: 'Open',\n openBrowser: 'Open <b>my mailbox</b>',\n openSettings: 'Open settings',\n ouch: 'Ouch...',\n outOfLives: 'You are out of lives!',\n notificationSamples: [\n {title: 'Challenge of the day πŸ‘Š', description: 'Start the course<br><b>Online Customer</b>'}\n ],\n permission: 'Permission',\n permissionCamera:\n 'We need to access your camera in order to scan your QR code and authenticate you.',\n permissionNotificationHeadline: 'We help you stay motivated!',\n permissionNotificationDescription:\n 'Get notifications and stay on top of your goals. We promise not to blow up your phone a million times a day.',\n permissionNotificationAuthorize: 'Authorize notifications',\n maybeLater: 'Maybe later',\n platformHasBeenDisabled: 'The app has been disabled for your platform',\n podcast: 'Podcasts',\n question: 'Question',\n quit: 'Quit',\n reactivatePlatform:\n 'if you want to reactivate it, contact your manager or click on the link below and we will pass the message on',\n refresh: 'Refresh',\n refreshEnjoyLearning:\n 'in the network between Saturn and the Earth, please refresh in order to enjoy learning',\n refreshNotWorking: 'Refresh not working?',\n relatedSubjects: 'Recommended for you:',\n resumeLearning: 'Continue Learning',\n retryChapter: 'Retry chapter',\n retryLevel: 'Retry level',\n scanQRCode: 'Scan your <b>QR code</b>',\n scorm: 'Animated resources',\n externalFinishCourse: 'I have completed this course',\n search: 'Search',\n seeClue: 'See clue',\n selectSomethingBelow: 'Select something below',\n settings: 'Settings',\n startDemo: 'No account? <a href=\"/\"><b><u>Start trial!</u></b></a>',\n startLearning: 'You should start with this one',\n selectAnAnswer: 'Select an answer',\n signInDesktop: 'No',\n signInMobile: 'Yes',\n step: 'Step',\n suggestion: 'Course recommendations',\n suggestionWordings: [\n {\n title: '{{givenName}}, here is a course for you! πŸ‘€',\n description: 'Find out with this course \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: 'In the mood for learning {{givenName}}? πŸš€',\n description: 'Check out \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: 'Your mission, should you choose to accept it 😎',\n description: 'Check out \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: '{{givenName}}, your challenge of the day awaits you! πŸ˜‰',\n description: 'Start the course \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: '{{givenName}}, take on the challenge πŸ’ͺ',\n description: 'Start the course \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: '{{givenName}}, broaden your horizons!',\n description: 'Find out more about \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: \"{{givenName}}, it's time to learn! πŸ˜‰\",\n description: 'Start the course \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: \"It's time to (re) launch {{givenName}} πŸš€\",\n description: 'Start this course \\\\\"{{contentName}}\\\\\"'\n },\n {\n title: '{{givenName}}, I bet you can do it! πŸ’ͺ',\n description: 'Start the course \\\\\"{{contentName}}\\\\\"'\n }\n ],\n typeHere: 'Type here',\n validate: 'Submit',\n version: 'Version',\n video: 'Videos',\n videoLoadingError: 'An error occurred while loading the video, please try again.',\n unlockNextLevel: 'You have just unlocked<br><b>{{levelName}} level</b>',\n upgrade: 'Upgrade',\n upgradeDescription:\n 'Your application has been updated! Please download the latest version to enjoy it.',\n winAdditionalStars:\n 'Win {{count}} additional stars in this chapter the first time you view a lesson!',\n welcome: 'Welcome',\n welcomeDescription: 'This app is linked to your account on your company’s Learning Platform.',\n welcomeUser: 'Welcome, {{displayname}}!',\n wrongAnswer: 'Wrong answer',\n yesNotifyMe: 'Yes, notify me',\n yourAnswer: 'Your answer:',\n yourAnswers: 'Your answers:'\n};\n\nexport default defaultMobileTranslations;\n"],"mappings":"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"}
@@ -17,7 +17,8 @@ export declare type Colors = {
17
17
  primary: string;
18
18
  };
19
19
  text: {
20
- primary: '#06265B';
20
+ primary: string;
21
+ secondary: string;
21
22
  };
22
23
  cta: string;
23
24
  negative: string;
@@ -1 +1 @@
1
- {"version":3,"file":"theme.native.d.ts","sourceRoot":"","sources":["../../src/variables/theme.native.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAC,MAAM,cAAc,CAAC;AAGvC,oBAAY,SAAS,GAAG,OAAO,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,GAAG,QAAQ,GAAG,OAAO,GAAG,QAAQ,CAAC;AAE5F,eAAO,MAAM,sBAAsB,YAAY,CAAC;AAEhD,oBAAY,MAAM,GAAG;IACnB,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE;QACJ,KAAK,EAAE,MAAM,CAAC;QACd,KAAK,EAAE,MAAM,CAAC;QACd,OAAO,EAAE,MAAM,CAAC;QAChB,WAAW,EAAE,MAAM,CAAC;QACpB,MAAM,EAAE,MAAM,CAAC;QACf,IAAI,EAAE,MAAM,CAAC;QACb,SAAS,EAAE,MAAM,CAAC;KACnB,CAAC;IACF,OAAO,EAAE;QACP,UAAU,EAAE,MAAM,CAAC;QACnB,OAAO,EAAE,MAAM,CAAC;KACjB,CAAC;IACF,IAAI,EAAE;QACJ,OAAO,EAAE,SAAS,CAAC;KACpB,CAAC;IACF,GAAG,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,YAAY,EAAE,MAAM,CAAC;IACrB,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,oBAAY,KAAK,GAAG;IAClB,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE;QACP,KAAK,EAAE,MAAM,CAAC;QACd,IAAI,EAAE,MAAM,CAAC;QACb,KAAK,EAAE,MAAM,CAAC;QACd,IAAI,EAAE,MAAM,CAAC;QACb,MAAM,EAAE,MAAM,CAAC;QACf,KAAK,EAAE,MAAM,CAAC;QACd,MAAM,EAAE,MAAM,CAAC;KAChB,CAAC;IACF,MAAM,EAAE;QACN,MAAM,EAAE,MAAM,CAAC;QACf,MAAM,EAAE,MAAM,CAAC;QACf,IAAI,EAAE,MAAM,CAAC;QACb,MAAM,EAAE,MAAM,CAAC;QACf,OAAO,EAAE,MAAM,CAAC;QAChB,MAAM,EAAE,MAAM,CAAC;QACf,SAAS,EAAE,MAAM,CAAC;KACnB,CAAC;IACF,UAAU,EAAE;QACV,OAAO,EAAE,SAAS,CAAC,YAAY,CAAC,CAAC;QACjC,QAAQ,EAAE,SAAS,CAAC,YAAY,CAAC,CAAC;QAClC,IAAI,EAAE,SAAS,CAAC,YAAY,CAAC,CAAC;QAC9B,SAAS,EAAE,SAAS,CAAC,YAAY,CAAC,CAAC;KACpC,CAAC;IACF,QAAQ,EAAE;QACR,UAAU,EAAE,SAAS,CAAC,UAAU,CAAC,CAAC;QAClC,KAAK,EAAE,SAAS,CAAC,UAAU,CAAC,CAAC;QAC7B,MAAM,EAAE,SAAS,CAAC,UAAU,CAAC,CAAC;QAC9B,OAAO,EAAE,SAAS,CAAC,UAAU,CAAC,CAAC;QAC/B,KAAK,EAAE,SAAS,CAAC,UAAU,CAAC,CAAC;QAC7B,MAAM,EAAE,SAAS,CAAC,UAAU,CAAC,CAAC;QAC9B,OAAO,EAAE,SAAS,CAAC,UAAU,CAAC,CAAC;QAC/B,QAAQ,EAAE,SAAS,CAAC,UAAU,CAAC,CAAC;KACjC,CAAC;IACF,aAAa,EAAE;QACb,MAAM,EAAE,MAAM,CAAC;KAChB,CAAC;CACH,CAAC;AAEF,QAAA,MAAM,YAAY,EAAE,KAiEnB,CAAC;AAEF,eAAe,YAAY,CAAC"}
1
+ {"version":3,"file":"theme.native.d.ts","sourceRoot":"","sources":["../../src/variables/theme.native.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAC,MAAM,cAAc,CAAC;AAGvC,oBAAY,SAAS,GAAG,OAAO,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,GAAG,QAAQ,GAAG,OAAO,GAAG,QAAQ,CAAC;AAE5F,eAAO,MAAM,sBAAsB,YAAY,CAAC;AAEhD,oBAAY,MAAM,GAAG;IACnB,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE;QACJ,KAAK,EAAE,MAAM,CAAC;QACd,KAAK,EAAE,MAAM,CAAC;QACd,OAAO,EAAE,MAAM,CAAC;QAChB,WAAW,EAAE,MAAM,CAAC;QACpB,MAAM,EAAE,MAAM,CAAC;QACf,IAAI,EAAE,MAAM,CAAC;QACb,SAAS,EAAE,MAAM,CAAC;KACnB,CAAC;IACF,OAAO,EAAE;QACP,UAAU,EAAE,MAAM,CAAC;QACnB,OAAO,EAAE,MAAM,CAAC;KACjB,CAAC;IACF,IAAI,EAAE;QACJ,OAAO,EAAE,MAAM,CAAC;QAChB,SAAS,EAAE,MAAM,CAAC;KACnB,CAAC;IACF,GAAG,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,YAAY,EAAE,MAAM,CAAC;IACrB,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,oBAAY,KAAK,GAAG;IAClB,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE;QACP,KAAK,EAAE,MAAM,CAAC;QACd,IAAI,EAAE,MAAM,CAAC;QACb,KAAK,EAAE,MAAM,CAAC;QACd,IAAI,EAAE,MAAM,CAAC;QACb,MAAM,EAAE,MAAM,CAAC;QACf,KAAK,EAAE,MAAM,CAAC;QACd,MAAM,EAAE,MAAM,CAAC;KAChB,CAAC;IACF,MAAM,EAAE;QACN,MAAM,EAAE,MAAM,CAAC;QACf,MAAM,EAAE,MAAM,CAAC;QACf,IAAI,EAAE,MAAM,CAAC;QACb,MAAM,EAAE,MAAM,CAAC;QACf,OAAO,EAAE,MAAM,CAAC;QAChB,MAAM,EAAE,MAAM,CAAC;QACf,SAAS,EAAE,MAAM,CAAC;KACnB,CAAC;IACF,UAAU,EAAE;QACV,OAAO,EAAE,SAAS,CAAC,YAAY,CAAC,CAAC;QACjC,QAAQ,EAAE,SAAS,CAAC,YAAY,CAAC,CAAC;QAClC,IAAI,EAAE,SAAS,CAAC,YAAY,CAAC,CAAC;QAC9B,SAAS,EAAE,SAAS,CAAC,YAAY,CAAC,CAAC;KACpC,CAAC;IACF,QAAQ,EAAE;QACR,UAAU,EAAE,SAAS,CAAC,UAAU,CAAC,CAAC;QAClC,KAAK,EAAE,SAAS,CAAC,UAAU,CAAC,CAAC;QAC7B,MAAM,EAAE,SAAS,CAAC,UAAU,CAAC,CAAC;QAC9B,OAAO,EAAE,SAAS,CAAC,UAAU,CAAC,CAAC;QAC/B,KAAK,EAAE,SAAS,CAAC,UAAU,CAAC,CAAC;QAC7B,MAAM,EAAE,SAAS,CAAC,UAAU,CAAC,CAAC;QAC9B,OAAO,EAAE,SAAS,CAAC,UAAU,CAAC,CAAC;QAC/B,QAAQ,EAAE,SAAS,CAAC,UAAU,CAAC,CAAC;KACjC,CAAC;IACF,aAAa,EAAE;QACb,MAAM,EAAE,MAAM,CAAC;KAChB,CAAC;CACH,CAAC;AAEF,QAAA,MAAM,YAAY,EAAE,KAkEnB,CAAC;AAEF,eAAe,YAAY,CAAC"}
@@ -13,7 +13,8 @@ const defaultTheme = {
13
13
  extraDark: '#323232'
14
14
  },
15
15
  text: {
16
- primary: '#06265B'
16
+ primary: '#06265B',
17
+ secondary: '#FFFFFF'
17
18
  },
18
19
  cta: '#0061FF',
19
20
  negative: COLORS.negative,