zova-module-rest-actions 5.1.7 → 5.1.9

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "zova-module-rest-actions",
3
- "version": "5.1.7",
4
- "gitHead": "fa2b2ad94fb521534a1312c30256c1e155926bd3",
3
+ "version": "5.1.9",
4
+ "gitHead": "4caf955ae46d889cab5dd7efc981f562b3b54aa2",
5
5
  "description": "",
6
6
  "keywords": [
7
7
  "Zova Module"
@@ -18,10 +18,7 @@
18
18
  "type": "module",
19
19
  "exports": {
20
20
  ".": {
21
- "types": [
22
- "./src/index.ts",
23
- "./dist/index.d.ts"
24
- ],
21
+ "types": "./dist/index.d.ts",
25
22
  "default": "./dist/index.js"
26
23
  },
27
24
  "./*": "./*"
@@ -1,7 +1,7 @@
1
1
  import type { TypeActionOptionsRest } from 'zova-module-a-action';
2
- import type { IActionOptionsAlert } from '../../src/bean/action.alert.jsx';
2
+ import type { IActionOptionsAlert } from 'zova-module-rest-actions';
3
3
 
4
- export function AARestActionsAlert(
4
+ export function BBARestActionsAlert(
5
5
  _props: TypeActionOptionsRest<IActionOptionsAlert>,
6
6
  ) {
7
7
  return 'rest-actions:alert';
@@ -1,7 +1,7 @@
1
1
  import type { TypeActionOptionsRest } from 'zova-module-a-action';
2
- import type { IActionOptionsConfirm } from '../../src/bean/action.confirm.jsx';
2
+ import type { IActionOptionsConfirm } from 'zova-module-rest-actions';
3
3
 
4
- export function AARestActionsConfirm(
4
+ export function BBARestActionsConfirm(
5
5
  _props: TypeActionOptionsRest<IActionOptionsConfirm>,
6
6
  ) {
7
7
  return 'rest-actions:confirm';
@@ -1,7 +1,7 @@
1
1
  import type { TypeActionOptionsRest } from 'zova-module-a-action';
2
- import type { IActionOptionsCopy } from '../../src/bean/action.copy.jsx';
2
+ import type { IActionOptionsCopy } from 'zova-module-rest-actions';
3
3
 
4
- export function AARestActionsCopy(
4
+ export function BBARestActionsCopy(
5
5
  _props: TypeActionOptionsRest<IActionOptionsCopy>,
6
6
  ) {
7
7
  return 'rest-actions:copy';
@@ -1,7 +1,7 @@
1
1
  import type { TypeActionOptionsRest } from 'zova-module-a-action';
2
- import type { IActionOptionsCreate } from '../../src/bean/action.create.jsx';
2
+ import type { IActionOptionsCreate } from 'zova-module-rest-actions';
3
3
 
4
- export function AARestActionsCreate(
4
+ export function BBARestActionsCreate(
5
5
  _props: TypeActionOptionsRest<IActionOptionsCreate>,
6
6
  ) {
7
7
  return 'rest-actions:create';
@@ -1,7 +1,7 @@
1
1
  import type { TypeActionOptionsRest } from 'zova-module-a-action';
2
- import type { IActionOptionsDelete } from '../../src/bean/action.delete.jsx';
2
+ import type { IActionOptionsDelete } from 'zova-module-rest-actions';
3
3
 
4
- export function AARestActionsDelete(
4
+ export function BBARestActionsDelete(
5
5
  _props: TypeActionOptionsRest<IActionOptionsDelete>,
6
6
  ) {
7
7
  return 'rest-actions:delete';
@@ -1,7 +1,7 @@
1
1
  import type { TypeActionOptionsRest } from 'zova-module-a-action';
2
- import type { IActionOptionsEdit } from '../../src/bean/action.edit.jsx';
2
+ import type { IActionOptionsEdit } from 'zova-module-rest-actions';
3
3
 
4
- export function AARestActionsEdit(
4
+ export function BBARestActionsEdit(
5
5
  _props: TypeActionOptionsRest<IActionOptionsEdit>,
6
6
  ) {
7
7
  return 'rest-actions:edit';
@@ -1,7 +1,7 @@
1
1
  import type { TypeActionOptionsRest } from 'zova-module-a-action';
2
- import type { IActionOptionsSetValue } from '../../src/bean/action.setValue.jsx';
2
+ import type { IActionOptionsSetValue } from 'zova-module-rest-actions';
3
3
 
4
- export function AARestActionsSetValue(
4
+ export function BBARestActionsSetValue(
5
5
  _props: TypeActionOptionsRest<IActionOptionsSetValue>,
6
6
  ) {
7
7
  return 'rest-actions:setValue';
@@ -1,7 +1,7 @@
1
1
  import type { TypeActionOptionsRest } from 'zova-module-a-action';
2
- import type { IActionOptionsView } from '../../src/bean/action.view.jsx';
2
+ import type { IActionOptionsView } from 'zova-module-rest-actions';
3
3
 
4
- export function AARestActionsView(
4
+ export function BBARestActionsView(
5
5
  _props: TypeActionOptionsRest<IActionOptionsView>,
6
6
  ) {
7
7
  return 'rest-actions:view';