summit-registration-lite 7.0.3 → 7.0.5

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 +78 -113
  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 +71 -105
  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 +77 -112
  23. package/dist/components/registration-modal.js.map +1 -1
  24. package/dist/index.css +1 -2
  25. package/dist/index.js +77 -112
  26. package/dist/index.js.map +1 -1
  27. package/e2e/promo-code-discovery.spec.js +4 -2
  28. package/package.json +5 -3
@@ -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.5",
4
4
  "description": "Summit Registration Lite",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -78,7 +78,7 @@
78
78
  "mini-css-extract-plugin": "^2.6.0",
79
79
  "moment": "^2.22.2",
80
80
  "moment-timezone": "^0.5.21",
81
- "openstack-uicore-foundation": "4.2.14",
81
+ "openstack-uicore-foundation": "4.2.31",
82
82
  "optimize-css-assets-webpack-plugin": "^6.0.1",
83
83
  "path": "^0.12.7",
84
84
  "react": "^16.8.4",
@@ -104,6 +104,7 @@
104
104
  "regenerator-runtime": "^0.13.7",
105
105
  "sass": "^1.77.0",
106
106
  "sass-loader": "^12.6.0",
107
+ "spark-md5": "^3.0.2",
107
108
  "style-loader": "^3.3.1",
108
109
  "superagent": "^3.8.1",
109
110
  "sweetalert2": "^8.15.2",
@@ -129,7 +130,7 @@
129
130
  "lodash": "^4.17.14",
130
131
  "moment": "^2.22.2",
131
132
  "moment-timezone": "^0.5.21",
132
- "openstack-uicore-foundation": "4.2.9",
133
+ "openstack-uicore-foundation": "4.2.31",
133
134
  "react": "^16.8.4",
134
135
  "react-bootstrap": "^0.31.5",
135
136
  "react-datetime": "^2.16.2",
@@ -140,6 +141,7 @@
140
141
  "redux": "^4.0.5",
141
142
  "redux-persist": "^5.9.1",
142
143
  "redux-thunk": "^2.3.0",
144
+ "spark-md5": "^3.0.2",
143
145
  "superagent": "^3.8.1",
144
146
  "sweetalert2": "^8.15.2",
145
147
  "urijs": "^1.19.1",