@designfever/web-review-kit 0.4.1 → 0.5.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-D_qYtwTs.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-RvVa5ns-.cjs';
2
2
  import React from 'react';
3
3
 
4
4
  type ReviewShellViewportKind = Exclude<ReviewItemScope, 'dom'>;
@@ -19,6 +19,24 @@ type ReviewSourceInspectorOptions = {
19
19
  enabled?: boolean;
20
20
  editor?: ReviewSourceEditor;
21
21
  urlTemplate?: string;
22
+ /**
23
+ * Source Tree에서 기본으로 내려갈 최대 DOM/source depth.
24
+ */
25
+ maxDepth?: number;
26
+ /**
27
+ * Source Tree item hover 시 iframe target outline 표시 여부.
28
+ */
29
+ hoverOutline?: boolean;
30
+ /**
31
+ * Source Tree에서 Placer primitive node까지 표시할지 여부.
32
+ * 기본값은 false 로, wrapper noise를 줄이기 위해 Placer branch를 숨긴다.
33
+ */
34
+ includePlacer?: boolean;
35
+ /**
36
+ * 소스 후보에서 숨길 파일 패턴. 문자열은 경로 부분 일치, RegExp 는 정규식 매칭.
37
+ * (예: core.section / control.render 등 인프라 파일 제외)
38
+ */
39
+ ignore?: readonly (string | RegExp)[];
22
40
  };
23
41
  type ReviewShellStatusOption = {
24
42
  value: ReviewItemStatus;
@@ -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-D_qYtwTs.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-RvVa5ns-.js';
2
2
  import React from 'react';
3
3
 
4
4
  type ReviewShellViewportKind = Exclude<ReviewItemScope, 'dom'>;
@@ -19,6 +19,24 @@ type ReviewSourceInspectorOptions = {
19
19
  enabled?: boolean;
20
20
  editor?: ReviewSourceEditor;
21
21
  urlTemplate?: string;
22
+ /**
23
+ * Source Tree에서 기본으로 내려갈 최대 DOM/source depth.
24
+ */
25
+ maxDepth?: number;
26
+ /**
27
+ * Source Tree item hover 시 iframe target outline 표시 여부.
28
+ */
29
+ hoverOutline?: boolean;
30
+ /**
31
+ * Source Tree에서 Placer primitive node까지 표시할지 여부.
32
+ * 기본값은 false 로, wrapper noise를 줄이기 위해 Placer branch를 숨긴다.
33
+ */
34
+ includePlacer?: boolean;
35
+ /**
36
+ * 소스 후보에서 숨길 파일 패턴. 문자열은 경로 부분 일치, RegExp 는 정규식 매칭.
37
+ * (예: core.section / control.render 등 인프라 파일 제외)
38
+ */
39
+ ignore?: readonly (string | RegExp)[];
22
40
  };
23
41
  type ReviewShellStatusOption = {
24
42
  value: ReviewItemStatus;