@adminforth/bulk-ai-flow 1.13.1 → 1.14.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 CHANGED
@@ -13,5 +13,5 @@ custom/package-lock.json
13
13
  custom/package.json
14
14
  custom/tsconfig.json
15
15
 
16
- sent 74,067 bytes received 172 bytes 148,478.00 bytes/sec
17
- total size is 73,426 speedup is 0.99
16
+ sent 74,113 bytes received 172 bytes 148,570.00 bytes/sec
17
+ total size is 73,472 speedup is 0.99
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div class="flex items-end justify-start gap-2 cursor-pointer" @click="openDialog">
2
+ <div class="flex items-end justify-start gap-2 cursor-pointer">
3
3
  <div class="flex items-center justify-center text-white bg-gradient-to-r h-[18px] 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 font-medium rounded-md text-sm px-1 text-center">
4
4
  AI
5
5
  </div>
@@ -78,6 +78,10 @@ const props = defineProps<{
78
78
  }
79
79
  }>();
80
80
 
81
+ defineExpose({
82
+ click
83
+ });
84
+
81
85
  const confirmDialog = ref(null);
82
86
  const records = ref<any[]>([]);
83
87
  const images = ref<any[]>([]);
@@ -745,4 +749,8 @@ async function findPreviewURLForImages() {
745
749
  }
746
750
  }
747
751
 
752
+ function click() {
753
+ openDialog();
754
+ }
755
+
748
756
  </script>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div class="flex items-end justify-start gap-2 cursor-pointer" @click="openDialog">
2
+ <div class="flex items-end justify-start gap-2 cursor-pointer">
3
3
  <div class="flex items-center justify-center text-white bg-gradient-to-r h-[18px] 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 font-medium rounded-md text-sm px-1 text-center">
4
4
  AI
5
5
  </div>
@@ -78,6 +78,10 @@ const props = defineProps<{
78
78
  }
79
79
  }>();
80
80
 
81
+ defineExpose({
82
+ click
83
+ });
84
+
81
85
  const confirmDialog = ref(null);
82
86
  const records = ref<any[]>([]);
83
87
  const images = ref<any[]>([]);
@@ -745,4 +749,8 @@ async function findPreviewURLForImages() {
745
749
  }
746
750
  }
747
751
 
752
+ function click() {
753
+ openDialog();
754
+ }
755
+
748
756
  </script>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adminforth/bulk-ai-flow",
3
- "version": "1.13.1",
3
+ "version": "1.14.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -10,17 +10,48 @@
10
10
  "scripts": {
11
11
  "build": "tsc && rsync -av --exclude 'node_modules' custom dist/"
12
12
  },
13
- "keywords": [],
13
+ "keywords": [
14
+ "adminforth",
15
+ "bulk",
16
+ "ai",
17
+ "flow"
18
+ ],
14
19
  "author": "",
15
20
  "license": "ISC",
16
21
  "description": "",
17
22
  "devDependencies": {
18
23
  "@types/node": "latest",
24
+ "semantic-release": "^24.2.1",
25
+ "semantic-release-slack-bot": "^4.0.2",
19
26
  "typescript": "^5.7.3"
20
27
  },
21
28
  "dependencies": {
22
29
  "@types/handlebars": "^4.0.40",
23
- "adminforth": "^2.4.0-next.112",
30
+ "adminforth": "^2.4.0-next.127",
24
31
  "handlebars": "^4.7.8"
32
+ },
33
+ "release": {
34
+ "plugins": [
35
+ "@semantic-release/commit-analyzer",
36
+ "@semantic-release/release-notes-generator",
37
+ "@semantic-release/npm",
38
+ "@semantic-release/github",
39
+ [
40
+ "semantic-release-slack-bot",
41
+ {
42
+ "notifyOnSuccess": true,
43
+ "notifyOnFail": true,
44
+ "slackIcon": ":package:",
45
+ "markdownReleaseNotes": true
46
+ }
47
+ ]
48
+ ],
49
+ "branches": [
50
+ "main",
51
+ {
52
+ "name": "next",
53
+ "prerelease": true
54
+ }
55
+ ]
25
56
  }
26
57
  }