@bagelink/vue 0.0.58 → 0.0.62

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.58",
4
+ "version": "0.0.62",
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.58"
67
+ "@bagelink/sdk": "0.0.62"
68
68
  },
69
69
  "peerDependencies": {
70
70
  "@bagelink/sdk": "*"
@@ -56,8 +56,9 @@
56
56
  @click="deleteCandidate = i"
57
57
  icon="delete"
58
58
  color="gray"
59
- :disabled="contact.primary || val.length === 1 || deleteCandidate !== -1
60
- "
59
+ :disabled="contact.primary
60
+ || val.length === 1
61
+ || deleteCandidate !== -1"
61
62
  />
62
63
  </div>
63
64
  <Btn
@@ -1,12 +1,12 @@
1
1
  import { createInput } from '@formkit/vue';
2
- import ContactArrayFormKit from '@/components/formkit/ContactArrayFormKit.vue';
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);