monkey-front-core 0.0.463 → 0.0.465
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/esm2020/lib/core/interfaces/monkeyecx-store.mjs +1 -1
- package/esm2020/lib/core/services/store/monkeyecx-store.actions.mjs +3 -1
- package/fesm2015/monkey-front-core.mjs +2 -0
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +2 -0
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/core/interfaces/monkeyecx-store.d.ts +2 -1
- package/lib/core/services/store/monkeyecx-store.actions.d.ts +8 -3
- package/monkey-front-core-0.0.465.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.463.tgz +0 -0
|
@@ -5538,6 +5538,7 @@ class MonkeyEcxCommonsActions {
|
|
|
5538
5538
|
const load = createAction(`[${actionName}] Load`, props());
|
|
5539
5539
|
const loadPagination = createAction(`[${actionName} Pagination] Load`, props());
|
|
5540
5540
|
const updateAll = createAction(`[${actionName}] Update All`, props());
|
|
5541
|
+
const updateOne = createAction(`[${actionName}] Update One`, props());
|
|
5541
5542
|
const removeOne = createAction(`[${actionName}] Remove One`, props());
|
|
5542
5543
|
const updateControl = createAction(`[${actionName}] Update Control`, props());
|
|
5543
5544
|
const updatePage = createAction(`[${actionName}] Update Page`, props());
|
|
@@ -5548,6 +5549,7 @@ class MonkeyEcxCommonsActions {
|
|
|
5548
5549
|
loadPagination,
|
|
5549
5550
|
removeOne,
|
|
5550
5551
|
updateAll,
|
|
5552
|
+
updateOne,
|
|
5551
5553
|
updateControl,
|
|
5552
5554
|
updateLinks,
|
|
5553
5555
|
updatePage
|