@medusajs/dashboard 2.10.2-snapshot-20250829084652 → 2.11.0-snapshot-20250829134337

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 (38) hide show
  1. package/dist/{add-campaign-promotions-UQVBTTWK.mjs → add-campaign-promotions-U277KTL4.mjs} +3 -3
  2. package/dist/app.css +0 -6
  3. package/dist/app.js +227 -120
  4. package/dist/app.mjs +2 -2
  5. package/dist/{campaign-detail-FIO6336E.mjs → campaign-detail-6454LL3C.mjs} +3 -3
  6. package/dist/{chunk-RQYKGJZ4.mjs → chunk-3VDOFEA6.mjs} +1 -1
  7. package/dist/{chunk-H3JGGHAQ.mjs → chunk-6OHAQHB4.mjs} +1 -1
  8. package/dist/{chunk-D4T3GFML.mjs → chunk-F7LJJHQT.mjs} +7 -0
  9. package/dist/{chunk-G4ARHIQV.mjs → chunk-FLUC3I3N.mjs} +1 -1
  10. package/dist/{chunk-XDYQGXJ3.mjs → chunk-OQXWDAEB.mjs} +2 -1
  11. package/dist/{chunk-SJFXY376.mjs → chunk-TM44KN7J.mjs} +26 -26
  12. package/dist/{chunk-WLTKZNOI.mjs → chunk-YTDRSPOL.mjs} +1 -1
  13. package/dist/{order-create-claim-DBL2BU5Q.mjs → order-create-claim-ATLKY2SH.mjs} +1 -1
  14. package/dist/{order-create-edit-INKNOFBY.mjs → order-create-edit-5LOTLPD6.mjs} +1 -1
  15. package/dist/{order-create-exchange-6E2VLPU3.mjs → order-create-exchange-TOELYZPA.mjs} +1 -1
  16. package/dist/{order-create-refund-HJMKDY6S.mjs → order-create-refund-ZZNAUXIA.mjs} +1 -1
  17. package/dist/{order-create-return-IIEBZOZZ.mjs → order-create-return-2HT4V6UE.mjs} +1 -1
  18. package/dist/{order-detail-BDX6VUSZ.mjs → order-detail-KSLCQEHJ.mjs} +218 -119
  19. package/dist/{order-edit-billing-address-K2SUQK3S.mjs → order-edit-billing-address-5HQFWKN2.mjs} +1 -1
  20. package/dist/{order-edit-email-FSHV32T6.mjs → order-edit-email-2W33H5CV.mjs} +1 -1
  21. package/dist/{order-edit-shipping-address-RV2QZCR5.mjs → order-edit-shipping-address-VE2BJEHO.mjs} +1 -1
  22. package/dist/{order-request-transfer-NJ24WZ26.mjs → order-request-transfer-U52O2EVC.mjs} +1 -1
  23. package/dist/{product-attributes-HQ2HQQSE.mjs → product-attributes-3ILIUH55.mjs} +3 -3
  24. package/dist/{product-create-Q5ZIYMOR.mjs → product-create-3BFYAUDO.mjs} +3 -3
  25. package/dist/{product-detail-YMCONFSY.mjs → product-detail-Y72S2FF3.mjs} +3 -3
  26. package/dist/{product-edit-SRWVIV2Z.mjs → product-edit-SFN7PUQI.mjs} +3 -3
  27. package/dist/{product-media-F74IPY26.mjs → product-media-XWTASBCL.mjs} +2 -2
  28. package/dist/{product-organization-PKNCLB6W.mjs → product-organization-ATBB7J43.mjs} +3 -3
  29. package/dist/{product-shipping-profile-266AXOO6.mjs → product-shipping-profile-VCUZOITH.mjs} +3 -3
  30. package/dist/{promotion-detail-X5XWYLTC.mjs → promotion-detail-EDLXBH4V.mjs} +2 -2
  31. package/dist/{promotion-list-R7J2AWA3.mjs → promotion-list-QT6HW6VF.mjs} +3 -3
  32. package/dist/{reset-password-OIRVPF4I.mjs → reset-password-O3M4BVYH.mjs} +1 -1
  33. package/dist/{tax-region-create-VO65RBTI.mjs → tax-region-create-MXQGPOV2.mjs} +1 -1
  34. package/package.json +9 -9
  35. package/src/i18n/translations/$schema.json +5 -1
  36. package/src/i18n/translations/en.json +2 -1
  37. package/src/routes/orders/order-detail/components/order-summary-section/order-summary-section.tsx +247 -178
  38. package/src/routes/orders/order-detail/constants.ts +7 -0
@@ -16,7 +16,7 @@ import {
16
16
  } from "./chunk-D3YQN7HV.mjs";
17
17
  import {
18
18
  I18n
19
- } from "./chunk-XDYQGXJ3.mjs";
19
+ } from "./chunk-OQXWDAEB.mjs";
20
20
  import {
21
21
  Thumbnail
22
22
  } from "./chunk-MNXC6Q4F.mjs";
@@ -3335,7 +3335,7 @@ function getRouteMap({
3335
3335
  children: [
3336
3336
  {
3337
3337
  path: "create",
3338
- lazy: () => import("./product-create-Q5ZIYMOR.mjs")
3338
+ lazy: () => import("./product-create-3BFYAUDO.mjs")
3339
3339
  },
3340
3340
  {
3341
3341
  path: "import",
@@ -3351,7 +3351,7 @@ function getRouteMap({
3351
3351
  path: ":id",
3352
3352
  errorElement: /* @__PURE__ */ jsx18(ErrorBoundary, {}),
3353
3353
  lazy: async () => {
3354
- const { Breadcrumb, loader } = await import("./product-detail-YMCONFSY.mjs");
3354
+ const { Breadcrumb, loader } = await import("./product-detail-Y72S2FF3.mjs");
3355
3355
  return {
3356
3356
  Component: Outlet4,
3357
3357
  loader,
@@ -3363,11 +3363,11 @@ function getRouteMap({
3363
3363
  children: [
3364
3364
  {
3365
3365
  path: "",
3366
- lazy: () => import("./product-detail-YMCONFSY.mjs"),
3366
+ lazy: () => import("./product-detail-Y72S2FF3.mjs"),
3367
3367
  children: [
3368
3368
  {
3369
3369
  path: "edit",
3370
- lazy: () => import("./product-edit-SRWVIV2Z.mjs")
3370
+ lazy: () => import("./product-edit-SFN7PUQI.mjs")
3371
3371
  },
3372
3372
  {
3373
3373
  path: "edit-variant",
@@ -3379,19 +3379,19 @@ function getRouteMap({
3379
3379
  },
3380
3380
  {
3381
3381
  path: "attributes",
3382
- lazy: () => import("./product-attributes-HQ2HQQSE.mjs")
3382
+ lazy: () => import("./product-attributes-3ILIUH55.mjs")
3383
3383
  },
3384
3384
  {
3385
3385
  path: "organization",
3386
- lazy: () => import("./product-organization-PKNCLB6W.mjs")
3386
+ lazy: () => import("./product-organization-ATBB7J43.mjs")
3387
3387
  },
3388
3388
  {
3389
3389
  path: "shipping-profile",
3390
- lazy: () => import("./product-shipping-profile-266AXOO6.mjs")
3390
+ lazy: () => import("./product-shipping-profile-VCUZOITH.mjs")
3391
3391
  },
3392
3392
  {
3393
3393
  path: "media",
3394
- lazy: () => import("./product-media-F74IPY26.mjs")
3394
+ lazy: () => import("./product-media-XWTASBCL.mjs")
3395
3395
  },
3396
3396
  {
3397
3397
  path: "prices",
@@ -3522,7 +3522,7 @@ function getRouteMap({
3522
3522
  {
3523
3523
  path: ":id",
3524
3524
  lazy: async () => {
3525
- const { Component, Breadcrumb, loader } = await import("./order-detail-BDX6VUSZ.mjs");
3525
+ const { Component, Breadcrumb, loader } = await import("./order-detail-KSLCQEHJ.mjs");
3526
3526
  return {
3527
3527
  Component,
3528
3528
  loader,
@@ -3550,39 +3550,39 @@ function getRouteMap({
3550
3550
  },
3551
3551
  {
3552
3552
  path: "returns",
3553
- lazy: () => import("./order-create-return-IIEBZOZZ.mjs")
3553
+ lazy: () => import("./order-create-return-2HT4V6UE.mjs")
3554
3554
  },
3555
3555
  {
3556
3556
  path: "claims",
3557
- lazy: () => import("./order-create-claim-DBL2BU5Q.mjs")
3557
+ lazy: () => import("./order-create-claim-ATLKY2SH.mjs")
3558
3558
  },
3559
3559
  {
3560
3560
  path: "exchanges",
3561
- lazy: () => import("./order-create-exchange-6E2VLPU3.mjs")
3561
+ lazy: () => import("./order-create-exchange-TOELYZPA.mjs")
3562
3562
  },
3563
3563
  {
3564
3564
  path: "edits",
3565
- lazy: () => import("./order-create-edit-INKNOFBY.mjs")
3565
+ lazy: () => import("./order-create-edit-5LOTLPD6.mjs")
3566
3566
  },
3567
3567
  {
3568
3568
  path: "refund",
3569
- lazy: () => import("./order-create-refund-HJMKDY6S.mjs")
3569
+ lazy: () => import("./order-create-refund-ZZNAUXIA.mjs")
3570
3570
  },
3571
3571
  {
3572
3572
  path: "transfer",
3573
- lazy: () => import("./order-request-transfer-NJ24WZ26.mjs")
3573
+ lazy: () => import("./order-request-transfer-U52O2EVC.mjs")
3574
3574
  },
3575
3575
  {
3576
3576
  path: "email",
3577
- lazy: () => import("./order-edit-email-FSHV32T6.mjs")
3577
+ lazy: () => import("./order-edit-email-2W33H5CV.mjs")
3578
3578
  },
3579
3579
  {
3580
3580
  path: "shipping-address",
3581
- lazy: () => import("./order-edit-shipping-address-RV2QZCR5.mjs")
3581
+ lazy: () => import("./order-edit-shipping-address-VE2BJEHO.mjs")
3582
3582
  },
3583
3583
  {
3584
3584
  path: "billing-address",
3585
- lazy: () => import("./order-edit-billing-address-K2SUQK3S.mjs")
3585
+ lazy: () => import("./order-edit-billing-address-5HQFWKN2.mjs")
3586
3586
  },
3587
3587
  {
3588
3588
  path: "metadata/edit",
@@ -3601,7 +3601,7 @@ function getRouteMap({
3601
3601
  children: [
3602
3602
  {
3603
3603
  path: "",
3604
- lazy: () => import("./promotion-list-R7J2AWA3.mjs")
3604
+ lazy: () => import("./promotion-list-QT6HW6VF.mjs")
3605
3605
  },
3606
3606
  {
3607
3607
  path: "create",
@@ -3610,7 +3610,7 @@ function getRouteMap({
3610
3610
  {
3611
3611
  path: ":id",
3612
3612
  lazy: async () => {
3613
- const { Component, Breadcrumb, loader } = await import("./promotion-detail-X5XWYLTC.mjs");
3613
+ const { Component, Breadcrumb, loader } = await import("./promotion-detail-EDLXBH4V.mjs");
3614
3614
  return {
3615
3615
  Component,
3616
3616
  loader,
@@ -3655,7 +3655,7 @@ function getRouteMap({
3655
3655
  {
3656
3656
  path: ":id",
3657
3657
  lazy: async () => {
3658
- const { Component, Breadcrumb, loader } = await import("./campaign-detail-FIO6336E.mjs");
3658
+ const { Component, Breadcrumb, loader } = await import("./campaign-detail-6454LL3C.mjs");
3659
3659
  return {
3660
3660
  Component,
3661
3661
  loader,
@@ -3679,7 +3679,7 @@ function getRouteMap({
3679
3679
  },
3680
3680
  {
3681
3681
  path: "add-promotions",
3682
- lazy: () => import("./add-campaign-promotions-UQVBTTWK.mjs")
3682
+ lazy: () => import("./add-campaign-promotions-U277KTL4.mjs")
3683
3683
  }
3684
3684
  ]
3685
3685
  }
@@ -3825,7 +3825,7 @@ function getRouteMap({
3825
3825
  },
3826
3826
  {
3827
3827
  path: ":order_id/transfer",
3828
- lazy: () => import("./order-request-transfer-NJ24WZ26.mjs")
3828
+ lazy: () => import("./order-request-transfer-U52O2EVC.mjs")
3829
3829
  },
3830
3830
  {
3831
3831
  path: "metadata/edit",
@@ -4559,7 +4559,7 @@ function getRouteMap({
4559
4559
  children: [
4560
4560
  {
4561
4561
  path: "create",
4562
- lazy: () => import("./tax-region-create-VO65RBTI.mjs")
4562
+ lazy: () => import("./tax-region-create-MXQGPOV2.mjs")
4563
4563
  }
4564
4564
  ]
4565
4565
  },
@@ -4686,7 +4686,7 @@ function getRouteMap({
4686
4686
  },
4687
4687
  {
4688
4688
  path: "/reset-password",
4689
- lazy: () => import("./reset-password-OIRVPF4I.mjs")
4689
+ lazy: () => import("./reset-password-O3M4BVYH.mjs")
4690
4690
  },
4691
4691
  {
4692
4692
  path: "/invite",
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  getPromotionStatus
3
- } from "./chunk-G4ARHIQV.mjs";
3
+ } from "./chunk-FLUC3I3N.mjs";
4
4
  import {
5
5
  TextCell,
6
6
  TextHeader
@@ -38,7 +38,7 @@ import {
38
38
  } from "./chunk-RMEITCLS.mjs";
39
39
  import {
40
40
  DEFAULT_FIELDS
41
- } from "./chunk-D4T3GFML.mjs";
41
+ } from "./chunk-F7LJJHQT.mjs";
42
42
  import {
43
43
  getStylizedAmount
44
44
  } from "./chunk-PDWBYQOW.mjs";
@@ -12,7 +12,7 @@ import {
12
12
  } from "./chunk-HUX22ZHT.mjs";
13
13
  import {
14
14
  DEFAULT_FIELDS
15
- } from "./chunk-D4T3GFML.mjs";
15
+ } from "./chunk-F7LJJHQT.mjs";
16
16
  import {
17
17
  getStylizedAmount
18
18
  } from "./chunk-PDWBYQOW.mjs";
@@ -38,7 +38,7 @@ import {
38
38
  } from "./chunk-RMEITCLS.mjs";
39
39
  import {
40
40
  DEFAULT_FIELDS
41
- } from "./chunk-D4T3GFML.mjs";
41
+ } from "./chunk-F7LJJHQT.mjs";
42
42
  import {
43
43
  getStylizedAmount
44
44
  } from "./chunk-PDWBYQOW.mjs";
@@ -12,7 +12,7 @@ import {
12
12
  } from "./chunk-4XSXVVYD.mjs";
13
13
  import {
14
14
  DEFAULT_FIELDS
15
- } from "./chunk-D4T3GFML.mjs";
15
+ } from "./chunk-F7LJJHQT.mjs";
16
16
  import {
17
17
  getLocaleAmount
18
18
  } from "./chunk-PDWBYQOW.mjs";
@@ -22,7 +22,7 @@ import {
22
22
  } from "./chunk-RMEITCLS.mjs";
23
23
  import {
24
24
  DEFAULT_FIELDS
25
- } from "./chunk-D4T3GFML.mjs";
25
+ } from "./chunk-F7LJJHQT.mjs";
26
26
  import {
27
27
  getStylizedAmount
28
28
  } from "./chunk-PDWBYQOW.mjs";