Skip to content

Commit 74bbade

Browse files
committed
Update SignUpGenerator components and utilities - Enhanced UI components with improved styling and functionality - Updated type definitions and context management - Improved email generation utilities
1 parent 75f8f81 commit 74bbade

File tree

8 files changed

+466
-128
lines changed

8 files changed

+466
-128
lines changed

.gitignore

Lines changed: 182 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -7,62 +7,211 @@ yarn-error.log*
77
pnpm-debug.log*
88
lerna-debug.log*
99

10-
node_modules
10+
# Runtime data
11+
pids
12+
*.pid
13+
*.seed
14+
*.pid.lock
15+
16+
# Directory for instrumented libs generated by jscoverage/JSCover
17+
lib-cov
18+
19+
# Coverage directory used by tools like istanbul
20+
coverage/
21+
*.lcov
22+
23+
# nyc test coverage
24+
.nyc_output/
25+
26+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
27+
.grunt
28+
29+
# Bower dependency directory (https://bower.io/)
30+
bower_components
31+
32+
# node-waf configuration
33+
.lock-wscript
34+
35+
# Compiled binary addons (https://nodejs.org/api/addons.html)
36+
build/Release
37+
38+
# Dependency directories
39+
node_modules/
40+
jspm_packages/
41+
42+
# Snowpack dependency directory (https://snowpack.dev/)
43+
web_modules/
44+
45+
# TypeScript cache
46+
*.tsbuildinfo
47+
48+
# Optional npm cache directory
49+
.npm
50+
51+
# Optional eslint cache
52+
.eslintcache
53+
54+
# Optional stylelint cache
55+
.stylelintcache
56+
57+
# Microbundle cache
58+
.rpt2_cache/
59+
.rts2_cache_cjs/
60+
.rts2_cache_es/
61+
.rts2_cache_umd/
62+
63+
# Optional REPL history
64+
.node_repl_history
65+
66+
# Output of 'npm pack'
67+
*.tgz
68+
69+
# Yarn Integrity file
70+
.yarn-integrity
71+
72+
# dotenv environment variable files
73+
.env
74+
.env.development.local
75+
.env.test.local
76+
.env.production.local
77+
.env.local
78+
79+
# parcel-bundler cache (https://parceljs.org/)
80+
.cache
81+
.parcel-cache
82+
83+
# Next.js build output
84+
.next
85+
out
86+
87+
# Nuxt.js build / generate output
88+
.nuxt
1189
dist
12-
dist-ssr
90+
91+
# Gatsby files
92+
.cache/
93+
public
94+
95+
# Vite build outputs
96+
dist/
97+
dist-ssr/
1398
*.local
1499

100+
# Rollup.js default build output
101+
dist/
102+
103+
# Storybook build outputs
104+
.out
105+
.storybook-out
106+
storybook-static
107+
108+
# Temporary folders
109+
tmp/
110+
temp/
111+
.tmp/
112+
15113
# Editor directories and files
16114
.vscode/*
17115
!.vscode/extensions.json
18-
.idea
116+
!.vscode/settings.json
117+
!.vscode/tasks.json
118+
!.vscode/launch.json
119+
.idea/
120+
*.swp
121+
*.swo
122+
*.swn
123+
*~
124+
125+
# OS generated files
19126
.DS_Store
20-
*.suo
21-
*.ntvs*
22-
*.njsproj
23-
*.sln
24-
*.sw?
127+
.DS_Store?
128+
._*
129+
.Spotlight-V100
130+
.Trashes
131+
ehthumbs.db
132+
Thumbs.db
25133

26-
# Environment variables
27-
.env
28-
.env.local
29-
.env.development.local
30-
.env.test.local
31-
.env.production.local
134+
# Windows
135+
*.exe
136+
*.msi
137+
*.msm
138+
*.msp
32139

33-
# Build artifacts
140+
# IDE - IntelliJ
141+
.idea/
142+
*.iml
143+
*.ipr
144+
*.iws
145+
146+
# IDE - NetBeans
147+
nbproject/private/
34148
build/
149+
nbbuild/
35150
dist/
151+
nbdist/
152+
.nb-gradle/
36153

37-
# Temporary files
38-
.tmp/
154+
# IDE - Eclipse
155+
.metadata
156+
bin/
39157
tmp/
40-
temp/
158+
*.tmp
159+
*.bak
160+
*.swp
161+
*~.nib
162+
local.properties
163+
.settings/
164+
.loadpath
165+
.recommenders
41166

42-
# Log files
43-
*.log
167+
# Project specific ignores
168+
# Custom temporary files
169+
.tmp/
170+
server.pid
171+
server.log
44172

45-
# Coverage directory used by tools like istanbul
46-
coverage/
47-
*.lcov
173+
# Build artifacts
174+
build/
175+
dist/
176+
out/
48177

49-
# nyc test coverage
50-
.nyc_output/
178+
# Test artifacts
179+
*.spec.js.snap
180+
*.test.js.snap
181+
__snapshots__/
51182

52-
# Dependency directories
53-
node_modules/
183+
# Runtime files
184+
*.pid
185+
*.seed
186+
*.pid.lock
187+
188+
# Diagnostic reports (https://nodejs.org/api/report.html)
189+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
54190

55191
# Optional npm cache directory
56192
.npm
57193

58194
# Optional eslint cache
59195
.eslintcache
60196

61-
# Optional REPL history
62-
.node_repl_history
197+
# Playwright Test artifacts
198+
test-results/
199+
playwright-report/
200+
playwright/.cache/
63201

64-
# Output of 'npm pack'
65-
*.tgz
202+
# Chromium downloads for Playwright
203+
chromium/
66204

67-
# Yarn Integrity file
68-
.yarn-integrity
205+
# Auto-generated files
206+
*.auto.js
207+
*.auto.ts
208+
*.generated.js
209+
*.generated.ts
210+
211+
# Package manager lock files (if using yarn)
212+
# Uncomment if using yarn and want to ignore lock file
213+
# yarn.lock
214+
215+
# Package manager lock files (if using pnpm)
216+
# Uncomment if using pnpm and want to ignore lock file
217+
# pnpm-lock.yaml

src/components/ActionButtons.tsx

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -128,13 +128,7 @@ const ActionButtons: React.FC<ActionButtonsProps> = ({ onShowMessage }) => {
128128
</Button>
129129
</Box>
130130

131-
{state.history.length > 0 && (
132-
<Box sx={{ mt: 2 }}>
133-
<Typography variant="body2" color="text.secondary">
134-
已生成 {state.history.length} 条历史记录
135-
</Typography>
136-
</Box>
137-
)}
131+
138132
</Paper>
139133
);
140134
};

0 commit comments

Comments
 (0)