@adminforth/bulk-ai-flow 1.21.5 → 1.21.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 +2 -2
- package/custom/ImageGenerationCarousel.vue +1 -1
- package/custom/VisionAction.vue +4 -3
- package/custom/VisionTable.vue +2 -0
- package/dist/custom/ImageGenerationCarousel.vue +1 -1
- package/dist/custom/VisionAction.vue +4 -3
- package/dist/custom/VisionTable.vue +2 -0
- package/package.json +1 -1
package/build.log
CHANGED
|
@@ -13,5 +13,5 @@ custom/package-lock.json
|
|
|
13
13
|
custom/package.json
|
|
14
14
|
custom/tsconfig.json
|
|
15
15
|
|
|
16
|
-
sent 96,
|
|
17
|
-
total size is 96,
|
|
16
|
+
sent 96,822 bytes received 172 bytes 193,988.00 bytes/sec
|
|
17
|
+
total size is 96,177 speedup is 0.99
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
<template>
|
|
3
3
|
<!-- Main modal -->
|
|
4
|
-
<div tabindex="-1" class="[scrollbar-gutter:stable] fixed inset-0 z-
|
|
4
|
+
<div tabindex="-1" class="[scrollbar-gutter:stable] fixed inset-0 z-40 flex justify-center items-center bg-gray-800/50 dark:bg-gray-900/50 overflow-y-auto">
|
|
5
5
|
<div class="relative p-4 w-full max-w-[1600px]">
|
|
6
6
|
<!-- Modal content -->
|
|
7
7
|
<div class="relative bg-white rounded-lg shadow-xl dark:bg-gray-700">
|
package/custom/VisionAction.vue
CHANGED
|
@@ -66,9 +66,10 @@
|
|
|
66
66
|
]"
|
|
67
67
|
:click-to-close-outside="false"
|
|
68
68
|
>
|
|
69
|
-
<div class="bulk-vision-table flex flex-col items-center
|
|
70
|
-
<
|
|
69
|
+
<div class="bulk-vision-table flex flex-col items-center gap-3 md:gap-4 overflow-y-auto">
|
|
70
|
+
<template v-if="records && props.checkboxes.length && popupMode === 'generation'" >
|
|
71
71
|
<VisionTable
|
|
72
|
+
class="md:max-h-[75vh] max-w-[1560px] w-full h-full"
|
|
72
73
|
:checkbox="props.checkboxes"
|
|
73
74
|
:records="records"
|
|
74
75
|
:meta="props.meta"
|
|
@@ -111,7 +112,7 @@
|
|
|
111
112
|
<div class="text-red-600 flex items-center w-full">
|
|
112
113
|
<p v-if="isError === true">{{ errorMessage }}</p>
|
|
113
114
|
</div>
|
|
114
|
-
</
|
|
115
|
+
</template>
|
|
115
116
|
<div
|
|
116
117
|
v-else-if="popupMode === 'settings'"
|
|
117
118
|
v-for="(promptsCategory, key) in generationPrompts"
|
package/custom/VisionTable.vue
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
<template>
|
|
3
3
|
<!-- Main modal -->
|
|
4
|
-
<div tabindex="-1" class="[scrollbar-gutter:stable] fixed inset-0 z-
|
|
4
|
+
<div tabindex="-1" class="[scrollbar-gutter:stable] fixed inset-0 z-40 flex justify-center items-center bg-gray-800/50 dark:bg-gray-900/50 overflow-y-auto">
|
|
5
5
|
<div class="relative p-4 w-full max-w-[1600px]">
|
|
6
6
|
<!-- Modal content -->
|
|
7
7
|
<div class="relative bg-white rounded-lg shadow-xl dark:bg-gray-700">
|
|
@@ -66,9 +66,10 @@
|
|
|
66
66
|
]"
|
|
67
67
|
:click-to-close-outside="false"
|
|
68
68
|
>
|
|
69
|
-
<div class="bulk-vision-table flex flex-col items-center
|
|
70
|
-
<
|
|
69
|
+
<div class="bulk-vision-table flex flex-col items-center gap-3 md:gap-4 overflow-y-auto">
|
|
70
|
+
<template v-if="records && props.checkboxes.length && popupMode === 'generation'" >
|
|
71
71
|
<VisionTable
|
|
72
|
+
class="md:max-h-[75vh] max-w-[1560px] w-full h-full"
|
|
72
73
|
:checkbox="props.checkboxes"
|
|
73
74
|
:records="records"
|
|
74
75
|
:meta="props.meta"
|
|
@@ -111,7 +112,7 @@
|
|
|
111
112
|
<div class="text-red-600 flex items-center w-full">
|
|
112
113
|
<p v-if="isError === true">{{ errorMessage }}</p>
|
|
113
114
|
</div>
|
|
114
|
-
</
|
|
115
|
+
</template>
|
|
115
116
|
<div
|
|
116
117
|
v-else-if="popupMode === 'settings'"
|
|
117
118
|
v-for="(promptsCategory, key) in generationPrompts"
|