@meith/plugin-dues 0.6.0 → 0.7.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.
- package/package.json +2 -2
- package/src/definition.tsx +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meith/plugin-dues",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "Membership dues for a Meith board: Stripe-backed subscriptions as a contained plugin.",
|
|
5
5
|
"license": "LGPL-3.0-or-later",
|
|
6
6
|
"repository": {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"access": "public"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@meith/plugin-kit": "^0.
|
|
23
|
+
"@meith/plugin-kit": "^0.7.0"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
26
|
"react": "^19.2.0"
|
package/src/definition.tsx
CHANGED
|
@@ -39,7 +39,7 @@ export function dues(input: DuesConfigInput): PluginDefinition {
|
|
|
39
39
|
return definePlugin({
|
|
40
40
|
key: 'dues',
|
|
41
41
|
name: 'Dues',
|
|
42
|
-
version: '0.
|
|
42
|
+
version: '0.7.0',
|
|
43
43
|
description:
|
|
44
44
|
`Sells ${config.label.toLowerCase()} — time-limited membership of a group — ` +
|
|
45
45
|
'through Stripe, for yourself or as a gift.',
|
|
@@ -251,27 +251,27 @@ export function dues(input: DuesConfigInput): PluginDefinition {
|
|
|
251
251
|
adminPages: [
|
|
252
252
|
{
|
|
253
253
|
path: 'status',
|
|
254
|
-
title: '
|
|
254
|
+
title: 'Status',
|
|
255
255
|
render: (context) => StatusPage({ config, context }),
|
|
256
256
|
},
|
|
257
257
|
{
|
|
258
258
|
path: 'plans',
|
|
259
|
-
title: '
|
|
259
|
+
title: 'Plans',
|
|
260
260
|
render: (context) => PlansAdminPage({ config, context }),
|
|
261
261
|
},
|
|
262
262
|
{
|
|
263
263
|
path: 'members',
|
|
264
|
-
title: '
|
|
264
|
+
title: 'Memberships',
|
|
265
265
|
render: (context) => MembersPage({ context }),
|
|
266
266
|
},
|
|
267
267
|
{
|
|
268
268
|
path: 'codes',
|
|
269
|
-
title: '
|
|
269
|
+
title: 'Discount codes',
|
|
270
270
|
render: (context) => CodesPage({ config, context }),
|
|
271
271
|
},
|
|
272
272
|
{
|
|
273
273
|
path: 'ledger',
|
|
274
|
-
title: '
|
|
274
|
+
title: 'Ledger',
|
|
275
275
|
render: (context) => LedgerPage({ config, context }),
|
|
276
276
|
},
|
|
277
277
|
],
|