@seaverse/payment-sdk 0.9.7 → 0.9.8

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/index.cjs CHANGED
@@ -1887,6 +1887,9 @@ class PaymentModal {
1887
1887
  onClose: options.onClose ?? (() => { }),
1888
1888
  className: options.className ?? '',
1889
1889
  maxWidth: options.maxWidth ?? '480px',
1890
+ background: options.background ?? '#ffffff',
1891
+ border: options.border ?? '1px solid rgba(0, 0, 0, 0.1)',
1892
+ borderRadius: options.borderRadius ?? '16px',
1890
1893
  };
1891
1894
  }
1892
1895
  /**
@@ -2013,9 +2016,9 @@ class PaymentModal {
2013
2016
  width: 100%;
2014
2017
  max-width: ${this.options.maxWidth};
2015
2018
  overflow-y: auto;
2016
- border-radius: 16px;
2017
- border: 1px solid rgba(0, 0, 0, 0.1);
2018
- background: #ffffff;
2019
+ border-radius: ${this.options.borderRadius};
2020
+ border: ${this.options.border};
2021
+ background: ${this.options.background};
2019
2022
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
2020
2023
  transform: translateY(20px);
2021
2024
  opacity: 0;
@@ -8306,6 +8309,9 @@ class CreditPackageModal extends BasePackageModal {
8306
8309
  closeOnOverlayClick: false, // Disable click overlay to close
8307
8310
  closeOnEsc: false, // Disable ESC key to close
8308
8311
  maxWidth: '1200px',
8312
+ background: '#0a0a0f',
8313
+ border: '1px solid rgba(255, 255, 255, 0.1)',
8314
+ borderRadius: '24px',
8309
8315
  onClose: () => {
8310
8316
  this.cleanup();
8311
8317
  this.options.onClose?.();
@@ -8477,13 +8483,8 @@ class CreditPackageModal extends BasePackageModal {
8477
8483
  * Apply modal styling (hook method override)
8478
8484
  */
8479
8485
  applyModalStyling() {
8480
- // Modify modal background to dark
8481
- const modalElement = document.querySelector('.payment-modal');
8482
- if (modalElement) {
8483
- modalElement.style.background = '#0a0a0f';
8484
- modalElement.style.border = '1px solid rgba(255, 255, 255, 0.1)';
8485
- modalElement.style.borderRadius = '24px';
8486
- }
8486
+ // Modal background, border, and borderRadius are now configured
8487
+ // via PaymentModal constructor options in createModal()
8487
8488
  // Modify title style
8488
8489
  const titleElement = document.querySelector('.payment-modal-title');
8489
8490
  if (titleElement) {