@designfever/web-review-kit 0.2.0 → 0.3.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.
@@ -1,4 +1,4 @@
1
- import { f as ReviewItemScope, r as ReviewSource, n as ReviewMode, W as WebReviewKitAdapter, a as ReviewItemStatus, e as ReviewItem, p as ReviewRulerConfig } from './types-NiCp9JJQ.cjs';
1
+ import { f as ReviewItemScope, r as ReviewSource, n as ReviewMode, W as WebReviewKitAdapter, a as ReviewItemStatus, e as ReviewItem, p as ReviewRulerConfig } from './types-Cf2x5ky6.cjs';
2
2
  import React from 'react';
3
3
 
4
4
  type ReviewShellViewportKind = Exclude<ReviewItemScope, 'dom'>;
@@ -104,13 +104,14 @@ interface ReviewShellProps {
104
104
  ruler?: ReviewRulerConfig;
105
105
  initialPrompt?: string;
106
106
  reviewPathPrefix?: string;
107
+ sourceRoot?: string;
107
108
  presence?: ReviewPresenceAdapter;
108
109
  }
109
110
  interface ReviewShellMountOptions extends ReviewShellProps {
110
111
  rootId?: string;
111
112
  }
112
113
 
113
- declare const ReviewShell: ({ projectId, pages, adapters, presets, ruler, initialPrompt, reviewPathPrefix, presence }: ReviewShellProps) => React.JSX.Element;
114
+ declare const ReviewShell: ({ projectId, pages, adapters, presets, ruler, initialPrompt, reviewPathPrefix, sourceRoot, presence }: ReviewShellProps) => React.JSX.Element;
114
115
 
115
116
  declare const createReviewPagesFromGlob: (entries: ReviewShellGlobEntries, options?: CreateReviewPagesOptions) => ReviewShellPage[];
116
117
 
@@ -1,4 +1,4 @@
1
- import { f as ReviewItemScope, r as ReviewSource, n as ReviewMode, W as WebReviewKitAdapter, a as ReviewItemStatus, e as ReviewItem, p as ReviewRulerConfig } from './types-NiCp9JJQ.js';
1
+ import { f as ReviewItemScope, r as ReviewSource, n as ReviewMode, W as WebReviewKitAdapter, a as ReviewItemStatus, e as ReviewItem, p as ReviewRulerConfig } from './types-Cf2x5ky6.js';
2
2
  import React from 'react';
3
3
 
4
4
  type ReviewShellViewportKind = Exclude<ReviewItemScope, 'dom'>;
@@ -104,13 +104,14 @@ interface ReviewShellProps {
104
104
  ruler?: ReviewRulerConfig;
105
105
  initialPrompt?: string;
106
106
  reviewPathPrefix?: string;
107
+ sourceRoot?: string;
107
108
  presence?: ReviewPresenceAdapter;
108
109
  }
109
110
  interface ReviewShellMountOptions extends ReviewShellProps {
110
111
  rootId?: string;
111
112
  }
112
113
 
113
- declare const ReviewShell: ({ projectId, pages, adapters, presets, ruler, initialPrompt, reviewPathPrefix, presence }: ReviewShellProps) => React.JSX.Element;
114
+ declare const ReviewShell: ({ projectId, pages, adapters, presets, ruler, initialPrompt, reviewPathPrefix, sourceRoot, presence }: ReviewShellProps) => React.JSX.Element;
114
115
 
115
116
  declare const createReviewPagesFromGlob: (entries: ReviewShellGlobEntries, options?: CreateReviewPagesOptions) => ReviewShellPage[];
116
117