summit-registration-lite 7.0.5 → 7.0.7
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/components/index.js +85 -32
- package/dist/components/index.js.map +1 -1
- package/dist/components/registration-form.js +85 -32
- package/dist/components/registration-form.js.map +1 -1
- package/dist/components/registration-modal.js +85 -32
- package/dist/components/registration-modal.js.map +1 -1
- package/dist/index.js +85 -32
- package/dist/index.js.map +1 -1
- package/e2e/promo-code-date-filter.spec.js +103 -0
- package/e2e/promo-code-discovery.spec.js +55 -7
- package/e2e/promo-code-invalid-clears-warning.spec.js +57 -0
- package/package.json +3 -3
- package/.claude/rules/summit-registration-lite-component-props.md +0 -95
- package/.claude/rules/summit-registration-lite-i18n.md +0 -62
- package/.claude/rules/summit-registration-lite-payment-providers.md +0 -69
- package/.claude/rules/summit-registration-lite-project.md +0 -80
- package/.claude/rules/summit-registration-lite-redux-actions.md +0 -65
- package/.claude/rules/summit-registration-lite-step-flow.md +0 -77
- package/.claude/rules/summit-registration-lite-testing.md +0 -97
- package/.claude/rules/summit-registration-lite-utils.md +0 -71
- package/.claude/skills/summit-registration-lite-add-provider/SKILL.md +0 -155
- package/.claude/skills/summit-registration-lite-dev-setup/SKILL.md +0 -67
- package/.claude/skills/summit-registration-lite-publish/SKILL.md +0 -64
- package/.claude/skills/summit-registration-lite-scaffold-component/SKILL.md +0 -152
- package/.codegraph/config.json +0 -141
- package/.codegraph/daemon.pid +0 -6
package/.codegraph/config.json
DELETED
|
@@ -1,141 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 1,
|
|
3
|
-
"include": [
|
|
4
|
-
"**/*.ts",
|
|
5
|
-
"**/*.tsx",
|
|
6
|
-
"**/*.js",
|
|
7
|
-
"**/*.jsx",
|
|
8
|
-
"**/*.py",
|
|
9
|
-
"**/*.go",
|
|
10
|
-
"**/*.rs",
|
|
11
|
-
"**/*.java",
|
|
12
|
-
"**/*.c",
|
|
13
|
-
"**/*.h",
|
|
14
|
-
"**/*.cpp",
|
|
15
|
-
"**/*.hpp",
|
|
16
|
-
"**/*.cc",
|
|
17
|
-
"**/*.cxx",
|
|
18
|
-
"**/*.cs",
|
|
19
|
-
"**/*.php",
|
|
20
|
-
"**/*.rb",
|
|
21
|
-
"**/*.swift",
|
|
22
|
-
"**/*.kt",
|
|
23
|
-
"**/*.kts",
|
|
24
|
-
"**/*.dart",
|
|
25
|
-
"**/*.svelte",
|
|
26
|
-
"**/*.liquid",
|
|
27
|
-
"**/*.pas",
|
|
28
|
-
"**/*.dpr",
|
|
29
|
-
"**/*.dpk",
|
|
30
|
-
"**/*.lpr",
|
|
31
|
-
"**/*.dfm",
|
|
32
|
-
"**/*.fmx"
|
|
33
|
-
],
|
|
34
|
-
"exclude": [
|
|
35
|
-
"**/.git/**",
|
|
36
|
-
"**/node_modules/**",
|
|
37
|
-
"**/vendor/**",
|
|
38
|
-
"**/Pods/**",
|
|
39
|
-
"**/dist/**",
|
|
40
|
-
"**/build/**",
|
|
41
|
-
"**/out/**",
|
|
42
|
-
"**/bin/**",
|
|
43
|
-
"**/obj/**",
|
|
44
|
-
"**/target/**",
|
|
45
|
-
"**/*.min.js",
|
|
46
|
-
"**/*.bundle.js",
|
|
47
|
-
"**/.next/**",
|
|
48
|
-
"**/.nuxt/**",
|
|
49
|
-
"**/.svelte-kit/**",
|
|
50
|
-
"**/.output/**",
|
|
51
|
-
"**/.turbo/**",
|
|
52
|
-
"**/.cache/**",
|
|
53
|
-
"**/.parcel-cache/**",
|
|
54
|
-
"**/.vite/**",
|
|
55
|
-
"**/.astro/**",
|
|
56
|
-
"**/.docusaurus/**",
|
|
57
|
-
"**/.gatsby/**",
|
|
58
|
-
"**/.webpack/**",
|
|
59
|
-
"**/.nx/**",
|
|
60
|
-
"**/.yarn/cache/**",
|
|
61
|
-
"**/.pnpm-store/**",
|
|
62
|
-
"**/storybook-static/**",
|
|
63
|
-
"**/.expo/**",
|
|
64
|
-
"**/web-build/**",
|
|
65
|
-
"**/ios/Pods/**",
|
|
66
|
-
"**/ios/build/**",
|
|
67
|
-
"**/android/build/**",
|
|
68
|
-
"**/android/.gradle/**",
|
|
69
|
-
"**/__pycache__/**",
|
|
70
|
-
"**/.venv/**",
|
|
71
|
-
"**/venv/**",
|
|
72
|
-
"**/site-packages/**",
|
|
73
|
-
"**/dist-packages/**",
|
|
74
|
-
"**/.pytest_cache/**",
|
|
75
|
-
"**/.mypy_cache/**",
|
|
76
|
-
"**/.ruff_cache/**",
|
|
77
|
-
"**/.tox/**",
|
|
78
|
-
"**/.nox/**",
|
|
79
|
-
"**/*.egg-info/**",
|
|
80
|
-
"**/.eggs/**",
|
|
81
|
-
"**/go/pkg/mod/**",
|
|
82
|
-
"**/target/debug/**",
|
|
83
|
-
"**/target/release/**",
|
|
84
|
-
"**/.gradle/**",
|
|
85
|
-
"**/.m2/**",
|
|
86
|
-
"**/generated-sources/**",
|
|
87
|
-
"**/.kotlin/**",
|
|
88
|
-
"**/.dart_tool/**",
|
|
89
|
-
"**/.vs/**",
|
|
90
|
-
"**/.nuget/**",
|
|
91
|
-
"**/artifacts/**",
|
|
92
|
-
"**/publish/**",
|
|
93
|
-
"**/cmake-build-*/**",
|
|
94
|
-
"**/CMakeFiles/**",
|
|
95
|
-
"**/bazel-*/**",
|
|
96
|
-
"**/vcpkg_installed/**",
|
|
97
|
-
"**/.conan/**",
|
|
98
|
-
"**/Debug/**",
|
|
99
|
-
"**/Release/**",
|
|
100
|
-
"**/x64/**",
|
|
101
|
-
"**/.pio/**",
|
|
102
|
-
"**/release/**",
|
|
103
|
-
"**/*.app/**",
|
|
104
|
-
"**/*.asar",
|
|
105
|
-
"**/DerivedData/**",
|
|
106
|
-
"**/.build/**",
|
|
107
|
-
"**/.swiftpm/**",
|
|
108
|
-
"**/xcuserdata/**",
|
|
109
|
-
"**/Carthage/Build/**",
|
|
110
|
-
"**/SourcePackages/**",
|
|
111
|
-
"**/__history/**",
|
|
112
|
-
"**/__recovery/**",
|
|
113
|
-
"**/*.dcu",
|
|
114
|
-
"**/.composer/**",
|
|
115
|
-
"**/storage/framework/**",
|
|
116
|
-
"**/bootstrap/cache/**",
|
|
117
|
-
"**/.bundle/**",
|
|
118
|
-
"**/tmp/cache/**",
|
|
119
|
-
"**/public/assets/**",
|
|
120
|
-
"**/public/packs/**",
|
|
121
|
-
"**/.yardoc/**",
|
|
122
|
-
"**/coverage/**",
|
|
123
|
-
"**/htmlcov/**",
|
|
124
|
-
"**/.nyc_output/**",
|
|
125
|
-
"**/test-results/**",
|
|
126
|
-
"**/.coverage/**",
|
|
127
|
-
"**/.idea/**",
|
|
128
|
-
"**/logs/**",
|
|
129
|
-
"**/tmp/**",
|
|
130
|
-
"**/temp/**",
|
|
131
|
-
"**/_build/**",
|
|
132
|
-
"**/docs/_build/**",
|
|
133
|
-
"**/site/**"
|
|
134
|
-
],
|
|
135
|
-
"languages": [],
|
|
136
|
-
"frameworks": [],
|
|
137
|
-
"maxFileSize": 1048576,
|
|
138
|
-
"extractDocstrings": true,
|
|
139
|
-
"trackCallSites": true,
|
|
140
|
-
"enableEmbeddings": true
|
|
141
|
-
}
|