@bagelink/vue 0.0.56 → 0.0.60
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": "@bagelink/vue",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.60",
|
|
5
5
|
"description": "Bagel core sdk packages",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Neveh Allon",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"prosemirror-state": "^1.4.3",
|
|
65
65
|
"prosemirror-view": "^1.32.4",
|
|
66
66
|
"@vue-macros/reactivity-transform": "^0.4.0",
|
|
67
|
-
"@bagelink/sdk": "0.0.
|
|
67
|
+
"@bagelink/sdk": "0.0.60"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
70
|
"@bagelink/sdk": "*"
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { createInput } from '@formkit/vue';
|
|
2
|
-
import ContactArrayFormKit from '
|
|
2
|
+
import ContactArrayFormKit from './ContactArrayFormKit.vue';
|
|
3
3
|
import AddressArray from './AddressArray.vue';
|
|
4
4
|
import BankDetailsArray from './BankDetailsArray.vue';
|
|
5
5
|
import MiscFieldsBtns from './MiscFields.vue';
|
|
6
6
|
import Toggle from './Toggle.vue';
|
|
7
7
|
import FileUploader from './FileUploader.vue';
|
|
8
|
-
import TextVariableExamples from '@/components/whatsapp/form/TextVariableExamples.vue';
|
|
9
8
|
import PPV from '../PersonPreviewFormkit.vue';
|
|
9
|
+
import TextVariableExamples from '../whatsapp/form/TextVariableExamples.vue';
|
|
10
10
|
|
|
11
11
|
const ContactArray = createInput(ContactArrayFormKit);
|
|
12
12
|
const Address = createInput(AddressArray);
|
package/src/plugins/modal.ts
CHANGED
|
@@ -2,7 +2,7 @@ import {
|
|
|
2
2
|
h, InjectionKey, ref, inject, defineComponent,
|
|
3
3
|
} from 'vue';
|
|
4
4
|
import type { Plugin } from 'vue';
|
|
5
|
-
import { Modal, ModalForm } from '
|
|
5
|
+
import { Modal, ModalForm } from '../components';
|
|
6
6
|
import type { BtnOptions } from '@/types/BtnOptions';
|
|
7
7
|
|
|
8
8
|
interface ModalOptions {
|