@adminforth/bulk-ai-flow 1.1.4 → 1.1.5
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/visionAction.vue +3 -3
- package/dist/custom/visionAction.vue +3 -3
- package/package.json +1 -1
package/build.log
CHANGED
|
@@ -10,5 +10,5 @@ custom/tsconfig.json
|
|
|
10
10
|
custom/visionAction.vue
|
|
11
11
|
custom/visionTable.vue
|
|
12
12
|
|
|
13
|
-
sent 24,
|
|
14
|
-
total size is 23,
|
|
13
|
+
sent 24,245 bytes received 115 bytes 48,720.00 bytes/sec
|
|
14
|
+
total size is 23,826 speedup is 0.98
|
package/custom/visionAction.vue
CHANGED
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
@click="closeDialog"
|
|
9
9
|
>
|
|
10
10
|
<div
|
|
11
|
-
class="relative max-w-[95vw] max-h-[90vh] bg-white dark:bg-gray-900 rounded-md shadow-2xl overflow-hidden"
|
|
11
|
+
class="bulk-vision-dialog relative max-w-[95vw] max-h-[90vh] bg-white dark:bg-gray-900 rounded-md shadow-2xl overflow-hidden"
|
|
12
12
|
@click.stop
|
|
13
13
|
>
|
|
14
|
-
<div class="flex flex-col items-end justify-evenly gap-4 w-full h-full p-6 overflow-y-auto">
|
|
14
|
+
<div class="bulk-vision-table flex flex-col items-end justify-evenly gap-4 w-full h-full p-6 overflow-y-auto">
|
|
15
15
|
<VisionTable
|
|
16
16
|
v-if="records && props.checkboxes.length"
|
|
17
17
|
:checkbox="props.checkboxes"
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
:primaryKey="primaryKey"
|
|
29
29
|
/>
|
|
30
30
|
<Button
|
|
31
|
-
class="w-64"
|
|
31
|
+
class="bulk-vision-button w-64"
|
|
32
32
|
@click="saveData"
|
|
33
33
|
>
|
|
34
34
|
{{ props.checkboxes.length > 1 ? 'Save fields' : 'Save field' }}
|
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
@click="closeDialog"
|
|
9
9
|
>
|
|
10
10
|
<div
|
|
11
|
-
class="relative max-w-[95vw] max-h-[90vh] bg-white dark:bg-gray-900 rounded-md shadow-2xl overflow-hidden"
|
|
11
|
+
class="bulk-vision-dialog relative max-w-[95vw] max-h-[90vh] bg-white dark:bg-gray-900 rounded-md shadow-2xl overflow-hidden"
|
|
12
12
|
@click.stop
|
|
13
13
|
>
|
|
14
|
-
<div class="flex flex-col items-end justify-evenly gap-4 w-full h-full p-6 overflow-y-auto">
|
|
14
|
+
<div class="bulk-vision-table flex flex-col items-end justify-evenly gap-4 w-full h-full p-6 overflow-y-auto">
|
|
15
15
|
<VisionTable
|
|
16
16
|
v-if="records && props.checkboxes.length"
|
|
17
17
|
:checkbox="props.checkboxes"
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
:primaryKey="primaryKey"
|
|
29
29
|
/>
|
|
30
30
|
<Button
|
|
31
|
-
class="w-64"
|
|
31
|
+
class="bulk-vision-button w-64"
|
|
32
32
|
@click="saveData"
|
|
33
33
|
>
|
|
34
34
|
{{ props.checkboxes.length > 1 ? 'Save fields' : 'Save field' }}
|