@idealyst/cli 1.2.74 → 1.2.75

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.74';
10
+ exports.IDEALYST_VERSION = '1.2.75';
11
11
  // React Native version
12
12
  exports.REACT_NATIVE_VERSION = '0.83.0';
13
13
  // React version
@@ -125,7 +125,7 @@ export const ProfileScreen: React.FC = () => {
125
125
  justifyContent: 'center',
126
126
  }}
127
127
  >
128
- <Icon name="trophy" size={24} color="#f59e0b" />
128
+ <Icon name="trophy" size={24} color="orange" />
129
129
  </View>
130
130
  <Text typography="caption" weight="medium">
131
131
  Top Contributor
@@ -146,7 +146,7 @@ export const ProfileScreen: React.FC = () => {
146
146
  justifyContent: 'center',
147
147
  }}
148
148
  >
149
- <Icon name="star" size={24} color="#3b82f6" />
149
+ <Icon name="star" size={24} color="primary" />
150
150
  </View>
151
151
  <Text typography="caption" weight="medium">
152
152
  Rising Star
@@ -167,7 +167,7 @@ export const ProfileScreen: React.FC = () => {
167
167
  justifyContent: 'center',
168
168
  }}
169
169
  >
170
- <Icon name="rocket-launch" size={24} color="#22c55e" />
170
+ <Icon name="rocket-launch" size={24} color="success" />
171
171
  </View>
172
172
  <Text typography="caption" weight="medium">
173
173
  Early Adopter
@@ -78,7 +78,7 @@ export const SettingsScreen: React.FC = () => {
78
78
  <Icon
79
79
  name={isDarkMode ? 'moon-waning-crescent' : 'white-balance-sunny'}
80
80
  size={22}
81
- color={isDarkMode ? '#a5b4fc' : '#f59e0b'}
81
+ color={isDarkMode ? "primary" : "orange"}
82
82
  />
83
83
  </View>
84
84
  <View style={{ flex: 1 }}>
@@ -187,7 +187,7 @@ export const GraphQLDemoScreen: React.FC = () => {
187
187
  radius="md"
188
188
  style={{ flex: 1, alignItems: 'center' }}
189
189
  >
190
- <Text typography="h4" intent="success">
190
+ <Text typography="h4">
191
191
  {statsData.itemStats.completed}
192
192
  </Text>
193
193
  <Text typography="caption" color="secondary">
@@ -200,7 +200,7 @@ export const GraphQLDemoScreen: React.FC = () => {
200
200
  radius="md"
201
201
  style={{ flex: 1, alignItems: 'center' }}
202
202
  >
203
- <Text typography="h4" intent="warning">
203
+ <Text typography="h4">
204
204
  {statsData.itemStats.pending}
205
205
  </Text>
206
206
  <Text typography="caption" color="secondary">
@@ -166,8 +166,8 @@ export const TRPCDemoScreen: React.FC = () => {
166
166
  >
167
167
  {echoQuery.data ? (
168
168
  <>
169
- <Text typography="caption" color="secondary" numberOfLines={1}>Original: {echoQuery.data.original}</Text>
170
- <Text typography="caption" color="secondary" numberOfLines={1}>Reversed: {echoQuery.data.reversed}</Text>
169
+ <Text typography="caption" color="secondary">Original: {echoQuery.data.original}</Text>
170
+ <Text typography="caption" color="secondary">Reversed: {echoQuery.data.reversed}</Text>
171
171
  <Text typography="caption" color="secondary">Length: {echoQuery.data.length}</Text>
172
172
  </>
173
173
  ) : (
@@ -271,7 +271,7 @@ export const TRPCDemoScreen: React.FC = () => {
271
271
  radius="md"
272
272
  style={{ flex: 1, alignItems: 'center' }}
273
273
  >
274
- <Text typography="h4" color="success">
274
+ <Text typography="h4">
275
275
  {statsQuery.data.completed}
276
276
  </Text>
277
277
  <Text typography="caption" color="secondary">
@@ -284,7 +284,7 @@ export const TRPCDemoScreen: React.FC = () => {
284
284
  radius="md"
285
285
  style={{ flex: 1, alignItems: 'center' }}
286
286
  >
287
- <Text typography="h4" color="warning">
287
+ <Text typography="h4">
288
288
  {statsQuery.data.pending}
289
289
  </Text>
290
290
  <Text typography="caption" color="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.74";
5
+ export declare const IDEALYST_VERSION = "1.2.75";
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.74";
22
- readonly '@idealyst/theme': "^1.2.74";
23
- readonly '@idealyst/navigation': "^1.2.74";
24
- readonly '@idealyst/config': "^1.2.74";
21
+ readonly '@idealyst/components': "^1.2.75";
22
+ readonly '@idealyst/theme': "^1.2.75";
23
+ readonly '@idealyst/navigation': "^1.2.75";
24
+ readonly '@idealyst/config': "^1.2.75";
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.74";
81
+ readonly '@idealyst/tooling': "^1.2.75";
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.74",
3
+ "version": "1.2.75",
4
4
  "description": "CLI tool for generating Idealyst Framework projects",
5
5
  "readme": "README.md",
6
6
  "main": "dist/index.js",