@walkeros/explorer 4.1.2 → 4.1.3-next-1780071196115

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 CHANGED
@@ -1,5 +1,20 @@
1
1
  # @walkeros/explorer
2
2
 
3
+ ## 4.1.3-next-1780071196115
4
+
5
+ ### Patch Changes
6
+
7
+ - 2d64ed2: CodeBox now memoizes its toolbar and tabs so a validation-marker
8
+ update repaints only the error and warning badges instead of re-rendering the
9
+ whole editor. This removes the visible editor flicker when content or markers
10
+ change rapidly.
11
+ - Updated dependencies [908d6f0]
12
+ - Updated dependencies [3eb2467]
13
+ - @walkeros/collector@4.1.3-next-1780071196115
14
+ - @walkeros/core@4.1.3-next-1780071196115
15
+ - @walkeros/web-source-browser@4.1.3-next-1780071196115
16
+ - @walkeros/web-core@4.1.3-next-1780071196115
17
+
3
18
  ## 4.1.2
4
19
 
5
20
  ### Patch Changes
package/dist/index.d.cts CHANGED
@@ -199,6 +199,8 @@ interface IntelliSenseContext {
199
199
  flows?: string[];
200
200
  /** Known environment variable names. If omitted, `$env.` offers only the prefix. */
201
201
  envNames?: string[];
202
+ /** Consent identifier names seen on the active flow's destinations. Enables consent-name completions. */
203
+ consentNames?: string[];
202
204
  /** Step type at the cursor. Scopes which `$`-refs the provider offers. */
203
205
  nodeType?: 'source' | 'destination' | 'transformer' | 'store' | 'collector';
204
206
  /** Path segments from the step root to the cursor (e.g. ['config','mapping']). */
package/dist/index.d.ts CHANGED
@@ -199,6 +199,8 @@ interface IntelliSenseContext {
199
199
  flows?: string[];
200
200
  /** Known environment variable names. If omitted, `$env.` offers only the prefix. */
201
201
  envNames?: string[];
202
+ /** Consent identifier names seen on the active flow's destinations. Enables consent-name completions. */
203
+ consentNames?: string[];
202
204
  /** Step type at the cursor. Scopes which `$`-refs the provider offers. */
203
205
  nodeType?: 'source' | 'destination' | 'transformer' | 'store' | 'collector';
204
206
  /** Path segments from the step root to the cursor (e.g. ['config','mapping']). */