@adminforth/clone-row 1.2.16 → 1.2.17

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
@@ -8,5 +8,5 @@ custom/CloneRowButton.vue
8
8
  custom/CloneRowThreeDots.vue
9
9
  custom/tsconfig.json
10
10
 
11
- sent 3,761 bytes received 77 bytes 7,676.00 bytes/sec
12
- total size is 3,467 speedup is 0.90
11
+ sent 3,753 bytes received 77 bytes 7,660.00 bytes/sec
12
+ total size is 3,467 speedup is 0.91
package/dist/types.d.ts CHANGED
@@ -1,4 +1,9 @@
1
1
  import { type PluginsCommonOptions } from "adminforth";
2
2
  export interface PluginOptions extends PluginsCommonOptions {
3
+ /**
4
+ * When `true`, the Clone button is displayed as a standalone quick-action icon
5
+ * directly in the row actions area (next to buttons like Approve).
6
+ * When `false` (default), the Clone option appears inside the three-dots dropdown menu.
7
+ */
3
8
  makeCloneButtonAsQuickAction?: boolean;
4
9
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adminforth/clone-row",
3
- "version": "1.2.16",
3
+ "version": "1.2.17",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",
package/types.ts CHANGED
@@ -1,5 +1,10 @@
1
1
  import {type PluginsCommonOptions } from "adminforth";
2
2
 
3
3
  export interface PluginOptions extends PluginsCommonOptions {
4
+ /**
5
+ * When `true`, the Clone button is displayed as a standalone quick-action icon
6
+ * directly in the row actions area (next to buttons like Approve).
7
+ * When `false` (default), the Clone option appears inside the three-dots dropdown menu.
8
+ */
4
9
  makeCloneButtonAsQuickAction?: boolean;
5
10
  }