summit-registration-lite 7.0.3 → 7.0.4

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.
Files changed (28) hide show
  1. package/.claude/rules/summit-registration-lite-component-props.md +95 -0
  2. package/.claude/rules/summit-registration-lite-i18n.md +62 -0
  3. package/.claude/rules/summit-registration-lite-payment-providers.md +69 -0
  4. package/.claude/rules/summit-registration-lite-project.md +80 -0
  5. package/.claude/rules/summit-registration-lite-redux-actions.md +65 -0
  6. package/.claude/rules/summit-registration-lite-step-flow.md +77 -0
  7. package/.claude/rules/summit-registration-lite-testing.md +97 -0
  8. package/.claude/rules/summit-registration-lite-utils.md +71 -0
  9. package/.claude/skills/summit-registration-lite-add-provider/SKILL.md +155 -0
  10. package/.claude/skills/summit-registration-lite-dev-setup/SKILL.md +67 -0
  11. package/.claude/skills/summit-registration-lite-publish/SKILL.md +64 -0
  12. package/.claude/skills/summit-registration-lite-scaffold-component/SKILL.md +152 -0
  13. package/.codegraph/config.json +141 -0
  14. package/.codegraph/daemon.pid +6 -0
  15. package/dist/components/index.css +1 -2
  16. package/dist/components/index.js +24 -52
  17. package/dist/components/index.js.map +1 -1
  18. package/dist/components/registration-form.css +1 -2
  19. package/dist/components/registration-form.js +20 -47
  20. package/dist/components/registration-form.js.map +1 -1
  21. package/dist/components/registration-modal.css +1 -2
  22. package/dist/components/registration-modal.js +23 -51
  23. package/dist/components/registration-modal.js.map +1 -1
  24. package/dist/index.css +1 -2
  25. package/dist/index.js +23 -51
  26. package/dist/index.js.map +1 -1
  27. package/e2e/promo-code-discovery.spec.js +4 -2
  28. package/package.json +1 -1
@@ -275,13 +275,15 @@ test.describe('validation errors', () => {
275
275
  });
276
276
 
277
277
  test.describe('no tickets available', () => {
278
- test('shows no tickets message', async ({ page }) => {
278
+ test('renders the noAllowedTicketsMessage in place of the dropdown', async ({ page }) => {
279
279
  await setupRoutes(page, {
280
280
  tickets: [],
281
281
  discovery: [discoveredCode()],
282
282
  });
283
283
  await page.goto('/');
284
- await expect(page.locator('text=no tickets currently available')).toBeVisible();
284
+ // Dev harness sets a default noAllowedTicketsMessage; the inline notice
285
+ // renders it (as HTML, so the my-tickets link is clickable).
286
+ await expect(page.locator('text=You already have purchased all available tickets')).toBeVisible();
285
287
  });
286
288
  });
287
289
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "summit-registration-lite",
3
- "version": "7.0.3",
3
+ "version": "7.0.4",
4
4
  "description": "Summit Registration Lite",
5
5
  "main": "index.js",
6
6
  "scripts": {