@kernhq/module-billing 0.5.3 → 0.5.4

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",
3
+ "version": "0.5.4",
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",
@@ -421,13 +421,20 @@ function once(run: () => void) {
421
421
  </span>
422
422
  <span class="text-[12px] text-[var(--kern-ink-400)]">{priceNote(plan)}</span>
423
423
  </div>
424
+ <!--
425
+ Free text an administrator typed, in whatever language they typed it. Under a
426
+ Persian screen an English highlight rendered backwards — "2 GB of storage" with
427
+ the 2 at the far end — because the block's direction was applied to a line whose
428
+ own direction is Latin. `dir="auto"` lets each line follow its first strong
429
+ character; the text alignment stays with the screen.
430
+ -->
424
431
  {#if plan.description}
425
- <p class="text-[13px] text-[var(--kern-ink-700)]">{plan.description}</p>
432
+ <p class="text-[13px] text-[var(--kern-ink-700)]" dir="auto">{plan.description}</p>
426
433
  {/if}
427
434
  {#if plan.highlights.length}
428
435
  <ul class="mt-1 grid gap-1">
429
436
  {#each plan.highlights as h (h)}
430
- <li class="text-[12.5px] text-[var(--kern-ink-700)]">{h}</li>
437
+ <li class="text-[12.5px] text-[var(--kern-ink-700)]" dir="auto">{h}</li>
431
438
  {/each}
432
439
  </ul>
433
440
  {/if}