@designfever/web-review-kit 0.8.0 → 0.8.2
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/README.md +3 -4
- package/dist/{chunk-UNDQZ4Y2.js → chunk-XP2IACXL.js} +80 -46
- package/dist/chunk-XP2IACXL.js.map +1 -0
- package/dist/{chunk-4ZP7B7R6.js → chunk-ZWJNUOYV.js} +150 -35
- package/dist/chunk-ZWJNUOYV.js.map +1 -0
- package/dist/index.cjs +229 -81
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/react-shell.cjs +2345 -1126
- package/dist/react-shell.cjs.map +1 -1
- package/dist/react-shell.d.cts +3 -1
- package/dist/react-shell.d.ts +3 -1
- package/dist/react-shell.js +2179 -1069
- package/dist/react-shell.js.map +1 -1
- package/dist/{types-BM8E7BFV.d.cts → types-DKDtZjTH.d.cts} +8 -0
- package/dist/{types-BM8E7BFV.d.ts → types-DKDtZjTH.d.ts} +8 -0
- package/dist/vite.cjs +13 -5
- package/dist/vite.cjs.map +1 -1
- package/dist/vite.d.cts +2 -0
- package/dist/vite.d.ts +2 -0
- package/dist/vite.js +14 -6
- package/dist/vite.js.map +1 -1
- package/docs/README.md +2 -0
- package/docs/installation.md +26 -5
- package/docs/release-notes-0.8.1.md +23 -0
- package/docs/release-notes-0.8.2.md +50 -0
- package/package.json +1 -1
- package/dist/chunk-4ZP7B7R6.js.map +0 -1
- package/dist/chunk-UNDQZ4Y2.js.map +0 -1
package/dist/react-shell.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { f as ReviewItemScope, z as ReviewSource, v as ReviewMode, W as WebReviewKitAdapter, F as ReviewFieldsConfig, a as ReviewItemStatus, k as ReviewAssigneeOption, e as ReviewItem, x as ReviewRulerConfig } from './types-
|
|
1
|
+
import { f as ReviewItemScope, z as ReviewSource, v as ReviewMode, W as WebReviewKitAdapter, F as ReviewFieldsConfig, a as ReviewItemStatus, k as ReviewAssigneeOption, e as ReviewItem, x as ReviewRulerConfig } from './types-DKDtZjTH.cjs';
|
|
2
2
|
import { R as ReviewFigmaImageStore, a as ReviewFigmaImageFormat } from './image.types-BmzkFSPX.cjs';
|
|
3
3
|
import * as react from 'react';
|
|
4
4
|
|
|
@@ -17,6 +17,7 @@ type ReviewShellPage = {
|
|
|
17
17
|
type ReviewShellGlobEntries = Record<string, unknown>;
|
|
18
18
|
type ReviewSourceEditor = 'vscode' | 'cursor' | 'webstorm' | 'custom';
|
|
19
19
|
type ReviewSourceInspectorOptions = {
|
|
20
|
+
/** @deprecated Source Tree와 Option 소스 추적은 Review Shell에서 항상 활성화된다. */
|
|
20
21
|
enabled?: boolean;
|
|
21
22
|
editor?: ReviewSourceEditor;
|
|
22
23
|
urlTemplate?: string;
|
|
@@ -149,6 +150,7 @@ interface ReviewShellProps {
|
|
|
149
150
|
presets?: ReviewShellViewportPreset[];
|
|
150
151
|
ruler?: ReviewRulerConfig;
|
|
151
152
|
initialPrompt?: string;
|
|
153
|
+
qaPrompt?: string;
|
|
152
154
|
adjustmentLabel?: string;
|
|
153
155
|
reviewPathPrefix?: string;
|
|
154
156
|
sourceRoot?: string;
|
package/dist/react-shell.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { f as ReviewItemScope, z as ReviewSource, v as ReviewMode, W as WebReviewKitAdapter, F as ReviewFieldsConfig, a as ReviewItemStatus, k as ReviewAssigneeOption, e as ReviewItem, x as ReviewRulerConfig } from './types-
|
|
1
|
+
import { f as ReviewItemScope, z as ReviewSource, v as ReviewMode, W as WebReviewKitAdapter, F as ReviewFieldsConfig, a as ReviewItemStatus, k as ReviewAssigneeOption, e as ReviewItem, x as ReviewRulerConfig } from './types-DKDtZjTH.js';
|
|
2
2
|
import { R as ReviewFigmaImageStore, a as ReviewFigmaImageFormat } from './image.types-BmzkFSPX.js';
|
|
3
3
|
import * as react from 'react';
|
|
4
4
|
|
|
@@ -17,6 +17,7 @@ type ReviewShellPage = {
|
|
|
17
17
|
type ReviewShellGlobEntries = Record<string, unknown>;
|
|
18
18
|
type ReviewSourceEditor = 'vscode' | 'cursor' | 'webstorm' | 'custom';
|
|
19
19
|
type ReviewSourceInspectorOptions = {
|
|
20
|
+
/** @deprecated Source Tree와 Option 소스 추적은 Review Shell에서 항상 활성화된다. */
|
|
20
21
|
enabled?: boolean;
|
|
21
22
|
editor?: ReviewSourceEditor;
|
|
22
23
|
urlTemplate?: string;
|
|
@@ -149,6 +150,7 @@ interface ReviewShellProps {
|
|
|
149
150
|
presets?: ReviewShellViewportPreset[];
|
|
150
151
|
ruler?: ReviewRulerConfig;
|
|
151
152
|
initialPrompt?: string;
|
|
153
|
+
qaPrompt?: string;
|
|
152
154
|
adjustmentLabel?: string;
|
|
153
155
|
reviewPathPrefix?: string;
|
|
154
156
|
sourceRoot?: string;
|