@satanwagen/reviewkit 0.1.2 → 0.1.4
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/CHANGELOG.md +158 -0
- package/README.md +158 -64
- package/dist/activate.cjs +150 -0
- package/dist/activate.cjs.map +1 -0
- package/dist/activate.d.cts +59 -0
- package/dist/activate.d.ts +59 -0
- package/dist/activate.js +21 -0
- package/dist/activate.js.map +1 -0
- package/dist/{chunk-YWBFAV57.js → chunk-5MAFDRUI.js} +1161 -1555
- package/dist/chunk-5MAFDRUI.js.map +1 -0
- package/dist/{chunk-4YNLMSCK.js → chunk-DG6O5XIC.js} +36 -10
- package/dist/chunk-DG6O5XIC.js.map +1 -0
- package/dist/chunk-EOX3UJNP.js +36 -0
- package/dist/chunk-EOX3UJNP.js.map +1 -0
- package/dist/chunk-ETAGGIDN.js +119 -0
- package/dist/chunk-ETAGGIDN.js.map +1 -0
- package/dist/client/index.cjs +4834 -4244
- package/dist/client/index.cjs.map +1 -1
- package/dist/client/index.d.cts +1 -1
- package/dist/client/index.d.ts +1 -1
- package/dist/client/index.js +49 -3
- package/dist/client/index.js.map +1 -1
- package/dist/effects-EWKHKUDP.js +851 -0
- package/dist/effects-EWKHKUDP.js.map +1 -0
- package/dist/index-CWGkg1-E.d.cts +86 -0
- package/dist/index-DPsjkvaY.d.ts +86 -0
- package/dist/index.cjs +4852 -4267
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +35 -3
- package/dist/index.js.map +1 -1
- package/dist/lazy.cjs +9308 -0
- package/dist/lazy.cjs.map +1 -0
- package/dist/lazy.d.cts +7 -0
- package/dist/lazy.d.ts +7 -0
- package/dist/lazy.js +8 -0
- package/dist/lazy.js.map +1 -0
- package/dist/next.cjs +9309 -0
- package/dist/next.cjs.map +1 -0
- package/dist/next.d.cts +4 -0
- package/dist/next.d.ts +4 -0
- package/dist/next.js +9 -0
- package/dist/next.js.map +1 -0
- package/dist/schema.cjs +53 -16
- package/dist/schema.cjs.map +1 -1
- package/dist/schema.d.cts +20 -5
- package/dist/schema.d.ts +20 -5
- package/dist/schema.js +30 -2
- package/dist/schema.js.map +1 -1
- package/package.json +23 -8
- package/cli/emblema-sync.mjs +0 -675
- package/dist/chunk-4YNLMSCK.js.map +0 -1
- package/dist/chunk-YWBFAV57.js.map +0 -1
- package/dist/index-BbucFgZi.d.ts +0 -49
- package/dist/index-CBlJrKkm.d.cts +0 -49
package/dist/client/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { B as BadgeCorner, R as ReviewKit, a as ReviewKitConfig, b as ReviewKitProps } from '../index-
|
|
1
|
+
export { B as BadgeCorner, R as ReviewKit, a as ReviewKitConfig, b as ReviewKitProps } from '../index-CWGkg1-E.cjs';
|
|
2
2
|
import { ReviewTarget, ReviewSession, ParseResult } from '../schema.cjs';
|
|
3
3
|
export { BoundingBox, CommentItem, CommentPayload, CopyItem, CopyPayload, DeleteItem, DeletePayload, EmblemaConfig, EmblemaReviewDispatch, Extensible, ITEM_STATUSES, ImageItem, ImagePayload, ItemPriority, ItemStatus, KNOWN_ITEM_TYPES, KnownItemType, KnownReviewItem, MoveItem, MovePayload, REVIEW_DISPATCH_VERSION, ReviewItem, ReviewItemBase, SCHEMA_VERSION, SiteInfo, StyleItem, StylePayload, TargetAttrs, UnknownReviewItem, isCommentItem, isCopyItem, isDeleteItem, isImageItem, isKnownItemType, isMoveItem, isStyleItem, parseSession, parseSessionJson } from '../schema.cjs';
|
|
4
4
|
import 'react';
|
package/dist/client/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { B as BadgeCorner, R as ReviewKit, a as ReviewKitConfig, b as ReviewKitProps } from '../index-
|
|
1
|
+
export { B as BadgeCorner, R as ReviewKit, a as ReviewKitConfig, b as ReviewKitProps } from '../index-DPsjkvaY.js';
|
|
2
2
|
import { ReviewTarget, ReviewSession, ParseResult } from '../schema.js';
|
|
3
3
|
export { BoundingBox, CommentItem, CommentPayload, CopyItem, CopyPayload, DeleteItem, DeletePayload, EmblemaConfig, EmblemaReviewDispatch, Extensible, ITEM_STATUSES, ImageItem, ImagePayload, ItemPriority, ItemStatus, KNOWN_ITEM_TYPES, KnownItemType, KnownReviewItem, MoveItem, MovePayload, REVIEW_DISPATCH_VERSION, ReviewItem, ReviewItemBase, SCHEMA_VERSION, SiteInfo, StyleItem, StylePayload, TargetAttrs, UnknownReviewItem, isCommentItem, isCopyItem, isDeleteItem, isImageItem, isKnownItemType, isMoveItem, isStyleItem, parseSession, parseSessionJson } from '../schema.js';
|
|
4
4
|
import 'react';
|
package/dist/client/index.js
CHANGED
|
@@ -1,4 +1,50 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
import {
|
|
2
|
+
ReviewKit,
|
|
3
|
+
captureTarget,
|
|
4
|
+
copySessionToClipboard,
|
|
5
|
+
downloadSession,
|
|
6
|
+
exportFilename,
|
|
7
|
+
importSessionFile,
|
|
8
|
+
resolveTarget,
|
|
9
|
+
sessionToJson
|
|
10
|
+
} from "../chunk-5MAFDRUI.js";
|
|
11
|
+
import {
|
|
12
|
+
ITEM_STATUSES,
|
|
13
|
+
KNOWN_ITEM_TYPES,
|
|
14
|
+
REVIEW_DISPATCH_VERSION,
|
|
15
|
+
SCHEMA_VERSION,
|
|
16
|
+
isCommentItem,
|
|
17
|
+
isCopyItem,
|
|
18
|
+
isDeleteItem,
|
|
19
|
+
isImageItem,
|
|
20
|
+
isKnownItemType,
|
|
21
|
+
isMoveItem,
|
|
22
|
+
isStyleItem,
|
|
23
|
+
parseSession,
|
|
24
|
+
parseSessionJson
|
|
25
|
+
} from "../chunk-DG6O5XIC.js";
|
|
26
|
+
import "../chunk-ETAGGIDN.js";
|
|
27
|
+
export {
|
|
28
|
+
ITEM_STATUSES,
|
|
29
|
+
KNOWN_ITEM_TYPES,
|
|
30
|
+
REVIEW_DISPATCH_VERSION,
|
|
31
|
+
ReviewKit,
|
|
32
|
+
SCHEMA_VERSION,
|
|
33
|
+
captureTarget,
|
|
34
|
+
copySessionToClipboard,
|
|
35
|
+
downloadSession,
|
|
36
|
+
exportFilename,
|
|
37
|
+
importSessionFile,
|
|
38
|
+
isCommentItem,
|
|
39
|
+
isCopyItem,
|
|
40
|
+
isDeleteItem,
|
|
41
|
+
isImageItem,
|
|
42
|
+
isKnownItemType,
|
|
43
|
+
isMoveItem,
|
|
44
|
+
isStyleItem,
|
|
45
|
+
parseSession,
|
|
46
|
+
parseSessionJson,
|
|
47
|
+
resolveTarget,
|
|
48
|
+
sessionToJson
|
|
49
|
+
};
|
|
4
50
|
//# sourceMappingURL=index.js.map
|
package/dist/client/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":[],"
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|