ntk-cms-api 1.2.262 → 18.0.11
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/reducers/ntkCmsApiStore.service.mjs +9 -1
- package/fesm2015/ntk-cms-api.mjs +9 -0
- package/fesm2015/ntk-cms-api.mjs.map +1 -1
- package/fesm2020/ntk-cms-api.mjs +8 -0
- package/fesm2020/ntk-cms-api.mjs.map +1 -1
- package/lib/reducers/ntkCmsApiStore.service.d.ts +1 -0
- package/package.json +3 -3
package/fesm2020/ntk-cms-api.mjs
CHANGED
|
@@ -143,6 +143,14 @@ class NtkCmsApiStoreService {
|
|
|
143
143
|
}
|
|
144
144
|
}
|
|
145
145
|
}
|
|
146
|
+
processInRun(name) {
|
|
147
|
+
if (this.state?.ntkCmsAPiState?.inProcessingList) {
|
|
148
|
+
const index = this.state.ntkCmsAPiState.inProcessingList.indexOf(name);
|
|
149
|
+
if (index >= 0)
|
|
150
|
+
return true;
|
|
151
|
+
}
|
|
152
|
+
return false;
|
|
153
|
+
}
|
|
146
154
|
processStop(name) {
|
|
147
155
|
if (this.state?.ntkCmsAPiState?.inProcessingList) {
|
|
148
156
|
const index = this.state.ntkCmsAPiState.inProcessingList.indexOf(name);
|