@deenruv/admin-dashboard 1.0.5 → 1.0.9
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/DeenruvAdminPanel.js +5 -4
- package/dist/DeenruvDeveloperIndicator.js +1 -1
- package/dist/components/ContentAreaSkeleton.js +5 -0
- package/dist/components/Menu/LanguagesDropdown.js +4 -3
- package/dist/components/Menu/Navigation.js +10 -9
- package/dist/components/Menu/Notifications.js +2 -1
- package/dist/components/Menu/flag-icons.js +16 -0
- package/dist/components/Menu/index.js +3 -2
- package/dist/pages/Custom404.js +16 -2
- package/dist/pages/Root.js +2 -2
- package/dist/pages/admins/Detail.js +7 -7
- package/dist/pages/admins/_components/AdminDetailView.js +17 -9
- package/dist/pages/channels/Detail.js +12 -12
- package/dist/pages/channels/_components/ChannelDetailView.js +25 -17
- package/dist/pages/collections/Detail.js +8 -7
- package/dist/pages/collections/List.js +1 -2
- package/dist/pages/collections/_components/CollectionDetailView.js +65 -22
- package/dist/pages/collections/_components/CollectionProductVariantsDrawer.js +1 -1
- package/dist/pages/countries/Detail.js +5 -5
- package/dist/pages/countries/_components/CountryDetailView.js +15 -8
- package/dist/pages/customer-groups/Detail.js +3 -3
- package/dist/pages/customer-groups/_components/CustomerGroupsDetailView.js +4 -4
- package/dist/pages/customers/Detail.js +6 -8
- package/dist/pages/customers/_components/AddressForm.js +48 -60
- package/dist/pages/customers/_components/AddressesCard.js +1 -1
- package/dist/pages/customers/_components/CustomerDetailView.js +9 -9
- package/dist/pages/dashboard/Dashboard.js +3 -2
- package/dist/pages/extensions/Extensions.js +12 -13
- package/dist/pages/facets/Detail.js +6 -6
- package/dist/pages/facets/_components/AddFacetValueDialog.js +39 -39
- package/dist/pages/facets/_components/FacetDetailView.js +19 -12
- package/dist/pages/global-settings/GlobalSettingsComponent.js +9 -8
- package/dist/pages/global-settings/index.js +4 -4
- package/dist/pages/orders/List.js +2 -1
- package/dist/pages/orders/_components/AddressCard.js +123 -78
- package/dist/pages/orders/_components/CustomerSelectCard.js +38 -43
- package/dist/pages/orders/_components/FulfillmentModal.js +47 -28
- package/dist/pages/orders/_components/ModifyingCard.js +30 -13
- package/dist/pages/orders/_components/OrderLineCustomFields.js +2 -1
- package/dist/pages/orders/_components/PossibleOrderStates.js +2 -1
- package/dist/pages/orders/_components/ProductsCard.js +2 -1
- package/dist/pages/orders/_components/SurchargeCard.js +58 -60
- package/dist/pages/orders/_components/TopActions.js +2 -1
- package/dist/pages/payment-methods/Detail.js +8 -7
- package/dist/pages/payment-methods/_components/PaymentMethodDetailView.js +22 -14
- package/dist/pages/products/Detail.js +9 -7
- package/dist/pages/products/_components/AddOptionGroupDialog.js +36 -14
- package/dist/pages/products/_components/BasicFieldsCard.js +5 -2
- package/dist/pages/products/_components/OptionValueCard.js +25 -23
- package/dist/pages/products/_components/ProductDetailSidebar.js +15 -7
- package/dist/pages/products/_components/ProductDetailView.js +51 -17
- package/dist/pages/products/_components/Variant.js +105 -57
- package/dist/pages/promotions/Detail.js +13 -11
- package/dist/pages/promotions/_components/OptionsCard.js +1 -1
- package/dist/pages/promotions/_components/PromotionDetailSidebar.js +9 -6
- package/dist/pages/promotions/_components/PromotionDetailView.js +26 -20
- package/dist/pages/roles/Detail.js +5 -5
- package/dist/pages/roles/_components/RoleDetailView.js +13 -8
- package/dist/pages/sellers/Detail.js +4 -4
- package/dist/pages/sellers/_components/SellerDetailView.js +4 -4
- package/dist/pages/shipping-methods/Detail.js +14 -12
- package/dist/pages/shipping-methods/_components/Lines.js +1 -1
- package/dist/pages/shipping-methods/_components/ShippingMethodDetailView.js +26 -13
- package/dist/pages/shipping-methods/_components/TestCard.js +67 -21
- package/dist/pages/status/_components/Health.js +2 -1
- package/dist/pages/status/_components/Jobs.js +2 -6
- package/dist/pages/stock-locations/Detail.js +4 -4
- package/dist/pages/stock-locations/_components/StockLocationDetailView.js +5 -5
- package/dist/pages/tax-categories/Detail.js +4 -4
- package/dist/pages/tax-categories/_components/TaxCategoryDetailView.js +7 -7
- package/dist/pages/tax-rates/Detail.js +8 -8
- package/dist/pages/tax-rates/_components/TaxRateDetailView.js +13 -9
- package/dist/pages/zones/Detail.js +4 -4
- package/dist/pages/zones/_components/ZoneDetailView.js +8 -7
- package/dist/version.js +1 -1
- package/package.json +79 -78
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deenruv/admin-dashboard",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"style": "dist/index.css",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -8,100 +8,101 @@
|
|
|
8
8
|
"dist/**/*"
|
|
9
9
|
],
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@aexol-studio/hooks": "^0.
|
|
11
|
+
"@aexol-studio/hooks": "^0.3.0",
|
|
12
12
|
"@dnd-kit/core": "^6.3.1",
|
|
13
|
-
"@dnd-kit/modifiers": "^
|
|
14
|
-
"@dnd-kit/sortable": "^
|
|
13
|
+
"@dnd-kit/modifiers": "^9.0.0",
|
|
14
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
15
15
|
"@dnd-kit/utilities": "^3.2.2",
|
|
16
|
-
"@hookform/resolvers": "^
|
|
16
|
+
"@hookform/resolvers": "^5.2.2",
|
|
17
17
|
"@radix-ui/react-accordion": "^1.2.12",
|
|
18
|
-
"@radix-ui/react-alert-dialog": "^1.1.
|
|
19
|
-
"@radix-ui/react-aspect-ratio": "^1.1.
|
|
20
|
-
"@radix-ui/react-checkbox": "^1.
|
|
18
|
+
"@radix-ui/react-alert-dialog": "^1.1.15",
|
|
19
|
+
"@radix-ui/react-aspect-ratio": "^1.1.8",
|
|
20
|
+
"@radix-ui/react-checkbox": "^1.3.3",
|
|
21
21
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
22
|
-
"@radix-ui/react-dropdown-menu": "^2.1.
|
|
23
|
-
"@radix-ui/react-hover-card": "^1.1.
|
|
22
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
23
|
+
"@radix-ui/react-hover-card": "^1.1.15",
|
|
24
24
|
"@radix-ui/react-icons": "^1.3.2",
|
|
25
|
-
"@radix-ui/react-label": "^2.1.
|
|
26
|
-
"@radix-ui/react-popover": "^1.1.
|
|
27
|
-
"@radix-ui/react-radio-group": "^1.
|
|
28
|
-
"@radix-ui/react-scroll-area": "^1.2.
|
|
29
|
-
"@radix-ui/react-select": "^2.
|
|
30
|
-
"@radix-ui/react-separator": "^1.1.
|
|
31
|
-
"@radix-ui/react-slot": "^1.
|
|
32
|
-
"@radix-ui/react-switch": "^1.
|
|
33
|
-
"@radix-ui/react-tabs": "^1.1.
|
|
34
|
-
"@radix-ui/react-toast": "^1.2.
|
|
35
|
-
"@radix-ui/react-toggle": "^1.1.
|
|
36
|
-
"@radix-ui/react-toggle-group": "^1.1.
|
|
37
|
-
"@radix-ui/react-tooltip": "^1.
|
|
25
|
+
"@radix-ui/react-label": "^2.1.8",
|
|
26
|
+
"@radix-ui/react-popover": "^1.1.15",
|
|
27
|
+
"@radix-ui/react-radio-group": "^1.3.8",
|
|
28
|
+
"@radix-ui/react-scroll-area": "^1.2.10",
|
|
29
|
+
"@radix-ui/react-select": "^2.2.6",
|
|
30
|
+
"@radix-ui/react-separator": "^1.1.8",
|
|
31
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
32
|
+
"@radix-ui/react-switch": "^1.2.6",
|
|
33
|
+
"@radix-ui/react-tabs": "^1.1.13",
|
|
34
|
+
"@radix-ui/react-toast": "^1.2.15",
|
|
35
|
+
"@radix-ui/react-toggle": "^1.1.10",
|
|
36
|
+
"@radix-ui/react-toggle-group": "^1.1.11",
|
|
37
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
38
38
|
"@tanstack/react-table": "^8.21.3",
|
|
39
|
-
"@tiptap/extension-document": "^
|
|
40
|
-
"@tiptap/extension-heading": "^
|
|
41
|
-
"@tiptap/extension-paragraph": "^
|
|
42
|
-
"@tiptap/extension-text": "^
|
|
43
|
-
"@tiptap/pm": "^
|
|
44
|
-
"@tiptap/react": "^
|
|
45
|
-
"@tiptap/starter-kit": "^
|
|
39
|
+
"@tiptap/extension-document": "^3.19.0",
|
|
40
|
+
"@tiptap/extension-heading": "^3.19.0",
|
|
41
|
+
"@tiptap/extension-paragraph": "^3.19.0",
|
|
42
|
+
"@tiptap/extension-text": "^3.19.0",
|
|
43
|
+
"@tiptap/pm": "^3.19.0",
|
|
44
|
+
"@tiptap/react": "^3.19.0",
|
|
45
|
+
"@tiptap/starter-kit": "^3.19.0",
|
|
46
46
|
"class-variance-authority": "^0.7.1",
|
|
47
47
|
"clsx": "^2.1.1",
|
|
48
48
|
"cmdk": "^1.1.1",
|
|
49
|
-
"compression": "^1.8.
|
|
50
|
-
"country-flag-icons": "^1.5.17",
|
|
49
|
+
"compression": "^1.8.1",
|
|
51
50
|
"date-fns": "^4.1.0",
|
|
52
|
-
"express": "^
|
|
53
|
-
"framer-motion": "^12.
|
|
54
|
-
"i18next": "^
|
|
55
|
-
"i18next-browser-languagedetector": "^8.
|
|
51
|
+
"express": "^5.2.1",
|
|
52
|
+
"framer-motion": "^12.34.0",
|
|
53
|
+
"i18next": "^25.8.4",
|
|
54
|
+
"i18next-browser-languagedetector": "^8.2.0",
|
|
56
55
|
"localforage": "^1.10.0",
|
|
57
|
-
"lucide-react": "^0.
|
|
58
|
-
"match-sorter": "^8.
|
|
56
|
+
"lucide-react": "^0.563.0",
|
|
57
|
+
"match-sorter": "^8.2.0",
|
|
59
58
|
"next-themes": "^0.4.6",
|
|
60
|
-
"react": "^19.
|
|
59
|
+
"react": "^19.2.4",
|
|
61
60
|
"react-color": "^2.19.3",
|
|
62
|
-
"react-day-picker": "^9.13.
|
|
63
|
-
"react-dom": "^19.
|
|
64
|
-
"react-hook-form": "^7.
|
|
65
|
-
"react-i18next": "^
|
|
66
|
-
"react-
|
|
61
|
+
"react-day-picker": "^9.13.1",
|
|
62
|
+
"react-dom": "^19.2.4",
|
|
63
|
+
"react-hook-form": "^7.71.1",
|
|
64
|
+
"react-i18next": "^16.5.4",
|
|
65
|
+
"react-is": "^19.2.4",
|
|
66
|
+
"react-resizable-panels": "^3.0.6",
|
|
67
67
|
"react-router": "^7.13.0",
|
|
68
|
-
"recharts": "^
|
|
69
|
-
"rimraf": "^6.
|
|
70
|
-
"sirv": "^3.0.
|
|
71
|
-
"socket.io-client": "^4.8.
|
|
72
|
-
"sonner": "^2.0.
|
|
68
|
+
"recharts": "^3.7.0",
|
|
69
|
+
"rimraf": "^6.1.2",
|
|
70
|
+
"sirv": "^3.0.2",
|
|
71
|
+
"socket.io-client": "^4.8.3",
|
|
72
|
+
"sonner": "^2.0.7",
|
|
73
73
|
"sort-by": "^1.2.0",
|
|
74
|
-
"tailwind-merge": "^3.
|
|
74
|
+
"tailwind-merge": "^3.4.0",
|
|
75
75
|
"ts-patch": "^3.3.0",
|
|
76
|
-
"typescript-transform-paths": "^3.5.
|
|
77
|
-
"use-debounce": "^10.0
|
|
78
|
-
"uuid": "^
|
|
79
|
-
"vaul": "^1.
|
|
80
|
-
"yup": "^1.
|
|
81
|
-
"zod": "^3.
|
|
82
|
-
"zustand": "^5.0.
|
|
83
|
-
"@deenruv/admin-dashboard": "1.0.
|
|
84
|
-
"@deenruv/admin-types": "1.0.
|
|
85
|
-
"@deenruv/
|
|
86
|
-
"@deenruv/
|
|
76
|
+
"typescript-transform-paths": "^3.5.6",
|
|
77
|
+
"use-debounce": "^10.1.0",
|
|
78
|
+
"uuid": "^13.0.0",
|
|
79
|
+
"vaul": "^1.1.2",
|
|
80
|
+
"yup": "^1.7.1",
|
|
81
|
+
"zod": "^4.3.6",
|
|
82
|
+
"zustand": "^5.0.11",
|
|
83
|
+
"@deenruv/admin-dashboard": "1.0.9",
|
|
84
|
+
"@deenruv/admin-types": "1.0.9",
|
|
85
|
+
"@deenruv/deenruv-examples-plugin": "1.0.9",
|
|
86
|
+
"@deenruv/react-ui-devkit": "1.0.9"
|
|
87
87
|
},
|
|
88
88
|
"devDependencies": {
|
|
89
|
-
"@tailwindcss/typography": "^0.5.
|
|
90
|
-
"@types/express": "^5.0.
|
|
91
|
-
"@types/react": "^19.
|
|
92
|
-
"@types/react-color": "^3.0.
|
|
93
|
-
"@types/react-dom": "^19.
|
|
94
|
-
"@types/uuid": "^
|
|
95
|
-
"@vitejs/plugin-react-swc": "^4.
|
|
96
|
-
"
|
|
97
|
-
"
|
|
98
|
-
"
|
|
99
|
-
"
|
|
100
|
-
"tsx": "^4.
|
|
101
|
-
"
|
|
102
|
-
"
|
|
103
|
-
"vite
|
|
104
|
-
"vite-
|
|
89
|
+
"@tailwindcss/typography": "^0.5.19",
|
|
90
|
+
"@types/express": "^5.0.6",
|
|
91
|
+
"@types/react": "^19.2.13",
|
|
92
|
+
"@types/react-color": "^3.0.13",
|
|
93
|
+
"@types/react-dom": "^19.2.3",
|
|
94
|
+
"@types/uuid": "^11.0.0",
|
|
95
|
+
"@vitejs/plugin-react-swc": "^4.2.3",
|
|
96
|
+
"eslint": "^9.30.1",
|
|
97
|
+
"graphql-zeus": "^7.1.9",
|
|
98
|
+
"i18next-resources-for-ts": "^2.0.0",
|
|
99
|
+
"tailwindcss": "^4.1.18",
|
|
100
|
+
"tsx": "^4.21.0",
|
|
101
|
+
"tw-animate-css": "^1.4.0",
|
|
102
|
+
"typescript": "~5.9.3",
|
|
103
|
+
"vite": "^7.3.1",
|
|
104
|
+
"vite-plugin-i18next-loader": "^3.1.3",
|
|
105
|
+
"vite-tsconfig-paths": "^6.1.0"
|
|
105
106
|
},
|
|
106
107
|
"scripts": {
|
|
107
108
|
"watch": "tspc --watch",
|
|
@@ -109,7 +110,7 @@
|
|
|
109
110
|
"copy-types": "cp src/root.d.ts dist/index.d.ts",
|
|
110
111
|
"copy-styles": "cp src/root.css dist/index.css",
|
|
111
112
|
"check-types": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
112
|
-
"zeus:local": "zeus http://localhost:
|
|
113
|
+
"zeus:local": "zeus http://localhost:6100/admin-api ./src/",
|
|
113
114
|
"lint": "eslint .",
|
|
114
115
|
"lint:fix": "eslint --fix .",
|
|
115
116
|
"preview": "vite preview",
|