@vendure/dashboard 3.3.4 → 3.3.5-master-202506190846

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vendure/dashboard",
3
3
  "private": false,
4
- "version": "3.3.4",
4
+ "version": "3.3.5-master-202506190846",
5
5
  "type": "module",
6
6
  "repository": {
7
7
  "type": "git",
@@ -86,8 +86,8 @@
86
86
  "@types/react-dom": "^19.0.4",
87
87
  "@types/react-grid-layout": "^1.3.5",
88
88
  "@uidotdev/usehooks": "^2.4.1",
89
- "@vendure/common": "3.3.4",
90
- "@vendure/core": "3.3.4",
89
+ "@vendure/common": "^3.3.5-master-202506190846",
90
+ "@vendure/core": "^3.3.5-master-202506190846",
91
91
  "@vitejs/plugin-react": "^4.3.4",
92
92
  "awesome-graphql-client": "^2.1.0",
93
93
  "class-variance-authority": "^0.7.1",
@@ -130,5 +130,5 @@
130
130
  "lightningcss-linux-arm64-musl": "^1.29.3",
131
131
  "lightningcss-linux-x64-musl": "^1.29.1"
132
132
  },
133
- "gitHead": "43afa5dfa77ea01486da0694c9f4b988dab71ef2"
133
+ "gitHead": "9ad07398469f186657dcd31d0553ff0eb359215a"
134
134
  }
@@ -37,26 +37,31 @@ export function registerDefaults() {
37
37
  id: 'products',
38
38
  title: 'Products',
39
39
  url: '/products',
40
+ order: 100,
40
41
  },
41
42
  {
42
43
  id: 'product-variants',
43
44
  title: 'Product Variants',
44
45
  url: '/product-variants',
46
+ order: 200,
45
47
  },
46
48
  {
47
49
  id: 'facets',
48
50
  title: 'Facets',
49
51
  url: '/facets',
52
+ order: 300,
50
53
  },
51
54
  {
52
55
  id: 'collections',
53
56
  title: 'Collections',
54
57
  url: '/collections',
58
+ order: 400,
55
59
  },
56
60
  {
57
61
  id: 'assets',
58
62
  title: 'Assets',
59
63
  url: '/assets',
64
+ order: 500,
60
65
  },
61
66
  ],
62
67
  },
@@ -72,6 +77,7 @@ export function registerDefaults() {
72
77
  id: 'orders',
73
78
  title: 'Orders',
74
79
  url: '/orders',
80
+ order: 100,
75
81
  },
76
82
  ],
77
83
  },
@@ -87,11 +93,13 @@ export function registerDefaults() {
87
93
  id: 'customers',
88
94
  title: 'Customers',
89
95
  url: '/customers',
96
+ order: 100,
90
97
  },
91
98
  {
92
99
  id: 'customer-groups',
93
100
  title: 'Customer Groups',
94
101
  url: '/customer-groups',
102
+ order: 200,
95
103
  },
96
104
  ],
97
105
  },
@@ -107,6 +115,7 @@ export function registerDefaults() {
107
115
  id: 'promotions',
108
116
  title: 'Promotions',
109
117
  url: '/promotions',
118
+ order: 100,
110
119
  },
111
120
  ],
112
121
  },
@@ -122,16 +131,19 @@ export function registerDefaults() {
122
131
  id: 'job-queue',
123
132
  title: 'Job Queue',
124
133
  url: '/job-queue',
134
+ order: 100,
125
135
  },
126
136
  {
127
137
  id: 'healthchecks',
128
138
  title: 'Healthchecks',
129
139
  url: '/healthchecks',
140
+ order: 200,
130
141
  },
131
142
  {
132
143
  id: 'scheduled-tasks',
133
144
  title: 'Scheduled Tasks',
134
145
  url: '/scheduled-tasks',
146
+ order: 300,
135
147
  },
136
148
  ],
137
149
  },
@@ -147,61 +159,73 @@ export function registerDefaults() {
147
159
  id: 'sellers',
148
160
  title: 'Sellers',
149
161
  url: '/sellers',
162
+ order: 100,
150
163
  },
151
164
  {
152
165
  id: 'channels',
153
166
  title: 'Channels',
154
167
  url: '/channels',
168
+ order: 200,
155
169
  },
156
170
  {
157
171
  id: 'stock-locations',
158
172
  title: 'Stock Locations',
159
173
  url: '/stock-locations',
174
+ order: 300,
160
175
  },
161
176
  {
162
177
  id: 'administrators',
163
178
  title: 'Administrators',
164
179
  url: '/administrators',
180
+ order: 400,
165
181
  },
166
182
  {
167
183
  id: 'roles',
168
184
  title: 'Roles',
169
185
  url: '/roles',
186
+ order: 500,
170
187
  },
171
188
  {
172
189
  id: 'shipping-methods',
173
190
  title: 'Shipping Methods',
174
191
  url: '/shipping-methods',
192
+ order: 600,
175
193
  },
176
194
  {
177
195
  id: 'payment-methods',
178
196
  title: 'Payment Methods',
179
197
  url: '/payment-methods',
198
+ order: 700,
180
199
  },
181
200
  {
182
201
  id: 'tax-categories',
183
202
  title: 'Tax Categories',
184
203
  url: '/tax-categories',
204
+ order: 800,
185
205
  },
186
206
  {
187
207
  id: 'tax-rates',
188
208
  title: 'Tax Rates',
189
209
  url: '/tax-rates',
210
+ order: 900,
190
211
  },
191
212
  {
192
213
  id: 'countries',
193
214
  title: 'Countries',
194
215
  url: '/countries',
216
+ order: 1000,
195
217
  },
196
218
  {
197
219
  id: 'zones',
198
220
  title: 'Zones',
199
221
  url: '/zones',
222
+ order: 1100,
200
223
  },
201
224
  {
202
225
  id: 'global-settings',
203
226
  title: 'Global Settings',
204
227
  url: '/global-settings',
228
+ order: 1200,
205
229
  },
206
230
  ],
207
231
  },