payment-kit 1.18.36 → 1.18.38
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/blocklet.yml +1 -2
- package/package.json +17 -17
- package/src/app.tsx +124 -125
- package/src/components/chart.tsx +19 -5
- package/src/components/customer/notification-preference.tsx +6 -5
- package/src/components/date-range-picker.tsx +1 -16
- package/src/components/drawer-form.tsx +4 -3
- package/src/components/filter-toolbar.tsx +49 -34
- package/src/components/info-card.tsx +9 -7
- package/src/components/invoice-pdf/pdf.tsx +1 -1
- package/src/components/layout/admin.tsx +2 -2
- package/src/components/metadata/form.tsx +3 -2
- package/src/components/metadata/list.tsx +1 -1
- package/src/components/payment-link/chrome.tsx +0 -1
- package/src/components/payment-link/item.tsx +1 -1
- package/src/components/payment-link/preview.tsx +3 -1
- package/src/components/price/currency-select.tsx +1 -1
- package/src/components/pricing-table/payment-settings.tsx +1 -1
- package/src/components/pricing-table/preview.tsx +3 -1
- package/src/components/pricing-table/product-item.tsx +1 -1
- package/src/components/subscription/portal/list.tsx +2 -2
- package/src/components/uploader.tsx +2 -1
- package/src/components/webhook/attempts.tsx +1 -1
- package/src/global.css +0 -7
- package/src/pages/admin/developers/webhooks/detail.tsx +2 -2
- package/src/pages/admin/index.tsx +2 -2
- package/src/pages/admin/overview.tsx +1 -1
- package/src/pages/admin/payments/intents/detail.tsx +1 -1
- package/src/pages/admin/payments/payouts/detail.tsx +1 -1
- package/src/pages/admin/payments/refunds/detail.tsx +1 -1
- package/src/pages/admin/products/prices/list.tsx +7 -2
- package/src/pages/admin/products/pricing-tables/create.tsx +2 -2
- package/src/pages/admin/settings/payment-methods/index.tsx +7 -4
- package/src/pages/admin/settings/vault-config/index.tsx +3 -2
- package/src/pages/checkout/pricing-table.tsx +1 -1
- package/src/pages/customer/index.tsx +4 -3
- package/src/pages/customer/invoice/detail.tsx +1 -1
- package/src/pages/customer/payout/detail.tsx +1 -1
- package/src/pages/customer/recharge/account.tsx +3 -4
- package/src/pages/customer/recharge/subscription.tsx +3 -4
- package/src/pages/customer/subscription/embed.tsx +2 -2
- package/src/pages/integrations/donations/preview.tsx +12 -10
- package/src/pages/integrations/index.tsx +1 -1
- package/src/pages/integrations/overview.tsx +2 -4
|
@@ -18,8 +18,9 @@ function PreviewAvatars({ count }: { count: number }) {
|
|
|
18
18
|
width: '24px',
|
|
19
19
|
height: '24px',
|
|
20
20
|
borderRadius: '50%',
|
|
21
|
-
bgcolor: '
|
|
22
|
-
border: '2px solid
|
|
21
|
+
bgcolor: 'grey.200',
|
|
22
|
+
border: '2px solid',
|
|
23
|
+
borderColor: 'grey.100',
|
|
23
24
|
position: 'relative',
|
|
24
25
|
marginLeft: i === 0 ? 0 : '-8px',
|
|
25
26
|
zIndex: count - i,
|
|
@@ -37,7 +38,7 @@ function PreviewAvatars({ count }: { count: number }) {
|
|
|
37
38
|
pr: 1,
|
|
38
39
|
ml: -1,
|
|
39
40
|
borderRadius: '8px',
|
|
40
|
-
backgroundColor: '
|
|
41
|
+
backgroundColor: 'background.paper',
|
|
41
42
|
height: '24px',
|
|
42
43
|
display: 'flex',
|
|
43
44
|
alignItems: 'center',
|
|
@@ -123,8 +124,9 @@ export default function DonationPreview({ config }: { config: TSetting['settings
|
|
|
123
124
|
width: '16px',
|
|
124
125
|
height: '16px',
|
|
125
126
|
borderRadius: '50%',
|
|
126
|
-
bgcolor: '
|
|
127
|
-
border: '2px solid
|
|
127
|
+
bgcolor: 'grey.200',
|
|
128
|
+
border: '2px solid',
|
|
129
|
+
borderColor: 'grey.100',
|
|
128
130
|
position: 'relative',
|
|
129
131
|
}}
|
|
130
132
|
/>
|
|
@@ -133,7 +135,7 @@ export default function DonationPreview({ config }: { config: TSetting['settings
|
|
|
133
135
|
width: '100%',
|
|
134
136
|
height: 8,
|
|
135
137
|
borderRadius: 1,
|
|
136
|
-
bgcolor: '
|
|
138
|
+
bgcolor: 'grey.200',
|
|
137
139
|
}}
|
|
138
140
|
/>
|
|
139
141
|
</Box>
|
|
@@ -143,7 +145,7 @@ export default function DonationPreview({ config }: { config: TSetting['settings
|
|
|
143
145
|
width: '25%',
|
|
144
146
|
height: 8,
|
|
145
147
|
borderRadius: 1,
|
|
146
|
-
bgcolor: '
|
|
148
|
+
bgcolor: 'grey.200',
|
|
147
149
|
}}
|
|
148
150
|
/>
|
|
149
151
|
</Box>
|
|
@@ -175,7 +177,7 @@ export default function DonationPreview({ config }: { config: TSetting['settings
|
|
|
175
177
|
variant="outlined"
|
|
176
178
|
size="small"
|
|
177
179
|
sx={{
|
|
178
|
-
borderColor: selectedAmount === amount ? 'primary.main' : '
|
|
180
|
+
borderColor: selectedAmount === amount ? 'primary.main' : 'grey.100',
|
|
179
181
|
borderWidth: selectedAmount === amount ? 2 : 1,
|
|
180
182
|
color: selectedAmount === amount ? 'primary.main' : 'text.primary',
|
|
181
183
|
}}
|
|
@@ -188,7 +190,7 @@ export default function DonationPreview({ config }: { config: TSetting['settings
|
|
|
188
190
|
variant="outlined"
|
|
189
191
|
size="small"
|
|
190
192
|
sx={{
|
|
191
|
-
borderColor: showCustom ? 'primary.main' : '
|
|
193
|
+
borderColor: showCustom ? 'primary.main' : 'grey.100',
|
|
192
194
|
borderWidth: showCustom ? 2 : 1,
|
|
193
195
|
color: showCustom ? 'primary.main' : 'text.primary',
|
|
194
196
|
}}
|
|
@@ -226,7 +228,7 @@ export default function DonationPreview({ config }: { config: TSetting['settings
|
|
|
226
228
|
sx={{
|
|
227
229
|
px: 2,
|
|
228
230
|
py: 0.5,
|
|
229
|
-
bgcolor: '
|
|
231
|
+
bgcolor: 'grey.200',
|
|
230
232
|
borderRadius: 1,
|
|
231
233
|
width: 40,
|
|
232
234
|
height: 24,
|
|
@@ -89,8 +89,7 @@ export default function Overview() {
|
|
|
89
89
|
height: '100%',
|
|
90
90
|
cursor: 'pointer',
|
|
91
91
|
'&:hover': {
|
|
92
|
-
boxShadow:
|
|
93
|
-
'0px 0px 0px 1px var(--shadows-card-hover-1, rgba(2, 7, 19, 0.08)), 0px 1px 2px -1px var(--shadows-card-hover-2, rgba(2, 7, 19, 0.08)), 0px 2px 8px 0px var(--shadows-card-hover-3, rgba(2, 7, 19, 0.10))',
|
|
92
|
+
boxShadow: 2,
|
|
94
93
|
},
|
|
95
94
|
}}>
|
|
96
95
|
<Box mb={1}>
|
|
@@ -122,8 +121,7 @@ export default function Overview() {
|
|
|
122
121
|
height: '100%',
|
|
123
122
|
cursor: 'pointer',
|
|
124
123
|
'&:hover': {
|
|
125
|
-
boxShadow:
|
|
126
|
-
'0px 0px 0px 1px var(--shadows-card-hover-1, rgba(2, 7, 19, 0.08)), 0px 1px 2px -1px var(--shadows-card-hover-2, rgba(2, 7, 19, 0.08)), 0px 2px 8px 0px var(--shadows-card-hover-3, rgba(2, 7, 19, 0.10))',
|
|
124
|
+
boxShadow: 2,
|
|
127
125
|
},
|
|
128
126
|
}}>
|
|
129
127
|
<Box mb={1}>
|