@idealyst/cli 1.2.68 → 1.2.70

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.
package/dist/constants.js CHANGED
@@ -7,7 +7,7 @@ exports.DEPENDENCIES = exports.IGNORE_PATTERNS = exports.TEMPLATE_EXTENSIONS = e
7
7
  // Package version - updated during build
8
8
  exports.VERSION = '0.1.0';
9
9
  // Current Idealyst framework version to use in templates
10
- exports.IDEALYST_VERSION = '1.2.68';
10
+ exports.IDEALYST_VERSION = '1.2.70';
11
11
  // React Native version
12
12
  exports.REACT_NATIVE_VERSION = '0.83.0';
13
13
  // React version
@@ -83,7 +83,7 @@ export const HomeScreen: React.FC = () => {
83
83
  <View gap="md">
84
84
  <Text typography="subtitle1">Highlights</Text>
85
85
 
86
- <Card type="outlined" padding="md" clickable>
86
+ <Card type="outlined" padding="md" onPress={() => {}}>
87
87
  <View style={{ flexDirection: 'row', alignItems: 'center', gap: 12 }}>
88
88
  <View
89
89
  background="secondary"
@@ -107,7 +107,7 @@ export const HomeScreen: React.FC = () => {
107
107
  </View>
108
108
  </Card>
109
109
 
110
- <Card type="outlined" padding="md" clickable>
110
+ <Card type="outlined" padding="md" onPress={() => {}}>
111
111
  <View style={{ flexDirection: 'row', alignItems: 'center', gap: 12 }}>
112
112
  <View
113
113
  background="secondary"
@@ -2,7 +2,7 @@
2
2
  * Constants and default values for the CLI
3
3
  */
4
4
  export declare const VERSION = "0.1.0";
5
- export declare const IDEALYST_VERSION = "1.2.68";
5
+ export declare const IDEALYST_VERSION = "1.2.70";
6
6
  export declare const REACT_NATIVE_VERSION = "0.83.0";
7
7
  export declare const REACT_VERSION = "19.1.0";
8
8
  export declare const DEFAULT_TIMEOUT = 300000;
@@ -18,10 +18,10 @@ export declare const TEMPLATE_EXTENSIONS: readonly [".ts", ".tsx", ".js", ".jsx"
18
18
  export declare const IGNORE_PATTERNS: readonly ["node_modules", ".git", "dist", "build", ".cache", ".DS_Store", "Thumbs.db", "*.log", "*.tmp", "*.bak", "~*"];
19
19
  export declare const DEPENDENCIES: {
20
20
  readonly core: {
21
- readonly '@idealyst/components': "^1.2.68";
22
- readonly '@idealyst/theme': "^1.2.68";
23
- readonly '@idealyst/navigation': "^1.2.68";
24
- readonly '@idealyst/config': "^1.2.68";
21
+ readonly '@idealyst/components': "^1.2.70";
22
+ readonly '@idealyst/theme': "^1.2.70";
23
+ readonly '@idealyst/navigation': "^1.2.70";
24
+ readonly '@idealyst/config': "^1.2.70";
25
25
  };
26
26
  readonly web: {
27
27
  readonly '@mdi/js': "^7.4.47";
@@ -78,7 +78,7 @@ export declare const DEPENDENCIES: {
78
78
  readonly prisma: "^5.19.0";
79
79
  };
80
80
  readonly tooling: {
81
- readonly '@idealyst/tooling': "^1.2.68";
81
+ readonly '@idealyst/tooling': "^1.2.70";
82
82
  };
83
83
  readonly api: {
84
84
  readonly express: "^4.21.0";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@idealyst/cli",
3
- "version": "1.2.68",
3
+ "version": "1.2.70",
4
4
  "description": "CLI tool for generating Idealyst Framework projects",
5
5
  "readme": "README.md",
6
6
  "main": "dist/index.js",