react-native-persona 2.9.1 → 2.9.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 (51) hide show
  1. package/README.md +0 -42
  2. package/RNPersonaInquiry2.podspec +1 -1
  3. package/android/build.gradle +1 -1
  4. package/lib/commonjs/index.js +1 -0
  5. package/lib/commonjs/index.js.map +1 -1
  6. package/lib/module/index.js +1 -0
  7. package/lib/module/index.js.map +1 -1
  8. package/package.json +1 -12
  9. package/bin/persona-tool +0 -3
  10. package/lib/commonjs/persona-tool/AndroidResourcePrinter.js +0 -462
  11. package/lib/commonjs/persona-tool/AndroidResourcePrinter.js.map +0 -1
  12. package/lib/commonjs/persona-tool/Config.js +0 -78
  13. package/lib/commonjs/persona-tool/Config.js.map +0 -1
  14. package/lib/commonjs/persona-tool/Theme.js +0 -188
  15. package/lib/commonjs/persona-tool/Theme.js.map +0 -1
  16. package/lib/commonjs/persona-tool/index.js +0 -31
  17. package/lib/commonjs/persona-tool/index.js.map +0 -1
  18. package/lib/commonjs/persona-tool/prompts.js +0 -42
  19. package/lib/commonjs/persona-tool/prompts.js.map +0 -1
  20. package/lib/commonjs/persona-tool/tools/AndroidThemeGenerator.js +0 -74
  21. package/lib/commonjs/persona-tool/tools/AndroidThemeGenerator.js.map +0 -1
  22. package/lib/commonjs/persona-tool/tools/IosThemeInstructions.js +0 -40
  23. package/lib/commonjs/persona-tool/tools/IosThemeInstructions.js.map +0 -1
  24. package/lib/module/persona-tool/AndroidResourcePrinter.js +0 -455
  25. package/lib/module/persona-tool/AndroidResourcePrinter.js.map +0 -1
  26. package/lib/module/persona-tool/Config.js +0 -70
  27. package/lib/module/persona-tool/Config.js.map +0 -1
  28. package/lib/module/persona-tool/Theme.js +0 -178
  29. package/lib/module/persona-tool/Theme.js.map +0 -1
  30. package/lib/module/persona-tool/index.js +0 -28
  31. package/lib/module/persona-tool/index.js.map +0 -1
  32. package/lib/module/persona-tool/prompts.js +0 -31
  33. package/lib/module/persona-tool/prompts.js.map +0 -1
  34. package/lib/module/persona-tool/tools/AndroidThemeGenerator.js +0 -66
  35. package/lib/module/persona-tool/tools/AndroidThemeGenerator.js.map +0 -1
  36. package/lib/module/persona-tool/tools/IosThemeInstructions.js +0 -32
  37. package/lib/module/persona-tool/tools/IosThemeInstructions.js.map +0 -1
  38. package/lib/typescript/persona-tool/AndroidResourcePrinter.d.ts +0 -35
  39. package/lib/typescript/persona-tool/Config.d.ts +0 -15
  40. package/lib/typescript/persona-tool/Theme.d.ts +0 -108
  41. package/lib/typescript/persona-tool/index.d.ts +0 -1
  42. package/lib/typescript/persona-tool/prompts.d.ts +0 -8
  43. package/lib/typescript/persona-tool/tools/AndroidThemeGenerator.d.ts +0 -5
  44. package/lib/typescript/persona-tool/tools/IosThemeInstructions.d.ts +0 -5
  45. package/src/persona-tool/AndroidResourcePrinter.ts +0 -652
  46. package/src/persona-tool/Config.ts +0 -86
  47. package/src/persona-tool/Theme.ts +0 -243
  48. package/src/persona-tool/index.ts +0 -30
  49. package/src/persona-tool/prompts.ts +0 -36
  50. package/src/persona-tool/tools/AndroidThemeGenerator.ts +0 -100
  51. package/src/persona-tool/tools/IosThemeInstructions.ts +0 -41
@@ -1,188 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = exports.IOS_THEME_CONFIG_KEY = exports.ANDROID_THEME_CONFIG_KEY = void 0;
7
- var _cliTable = _interopRequireDefault(require("cli-table"));
8
- var _chalk = _interopRequireDefault(require("chalk"));
9
- var _Config = _interopRequireDefault(require("./Config"));
10
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
- const COLOR_REGEX = /^[a-zA-Z0-9]{6}$/;
12
- let ANDROID_THEME_CONFIG_KEY = /*#__PURE__*/function (ANDROID_THEME_CONFIG_KEY) {
13
- ANDROID_THEME_CONFIG_KEY["backgroundColor"] = "backgroundColor";
14
- ANDROID_THEME_CONFIG_KEY["primaryColor"] = "primaryColor";
15
- ANDROID_THEME_CONFIG_KEY["darkPrimaryColor"] = "darkPrimaryColor";
16
- ANDROID_THEME_CONFIG_KEY["accentColor"] = "accentColor";
17
- ANDROID_THEME_CONFIG_KEY["titleTextColor"] = "titleTextColor";
18
- ANDROID_THEME_CONFIG_KEY["titleTextFont"] = "titleTextFont";
19
- ANDROID_THEME_CONFIG_KEY["bodyTextColor"] = "bodyTextColor";
20
- ANDROID_THEME_CONFIG_KEY["bodyTextFont"] = "bodyTextFont";
21
- ANDROID_THEME_CONFIG_KEY["footnoteTextColor"] = "footnoteTextColor";
22
- ANDROID_THEME_CONFIG_KEY["footnoteTextFont"] = "footnoteTextFont";
23
- ANDROID_THEME_CONFIG_KEY["textFieldTextColor"] = "textFieldTextColor";
24
- ANDROID_THEME_CONFIG_KEY["textFieldTextFont"] = "textFieldTextFont";
25
- ANDROID_THEME_CONFIG_KEY["pickerTextColor"] = "pickerTextColor";
26
- ANDROID_THEME_CONFIG_KEY["pickerTextFont"] = "pickerTextFont";
27
- ANDROID_THEME_CONFIG_KEY["buttonBackgroundColor"] = "buttonBackgroundColor";
28
- ANDROID_THEME_CONFIG_KEY["buttonDisabledBackgroundColor"] = "buttonDisabledBackgroundColor";
29
- ANDROID_THEME_CONFIG_KEY["buttonTouchedBackgroundColor"] = "buttonTouchedBackgroundColor";
30
- ANDROID_THEME_CONFIG_KEY["buttonTextColor"] = "buttonTextColor";
31
- ANDROID_THEME_CONFIG_KEY["buttonDisabledTextColor"] = "buttonDisabledTextColor";
32
- ANDROID_THEME_CONFIG_KEY["buttonCornerRadius"] = "buttonCornerRadius";
33
- ANDROID_THEME_CONFIG_KEY["buttonFont"] = "buttonFont";
34
- ANDROID_THEME_CONFIG_KEY["progressColor"] = "progressColor";
35
- ANDROID_THEME_CONFIG_KEY["successAsset"] = "successAsset";
36
- ANDROID_THEME_CONFIG_KEY["failAsset"] = "failAsset";
37
- ANDROID_THEME_CONFIG_KEY["loadingAnimationAsset"] = "loadingAnimationAsset";
38
- ANDROID_THEME_CONFIG_KEY["loadingAnimationWidthPercent"] = "loadingAnimationWidthPercent";
39
- ANDROID_THEME_CONFIG_KEY["selfieAnimationAsset"] = "selfieAnimationAsset";
40
- ANDROID_THEME_CONFIG_KEY["selfieAnimationWidthPercent"] = "selfieAnimationWidthPercent";
41
- return ANDROID_THEME_CONFIG_KEY;
42
- }({});
43
- exports.ANDROID_THEME_CONFIG_KEY = ANDROID_THEME_CONFIG_KEY;
44
- let IOS_THEME_CONFIG_KEY = /*#__PURE__*/function (IOS_THEME_CONFIG_KEY) {
45
- IOS_THEME_CONFIG_KEY["backgroundColor"] = "backgroundColor";
46
- IOS_THEME_CONFIG_KEY["primaryColor"] = "primaryColor";
47
- IOS_THEME_CONFIG_KEY["darkPrimaryColor"] = "darkPrimaryColor";
48
- IOS_THEME_CONFIG_KEY["accentColor"] = "accentColor";
49
- IOS_THEME_CONFIG_KEY["errorColor"] = "errorColor";
50
- IOS_THEME_CONFIG_KEY["errorTextFont"] = "errorTextFont";
51
- IOS_THEME_CONFIG_KEY["overlayBackgroundColor"] = "overlayBackgroundColor";
52
- IOS_THEME_CONFIG_KEY["titleTextAlignment"] = "titleTextAlignment";
53
- IOS_THEME_CONFIG_KEY["titleTextColor"] = "titleTextColor";
54
- IOS_THEME_CONFIG_KEY["titleTextFont"] = "titleTextFont";
55
- IOS_THEME_CONFIG_KEY["cardTitleTextFont"] = "cardTitleTextFont";
56
- IOS_THEME_CONFIG_KEY["bodyTextAlignment"] = "bodyTextAlignment";
57
- IOS_THEME_CONFIG_KEY["bodyTextColor"] = "bodyTextColor";
58
- IOS_THEME_CONFIG_KEY["bodyTextFont"] = "bodyTextFont";
59
- IOS_THEME_CONFIG_KEY["footnoteTextColor"] = "footnoteTextColor";
60
- IOS_THEME_CONFIG_KEY["footnoteTextFont"] = "footnoteTextFont";
61
- IOS_THEME_CONFIG_KEY["formLabelTextColor"] = "formLabelTextColor";
62
- IOS_THEME_CONFIG_KEY["formLabelTextFont"] = "formLabelTextFont";
63
- IOS_THEME_CONFIG_KEY["textFieldTextColor"] = "textFieldTextColor";
64
- IOS_THEME_CONFIG_KEY["textFieldBackgroundColor"] = "textFieldBackgroundColor";
65
- IOS_THEME_CONFIG_KEY["textFieldBorderColor"] = "textFieldBorderColor";
66
- IOS_THEME_CONFIG_KEY["textFieldCornerRadius"] = "textFieldCornerRadius";
67
- IOS_THEME_CONFIG_KEY["textFieldFont"] = "textFieldFont";
68
- IOS_THEME_CONFIG_KEY["textFieldPlaceholderFont"] = "textFieldPlaceholderFont";
69
- IOS_THEME_CONFIG_KEY["pickerTextColor"] = "pickerTextColor";
70
- IOS_THEME_CONFIG_KEY["pickerTextFont"] = "pickerTextFont";
71
- IOS_THEME_CONFIG_KEY["buttonBackgroundColor"] = "buttonBackgroundColor";
72
- IOS_THEME_CONFIG_KEY["buttonDisabledBackgroundColor"] = "buttonDisabledBackgroundColor";
73
- IOS_THEME_CONFIG_KEY["buttonTouchedBackgroundColor"] = "buttonTouchedBackgroundColor";
74
- IOS_THEME_CONFIG_KEY["buttonTextColor"] = "buttonTextColor";
75
- IOS_THEME_CONFIG_KEY["buttonDisabledTextColor"] = "buttonDisabledTextColor";
76
- IOS_THEME_CONFIG_KEY["buttonTextAlignment"] = "buttonTextAlignment";
77
- IOS_THEME_CONFIG_KEY["buttonImageTintColor"] = "buttonImageTintColor";
78
- IOS_THEME_CONFIG_KEY["buttonCornerRadius"] = "buttonCornerRadius";
79
- IOS_THEME_CONFIG_KEY["buttonBorderWidth"] = "buttonBorderWidth";
80
- IOS_THEME_CONFIG_KEY["buttonBorderColor"] = "buttonBorderColor";
81
- IOS_THEME_CONFIG_KEY["buttonFont"] = "buttonFont";
82
- IOS_THEME_CONFIG_KEY["buttonSecondaryBackgroundColor"] = "buttonSecondaryBackgroundColor";
83
- IOS_THEME_CONFIG_KEY["buttonSecondaryDisabledBackgroundColor"] = "buttonSecondaryDisabledBackgroundColor";
84
- IOS_THEME_CONFIG_KEY["buttonSecondaryTouchedBackgroundColor"] = "buttonSecondaryTouchedBackgroundColor";
85
- IOS_THEME_CONFIG_KEY["buttonSecondaryTextColor"] = "buttonSecondaryTextColor";
86
- IOS_THEME_CONFIG_KEY["buttonSecondaryDisabledTextColor"] = "buttonSecondaryDisabledTextColor";
87
- IOS_THEME_CONFIG_KEY["buttonSecondaryTextAlignment"] = "buttonSecondaryTextAlignment";
88
- IOS_THEME_CONFIG_KEY["buttonSecondaryImageTintColor"] = "buttonSecondaryImageTintColor";
89
- IOS_THEME_CONFIG_KEY["buttonSecondaryCornerRadius"] = "buttonSecondaryCornerRadius";
90
- IOS_THEME_CONFIG_KEY["buttonSecondaryBorderWidth"] = "buttonSecondaryBorderWidth";
91
- IOS_THEME_CONFIG_KEY["buttonSecondaryBorderColor"] = "buttonSecondaryBorderColor";
92
- IOS_THEME_CONFIG_KEY["buttonSecondaryFont"] = "buttonSecondaryFont";
93
- IOS_THEME_CONFIG_KEY["selectedCellBackgroundColor"] = "selectedCellBackgroundColor";
94
- IOS_THEME_CONFIG_KEY["closeButtonTintColor"] = "closeButtonTintColor";
95
- IOS_THEME_CONFIG_KEY["cancelButtonBackgroundColor"] = "cancelButtonBackgroundColor";
96
- IOS_THEME_CONFIG_KEY["cancelButtonTextColor"] = "cancelButtonTextColor";
97
- IOS_THEME_CONFIG_KEY["cancelButtonAlternateBackgroundColor"] = "cancelButtonAlternateBackgroundColor";
98
- IOS_THEME_CONFIG_KEY["cancelButtonAlternateTextColor"] = "cancelButtonAlternateTextColor";
99
- IOS_THEME_CONFIG_KEY["processingLabelsTextAlignment"] = "processingLabelsTextAlignment";
100
- IOS_THEME_CONFIG_KEY["loadingAnimationAssetName"] = "loadingAnimationAssetName";
101
- IOS_THEME_CONFIG_KEY["loadingAnimationAssetWidth"] = "loadingAnimationAssetWidth";
102
- IOS_THEME_CONFIG_KEY["loadingAnimationAssetHeight"] = "loadingAnimationAssetHeight";
103
- IOS_THEME_CONFIG_KEY["processingAnimationAssetName"] = "processingAnimationAssetName";
104
- IOS_THEME_CONFIG_KEY["processingAnimationAssetWidth"] = "processingAnimationAssetWidth";
105
- IOS_THEME_CONFIG_KEY["processingAnimationAssetHeight"] = "processingAnimationAssetHeight";
106
- IOS_THEME_CONFIG_KEY["selfieAnimationAssetName"] = "selfieAnimationAssetName";
107
- IOS_THEME_CONFIG_KEY["selfieAnimationAssetWidth"] = "selfieAnimationAssetWidth";
108
- IOS_THEME_CONFIG_KEY["selfieAnimationAssetHeight"] = "selfieAnimationAssetHeight";
109
- return IOS_THEME_CONFIG_KEY;
110
- }({});
111
- exports.IOS_THEME_CONFIG_KEY = IOS_THEME_CONFIG_KEY;
112
- class Theme {
113
- async print() {
114
- let platform = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'android';
115
- const config = await _Config.default.get();
116
- const themeConfig = platform === 'android' ? config.androidTheme : config.iosTheme;
117
- let usesCustomFontAndroid = false;
118
- let usesCustomFontIos = false;
119
- const head = platform === 'android' ? ['Style Item', 'Value', 'Note'] : ['Style Item', 'Value', 'Note'];
120
- const table = new _cliTable.default({
121
- head,
122
- // prettier-ignore
123
- chars: {
124
- 'mid': '',
125
- 'left-mid': '',
126
- 'mid-mid': '',
127
- 'right-mid': ''
128
- }
129
- });
130
- console.log('Specified theme values:');
131
- const keyEnum = platform === 'android' ? ANDROID_THEME_CONFIG_KEY : IOS_THEME_CONFIG_KEY;
132
- for (const key in keyEnum) {
133
- let override = themeConfig[key];
134
- let colorOverride = key.includes('Color') || key.includes('color');
135
- if (override) {
136
- if (colorOverride) {
137
- override = normalizeColor(override, key);
138
- } else {
139
- override = override.toString();
140
- }
141
- }
142
- if (key.includes('Font')) {
143
- if (platform == 'android') {
144
- usesCustomFontAndroid = true;
145
- } else {
146
- usesCustomFontIos = true;
147
- }
148
- }
149
- let row;
150
- row = [key, override ? valueColor(colorOverride, override) : _chalk.default.yellow('unspecified'), key.includes('Font') ? _chalk.default.cyan('Fonts that are not built-in need to be installed.') : ''];
151
- table.push(row);
152
- }
153
- console.log(table.toString());
154
- if (usesCustomFontAndroid) {
155
- console.log(_chalk.default.yellow(' NOTE') + ': A font customization was made. If the font is not built-in to the Android platform (https://github.com/react-native-training/react-native-fonts#android), then the font(s) must first be installed. A guide to install a font can be found here: https://developer.android.com/guide/topics/ui/look-and-feel/fonts-in-xml');
156
- }
157
- if (usesCustomFontIos) {
158
- console.log(_chalk.default.yellow(' NOTE') + ': A font customization was made. If the font is not built-in iOS (https://github.com/react-native-training/react-native-ios), then the font(s) must first be installed. A guide to install a font can be found here: https://developer.apple.com/documentation/uikit/text_display_and_fonts/adding_a_custom_font_to_your_app');
159
- }
160
-
161
- // Add newline for spacing
162
- console.log('');
163
- }
164
- }
165
-
166
- // set default print color for non-color overrides
167
- function valueColor(isColorOverride, override) {
168
- return isColorOverride ? _chalk.default.hex(override)(override) : _chalk.default.magentaBright(override);
169
- }
170
- function normalizeColor(colorHex, themeKey) {
171
- let hex = colorHex;
172
- if (colorHex[0] === '#') {
173
- hex = colorHex.slice(1);
174
- }
175
- if (!COLOR_REGEX.test(hex)) {
176
- if (themeKey) {
177
- console.error(`Received a color value of ${_chalk.default.yellow(colorHex)} for ${_chalk.default.red(themeKey)}.\nFormat must follow standard 6 character hexadecimal color code. Eg. ${_chalk.default.bgHex('#FFFFFF').hex('#7E66B7')('#290087')}`);
178
- } else {
179
- console.error(`Received a color value of ${_chalk.default.yellow(colorHex)}.\nFormat must follow standard 6 character hexadecimal color code. Eg. ${_chalk.default.bgHex('#FFFFFF').hex('#7E66B7')('#290087')}`);
180
- }
181
- console.log('');
182
- process.exit(1);
183
- }
184
- return colorHex;
185
- }
186
- var _default = new Theme();
187
- exports.default = _default;
188
- //# sourceMappingURL=Theme.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_cliTable","_interopRequireDefault","require","_chalk","_Config","obj","__esModule","default","COLOR_REGEX","ANDROID_THEME_CONFIG_KEY","exports","IOS_THEME_CONFIG_KEY","Theme","print","platform","arguments","length","undefined","config","Config","get","themeConfig","androidTheme","iosTheme","usesCustomFontAndroid","usesCustomFontIos","head","table","Table","chars","console","log","keyEnum","key","override","colorOverride","includes","normalizeColor","toString","row","valueColor","chalk","yellow","cyan","push","isColorOverride","hex","magentaBright","colorHex","themeKey","slice","test","error","red","bgHex","process","exit","_default"],"sources":["Theme.ts"],"sourcesContent":["import Table from 'cli-table';\nimport chalk from 'chalk';\n\nimport Config from './Config';\n\nconst COLOR_REGEX = /^[a-zA-Z0-9]{6}$/;\n\nexport enum ANDROID_THEME_CONFIG_KEY {\n backgroundColor = 'backgroundColor',\n primaryColor = 'primaryColor',\n darkPrimaryColor = 'darkPrimaryColor',\n accentColor = 'accentColor',\n\n titleTextColor = 'titleTextColor',\n titleTextFont = 'titleTextFont',\n\n bodyTextColor = 'bodyTextColor',\n bodyTextFont = 'bodyTextFont',\n\n footnoteTextColor = 'footnoteTextColor',\n footnoteTextFont = 'footnoteTextFont',\n\n // formLabelTextColor = \"formLabelTextColor\",\n // formLabelTextFont = \"formLabelTextFont\",\n\n textFieldTextColor = 'textFieldTextColor',\n textFieldTextFont = 'textFieldTextFont',\n\n pickerTextColor = 'pickerTextColor',\n pickerTextFont = 'pickerTextFont',\n\n buttonBackgroundColor = 'buttonBackgroundColor',\n buttonDisabledBackgroundColor = 'buttonDisabledBackgroundColor',\n buttonTouchedBackgroundColor = 'buttonTouchedBackgroundColor',\n buttonTextColor = 'buttonTextColor',\n buttonDisabledTextColor = 'buttonDisabledTextColor',\n // buttonTextAlignment = \"buttonTextAlignment\",\n buttonCornerRadius = 'buttonCornerRadius',\n buttonFont = 'buttonFont',\n progressColor = 'progressColor',\n successAsset = 'successAsset',\n failAsset = 'failAsset',\n loadingAnimationAsset = 'loadingAnimationAsset',\n loadingAnimationWidthPercent = 'loadingAnimationWidthPercent',\n selfieAnimationAsset = 'selfieAnimationAsset',\n selfieAnimationWidthPercent = 'selfieAnimationWidthPercent',\n}\n\nexport enum IOS_THEME_CONFIG_KEY {\n backgroundColor = 'backgroundColor',\n primaryColor = 'primaryColor',\n darkPrimaryColor = 'darkPrimaryColor',\n accentColor = 'accentColor',\n errorColor = 'errorColor',\n errorTextFont = 'errorTextFont',\n overlayBackgroundColor = 'overlayBackgroundColor',\n titleTextAlignment = 'titleTextAlignment',\n titleTextColor = 'titleTextColor',\n titleTextFont = 'titleTextFont',\n cardTitleTextFont = 'cardTitleTextFont',\n bodyTextAlignment = 'bodyTextAlignment',\n bodyTextColor = 'bodyTextColor',\n bodyTextFont = 'bodyTextFont',\n footnoteTextColor = 'footnoteTextColor',\n footnoteTextFont = 'footnoteTextFont',\n formLabelTextColor = 'formLabelTextColor',\n formLabelTextFont = 'formLabelTextFont',\n textFieldTextColor = 'textFieldTextColor',\n textFieldBackgroundColor = 'textFieldBackgroundColor',\n textFieldBorderColor = 'textFieldBorderColor',\n textFieldCornerRadius = 'textFieldCornerRadius',\n textFieldFont = 'textFieldFont',\n textFieldPlaceholderFont = 'textFieldPlaceholderFont',\n pickerTextColor = 'pickerTextColor',\n pickerTextFont = 'pickerTextFont',\n buttonBackgroundColor = 'buttonBackgroundColor',\n buttonDisabledBackgroundColor = 'buttonDisabledBackgroundColor',\n buttonTouchedBackgroundColor = 'buttonTouchedBackgroundColor',\n buttonTextColor = 'buttonTextColor',\n buttonDisabledTextColor = 'buttonDisabledTextColor',\n buttonTextAlignment = 'buttonTextAlignment',\n buttonImageTintColor = 'buttonImageTintColor',\n buttonCornerRadius = 'buttonCornerRadius',\n buttonBorderWidth = 'buttonBorderWidth',\n buttonBorderColor = 'buttonBorderColor',\n buttonFont = 'buttonFont',\n buttonSecondaryBackgroundColor = 'buttonSecondaryBackgroundColor',\n buttonSecondaryDisabledBackgroundColor = 'buttonSecondaryDisabledBackgroundColor',\n buttonSecondaryTouchedBackgroundColor = 'buttonSecondaryTouchedBackgroundColor',\n buttonSecondaryTextColor = 'buttonSecondaryTextColor',\n buttonSecondaryDisabledTextColor = 'buttonSecondaryDisabledTextColor',\n buttonSecondaryTextAlignment = 'buttonSecondaryTextAlignment',\n buttonSecondaryImageTintColor = 'buttonSecondaryImageTintColor',\n buttonSecondaryCornerRadius = 'buttonSecondaryCornerRadius',\n buttonSecondaryBorderWidth = 'buttonSecondaryBorderWidth',\n buttonSecondaryBorderColor = 'buttonSecondaryBorderColor',\n buttonSecondaryFont = 'buttonSecondaryFont',\n selectedCellBackgroundColor = 'selectedCellBackgroundColor',\n closeButtonTintColor = 'closeButtonTintColor',\n cancelButtonBackgroundColor = 'cancelButtonBackgroundColor',\n cancelButtonTextColor = 'cancelButtonTextColor',\n cancelButtonAlternateBackgroundColor = 'cancelButtonAlternateBackgroundColor',\n cancelButtonAlternateTextColor = 'cancelButtonAlternateTextColor',\n processingLabelsTextAlignment = 'processingLabelsTextAlignment',\n loadingAnimationAssetName = 'loadingAnimationAssetName',\n loadingAnimationAssetWidth = 'loadingAnimationAssetWidth',\n loadingAnimationAssetHeight = 'loadingAnimationAssetHeight',\n processingAnimationAssetName = 'processingAnimationAssetName',\n processingAnimationAssetWidth = 'processingAnimationAssetWidth',\n processingAnimationAssetHeight = 'processingAnimationAssetHeight',\n selfieAnimationAssetName = 'selfieAnimationAssetName',\n selfieAnimationAssetWidth = 'selfieAnimationAssetWidth',\n selfieAnimationAssetHeight = 'selfieAnimationAssetHeight',\n}\n\nexport type AndroidThemeObject = {\n [key in ANDROID_THEME_CONFIG_KEY]: string | null | undefined;\n};\n\nexport type IosThemeObject = {\n [key in IOS_THEME_CONFIG_KEY]: string | null | undefined;\n};\n\nexport type ThemeObject = AndroidThemeObject | IosThemeObject;\n\nclass Theme {\n async print(platform: string = 'android') {\n const config = await Config.get();\n const themeConfig =\n platform === 'android' ? config.androidTheme : config.iosTheme;\n let usesCustomFontAndroid = false;\n let usesCustomFontIos = false;\n\n const head =\n platform === 'android'\n ? ['Style Item', 'Value', 'Note']\n : ['Style Item', 'Value', 'Note'];\n\n const table = new Table({\n head,\n // prettier-ignore\n chars: { 'mid': '', 'left-mid': '', 'mid-mid': '', 'right-mid': '' },\n });\n\n console.log('Specified theme values:');\n const keyEnum =\n platform === 'android' ? ANDROID_THEME_CONFIG_KEY : IOS_THEME_CONFIG_KEY;\n for (const key in keyEnum) {\n let override =\n themeConfig[key as ANDROID_THEME_CONFIG_KEY | IOS_THEME_CONFIG_KEY];\n let colorOverride = key.includes('Color') || key.includes('color');\n\n if (override) {\n if (colorOverride) {\n override = normalizeColor(override, key);\n } else {\n override = override.toString();\n }\n }\n\n if (key.includes('Font')) {\n if (platform == 'android') {\n usesCustomFontAndroid = true;\n } else {\n usesCustomFontIos = true;\n }\n }\n\n let row;\n\n row = [\n key,\n override\n ? valueColor(colorOverride, override)\n : chalk.yellow('unspecified'),\n key.includes('Font')\n ? chalk.cyan('Fonts that are not built-in need to be installed.')\n : '',\n ];\n\n table.push(row);\n }\n\n console.log(table.toString());\n\n if (usesCustomFontAndroid) {\n console.log(\n chalk.yellow(' NOTE') +\n ': A font customization was made. If the font is not built-in to the Android platform (https://github.com/react-native-training/react-native-fonts#android), then the font(s) must first be installed. A guide to install a font can be found here: https://developer.android.com/guide/topics/ui/look-and-feel/fonts-in-xml'\n );\n }\n\n if (usesCustomFontIos) {\n console.log(\n chalk.yellow(' NOTE') +\n ': A font customization was made. If the font is not built-in iOS (https://github.com/react-native-training/react-native-ios), then the font(s) must first be installed. A guide to install a font can be found here: https://developer.apple.com/documentation/uikit/text_display_and_fonts/adding_a_custom_font_to_your_app'\n );\n }\n\n // Add newline for spacing\n console.log('');\n }\n}\n\n// set default print color for non-color overrides\nfunction valueColor(isColorOverride: boolean, override: string) {\n return isColorOverride\n ? chalk.hex(override)(override)\n : chalk.magentaBright(override);\n}\n\nfunction normalizeColor(colorHex: string, themeKey: string) {\n let hex = colorHex;\n if (colorHex[0] === '#') {\n hex = colorHex.slice(1);\n }\n\n if (!COLOR_REGEX.test(hex)) {\n if (themeKey) {\n console.error(\n `Received a color value of ${chalk.yellow(colorHex)} for ${chalk.red(\n themeKey\n )}.\\nFormat must follow standard 6 character hexadecimal color code. Eg. ${chalk\n .bgHex('#FFFFFF')\n .hex('#7E66B7')('#290087')}`\n );\n } else {\n console.error(\n `Received a color value of ${chalk.yellow(\n colorHex\n )}.\\nFormat must follow standard 6 character hexadecimal color code. Eg. ${chalk\n .bgHex('#FFFFFF')\n .hex('#7E66B7')('#290087')}`\n );\n }\n console.log('');\n process.exit(1);\n }\n\n return colorHex;\n}\n\nexport default new Theme();\n"],"mappings":"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"}
@@ -1,31 +0,0 @@
1
- "use strict";
2
-
3
- var _Config = _interopRequireDefault(require("./Config"));
4
- var _prompts = require("./prompts");
5
- var _AndroidThemeGenerator = _interopRequireDefault(require("./tools/AndroidThemeGenerator"));
6
- var _IosThemeInstructions = _interopRequireDefault(require("./tools/IosThemeInstructions"));
7
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
8
- console.log('');
9
- console.log('============================================');
10
- console.log('Persona React Native SDK customization tool.');
11
- console.log('============================================');
12
- console.log('');
13
- const run = async () => {
14
- // Run this once to print warning messages if it's not configured.
15
- await _Config.default.get();
16
- const {
17
- choice
18
- } = await (0, _prompts.whatWouldYouLikePrompt)();
19
- switch (choice) {
20
- case _prompts.TOOL_CHOICE.AndroidTheme:
21
- await _AndroidThemeGenerator.default.run();
22
- break;
23
- case _prompts.TOOL_CHOICE.iosTheme:
24
- await _IosThemeInstructions.default.run();
25
- break;
26
- default:
27
- return;
28
- }
29
- };
30
- run();
31
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_Config","_interopRequireDefault","require","_prompts","_AndroidThemeGenerator","_IosThemeInstructions","obj","__esModule","default","console","log","run","Config","get","choice","whatWouldYouLikePrompt","TOOL_CHOICE","AndroidTheme","AndroidThemeGenerator","iosTheme","IosThemeInstructions"],"sources":["index.ts"],"sourcesContent":["import Config from './Config';\nimport { TOOL_CHOICE, whatWouldYouLikePrompt } from './prompts';\nimport AndroidThemeGenerator from './tools/AndroidThemeGenerator';\nimport IosThemeInstructions from './tools/IosThemeInstructions';\n\nconsole.log('');\nconsole.log('============================================');\nconsole.log('Persona React Native SDK customization tool.');\nconsole.log('============================================');\nconsole.log('');\n\nconst run = async () => {\n // Run this once to print warning messages if it's not configured.\n await Config.get();\n\n const { choice } = await whatWouldYouLikePrompt();\n\n switch (choice) {\n case TOOL_CHOICE.AndroidTheme:\n await AndroidThemeGenerator.run();\n break;\n case TOOL_CHOICE.iosTheme:\n await IosThemeInstructions.run();\n break;\n default:\n return;\n }\n};\n\nrun();\n"],"mappings":";;AAAA,IAAAA,OAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,QAAA,GAAAD,OAAA;AACA,IAAAE,sBAAA,GAAAH,sBAAA,CAAAC,OAAA;AACA,IAAAG,qBAAA,GAAAJ,sBAAA,CAAAC,OAAA;AAAgE,SAAAD,uBAAAK,GAAA,WAAAA,GAAA,IAAAA,GAAA,CAAAC,UAAA,GAAAD,GAAA,KAAAE,OAAA,EAAAF,GAAA;AAEhEG,OAAO,CAACC,GAAG,CAAC,EAAE,CAAC;AACfD,OAAO,CAACC,GAAG,CAAC,8CAA8C,CAAC;AAC3DD,OAAO,CAACC,GAAG,CAAC,8CAA8C,CAAC;AAC3DD,OAAO,CAACC,GAAG,CAAC,8CAA8C,CAAC;AAC3DD,OAAO,CAACC,GAAG,CAAC,EAAE,CAAC;AAEf,MAAMC,GAAG,GAAG,MAAAA,CAAA,KAAY;EACtB;EACA,MAAMC,eAAM,CAACC,GAAG,CAAC,CAAC;EAElB,MAAM;IAAEC;EAAO,CAAC,GAAG,MAAM,IAAAC,+BAAsB,EAAC,CAAC;EAEjD,QAAQD,MAAM;IACZ,KAAKE,oBAAW,CAACC,YAAY;MAC3B,MAAMC,8BAAqB,CAACP,GAAG,CAAC,CAAC;MACjC;IACF,KAAKK,oBAAW,CAACG,QAAQ;MACvB,MAAMC,6BAAoB,CAACT,GAAG,CAAC,CAAC;MAChC;IACF;MACE;EACJ;AACF,CAAC;AAEDA,GAAG,CAAC,CAAC"}
@@ -1,42 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.TOOL_CHOICE = void 0;
7
- exports.confirmResourceFiles = confirmResourceFiles;
8
- exports.confirmThemeValues = confirmThemeValues;
9
- exports.whatWouldYouLikePrompt = whatWouldYouLikePrompt;
10
- var _inquirer = _interopRequireDefault(require("inquirer"));
11
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
12
- const TOOL_CHOICE = {
13
- AndroidTheme: 'Update Android theme',
14
- iosTheme: 'Update iOS theme'
15
- };
16
- exports.TOOL_CHOICE = TOOL_CHOICE;
17
- async function whatWouldYouLikePrompt() {
18
- const questions = {
19
- name: 'choice',
20
- type: 'list',
21
- choices: [TOOL_CHOICE.AndroidTheme, TOOL_CHOICE.iosTheme],
22
- message: 'What would you like to do?'
23
- };
24
- return _inquirer.default.prompt(questions);
25
- }
26
- async function confirmThemeValues() {
27
- const questions = {
28
- name: 'isConfirmed',
29
- type: 'confirm',
30
- message: 'Do these values look right?'
31
- };
32
- return _inquirer.default.prompt(questions);
33
- }
34
- async function confirmResourceFiles() {
35
- const questions = {
36
- name: 'isConfirmed',
37
- type: 'confirm',
38
- message: `Continue?`
39
- };
40
- return _inquirer.default.prompt(questions);
41
- }
42
- //# sourceMappingURL=prompts.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_inquirer","_interopRequireDefault","require","obj","__esModule","default","TOOL_CHOICE","AndroidTheme","iosTheme","exports","whatWouldYouLikePrompt","questions","name","type","choices","message","inquirer","prompt","confirmThemeValues","confirmResourceFiles"],"sources":["prompts.ts"],"sourcesContent":["import inquirer, { QuestionCollection } from 'inquirer';\n\nexport const TOOL_CHOICE = {\n AndroidTheme: 'Update Android theme',\n iosTheme: 'Update iOS theme',\n};\nexport async function whatWouldYouLikePrompt() {\n const questions = {\n name: 'choice',\n type: 'list',\n choices: [TOOL_CHOICE.AndroidTheme, TOOL_CHOICE.iosTheme],\n message: 'What would you like to do?',\n } as QuestionCollection;\n\n return inquirer.prompt(questions);\n}\n\nexport async function confirmThemeValues() {\n const questions = {\n name: 'isConfirmed',\n type: 'confirm',\n message: 'Do these values look right?',\n } as QuestionCollection;\n\n return inquirer.prompt(questions);\n}\n\nexport async function confirmResourceFiles() {\n const questions = {\n name: 'isConfirmed',\n type: 'confirm',\n message: `Continue?`,\n } as QuestionCollection;\n\n return inquirer.prompt(questions);\n}\n"],"mappings":";;;;;;;;;AAAA,IAAAA,SAAA,GAAAC,sBAAA,CAAAC,OAAA;AAAwD,SAAAD,uBAAAE,GAAA,WAAAA,GAAA,IAAAA,GAAA,CAAAC,UAAA,GAAAD,GAAA,KAAAE,OAAA,EAAAF,GAAA;AAEjD,MAAMG,WAAW,GAAG;EACzBC,YAAY,EAAE,sBAAsB;EACpCC,QAAQ,EAAE;AACZ,CAAC;AAACC,OAAA,CAAAH,WAAA,GAAAA,WAAA;AACK,eAAeI,sBAAsBA,CAAA,EAAG;EAC7C,MAAMC,SAAS,GAAG;IAChBC,IAAI,EAAE,QAAQ;IACdC,IAAI,EAAE,MAAM;IACZC,OAAO,EAAE,CAACR,WAAW,CAACC,YAAY,EAAED,WAAW,CAACE,QAAQ,CAAC;IACzDO,OAAO,EAAE;EACX,CAAuB;EAEvB,OAAOC,iBAAQ,CAACC,MAAM,CAACN,SAAS,CAAC;AACnC;AAEO,eAAeO,kBAAkBA,CAAA,EAAG;EACzC,MAAMP,SAAS,GAAG;IAChBC,IAAI,EAAE,aAAa;IACnBC,IAAI,EAAE,SAAS;IACfE,OAAO,EAAE;EACX,CAAuB;EAEvB,OAAOC,iBAAQ,CAACC,MAAM,CAACN,SAAS,CAAC;AACnC;AAEO,eAAeQ,oBAAoBA,CAAA,EAAG;EAC3C,MAAMR,SAAS,GAAG;IAChBC,IAAI,EAAE,aAAa;IACnBC,IAAI,EAAE,SAAS;IACfE,OAAO,EAAG;EACZ,CAAuB;EAEvB,OAAOC,iBAAQ,CAACC,MAAM,CAACN,SAAS,CAAC;AACnC"}
@@ -1,74 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = void 0;
7
- var _fs = _interopRequireDefault(require("fs"));
8
- var _chalk = _interopRequireDefault(require("chalk"));
9
- var _path = _interopRequireDefault(require("path"));
10
- var _Theme = _interopRequireDefault(require("../Theme"));
11
- var _prompts = require("../prompts");
12
- var _AndroidResourcePrinter = _interopRequireDefault(require("../AndroidResourcePrinter"));
13
- var _Config = _interopRequireDefault(require("../Config"));
14
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
15
- const ANDROID_STYLES_RESOURCE_PATH = './android/app/src/main/res/values/styles_persona.xml';
16
- const ANDROID_BUTTON_DRAWABLE_RESOURCE_PATH = './android/app/src/main/res/drawable/rn_persona_button.xml';
17
- const ANDROID_BUTTON_COLOR_RESOURCE_PATH = './android/app/src/main/res/color/rn_persona_button.xml';
18
- class ThemeGenerator {
19
- async run() {
20
- await _Theme.default.print();
21
- const {
22
- isConfirmed: themeValuesConfirmed
23
- } = await (0, _prompts.confirmThemeValues)();
24
- if (!themeValuesConfirmed) {
25
- console.log(_chalk.default.yellow('\nPlease adjust the values in package.json.\n'));
26
- return;
27
- }
28
- console.log(`\n${_chalk.default.yellow('Creating an Android Resource files for your project at:')}\n
29
- - ${ANDROID_STYLES_RESOURCE_PATH}
30
- - ${ANDROID_BUTTON_DRAWABLE_RESOURCE_PATH}
31
- - ${ANDROID_BUTTON_COLOR_RESOURCE_PATH}\n`);
32
- console.log('Building your application with this resource file themes your Persona Inquiry flow.\n');
33
- const config = await _Config.default.get();
34
- const theme = config.androidTheme;
35
- const {
36
- style,
37
- buttonDrawable,
38
- buttonColor
39
- } = new _AndroidResourcePrinter.default(theme).process();
40
- let {
41
- isConfirmed: confirmed
42
- } = await (0, _prompts.confirmResourceFiles)();
43
- if (!confirmed) {
44
- process.exit(1);
45
- }
46
-
47
- // Add a line after confirmation
48
- console.log('');
49
- _fs.default.mkdirSync(_path.default.dirname(ANDROID_STYLES_RESOURCE_PATH), {
50
- recursive: true
51
- });
52
- _fs.default.writeFileSync(ANDROID_STYLES_RESOURCE_PATH, style.end({
53
- prettyPrint: true
54
- }));
55
- console.log(`${_chalk.default.green('Saved an Android style file at path:')} ${ANDROID_STYLES_RESOURCE_PATH}.`);
56
- _fs.default.mkdirSync(_path.default.dirname(ANDROID_BUTTON_DRAWABLE_RESOURCE_PATH), {
57
- recursive: true
58
- });
59
- _fs.default.writeFileSync(ANDROID_BUTTON_DRAWABLE_RESOURCE_PATH, buttonDrawable.end({
60
- prettyPrint: true
61
- }));
62
- console.log(`${_chalk.default.green('Saved an Android drawable file at path:')} ${ANDROID_BUTTON_DRAWABLE_RESOURCE_PATH}.`);
63
- _fs.default.mkdirSync(_path.default.dirname(ANDROID_BUTTON_COLOR_RESOURCE_PATH), {
64
- recursive: true
65
- });
66
- _fs.default.writeFileSync(ANDROID_BUTTON_COLOR_RESOURCE_PATH, buttonColor.end({
67
- prettyPrint: true
68
- }));
69
- console.log(`${_chalk.default.green('Saved an Android color file at path:')} ${ANDROID_BUTTON_COLOR_RESOURCE_PATH}.`);
70
- }
71
- }
72
- var _default = new ThemeGenerator();
73
- exports.default = _default;
74
- //# sourceMappingURL=AndroidThemeGenerator.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_fs","_interopRequireDefault","require","_chalk","_path","_Theme","_prompts","_AndroidResourcePrinter","_Config","obj","__esModule","default","ANDROID_STYLES_RESOURCE_PATH","ANDROID_BUTTON_DRAWABLE_RESOURCE_PATH","ANDROID_BUTTON_COLOR_RESOURCE_PATH","ThemeGenerator","run","Theme","print","isConfirmed","themeValuesConfirmed","confirmThemeValues","console","log","chalk","yellow","config","Configuration","get","theme","androidTheme","style","buttonDrawable","buttonColor","AndroidResourcePrinter","process","confirmed","confirmResourceFiles","exit","fs","mkdirSync","path","dirname","recursive","writeFileSync","end","prettyPrint","green","_default","exports"],"sources":["AndroidThemeGenerator.ts"],"sourcesContent":["import fs from 'fs';\nimport chalk from 'chalk';\nimport path from 'path';\n\nimport Theme, { AndroidThemeObject } from '../Theme';\nimport { confirmThemeValues, confirmResourceFiles } from '../prompts';\nimport AndroidResourcePrinter from '../AndroidResourcePrinter';\nimport Configuration from '../Config';\n\nconst ANDROID_STYLES_RESOURCE_PATH =\n './android/app/src/main/res/values/styles_persona.xml';\nconst ANDROID_BUTTON_DRAWABLE_RESOURCE_PATH =\n './android/app/src/main/res/drawable/rn_persona_button.xml';\nconst ANDROID_BUTTON_COLOR_RESOURCE_PATH =\n './android/app/src/main/res/color/rn_persona_button.xml';\n\nclass ThemeGenerator {\n async run() {\n await Theme.print();\n\n const { isConfirmed: themeValuesConfirmed } = await confirmThemeValues();\n\n if (!themeValuesConfirmed) {\n console.log(\n chalk.yellow('\\nPlease adjust the values in package.json.\\n')\n );\n return;\n }\n\n console.log(\n `\\n${chalk.yellow(\n 'Creating an Android Resource files for your project at:'\n )}\\n\n - ${ANDROID_STYLES_RESOURCE_PATH}\n - ${ANDROID_BUTTON_DRAWABLE_RESOURCE_PATH}\n - ${ANDROID_BUTTON_COLOR_RESOURCE_PATH}\\n`\n );\n console.log(\n 'Building your application with this resource file themes your Persona Inquiry flow.\\n'\n );\n\n const config = await Configuration.get();\n const theme = config.androidTheme as AndroidThemeObject;\n\n const { style, buttonDrawable, buttonColor } = new AndroidResourcePrinter(\n theme\n ).process();\n\n let { isConfirmed: confirmed } = await confirmResourceFiles();\n\n if (!confirmed) {\n process.exit(1);\n }\n\n // Add a line after confirmation\n console.log('');\n\n fs.mkdirSync(path.dirname(ANDROID_STYLES_RESOURCE_PATH), {\n recursive: true,\n });\n fs.writeFileSync(\n ANDROID_STYLES_RESOURCE_PATH,\n style.end({ prettyPrint: true })\n );\n\n console.log(\n `${chalk.green(\n 'Saved an Android style file at path:'\n )} ${ANDROID_STYLES_RESOURCE_PATH}.`\n );\n\n fs.mkdirSync(path.dirname(ANDROID_BUTTON_DRAWABLE_RESOURCE_PATH), {\n recursive: true,\n });\n fs.writeFileSync(\n ANDROID_BUTTON_DRAWABLE_RESOURCE_PATH,\n buttonDrawable.end({ prettyPrint: true })\n );\n console.log(\n `${chalk.green(\n 'Saved an Android drawable file at path:'\n )} ${ANDROID_BUTTON_DRAWABLE_RESOURCE_PATH}.`\n );\n\n fs.mkdirSync(path.dirname(ANDROID_BUTTON_COLOR_RESOURCE_PATH), {\n recursive: true,\n });\n fs.writeFileSync(\n ANDROID_BUTTON_COLOR_RESOURCE_PATH,\n buttonColor.end({ prettyPrint: true })\n );\n console.log(\n `${chalk.green(\n 'Saved an Android color file at path:'\n )} ${ANDROID_BUTTON_COLOR_RESOURCE_PATH}.`\n );\n }\n}\n\nexport default new ThemeGenerator();\n"],"mappings":"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"}
@@ -1,40 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = void 0;
7
- var _Theme = _interopRequireDefault(require("../Theme"));
8
- var _prompts = require("../prompts");
9
- var _chalk = _interopRequireDefault(require("chalk"));
10
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
- class IosThemeInstructions {
12
- async run() {
13
- await _Theme.default.print('ios');
14
- const {
15
- isConfirmed: themeValuesConfirmed
16
- } = await (0, _prompts.confirmThemeValues)();
17
- if (!themeValuesConfirmed) {
18
- console.log(_chalk.default.yellow('\nPlease adjust the values in package.json.\n'));
19
- return;
20
- }
21
- console.log(`\n${_chalk.default.yellow('To theme the Persona Inquiry flow for iOS:')}`);
22
- console.log('Add the theme values to the Persona Inquiry SDK client by using the `.iosTheme` builder function');
23
- console.log(`
24
- ${_chalk.default.green(`+ import { persona } from '../package.json'`)}
25
- ...
26
- Inquiry.fromTemplate(selectedTemplateId)
27
- .onSuccess(handleSuccess)
28
- .onCanceled(handleCanceled)
29
- .onFailed(handleFailed)
30
- .onError(handleError)
31
- ${_chalk.default.green('+ .iosTheme(persona.iosTheme)')}
32
- .build()
33
- .start();
34
- ...
35
- `);
36
- }
37
- }
38
- var _default = new IosThemeInstructions();
39
- exports.default = _default;
40
- //# sourceMappingURL=IosThemeInstructions.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_Theme","_interopRequireDefault","require","_prompts","_chalk","obj","__esModule","default","IosThemeInstructions","run","Theme","print","isConfirmed","themeValuesConfirmed","confirmThemeValues","console","log","chalk","yellow","green","_default","exports"],"sources":["IosThemeInstructions.ts"],"sourcesContent":["import Theme from '../Theme';\nimport { confirmThemeValues } from '../prompts';\nimport chalk from 'chalk';\n\nclass IosThemeInstructions {\n async run() {\n await Theme.print('ios');\n\n const { isConfirmed: themeValuesConfirmed } = await confirmThemeValues();\n\n if (!themeValuesConfirmed) {\n console.log(\n chalk.yellow('\\nPlease adjust the values in package.json.\\n')\n );\n return;\n }\n\n console.log(\n `\\n${chalk.yellow('To theme the Persona Inquiry flow for iOS:')}`\n );\n console.log(\n 'Add the theme values to the Persona Inquiry SDK client by using the `.iosTheme` builder function'\n );\n\n console.log(`\n ${chalk.green(`+ import { persona } from '../package.json'`)}\n ...\n Inquiry.fromTemplate(selectedTemplateId)\n .onSuccess(handleSuccess)\n .onCanceled(handleCanceled)\n .onFailed(handleFailed)\n .onError(handleError)\n ${chalk.green('+ .iosTheme(persona.iosTheme)')}\n .build()\n .start();\n ...\n `);\n }\n}\n\nexport default new IosThemeInstructions();\n"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,QAAA,GAAAD,OAAA;AACA,IAAAE,MAAA,GAAAH,sBAAA,CAAAC,OAAA;AAA0B,SAAAD,uBAAAI,GAAA,WAAAA,GAAA,IAAAA,GAAA,CAAAC,UAAA,GAAAD,GAAA,KAAAE,OAAA,EAAAF,GAAA;AAE1B,MAAMG,oBAAoB,CAAC;EACzB,MAAMC,GAAGA,CAAA,EAAG;IACV,MAAMC,cAAK,CAACC,KAAK,CAAC,KAAK,CAAC;IAExB,MAAM;MAAEC,WAAW,EAAEC;IAAqB,CAAC,GAAG,MAAM,IAAAC,2BAAkB,EAAC,CAAC;IAExE,IAAI,CAACD,oBAAoB,EAAE;MACzBE,OAAO,CAACC,GAAG,CACTC,cAAK,CAACC,MAAM,CAAC,+CAA+C,CAC9D,CAAC;MACD;IACF;IAEAH,OAAO,CAACC,GAAG,CACR,KAAIC,cAAK,CAACC,MAAM,CAAC,4CAA4C,CAAE,EAClE,CAAC;IACDH,OAAO,CAACC,GAAG,CACT,kGACF,CAAC;IAEDD,OAAO,CAACC,GAAG,CAAE;AACjB,MAAMC,cAAK,CAACE,KAAK,CAAE,6CAA4C,CAAE;AACjE;AACA;AACA;AACA;AACA;AACA;AACA,MAAMF,cAAK,CAACE,KAAK,CAAC,iCAAiC,CAAE;AACrD;AACA;AACA;AACA,KAAK,CAAC;EACJ;AACF;AAAC,IAAAC,QAAA,GAEc,IAAIZ,oBAAoB,CAAC,CAAC;AAAAa,OAAA,CAAAd,OAAA,GAAAa,QAAA"}