@feedmepos/mf-order-setting 0.0.69-prod → 0.0.70-prod

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@feedmepos/mf-order-setting",
3
- "version": "0.0.69-prod",
3
+ "version": "0.0.70-prod",
4
4
  "type": "module",
5
5
  "module": "./dist/app.js",
6
6
  "license": "UNLICENSED",
@@ -29,7 +29,7 @@
29
29
  },
30
30
  "dependencies": {
31
31
  "@feedmepos/core": "^2.15.21",
32
- "@feedmepos/menu": "^1.9.5",
32
+ "@feedmepos/menu": "^1.9.6",
33
33
  "@feedmepos/mf-common": "1.20.0-beta.2",
34
34
  "@feedmepos/ordering": "^0.0.3",
35
35
  "@feedmepos/ui-library": "1.5.2-beta.1",
@@ -114,7 +114,10 @@ const data = reactive<FdoExternalSetting>({
114
114
  pickup: props.initialValue.pickup ?? { catalogId: null }
115
115
  })
116
116
 
117
- const platformOptions = ref([{ label: 'ZUS', value: F_ORDER_PLATFORM.enum.ZUS }])
117
+ const platformOptions = ref([
118
+ { label: 'ZUS', value: F_ORDER_PLATFORM.enum.ZUS },
119
+ { label: 'HakShan', value: F_ORDER_PLATFORM.enum.HAKSHAN }
120
+ ])
118
121
 
119
122
  const emits = defineEmits<{
120
123
  (event: 'update:model-value', v: FdoExternalSetting): void