@bagelink/vue 0.0.60 → 0.0.66
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 +2 -2
- package/src/components/Comments.vue +1 -1
- package/src/components/ContactSubmissions.vue +1 -1
- package/src/components/FileUploader.vue +1 -1
- package/src/components/PersonPreview.vue +1 -1
- package/src/components/PersonPreviewFormkit.vue +1 -1
- package/src/components/formkit/AddressArray.vue +1 -1
- package/src/components/formkit/BankDetailsArray.vue +1 -1
- package/src/components/formkit/ContactArrayFormKit.vue +1 -1
- package/src/components/formkit/FileUploader.vue +1 -1
- package/src/components/whatsapp/form/MsgTemplate.vue +1 -1
- package/tsconfig.json +22 -16
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.66",
|
|
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.66"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
70
|
"@bagelink/sdk": "*"
|
|
@@ -75,8 +75,8 @@
|
|
|
75
75
|
</template>
|
|
76
76
|
|
|
77
77
|
<script lang="ts" setup>
|
|
78
|
-
import { useBagel } from 'src/plugins/bagel';
|
|
79
78
|
import type { FormKitSchemaDefinition } from '@formkit/core';
|
|
79
|
+
import { useBagel } from '@/index';
|
|
80
80
|
import type { Person } from '@/types';
|
|
81
81
|
import {
|
|
82
82
|
initials, useModal,
|
|
@@ -76,8 +76,8 @@
|
|
|
76
76
|
</template>
|
|
77
77
|
|
|
78
78
|
<script lang="ts" setup>
|
|
79
|
-
import { useBagel } from 'src/plugins/bagel';
|
|
80
79
|
import type { FormKitSchemaDefinition } from '@formkit/core';
|
|
80
|
+
import { useBagel } from '@/index';
|
|
81
81
|
import type { Person } from '@/types';
|
|
82
82
|
import {
|
|
83
83
|
useModal, initials,
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
<script setup lang="ts">
|
|
88
88
|
import { watch } from 'vue';
|
|
89
89
|
// import type { BagelField } from '@/types/BagelField';
|
|
90
|
-
import { useBagel } from '
|
|
90
|
+
import { useBagel } from '@/index';
|
|
91
91
|
import { Btn } from '@/components';
|
|
92
92
|
import Checkbox from '../form/inputs/Checkbox.vue';
|
|
93
93
|
|
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
import { watch } from 'vue';
|
|
114
114
|
// import type { BagelField } from '@/types/BagelField';
|
|
115
115
|
|
|
116
|
-
import { useBagel } from '
|
|
116
|
+
import { useBagel } from '@/index';
|
|
117
117
|
import { Btn } from '@/components';
|
|
118
118
|
import Checkbox from '../form/inputs/Checkbox.vue';
|
|
119
119
|
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
<script setup lang="ts">
|
|
78
78
|
import { watch } from 'vue';
|
|
79
79
|
// import type { BagelField } from '@/types/BagelField';
|
|
80
|
-
import { useBagel } from '
|
|
80
|
+
import { useBagel } from '@/index';
|
|
81
81
|
import { Btn } from '@/components';
|
|
82
82
|
import Checkbox from '../form/inputs/Checkbox.vue';
|
|
83
83
|
|
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
<script setup lang="ts">
|
|
36
36
|
import { onMounted } from 'vue';
|
|
37
37
|
|
|
38
|
-
import { useBagel } from 'src/plugins/bagel';
|
|
39
38
|
import type { FormKitSchemaDefinition } from '@formkit/core';
|
|
40
39
|
import type { RouteLocationNormalizedLoaded, Router } from 'vue-router';
|
|
40
|
+
import { useBagel } from '@/index';
|
|
41
41
|
import {
|
|
42
42
|
BodyComponent,
|
|
43
43
|
HeaderComponent,
|
package/tsconfig.json
CHANGED
|
@@ -11,24 +11,30 @@
|
|
|
11
11
|
"@vue-macros/reactivity-transform/macros-global"
|
|
12
12
|
],
|
|
13
13
|
"paths": {
|
|
14
|
-
"
|
|
15
|
-
"./src/
|
|
14
|
+
"@": [
|
|
15
|
+
"./src/index.ts"
|
|
16
16
|
],
|
|
17
|
-
"
|
|
18
|
-
"./src
|
|
19
|
-
],
|
|
20
|
-
"@/types": [
|
|
21
|
-
"./src/types/index.ts"
|
|
22
|
-
],
|
|
23
|
-
"@/types/*": [
|
|
24
|
-
"./src/types/*"
|
|
25
|
-
],
|
|
26
|
-
"@/utils": [
|
|
27
|
-
"./src/utils/index.ts"
|
|
28
|
-
],
|
|
29
|
-
"@/utils/*": [
|
|
30
|
-
"./src/utils/*"
|
|
17
|
+
"@/*": [
|
|
18
|
+
"./src/*"
|
|
31
19
|
],
|
|
20
|
+
// "@/components": [
|
|
21
|
+
// "./src/components/index.ts"
|
|
22
|
+
// ],
|
|
23
|
+
// "@/components/*": [
|
|
24
|
+
// "./src/components/*"
|
|
25
|
+
// ],
|
|
26
|
+
// "@/types": [
|
|
27
|
+
// "./src/types/index.ts"
|
|
28
|
+
// ],
|
|
29
|
+
// "@/types/*": [
|
|
30
|
+
// "./src/types/*"
|
|
31
|
+
// ],
|
|
32
|
+
// "@/utils": [
|
|
33
|
+
// "./src/utils/index.ts"
|
|
34
|
+
// ],
|
|
35
|
+
// "@/utils/*": [
|
|
36
|
+
// "./src/utils/*"
|
|
37
|
+
// ],
|
|
32
38
|
},
|
|
33
39
|
},
|
|
34
40
|
"include": [
|