@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 CHANGED
@@ -10,5 +10,5 @@ custom/tsconfig.json
10
10
  custom/visionAction.vue
11
11
  custom/visionTable.vue
12
12
 
13
- sent 24,189 bytes received 115 bytes 48,608.00 bytes/sec
14
- total size is 23,770 speedup is 0.98
13
+ sent 24,245 bytes received 115 bytes 48,720.00 bytes/sec
14
+ total size is 23,826 speedup is 0.98
@@ -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' }}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adminforth/bulk-ai-flow",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },