@ixon-cdk/core 1.11.0-next.0 → 1.12.0-next.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/prompts.js +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ixon-cdk/core",
3
- "version": "1.11.0-next.0",
3
+ "version": "1.12.0-next.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "author": "",
package/prompts.js CHANGED
@@ -19,13 +19,13 @@ module.exports = {
19
19
  return {
20
20
  type: 'text',
21
21
  name,
22
- message: 'What is the ID of the PageComponentTemplate?',
22
+ message: 'What is the ID of the UI Component?',
23
23
  validate: value => {
24
24
  if (!value) {
25
- return 'Template ID is required.';
25
+ return 'UI Component ID is required.';
26
26
  }
27
27
  if (!/^[a-zA-Z0-9]{12}$/.test(value)) {
28
- return 'Invalid template ID.';
28
+ return 'Invalid UI Component ID.';
29
29
  }
30
30
  return true;
31
31
  },