@cxbox-ui/core 1.37.2-alpha.9 → 1.37.3-alpha.0
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/dist/actions/index.d.ts +10 -1
- package/dist/cxbox-ui-core.cjs.development.js +345 -312
- package/dist/cxbox-ui-core.cjs.production.min.js +1 -1
- package/dist/cxbox-ui-core.esm.js +205 -172
- package/dist/cxbox-ui-core.modern.development.js +201 -169
- package/dist/cxbox-ui-core.modern.js +201 -169
- package/dist/cxbox-ui-core.modern.production.min.js +1 -1
- package/dist/interfaces/session.d.ts +1 -0
- package/dist/utils/apiError.d.ts +19 -0
- package/dist/utils/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/actions/index.d.ts
CHANGED
|
@@ -993,6 +993,7 @@ export declare const bulkUploadFiles: import("@reduxjs/toolkit").ActionCreatorWi
|
|
|
993
993
|
export declare const apiError: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<{
|
|
994
994
|
/**
|
|
995
995
|
* Axios error object
|
|
996
|
+
* https://redux.js.org/style-guide/#do-not-put-non-serializable-values-in-state-or-actions
|
|
996
997
|
*/
|
|
997
998
|
error: AxiosError;
|
|
998
999
|
/**
|
|
@@ -1032,7 +1033,15 @@ export declare const emptyAction: import("@reduxjs/toolkit").ActionCreatorWithOp
|
|
|
1032
1033
|
/**
|
|
1033
1034
|
* refresh screens, views and widgets meta
|
|
1034
1035
|
*/
|
|
1035
|
-
export declare const refreshMeta: import("@reduxjs/toolkit").
|
|
1036
|
+
export declare const refreshMeta: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"refreshMeta">;
|
|
1037
|
+
/**
|
|
1038
|
+
* refresh refreshMeta was successful
|
|
1039
|
+
*/
|
|
1040
|
+
export declare const refreshMetaDone: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"refreshMetaDone">;
|
|
1041
|
+
/**
|
|
1042
|
+
* refresh refreshMeta was unsuccessful
|
|
1043
|
+
*/
|
|
1044
|
+
export declare const refreshMetaFail: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"refreshMetaFail">;
|
|
1036
1045
|
/**
|
|
1037
1046
|
* Refresh meta data (see action above) and reload page
|
|
1038
1047
|
*/
|