@cxbox-ui/core 1.37.2-alpha.10 → 1.37.2-alpha.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/dist/actions/index.d.ts +2 -1
- package/dist/cxbox-ui-core.cjs.development.js +340 -312
- package/dist/cxbox-ui-core.cjs.production.min.js +1 -1
- package/dist/cxbox-ui-core.esm.js +234 -206
- package/dist/cxbox-ui-core.modern.development.js +230 -203
- package/dist/cxbox-ui-core.modern.js +230 -203
- 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,7 @@ 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">;
|
|
1036
1037
|
/**
|
|
1037
1038
|
* refresh refreshMeta was successful
|
|
1038
1039
|
*/
|