@kernhq/module-billing 0.5.5 → 0.5.6
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kernhq/module-billing",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.6",
|
|
4
4
|
"description": "Kern billing module: plans, entitlements, subscriptions and Stripe — the mechanism that lets any Kern instance sell seats on itself",
|
|
5
5
|
"homepage": "https://github.com/KernAIO/module-billing#readme",
|
|
6
6
|
"license": "AGPL-3.0-only",
|
|
@@ -413,7 +413,14 @@ function once(run: () => void) {
|
|
|
413
413
|
{@const isCurrent = sub?.planId === plan.id}
|
|
414
414
|
{@const blocked = planBlockedReason(plan, { seats: usage.seats })}
|
|
415
415
|
<li class="grid">
|
|
416
|
-
|
|
416
|
+
<!--
|
|
417
|
+
`Card` is a block: a `grid` class on it does not reach its content, so the gap
|
|
418
|
+
between the highlights and the button was lost and the button sat flush against the
|
|
419
|
+
last line with the card's padding pooled underneath. The layout lives on an element
|
|
420
|
+
of our own inside the card.
|
|
421
|
+
-->
|
|
422
|
+
<Card class="p-4">
|
|
423
|
+
<div class="grid h-full content-between gap-5">
|
|
417
424
|
<div class="grid gap-2">
|
|
418
425
|
<div class="flex items-center justify-between gap-2">
|
|
419
426
|
<span class="text-[15px] font-medium text-[var(--kern-ink-900)]">{plan.name}</span>
|
|
@@ -468,6 +475,7 @@ function once(run: () => void) {
|
|
|
468
475
|
</span>
|
|
469
476
|
{/snippet}
|
|
470
477
|
</Tooltip>
|
|
478
|
+
</div>
|
|
471
479
|
</Card>
|
|
472
480
|
</li>
|
|
473
481
|
{/each}
|