@gomusdev/web-components 1.45.0 → 1.47.1
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-js/axe-a11y/test-runner.d.ts +7 -0
- package/dist-js/components/annualTicketPersonalization/lib/PersonalizationDetails.svelte.d.ts +3 -0
- package/dist-js/components/donations/components/DonationCampaign.svelte.d.ts +1 -0
- package/dist-js/components/donations/components/DonationSelector.svelte.d.ts +1 -0
- package/dist-js/components/donations/components/Donations.svelte.d.ts +1 -0
- package/dist-js/components/donations/entry.d.ts +0 -0
- package/dist-js/components/order/lib/OrderDetails.svelte.d.ts +1 -0
- package/dist-js/gomus-webcomponents.css +65 -0
- package/dist-js/gomus-webcomponents.iife.js +426 -155
- package/dist-js/gomus-webcomponents.js +426 -155
- package/dist-js/lib/stores/shop.svelte.d.ts +1 -0
- package/package.json +8 -2
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { TestRunnerConfig } from '@storybook/test-runner';
|
|
2
|
+
/**
|
|
3
|
+
* Configuration for the Storybook Test Runner to ensure accessibility checks are processed correctly.
|
|
4
|
+
* Includes timeout settings, pre-visit setup, and post-visit accessibility analysis.
|
|
5
|
+
*/
|
|
6
|
+
declare const config: TestRunnerConfig;
|
|
7
|
+
export default config;
|
package/dist-js/components/annualTicketPersonalization/lib/PersonalizationDetails.svelte.d.ts
CHANGED
|
@@ -56,6 +56,7 @@ export declare class PersonalizationDetails {
|
|
|
56
56
|
}[];
|
|
57
57
|
} | null;
|
|
58
58
|
}[];
|
|
59
|
+
is_bmc_ticket?: boolean | undefined;
|
|
59
60
|
}[];
|
|
60
61
|
} | undefined;
|
|
61
62
|
get ticketSale(): {
|
|
@@ -91,7 +92,9 @@ export declare class PersonalizationDetails {
|
|
|
91
92
|
}[];
|
|
92
93
|
} | null;
|
|
93
94
|
}[];
|
|
95
|
+
is_bmc_ticket?: boolean | undefined;
|
|
94
96
|
} | undefined;
|
|
97
|
+
get isBmcTicket(): Boolean;
|
|
95
98
|
goToPersonalization(ticketSale: TicketSale): any;
|
|
96
99
|
}
|
|
97
100
|
export declare const setPersonalizationDetails: (host: HTMLElement, details: PersonalizationDetails) => void;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponent as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponent as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponent as default } from 'svelte';
|
|
File without changes
|
|
@@ -1296,3 +1296,68 @@ go-link {
|
|
|
1296
1296
|
cursor: not-allowed;
|
|
1297
1297
|
opacity: 0.5;
|
|
1298
1298
|
}
|
|
1299
|
+
|
|
1300
|
+
.go-order-breakdown-ical a {
|
|
1301
|
+
line-height: 24px;
|
|
1302
|
+
display: inline-block;
|
|
1303
|
+
}
|
|
1304
|
+
|
|
1305
|
+
.go-donation-campaign {
|
|
1306
|
+
display: grid;
|
|
1307
|
+
grid-template-columns: 250px 1fr;
|
|
1308
|
+
grid-gap: 20px;
|
|
1309
|
+
gap: 20px;
|
|
1310
|
+
box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.12);
|
|
1311
|
+
margin-bottom: 2.8em;
|
|
1312
|
+
cursor: pointer;
|
|
1313
|
+
border: 1px solid transparent;
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1316
|
+
.go-donation-campaign:hover {
|
|
1317
|
+
border: 1px solid black;
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1320
|
+
.go-donation-campaign.selected {
|
|
1321
|
+
border: 1px solid black;
|
|
1322
|
+
}
|
|
1323
|
+
|
|
1324
|
+
.go-donation-campaign .donation-image img {
|
|
1325
|
+
width: 100%;
|
|
1326
|
+
}
|
|
1327
|
+
|
|
1328
|
+
.go-donation-campaign .donation-info {
|
|
1329
|
+
padding: 20px;
|
|
1330
|
+
}
|
|
1331
|
+
|
|
1332
|
+
.go-donation-campaign .donation-info-title {
|
|
1333
|
+
font-size: 18px;
|
|
1334
|
+
font-weight: 500;
|
|
1335
|
+
}
|
|
1336
|
+
|
|
1337
|
+
.go-donation-campaign .donation-info-description {
|
|
1338
|
+
font-size: 16px;
|
|
1339
|
+
font-weight: 400;
|
|
1340
|
+
}
|
|
1341
|
+
|
|
1342
|
+
.go-donation-campaign .donation-buttons {
|
|
1343
|
+
text-align: center;
|
|
1344
|
+
}
|
|
1345
|
+
|
|
1346
|
+
.donation-selection {
|
|
1347
|
+
margin-top: 6em;
|
|
1348
|
+
margin-bottom: 6em;
|
|
1349
|
+
}
|
|
1350
|
+
|
|
1351
|
+
.donation-options {
|
|
1352
|
+
display: flex;
|
|
1353
|
+
gap: 20px;
|
|
1354
|
+
}
|
|
1355
|
+
|
|
1356
|
+
.donation-options button.btn.btn-default {
|
|
1357
|
+
height: 40px;
|
|
1358
|
+
width: 205px;
|
|
1359
|
+
}
|
|
1360
|
+
|
|
1361
|
+
.donation-options button.btn.btn-default.selected {
|
|
1362
|
+
border: 2px solid black;
|
|
1363
|
+
}
|