@thoughtbot/superglue 0.54.0 → 1.0.1
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/.prettierrc +3 -1
- package/dist/action_creators.d.mts +1 -23
- package/dist/action_creators.mjs +3 -7
- package/dist/{chunk-MNVGYKSD.mjs → chunk-LGUVOEZ3.mjs} +253 -242
- package/dist/chunk-LGUVOEZ3.mjs.map +1 -0
- package/dist/cjs/action_creators.cjs +215 -172
- package/dist/cjs/action_creators.cjs.map +1 -1
- package/dist/cjs/superglue.cjs +668 -771
- package/dist/cjs/superglue.cjs.map +1 -1
- package/dist/index-BYr1PoYr.d.mts +232 -0
- package/dist/superglue.d.mts +53 -54
- package/dist/superglue.mjs +366 -482
- package/dist/superglue.mjs.map +1 -1
- package/package.json +9 -10
- package/thoughtbot-superglue-1.0.0.tgz +0 -0
- package/thoughtbot-superglue-1.0.0a.tgz +0 -0
- package/thoughtbot-superglue-1.0.0b.tgz +0 -0
- package/thoughtbot-superglue-1.0.0d.tgz +0 -0
- package/thoughtbot-superglue-1.0.1.tgz +0 -0
- package/typedoc.json +3 -1
- package/dist/chunk-MNVGYKSD.mjs.map +0 -1
- package/dist/index-DfWsUSqv.d.mts +0 -246
package/.prettierrc
CHANGED
|
@@ -1,25 +1,3 @@
|
|
|
1
|
-
|
|
1
|
+
export { a1 as MismatchedComponentError, a2 as remote, s as saveAndProcessPage, a3 as visit } from './index-BYr1PoYr.mjs';
|
|
2
2
|
import '@reduxjs/toolkit';
|
|
3
|
-
import 'react';
|
|
4
|
-
import 'react-redux';
|
|
5
3
|
import 'history';
|
|
6
|
-
import 'redux';
|
|
7
|
-
|
|
8
|
-
declare const remote: RemoteCreator;
|
|
9
|
-
declare const visit: VisitCreator;
|
|
10
|
-
|
|
11
|
-
declare function copyPage({ from, to, }: {
|
|
12
|
-
from: string;
|
|
13
|
-
to: string;
|
|
14
|
-
}): CopyAction;
|
|
15
|
-
declare function saveResponse({ pageKey, page, }: {
|
|
16
|
-
pageKey: string;
|
|
17
|
-
page: VisitResponse;
|
|
18
|
-
}): SaveResponseAction;
|
|
19
|
-
declare function handleGraft({ pageKey, page, }: {
|
|
20
|
-
pageKey: string;
|
|
21
|
-
page: GraftResponse;
|
|
22
|
-
}): HandleGraftAction;
|
|
23
|
-
declare function saveAndProcessPage(pageKey: string, page: VisitResponse | GraftResponse): SaveAndProcessPageThunk;
|
|
24
|
-
|
|
25
|
-
export { copyPage, handleGraft, remote, saveAndProcessPage, saveResponse, visit };
|
package/dist/action_creators.mjs
CHANGED
|
@@ -1,17 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
|
-
|
|
3
|
-
handleGraft,
|
|
2
|
+
MismatchedComponentError,
|
|
4
3
|
remote,
|
|
5
4
|
saveAndProcessPage,
|
|
6
|
-
saveResponse,
|
|
7
5
|
visit
|
|
8
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-LGUVOEZ3.mjs";
|
|
9
7
|
export {
|
|
10
|
-
|
|
11
|
-
handleGraft,
|
|
8
|
+
MismatchedComponentError,
|
|
12
9
|
remote,
|
|
13
10
|
saveAndProcessPage,
|
|
14
|
-
saveResponse,
|
|
15
11
|
visit
|
|
16
12
|
};
|
|
17
13
|
//# sourceMappingURL=action_creators.mjs.map
|