zova-module-rest-actions 5.1.8 → 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 +2 -2
- package/rest/action/alert.ts +2 -2
- package/rest/action/confirm.ts +2 -2
- package/rest/action/copy.ts +2 -2
- package/rest/action/create.ts +2 -2
- package/rest/action/delete.ts +2 -2
- package/rest/action/edit.ts +2 -2
- package/rest/action/setValue.ts +2 -2
- package/rest/action/view.ts +2 -2
package/package.json
CHANGED
package/rest/action/alert.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { TypeActionOptionsRest } from 'zova-module-a-action';
|
|
2
|
-
import type { IActionOptionsAlert } from '
|
|
2
|
+
import type { IActionOptionsAlert } from 'zova-module-rest-actions';
|
|
3
3
|
|
|
4
|
-
export function
|
|
4
|
+
export function BBARestActionsAlert(
|
|
5
5
|
_props: TypeActionOptionsRest<IActionOptionsAlert>,
|
|
6
6
|
) {
|
|
7
7
|
return 'rest-actions:alert';
|
package/rest/action/confirm.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { TypeActionOptionsRest } from 'zova-module-a-action';
|
|
2
|
-
import type { IActionOptionsConfirm } from '
|
|
2
|
+
import type { IActionOptionsConfirm } from 'zova-module-rest-actions';
|
|
3
3
|
|
|
4
|
-
export function
|
|
4
|
+
export function BBARestActionsConfirm(
|
|
5
5
|
_props: TypeActionOptionsRest<IActionOptionsConfirm>,
|
|
6
6
|
) {
|
|
7
7
|
return 'rest-actions:confirm';
|
package/rest/action/copy.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { TypeActionOptionsRest } from 'zova-module-a-action';
|
|
2
|
-
import type { IActionOptionsCopy } from '
|
|
2
|
+
import type { IActionOptionsCopy } from 'zova-module-rest-actions';
|
|
3
3
|
|
|
4
|
-
export function
|
|
4
|
+
export function BBARestActionsCopy(
|
|
5
5
|
_props: TypeActionOptionsRest<IActionOptionsCopy>,
|
|
6
6
|
) {
|
|
7
7
|
return 'rest-actions:copy';
|
package/rest/action/create.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { TypeActionOptionsRest } from 'zova-module-a-action';
|
|
2
|
-
import type { IActionOptionsCreate } from '
|
|
2
|
+
import type { IActionOptionsCreate } from 'zova-module-rest-actions';
|
|
3
3
|
|
|
4
|
-
export function
|
|
4
|
+
export function BBARestActionsCreate(
|
|
5
5
|
_props: TypeActionOptionsRest<IActionOptionsCreate>,
|
|
6
6
|
) {
|
|
7
7
|
return 'rest-actions:create';
|
package/rest/action/delete.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { TypeActionOptionsRest } from 'zova-module-a-action';
|
|
2
|
-
import type { IActionOptionsDelete } from '
|
|
2
|
+
import type { IActionOptionsDelete } from 'zova-module-rest-actions';
|
|
3
3
|
|
|
4
|
-
export function
|
|
4
|
+
export function BBARestActionsDelete(
|
|
5
5
|
_props: TypeActionOptionsRest<IActionOptionsDelete>,
|
|
6
6
|
) {
|
|
7
7
|
return 'rest-actions:delete';
|
package/rest/action/edit.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { TypeActionOptionsRest } from 'zova-module-a-action';
|
|
2
|
-
import type { IActionOptionsEdit } from '
|
|
2
|
+
import type { IActionOptionsEdit } from 'zova-module-rest-actions';
|
|
3
3
|
|
|
4
|
-
export function
|
|
4
|
+
export function BBARestActionsEdit(
|
|
5
5
|
_props: TypeActionOptionsRest<IActionOptionsEdit>,
|
|
6
6
|
) {
|
|
7
7
|
return 'rest-actions:edit';
|
package/rest/action/setValue.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { TypeActionOptionsRest } from 'zova-module-a-action';
|
|
2
|
-
import type { IActionOptionsSetValue } from '
|
|
2
|
+
import type { IActionOptionsSetValue } from 'zova-module-rest-actions';
|
|
3
3
|
|
|
4
|
-
export function
|
|
4
|
+
export function BBARestActionsSetValue(
|
|
5
5
|
_props: TypeActionOptionsRest<IActionOptionsSetValue>,
|
|
6
6
|
) {
|
|
7
7
|
return 'rest-actions:setValue';
|
package/rest/action/view.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { TypeActionOptionsRest } from 'zova-module-a-action';
|
|
2
|
-
import type { IActionOptionsView } from '
|
|
2
|
+
import type { IActionOptionsView } from 'zova-module-rest-actions';
|
|
3
3
|
|
|
4
|
-
export function
|
|
4
|
+
export function BBARestActionsView(
|
|
5
5
|
_props: TypeActionOptionsRest<IActionOptionsView>,
|
|
6
6
|
) {
|
|
7
7
|
return 'rest-actions:view';
|