@vendure/dashboard 3.5.1-master-202511050232 → 3.6.0-minor-202511061550

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.5.1-master-202511050232",
4
+ "version": "3.6.0-minor-202511061550",
5
5
  "type": "module",
6
6
  "repository": {
7
7
  "type": "git",
@@ -155,8 +155,8 @@
155
155
  "@storybook/addon-vitest": "^10.0.0-beta.9",
156
156
  "@storybook/react-vite": "^10.0.0-beta.9",
157
157
  "@types/node": "^22.13.4",
158
- "@vendure/common": "^3.5.1-master-202511050232",
159
- "@vendure/core": "^3.5.1-master-202511050232",
158
+ "@vendure/common": "^3.6.0-minor-202511061550",
159
+ "@vendure/core": "^3.6.0-minor-202511061550",
160
160
  "@vitest/browser": "^3.2.4",
161
161
  "@vitest/coverage-v8": "^3.2.4",
162
162
  "eslint": "^9.19.0",
@@ -173,5 +173,5 @@
173
173
  "lightningcss-linux-arm64-musl": "^1.29.3",
174
174
  "lightningcss-linux-x64-musl": "^1.29.1"
175
175
  },
176
- "gitHead": "1c5f14a7152d4dc9f3c8a02b002b11f4ffbb46d4"
176
+ "gitHead": "c95eb6c286ab9173423db430fb8050b112f3fd87"
177
177
  }
@@ -1,3 +1,4 @@
1
+ import { CustomFieldsForm } from '@/vdb/components/shared/custom-fields-form.js';
1
2
  import { Button } from '@/vdb/components/ui/button.js';
2
3
  import { Checkbox } from '@/vdb/components/ui/checkbox.js';
3
4
  import {
@@ -284,6 +285,8 @@ export function CustomerAddressForm({ address, onSubmit, onCancel }: Readonly<Cu
284
285
  />
285
286
  </div>
286
287
 
288
+ {/* Custom Fields */}
289
+ <CustomFieldsForm entityType="Address" control={form.control} />
287
290
  {/* Default Address Checkboxes */}
288
291
  <div className="grid grid-cols-1 md:grid-cols-2 gap-4 pt-2">
289
292
  <FormField
@@ -18,6 +18,7 @@ import {
18
18
  } from '../ui/form.js';
19
19
  import { Input } from '../ui/input.js';
20
20
  import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '../ui/select.js';
21
+ import { CustomFieldsForm } from './custom-fields-form.js';
21
22
 
22
23
  // Query document to fetch available countries
23
24
  const getAvailableCountriesDocument = graphql(`
@@ -275,6 +276,8 @@ export function CustomerAddressForm<T>({
275
276
  />
276
277
  </div>
277
278
 
279
+ {/* Custom Fields */}
280
+ <CustomFieldsForm entityType="Address" control={form.control} />
278
281
  {/* Default Address Checkboxes */}
279
282
  <div className="grid grid-cols-1 md:grid-cols-2 gap-4 pt-2">
280
283
  <FormField