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.
- package/.claude/rules/summit-registration-lite-component-props.md +95 -0
- package/.claude/rules/summit-registration-lite-i18n.md +62 -0
- package/.claude/rules/summit-registration-lite-payment-providers.md +69 -0
- package/.claude/rules/summit-registration-lite-project.md +80 -0
- package/.claude/rules/summit-registration-lite-redux-actions.md +65 -0
- package/.claude/rules/summit-registration-lite-step-flow.md +77 -0
- package/.claude/rules/summit-registration-lite-testing.md +97 -0
- package/.claude/rules/summit-registration-lite-utils.md +71 -0
- package/.claude/skills/summit-registration-lite-add-provider/SKILL.md +155 -0
- package/.claude/skills/summit-registration-lite-dev-setup/SKILL.md +67 -0
- package/.claude/skills/summit-registration-lite-publish/SKILL.md +64 -0
- package/.claude/skills/summit-registration-lite-scaffold-component/SKILL.md +152 -0
- package/.codegraph/config.json +141 -0
- package/.codegraph/daemon.pid +6 -0
- package/dist/components/index.css +1 -2
- package/dist/components/index.js +78 -113
- package/dist/components/index.js.map +1 -1
- package/dist/components/registration-form.css +1 -2
- package/dist/components/registration-form.js +71 -105
- package/dist/components/registration-form.js.map +1 -1
- package/dist/components/registration-modal.css +1 -2
- package/dist/components/registration-modal.js +77 -112
- package/dist/components/registration-modal.js.map +1 -1
- package/dist/index.css +1 -2
- package/dist/index.js +77 -112
- package/dist/index.js.map +1 -1
- package/e2e/promo-code-discovery.spec.js +4 -2
- 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('
|
|
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
|
-
|
|
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
|
+
"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.
|
|
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.
|
|
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",
|