@kengic/core.react 0.0.1-beta.76 → 0.0.1-beta.77
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/kengic-core.react.js
CHANGED
|
@@ -66902,6 +66902,7 @@ function createDispatchHook(e = ReactReduxContext) {
|
|
|
66902
66902
|
}
|
|
66903
66903
|
var useDispatch = /* @__PURE__ */ createDispatchHook();
|
|
66904
66904
|
initializeUseSelector(withSelectorExports.useSyncExternalStoreWithSelector);
|
|
66905
|
+
console.log("AAA", KgSlice, KgWorkStationSlice);
|
|
66905
66906
|
const store = configureStore({
|
|
66906
66907
|
middleware: (e) => e({
|
|
66907
66908
|
serializableCheck: {
|
package/package.json
CHANGED
|
@@ -17,29 +17,29 @@ export type IKgWorkStationState = Record<string, {
|
|
|
17
17
|
workStationArea: WorkstationAreaDTO | null;
|
|
18
18
|
}>;
|
|
19
19
|
export declare const KgWorkStationSlice: Slice<IKgWorkStationState, {
|
|
20
|
-
|
|
20
|
+
closeModal(state: IKgWorkStationState, action: PayloadAction<{
|
|
21
21
|
id: string | null | undefined;
|
|
22
22
|
}>): void;
|
|
23
|
-
|
|
23
|
+
mount(state: IKgWorkStationState, action: PayloadAction<{
|
|
24
24
|
id: string | null | undefined;
|
|
25
|
-
fn: (state: IKgWorkStationState[string]) => void;
|
|
26
25
|
}>): void;
|
|
27
26
|
openModal(state: IKgWorkStationState, action: PayloadAction<{
|
|
28
27
|
id: string | null | undefined;
|
|
29
28
|
}>): void;
|
|
30
|
-
|
|
29
|
+
set(state: IKgWorkStationState, action: PayloadAction<{
|
|
31
30
|
id: string | null | undefined;
|
|
31
|
+
fn: (state: IKgWorkStationState[string]) => void;
|
|
32
32
|
}>): void;
|
|
33
|
-
|
|
34
|
-
id
|
|
33
|
+
setWorkStation(state: IKgWorkStationState, action: PayloadAction<{
|
|
34
|
+
id?: string | null | undefined;
|
|
35
|
+
workStation: WorkstationDTO | null;
|
|
35
36
|
}>): void;
|
|
36
37
|
setWorkStationArea(state: IKgWorkStationState, action: PayloadAction<{
|
|
37
38
|
id?: string | null | undefined;
|
|
38
39
|
workStationArea: WorkstationAreaDTO | null;
|
|
39
40
|
}>): void;
|
|
40
|
-
|
|
41
|
-
id
|
|
42
|
-
workStation: WorkstationDTO | null;
|
|
41
|
+
unmount(state: IKgWorkStationState, action: PayloadAction<{
|
|
42
|
+
id: string | null | undefined;
|
|
43
43
|
}>): void;
|
|
44
44
|
}, string, string, SliceSelectors<IKgWorkStationState>>;
|
|
45
45
|
export declare const set: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|