@feedmepos/mf-common 1.28.6 → 1.28.8
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/README.md +0 -9
- package/dist/{CustomAttributesForm-e78f15d5.js → CustomAttributesForm-a255e824.js} +1 -1
- package/dist/{ItemSelector-18dccc18.js → ItemSelector-e9325121.js} +9846 -9635
- package/dist/{RestaurantSelector-0a2d4d60.js → RestaurantSelector-224c2427.js} +55 -55
- package/dist/{app-9b38f0c2.js → app-7ca435b2.js} +8668 -8524
- package/dist/app.js +2 -2
- package/dist/components/Portal/PortalDesktop.vue.d.ts.map +1 -1
- package/dist/components/Portal/PortalMobile.vue.d.ts.map +1 -1
- package/dist/components/Portal/PortalTablet.vue.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/dist/vite-preset.d.ts +88 -0
- package/dist/vite-preset.d.ts.map +1 -1
- package/dist/vite-preset.js +14 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -76,18 +76,9 @@ When a user clicks the Remy icon:
|
|
|
76
76
|
// In your microfrontend's main component or setup
|
|
77
77
|
import { onMounted } from 'vue'
|
|
78
78
|
import { useCoreStore } from '@feedmepos/common'
|
|
79
|
-
import { Remy } from './helper/remy' // Your Remy client
|
|
80
79
|
|
|
81
80
|
onMounted(async () => {
|
|
82
81
|
const coreStore = useCoreStore()
|
|
83
|
-
|
|
84
|
-
// Initialize your Remy client
|
|
85
|
-
await Remy.init()
|
|
86
|
-
|
|
87
|
-
// Register callback to handle Remy icon clicks
|
|
88
|
-
coreStore.registerOnRemyClicked(() => {
|
|
89
|
-
Remy.toggleDialog(true)
|
|
90
|
-
})
|
|
91
82
|
})
|
|
92
83
|
```
|
|
93
84
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as A, computed as d, resolveComponent as N, openBlock as f, createElementBlock as b, createVNode as S, toDisplayString as C, unref as F, h } from "vue";
|
|
2
|
-
import { t as w, u as O } from "./app-
|
|
2
|
+
import { t as w, u as O } from "./app-7ca435b2.js";
|
|
3
3
|
import { components as y } from "@feedmepos/ui-library";
|
|
4
4
|
import { c as x } from "./object-27ce045b.js";
|
|
5
5
|
import "pinia";
|