@gomusdev/web-components 1.46.0 → 1.48.0

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.
@@ -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;
@@ -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
@@ -37,6 +37,7 @@ export declare class OrderDetails {
37
37
  donations: {
38
38
  id: number;
39
39
  donation_cents: number;
40
+ donation_campaign_id: number | null;
40
41
  }[];
41
42
  customer: {
42
43
  category_id: number | null;
@@ -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
+ }