@eui/core 21.0.0-next.43 → 21.0.0-next.45
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/CHANGELOG.md +30 -0
- package/docs/changelog.html +37 -0
- package/docs/injectables/StoreService.html +0 -72
- package/docs/injectables/StoreServiceMock.html +0 -37
- package/docs/js/search/search_index.js +2 -2
- package/docs/properties.html +1 -1
- package/fesm2022/eui-core.mjs +0 -10
- package/fesm2022/eui-core.mjs.map +1 -1
- package/package.json +2 -2
- package/types/eui-core.d.ts +0 -8
- package/types/eui-core.d.ts.map +1 -1
package/docs/properties.html
CHANGED
package/fesm2022/eui-core.mjs
CHANGED
|
@@ -833,15 +833,6 @@ class StoreService {
|
|
|
833
833
|
handleAutoSave() {
|
|
834
834
|
this.isHandlingAutoSave = true;
|
|
835
835
|
}
|
|
836
|
-
/**
|
|
837
|
-
* Proxy to NGRX store.dispatch()
|
|
838
|
-
* that allows to intercept if the store is present
|
|
839
|
-
*
|
|
840
|
-
* @deprecated it will be removed in the next version support of NGRX will cease
|
|
841
|
-
*/
|
|
842
|
-
dispatch(action) {
|
|
843
|
-
console.warn('eUI does not PROXY to NGRX store.dispatch() anymore');
|
|
844
|
-
}
|
|
845
836
|
updateState(state, reducer) {
|
|
846
837
|
const currentState = this.state.getValue();
|
|
847
838
|
let newState;
|
|
@@ -944,7 +935,6 @@ class StoreServiceMock extends StoreService {
|
|
|
944
935
|
init() { }
|
|
945
936
|
addAutoSaveHandler() { }
|
|
946
937
|
handleAutoSave() { }
|
|
947
|
-
dispatch() { }
|
|
948
938
|
select() {
|
|
949
939
|
return of({});
|
|
950
940
|
}
|