@medusajs/dashboard 3.0.0-snapshot-20251216135612 → 3.0.0-snapshot-20251216145629
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/app.css +13 -0
- package/dist/app.js +227 -68
- package/dist/app.mjs +1 -1
- package/dist/{chunk-YKYVCQRS.mjs → chunk-UULAOAFM.mjs} +34 -10
- package/dist/en.json +13 -1
- package/dist/{product-attributes-EFIRUBRO.mjs → product-attributes-K4FGFORS.mjs} +1 -1
- package/dist/{product-create-K6EWZHIT.mjs → product-create-7YTRHZQQ.mjs} +1 -1
- package/dist/{product-detail-DKPZDEIY.mjs → product-detail-32ZXNWOP.mjs} +1 -1
- package/dist/{product-edit-55YXTIGO.mjs → product-edit-FBAKONMR.mjs} +1 -1
- package/dist/{product-organization-N3VBRXF4.mjs → product-organization-IUSVX22S.mjs} +1 -1
- package/dist/{translation-list-S5Z6PG2R.mjs → translation-list-UF7FLXOW.mjs} +151 -5
- package/dist/{translations-edit-HUNKY7CO.mjs → translations-edit-KECSHYZY.mjs} +7 -18
- package/package.json +9 -9
- package/src/i18n/translations/$schema.json +47 -2
- package/src/i18n/translations/en.json +13 -1
- package/src/i18n/translations/es.json +13 -1
- package/src/routes/translations/translation-list/components/translations-completion-section/translations-completion-section.tsx +153 -2
- package/src/routes/translations/translation-list/translation-list.tsx +8 -2
- package/src/routes/translations/translations-edit/components/translations-edit-form/translations-edit-form.tsx +7 -19
package/dist/app.css
CHANGED
|
@@ -1510,6 +1510,9 @@ video {
|
|
|
1510
1510
|
.mt-0 {
|
|
1511
1511
|
margin-top: 0px;
|
|
1512
1512
|
}
|
|
1513
|
+
.mt-0\.5 {
|
|
1514
|
+
margin-top: 0.125rem;
|
|
1515
|
+
}
|
|
1513
1516
|
.mt-1 {
|
|
1514
1517
|
margin-top: 0.25rem;
|
|
1515
1518
|
}
|
|
@@ -1678,6 +1681,9 @@ video {
|
|
|
1678
1681
|
.h-3\.5 {
|
|
1679
1682
|
height: 0.875rem;
|
|
1680
1683
|
}
|
|
1684
|
+
.h-32 {
|
|
1685
|
+
height: 8rem;
|
|
1686
|
+
}
|
|
1681
1687
|
.h-4 {
|
|
1682
1688
|
height: 1rem;
|
|
1683
1689
|
}
|
|
@@ -2040,6 +2046,9 @@ video {
|
|
|
2040
2046
|
.min-w-0 {
|
|
2041
2047
|
min-width: 0px;
|
|
2042
2048
|
}
|
|
2049
|
+
.min-w-2 {
|
|
2050
|
+
min-width: 0.5rem;
|
|
2051
|
+
}
|
|
2043
2052
|
.min-w-4 {
|
|
2044
2053
|
min-width: 1rem;
|
|
2045
2054
|
}
|
|
@@ -2664,6 +2673,10 @@ video {
|
|
|
2664
2673
|
border-top-left-radius: 0.5rem;
|
|
2665
2674
|
border-top-right-radius: 0.5rem;
|
|
2666
2675
|
}
|
|
2676
|
+
.rounded-t-sm {
|
|
2677
|
+
border-top-left-radius: 0.125rem;
|
|
2678
|
+
border-top-right-radius: 0.125rem;
|
|
2679
|
+
}
|
|
2667
2680
|
.rounded-bl-md {
|
|
2668
2681
|
border-bottom-left-radius: 0.375rem;
|
|
2669
2682
|
}
|