create-rspeedy-canary 0.10.0 → 0.10.1-canary-20250708-febda95a

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # create-rspeedy
2
2
 
3
+ ## 0.10.1-canary-20250708071821-febda95ae214f1a211a395c38f398d740642b651
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix missing color in nested `<text>`. ([#1233](https://github.com/lynx-family/lynx-stack/pull/1233))
8
+
3
9
  ## 0.10.0
4
10
 
5
11
  ## 0.9.11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-rspeedy-canary",
3
- "version": "0.10.0",
3
+ "version": "0.10.1-canary-20250708-febda95a",
4
4
  "description": "Create Rspeedy-powered ReactLynx apps with one command",
5
5
  "keywords": [
6
6
  "webpack",
@@ -37,7 +37,7 @@
37
37
  "@rsbuild/plugin-type-check": "1.2.3",
38
38
  "@lynx-js/qrcode-rsbuild-plugin": "npm:@lynx-js/qrcode-rsbuild-plugin-canary@^0.4.0",
39
39
  "@lynx-js/react": "npm:@lynx-js/react-canary@^0.111.0",
40
- "@lynx-js/rspeedy": "npm:@lynx-js/rspeedy-canary@^0.10.0",
40
+ "@lynx-js/rspeedy": "npm:@lynx-js/rspeedy-canary@^0.10.1-canary-20250708-febda95a",
41
41
  "@lynx-js/react-rsbuild-plugin": "npm:@lynx-js/react-rsbuild-plugin-canary@^0.10.6"
42
42
  },
43
43
  "engines": {
@@ -34,7 +34,14 @@ export function App() {
34
34
  <image src={arrow} className='Arrow' />
35
35
  <text className='Description'>Tap the logo and have fun!</text>
36
36
  <text className='Hint'>
37
- Edit<text style={{ fontStyle: 'italic' }}>{' src/App.tsx '}</text>
37
+ Edit<text
38
+ style={{
39
+ fontStyle: 'italic',
40
+ color: 'rgba(255, 255, 255, 0.85)',
41
+ }}
42
+ >
43
+ {' src/App.tsx '}
44
+ </text>
38
45
  to see updates!
39
46
  </text>
40
47
  </view>
@@ -34,7 +34,14 @@ export function App() {
34
34
  <image src={arrow} className='Arrow' />
35
35
  <text className='Description'>Tap the logo and have fun!</text>
36
36
  <text className='Hint'>
37
- Edit<text style={{ fontStyle: 'italic' }}>{' src/App.tsx '}</text>
37
+ Edit<text
38
+ style={{
39
+ fontStyle: 'italic',
40
+ color: 'rgba(255, 255, 255, 0.85)',
41
+ }}
42
+ >
43
+ {' src/App.tsx '}
44
+ </text>
38
45
  to see updates!
39
46
  </text>
40
47
  </view>
@@ -35,7 +35,14 @@ export function App(props) {
35
35
  <image src={arrow} className='Arrow' />
36
36
  <text className='Description'>Tap the logo and have fun!</text>
37
37
  <text className='Hint'>
38
- Edit<text style={{ fontStyle: 'italic' }}>{' src/App.tsx '}</text>
38
+ Edit<text
39
+ style={{
40
+ fontStyle: 'italic',
41
+ color: 'rgba(255, 255, 255, 0.85)',
42
+ }}
43
+ >
44
+ {' src/App.tsx '}
45
+ </text>
39
46
  to see updates!
40
47
  </text>
41
48
  </view>
@@ -73,7 +73,7 @@ test('App', async () => {
73
73
  >
74
74
  Edit
75
75
  <text
76
- style="font-style:italic"
76
+ style="font-style:italic;color:rgba(255, 255, 255, 0.85)"
77
77
  >
78
78
  src/App.tsx
79
79
  </text>
@@ -37,7 +37,14 @@ export function App(props: {
37
37
  <image src={arrow} className='Arrow' />
38
38
  <text className='Description'>Tap the logo and have fun!</text>
39
39
  <text className='Hint'>
40
- Edit<text style={{ fontStyle: 'italic' }}>{' src/App.tsx '}</text>
40
+ Edit<text
41
+ style={{
42
+ fontStyle: 'italic',
43
+ color: 'rgba(255, 255, 255, 0.85)',
44
+ }}
45
+ >
46
+ {' src/App.tsx '}
47
+ </text>
41
48
  to see updates!
42
49
  </text>
43
50
  </view>
@@ -73,7 +73,7 @@ test('App', async () => {
73
73
  >
74
74
  Edit
75
75
  <text
76
- style="font-style:italic"
76
+ style="font-style:italic;color:rgba(255, 255, 255, 0.85)"
77
77
  >
78
78
  src/App.tsx
79
79
  </text>