@adminforth/text-complete 1.5.0 → 1.7.0
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/build.log +2 -2
- package/custom/completionInput.vue +65 -12
- package/custom/package-lock.json +85 -85
- package/custom/package.json +1 -1
- package/dist/custom/completionInput.vue +65 -12
- package/dist/custom/package-lock.json +85 -85
- package/dist/custom/package.json +1 -1
- package/package.json +1 -1
package/build.log
CHANGED
|
@@ -9,5 +9,5 @@ custom/package-lock.json
|
|
|
9
9
|
custom/package.json
|
|
10
10
|
custom/tsconfig.json
|
|
11
11
|
|
|
12
|
-
sent
|
|
13
|
-
total size is
|
|
12
|
+
sent 22,339 bytes received 96 bytes 44,870.00 bytes/sec
|
|
13
|
+
total size is 21,981 speedup is 0.98
|
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="flex bg-gray-50 border border-gray-300 rounded-lg focus:ring-blue-500
|
|
3
3
|
focus:border-blue-500 w-full p-2.5 dark:bg-gray-700 dark:border-gray-600
|
|
4
|
-
dark:focus:ring-blue-500 dark:focus:border-blue-500 relative max-w-full"
|
|
4
|
+
dark:focus:ring-blue-500 dark:focus:border-blue-500 relative max-w-full"
|
|
5
|
+
:class="'bg-lightInputBackground placeholder-lightInputPlaceholderText text-lightInputText border-lightInputBorder dark:!bg-darkInputBackground dark:!placeholder-darkInputPlaceholderText dark:!text-darkInputText dark:!border-darkInputBorder'"
|
|
6
|
+
>
|
|
5
7
|
<SuggestionInput
|
|
6
8
|
ref="suggestionInputRef"
|
|
7
|
-
class="w-full !border-none text-gray-900 text-sm dark:placeholder-gray-400 dark:text-white whitespace-normal mr-
|
|
9
|
+
class="w-full !border-none text-gray-900 text-sm dark:placeholder-gray-400 dark:text-white whitespace-normal mr-28"
|
|
8
10
|
v-model="currentValue"
|
|
9
11
|
:type="column.type"
|
|
10
12
|
:completionRequest="complete"
|
|
11
13
|
:debounceTime="meta.debounceTime"
|
|
14
|
+
@completion-approved="handleCompletionApproved"
|
|
12
15
|
/>
|
|
13
16
|
<div class="absolute right-2 bottom-1">
|
|
14
17
|
<Tooltip v-if="isUntouched || (!currentValue.trim() && !isFocused)">
|
|
@@ -29,13 +32,36 @@
|
|
|
29
32
|
<button
|
|
30
33
|
@click.stop="approveCompletion"
|
|
31
34
|
@mousedown.prevent
|
|
32
|
-
class="
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
35
|
+
:class="[
|
|
36
|
+
'text-white bg-gradient-to-r from-purple-500 via-purple-600 to-purple-700 hover:bg-gradient-to-br focus:ring-4 focus:outline-none focus:ring-purple-300 dark:focus:ring-purple-800',
|
|
37
|
+
'font-medium rounded-lg text-xs flex items-center justify-center py-1 px-1 ',
|
|
38
|
+
buttonText === approveCompletionValue ? 'w-16' : 'w-18'
|
|
39
|
+
]">
|
|
40
|
+
<div
|
|
41
|
+
class="flex items-center justify-center"
|
|
42
|
+
v-if="buttonText === approveCompletionValue"
|
|
43
|
+
>
|
|
44
|
+
<IconArrowRightThin class="mt-0.5 w-5 h-5 text-white"/>
|
|
45
|
+
<span class="ml-1 px-1 h-4 flex items-center justify-center rounded border bg-white text-black text-[10px] font-mono shadow-inner shadow-sm border-gray-300 dark:bg-gray-700 dark:text-white dark:border-gray-500">
|
|
46
|
+
<p class="mt-0.5">Tab</p>
|
|
47
|
+
</span>
|
|
48
|
+
</div>
|
|
49
|
+
<div
|
|
50
|
+
class="flex items-center justify-center"
|
|
51
|
+
v-else-if="buttonText === approveNextWordValue"
|
|
52
|
+
>
|
|
53
|
+
<IconArrowRightThin class="mt-0.5 w-5 h-5 text-white" />
|
|
54
|
+
<span class="ml-1 px-1 h-4 flex items-center justify-center rounded border bg-white text-black text-[10px] font-mono shadow-inner shadow-sm border-gray-300 dark:bg-gray-700 dark:text-white dark:border-gray-500">
|
|
55
|
+
<p class="mt-0.5">Ctrl</p>
|
|
56
|
+
</span>
|
|
57
|
+
<span class="ml-1 text-white">+</span>
|
|
58
|
+
<span class="ml-1 px-1 h-4 flex items-center justify-center rounded border bg-white text-black text-[10px] font-mono shadow-inner shadow-sm border-gray-300 dark:bg-gray-700 dark:text-white dark:border-gray-500">
|
|
59
|
+
<IconArrowRightThin class="w-3.5 h-3.5" />
|
|
60
|
+
</span>
|
|
61
|
+
</div>
|
|
36
62
|
</button>
|
|
37
63
|
<template #tooltip>
|
|
38
|
-
{{ $t(
|
|
64
|
+
{{ $t(tooltipText) }}
|
|
39
65
|
</template>
|
|
40
66
|
</Tooltip>
|
|
41
67
|
|
|
@@ -44,7 +70,7 @@
|
|
|
44
70
|
</template>
|
|
45
71
|
|
|
46
72
|
<script setup lang="ts">
|
|
47
|
-
import { ref, onMounted, watch, Ref
|
|
73
|
+
import { ref, onMounted, watch, Ref, computed } from 'vue';
|
|
48
74
|
import { callAdminForthApi } from '@/utils';
|
|
49
75
|
import { AdminForthColumnCommon } from '@/types/Common';
|
|
50
76
|
import { Spinner, Tooltip } from '@/afcl';
|
|
@@ -61,15 +87,33 @@ const props = defineProps<{
|
|
|
61
87
|
const emit = defineEmits([
|
|
62
88
|
'update:value',
|
|
63
89
|
]);
|
|
64
|
-
|
|
90
|
+
const approveCompletionValue:string='TAB';
|
|
91
|
+
const approveNextWordValue:string='CTRL + ->'
|
|
65
92
|
const isLoading = ref<boolean>(false);
|
|
66
93
|
const isUntouched = ref<boolean>(true);
|
|
67
94
|
const isFocused = ref<boolean>(false);
|
|
68
95
|
const currentValue: Ref<string> = ref('');
|
|
69
96
|
const suggestionInputRef = ref<InstanceType<typeof SuggestionInput> | null>(null);
|
|
97
|
+
const buttonText = ref<string>(approveCompletionValue);
|
|
98
|
+
|
|
99
|
+
const tooltipText = computed(() =>
|
|
100
|
+
buttonText.value === approveCompletionValue ? 'Approve completion' : 'Approve next word'
|
|
101
|
+
);
|
|
102
|
+
|
|
103
|
+
function handleCompletionApproved(type: 'all' | 'word') {
|
|
104
|
+
if(buttonText.value === approveCompletionValue && type === 'all') {
|
|
105
|
+
buttonText.value = approveNextWordValue;
|
|
106
|
+
} else if (buttonText.value === approveNextWordValue && type === 'word') {
|
|
107
|
+
buttonText.value = approveCompletionValue;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
70
110
|
|
|
71
111
|
onMounted(() => {
|
|
72
|
-
|
|
112
|
+
const value = props.record[props.column.name] || '';
|
|
113
|
+
currentValue.value = value;
|
|
114
|
+
if (value.trim()) {
|
|
115
|
+
isUntouched.value = false;
|
|
116
|
+
}
|
|
73
117
|
if (suggestionInputRef.value) {
|
|
74
118
|
const editor = suggestionInputRef.value.$el.querySelector('.ql-editor');
|
|
75
119
|
if (editor) {
|
|
@@ -84,7 +128,11 @@ watch(() => currentValue.value, (value) => {
|
|
|
84
128
|
});
|
|
85
129
|
|
|
86
130
|
watch(() => props.record, (value) => {
|
|
87
|
-
|
|
131
|
+
const val = value[props.column.name] || '';
|
|
132
|
+
currentValue.value = val;
|
|
133
|
+
if (val.trim()) {
|
|
134
|
+
isUntouched.value = false;
|
|
135
|
+
}
|
|
88
136
|
});
|
|
89
137
|
|
|
90
138
|
async function complete(textBeforeCursor: string) {
|
|
@@ -105,8 +153,13 @@ async function complete(textBeforeCursor: string) {
|
|
|
105
153
|
|
|
106
154
|
const approveCompletion = async () => {
|
|
107
155
|
if (suggestionInputRef.value) {
|
|
108
|
-
|
|
156
|
+
if( buttonText.value === approveCompletionValue) {
|
|
157
|
+
await suggestionInputRef.value.approveCompletion('all');
|
|
158
|
+
} else {
|
|
159
|
+
await suggestionInputRef.value.approveCompletion('word');
|
|
160
|
+
}
|
|
109
161
|
}
|
|
162
|
+
buttonText.value === approveCompletionValue ? buttonText.value = approveNextWordValue : buttonText.value = approveCompletionValue;
|
|
110
163
|
}
|
|
111
164
|
|
|
112
165
|
function handleFocus() {
|
package/custom/package-lock.json
CHANGED
|
@@ -10,34 +10,34 @@
|
|
|
10
10
|
"license": "ISC",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@iconify-prerendered/vue-mdi": "^0.28.1737398331",
|
|
13
|
-
"vue-suggestion-input": "^1.0.
|
|
13
|
+
"vue-suggestion-input": "^1.0.12"
|
|
14
14
|
}
|
|
15
15
|
},
|
|
16
16
|
"node_modules/@babel/helper-string-parser": {
|
|
17
|
-
"version": "7.
|
|
18
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.
|
|
19
|
-
"integrity": "sha512-
|
|
17
|
+
"version": "7.27.1",
|
|
18
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
|
|
19
|
+
"integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"engines": {
|
|
22
22
|
"node": ">=6.9.0"
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
25
|
"node_modules/@babel/helper-validator-identifier": {
|
|
26
|
-
"version": "7.
|
|
27
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.
|
|
28
|
-
"integrity": "sha512-
|
|
26
|
+
"version": "7.27.1",
|
|
27
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz",
|
|
28
|
+
"integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==",
|
|
29
29
|
"license": "MIT",
|
|
30
30
|
"engines": {
|
|
31
31
|
"node": ">=6.9.0"
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"node_modules/@babel/parser": {
|
|
35
|
-
"version": "7.
|
|
36
|
-
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.
|
|
37
|
-
"integrity": "sha512-
|
|
35
|
+
"version": "7.28.0",
|
|
36
|
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.0.tgz",
|
|
37
|
+
"integrity": "sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==",
|
|
38
38
|
"license": "MIT",
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@babel/types": "^7.
|
|
40
|
+
"@babel/types": "^7.28.0"
|
|
41
41
|
},
|
|
42
42
|
"bin": {
|
|
43
43
|
"parser": "bin/babel-parser.js"
|
|
@@ -47,13 +47,13 @@
|
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
49
|
"node_modules/@babel/types": {
|
|
50
|
-
"version": "7.
|
|
51
|
-
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.
|
|
52
|
-
"integrity": "sha512-
|
|
50
|
+
"version": "7.28.2",
|
|
51
|
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.2.tgz",
|
|
52
|
+
"integrity": "sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==",
|
|
53
53
|
"license": "MIT",
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@babel/helper-string-parser": "^7.
|
|
56
|
-
"@babel/helper-validator-identifier": "^7.
|
|
55
|
+
"@babel/helper-string-parser": "^7.27.1",
|
|
56
|
+
"@babel/helper-validator-identifier": "^7.27.1"
|
|
57
57
|
},
|
|
58
58
|
"engines": {
|
|
59
59
|
"node": ">=6.9.0"
|
|
@@ -72,109 +72,109 @@
|
|
|
72
72
|
}
|
|
73
73
|
},
|
|
74
74
|
"node_modules/@jridgewell/sourcemap-codec": {
|
|
75
|
-
"version": "1.5.
|
|
76
|
-
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.
|
|
77
|
-
"integrity": "sha512-
|
|
75
|
+
"version": "1.5.4",
|
|
76
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz",
|
|
77
|
+
"integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==",
|
|
78
78
|
"license": "MIT"
|
|
79
79
|
},
|
|
80
80
|
"node_modules/@vue/compiler-core": {
|
|
81
|
-
"version": "3.5.
|
|
82
|
-
"resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.
|
|
83
|
-
"integrity": "sha512-
|
|
81
|
+
"version": "3.5.18",
|
|
82
|
+
"resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.18.tgz",
|
|
83
|
+
"integrity": "sha512-3slwjQrrV1TO8MoXgy3aynDQ7lslj5UqDxuHnrzHtpON5CBinhWjJETciPngpin/T3OuW3tXUf86tEurusnztw==",
|
|
84
84
|
"license": "MIT",
|
|
85
85
|
"dependencies": {
|
|
86
|
-
"@babel/parser": "^7.
|
|
87
|
-
"@vue/shared": "3.5.
|
|
86
|
+
"@babel/parser": "^7.28.0",
|
|
87
|
+
"@vue/shared": "3.5.18",
|
|
88
88
|
"entities": "^4.5.0",
|
|
89
89
|
"estree-walker": "^2.0.2",
|
|
90
|
-
"source-map-js": "^1.2.
|
|
90
|
+
"source-map-js": "^1.2.1"
|
|
91
91
|
}
|
|
92
92
|
},
|
|
93
93
|
"node_modules/@vue/compiler-dom": {
|
|
94
|
-
"version": "3.5.
|
|
95
|
-
"resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.
|
|
96
|
-
"integrity": "sha512-
|
|
94
|
+
"version": "3.5.18",
|
|
95
|
+
"resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.18.tgz",
|
|
96
|
+
"integrity": "sha512-RMbU6NTU70++B1JyVJbNbeFkK+A+Q7y9XKE2EM4NLGm2WFR8x9MbAtWxPPLdm0wUkuZv9trpwfSlL6tjdIa1+A==",
|
|
97
97
|
"license": "MIT",
|
|
98
98
|
"dependencies": {
|
|
99
|
-
"@vue/compiler-core": "3.5.
|
|
100
|
-
"@vue/shared": "3.5.
|
|
99
|
+
"@vue/compiler-core": "3.5.18",
|
|
100
|
+
"@vue/shared": "3.5.18"
|
|
101
101
|
}
|
|
102
102
|
},
|
|
103
103
|
"node_modules/@vue/compiler-sfc": {
|
|
104
|
-
"version": "3.5.
|
|
105
|
-
"resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.
|
|
106
|
-
"integrity": "sha512-
|
|
104
|
+
"version": "3.5.18",
|
|
105
|
+
"resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.18.tgz",
|
|
106
|
+
"integrity": "sha512-5aBjvGqsWs+MoxswZPoTB9nSDb3dhd1x30xrrltKujlCxo48j8HGDNj3QPhF4VIS0VQDUrA1xUfp2hEa+FNyXA==",
|
|
107
107
|
"license": "MIT",
|
|
108
108
|
"dependencies": {
|
|
109
|
-
"@babel/parser": "^7.
|
|
110
|
-
"@vue/compiler-core": "3.5.
|
|
111
|
-
"@vue/compiler-dom": "3.5.
|
|
112
|
-
"@vue/compiler-ssr": "3.5.
|
|
113
|
-
"@vue/shared": "3.5.
|
|
109
|
+
"@babel/parser": "^7.28.0",
|
|
110
|
+
"@vue/compiler-core": "3.5.18",
|
|
111
|
+
"@vue/compiler-dom": "3.5.18",
|
|
112
|
+
"@vue/compiler-ssr": "3.5.18",
|
|
113
|
+
"@vue/shared": "3.5.18",
|
|
114
114
|
"estree-walker": "^2.0.2",
|
|
115
|
-
"magic-string": "^0.30.
|
|
116
|
-
"postcss": "^8.
|
|
117
|
-
"source-map-js": "^1.2.
|
|
115
|
+
"magic-string": "^0.30.17",
|
|
116
|
+
"postcss": "^8.5.6",
|
|
117
|
+
"source-map-js": "^1.2.1"
|
|
118
118
|
}
|
|
119
119
|
},
|
|
120
120
|
"node_modules/@vue/compiler-ssr": {
|
|
121
|
-
"version": "3.5.
|
|
122
|
-
"resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.
|
|
123
|
-
"integrity": "sha512-
|
|
121
|
+
"version": "3.5.18",
|
|
122
|
+
"resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.18.tgz",
|
|
123
|
+
"integrity": "sha512-xM16Ak7rSWHkM3m22NlmcdIM+K4BMyFARAfV9hYFl+SFuRzrZ3uGMNW05kA5pmeMa0X9X963Kgou7ufdbpOP9g==",
|
|
124
124
|
"license": "MIT",
|
|
125
125
|
"dependencies": {
|
|
126
|
-
"@vue/compiler-dom": "3.5.
|
|
127
|
-
"@vue/shared": "3.5.
|
|
126
|
+
"@vue/compiler-dom": "3.5.18",
|
|
127
|
+
"@vue/shared": "3.5.18"
|
|
128
128
|
}
|
|
129
129
|
},
|
|
130
130
|
"node_modules/@vue/reactivity": {
|
|
131
|
-
"version": "3.5.
|
|
132
|
-
"resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.
|
|
133
|
-
"integrity": "sha512-
|
|
131
|
+
"version": "3.5.18",
|
|
132
|
+
"resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.18.tgz",
|
|
133
|
+
"integrity": "sha512-x0vPO5Imw+3sChLM5Y+B6G1zPjwdOri9e8V21NnTnlEvkxatHEH5B5KEAJcjuzQ7BsjGrKtfzuQ5eQwXh8HXBg==",
|
|
134
134
|
"license": "MIT",
|
|
135
135
|
"dependencies": {
|
|
136
|
-
"@vue/shared": "3.5.
|
|
136
|
+
"@vue/shared": "3.5.18"
|
|
137
137
|
}
|
|
138
138
|
},
|
|
139
139
|
"node_modules/@vue/runtime-core": {
|
|
140
|
-
"version": "3.5.
|
|
141
|
-
"resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.
|
|
142
|
-
"integrity": "sha512-
|
|
140
|
+
"version": "3.5.18",
|
|
141
|
+
"resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.18.tgz",
|
|
142
|
+
"integrity": "sha512-DUpHa1HpeOQEt6+3nheUfqVXRog2kivkXHUhoqJiKR33SO4x+a5uNOMkV487WPerQkL0vUuRvq/7JhRgLW3S+w==",
|
|
143
143
|
"license": "MIT",
|
|
144
144
|
"dependencies": {
|
|
145
|
-
"@vue/reactivity": "3.5.
|
|
146
|
-
"@vue/shared": "3.5.
|
|
145
|
+
"@vue/reactivity": "3.5.18",
|
|
146
|
+
"@vue/shared": "3.5.18"
|
|
147
147
|
}
|
|
148
148
|
},
|
|
149
149
|
"node_modules/@vue/runtime-dom": {
|
|
150
|
-
"version": "3.5.
|
|
151
|
-
"resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.
|
|
152
|
-
"integrity": "sha512-
|
|
150
|
+
"version": "3.5.18",
|
|
151
|
+
"resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.18.tgz",
|
|
152
|
+
"integrity": "sha512-YwDj71iV05j4RnzZnZtGaXwPoUWeRsqinblgVJwR8XTXYZ9D5PbahHQgsbmzUvCWNF6x7siQ89HgnX5eWkr3mw==",
|
|
153
153
|
"license": "MIT",
|
|
154
154
|
"dependencies": {
|
|
155
|
-
"@vue/reactivity": "3.5.
|
|
156
|
-
"@vue/runtime-core": "3.5.
|
|
157
|
-
"@vue/shared": "3.5.
|
|
155
|
+
"@vue/reactivity": "3.5.18",
|
|
156
|
+
"@vue/runtime-core": "3.5.18",
|
|
157
|
+
"@vue/shared": "3.5.18",
|
|
158
158
|
"csstype": "^3.1.3"
|
|
159
159
|
}
|
|
160
160
|
},
|
|
161
161
|
"node_modules/@vue/server-renderer": {
|
|
162
|
-
"version": "3.5.
|
|
163
|
-
"resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.
|
|
164
|
-
"integrity": "sha512-
|
|
162
|
+
"version": "3.5.18",
|
|
163
|
+
"resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.18.tgz",
|
|
164
|
+
"integrity": "sha512-PvIHLUoWgSbDG7zLHqSqaCoZvHi6NNmfVFOqO+OnwvqMz/tqQr3FuGWS8ufluNddk7ZLBJYMrjcw1c6XzR12mA==",
|
|
165
165
|
"license": "MIT",
|
|
166
166
|
"dependencies": {
|
|
167
|
-
"@vue/compiler-ssr": "3.5.
|
|
168
|
-
"@vue/shared": "3.5.
|
|
167
|
+
"@vue/compiler-ssr": "3.5.18",
|
|
168
|
+
"@vue/shared": "3.5.18"
|
|
169
169
|
},
|
|
170
170
|
"peerDependencies": {
|
|
171
|
-
"vue": "3.5.
|
|
171
|
+
"vue": "3.5.18"
|
|
172
172
|
}
|
|
173
173
|
},
|
|
174
174
|
"node_modules/@vue/shared": {
|
|
175
|
-
"version": "3.5.
|
|
176
|
-
"resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.
|
|
177
|
-
"integrity": "sha512
|
|
175
|
+
"version": "3.5.18",
|
|
176
|
+
"resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.18.tgz",
|
|
177
|
+
"integrity": "sha512-cZy8Dq+uuIXbxCZpuLd2GJdeSO/lIzIspC2WtkqIpje5QyFbvLaI5wZtdUjLHjGZrlVX6GilejatWwVYYRc8tA==",
|
|
178
178
|
"license": "MIT"
|
|
179
179
|
},
|
|
180
180
|
"node_modules/csstype": {
|
|
@@ -272,9 +272,9 @@
|
|
|
272
272
|
"license": "ISC"
|
|
273
273
|
},
|
|
274
274
|
"node_modules/postcss": {
|
|
275
|
-
"version": "8.5.
|
|
276
|
-
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.
|
|
277
|
-
"integrity": "sha512-
|
|
275
|
+
"version": "8.5.6",
|
|
276
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
|
|
277
|
+
"integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
|
|
278
278
|
"funding": [
|
|
279
279
|
{
|
|
280
280
|
"type": "opencollective",
|
|
@@ -291,7 +291,7 @@
|
|
|
291
291
|
],
|
|
292
292
|
"license": "MIT",
|
|
293
293
|
"dependencies": {
|
|
294
|
-
"nanoid": "^3.3.
|
|
294
|
+
"nanoid": "^3.3.11",
|
|
295
295
|
"picocolors": "^1.1.1",
|
|
296
296
|
"source-map-js": "^1.2.1"
|
|
297
297
|
},
|
|
@@ -338,16 +338,16 @@
|
|
|
338
338
|
}
|
|
339
339
|
},
|
|
340
340
|
"node_modules/vue": {
|
|
341
|
-
"version": "3.5.
|
|
342
|
-
"resolved": "https://registry.npmjs.org/vue/-/vue-3.5.
|
|
343
|
-
"integrity": "sha512-
|
|
341
|
+
"version": "3.5.18",
|
|
342
|
+
"resolved": "https://registry.npmjs.org/vue/-/vue-3.5.18.tgz",
|
|
343
|
+
"integrity": "sha512-7W4Y4ZbMiQ3SEo+m9lnoNpV9xG7QVMLa+/0RFwwiAVkeYoyGXqWE85jabU4pllJNUzqfLShJ5YLptewhCWUgNA==",
|
|
344
344
|
"license": "MIT",
|
|
345
345
|
"dependencies": {
|
|
346
|
-
"@vue/compiler-dom": "3.5.
|
|
347
|
-
"@vue/compiler-sfc": "3.5.
|
|
348
|
-
"@vue/runtime-dom": "3.5.
|
|
349
|
-
"@vue/server-renderer": "3.5.
|
|
350
|
-
"@vue/shared": "3.5.
|
|
346
|
+
"@vue/compiler-dom": "3.5.18",
|
|
347
|
+
"@vue/compiler-sfc": "3.5.18",
|
|
348
|
+
"@vue/runtime-dom": "3.5.18",
|
|
349
|
+
"@vue/server-renderer": "3.5.18",
|
|
350
|
+
"@vue/shared": "3.5.18"
|
|
351
351
|
},
|
|
352
352
|
"peerDependencies": {
|
|
353
353
|
"typescript": "*"
|
|
@@ -359,9 +359,9 @@
|
|
|
359
359
|
}
|
|
360
360
|
},
|
|
361
361
|
"node_modules/vue-suggestion-input": {
|
|
362
|
-
"version": "1.0.
|
|
363
|
-
"resolved": "https://registry.npmjs.org/vue-suggestion-input/-/vue-suggestion-input-1.0.
|
|
364
|
-
"integrity": "sha512-
|
|
362
|
+
"version": "1.0.12",
|
|
363
|
+
"resolved": "https://registry.npmjs.org/vue-suggestion-input/-/vue-suggestion-input-1.0.12.tgz",
|
|
364
|
+
"integrity": "sha512-Ik6uuvAonvHmgCRDbnSyqQ/iv91ne2uMv6rVowd8XzIDazzzAvdUQMFjqytl/NbhTAXdXZbKd5WsY/X+PtUvwQ==",
|
|
365
365
|
"dependencies": {
|
|
366
366
|
"quill": "^2.0.2",
|
|
367
367
|
"vue": "^3.4.31"
|
package/custom/package.json
CHANGED
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="flex bg-gray-50 border border-gray-300 rounded-lg focus:ring-blue-500
|
|
3
3
|
focus:border-blue-500 w-full p-2.5 dark:bg-gray-700 dark:border-gray-600
|
|
4
|
-
dark:focus:ring-blue-500 dark:focus:border-blue-500 relative max-w-full"
|
|
4
|
+
dark:focus:ring-blue-500 dark:focus:border-blue-500 relative max-w-full"
|
|
5
|
+
:class="'bg-lightInputBackground placeholder-lightInputPlaceholderText text-lightInputText border-lightInputBorder dark:!bg-darkInputBackground dark:!placeholder-darkInputPlaceholderText dark:!text-darkInputText dark:!border-darkInputBorder'"
|
|
6
|
+
>
|
|
5
7
|
<SuggestionInput
|
|
6
8
|
ref="suggestionInputRef"
|
|
7
|
-
class="w-full !border-none text-gray-900 text-sm dark:placeholder-gray-400 dark:text-white whitespace-normal mr-
|
|
9
|
+
class="w-full !border-none text-gray-900 text-sm dark:placeholder-gray-400 dark:text-white whitespace-normal mr-28"
|
|
8
10
|
v-model="currentValue"
|
|
9
11
|
:type="column.type"
|
|
10
12
|
:completionRequest="complete"
|
|
11
13
|
:debounceTime="meta.debounceTime"
|
|
14
|
+
@completion-approved="handleCompletionApproved"
|
|
12
15
|
/>
|
|
13
16
|
<div class="absolute right-2 bottom-1">
|
|
14
17
|
<Tooltip v-if="isUntouched || (!currentValue.trim() && !isFocused)">
|
|
@@ -29,13 +32,36 @@
|
|
|
29
32
|
<button
|
|
30
33
|
@click.stop="approveCompletion"
|
|
31
34
|
@mousedown.prevent
|
|
32
|
-
class="
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
35
|
+
:class="[
|
|
36
|
+
'text-white bg-gradient-to-r from-purple-500 via-purple-600 to-purple-700 hover:bg-gradient-to-br focus:ring-4 focus:outline-none focus:ring-purple-300 dark:focus:ring-purple-800',
|
|
37
|
+
'font-medium rounded-lg text-xs flex items-center justify-center py-1 px-1 ',
|
|
38
|
+
buttonText === approveCompletionValue ? 'w-16' : 'w-18'
|
|
39
|
+
]">
|
|
40
|
+
<div
|
|
41
|
+
class="flex items-center justify-center"
|
|
42
|
+
v-if="buttonText === approveCompletionValue"
|
|
43
|
+
>
|
|
44
|
+
<IconArrowRightThin class="mt-0.5 w-5 h-5 text-white"/>
|
|
45
|
+
<span class="ml-1 px-1 h-4 flex items-center justify-center rounded border bg-white text-black text-[10px] font-mono shadow-inner shadow-sm border-gray-300 dark:bg-gray-700 dark:text-white dark:border-gray-500">
|
|
46
|
+
<p class="mt-0.5">Tab</p>
|
|
47
|
+
</span>
|
|
48
|
+
</div>
|
|
49
|
+
<div
|
|
50
|
+
class="flex items-center justify-center"
|
|
51
|
+
v-else-if="buttonText === approveNextWordValue"
|
|
52
|
+
>
|
|
53
|
+
<IconArrowRightThin class="mt-0.5 w-5 h-5 text-white" />
|
|
54
|
+
<span class="ml-1 px-1 h-4 flex items-center justify-center rounded border bg-white text-black text-[10px] font-mono shadow-inner shadow-sm border-gray-300 dark:bg-gray-700 dark:text-white dark:border-gray-500">
|
|
55
|
+
<p class="mt-0.5">Ctrl</p>
|
|
56
|
+
</span>
|
|
57
|
+
<span class="ml-1 text-white">+</span>
|
|
58
|
+
<span class="ml-1 px-1 h-4 flex items-center justify-center rounded border bg-white text-black text-[10px] font-mono shadow-inner shadow-sm border-gray-300 dark:bg-gray-700 dark:text-white dark:border-gray-500">
|
|
59
|
+
<IconArrowRightThin class="w-3.5 h-3.5" />
|
|
60
|
+
</span>
|
|
61
|
+
</div>
|
|
36
62
|
</button>
|
|
37
63
|
<template #tooltip>
|
|
38
|
-
{{ $t(
|
|
64
|
+
{{ $t(tooltipText) }}
|
|
39
65
|
</template>
|
|
40
66
|
</Tooltip>
|
|
41
67
|
|
|
@@ -44,7 +70,7 @@
|
|
|
44
70
|
</template>
|
|
45
71
|
|
|
46
72
|
<script setup lang="ts">
|
|
47
|
-
import { ref, onMounted, watch, Ref
|
|
73
|
+
import { ref, onMounted, watch, Ref, computed } from 'vue';
|
|
48
74
|
import { callAdminForthApi } from '@/utils';
|
|
49
75
|
import { AdminForthColumnCommon } from '@/types/Common';
|
|
50
76
|
import { Spinner, Tooltip } from '@/afcl';
|
|
@@ -61,15 +87,33 @@ const props = defineProps<{
|
|
|
61
87
|
const emit = defineEmits([
|
|
62
88
|
'update:value',
|
|
63
89
|
]);
|
|
64
|
-
|
|
90
|
+
const approveCompletionValue:string='TAB';
|
|
91
|
+
const approveNextWordValue:string='CTRL + ->'
|
|
65
92
|
const isLoading = ref<boolean>(false);
|
|
66
93
|
const isUntouched = ref<boolean>(true);
|
|
67
94
|
const isFocused = ref<boolean>(false);
|
|
68
95
|
const currentValue: Ref<string> = ref('');
|
|
69
96
|
const suggestionInputRef = ref<InstanceType<typeof SuggestionInput> | null>(null);
|
|
97
|
+
const buttonText = ref<string>(approveCompletionValue);
|
|
98
|
+
|
|
99
|
+
const tooltipText = computed(() =>
|
|
100
|
+
buttonText.value === approveCompletionValue ? 'Approve completion' : 'Approve next word'
|
|
101
|
+
);
|
|
102
|
+
|
|
103
|
+
function handleCompletionApproved(type: 'all' | 'word') {
|
|
104
|
+
if(buttonText.value === approveCompletionValue && type === 'all') {
|
|
105
|
+
buttonText.value = approveNextWordValue;
|
|
106
|
+
} else if (buttonText.value === approveNextWordValue && type === 'word') {
|
|
107
|
+
buttonText.value = approveCompletionValue;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
70
110
|
|
|
71
111
|
onMounted(() => {
|
|
72
|
-
|
|
112
|
+
const value = props.record[props.column.name] || '';
|
|
113
|
+
currentValue.value = value;
|
|
114
|
+
if (value.trim()) {
|
|
115
|
+
isUntouched.value = false;
|
|
116
|
+
}
|
|
73
117
|
if (suggestionInputRef.value) {
|
|
74
118
|
const editor = suggestionInputRef.value.$el.querySelector('.ql-editor');
|
|
75
119
|
if (editor) {
|
|
@@ -84,7 +128,11 @@ watch(() => currentValue.value, (value) => {
|
|
|
84
128
|
});
|
|
85
129
|
|
|
86
130
|
watch(() => props.record, (value) => {
|
|
87
|
-
|
|
131
|
+
const val = value[props.column.name] || '';
|
|
132
|
+
currentValue.value = val;
|
|
133
|
+
if (val.trim()) {
|
|
134
|
+
isUntouched.value = false;
|
|
135
|
+
}
|
|
88
136
|
});
|
|
89
137
|
|
|
90
138
|
async function complete(textBeforeCursor: string) {
|
|
@@ -105,8 +153,13 @@ async function complete(textBeforeCursor: string) {
|
|
|
105
153
|
|
|
106
154
|
const approveCompletion = async () => {
|
|
107
155
|
if (suggestionInputRef.value) {
|
|
108
|
-
|
|
156
|
+
if( buttonText.value === approveCompletionValue) {
|
|
157
|
+
await suggestionInputRef.value.approveCompletion('all');
|
|
158
|
+
} else {
|
|
159
|
+
await suggestionInputRef.value.approveCompletion('word');
|
|
160
|
+
}
|
|
109
161
|
}
|
|
162
|
+
buttonText.value === approveCompletionValue ? buttonText.value = approveNextWordValue : buttonText.value = approveCompletionValue;
|
|
110
163
|
}
|
|
111
164
|
|
|
112
165
|
function handleFocus() {
|
|
@@ -10,34 +10,34 @@
|
|
|
10
10
|
"license": "ISC",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@iconify-prerendered/vue-mdi": "^0.28.1737398331",
|
|
13
|
-
"vue-suggestion-input": "^1.0.
|
|
13
|
+
"vue-suggestion-input": "^1.0.12"
|
|
14
14
|
}
|
|
15
15
|
},
|
|
16
16
|
"node_modules/@babel/helper-string-parser": {
|
|
17
|
-
"version": "7.
|
|
18
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.
|
|
19
|
-
"integrity": "sha512-
|
|
17
|
+
"version": "7.27.1",
|
|
18
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
|
|
19
|
+
"integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"engines": {
|
|
22
22
|
"node": ">=6.9.0"
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
25
|
"node_modules/@babel/helper-validator-identifier": {
|
|
26
|
-
"version": "7.
|
|
27
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.
|
|
28
|
-
"integrity": "sha512-
|
|
26
|
+
"version": "7.27.1",
|
|
27
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz",
|
|
28
|
+
"integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==",
|
|
29
29
|
"license": "MIT",
|
|
30
30
|
"engines": {
|
|
31
31
|
"node": ">=6.9.0"
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"node_modules/@babel/parser": {
|
|
35
|
-
"version": "7.
|
|
36
|
-
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.
|
|
37
|
-
"integrity": "sha512-
|
|
35
|
+
"version": "7.28.0",
|
|
36
|
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.0.tgz",
|
|
37
|
+
"integrity": "sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==",
|
|
38
38
|
"license": "MIT",
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@babel/types": "^7.
|
|
40
|
+
"@babel/types": "^7.28.0"
|
|
41
41
|
},
|
|
42
42
|
"bin": {
|
|
43
43
|
"parser": "bin/babel-parser.js"
|
|
@@ -47,13 +47,13 @@
|
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
49
|
"node_modules/@babel/types": {
|
|
50
|
-
"version": "7.
|
|
51
|
-
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.
|
|
52
|
-
"integrity": "sha512-
|
|
50
|
+
"version": "7.28.2",
|
|
51
|
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.2.tgz",
|
|
52
|
+
"integrity": "sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==",
|
|
53
53
|
"license": "MIT",
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@babel/helper-string-parser": "^7.
|
|
56
|
-
"@babel/helper-validator-identifier": "^7.
|
|
55
|
+
"@babel/helper-string-parser": "^7.27.1",
|
|
56
|
+
"@babel/helper-validator-identifier": "^7.27.1"
|
|
57
57
|
},
|
|
58
58
|
"engines": {
|
|
59
59
|
"node": ">=6.9.0"
|
|
@@ -72,109 +72,109 @@
|
|
|
72
72
|
}
|
|
73
73
|
},
|
|
74
74
|
"node_modules/@jridgewell/sourcemap-codec": {
|
|
75
|
-
"version": "1.5.
|
|
76
|
-
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.
|
|
77
|
-
"integrity": "sha512-
|
|
75
|
+
"version": "1.5.4",
|
|
76
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz",
|
|
77
|
+
"integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==",
|
|
78
78
|
"license": "MIT"
|
|
79
79
|
},
|
|
80
80
|
"node_modules/@vue/compiler-core": {
|
|
81
|
-
"version": "3.5.
|
|
82
|
-
"resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.
|
|
83
|
-
"integrity": "sha512-
|
|
81
|
+
"version": "3.5.18",
|
|
82
|
+
"resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.18.tgz",
|
|
83
|
+
"integrity": "sha512-3slwjQrrV1TO8MoXgy3aynDQ7lslj5UqDxuHnrzHtpON5CBinhWjJETciPngpin/T3OuW3tXUf86tEurusnztw==",
|
|
84
84
|
"license": "MIT",
|
|
85
85
|
"dependencies": {
|
|
86
|
-
"@babel/parser": "^7.
|
|
87
|
-
"@vue/shared": "3.5.
|
|
86
|
+
"@babel/parser": "^7.28.0",
|
|
87
|
+
"@vue/shared": "3.5.18",
|
|
88
88
|
"entities": "^4.5.0",
|
|
89
89
|
"estree-walker": "^2.0.2",
|
|
90
|
-
"source-map-js": "^1.2.
|
|
90
|
+
"source-map-js": "^1.2.1"
|
|
91
91
|
}
|
|
92
92
|
},
|
|
93
93
|
"node_modules/@vue/compiler-dom": {
|
|
94
|
-
"version": "3.5.
|
|
95
|
-
"resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.
|
|
96
|
-
"integrity": "sha512-
|
|
94
|
+
"version": "3.5.18",
|
|
95
|
+
"resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.18.tgz",
|
|
96
|
+
"integrity": "sha512-RMbU6NTU70++B1JyVJbNbeFkK+A+Q7y9XKE2EM4NLGm2WFR8x9MbAtWxPPLdm0wUkuZv9trpwfSlL6tjdIa1+A==",
|
|
97
97
|
"license": "MIT",
|
|
98
98
|
"dependencies": {
|
|
99
|
-
"@vue/compiler-core": "3.5.
|
|
100
|
-
"@vue/shared": "3.5.
|
|
99
|
+
"@vue/compiler-core": "3.5.18",
|
|
100
|
+
"@vue/shared": "3.5.18"
|
|
101
101
|
}
|
|
102
102
|
},
|
|
103
103
|
"node_modules/@vue/compiler-sfc": {
|
|
104
|
-
"version": "3.5.
|
|
105
|
-
"resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.
|
|
106
|
-
"integrity": "sha512-
|
|
104
|
+
"version": "3.5.18",
|
|
105
|
+
"resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.18.tgz",
|
|
106
|
+
"integrity": "sha512-5aBjvGqsWs+MoxswZPoTB9nSDb3dhd1x30xrrltKujlCxo48j8HGDNj3QPhF4VIS0VQDUrA1xUfp2hEa+FNyXA==",
|
|
107
107
|
"license": "MIT",
|
|
108
108
|
"dependencies": {
|
|
109
|
-
"@babel/parser": "^7.
|
|
110
|
-
"@vue/compiler-core": "3.5.
|
|
111
|
-
"@vue/compiler-dom": "3.5.
|
|
112
|
-
"@vue/compiler-ssr": "3.5.
|
|
113
|
-
"@vue/shared": "3.5.
|
|
109
|
+
"@babel/parser": "^7.28.0",
|
|
110
|
+
"@vue/compiler-core": "3.5.18",
|
|
111
|
+
"@vue/compiler-dom": "3.5.18",
|
|
112
|
+
"@vue/compiler-ssr": "3.5.18",
|
|
113
|
+
"@vue/shared": "3.5.18",
|
|
114
114
|
"estree-walker": "^2.0.2",
|
|
115
|
-
"magic-string": "^0.30.
|
|
116
|
-
"postcss": "^8.
|
|
117
|
-
"source-map-js": "^1.2.
|
|
115
|
+
"magic-string": "^0.30.17",
|
|
116
|
+
"postcss": "^8.5.6",
|
|
117
|
+
"source-map-js": "^1.2.1"
|
|
118
118
|
}
|
|
119
119
|
},
|
|
120
120
|
"node_modules/@vue/compiler-ssr": {
|
|
121
|
-
"version": "3.5.
|
|
122
|
-
"resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.
|
|
123
|
-
"integrity": "sha512-
|
|
121
|
+
"version": "3.5.18",
|
|
122
|
+
"resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.18.tgz",
|
|
123
|
+
"integrity": "sha512-xM16Ak7rSWHkM3m22NlmcdIM+K4BMyFARAfV9hYFl+SFuRzrZ3uGMNW05kA5pmeMa0X9X963Kgou7ufdbpOP9g==",
|
|
124
124
|
"license": "MIT",
|
|
125
125
|
"dependencies": {
|
|
126
|
-
"@vue/compiler-dom": "3.5.
|
|
127
|
-
"@vue/shared": "3.5.
|
|
126
|
+
"@vue/compiler-dom": "3.5.18",
|
|
127
|
+
"@vue/shared": "3.5.18"
|
|
128
128
|
}
|
|
129
129
|
},
|
|
130
130
|
"node_modules/@vue/reactivity": {
|
|
131
|
-
"version": "3.5.
|
|
132
|
-
"resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.
|
|
133
|
-
"integrity": "sha512-
|
|
131
|
+
"version": "3.5.18",
|
|
132
|
+
"resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.18.tgz",
|
|
133
|
+
"integrity": "sha512-x0vPO5Imw+3sChLM5Y+B6G1zPjwdOri9e8V21NnTnlEvkxatHEH5B5KEAJcjuzQ7BsjGrKtfzuQ5eQwXh8HXBg==",
|
|
134
134
|
"license": "MIT",
|
|
135
135
|
"dependencies": {
|
|
136
|
-
"@vue/shared": "3.5.
|
|
136
|
+
"@vue/shared": "3.5.18"
|
|
137
137
|
}
|
|
138
138
|
},
|
|
139
139
|
"node_modules/@vue/runtime-core": {
|
|
140
|
-
"version": "3.5.
|
|
141
|
-
"resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.
|
|
142
|
-
"integrity": "sha512-
|
|
140
|
+
"version": "3.5.18",
|
|
141
|
+
"resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.18.tgz",
|
|
142
|
+
"integrity": "sha512-DUpHa1HpeOQEt6+3nheUfqVXRog2kivkXHUhoqJiKR33SO4x+a5uNOMkV487WPerQkL0vUuRvq/7JhRgLW3S+w==",
|
|
143
143
|
"license": "MIT",
|
|
144
144
|
"dependencies": {
|
|
145
|
-
"@vue/reactivity": "3.5.
|
|
146
|
-
"@vue/shared": "3.5.
|
|
145
|
+
"@vue/reactivity": "3.5.18",
|
|
146
|
+
"@vue/shared": "3.5.18"
|
|
147
147
|
}
|
|
148
148
|
},
|
|
149
149
|
"node_modules/@vue/runtime-dom": {
|
|
150
|
-
"version": "3.5.
|
|
151
|
-
"resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.
|
|
152
|
-
"integrity": "sha512-
|
|
150
|
+
"version": "3.5.18",
|
|
151
|
+
"resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.18.tgz",
|
|
152
|
+
"integrity": "sha512-YwDj71iV05j4RnzZnZtGaXwPoUWeRsqinblgVJwR8XTXYZ9D5PbahHQgsbmzUvCWNF6x7siQ89HgnX5eWkr3mw==",
|
|
153
153
|
"license": "MIT",
|
|
154
154
|
"dependencies": {
|
|
155
|
-
"@vue/reactivity": "3.5.
|
|
156
|
-
"@vue/runtime-core": "3.5.
|
|
157
|
-
"@vue/shared": "3.5.
|
|
155
|
+
"@vue/reactivity": "3.5.18",
|
|
156
|
+
"@vue/runtime-core": "3.5.18",
|
|
157
|
+
"@vue/shared": "3.5.18",
|
|
158
158
|
"csstype": "^3.1.3"
|
|
159
159
|
}
|
|
160
160
|
},
|
|
161
161
|
"node_modules/@vue/server-renderer": {
|
|
162
|
-
"version": "3.5.
|
|
163
|
-
"resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.
|
|
164
|
-
"integrity": "sha512-
|
|
162
|
+
"version": "3.5.18",
|
|
163
|
+
"resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.18.tgz",
|
|
164
|
+
"integrity": "sha512-PvIHLUoWgSbDG7zLHqSqaCoZvHi6NNmfVFOqO+OnwvqMz/tqQr3FuGWS8ufluNddk7ZLBJYMrjcw1c6XzR12mA==",
|
|
165
165
|
"license": "MIT",
|
|
166
166
|
"dependencies": {
|
|
167
|
-
"@vue/compiler-ssr": "3.5.
|
|
168
|
-
"@vue/shared": "3.5.
|
|
167
|
+
"@vue/compiler-ssr": "3.5.18",
|
|
168
|
+
"@vue/shared": "3.5.18"
|
|
169
169
|
},
|
|
170
170
|
"peerDependencies": {
|
|
171
|
-
"vue": "3.5.
|
|
171
|
+
"vue": "3.5.18"
|
|
172
172
|
}
|
|
173
173
|
},
|
|
174
174
|
"node_modules/@vue/shared": {
|
|
175
|
-
"version": "3.5.
|
|
176
|
-
"resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.
|
|
177
|
-
"integrity": "sha512
|
|
175
|
+
"version": "3.5.18",
|
|
176
|
+
"resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.18.tgz",
|
|
177
|
+
"integrity": "sha512-cZy8Dq+uuIXbxCZpuLd2GJdeSO/lIzIspC2WtkqIpje5QyFbvLaI5wZtdUjLHjGZrlVX6GilejatWwVYYRc8tA==",
|
|
178
178
|
"license": "MIT"
|
|
179
179
|
},
|
|
180
180
|
"node_modules/csstype": {
|
|
@@ -272,9 +272,9 @@
|
|
|
272
272
|
"license": "ISC"
|
|
273
273
|
},
|
|
274
274
|
"node_modules/postcss": {
|
|
275
|
-
"version": "8.5.
|
|
276
|
-
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.
|
|
277
|
-
"integrity": "sha512-
|
|
275
|
+
"version": "8.5.6",
|
|
276
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
|
|
277
|
+
"integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
|
|
278
278
|
"funding": [
|
|
279
279
|
{
|
|
280
280
|
"type": "opencollective",
|
|
@@ -291,7 +291,7 @@
|
|
|
291
291
|
],
|
|
292
292
|
"license": "MIT",
|
|
293
293
|
"dependencies": {
|
|
294
|
-
"nanoid": "^3.3.
|
|
294
|
+
"nanoid": "^3.3.11",
|
|
295
295
|
"picocolors": "^1.1.1",
|
|
296
296
|
"source-map-js": "^1.2.1"
|
|
297
297
|
},
|
|
@@ -338,16 +338,16 @@
|
|
|
338
338
|
}
|
|
339
339
|
},
|
|
340
340
|
"node_modules/vue": {
|
|
341
|
-
"version": "3.5.
|
|
342
|
-
"resolved": "https://registry.npmjs.org/vue/-/vue-3.5.
|
|
343
|
-
"integrity": "sha512-
|
|
341
|
+
"version": "3.5.18",
|
|
342
|
+
"resolved": "https://registry.npmjs.org/vue/-/vue-3.5.18.tgz",
|
|
343
|
+
"integrity": "sha512-7W4Y4ZbMiQ3SEo+m9lnoNpV9xG7QVMLa+/0RFwwiAVkeYoyGXqWE85jabU4pllJNUzqfLShJ5YLptewhCWUgNA==",
|
|
344
344
|
"license": "MIT",
|
|
345
345
|
"dependencies": {
|
|
346
|
-
"@vue/compiler-dom": "3.5.
|
|
347
|
-
"@vue/compiler-sfc": "3.5.
|
|
348
|
-
"@vue/runtime-dom": "3.5.
|
|
349
|
-
"@vue/server-renderer": "3.5.
|
|
350
|
-
"@vue/shared": "3.5.
|
|
346
|
+
"@vue/compiler-dom": "3.5.18",
|
|
347
|
+
"@vue/compiler-sfc": "3.5.18",
|
|
348
|
+
"@vue/runtime-dom": "3.5.18",
|
|
349
|
+
"@vue/server-renderer": "3.5.18",
|
|
350
|
+
"@vue/shared": "3.5.18"
|
|
351
351
|
},
|
|
352
352
|
"peerDependencies": {
|
|
353
353
|
"typescript": "*"
|
|
@@ -359,9 +359,9 @@
|
|
|
359
359
|
}
|
|
360
360
|
},
|
|
361
361
|
"node_modules/vue-suggestion-input": {
|
|
362
|
-
"version": "1.0.
|
|
363
|
-
"resolved": "https://registry.npmjs.org/vue-suggestion-input/-/vue-suggestion-input-1.0.
|
|
364
|
-
"integrity": "sha512-
|
|
362
|
+
"version": "1.0.12",
|
|
363
|
+
"resolved": "https://registry.npmjs.org/vue-suggestion-input/-/vue-suggestion-input-1.0.12.tgz",
|
|
364
|
+
"integrity": "sha512-Ik6uuvAonvHmgCRDbnSyqQ/iv91ne2uMv6rVowd8XzIDazzzAvdUQMFjqytl/NbhTAXdXZbKd5WsY/X+PtUvwQ==",
|
|
365
365
|
"dependencies": {
|
|
366
366
|
"quill": "^2.0.2",
|
|
367
367
|
"vue": "^3.4.31"
|
package/dist/custom/package.json
CHANGED