@rovela-ai/sdk 0.18.7 → 0.19.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.
Files changed (70) hide show
  1. package/dist/admin/components/AdminAccountPage.d.ts.map +1 -1
  2. package/dist/admin/components/AdminAccountPage.js +42 -25
  3. package/dist/admin/components/AdminAccountPage.js.map +1 -1
  4. package/dist/admin/components/AdminLayout.d.ts +9 -2
  5. package/dist/admin/components/AdminLayout.d.ts.map +1 -1
  6. package/dist/admin/components/AdminLayout.js +40 -2
  7. package/dist/admin/components/AdminLayout.js.map +1 -1
  8. package/dist/admin/components/AdminModal.d.ts +2 -1
  9. package/dist/admin/components/AdminModal.d.ts.map +1 -1
  10. package/dist/admin/components/AdminModal.js +3 -19
  11. package/dist/admin/components/AdminModal.js.map +1 -1
  12. package/dist/admin/components/AdminNav.d.ts +5 -1
  13. package/dist/admin/components/AdminNav.d.ts.map +1 -1
  14. package/dist/admin/components/AdminNav.js +10 -5
  15. package/dist/admin/components/AdminNav.js.map +1 -1
  16. package/dist/admin/components/AdminTopBar.d.ts +3 -1
  17. package/dist/admin/components/AdminTopBar.d.ts.map +1 -1
  18. package/dist/admin/components/AdminTopBar.js +3 -3
  19. package/dist/admin/components/AdminTopBar.js.map +1 -1
  20. package/dist/admin/components/CategoryForm.d.ts.map +1 -1
  21. package/dist/admin/components/CategoryForm.js +14 -9
  22. package/dist/admin/components/CategoryForm.js.map +1 -1
  23. package/dist/admin/components/CustomerDetails.d.ts.map +1 -1
  24. package/dist/admin/components/CustomerDetails.js +48 -21
  25. package/dist/admin/components/CustomerDetails.js.map +1 -1
  26. package/dist/admin/components/CustomerTable.d.ts.map +1 -1
  27. package/dist/admin/components/CustomerTable.js +11 -11
  28. package/dist/admin/components/CustomerTable.js.map +1 -1
  29. package/dist/admin/components/DiscardChangesModal.d.ts +9 -0
  30. package/dist/admin/components/DiscardChangesModal.d.ts.map +1 -0
  31. package/dist/admin/components/DiscardChangesModal.js +19 -0
  32. package/dist/admin/components/DiscardChangesModal.js.map +1 -0
  33. package/dist/admin/components/DiscountsManager.d.ts.map +1 -1
  34. package/dist/admin/components/DiscountsManager.js +47 -21
  35. package/dist/admin/components/DiscountsManager.js.map +1 -1
  36. package/dist/admin/components/EmailsManager.d.ts.map +1 -1
  37. package/dist/admin/components/EmailsManager.js +124 -52
  38. package/dist/admin/components/EmailsManager.js.map +1 -1
  39. package/dist/admin/components/LocationsManager.d.ts.map +1 -1
  40. package/dist/admin/components/LocationsManager.js +49 -22
  41. package/dist/admin/components/LocationsManager.js.map +1 -1
  42. package/dist/admin/components/OrderTable.js +3 -3
  43. package/dist/admin/components/OrderTable.js.map +1 -1
  44. package/dist/admin/components/ProductForm.d.ts.map +1 -1
  45. package/dist/admin/components/ProductForm.js +16 -7
  46. package/dist/admin/components/ProductForm.js.map +1 -1
  47. package/dist/admin/components/ProductTable.js +4 -4
  48. package/dist/admin/components/ProductTable.js.map +1 -1
  49. package/dist/admin/components/ShippingSettings.js +2 -2
  50. package/dist/admin/components/ShippingSettings.js.map +1 -1
  51. package/dist/admin/components/UsersTable.d.ts.map +1 -1
  52. package/dist/admin/components/UsersTable.js +18 -18
  53. package/dist/admin/components/UsersTable.js.map +1 -1
  54. package/dist/admin/components/emails/EmailThemePanel.d.ts +4 -2
  55. package/dist/admin/components/emails/EmailThemePanel.d.ts.map +1 -1
  56. package/dist/admin/components/emails/EmailThemePanel.js +1 -1
  57. package/dist/admin/components/emails/EmailThemePanel.js.map +1 -1
  58. package/dist/admin/components/index.d.ts +2 -0
  59. package/dist/admin/components/index.d.ts.map +1 -1
  60. package/dist/admin/components/index.js +1 -0
  61. package/dist/admin/components/index.js.map +1 -1
  62. package/dist/admin/components/scroll-lock.d.ts +11 -0
  63. package/dist/admin/components/scroll-lock.d.ts.map +1 -0
  64. package/dist/admin/components/scroll-lock.js +24 -0
  65. package/dist/admin/components/scroll-lock.js.map +1 -0
  66. package/dist/admin/hooks/useDirtyState.d.ts.map +1 -1
  67. package/dist/admin/hooks/useDirtyState.js +7 -0
  68. package/dist/admin/hooks/useDirtyState.js.map +1 -1
  69. package/dist/admin/styles/admin-theme.css +329 -0
  70. package/package.json +1 -1
@@ -23,6 +23,13 @@
23
23
  * - `rebaseline()` — mark the CURRENT state as the new clean baseline
24
24
  * (call after a successful save, or with an explicit
25
25
  * value after programmatic resets)
26
+ *
27
+ * READY CONTRACT (load-bearing): `ready` must start FALSE when a fetch will
28
+ * populate the form — derive it lazily from props at first render, e.g.
29
+ * `useState(() => !!entityId && !initialData)`. Flipping it inside the fetch
30
+ * effect is TOO LATE: this hook's capture effect runs before your fetch
31
+ * effect on render 1 and would baseline the pristine empty form, reading as
32
+ * phantom "Unsaved changes" the moment the data lands.
26
33
  */
27
34
  import { useCallback, useEffect, useMemo, useState } from 'react';
28
35
  export function useDirtyState(current, ready) {
@@ -1 +1 @@
1
- {"version":3,"file":"useDirtyState.js","sourceRoot":"","sources":["../../../src/admin/hooks/useDirtyState.ts"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AAEH,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AAWjE,MAAM,UAAU,aAAa,CAAI,OAAU,EAAE,KAAc;IACzD,MAAM,CAAC,QAAQ,EAAE,WAAW,CAAC,GAAG,QAAQ,CAAgB,IAAI,CAAC,CAAA;IAE7D,MAAM,QAAQ,GAAG,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,EAAE,CAAC,OAAO,CAAC,CAAC,CAAA;IAElE,yEAAyE;IACzE,yEAAyE;IACzE,yEAAyE;IACzE,uEAAuE;IACvE,wBAAwB;IACxB,qDAAqD;IACrD,SAAS,CAAC,GAAG,EAAE;QACb,IAAI,KAAK,IAAI,QAAQ,KAAK,IAAI,EAAE,CAAC;YAC/B,2DAA2D;YAC3D,WAAW,CAAC,QAAQ,CAAC,CAAA;QACvB,CAAC;IACH,CAAC,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC,CAAA;IAE/B,MAAM,UAAU,GAAG,WAAW,CAC5B,CAAC,IAAQ,EAAE,EAAE;QACX,WAAW,CAAC,IAAI,KAAK,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAA;IACnE,CAAC,EACD,CAAC,QAAQ,CAAC,CACX,CAAA;IAED,MAAM,aAAa,GAAG,OAAO,CAC3B,GAAG,EAAE,CAAC,CAAC,QAAQ,KAAK,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAE,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAO,CAAC,EAC9D,CAAC,QAAQ,CAAC,CACX,CAAA;IAED,OAAO;QACL,OAAO,EAAE,QAAQ,KAAK,IAAI,IAAI,QAAQ,KAAK,QAAQ;QACnD,aAAa;QACb,UAAU;KACX,CAAA;AACH,CAAC"}
1
+ {"version":3,"file":"useDirtyState.js","sourceRoot":"","sources":["../../../src/admin/hooks/useDirtyState.ts"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AAEH,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AAWjE,MAAM,UAAU,aAAa,CAAI,OAAU,EAAE,KAAc;IACzD,MAAM,CAAC,QAAQ,EAAE,WAAW,CAAC,GAAG,QAAQ,CAAgB,IAAI,CAAC,CAAA;IAE7D,MAAM,QAAQ,GAAG,OAAO,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,EAAE,CAAC,OAAO,CAAC,CAAC,CAAA;IAElE,yEAAyE;IACzE,yEAAyE;IACzE,yEAAyE;IACzE,uEAAuE;IACvE,wBAAwB;IACxB,qDAAqD;IACrD,SAAS,CAAC,GAAG,EAAE;QACb,IAAI,KAAK,IAAI,QAAQ,KAAK,IAAI,EAAE,CAAC;YAC/B,2DAA2D;YAC3D,WAAW,CAAC,QAAQ,CAAC,CAAA;QACvB,CAAC;IACH,CAAC,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC,CAAA;IAE/B,MAAM,UAAU,GAAG,WAAW,CAC5B,CAAC,IAAQ,EAAE,EAAE;QACX,WAAW,CAAC,IAAI,KAAK,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAA;IACnE,CAAC,EACD,CAAC,QAAQ,CAAC,CACX,CAAA;IAED,MAAM,aAAa,GAAG,OAAO,CAC3B,GAAG,EAAE,CAAC,CAAC,QAAQ,KAAK,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAE,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAO,CAAC,EAC9D,CAAC,QAAQ,CAAC,CACX,CAAA;IAED,OAAO;QACL,OAAO,EAAE,QAAQ,KAAK,IAAI,IAAI,QAAQ,KAAK,QAAQ;QACnD,aAAa;QACb,UAAU;KACX,CAAA;AACH,CAAC"}
@@ -5234,3 +5234,332 @@ body[data-admin-savebar] .rovela-admin-theme .admin-toaster {
5234
5234
  .rovela-admin-theme .lucide {
5235
5235
  stroke-width: 1.5;
5236
5236
  }
5237
+
5238
+ /* ═══════════════════════════════════════════════════════════════════════════
5239
+ MOBILE (2026-07 responsiveness pass — the LEDGER at thumb size)
5240
+ Additive only. One shell pivot at 767px (matches the save bar's existing
5241
+ mobile rule and stays desktop inside the platform's preview iframe);
5242
+ sheets at 639px; column priority at 479px; touch sizing via pointer
5243
+ media queries, never width.
5244
+ ═══════════════════════════════════════════════════════════════════════════ */
5245
+
5246
+ /* ── Shell chrome defaults (desktop: burger + drawer head + scrim inert) ── */
5247
+ .rovela-admin-theme .admin-topbar-burger {
5248
+ display: none;
5249
+ }
5250
+
5251
+ .rovela-admin-theme .admin-nav-drawer-head {
5252
+ display: none;
5253
+ }
5254
+
5255
+ .rovela-admin-theme .admin-nav-backdrop {
5256
+ display: none;
5257
+ }
5258
+
5259
+ /* Row ⋯ menus can never exceed the viewport (safe at every width). */
5260
+ .rovela-admin-theme .admin-dropdown-content {
5261
+ max-width: calc(100vw - 2rem);
5262
+ }
5263
+
5264
+ /* ── The shell pivot: sidebar → overlay drawer ─────────────────────────── */
5265
+ @media (max-width: 767px) {
5266
+ /* Hamburger in the top bar */
5267
+ .rovela-admin-theme .admin-topbar-burger {
5268
+ display: flex;
5269
+ align-items: center;
5270
+ justify-content: center;
5271
+ width: 2.5rem;
5272
+ height: 2.5rem;
5273
+ margin-left: calc(-1 * var(--admin-space-2));
5274
+ border: none;
5275
+ background: none;
5276
+ border-radius: var(--admin-radius-md);
5277
+ color: hsl(var(--admin-foreground));
5278
+ cursor: pointer;
5279
+ flex-shrink: 0;
5280
+ }
5281
+
5282
+ .rovela-admin-theme .admin-topbar-burger:hover {
5283
+ background: hsl(var(--admin-background-subtle));
5284
+ }
5285
+
5286
+ /* Top bar tightens; View/Edit pills go icon-only (aria-labels carry the
5287
+ names); the Admin chip yields to the store name. */
5288
+ .rovela-admin-theme .admin-topbar {
5289
+ padding-left: var(--admin-space-3);
5290
+ padding-right: var(--admin-space-3);
5291
+ gap: var(--admin-space-2);
5292
+ }
5293
+
5294
+ .rovela-admin-theme .admin-topbar-btn-label {
5295
+ display: none;
5296
+ }
5297
+
5298
+ .rovela-admin-theme .admin-topbar-btn {
5299
+ width: 2.25rem;
5300
+ height: 2.25rem;
5301
+ padding: 0;
5302
+ justify-content: center;
5303
+ }
5304
+
5305
+ .rovela-admin-theme .admin-topbar-divider {
5306
+ display: none;
5307
+ }
5308
+
5309
+ /* The sidebar becomes a fixed overlay drawer: off-canvas by default,
5310
+ slid in by data-mobile-open. Pure CSS animation both directions. */
5311
+ .rovela-admin-theme .admin-sidebar {
5312
+ position: fixed;
5313
+ top: 0;
5314
+ bottom: 0;
5315
+ left: 0;
5316
+ width: 17rem;
5317
+ min-height: 0;
5318
+ z-index: 230; /* above content + topbar, below modals (250) */
5319
+ transform: translateX(-105%);
5320
+ transition: transform 200ms var(--admin-ease, cubic-bezier(0.2, 0, 0, 1));
5321
+ box-shadow: none;
5322
+ }
5323
+
5324
+ .rovela-admin-theme .admin-sidebar[data-mobile-open="true"] {
5325
+ transform: none;
5326
+ box-shadow: var(--admin-shadow-2xl);
5327
+ }
5328
+
5329
+ /* Scrim under the drawer — same visual family as the modal backdrop. */
5330
+ .rovela-admin-theme .admin-nav-backdrop {
5331
+ display: block;
5332
+ position: fixed;
5333
+ inset: 0;
5334
+ z-index: 220;
5335
+ background: rgb(0 0 0 / 0.5);
5336
+ backdrop-filter: blur(4px);
5337
+ opacity: 0;
5338
+ pointer-events: none;
5339
+ transition: opacity 200ms ease;
5340
+ }
5341
+
5342
+ .rovela-admin-theme .admin-nav-backdrop[data-open="true"] {
5343
+ opacity: 1;
5344
+ pointer-events: auto;
5345
+ }
5346
+
5347
+ /* Drawer head — the drawer overlays the top bar, so it carries its own
5348
+ identity + a 44px close. */
5349
+ .rovela-admin-theme .admin-nav-drawer-head {
5350
+ display: flex;
5351
+ align-items: center;
5352
+ gap: var(--admin-space-2-5);
5353
+ padding: var(--admin-space-3);
5354
+ border-bottom: var(--admin-border-width) solid hsl(var(--admin-border));
5355
+ flex-shrink: 0;
5356
+ }
5357
+
5358
+ .rovela-admin-theme .admin-nav-drawer-name {
5359
+ display: flex;
5360
+ align-items: center;
5361
+ gap: var(--admin-space-2);
5362
+ min-width: 0;
5363
+ }
5364
+
5365
+ .rovela-admin-theme .admin-nav-drawer-name b {
5366
+ font-size: var(--admin-text-sm);
5367
+ font-weight: var(--admin-font-bold);
5368
+ overflow: hidden;
5369
+ text-overflow: ellipsis;
5370
+ white-space: nowrap;
5371
+ }
5372
+
5373
+ .rovela-admin-theme .admin-nav-drawer-x {
5374
+ margin-left: auto;
5375
+ display: flex;
5376
+ align-items: center;
5377
+ justify-content: center;
5378
+ width: 2.75rem;
5379
+ height: 2.75rem;
5380
+ margin-right: calc(-1 * var(--admin-space-2));
5381
+ border: none;
5382
+ background: none;
5383
+ border-radius: var(--admin-radius-md);
5384
+ color: hsl(var(--admin-foreground-muted));
5385
+ cursor: pointer;
5386
+ }
5387
+
5388
+ .rovela-admin-theme .admin-nav-drawer-x:hover {
5389
+ background: hsl(var(--admin-background-hover, var(--admin-background-subtle)));
5390
+ color: hsl(var(--admin-foreground));
5391
+ }
5392
+
5393
+ /* Drawer nav rows read at thumb size */
5394
+ .rovela-admin-theme .admin-sidebar .admin-sidebar-item {
5395
+ min-height: 2.75rem;
5396
+ }
5397
+
5398
+ /* Content breathes at phone width */
5399
+ .rovela-admin-theme .admin-layout-content {
5400
+ padding: var(--admin-space-4);
5401
+ }
5402
+
5403
+ /* Filter rows: the search takes its own full line; hard min-widths relax */
5404
+ .rovela-admin-theme .admin-filter-search {
5405
+ min-width: 0;
5406
+ }
5407
+
5408
+ .rovela-admin-theme .admin-filter-bar .admin-input-with-icon {
5409
+ flex: 1 1 100%;
5410
+ }
5411
+
5412
+ /* Save bar: full width (rule predates this pass), safe-area padded, and
5413
+ the desktop-only hints step aside. */
5414
+ .rovela-admin-theme .admin-savebar {
5415
+ padding-bottom: env(safe-area-inset-bottom, 0px);
5416
+ height: calc(var(--admin-savebar-h) + env(safe-area-inset-bottom, 0px));
5417
+ }
5418
+
5419
+ .rovela-admin-theme .admin-savebar-meta,
5420
+ .rovela-admin-theme .admin-savebar-kbd {
5421
+ display: none;
5422
+ }
5423
+ }
5424
+
5425
+ /* ── Phones: column priority + full-width feedback ─────────────────────── */
5426
+ @media (max-width: 479px) {
5427
+ /* Low-priority table columns + bulk-select checkboxes rest until desktop
5428
+ (Polaris' own condensed-mode call — bulk work belongs to bigger screens). */
5429
+ .rovela-admin-theme .admin-col-optional,
5430
+ .rovela-admin-theme .admin-col-bulk {
5431
+ display: none;
5432
+ }
5433
+
5434
+ /* Chips become a one-line thumb-scrollable row */
5435
+ .rovela-admin-theme .admin-chip-row {
5436
+ flex-wrap: nowrap;
5437
+ overflow-x: auto;
5438
+ scrollbar-width: none;
5439
+ -webkit-overflow-scrolling: touch;
5440
+ padding-bottom: 2px;
5441
+ }
5442
+
5443
+ .rovela-admin-theme .admin-chip-row::-webkit-scrollbar {
5444
+ display: none;
5445
+ }
5446
+
5447
+ .rovela-admin-theme .admin-chip {
5448
+ flex-shrink: 0;
5449
+ }
5450
+
5451
+ /* Toasts span the width instead of overflowing it */
5452
+ .rovela-admin-theme .admin-toaster {
5453
+ left: var(--admin-space-3);
5454
+ right: var(--admin-space-3);
5455
+ bottom: max(var(--admin-space-4), env(safe-area-inset-bottom, 1rem));
5456
+ align-items: stretch;
5457
+ }
5458
+
5459
+ .rovela-admin-theme .admin-toast-v2 {
5460
+ max-width: none;
5461
+ }
5462
+
5463
+ /* The Admin chip yields the top bar to the store name */
5464
+ .rovela-admin-theme .admin-topbar-tag {
5465
+ display: none;
5466
+ }
5467
+ }
5468
+
5469
+ /* ── Bottom sheets: AdminModal below 640px ──────────────────────────────
5470
+ Pure CSS — the component is untouched. Cards dock to the bottom edge,
5471
+ keep only the top radius, gain a grab affordance and slide up. */
5472
+ @media (max-width: 639px) {
5473
+ .rovela-admin-theme .admin-modal-root {
5474
+ align-items: flex-end;
5475
+ padding: 0;
5476
+ }
5477
+
5478
+ .rovela-admin-theme .admin-modal {
5479
+ max-width: none;
5480
+ margin: 0;
5481
+ border-radius: var(--admin-radius-xl) var(--admin-radius-xl) 0 0;
5482
+ max-height: calc(100vh - 2rem);
5483
+ max-height: calc(100svh - 2rem);
5484
+ animation: admin-sheet-in 260ms var(--admin-ease, cubic-bezier(0.2, 0, 0, 1));
5485
+ }
5486
+
5487
+ /* Grab affordance (decorative — Escape / scrim / buttons dismiss) */
5488
+ .rovela-admin-theme .admin-modal::before {
5489
+ content: '';
5490
+ display: block;
5491
+ width: 2.25rem;
5492
+ height: 4px;
5493
+ border-radius: var(--admin-radius-full);
5494
+ background: hsl(var(--admin-border));
5495
+ margin: var(--admin-space-2) auto 0;
5496
+ }
5497
+
5498
+ .rovela-admin-theme .admin-modal-footer {
5499
+ padding-bottom: max(var(--admin-space-4), env(safe-area-inset-bottom, 1rem));
5500
+ }
5501
+ }
5502
+
5503
+ @keyframes admin-sheet-in {
5504
+ from {
5505
+ transform: translateY(100%);
5506
+ }
5507
+ to {
5508
+ transform: none;
5509
+ }
5510
+ }
5511
+
5512
+ /* ── Touch ergonomics — sized by input modality, not width ──────────────
5513
+ 44px controls on coarse pointers (WCAG 2.5.5 / Apple HIG); desktop
5514
+ pointer density is untouched. */
5515
+ @media (pointer: coarse) {
5516
+ .rovela-admin-theme .admin-btn {
5517
+ height: 2.75rem;
5518
+ }
5519
+
5520
+ .rovela-admin-theme .admin-btn-sm {
5521
+ height: 2.5rem;
5522
+ }
5523
+
5524
+ .rovela-admin-theme .admin-btn-icon.admin-btn-sm {
5525
+ width: 2.5rem;
5526
+ height: 2.5rem;
5527
+ }
5528
+
5529
+ .rovela-admin-theme .admin-input,
5530
+ .rovela-admin-theme .admin-filter-search {
5531
+ height: 2.75rem;
5532
+ }
5533
+
5534
+ .rovela-admin-theme textarea.admin-input {
5535
+ height: auto;
5536
+ }
5537
+
5538
+ .rovela-admin-theme .admin-select-trigger {
5539
+ min-height: 2.75rem;
5540
+ }
5541
+
5542
+ .rovela-admin-theme .admin-chip {
5543
+ height: 2.25rem;
5544
+ }
5545
+
5546
+ .rovela-admin-theme .admin-sidebar-item {
5547
+ min-height: 2.75rem;
5548
+ }
5549
+
5550
+ .rovela-admin-theme .admin-topbar-btn {
5551
+ height: 2.25rem;
5552
+ }
5553
+ }
5554
+
5555
+ /* Reduced motion: the drawer and sheets appear without travel */
5556
+ @media (prefers-reduced-motion: reduce) {
5557
+ .rovela-admin-theme .admin-sidebar,
5558
+ .rovela-admin-theme .admin-nav-backdrop {
5559
+ transition: none;
5560
+ }
5561
+
5562
+ .rovela-admin-theme .admin-modal {
5563
+ animation: none;
5564
+ }
5565
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rovela-ai/sdk",
3
- "version": "0.18.7",
3
+ "version": "0.19.1",
4
4
  "description": "Rovela SDK - Pre-built e-commerce components for AI-powered store generation",
5
5
  "type": "module",
6
6
  "license": "MIT",