@meith/plugin-dues 0.25.1 → 0.26.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/README.md +2 -2
- package/package.json +3 -3
- package/src/definition.tsx +1 -1
package/README.md
CHANGED
|
@@ -40,7 +40,7 @@ history behind it, and a checkout a visitor can actually go through. See
|
|
|
40
40
|
1. **Register the plugin** where plugins are registered:
|
|
41
41
|
|
|
42
42
|
```ts
|
|
43
|
-
// apps/community/
|
|
43
|
+
// apps/community/meith.plugins.ts
|
|
44
44
|
import { dues } from '@meith/plugin-dues'
|
|
45
45
|
|
|
46
46
|
export const INSTALLED_PLUGINS = [{ key: 'dues', plugin: dues }]
|
|
@@ -55,7 +55,7 @@ history behind it, and a checkout a visitor can actually go through. See
|
|
|
55
55
|
or code-declared seed plans for a demo or test board — calls `createDues`
|
|
56
56
|
instead: `createDues({ extraRedirectHosts: ['proxy.example'] })`. This
|
|
57
57
|
repository's own demo and test boards do exactly that, in
|
|
58
|
-
`
|
|
58
|
+
`meith.demo.plugins.ts`, behind `DEMO_MODE` and `DUES_TEST_BOARD`. A
|
|
59
59
|
seed plan populates the plan table on the board's first run and is
|
|
60
60
|
ignored once it has rows — after that, the panel owns the plans, exactly
|
|
61
61
|
as for a board that never declared any.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meith/plugin-dues",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.26.1",
|
|
4
4
|
"description": "Membership dues for a Meith board: Stripe-backed subscriptions as a contained plugin.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"access": "public"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@meith/plugin-kit": "^0.
|
|
24
|
-
"@meith/theme-kit": "^0.
|
|
23
|
+
"@meith/plugin-kit": "^0.26.1",
|
|
24
|
+
"@meith/theme-kit": "^0.26.1"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
27
|
"react": "^19.2.0"
|
package/src/definition.tsx
CHANGED
|
@@ -57,7 +57,7 @@ export function createDues(input: DuesConfigInput = {}): PluginDefinition {
|
|
|
57
57
|
return definePlugin({
|
|
58
58
|
key: 'dues',
|
|
59
59
|
name: 'Dues',
|
|
60
|
-
version: '0.
|
|
60
|
+
version: '0.26.1',
|
|
61
61
|
description: en['dues.definition.description'].replace(
|
|
62
62
|
'{label}',
|
|
63
63
|
staticConfig.label.toLowerCase(),
|