@adminforth/text-complete 2.0.6 → 2.0.7
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
CHANGED
|
@@ -10,5 +10,5 @@ custom/package.json
|
|
|
10
10
|
custom/pnpm-lock.yaml
|
|
11
11
|
custom/tsconfig.json
|
|
12
12
|
|
|
13
|
-
sent 31,
|
|
14
|
-
total size is 30,
|
|
13
|
+
sent 31,371 bytes received 115 bytes 62,972.00 bytes/sec
|
|
14
|
+
total size is 30,945 speedup is 0.98
|
|
@@ -70,13 +70,18 @@
|
|
|
70
70
|
</template>
|
|
71
71
|
|
|
72
72
|
<script setup lang="ts">
|
|
73
|
-
import { ref, onMounted, watch, Ref, computed } from 'vue';
|
|
73
|
+
import { ref, onMounted, watch, Ref, computed, defineAsyncComponent } from 'vue';
|
|
74
74
|
import { callAdminForthApi } from '@/utils';
|
|
75
75
|
import { AdminForthColumnCommon } from '@/types/Common';
|
|
76
76
|
import { Spinner, Tooltip } from '@/afcl';
|
|
77
77
|
import { IconMagic, IconCheck, IconArrowRightThin } from '@iconify-prerendered/vue-mdi';
|
|
78
|
-
|
|
79
|
-
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
const SuggestionInput = defineAsyncComponent(async () => {
|
|
81
|
+
const { default: SuggestionInput } = await import('vue-suggestion-input');
|
|
82
|
+
await import('vue-suggestion-input/dist/style.css');
|
|
83
|
+
return SuggestionInput;
|
|
84
|
+
});
|
|
80
85
|
|
|
81
86
|
const props = defineProps<{
|
|
82
87
|
column: AdminForthColumnCommon,
|
|
@@ -70,13 +70,18 @@
|
|
|
70
70
|
</template>
|
|
71
71
|
|
|
72
72
|
<script setup lang="ts">
|
|
73
|
-
import { ref, onMounted, watch, Ref, computed } from 'vue';
|
|
73
|
+
import { ref, onMounted, watch, Ref, computed, defineAsyncComponent } from 'vue';
|
|
74
74
|
import { callAdminForthApi } from '@/utils';
|
|
75
75
|
import { AdminForthColumnCommon } from '@/types/Common';
|
|
76
76
|
import { Spinner, Tooltip } from '@/afcl';
|
|
77
77
|
import { IconMagic, IconCheck, IconArrowRightThin } from '@iconify-prerendered/vue-mdi';
|
|
78
|
-
|
|
79
|
-
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
const SuggestionInput = defineAsyncComponent(async () => {
|
|
81
|
+
const { default: SuggestionInput } = await import('vue-suggestion-input');
|
|
82
|
+
await import('vue-suggestion-input/dist/style.css');
|
|
83
|
+
return SuggestionInput;
|
|
84
|
+
});
|
|
80
85
|
|
|
81
86
|
const props = defineProps<{
|
|
82
87
|
column: AdminForthColumnCommon,
|