@mercurjs/admin 2.2.0-canary.22 → 2.2.0-canary.24
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/dist/{category-detail-ABK4MEZP.js → category-detail-SNN3ZBPS.js} +1 -1
- package/dist/{category-icon-edit-4GXAK4JZ.js → category-icon-edit-SP5TQYA7.js} +1 -1
- package/dist/{category-list-PFOINLTU.js → category-list-OKKJX73E.js} +1 -1
- package/dist/{category-media-7SLAXXXM.js → category-media-IGRRTZ65.js} +2 -2
- package/dist/{chunk-ZLETFDWJ.js → chunk-746L7AHM.js} +2 -2
- package/dist/{chunk-67RX3M6X.js → chunk-MEAFCHUY.js} +2 -2
- package/dist/{chunk-EDDKIVMF.js → chunk-NONPU75Q.js} +1 -1
- package/dist/{chunk-ARN66CDK.js → chunk-PQAEYURH.js} +1 -1
- package/dist/{chunk-LLHYICP5.js → chunk-UWKKDBBZ.js} +1 -1
- package/dist/{collection-detail-36QTD3ZU.js → collection-detail-UDBTTHLK.js} +1 -1
- package/dist/{collection-icon-edit-V4SNBMD5.js → collection-icon-edit-HNYGQJXC.js} +1 -1
- package/dist/{collection-list-UN7C36DU.js → collection-list-U74G2R6W.js} +2 -2
- package/dist/{collection-media-ESJUYVF7.js → collection-media-G42DRQ6K.js} +2 -2
- package/dist/index.js +19 -19
- package/dist/pages/index.d.ts +2 -2
- package/dist/pages/index.js +5 -5
- package/dist/{product-tag-detail-NVTDW7BR.js → product-tag-detail-LPILT2ZS.js} +1 -1
- package/dist/{product-tag-list-T6BDTH24.js → product-tag-list-CK6W4LSP.js} +1 -1
- package/dist/{refund-reason-list-F56TJAGR.js → refund-reason-list-LDLZ4JL6.js} +1 -1
- package/dist/{return-reason-list-EJ5DLDR2.js → return-reason-list-2LFMI7CT.js} +1 -1
- package/dist/{tax-region-tax-override-create-5MIAKHY6.js → tax-region-tax-override-create-I5FQMBBC.js} +1 -1
- package/dist/{tax-region-tax-override-edit-EHLIO56A.js → tax-region-tax-override-edit-4X56DGNL.js} +1 -1
- package/package.json +1 -1
|
@@ -43,7 +43,7 @@ var EditCategoryIconSchema = z.object({
|
|
|
43
43
|
var EditCategoryIconForm = ({ category }) => {
|
|
44
44
|
const { t } = useTranslation();
|
|
45
45
|
const { handleSuccess } = useRouteModal();
|
|
46
|
-
const existingIcon = getCategoryIcon(category.
|
|
46
|
+
const existingIcon = getCategoryIcon(category.media_images);
|
|
47
47
|
const form = useForm({
|
|
48
48
|
defaultValues: {
|
|
49
49
|
icon: existingIcon ? { url: existingIcon.url, file: null } : null
|
|
@@ -89,7 +89,7 @@ var EditCategoryMediaForm = ({
|
|
|
89
89
|
const { handleSuccess } = useRouteModal();
|
|
90
90
|
const form = useForm({
|
|
91
91
|
defaultValues: {
|
|
92
|
-
media: getCategoryGallery(category.
|
|
92
|
+
media: getCategoryGallery(category.media_images).map((image) => ({
|
|
93
93
|
id: image.id,
|
|
94
94
|
url: image.url,
|
|
95
95
|
file: null,
|
|
@@ -402,7 +402,7 @@ var CategoryMediaGallery = ({
|
|
|
402
402
|
const { t } = useTranslation2();
|
|
403
403
|
const prompt = usePrompt();
|
|
404
404
|
const { mutateAsync, isPending } = useUpdateProductCategory(category.id);
|
|
405
|
-
const media = getCategoryGallery(category.
|
|
405
|
+
const media = getCategoryGallery(category.media_images);
|
|
406
406
|
const next = useCallback2(() => {
|
|
407
407
|
if (isPending) {
|
|
408
408
|
return;
|
|
@@ -119,7 +119,7 @@ var CategoryIconSection = ({
|
|
|
119
119
|
category
|
|
120
120
|
}) => {
|
|
121
121
|
const { t } = useTranslation2();
|
|
122
|
-
const icon = getCategoryIcon(category.
|
|
122
|
+
const icon = getCategoryIcon(category.media_images);
|
|
123
123
|
return /* @__PURE__ */ jsxs2(Container2, { className: "divide-y p-0", "data-testid": "category-icon-section", children: [
|
|
124
124
|
/* @__PURE__ */ jsxs2("div", { className: "flex items-center justify-between px-6 py-4", children: [
|
|
125
125
|
/* @__PURE__ */ jsx2(Heading2, { children: t("categories.icon.label") }),
|
|
@@ -174,7 +174,7 @@ var CategoryMediaSection = ({
|
|
|
174
174
|
category
|
|
175
175
|
}) => {
|
|
176
176
|
const { t } = useTranslation3();
|
|
177
|
-
const gallery = getCategoryGallery(category.
|
|
177
|
+
const gallery = getCategoryGallery(category.media_images);
|
|
178
178
|
return /* @__PURE__ */ jsxs3(Container3, { className: "divide-y p-0", "data-testid": "category-media-section", children: [
|
|
179
179
|
/* @__PURE__ */ jsxs3("div", { className: "flex items-center justify-between px-6 py-4", children: [
|
|
180
180
|
/* @__PURE__ */ jsx3(Heading3, { children: t("categories.media.label") }),
|
|
@@ -114,7 +114,7 @@ var CollectionIconSection = ({
|
|
|
114
114
|
collection
|
|
115
115
|
}) => {
|
|
116
116
|
const { t } = useTranslation2();
|
|
117
|
-
const icon = getCollectionIcon(collection.
|
|
117
|
+
const icon = getCollectionIcon(collection.media_images);
|
|
118
118
|
return /* @__PURE__ */ jsxs2(Container2, { className: "divide-y p-0", "data-testid": "collection-icon-section", children: [
|
|
119
119
|
/* @__PURE__ */ jsxs2("div", { className: "flex items-center justify-between px-6 py-4", children: [
|
|
120
120
|
/* @__PURE__ */ jsx2(Heading2, { level: "h2", children: t("collections.icon.label") }),
|
|
@@ -169,7 +169,7 @@ var CollectionMediaSection = ({
|
|
|
169
169
|
collection
|
|
170
170
|
}) => {
|
|
171
171
|
const { t } = useTranslation3();
|
|
172
|
-
const gallery = getCollectionGallery(collection.
|
|
172
|
+
const gallery = getCollectionGallery(collection.media_images);
|
|
173
173
|
return /* @__PURE__ */ jsxs3(Container3, { className: "divide-y p-0", "data-testid": "collection-media-section", children: [
|
|
174
174
|
/* @__PURE__ */ jsxs3("div", { className: "flex items-center justify-between px-6 py-4", children: [
|
|
175
175
|
/* @__PURE__ */ jsx3(Heading3, { level: "h2", children: t("collections.media.label") }),
|
|
@@ -22,7 +22,7 @@ var useCollectionTableColumns = () => {
|
|
|
22
22
|
header: t("fields.title"),
|
|
23
23
|
cell: ({ getValue, row }) => {
|
|
24
24
|
const gallery = getCollectionGallery(
|
|
25
|
-
row.original.
|
|
25
|
+
row.original.media_images
|
|
26
26
|
);
|
|
27
27
|
const thumbnailSrc = gallery.find((image) => image.is_thumbnail)?.url ?? gallery[0]?.url ?? null;
|
|
28
28
|
return /* @__PURE__ */ jsxs("div", { className: "flex size-full items-center gap-x-3 overflow-hidden", children: [
|
|
@@ -114,7 +114,7 @@ var useCategoryTableColumns = () => {
|
|
|
114
114
|
)) });
|
|
115
115
|
}
|
|
116
116
|
const gallery = getCategoryGallery(
|
|
117
|
-
row.original.
|
|
117
|
+
row.original.media_images
|
|
118
118
|
);
|
|
119
119
|
const thumbnailSrc = gallery.find((image) => image.is_thumbnail)?.url ?? gallery[0]?.url ?? null;
|
|
120
120
|
return /* @__PURE__ */ jsxs2("div", { className: "flex size-full items-center gap-x-3 overflow-hidden", children: [
|
|
@@ -45,7 +45,7 @@ var EditCollectionIconForm = ({
|
|
|
45
45
|
}) => {
|
|
46
46
|
const { t } = useTranslation();
|
|
47
47
|
const { handleSuccess } = useRouteModal();
|
|
48
|
-
const existingIcon = getCollectionIcon(collection.
|
|
48
|
+
const existingIcon = getCollectionIcon(collection.media_images);
|
|
49
49
|
const form = useForm({
|
|
50
50
|
defaultValues: {
|
|
51
51
|
icon: existingIcon ? { url: existingIcon.url, file: null } : null
|
|
@@ -89,7 +89,7 @@ var EditCollectionMediaForm = ({
|
|
|
89
89
|
const { handleSuccess } = useRouteModal();
|
|
90
90
|
const form = useForm({
|
|
91
91
|
defaultValues: {
|
|
92
|
-
media: getCollectionGallery(collection.
|
|
92
|
+
media: getCollectionGallery(collection.media_images).map((image) => ({
|
|
93
93
|
id: image.id,
|
|
94
94
|
url: image.url,
|
|
95
95
|
file: null,
|
|
@@ -402,7 +402,7 @@ var CollectionMediaGallery = ({
|
|
|
402
402
|
const { t } = useTranslation2();
|
|
403
403
|
const prompt = usePrompt();
|
|
404
404
|
const { mutateAsync, isPending } = useUpdateCollection(collection.id);
|
|
405
|
-
const media = getCollectionGallery(collection.
|
|
405
|
+
const media = getCollectionGallery(collection.media_images);
|
|
406
406
|
const next = useCallback2(() => {
|
|
407
407
|
if (isPending) {
|
|
408
408
|
return;
|
package/dist/index.js
CHANGED
|
@@ -3594,7 +3594,7 @@ function getRouteMap({
|
|
|
3594
3594
|
children: [
|
|
3595
3595
|
{
|
|
3596
3596
|
path: "",
|
|
3597
|
-
lazy: () => import("./category-list-
|
|
3597
|
+
lazy: () => import("./category-list-OKKJX73E.js"),
|
|
3598
3598
|
children: [
|
|
3599
3599
|
{
|
|
3600
3600
|
path: "create",
|
|
@@ -3609,7 +3609,7 @@ function getRouteMap({
|
|
|
3609
3609
|
{
|
|
3610
3610
|
path: ":id",
|
|
3611
3611
|
lazy: async () => {
|
|
3612
|
-
const { Breadcrumb, loader } = await import("./category-detail-
|
|
3612
|
+
const { Breadcrumb, loader } = await import("./category-detail-SNN3ZBPS.js");
|
|
3613
3613
|
return {
|
|
3614
3614
|
Component: Outlet4,
|
|
3615
3615
|
loader,
|
|
@@ -3621,7 +3621,7 @@ function getRouteMap({
|
|
|
3621
3621
|
children: [
|
|
3622
3622
|
{
|
|
3623
3623
|
path: "",
|
|
3624
|
-
lazy: () => import("./category-detail-
|
|
3624
|
+
lazy: () => import("./category-detail-SNN3ZBPS.js"),
|
|
3625
3625
|
children: [
|
|
3626
3626
|
{
|
|
3627
3627
|
path: "edit",
|
|
@@ -3629,11 +3629,11 @@ function getRouteMap({
|
|
|
3629
3629
|
},
|
|
3630
3630
|
{
|
|
3631
3631
|
path: "media",
|
|
3632
|
-
lazy: () => import("./category-media-
|
|
3632
|
+
lazy: () => import("./category-media-IGRRTZ65.js")
|
|
3633
3633
|
},
|
|
3634
3634
|
{
|
|
3635
3635
|
path: "icon/edit",
|
|
3636
|
-
lazy: () => import("./category-icon-edit-
|
|
3636
|
+
lazy: () => import("./category-icon-edit-SP5TQYA7.js")
|
|
3637
3637
|
},
|
|
3638
3638
|
{
|
|
3639
3639
|
path: "products",
|
|
@@ -3841,7 +3841,7 @@ function getRouteMap({
|
|
|
3841
3841
|
children: [
|
|
3842
3842
|
{
|
|
3843
3843
|
path: "",
|
|
3844
|
-
lazy: () => import("./collection-list-
|
|
3844
|
+
lazy: () => import("./collection-list-U74G2R6W.js"),
|
|
3845
3845
|
children: [
|
|
3846
3846
|
{
|
|
3847
3847
|
path: "create",
|
|
@@ -3852,7 +3852,7 @@ function getRouteMap({
|
|
|
3852
3852
|
{
|
|
3853
3853
|
path: ":id",
|
|
3854
3854
|
lazy: async () => {
|
|
3855
|
-
const { Breadcrumb, loader } = await import("./collection-detail-
|
|
3855
|
+
const { Breadcrumb, loader } = await import("./collection-detail-UDBTTHLK.js");
|
|
3856
3856
|
return {
|
|
3857
3857
|
Component: Outlet4,
|
|
3858
3858
|
loader,
|
|
@@ -3864,7 +3864,7 @@ function getRouteMap({
|
|
|
3864
3864
|
children: [
|
|
3865
3865
|
{
|
|
3866
3866
|
path: "",
|
|
3867
|
-
lazy: () => import("./collection-detail-
|
|
3867
|
+
lazy: () => import("./collection-detail-UDBTTHLK.js"),
|
|
3868
3868
|
children: [
|
|
3869
3869
|
{
|
|
3870
3870
|
path: "edit",
|
|
@@ -3872,11 +3872,11 @@ function getRouteMap({
|
|
|
3872
3872
|
},
|
|
3873
3873
|
{
|
|
3874
3874
|
path: "media",
|
|
3875
|
-
lazy: () => import("./collection-media-
|
|
3875
|
+
lazy: () => import("./collection-media-G42DRQ6K.js")
|
|
3876
3876
|
},
|
|
3877
3877
|
{
|
|
3878
3878
|
path: "icon/edit",
|
|
3879
|
-
lazy: () => import("./collection-icon-edit-
|
|
3879
|
+
lazy: () => import("./collection-icon-edit-HNYGQJXC.js")
|
|
3880
3880
|
},
|
|
3881
3881
|
{
|
|
3882
3882
|
path: "products",
|
|
@@ -4809,7 +4809,7 @@ function getRouteMap({
|
|
|
4809
4809
|
children: [
|
|
4810
4810
|
{
|
|
4811
4811
|
path: "",
|
|
4812
|
-
lazy: () => import("./product-tag-list-
|
|
4812
|
+
lazy: () => import("./product-tag-list-CK6W4LSP.js"),
|
|
4813
4813
|
children: [
|
|
4814
4814
|
{
|
|
4815
4815
|
path: "create",
|
|
@@ -4820,7 +4820,7 @@ function getRouteMap({
|
|
|
4820
4820
|
{
|
|
4821
4821
|
path: ":id",
|
|
4822
4822
|
lazy: async () => {
|
|
4823
|
-
const { Breadcrumb, loader } = await import("./product-tag-detail-
|
|
4823
|
+
const { Breadcrumb, loader } = await import("./product-tag-detail-LPILT2ZS.js");
|
|
4824
4824
|
return {
|
|
4825
4825
|
Component: Outlet4,
|
|
4826
4826
|
loader,
|
|
@@ -4832,7 +4832,7 @@ function getRouteMap({
|
|
|
4832
4832
|
children: [
|
|
4833
4833
|
{
|
|
4834
4834
|
path: "",
|
|
4835
|
-
lazy: () => import("./product-tag-detail-
|
|
4835
|
+
lazy: () => import("./product-tag-detail-LPILT2ZS.js"),
|
|
4836
4836
|
children: [
|
|
4837
4837
|
{
|
|
4838
4838
|
path: "edit",
|
|
@@ -5102,11 +5102,11 @@ function getRouteMap({
|
|
|
5102
5102
|
},
|
|
5103
5103
|
{
|
|
5104
5104
|
path: "overrides/create",
|
|
5105
|
-
lazy: () => import("./tax-region-tax-override-create-
|
|
5105
|
+
lazy: () => import("./tax-region-tax-override-create-I5FQMBBC.js")
|
|
5106
5106
|
},
|
|
5107
5107
|
{
|
|
5108
5108
|
path: "overrides/:tax_rate_id/edit",
|
|
5109
|
-
lazy: () => import("./tax-region-tax-override-edit-
|
|
5109
|
+
lazy: () => import("./tax-region-tax-override-edit-4X56DGNL.js")
|
|
5110
5110
|
},
|
|
5111
5111
|
{
|
|
5112
5112
|
path: "tax-rates/create",
|
|
@@ -5149,11 +5149,11 @@ function getRouteMap({
|
|
|
5149
5149
|
},
|
|
5150
5150
|
{
|
|
5151
5151
|
path: "overrides/create",
|
|
5152
|
-
lazy: () => import("./tax-region-tax-override-create-
|
|
5152
|
+
lazy: () => import("./tax-region-tax-override-create-I5FQMBBC.js")
|
|
5153
5153
|
},
|
|
5154
5154
|
{
|
|
5155
5155
|
path: "overrides/:tax_rate_id/edit",
|
|
5156
|
-
lazy: () => import("./tax-region-tax-override-edit-
|
|
5156
|
+
lazy: () => import("./tax-region-tax-override-edit-4X56DGNL.js")
|
|
5157
5157
|
}
|
|
5158
5158
|
]
|
|
5159
5159
|
}
|
|
@@ -5172,7 +5172,7 @@ function getRouteMap({
|
|
|
5172
5172
|
children: [
|
|
5173
5173
|
{
|
|
5174
5174
|
path: "",
|
|
5175
|
-
lazy: () => import("./return-reason-list-
|
|
5175
|
+
lazy: () => import("./return-reason-list-2LFMI7CT.js"),
|
|
5176
5176
|
children: [
|
|
5177
5177
|
{
|
|
5178
5178
|
path: "create",
|
|
@@ -5200,7 +5200,7 @@ function getRouteMap({
|
|
|
5200
5200
|
children: [
|
|
5201
5201
|
{
|
|
5202
5202
|
path: "",
|
|
5203
|
-
lazy: () => import("./refund-reason-list-
|
|
5203
|
+
lazy: () => import("./refund-reason-list-LDLZ4JL6.js"),
|
|
5204
5204
|
children: [
|
|
5205
5205
|
{
|
|
5206
5206
|
path: "create",
|
package/dist/pages/index.d.ts
CHANGED
|
@@ -123,7 +123,7 @@ type CategoryApiImage = {
|
|
|
123
123
|
rank?: number;
|
|
124
124
|
};
|
|
125
125
|
type CategoryWithImages = {
|
|
126
|
-
|
|
126
|
+
media_images?: CategoryApiImage[] | null;
|
|
127
127
|
};
|
|
128
128
|
|
|
129
129
|
declare const CategoryDetailPage: (({ children }: {
|
|
@@ -317,7 +317,7 @@ type CollectionApiImage = {
|
|
|
317
317
|
rank?: number;
|
|
318
318
|
};
|
|
319
319
|
type CollectionWithImages = {
|
|
320
|
-
|
|
320
|
+
media_images?: CollectionApiImage[] | null;
|
|
321
321
|
};
|
|
322
322
|
|
|
323
323
|
declare const CollectionDetailPage: (({ children }: {
|
package/dist/pages/index.js
CHANGED
|
@@ -173,8 +173,8 @@ import {
|
|
|
173
173
|
import "../chunk-QG6PLWNH.js";
|
|
174
174
|
import {
|
|
175
175
|
CollectionListPage
|
|
176
|
-
} from "../chunk-
|
|
177
|
-
import "../chunk-
|
|
176
|
+
} from "../chunk-PQAEYURH.js";
|
|
177
|
+
import "../chunk-NONPU75Q.js";
|
|
178
178
|
import "../chunk-KOURHC2N.js";
|
|
179
179
|
import "../chunk-2ZFELO2L.js";
|
|
180
180
|
import "../chunk-26OOAKQ6.js";
|
|
@@ -184,7 +184,7 @@ import "../chunk-AKSUGT5I.js";
|
|
|
184
184
|
import "../chunk-XIFE4VUR.js";
|
|
185
185
|
import {
|
|
186
186
|
CollectionDetailPage
|
|
187
|
-
} from "../chunk-
|
|
187
|
+
} from "../chunk-MEAFCHUY.js";
|
|
188
188
|
import "../chunk-BN6OOLJA.js";
|
|
189
189
|
import {
|
|
190
190
|
CampaignListPage
|
|
@@ -234,7 +234,7 @@ import "../chunk-XSX255FK.js";
|
|
|
234
234
|
import "../chunk-JHBNG7OD.js";
|
|
235
235
|
import {
|
|
236
236
|
CategoryDetailPage
|
|
237
|
-
} from "../chunk-
|
|
237
|
+
} from "../chunk-746L7AHM.js";
|
|
238
238
|
import "../chunk-7AV5EJJ5.js";
|
|
239
239
|
import {
|
|
240
240
|
OrderListPage
|
|
@@ -262,7 +262,7 @@ import {
|
|
|
262
262
|
} from "../chunk-XVSJKCCQ.js";
|
|
263
263
|
import {
|
|
264
264
|
CategoryListPage
|
|
265
|
-
} from "../chunk-
|
|
265
|
+
} from "../chunk-UWKKDBBZ.js";
|
|
266
266
|
import "../chunk-WJGABDWC.js";
|
|
267
267
|
import "../chunk-JHIMVLB2.js";
|
|
268
268
|
import {
|
|
@@ -10,7 +10,7 @@ import "./chunk-AFQS6E4N.js";
|
|
|
10
10
|
import "./chunk-4F5GP7J7.js";
|
|
11
11
|
import "./chunk-54EPH67T.js";
|
|
12
12
|
import "./chunk-QG6PLWNH.js";
|
|
13
|
-
import "./chunk-
|
|
13
|
+
import "./chunk-NONPU75Q.js";
|
|
14
14
|
import "./chunk-KOURHC2N.js";
|
|
15
15
|
import "./chunk-2ZFELO2L.js";
|
|
16
16
|
import "./chunk-26OOAKQ6.js";
|
|
@@ -10,7 +10,7 @@ import "./chunk-AFQS6E4N.js";
|
|
|
10
10
|
import "./chunk-4F5GP7J7.js";
|
|
11
11
|
import "./chunk-54EPH67T.js";
|
|
12
12
|
import "./chunk-QG6PLWNH.js";
|
|
13
|
-
import "./chunk-
|
|
13
|
+
import "./chunk-NONPU75Q.js";
|
|
14
14
|
import "./chunk-KOURHC2N.js";
|
|
15
15
|
import "./chunk-2ZFELO2L.js";
|
|
16
16
|
import "./chunk-26OOAKQ6.js";
|
|
@@ -9,7 +9,7 @@ import "./chunk-AFQS6E4N.js";
|
|
|
9
9
|
import "./chunk-4F5GP7J7.js";
|
|
10
10
|
import "./chunk-54EPH67T.js";
|
|
11
11
|
import "./chunk-QG6PLWNH.js";
|
|
12
|
-
import "./chunk-
|
|
12
|
+
import "./chunk-NONPU75Q.js";
|
|
13
13
|
import "./chunk-BN6OOLJA.js";
|
|
14
14
|
import "./chunk-HINXQTCW.js";
|
|
15
15
|
import "./chunk-NOWUEJ74.js";
|
|
@@ -9,7 +9,7 @@ import "./chunk-AFQS6E4N.js";
|
|
|
9
9
|
import "./chunk-4F5GP7J7.js";
|
|
10
10
|
import "./chunk-54EPH67T.js";
|
|
11
11
|
import "./chunk-QG6PLWNH.js";
|
|
12
|
-
import "./chunk-
|
|
12
|
+
import "./chunk-NONPU75Q.js";
|
|
13
13
|
import "./chunk-BN6OOLJA.js";
|
|
14
14
|
import "./chunk-HINXQTCW.js";
|
|
15
15
|
import "./chunk-NOWUEJ74.js";
|
|
@@ -13,7 +13,7 @@ import "./chunk-AFQS6E4N.js";
|
|
|
13
13
|
import "./chunk-4F5GP7J7.js";
|
|
14
14
|
import "./chunk-54EPH67T.js";
|
|
15
15
|
import "./chunk-QG6PLWNH.js";
|
|
16
|
-
import "./chunk-
|
|
16
|
+
import "./chunk-NONPU75Q.js";
|
|
17
17
|
import "./chunk-KOURHC2N.js";
|
|
18
18
|
import "./chunk-2ZFELO2L.js";
|
|
19
19
|
import "./chunk-26OOAKQ6.js";
|
package/dist/{tax-region-tax-override-edit-EHLIO56A.js → tax-region-tax-override-edit-4X56DGNL.js}
RENAMED
|
@@ -13,7 +13,7 @@ import "./chunk-AFQS6E4N.js";
|
|
|
13
13
|
import "./chunk-4F5GP7J7.js";
|
|
14
14
|
import "./chunk-54EPH67T.js";
|
|
15
15
|
import "./chunk-QG6PLWNH.js";
|
|
16
|
-
import "./chunk-
|
|
16
|
+
import "./chunk-NONPU75Q.js";
|
|
17
17
|
import "./chunk-KOURHC2N.js";
|
|
18
18
|
import "./chunk-2ZFELO2L.js";
|
|
19
19
|
import "./chunk-26OOAKQ6.js";
|