@beeblock/svelar 0.5.1 → 0.6.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/README.md CHANGED
@@ -15,11 +15,9 @@ Full documentation is available at **[svelar.dev](https://svelar.dev)**.
15
15
  ## Quick Start
16
16
 
17
17
  ```bash
18
- # Scaffold a new project
18
+ # Scaffold a new project (installs deps, shadcn-svelte, runs migrations automatically)
19
19
  npx svelar new my-app
20
20
  cd my-app
21
- npm install
22
- npx svelar migrate
23
21
  npm run dev
24
22
  ```
25
23
 
@@ -57,7 +55,7 @@ See the [Getting Started guide](https://svelar.dev/docs/getting-started) for a c
57
55
  | **Permissions** | `svelar/permissions` | Role-based access control with permissions and gates |
58
56
  | **i18n** | `svelar/i18n` | Paraglide-js integration with language switcher |
59
57
  | **Forms** | `svelar/forms` | SvelteKit Superforms integration helpers |
60
- | **UI Components** | `svelar/ui` | Button, Card, Input, Alert, Badge, Avatar, Tabs, Icon, Toaster |
58
+ | **UI Components** | `svelar/ui` | Minimal built-in components + [shadcn-svelte](https://shadcn-svelte.com) pre-installed |
61
59
  | **Hooks** | `svelar/hooks` | One-line SvelteKit hooks setup with sensible defaults |
62
60
  | **Container** | `svelar/container` | IoC container with singleton/transient bindings |
63
61
  | **Plugins** | `svelar/plugins` | Plugin discovery, publishing, and CLI management |
@@ -71,7 +69,6 @@ See the [Getting Started guide](https://svelar.dev/docs/getting-started) for a c
71
69
  | **Uploads** | `svelar/uploads` | File upload handling with validation (local + S3) |
72
70
  | **Dashboard** | `svelar/dashboard` | Admin dashboard with job/scheduler monitoring and log viewer |
73
71
  | **Search** | `svelar/search` | Meilisearch integration with auto-syncing `Searchable` mixin |
74
- | **Stripe** | `svelar/stripe` | Billing, subscriptions, checkout, invoices, webhook handling |
75
72
  | **Testing** | `svelar/testing` | Factory, `useSvelarTest()`, `refreshDatabase()`, `actingAs()`, database assertions |
76
73
 
77
74
  ## Official Plugins
@@ -87,6 +84,7 @@ See the [Getting Started guide](https://svelar.dev/docs/getting-started) for a c
87
84
  | [`@beeblock/svelar-activity-log`](https://www.npmjs.com/package/@beeblock/svelar-activity-log) | Audit trail with LogsActivity mixin and causer tracking |
88
85
  | [`@beeblock/svelar-backup`](https://www.npmjs.com/package/@beeblock/svelar-backup) | Database backup with local/S3 destinations and cleanup policies |
89
86
  | [`@beeblock/svelar-charts`](https://www.npmjs.com/package/@beeblock/svelar-charts) | SVG chart components (line, bar, pie, doughnut, area) |
87
+ | [`@beeblock/svelar-stripe`](https://www.npmjs.com/package/@beeblock/svelar-stripe) | Stripe billing with polymorphic Billable mixin, subscriptions, one-time payments, checkout, invoices, webhooks |
90
88
  | [`@beeblock/svelar-tags`](https://www.npmjs.com/package/@beeblock/svelar-tags) | Tagging with HasTags mixin, tag types, slugs, and tag input UI |
91
89
  | [`@beeblock/svelar-impersonate`](https://www.npmjs.com/package/@beeblock/svelar-impersonate) | User impersonation with session guards and banner UI |
92
90
  | [`@beeblock/svelar-sitemap`](https://www.npmjs.com/package/@beeblock/svelar-sitemap) | XML sitemap generation with scheduling and model discovery |
@@ -94,7 +92,7 @@ See the [Getting Started guide](https://svelar.dev/docs/getting-started) for a c
94
92
  ## CLI
95
93
 
96
94
  ```bash
97
- npx svelar new my-app # scaffold a new project
95
+ npx svelar new my-app # scaffold with shadcn-svelte + all components
98
96
  npx svelar update # update scaffold files without overwriting
99
97
  npx svelar make:model Post -m -c # model + migration + controller
100
98
  npx svelar make:service PaymentService # service class