@dxos/web-context-solid 0.8.4-main.bbf232bc24 → 0.8.4-main.bc2380dfbc

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/LICENSE CHANGED
@@ -1,8 +1,105 @@
1
- MIT License
2
- Copyright (c) 2025 DXOS
1
+ # Functional Source License, Version 1.1, ALv2 Future License
3
2
 
4
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
3
+ ## Abbreviation
5
4
 
6
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
5
+ FSL-1.1-Apache-2.0
7
6
 
8
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
7
+ ## Notice
8
+
9
+ Copyright 2026 DXOS
10
+
11
+ ## Terms and Conditions
12
+
13
+ ### Licensor ("We")
14
+
15
+ The party offering the Software under these Terms and Conditions.
16
+
17
+ ### The Software
18
+
19
+ The "Software" is each version of the software that we make available under
20
+ these Terms and Conditions, as indicated by our inclusion of these Terms and
21
+ Conditions with the Software.
22
+
23
+ ### License Grant
24
+
25
+ Subject to your compliance with this License Grant and the Patents,
26
+ Redistribution and Trademark clauses below, we hereby grant you the right to
27
+ use, copy, modify, create derivative works, publicly perform, publicly display
28
+ and redistribute the Software for any Permitted Purpose identified below.
29
+
30
+ ### Permitted Purpose
31
+
32
+ A Permitted Purpose is any purpose other than a Competing Use. A Competing Use
33
+ means making the Software available to others in a commercial product or
34
+ service that:
35
+
36
+ 1. substitutes for the Software;
37
+
38
+ 2. substitutes for any other product or service we offer using the Software
39
+ that exists as of the date we make the Software available; or
40
+
41
+ 3. offers the same or substantially similar functionality as the Software.
42
+
43
+ Permitted Purposes specifically include using the Software:
44
+
45
+ 1. for your internal use and access;
46
+
47
+ 2. for non-commercial education;
48
+
49
+ 3. for non-commercial research; and
50
+
51
+ 4. in connection with professional services that you provide to a licensee
52
+ using the Software in accordance with these Terms and Conditions.
53
+
54
+ ### Patents
55
+
56
+ To the extent your use for a Permitted Purpose would necessarily infringe our
57
+ patents, the license grant above includes a license under our patents. If you
58
+ make a claim against any party that the Software infringes or contributes to
59
+ the infringement of any patent, then your patent license to the Software ends
60
+ immediately.
61
+
62
+ ### Redistribution
63
+
64
+ The Terms and Conditions apply to all copies, modifications and derivatives of
65
+ the Software.
66
+
67
+ If you redistribute any copies, modifications or derivatives of the Software,
68
+ you must include a copy of or a link to these Terms and Conditions and not
69
+ remove any copyright notices provided in or with the Software.
70
+
71
+ ### Disclaimer
72
+
73
+ THE SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTIES OF ANY KIND, EXPRESS OR
74
+ IMPLIED, INCLUDING WITHOUT LIMITATION WARRANTIES OF FITNESS FOR A PARTICULAR
75
+ PURPOSE, MERCHANTABILITY, TITLE OR NON-INFRINGEMENT.
76
+
77
+ IN NO EVENT WILL WE HAVE ANY LIABILITY TO YOU ARISING OUT OF OR RELATED TO THE
78
+ SOFTWARE, INCLUDING INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES,
79
+ EVEN IF WE HAVE BEEN INFORMED OF THEIR POSSIBILITY IN ADVANCE.
80
+
81
+ ### Trademarks
82
+
83
+ Except for displaying the License Details and identifying us as the origin of
84
+ the Software, you have no right under these Terms and Conditions to use our
85
+ trademarks, trade names, service marks or product names.
86
+
87
+ ## Grant of Future License
88
+
89
+ We hereby irrevocably grant you an additional license to use the Software under
90
+ the Apache License, Version 2.0 that is effective on the second anniversary of
91
+ the date we make the Software available. On or after that date, you may use the
92
+ Software under the Apache License, Version 2.0, in which case the following
93
+ will apply:
94
+
95
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not use
96
+ this file except in compliance with the License.
97
+
98
+ You may obtain a copy of the License at
99
+
100
+ http://www.apache.org/licenses/LICENSE-2.0
101
+
102
+ Unless required by applicable law or agreed to in writing, software distributed
103
+ under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
104
+ CONDITIONS OF ANY KIND, either express or implied. See the License for the
105
+ specific language governing permissions and limitations under the License.
@@ -13,9 +13,13 @@ function getHostElement() {
13
13
  }
14
14
 
15
15
  // src/provider.tsx
16
- import { jsx as _jsx } from "solid-js/jsx-runtime";
16
+ import { template as _$template } from "solid-js/web";
17
+ import { createComponent as _$createComponent } from "solid-js/web";
18
+ import { insert as _$insert } from "solid-js/web";
19
+ import { use as _$use } from "solid-js/web";
17
20
  import { createEffect, createContext as createSolidContext2, onCleanup, onMount, useContext as useContext2 } from "solid-js";
18
21
  import { CONTEXT_PROVIDER_EVENT, CONTEXT_REQUEST_EVENT, ContextProviderEvent, ContextRequestEvent } from "@dxos/web-context";
22
+ var _tmpl$ = /* @__PURE__ */ _$template(`<div style=display:contents>`);
19
23
  var ContextRequestHandlerContext = createSolidContext2();
20
24
  function tryHandleContextRequest(event) {
21
25
  const handler = useContext2(ContextRequestHandlerContext);
@@ -91,7 +95,9 @@ function ContextProtocolProvider(props) {
91
95
  if (!info) {
92
96
  continue;
93
97
  }
94
- const { consumerHost } = info;
98
+ const {
99
+ consumerHost
100
+ } = info;
95
101
  if (seen.has(callback)) {
96
102
  continue;
97
103
  }
@@ -141,15 +147,14 @@ function ContextProtocolProvider(props) {
141
147
  }
142
148
  subscriptionRefs.clear();
143
149
  });
144
- return /* @__PURE__ */ _jsx(ContextRequestHandlerContext.Provider, {
150
+ return _$createComponent(ContextRequestHandlerContext.Provider, {
145
151
  value: handleRequest,
146
- children: /* @__PURE__ */ _jsx("div", {
147
- ref: setupListeners,
148
- style: {
149
- display: "contents"
150
- },
151
- children: props.children
152
- })
152
+ get children() {
153
+ var _el$ = _tmpl$();
154
+ _$use(setupListeners, _el$);
155
+ _$insert(_el$, () => props.children);
156
+ return _el$;
157
+ }
153
158
  });
154
159
  }
155
160
 
@@ -184,13 +189,17 @@ function useWebComponentContext(context, options) {
184
189
  }
185
190
 
186
191
  // src/solid-element.tsx
187
- import { jsx as _jsx2 } from "solid-js/jsx-runtime";
192
+ import { createComponent as _$createComponent2 } from "solid-js/web";
188
193
  function withContextProvider(component) {
189
194
  const wrappedComponent = (props, options) => {
190
195
  const WrappedContent = () => component(props, options);
191
- return /* @__PURE__ */ _jsx2(HostElementContext.Provider, {
192
- value: options.element,
193
- children: /* @__PURE__ */ _jsx2(WrappedContent, {})
196
+ return _$createComponent2(HostElementContext.Provider, {
197
+ get value() {
198
+ return options.element;
199
+ },
200
+ get children() {
201
+ return _$createComponent2(WrappedContent, {});
202
+ }
194
203
  });
195
204
  };
196
205
  return wrappedComponent;
@@ -2,6 +2,6 @@
2
2
  "version": 3,
3
3
  "sources": ["../../../src/index.ts", "../../../src/consumer.ts", "../../../src/internal.ts", "../../../src/provider.tsx", "../../../src/solid-element.tsx"],
4
4
  "sourcesContent": ["//\n// Copyright 2025 DXOS.org\n//\n\nexport * from '@dxos/web-context';\n\nexport * from './consumer';\nexport * from './provider';\nexport * from './solid-element';\n", "//\n// Copyright 2025 DXOS.org\n//\n\nimport { type Accessor, createSignal, onCleanup } from 'solid-js';\n\nimport { ContextRequestEvent, type ContextType, type UnknownContext } from '@dxos/web-context';\n\nimport { getHostElement } from './internal';\nimport { getContextRequestHandler } from './provider';\n\n/**\n * Options for useWebComponentContext hook\n */\nexport interface UseWebComponentContextOptions {\n /**\n * Whether to subscribe to context updates.\n * If true, the returned signal will update when the provider's value changes.\n * Default: false\n */\n subscribe?: boolean;\n\n /**\n * The element to dispatch the context-request event from.\n * This is only used when there's no SolidJS provider in the tree.\n * Default: document.body\n */\n element?: HTMLElement;\n}\n\n/**\n * A SolidJS hook that requests context using the Web Component Context Protocol.\n *\n * This first tries to use the SolidJS context chain (for providers in the same\n * SolidJS tree), then falls back to dispatching a DOM event (for web component\n * providers).\n *\n * @param context - The context key to request\n * @param options - Optional configuration\n * @returns An accessor that returns the context value or undefined\n *\n * @example\n * ```tsx\n * const theme = useWebComponentContext(themeContext);\n * return <div style={{ color: theme()?.primary }}>Hello</div>;\n * ```\n *\n * @example\n * ```tsx\n * // Subscribe to updates\n * const theme = useWebComponentContext(themeContext, { subscribe: true });\n * return <div style={{ color: theme()?.primary }}>Hello</div>;\n * ```\n */\nexport function useWebComponentContext<T extends UnknownContext>(\n context: T,\n options?: UseWebComponentContextOptions,\n): Accessor<ContextType<T> | undefined> {\n const [value, setValue] = createSignal<ContextType<T> | undefined>(undefined);\n let unsubscribeFn: (() => void) | undefined;\n\n // Create callback that updates our signal\n const callback = (newValue: ContextType<T>, unsubscribe?: () => void): void => {\n setValue(() => newValue);\n // Store the latest unsubscribe function\n if (unsubscribe) {\n unsubscribeFn = unsubscribe;\n }\n };\n\n // Determine the target element for the context request\n // Use: 1) explicit element option, 2) host element from custom element context, 3) document.body\n const hostElement = getHostElement();\n const targetElement = options?.element ?? hostElement ?? document.body;\n\n // Create the context request event with contextTarget for proper re-parenting support\n const event = new ContextRequestEvent(context, callback, {\n subscribe: options?.subscribe,\n target: targetElement,\n });\n\n // First, try to handle via SolidJS context chain (synchronous)\n const handler = getContextRequestHandler();\n let handled = false;\n\n if (handler) {\n handled = handler(event);\n }\n\n // If not handled by SolidJS providers, try DOM event dispatch\n if (!handled) {\n targetElement.dispatchEvent(event);\n }\n\n // Cleanup: unsubscribe when component unmounts\n // Cleanup: unsubscribe when component unmounts\n onCleanup(() => {\n unsubscribeFn?.();\n });\n\n return value;\n}\n", "//\n// Copyright 2025 DXOS.org\n//\n\nimport { createContext as createSolidContext, useContext } from 'solid-js';\n\n/**\n * Internal SolidJS context for passing the host element to nested components.\n * This allows useWebComponentContext to dispatch events from the custom element.\n */\nexport const HostElementContext = createSolidContext<HTMLElement | undefined>();\n\n/**\n * Get the host custom element from SolidJS context.\n * Used internally by useWebComponentContext when called from a custom element.\n */\nexport function getHostElement(): HTMLElement | undefined {\n return useContext(HostElementContext);\n}\n", "//\n// Copyright 2025 DXOS.org\n//\n\nimport {\n type Accessor,\n type JSX,\n createEffect,\n createContext as createSolidContext,\n onCleanup,\n onMount,\n useContext,\n} from 'solid-js';\n\nimport {\n CONTEXT_PROVIDER_EVENT,\n CONTEXT_REQUEST_EVENT,\n type ContextCallback,\n ContextProviderEvent,\n ContextRequestEvent,\n type ContextType,\n type UnknownContext,\n} from '@dxos/web-context';\n\n/**\n * Handler function type for context requests passed via SolidJS context\n */\ntype ContextRequestHandler = (event: ContextRequestEvent<UnknownContext>) => boolean;\n\n/**\n * Internal SolidJS context for passing context request handlers down the tree.\n * This allows useWebComponentContext to work synchronously in SolidJS.\n */\nconst ContextRequestHandlerContext = createSolidContext<ContextRequestHandler | undefined>();\n\n/**\n * Try to handle a context request using the SolidJS context chain.\n * Returns true if handled, false otherwise.\n * Used internally by useWebComponentContext.\n */\nexport function tryHandleContextRequest(event: ContextRequestEvent<UnknownContext>): boolean {\n const handler = useContext(ContextRequestHandlerContext);\n if (handler) {\n return handler(event);\n }\n return false;\n}\n\n/**\n * Get the context request handler from SolidJS context.\n * Used internally by useWebComponentContext.\n */\nexport function getContextRequestHandler(): ContextRequestHandler | undefined {\n return useContext(ContextRequestHandlerContext);\n}\n\n/**\n * Props for the ContextProtocolProvider component\n */\nexport interface ContextProtocolProviderProps<T extends UnknownContext> {\n /** The context key to provide */\n context: T;\n /** The value to provide - can be a static value or an accessor for reactive updates */\n value: ContextType<T> | Accessor<ContextType<T>>;\n /** Child elements */\n children: JSX.Element;\n}\n\n/**\n * A provider component that:\n * 1. Handles context-request events from web components (via DOM events)\n * 2. Handles context requests from SolidJS consumers (via SolidJS context)\n * 3. Supports subscriptions for reactive updates\n * 4. Uses WeakRef for subscriptions to prevent memory leaks\n */\nexport function ContextProtocolProvider<T extends UnknownContext>(props: ContextProtocolProviderProps<T>): JSX.Element {\n // Get parent handler if one exists (for nested providers)\n const parentHandler = useContext(ContextRequestHandlerContext);\n\n // Track subscriptions with their stable unsubscribe functions and consumer host elements\n // We use WeakMap to hold callbacks weakly. This ensures that if a consumer\n // drops the callback, we don't leak memory.\n //\n // NOTE: This means consumers MUST retain the callback reference as long as they\n // want to receive updates (e.g. implicitly via closure in a retained component).\n interface SubscriptionInfo {\n unsubscribe: () => void;\n consumerHost: Element;\n // Store ref to allow cleaning up the Set when unsubscribing\n ref: WeakRef<ContextCallback<ContextType<T>>>;\n }\n const subscriptions = new WeakMap<ContextCallback<ContextType<T>>, SubscriptionInfo>();\n const subscriptionRefs = new Set<WeakRef<ContextCallback<ContextType<T>>>>();\n\n // Helper to get current value (handles both static and accessor)\n const getValue = (): ContextType<T> => {\n const v = props.value;\n return typeof v === 'function' ? (v as Accessor<ContextType<T>>)() : v;\n };\n\n // Core handler logic - used by both DOM events and SolidJS context\n const handleRequest = (event: ContextRequestEvent<UnknownContext>): boolean => {\n // Check if this provider handles this context (strict equality per spec)\n if (event.context !== props.context) {\n // Pass to parent handler if we don't handle this context\n if (parentHandler) {\n return parentHandler(event);\n }\n return false;\n }\n\n const currentValue = getValue();\n\n if (event.subscribe) {\n // Store the callback for future updates\n const callback = event.callback as ContextCallback<ContextType<T>>;\n\n // Get the consumer host element from the event\n // Fallback to composedPath()[0] if contextTarget is missing (standard compliance)\n const consumerHost = event.contextTarget || (event.composedPath()[0] as Element);\n\n // Create a stable unsubscribe function for this callback\n // IMPORTANT: We must pass the SAME unsubscribe function each time we call the callback\n // Lit's ContextConsumer compares unsubscribe functions and calls the old one if different\n const unsubscribe = () => {\n const info = subscriptions.get(callback);\n if (info) {\n subscriptionRefs.delete(info.ref);\n subscriptions.delete(callback);\n }\n };\n\n const ref = new WeakRef(callback);\n subscriptions.set(callback, { unsubscribe, consumerHost, ref });\n subscriptionRefs.add(ref);\n\n // Invoke callback with current value and unsubscribe function\n event.callback(currentValue, unsubscribe);\n } else {\n // One-time request - just provide the value\n event.callback(currentValue);\n }\n\n return true;\n };\n\n // Handle DOM context-request events (for web components)\n const handleContextRequestEvent = (e: Event) => {\n const event = e as ContextRequestEvent<UnknownContext>;\n if (handleRequest(event)) {\n // Stop propagation per spec recommendation\n event.stopImmediatePropagation();\n }\n };\n\n // Handle context-provider events from child providers\n // When a new provider appears below us, we re-dispatch our subscriptions\n // so consumers can re-parent to the closer provider\n const handleContextProviderEvent = (e: Event) => {\n const event = e as ContextProviderEvent<UnknownContext>;\n\n // Only handle events for our context\n if (event.context !== props.context) {\n return;\n }\n\n // Don't handle our own event\n if (containerRef && event.contextTarget === containerRef) {\n return;\n }\n\n // Re-dispatch context requests from our subscribers\n // They may now have a closer provider\n // Iterate over weak refs to re-dispatch\n // We use a separate Set of WeakRefs because WeakMap is not iterable.\n // This allows us to re-parent subscriptions when a new provider appears.\n const seen = new Set<ContextCallback<ContextType<T>>>();\n for (const ref of subscriptionRefs) {\n const callback = ref.deref();\n if (!callback) {\n subscriptionRefs.delete(ref);\n continue;\n }\n\n const info = subscriptions.get(callback);\n if (!info) {\n continue;\n }\n\n const { consumerHost } = info;\n\n // Prevent infinite loops with duplicate callbacks\n if (seen.has(callback)) {\n continue;\n }\n seen.add(callback);\n\n // Re-dispatch the context request from the consumer\n // We explicitly pass the original consumerHost as the target to preserve the causal chain\n consumerHost.dispatchEvent(\n new ContextRequestEvent(props.context, callback, { subscribe: true, target: consumerHost }),\n );\n }\n\n // Stop propagation - we've handled the re-parenting\n event.stopPropagation();\n };\n\n // Set up effect to notify subscribers when value changes\n let isFirstRun = true;\n createEffect(() => {\n // IMPORTANT: We must call the accessor DIRECTLY inside the effect to establish tracking\n // Reading props.value gives us the accessor, then we must call it to track the signal\n const v = props.value;\n const newValue = typeof v === 'function' ? (v as Accessor<ContextType<T>>)() : v;\n\n // Skip first run - only notify on changes after initial subscription\n if (isFirstRun) {\n isFirstRun = false;\n return;\n }\n\n // Notify all subscribers with their stable unsubscribe functions\n for (const ref of subscriptionRefs) {\n const callback = ref.deref();\n if (!callback) {\n subscriptionRefs.delete(ref);\n continue;\n }\n\n const info = subscriptions.get(callback);\n if (info) {\n callback(newValue, info.unsubscribe);\n }\n }\n });\n\n // Reference to container element for event listener\n let containerRef: HTMLDivElement | undefined;\n\n // Set up event listeners when element is created\n const setupListeners = (el: HTMLDivElement) => {\n containerRef = el;\n el.addEventListener(CONTEXT_REQUEST_EVENT, handleContextRequestEvent);\n el.addEventListener(CONTEXT_PROVIDER_EVENT, handleContextProviderEvent);\n };\n\n // Announce this provider when mounted\n // This allows ContextRoot implementations to replay pending requests\n // and allows parent providers to re-parent their subscriptions\n onMount(() => {\n if (containerRef) {\n containerRef.dispatchEvent(new ContextProviderEvent(props.context, containerRef));\n }\n });\n\n // Cleanup on unmount\n onCleanup(() => {\n if (containerRef) {\n containerRef.removeEventListener(CONTEXT_REQUEST_EVENT, handleContextRequestEvent);\n containerRef.removeEventListener(CONTEXT_PROVIDER_EVENT, handleContextProviderEvent);\n }\n // WeakMap clears itself, but we should clear the Set of refs\n subscriptionRefs.clear();\n });\n\n return (\n <ContextRequestHandlerContext.Provider value={handleRequest}>\n <div ref={setupListeners} style={{ display: 'contents' }}>\n {props.children}\n </div>\n </ContextRequestHandlerContext.Provider>\n );\n}\n", "//\n// Copyright 2025 DXOS.org\n//\n\nimport type { ComponentType } from 'solid-element';\nimport type { JSX } from 'solid-js';\n\nimport { HostElementContext } from './internal';\n\n/**\n * Integration utilities for using Web Component Context Protocol with solid-element.\n *\n * This module provides utilities to integrate our context protocol implementation\n * with the solid-element library for creating web components.\n *\n * @example\n * ```tsx\n * import { customElement } from 'solid-element';\n * import { withContextProvider } from './context/solid-element';\n *\n * customElement('my-button', {}, withContextProvider((props, { element }) => {\n * const theme = useWebComponentContext(themeContext, { subscribe: true });\n * return <button style={{ background: theme()?.primary }}>Click me</button>;\n * }));\n * ```\n */\n\n/**\n * Options passed by solid-element to component functions.\n * The element extends HTMLElement with additional custom element methods.\n */\nexport interface SolidElementOptions {\n element: HTMLElement & {\n renderRoot: Element | Document | ShadowRoot | DocumentFragment;\n addReleaseCallback(fn: () => void): void;\n addPropertyChangedCallback(fn: (name: string, value: unknown) => void): void;\n };\n}\n\n/**\n * Function component type for solid-element.\n * Receives props and an options object containing the host element.\n */\nexport type SolidElementComponent<P extends object = object> = (props: P, options: SolidElementOptions) => JSX.Element;\n\n/**\n * Wraps a solid-element component to provide the host element context.\n * This enables useWebComponentContext to dispatch events from the custom element\n * rather than document.body.\n *\n * @param component - The solid-element component function\n * @returns A wrapped component that provides HostElementContext\n *\n * @example\n * ```tsx\n * import { customElement } from 'solid-element';\n * import { withContextProvider, useWebComponentContext } from './context';\n *\n * customElement('themed-button', {}, withContextProvider((props, { element }) => {\n * const theme = useWebComponentContext(themeContext, { subscribe: true });\n * return (\n * <button style={{ background: theme()?.primary }}>\n * Themed Button\n * </button>\n * );\n * }));\n * ```\n */\nexport function withContextProvider<P extends object>(component: SolidElementComponent<P>): ComponentType<P> {\n // Return a new component function that wraps the original with HostElementContext\n // This enables useWebComponentContext to dispatch events from the custom element\n const wrappedComponent = (props: P, options: SolidElementOptions) => {\n // Create a child component that renders within the context\n const WrappedContent = () => component(props, options);\n\n return (\n <HostElementContext.Provider value={options.element}>\n <WrappedContent />\n </HostElementContext.Provider>\n );\n };\n\n return wrappedComponent as unknown as ComponentType<P>;\n}\n"],
5
- "mappings": "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",
6
- "names": ["createSignal", "onCleanup", "ContextRequestEvent", "createContext", "createSolidContext", "useContext", "HostElementContext", "getHostElement", "createEffect", "createContext", "createSolidContext", "onCleanup", "onMount", "useContext", "CONTEXT_PROVIDER_EVENT", "CONTEXT_REQUEST_EVENT", "ContextProviderEvent", "ContextRequestEvent", "ContextRequestHandlerContext", "tryHandleContextRequest", "event", "handler", "getContextRequestHandler", "ContextProtocolProvider", "props", "parentHandler", "subscriptions", "WeakMap", "subscriptionRefs", "Set", "getValue", "v", "value", "handleRequest", "context", "currentValue", "subscribe", "callback", "consumerHost", "contextTarget", "composedPath", "unsubscribe", "info", "get", "delete", "ref", "WeakRef", "set", "add", "handleContextRequestEvent", "e", "stopImmediatePropagation", "handleContextProviderEvent", "containerRef", "seen", "deref", "has", "dispatchEvent", "target", "stopPropagation", "isFirstRun", "newValue", "setupListeners", "el", "addEventListener", "removeEventListener", "clear", "Provider", "div", "style", "display", "children", "useWebComponentContext", "context", "options", "value", "setValue", "createSignal", "undefined", "unsubscribeFn", "callback", "newValue", "unsubscribe", "hostElement", "getHostElement", "targetElement", "element", "document", "body", "event", "ContextRequestEvent", "subscribe", "target", "handler", "getContextRequestHandler", "handled", "dispatchEvent", "onCleanup", "withContextProvider", "component", "wrappedComponent", "props", "options", "WrappedContent", "_jsx", "HostElementContext", "Provider", "value", "element"]
5
+ "mappings": ";AAIA,cAAc;;;ACAd,SAAwBA,cAAcC,aAAAA,kBAAiB;AAEvD,SAASC,uBAAAA,4BAAkE;;;ACF3E,SAASC,iBAAiBC,oBAAoBC,kBAAkB;AAMzD,IAAMC,qBAAqBF,mBAAAA;AAM3B,SAASG,iBAAAA;AACd,SAAOF,WAAWC,kBAAAA;AACpB;;;;;;;ACdA,SAGEE,cACAC,iBAAiBC,qBACjBC,WACAC,SACAC,cAAAA,mBACK;AAEP,SACEC,wBACAC,uBAEAC,sBACAC,2BAGK;;AAWP,IAAMC,+BAA+BR,oBAAsD;AAOpF,SAASS,wBAAwBC,OAAqD;AAC3F,QAAMC,UAAUR,YAAWK,4BAA4B;AACvD,MAAIG,SAAS;AACX,WAAOA,QAAQD,KAAK;EACtB;AACA,SAAO;AACT;AAMO,SAASE,2BAA8D;AAC5E,SAAOT,YAAWK,4BAA4B;AAChD;AAqBO,SAASK,wBAAkDC,OAAqD;AAErH,QAAMC,gBAAgBZ,YAAWK,4BAA4B;AAc7D,QAAMQ,gBAAgB,oBAAIC,QAA2D;AACrF,QAAMC,mBAAmB,oBAAIC,IAA8C;AAG3E,QAAMC,WAAWA,MAAsB;AACrC,UAAMC,IAAIP,MAAMQ;AAChB,WAAO,OAAOD,MAAM,aAAcA,EAA+B,IAAIA;EACvE;AAGA,QAAME,gBAAiBb,WAAwD;AAE7E,QAAIA,MAAMc,YAAYV,MAAMU,SAAS;AAEnC,UAAIT,eAAe;AACjB,eAAOA,cAAcL,KAAK;MAC5B;AACA,aAAO;IACT;AAEA,UAAMe,eAAeL,SAAS;AAE9B,QAAIV,MAAMgB,WAAW;AAEnB,YAAMC,WAAWjB,MAAMiB;AAIvB,YAAMC,eAAelB,MAAMmB,iBAAkBnB,MAAMoB,aAAa,EAAE,CAAC;AAKnE,YAAMC,cAAcA,MAAM;AACxB,cAAMC,OAAOhB,cAAciB,IAAIN,QAAQ;AACvC,YAAIK,MAAM;AACRd,2BAAiBgB,OAAOF,KAAKG,GAAG;AAChCnB,wBAAckB,OAAOP,QAAQ;QAC/B;MACF;AAEA,YAAMQ,MAAM,IAAIC,QAAQT,QAAQ;AAChCX,oBAAcqB,IAAIV,UAAU;QAAEI;QAAaH;QAAcO;MAAI,CAAC;AAC9DjB,uBAAiBoB,IAAIH,GAAG;AAGxBzB,YAAMiB,SAASF,cAAcM,WAAW;IAC1C,OAAO;AAELrB,YAAMiB,SAASF,YAAY;IAC7B;AAEA,WAAO;EACT;AAGA,QAAMc,4BAA6BC,OAAa;AAC9C,UAAM9B,QAAQ8B;AACd,QAAIjB,cAAcb,KAAK,GAAG;AAExBA,YAAM+B,yBAAyB;IACjC;EACF;AAKA,QAAMC,6BAA8BF,OAAa;AAC/C,UAAM9B,QAAQ8B;AAGd,QAAI9B,MAAMc,YAAYV,MAAMU,SAAS;AACnC;IACF;AAGA,QAAImB,gBAAgBjC,MAAMmB,kBAAkBc,cAAc;AACxD;IACF;AAOA,UAAMC,OAAO,oBAAIzB,IAAqC;AACtD,eAAWgB,OAAOjB,kBAAkB;AAClC,YAAMS,WAAWQ,IAAIU,MAAM;AAC3B,UAAI,CAAClB,UAAU;AACbT,yBAAiBgB,OAAOC,GAAG;AAC3B;MACF;AAEA,YAAMH,OAAOhB,cAAciB,IAAIN,QAAQ;AACvC,UAAI,CAACK,MAAM;AACT;MACF;AAEA,YAAM;QAAEJ;MAAa,IAAII;AAGzB,UAAIY,KAAKE,IAAInB,QAAQ,GAAG;AACtB;MACF;AACAiB,WAAKN,IAAIX,QAAQ;AAIjBC,mBAAamB,cACX,IAAIxC,oBAAoBO,MAAMU,SAASG,UAAU;QAAED,WAAW;QAAMsB,QAAQpB;MAAa,CAAC,CAC5F;IACF;AAGAlB,UAAMuC,gBAAgB;EACxB;AAGA,MAAIC,aAAa;AACjBpD,eAAa,MAAM;AAGjB,UAAMuB,IAAIP,MAAMQ;AAChB,UAAM6B,WAAW,OAAO9B,MAAM,aAAcA,EAA+B,IAAIA;AAG/E,QAAI6B,YAAY;AACdA,mBAAa;AACb;IACF;AAGA,eAAWf,OAAOjB,kBAAkB;AAClC,YAAMS,WAAWQ,IAAIU,MAAM;AAC3B,UAAI,CAAClB,UAAU;AACbT,yBAAiBgB,OAAOC,GAAG;AAC3B;MACF;AAEA,YAAMH,OAAOhB,cAAciB,IAAIN,QAAQ;AACvC,UAAIK,MAAM;AACRL,iBAASwB,UAAUnB,KAAKD,WAAW;MACrC;IACF;EACF,CAAC;AAGD,MAAIY;AAGJ,QAAMS,iBAAkBC,QAAuB;AAC7CV,mBAAeU;AACfA,OAAGC,iBAAiBjD,uBAAuBkC,yBAAyB;AACpEc,OAAGC,iBAAiBlD,wBAAwBsC,0BAA0B;EACxE;AAKAxC,UAAQ,MAAM;AACZ,QAAIyC,cAAc;AAChBA,mBAAaI,cAAc,IAAIzC,qBAAqBQ,MAAMU,SAASmB,YAAY,CAAC;IAClF;EACF,CAAC;AAGD1C,YAAU,MAAM;AACd,QAAI0C,cAAc;AAChBA,mBAAaY,oBAAoBlD,uBAAuBkC,yBAAyB;AACjFI,mBAAaY,oBAAoBnD,wBAAwBsC,0BAA0B;IACrF;AAEAxB,qBAAiBsC,MAAM;EACzB,CAAC;AAED,SAAAC,kBACGjD,6BAA6BkD,UAAQ;IAACpC,OAAOC;IAAa,IAAAoC,WAAA;AAAA,UAAAC,OAAAC,OAAA;AAAAC,YAC/CV,gBAAcQ,IAAA;AAAAG,eAAAH,MAAA,MACrB9C,MAAM6C,QAAQ;AAAA,aAAAC;IAAA;EAAA,CAAA;AAIvB;;;AF3NO,SAASI,uBACdC,SACAC,SAAuC;AAEvC,QAAM,CAACC,OAAOC,QAAAA,IAAYC,aAAyCC,MAAAA;AACnE,MAAIC;AAGJ,QAAMC,WAAW,CAACC,UAA0BC,gBAAAA;AAC1CN,aAAS,MAAMK,QAAAA;AAEf,QAAIC,aAAa;AACfH,sBAAgBG;IAClB;EACF;AAIA,QAAMC,cAAcC,eAAAA;AACpB,QAAMC,gBAAgBX,SAASY,WAAWH,eAAeI,SAASC;AAGlE,QAAMC,QAAQ,IAAIC,qBAAoBjB,SAASO,UAAU;IACvDW,WAAWjB,SAASiB;IACpBC,QAAQP;EACV,CAAA;AAGA,QAAMQ,UAAUC,yBAAAA;AAChB,MAAIC,UAAU;AAEd,MAAIF,SAAS;AACXE,cAAUF,QAAQJ,KAAAA;EACpB;AAGA,MAAI,CAACM,SAAS;AACZV,kBAAcW,cAAcP,KAAAA;EAC9B;AAIAQ,EAAAA,WAAU,MAAA;AACRlB,oBAAAA;EACF,CAAA;AAEA,SAAOJ;AACT;A;;;AGjCO,SAASuB,oBAAsCC,WAAuD;AAG3G,QAAMC,mBAAmBA,CAACC,OAAUC,YAAiC;AAEnE,UAAMC,iBAAiBA,MAAMJ,UAAUE,OAAOC,OAAO;AAErD,WAAAE,mBACGC,mBAAmBC,UAAQ;MAAA,IAACC,QAAK;AAAA,eAAEL,QAAQM;MAAO;MAAA,IAAAC,WAAA;AAAA,eAAAL,mBAChDD,gBAAc,CAAA,CAAA;MAAA;IAAA,CAAA;EAGrB;AAEA,SAAOH;AACT;",
6
+ "names": ["createSignal", "onCleanup", "ContextRequestEvent", "createContext", "createSolidContext", "useContext", "HostElementContext", "getHostElement", "createEffect", "createContext", "createSolidContext", "onCleanup", "onMount", "useContext", "CONTEXT_PROVIDER_EVENT", "CONTEXT_REQUEST_EVENT", "ContextProviderEvent", "ContextRequestEvent", "ContextRequestHandlerContext", "tryHandleContextRequest", "event", "handler", "getContextRequestHandler", "ContextProtocolProvider", "props", "parentHandler", "subscriptions", "WeakMap", "subscriptionRefs", "Set", "getValue", "v", "value", "handleRequest", "context", "currentValue", "subscribe", "callback", "consumerHost", "contextTarget", "composedPath", "unsubscribe", "info", "get", "delete", "ref", "WeakRef", "set", "add", "handleContextRequestEvent", "e", "stopImmediatePropagation", "handleContextProviderEvent", "containerRef", "seen", "deref", "has", "dispatchEvent", "target", "stopPropagation", "isFirstRun", "newValue", "setupListeners", "el", "addEventListener", "removeEventListener", "clear", "_$createComponent", "Provider", "children", "_el$", "_tmpl$", "_$use", "_$insert", "useWebComponentContext", "context", "options", "value", "setValue", "createSignal", "undefined", "unsubscribeFn", "callback", "newValue", "unsubscribe", "hostElement", "getHostElement", "targetElement", "element", "document", "body", "event", "ContextRequestEvent", "subscribe", "target", "handler", "getContextRequestHandler", "handled", "dispatchEvent", "onCleanup", "withContextProvider", "component", "wrappedComponent", "props", "options", "WrappedContent", "_$createComponent", "HostElementContext", "Provider", "value", "element", "children"]
7
7
  }
@@ -1 +1 @@
1
- {"inputs":{"src/internal.ts":{"bytes":1906,"imports":[{"path":"solid-js","kind":"import-statement","external":true}],"format":"esm"},"src/provider.tsx":{"bytes":26859,"imports":[{"path":"solid-js/jsx-runtime","kind":"import-statement","external":true},{"path":"solid-js","kind":"import-statement","external":true},{"path":"@dxos/web-context","kind":"import-statement","external":true}],"format":"esm"},"src/consumer.ts":{"bytes":8413,"imports":[{"path":"solid-js","kind":"import-statement","external":true},{"path":"@dxos/web-context","kind":"import-statement","external":true},{"path":"src/internal.ts","kind":"import-statement","original":"./internal"},{"path":"src/provider.tsx","kind":"import-statement","original":"./provider"}],"format":"esm"},"src/solid-element.tsx":{"bytes":6323,"imports":[{"path":"solid-js/jsx-runtime","kind":"import-statement","external":true},{"path":"src/internal.ts","kind":"import-statement","original":"./internal"}],"format":"esm"},"src/index.ts":{"bytes":676,"imports":[{"path":"@dxos/web-context","kind":"import-statement","external":true},{"path":"src/consumer.ts","kind":"import-statement","original":"./consumer"},{"path":"src/provider.tsx","kind":"import-statement","original":"./provider"},{"path":"src/solid-element.tsx","kind":"import-statement","original":"./solid-element"}],"format":"esm"}},"outputs":{"dist/lib/browser/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":22151},"dist/lib/browser/index.mjs":{"imports":[{"path":"@dxos/web-context","kind":"import-statement","external":true},{"path":"solid-js","kind":"import-statement","external":true},{"path":"@dxos/web-context","kind":"import-statement","external":true},{"path":"solid-js","kind":"import-statement","external":true},{"path":"solid-js/jsx-runtime","kind":"import-statement","external":true},{"path":"solid-js","kind":"import-statement","external":true},{"path":"@dxos/web-context","kind":"import-statement","external":true},{"path":"solid-js/jsx-runtime","kind":"import-statement","external":true}],"exports":["ContextProtocolProvider","getContextRequestHandler","tryHandleContextRequest","useWebComponentContext","withContextProvider"],"entryPoint":"src/index.ts","inputs":{"src/index.ts":{"bytesInOutput":35},"src/consumer.ts":{"bytesInOutput":910},"src/internal.ts":{"bytesInOutput":194},"src/provider.tsx":{"bytesInOutput":4196},"src/solid-element.tsx":{"bytesInOutput":398}},"bytes":6033}}}
1
+ {"inputs":{"src/internal.ts":{"bytes":1906,"imports":[{"path":"solid-js","kind":"import-statement","external":true}],"format":"esm"},"src/provider.tsx":{"bytes":28446,"imports":[{"path":"solid-js/web","kind":"import-statement","external":true},{"path":"solid-js/web","kind":"import-statement","external":true},{"path":"solid-js/web","kind":"import-statement","external":true},{"path":"solid-js/web","kind":"import-statement","external":true},{"path":"solid-js","kind":"import-statement","external":true},{"path":"@dxos/web-context","kind":"import-statement","external":true}],"format":"esm"},"src/consumer.ts":{"bytes":8413,"imports":[{"path":"solid-js","kind":"import-statement","external":true},{"path":"@dxos/web-context","kind":"import-statement","external":true},{"path":"src/internal.ts","kind":"import-statement","original":"./internal"},{"path":"src/provider.tsx","kind":"import-statement","original":"./provider"}],"format":"esm"},"src/solid-element.tsx":{"bytes":7789,"imports":[{"path":"solid-js/web","kind":"import-statement","external":true},{"path":"src/internal.ts","kind":"import-statement","original":"./internal"}],"format":"esm"},"src/index.ts":{"bytes":676,"imports":[{"path":"@dxos/web-context","kind":"import-statement","external":true},{"path":"src/consumer.ts","kind":"import-statement","original":"./consumer"},{"path":"src/provider.tsx","kind":"import-statement","original":"./provider"},{"path":"src/solid-element.tsx","kind":"import-statement","original":"./solid-element"}],"format":"esm"}},"outputs":{"dist/lib/browser/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":22271},"dist/lib/browser/index.mjs":{"imports":[{"path":"@dxos/web-context","kind":"import-statement","external":true},{"path":"solid-js","kind":"import-statement","external":true},{"path":"@dxos/web-context","kind":"import-statement","external":true},{"path":"solid-js","kind":"import-statement","external":true},{"path":"solid-js/web","kind":"import-statement","external":true},{"path":"solid-js/web","kind":"import-statement","external":true},{"path":"solid-js/web","kind":"import-statement","external":true},{"path":"solid-js/web","kind":"import-statement","external":true},{"path":"solid-js","kind":"import-statement","external":true},{"path":"@dxos/web-context","kind":"import-statement","external":true},{"path":"solid-js/web","kind":"import-statement","external":true}],"exports":["ContextProtocolProvider","getContextRequestHandler","tryHandleContextRequest","useWebComponentContext","withContextProvider"],"entryPoint":"src/index.ts","inputs":{"src/index.ts":{"bytesInOutput":35},"src/consumer.ts":{"bytesInOutput":910},"src/internal.ts":{"bytesInOutput":194},"src/provider.tsx":{"bytesInOutput":4439},"src/solid-element.tsx":{"bytesInOutput":471}},"bytes":6349}}}
@@ -15,9 +15,13 @@ function getHostElement() {
15
15
  }
16
16
 
17
17
  // src/provider.tsx
18
- import { jsx as _jsx } from "solid-js/jsx-runtime";
18
+ import { template as _$template } from "solid-js/web";
19
+ import { createComponent as _$createComponent } from "solid-js/web";
20
+ import { insert as _$insert } from "solid-js/web";
21
+ import { use as _$use } from "solid-js/web";
19
22
  import { createEffect, createContext as createSolidContext2, onCleanup, onMount, useContext as useContext2 } from "solid-js";
20
23
  import { CONTEXT_PROVIDER_EVENT, CONTEXT_REQUEST_EVENT, ContextProviderEvent, ContextRequestEvent } from "@dxos/web-context";
24
+ var _tmpl$ = /* @__PURE__ */ _$template(`<div style=display:contents>`);
21
25
  var ContextRequestHandlerContext = createSolidContext2();
22
26
  function tryHandleContextRequest(event) {
23
27
  const handler = useContext2(ContextRequestHandlerContext);
@@ -93,7 +97,9 @@ function ContextProtocolProvider(props) {
93
97
  if (!info) {
94
98
  continue;
95
99
  }
96
- const { consumerHost } = info;
100
+ const {
101
+ consumerHost
102
+ } = info;
97
103
  if (seen.has(callback)) {
98
104
  continue;
99
105
  }
@@ -143,15 +149,14 @@ function ContextProtocolProvider(props) {
143
149
  }
144
150
  subscriptionRefs.clear();
145
151
  });
146
- return /* @__PURE__ */ _jsx(ContextRequestHandlerContext.Provider, {
152
+ return _$createComponent(ContextRequestHandlerContext.Provider, {
147
153
  value: handleRequest,
148
- children: /* @__PURE__ */ _jsx("div", {
149
- ref: setupListeners,
150
- style: {
151
- display: "contents"
152
- },
153
- children: props.children
154
- })
154
+ get children() {
155
+ var _el$ = _tmpl$();
156
+ _$use(setupListeners, _el$);
157
+ _$insert(_el$, () => props.children);
158
+ return _el$;
159
+ }
155
160
  });
156
161
  }
157
162
 
@@ -186,13 +191,17 @@ function useWebComponentContext(context, options) {
186
191
  }
187
192
 
188
193
  // src/solid-element.tsx
189
- import { jsx as _jsx2 } from "solid-js/jsx-runtime";
194
+ import { createComponent as _$createComponent2 } from "solid-js/web";
190
195
  function withContextProvider(component) {
191
196
  const wrappedComponent = (props, options) => {
192
197
  const WrappedContent = () => component(props, options);
193
- return /* @__PURE__ */ _jsx2(HostElementContext.Provider, {
194
- value: options.element,
195
- children: /* @__PURE__ */ _jsx2(WrappedContent, {})
198
+ return _$createComponent2(HostElementContext.Provider, {
199
+ get value() {
200
+ return options.element;
201
+ },
202
+ get children() {
203
+ return _$createComponent2(WrappedContent, {});
204
+ }
196
205
  });
197
206
  };
198
207
  return wrappedComponent;
@@ -2,6 +2,6 @@
2
2
  "version": 3,
3
3
  "sources": ["../../../src/index.ts", "../../../src/consumer.ts", "../../../src/internal.ts", "../../../src/provider.tsx", "../../../src/solid-element.tsx"],
4
4
  "sourcesContent": ["//\n// Copyright 2025 DXOS.org\n//\n\nexport * from '@dxos/web-context';\n\nexport * from './consumer';\nexport * from './provider';\nexport * from './solid-element';\n", "//\n// Copyright 2025 DXOS.org\n//\n\nimport { type Accessor, createSignal, onCleanup } from 'solid-js';\n\nimport { ContextRequestEvent, type ContextType, type UnknownContext } from '@dxos/web-context';\n\nimport { getHostElement } from './internal';\nimport { getContextRequestHandler } from './provider';\n\n/**\n * Options for useWebComponentContext hook\n */\nexport interface UseWebComponentContextOptions {\n /**\n * Whether to subscribe to context updates.\n * If true, the returned signal will update when the provider's value changes.\n * Default: false\n */\n subscribe?: boolean;\n\n /**\n * The element to dispatch the context-request event from.\n * This is only used when there's no SolidJS provider in the tree.\n * Default: document.body\n */\n element?: HTMLElement;\n}\n\n/**\n * A SolidJS hook that requests context using the Web Component Context Protocol.\n *\n * This first tries to use the SolidJS context chain (for providers in the same\n * SolidJS tree), then falls back to dispatching a DOM event (for web component\n * providers).\n *\n * @param context - The context key to request\n * @param options - Optional configuration\n * @returns An accessor that returns the context value or undefined\n *\n * @example\n * ```tsx\n * const theme = useWebComponentContext(themeContext);\n * return <div style={{ color: theme()?.primary }}>Hello</div>;\n * ```\n *\n * @example\n * ```tsx\n * // Subscribe to updates\n * const theme = useWebComponentContext(themeContext, { subscribe: true });\n * return <div style={{ color: theme()?.primary }}>Hello</div>;\n * ```\n */\nexport function useWebComponentContext<T extends UnknownContext>(\n context: T,\n options?: UseWebComponentContextOptions,\n): Accessor<ContextType<T> | undefined> {\n const [value, setValue] = createSignal<ContextType<T> | undefined>(undefined);\n let unsubscribeFn: (() => void) | undefined;\n\n // Create callback that updates our signal\n const callback = (newValue: ContextType<T>, unsubscribe?: () => void): void => {\n setValue(() => newValue);\n // Store the latest unsubscribe function\n if (unsubscribe) {\n unsubscribeFn = unsubscribe;\n }\n };\n\n // Determine the target element for the context request\n // Use: 1) explicit element option, 2) host element from custom element context, 3) document.body\n const hostElement = getHostElement();\n const targetElement = options?.element ?? hostElement ?? document.body;\n\n // Create the context request event with contextTarget for proper re-parenting support\n const event = new ContextRequestEvent(context, callback, {\n subscribe: options?.subscribe,\n target: targetElement,\n });\n\n // First, try to handle via SolidJS context chain (synchronous)\n const handler = getContextRequestHandler();\n let handled = false;\n\n if (handler) {\n handled = handler(event);\n }\n\n // If not handled by SolidJS providers, try DOM event dispatch\n if (!handled) {\n targetElement.dispatchEvent(event);\n }\n\n // Cleanup: unsubscribe when component unmounts\n // Cleanup: unsubscribe when component unmounts\n onCleanup(() => {\n unsubscribeFn?.();\n });\n\n return value;\n}\n", "//\n// Copyright 2025 DXOS.org\n//\n\nimport { createContext as createSolidContext, useContext } from 'solid-js';\n\n/**\n * Internal SolidJS context for passing the host element to nested components.\n * This allows useWebComponentContext to dispatch events from the custom element.\n */\nexport const HostElementContext = createSolidContext<HTMLElement | undefined>();\n\n/**\n * Get the host custom element from SolidJS context.\n * Used internally by useWebComponentContext when called from a custom element.\n */\nexport function getHostElement(): HTMLElement | undefined {\n return useContext(HostElementContext);\n}\n", "//\n// Copyright 2025 DXOS.org\n//\n\nimport {\n type Accessor,\n type JSX,\n createEffect,\n createContext as createSolidContext,\n onCleanup,\n onMount,\n useContext,\n} from 'solid-js';\n\nimport {\n CONTEXT_PROVIDER_EVENT,\n CONTEXT_REQUEST_EVENT,\n type ContextCallback,\n ContextProviderEvent,\n ContextRequestEvent,\n type ContextType,\n type UnknownContext,\n} from '@dxos/web-context';\n\n/**\n * Handler function type for context requests passed via SolidJS context\n */\ntype ContextRequestHandler = (event: ContextRequestEvent<UnknownContext>) => boolean;\n\n/**\n * Internal SolidJS context for passing context request handlers down the tree.\n * This allows useWebComponentContext to work synchronously in SolidJS.\n */\nconst ContextRequestHandlerContext = createSolidContext<ContextRequestHandler | undefined>();\n\n/**\n * Try to handle a context request using the SolidJS context chain.\n * Returns true if handled, false otherwise.\n * Used internally by useWebComponentContext.\n */\nexport function tryHandleContextRequest(event: ContextRequestEvent<UnknownContext>): boolean {\n const handler = useContext(ContextRequestHandlerContext);\n if (handler) {\n return handler(event);\n }\n return false;\n}\n\n/**\n * Get the context request handler from SolidJS context.\n * Used internally by useWebComponentContext.\n */\nexport function getContextRequestHandler(): ContextRequestHandler | undefined {\n return useContext(ContextRequestHandlerContext);\n}\n\n/**\n * Props for the ContextProtocolProvider component\n */\nexport interface ContextProtocolProviderProps<T extends UnknownContext> {\n /** The context key to provide */\n context: T;\n /** The value to provide - can be a static value or an accessor for reactive updates */\n value: ContextType<T> | Accessor<ContextType<T>>;\n /** Child elements */\n children: JSX.Element;\n}\n\n/**\n * A provider component that:\n * 1. Handles context-request events from web components (via DOM events)\n * 2. Handles context requests from SolidJS consumers (via SolidJS context)\n * 3. Supports subscriptions for reactive updates\n * 4. Uses WeakRef for subscriptions to prevent memory leaks\n */\nexport function ContextProtocolProvider<T extends UnknownContext>(props: ContextProtocolProviderProps<T>): JSX.Element {\n // Get parent handler if one exists (for nested providers)\n const parentHandler = useContext(ContextRequestHandlerContext);\n\n // Track subscriptions with their stable unsubscribe functions and consumer host elements\n // We use WeakMap to hold callbacks weakly. This ensures that if a consumer\n // drops the callback, we don't leak memory.\n //\n // NOTE: This means consumers MUST retain the callback reference as long as they\n // want to receive updates (e.g. implicitly via closure in a retained component).\n interface SubscriptionInfo {\n unsubscribe: () => void;\n consumerHost: Element;\n // Store ref to allow cleaning up the Set when unsubscribing\n ref: WeakRef<ContextCallback<ContextType<T>>>;\n }\n const subscriptions = new WeakMap<ContextCallback<ContextType<T>>, SubscriptionInfo>();\n const subscriptionRefs = new Set<WeakRef<ContextCallback<ContextType<T>>>>();\n\n // Helper to get current value (handles both static and accessor)\n const getValue = (): ContextType<T> => {\n const v = props.value;\n return typeof v === 'function' ? (v as Accessor<ContextType<T>>)() : v;\n };\n\n // Core handler logic - used by both DOM events and SolidJS context\n const handleRequest = (event: ContextRequestEvent<UnknownContext>): boolean => {\n // Check if this provider handles this context (strict equality per spec)\n if (event.context !== props.context) {\n // Pass to parent handler if we don't handle this context\n if (parentHandler) {\n return parentHandler(event);\n }\n return false;\n }\n\n const currentValue = getValue();\n\n if (event.subscribe) {\n // Store the callback for future updates\n const callback = event.callback as ContextCallback<ContextType<T>>;\n\n // Get the consumer host element from the event\n // Fallback to composedPath()[0] if contextTarget is missing (standard compliance)\n const consumerHost = event.contextTarget || (event.composedPath()[0] as Element);\n\n // Create a stable unsubscribe function for this callback\n // IMPORTANT: We must pass the SAME unsubscribe function each time we call the callback\n // Lit's ContextConsumer compares unsubscribe functions and calls the old one if different\n const unsubscribe = () => {\n const info = subscriptions.get(callback);\n if (info) {\n subscriptionRefs.delete(info.ref);\n subscriptions.delete(callback);\n }\n };\n\n const ref = new WeakRef(callback);\n subscriptions.set(callback, { unsubscribe, consumerHost, ref });\n subscriptionRefs.add(ref);\n\n // Invoke callback with current value and unsubscribe function\n event.callback(currentValue, unsubscribe);\n } else {\n // One-time request - just provide the value\n event.callback(currentValue);\n }\n\n return true;\n };\n\n // Handle DOM context-request events (for web components)\n const handleContextRequestEvent = (e: Event) => {\n const event = e as ContextRequestEvent<UnknownContext>;\n if (handleRequest(event)) {\n // Stop propagation per spec recommendation\n event.stopImmediatePropagation();\n }\n };\n\n // Handle context-provider events from child providers\n // When a new provider appears below us, we re-dispatch our subscriptions\n // so consumers can re-parent to the closer provider\n const handleContextProviderEvent = (e: Event) => {\n const event = e as ContextProviderEvent<UnknownContext>;\n\n // Only handle events for our context\n if (event.context !== props.context) {\n return;\n }\n\n // Don't handle our own event\n if (containerRef && event.contextTarget === containerRef) {\n return;\n }\n\n // Re-dispatch context requests from our subscribers\n // They may now have a closer provider\n // Iterate over weak refs to re-dispatch\n // We use a separate Set of WeakRefs because WeakMap is not iterable.\n // This allows us to re-parent subscriptions when a new provider appears.\n const seen = new Set<ContextCallback<ContextType<T>>>();\n for (const ref of subscriptionRefs) {\n const callback = ref.deref();\n if (!callback) {\n subscriptionRefs.delete(ref);\n continue;\n }\n\n const info = subscriptions.get(callback);\n if (!info) {\n continue;\n }\n\n const { consumerHost } = info;\n\n // Prevent infinite loops with duplicate callbacks\n if (seen.has(callback)) {\n continue;\n }\n seen.add(callback);\n\n // Re-dispatch the context request from the consumer\n // We explicitly pass the original consumerHost as the target to preserve the causal chain\n consumerHost.dispatchEvent(\n new ContextRequestEvent(props.context, callback, { subscribe: true, target: consumerHost }),\n );\n }\n\n // Stop propagation - we've handled the re-parenting\n event.stopPropagation();\n };\n\n // Set up effect to notify subscribers when value changes\n let isFirstRun = true;\n createEffect(() => {\n // IMPORTANT: We must call the accessor DIRECTLY inside the effect to establish tracking\n // Reading props.value gives us the accessor, then we must call it to track the signal\n const v = props.value;\n const newValue = typeof v === 'function' ? (v as Accessor<ContextType<T>>)() : v;\n\n // Skip first run - only notify on changes after initial subscription\n if (isFirstRun) {\n isFirstRun = false;\n return;\n }\n\n // Notify all subscribers with their stable unsubscribe functions\n for (const ref of subscriptionRefs) {\n const callback = ref.deref();\n if (!callback) {\n subscriptionRefs.delete(ref);\n continue;\n }\n\n const info = subscriptions.get(callback);\n if (info) {\n callback(newValue, info.unsubscribe);\n }\n }\n });\n\n // Reference to container element for event listener\n let containerRef: HTMLDivElement | undefined;\n\n // Set up event listeners when element is created\n const setupListeners = (el: HTMLDivElement) => {\n containerRef = el;\n el.addEventListener(CONTEXT_REQUEST_EVENT, handleContextRequestEvent);\n el.addEventListener(CONTEXT_PROVIDER_EVENT, handleContextProviderEvent);\n };\n\n // Announce this provider when mounted\n // This allows ContextRoot implementations to replay pending requests\n // and allows parent providers to re-parent their subscriptions\n onMount(() => {\n if (containerRef) {\n containerRef.dispatchEvent(new ContextProviderEvent(props.context, containerRef));\n }\n });\n\n // Cleanup on unmount\n onCleanup(() => {\n if (containerRef) {\n containerRef.removeEventListener(CONTEXT_REQUEST_EVENT, handleContextRequestEvent);\n containerRef.removeEventListener(CONTEXT_PROVIDER_EVENT, handleContextProviderEvent);\n }\n // WeakMap clears itself, but we should clear the Set of refs\n subscriptionRefs.clear();\n });\n\n return (\n <ContextRequestHandlerContext.Provider value={handleRequest}>\n <div ref={setupListeners} style={{ display: 'contents' }}>\n {props.children}\n </div>\n </ContextRequestHandlerContext.Provider>\n );\n}\n", "//\n// Copyright 2025 DXOS.org\n//\n\nimport type { ComponentType } from 'solid-element';\nimport type { JSX } from 'solid-js';\n\nimport { HostElementContext } from './internal';\n\n/**\n * Integration utilities for using Web Component Context Protocol with solid-element.\n *\n * This module provides utilities to integrate our context protocol implementation\n * with the solid-element library for creating web components.\n *\n * @example\n * ```tsx\n * import { customElement } from 'solid-element';\n * import { withContextProvider } from './context/solid-element';\n *\n * customElement('my-button', {}, withContextProvider((props, { element }) => {\n * const theme = useWebComponentContext(themeContext, { subscribe: true });\n * return <button style={{ background: theme()?.primary }}>Click me</button>;\n * }));\n * ```\n */\n\n/**\n * Options passed by solid-element to component functions.\n * The element extends HTMLElement with additional custom element methods.\n */\nexport interface SolidElementOptions {\n element: HTMLElement & {\n renderRoot: Element | Document | ShadowRoot | DocumentFragment;\n addReleaseCallback(fn: () => void): void;\n addPropertyChangedCallback(fn: (name: string, value: unknown) => void): void;\n };\n}\n\n/**\n * Function component type for solid-element.\n * Receives props and an options object containing the host element.\n */\nexport type SolidElementComponent<P extends object = object> = (props: P, options: SolidElementOptions) => JSX.Element;\n\n/**\n * Wraps a solid-element component to provide the host element context.\n * This enables useWebComponentContext to dispatch events from the custom element\n * rather than document.body.\n *\n * @param component - The solid-element component function\n * @returns A wrapped component that provides HostElementContext\n *\n * @example\n * ```tsx\n * import { customElement } from 'solid-element';\n * import { withContextProvider, useWebComponentContext } from './context';\n *\n * customElement('themed-button', {}, withContextProvider((props, { element }) => {\n * const theme = useWebComponentContext(themeContext, { subscribe: true });\n * return (\n * <button style={{ background: theme()?.primary }}>\n * Themed Button\n * </button>\n * );\n * }));\n * ```\n */\nexport function withContextProvider<P extends object>(component: SolidElementComponent<P>): ComponentType<P> {\n // Return a new component function that wraps the original with HostElementContext\n // This enables useWebComponentContext to dispatch events from the custom element\n const wrappedComponent = (props: P, options: SolidElementOptions) => {\n // Create a child component that renders within the context\n const WrappedContent = () => component(props, options);\n\n return (\n <HostElementContext.Provider value={options.element}>\n <WrappedContent />\n </HostElementContext.Provider>\n );\n };\n\n return wrappedComponent as unknown as ComponentType<P>;\n}\n"],
5
- "mappings": "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",
6
- "names": ["createSignal", "onCleanup", "ContextRequestEvent", "createContext", "createSolidContext", "useContext", "HostElementContext", "getHostElement", "createEffect", "createContext", "createSolidContext", "onCleanup", "onMount", "useContext", "CONTEXT_PROVIDER_EVENT", "CONTEXT_REQUEST_EVENT", "ContextProviderEvent", "ContextRequestEvent", "ContextRequestHandlerContext", "tryHandleContextRequest", "event", "handler", "getContextRequestHandler", "ContextProtocolProvider", "props", "parentHandler", "subscriptions", "WeakMap", "subscriptionRefs", "Set", "getValue", "v", "value", "handleRequest", "context", "currentValue", "subscribe", "callback", "consumerHost", "contextTarget", "composedPath", "unsubscribe", "info", "get", "delete", "ref", "WeakRef", "set", "add", "handleContextRequestEvent", "e", "stopImmediatePropagation", "handleContextProviderEvent", "containerRef", "seen", "deref", "has", "dispatchEvent", "target", "stopPropagation", "isFirstRun", "newValue", "setupListeners", "el", "addEventListener", "removeEventListener", "clear", "Provider", "div", "style", "display", "children", "useWebComponentContext", "context", "options", "value", "setValue", "createSignal", "undefined", "unsubscribeFn", "callback", "newValue", "unsubscribe", "hostElement", "getHostElement", "targetElement", "element", "document", "body", "event", "ContextRequestEvent", "subscribe", "target", "handler", "getContextRequestHandler", "handled", "dispatchEvent", "onCleanup", "withContextProvider", "component", "wrappedComponent", "props", "options", "WrappedContent", "_jsx", "HostElementContext", "Provider", "value", "element"]
5
+ "mappings": "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",
6
+ "names": ["createSignal", "onCleanup", "ContextRequestEvent", "createContext", "createSolidContext", "useContext", "HostElementContext", "getHostElement", "createEffect", "createContext", "createSolidContext", "onCleanup", "onMount", "useContext", "CONTEXT_PROVIDER_EVENT", "CONTEXT_REQUEST_EVENT", "ContextProviderEvent", "ContextRequestEvent", "ContextRequestHandlerContext", "tryHandleContextRequest", "event", "handler", "getContextRequestHandler", "ContextProtocolProvider", "props", "parentHandler", "subscriptions", "WeakMap", "subscriptionRefs", "Set", "getValue", "v", "value", "handleRequest", "context", "currentValue", "subscribe", "callback", "consumerHost", "contextTarget", "composedPath", "unsubscribe", "info", "get", "delete", "ref", "WeakRef", "set", "add", "handleContextRequestEvent", "e", "stopImmediatePropagation", "handleContextProviderEvent", "containerRef", "seen", "deref", "has", "dispatchEvent", "target", "stopPropagation", "isFirstRun", "newValue", "setupListeners", "el", "addEventListener", "removeEventListener", "clear", "_$createComponent", "Provider", "children", "_el$", "_tmpl$", "_$use", "_$insert", "useWebComponentContext", "context", "options", "value", "setValue", "createSignal", "undefined", "unsubscribeFn", "callback", "newValue", "unsubscribe", "hostElement", "getHostElement", "targetElement", "element", "document", "body", "event", "ContextRequestEvent", "subscribe", "target", "handler", "getContextRequestHandler", "handled", "dispatchEvent", "onCleanup", "withContextProvider", "component", "wrappedComponent", "props", "options", "WrappedContent", "_$createComponent", "HostElementContext", "Provider", "value", "element", "children"]
7
7
  }
@@ -1 +1 @@
1
- {"inputs":{"src/internal.ts":{"bytes":1906,"imports":[{"path":"solid-js","kind":"import-statement","external":true}],"format":"esm"},"src/provider.tsx":{"bytes":26859,"imports":[{"path":"solid-js/jsx-runtime","kind":"import-statement","external":true},{"path":"solid-js","kind":"import-statement","external":true},{"path":"@dxos/web-context","kind":"import-statement","external":true}],"format":"esm"},"src/consumer.ts":{"bytes":8413,"imports":[{"path":"solid-js","kind":"import-statement","external":true},{"path":"@dxos/web-context","kind":"import-statement","external":true},{"path":"src/internal.ts","kind":"import-statement","original":"./internal"},{"path":"src/provider.tsx","kind":"import-statement","original":"./provider"}],"format":"esm"},"src/solid-element.tsx":{"bytes":6323,"imports":[{"path":"solid-js/jsx-runtime","kind":"import-statement","external":true},{"path":"src/internal.ts","kind":"import-statement","original":"./internal"}],"format":"esm"},"src/index.ts":{"bytes":676,"imports":[{"path":"@dxos/web-context","kind":"import-statement","external":true},{"path":"src/consumer.ts","kind":"import-statement","original":"./consumer"},{"path":"src/provider.tsx","kind":"import-statement","original":"./provider"},{"path":"src/solid-element.tsx","kind":"import-statement","original":"./solid-element"}],"format":"esm"}},"outputs":{"dist/lib/node-esm/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":22153},"dist/lib/node-esm/index.mjs":{"imports":[{"path":"@dxos/web-context","kind":"import-statement","external":true},{"path":"solid-js","kind":"import-statement","external":true},{"path":"@dxos/web-context","kind":"import-statement","external":true},{"path":"solid-js","kind":"import-statement","external":true},{"path":"solid-js/jsx-runtime","kind":"import-statement","external":true},{"path":"solid-js","kind":"import-statement","external":true},{"path":"@dxos/web-context","kind":"import-statement","external":true},{"path":"solid-js/jsx-runtime","kind":"import-statement","external":true}],"exports":["ContextProtocolProvider","getContextRequestHandler","tryHandleContextRequest","useWebComponentContext","withContextProvider"],"entryPoint":"src/index.ts","inputs":{"src/index.ts":{"bytesInOutput":35},"src/consumer.ts":{"bytesInOutput":910},"src/internal.ts":{"bytesInOutput":194},"src/provider.tsx":{"bytesInOutput":4196},"src/solid-element.tsx":{"bytesInOutput":398}},"bytes":6126}}}
1
+ {"inputs":{"src/internal.ts":{"bytes":1906,"imports":[{"path":"solid-js","kind":"import-statement","external":true}],"format":"esm"},"src/provider.tsx":{"bytes":28446,"imports":[{"path":"solid-js/web","kind":"import-statement","external":true},{"path":"solid-js/web","kind":"import-statement","external":true},{"path":"solid-js/web","kind":"import-statement","external":true},{"path":"solid-js/web","kind":"import-statement","external":true},{"path":"solid-js","kind":"import-statement","external":true},{"path":"@dxos/web-context","kind":"import-statement","external":true}],"format":"esm"},"src/consumer.ts":{"bytes":8413,"imports":[{"path":"solid-js","kind":"import-statement","external":true},{"path":"@dxos/web-context","kind":"import-statement","external":true},{"path":"src/internal.ts","kind":"import-statement","original":"./internal"},{"path":"src/provider.tsx","kind":"import-statement","original":"./provider"}],"format":"esm"},"src/solid-element.tsx":{"bytes":7789,"imports":[{"path":"solid-js/web","kind":"import-statement","external":true},{"path":"src/internal.ts","kind":"import-statement","original":"./internal"}],"format":"esm"},"src/index.ts":{"bytes":676,"imports":[{"path":"@dxos/web-context","kind":"import-statement","external":true},{"path":"src/consumer.ts","kind":"import-statement","original":"./consumer"},{"path":"src/provider.tsx","kind":"import-statement","original":"./provider"},{"path":"src/solid-element.tsx","kind":"import-statement","original":"./solid-element"}],"format":"esm"}},"outputs":{"dist/lib/node-esm/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":22273},"dist/lib/node-esm/index.mjs":{"imports":[{"path":"@dxos/web-context","kind":"import-statement","external":true},{"path":"solid-js","kind":"import-statement","external":true},{"path":"@dxos/web-context","kind":"import-statement","external":true},{"path":"solid-js","kind":"import-statement","external":true},{"path":"solid-js/web","kind":"import-statement","external":true},{"path":"solid-js/web","kind":"import-statement","external":true},{"path":"solid-js/web","kind":"import-statement","external":true},{"path":"solid-js/web","kind":"import-statement","external":true},{"path":"solid-js","kind":"import-statement","external":true},{"path":"@dxos/web-context","kind":"import-statement","external":true},{"path":"solid-js/web","kind":"import-statement","external":true}],"exports":["ContextProtocolProvider","getContextRequestHandler","tryHandleContextRequest","useWebComponentContext","withContextProvider"],"entryPoint":"src/index.ts","inputs":{"src/index.ts":{"bytesInOutput":35},"src/consumer.ts":{"bytesInOutput":910},"src/internal.ts":{"bytesInOutput":194},"src/provider.tsx":{"bytesInOutput":4439},"src/solid-element.tsx":{"bytesInOutput":471}},"bytes":6442}}}
@@ -1 +1 @@
1
- {"version":"7.0.0-dev.20260421.2","root":[[132,135],[143,145]],"fileNames":["lib.es5.d.ts","lib.es2015.d.ts","lib.es2016.d.ts","lib.es2017.d.ts","lib.es2018.d.ts","lib.es2019.d.ts","lib.es2020.d.ts","lib.es2021.d.ts","lib.dom.d.ts","lib.es2015.core.d.ts","lib.es2015.collection.d.ts","lib.es2015.generator.d.ts","lib.es2015.iterable.d.ts","lib.es2015.promise.d.ts","lib.es2015.proxy.d.ts","lib.es2015.reflect.d.ts","lib.es2015.symbol.d.ts","lib.es2015.symbol.wellknown.d.ts","lib.es2016.array.include.d.ts","lib.es2016.intl.d.ts","lib.es2017.arraybuffer.d.ts","lib.es2017.date.d.ts","lib.es2017.object.d.ts","lib.es2017.sharedmemory.d.ts","lib.es2017.string.d.ts","lib.es2017.intl.d.ts","lib.es2017.typedarrays.d.ts","lib.es2018.asyncgenerator.d.ts","lib.es2018.asynciterable.d.ts","lib.es2018.intl.d.ts","lib.es2018.promise.d.ts","lib.es2018.regexp.d.ts","lib.es2019.array.d.ts","lib.es2019.object.d.ts","lib.es2019.string.d.ts","lib.es2019.symbol.d.ts","lib.es2019.intl.d.ts","lib.es2020.bigint.d.ts","lib.es2020.date.d.ts","lib.es2020.promise.d.ts","lib.es2020.sharedmemory.d.ts","lib.es2020.string.d.ts","lib.es2020.symbol.wellknown.d.ts","lib.es2020.intl.d.ts","lib.es2020.number.d.ts","lib.es2021.promise.d.ts","lib.es2021.string.d.ts","lib.es2021.weakref.d.ts","lib.es2021.intl.d.ts","lib.decorators.d.ts","lib.decorators.legacy.d.ts","../../../../../node_modules/.pnpm/csstype@3.2.3/node_modules/csstype/index.d.ts","../../../../../node_modules/.pnpm/solid-js@1.9.11/node_modules/solid-js/types/jsx.d.ts","../../../../../node_modules/.pnpm/solid-js@1.9.11/node_modules/solid-js/types/reactive/scheduler.d.ts","../../../../../node_modules/.pnpm/solid-js@1.9.11/node_modules/solid-js/types/render/component.d.ts","../../../../../node_modules/.pnpm/solid-js@1.9.11/node_modules/solid-js/types/render/flow.d.ts","../../../../../node_modules/.pnpm/solid-js@1.9.11/node_modules/solid-js/types/render/Suspense.d.ts","../../../../../node_modules/.pnpm/solid-js@1.9.11/node_modules/solid-js/types/render/hydration.d.ts","../../../../../node_modules/.pnpm/solid-js@1.9.11/node_modules/solid-js/types/render/index.d.ts","../../../../../node_modules/.pnpm/solid-js@1.9.11/node_modules/solid-js/types/reactive/signal.d.ts","../../../../../node_modules/.pnpm/solid-js@1.9.11/node_modules/solid-js/types/reactive/observable.d.ts","../../../../../node_modules/.pnpm/solid-js@1.9.11/node_modules/solid-js/types/reactive/array.d.ts","../../../../../node_modules/.pnpm/solid-js@1.9.11/node_modules/solid-js/types/index.d.ts","../../../../../node_modules/.pnpm/@types+aria-query@5.0.4/node_modules/@types/aria-query/index.d.ts","../../../../../node_modules/.pnpm/@testing-library+dom@10.4.1/node_modules/@testing-library/dom/types/matches.d.ts","../../../../../node_modules/.pnpm/@testing-library+dom@10.4.1/node_modules/@testing-library/dom/types/wait-for.d.ts","../../../../../node_modules/.pnpm/@testing-library+dom@10.4.1/node_modules/@testing-library/dom/types/query-helpers.d.ts","../../../../../node_modules/.pnpm/@testing-library+dom@10.4.1/node_modules/@testing-library/dom/types/queries.d.ts","../../../../../node_modules/.pnpm/@testing-library+dom@10.4.1/node_modules/@testing-library/dom/types/get-queries-for-element.d.ts","../../../../../node_modules/.pnpm/pretty-format@27.5.1/node_modules/pretty-format/build/types.d.ts","../../../../../node_modules/.pnpm/pretty-format@27.5.1/node_modules/pretty-format/build/index.d.ts","../../../../../node_modules/.pnpm/@testing-library+dom@10.4.1/node_modules/@testing-library/dom/types/screen.d.ts","../../../../../node_modules/.pnpm/@testing-library+dom@10.4.1/node_modules/@testing-library/dom/types/wait-for-element-to-be-removed.d.ts","../../../../../node_modules/.pnpm/@testing-library+dom@10.4.1/node_modules/@testing-library/dom/types/get-node-text.d.ts","../../../../../node_modules/.pnpm/@testing-library+dom@10.4.1/node_modules/@testing-library/dom/types/events.d.ts","../../../../../node_modules/.pnpm/@testing-library+dom@10.4.1/node_modules/@testing-library/dom/types/pretty-dom.d.ts","../../../../../node_modules/.pnpm/@testing-library+dom@10.4.1/node_modules/@testing-library/dom/types/role-helpers.d.ts","../../../../../node_modules/.pnpm/@testing-library+dom@10.4.1/node_modules/@testing-library/dom/types/config.d.ts","../../../../../node_modules/.pnpm/@testing-library+dom@10.4.1/node_modules/@testing-library/dom/types/suggestions.d.ts","../../../../../node_modules/.pnpm/@testing-library+dom@10.4.1/node_modules/@testing-library/dom/types/index.d.ts","../../../../../node_modules/.pnpm/@solidjs+testing-library@0.8.10_solid-js@1.9.11/node_modules/@solidjs/testing-library/dist/index.d.ts","../../../../../node_modules/.pnpm/@vitest+pretty-format@4.1.5/node_modules/@vitest/pretty-format/dist/index.d.ts","../../../../../node_modules/.pnpm/@vitest+utils@4.1.5/node_modules/@vitest/utils/dist/display.d.ts","../../../../../node_modules/.pnpm/@vitest+utils@4.1.5/node_modules/@vitest/utils/dist/types.d.ts","../../../../../node_modules/.pnpm/@vitest+utils@4.1.5/node_modules/@vitest/utils/dist/helpers.d.ts","../../../../../node_modules/.pnpm/@vitest+utils@4.1.5/node_modules/@vitest/utils/dist/timers.d.ts","../../../../../node_modules/.pnpm/@vitest+utils@4.1.5/node_modules/@vitest/utils/dist/index.d.ts","../../../../../node_modules/.pnpm/@vitest+utils@4.1.5/node_modules/@vitest/utils/dist/types.d-BCElaP-c.d.ts","../../../../../node_modules/.pnpm/@vitest+utils@4.1.5/node_modules/@vitest/utils/dist/diff.d.ts","../../../../../node_modules/.pnpm/@vitest+runner@4.1.5/node_modules/@vitest/runner/dist/tasks.d-Bh0IjN67.d.ts","../../../../../node_modules/.pnpm/@vitest+runner@4.1.5/node_modules/@vitest/runner/dist/index.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.5_@opentelemetry+api@1.9.0_@types+node@22.10.2_@vitest+browser-playwright@4._626b8fe3e7710073f867b39a5370dce1/node_modules/vitest/dist/chunks/traces.d.D2T_R8rx.d.ts","../../../../../node_modules/.pnpm/vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2/node_modules/vite/types/hmrPayload.d.ts","../../../../../node_modules/.pnpm/vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2/node_modules/vite/dist/node/chunks/moduleRunnerTransport.d.ts","../../../../../node_modules/.pnpm/vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2/node_modules/vite/types/customEvent.d.ts","../../../../../node_modules/.pnpm/vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2/node_modules/vite/types/hot.d.ts","../../../../../node_modules/.pnpm/vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2/node_modules/vite/dist/node/module-runner.d.ts","../../../../../node_modules/.pnpm/@vitest+snapshot@4.1.5/node_modules/@vitest/snapshot/dist/environment.d-DOJxxZV9.d.ts","../../../../../node_modules/.pnpm/@vitest+snapshot@4.1.5/node_modules/@vitest/snapshot/dist/rawSnapshot.d-D_X3-62x.d.ts","../../../../../node_modules/.pnpm/@vitest+snapshot@4.1.5/node_modules/@vitest/snapshot/dist/index.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.5_@opentelemetry+api@1.9.0_@types+node@22.10.2_@vitest+browser-playwright@4._626b8fe3e7710073f867b39a5370dce1/node_modules/vitest/dist/chunks/config.d.A1h_Y6Jt.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.5_@opentelemetry+api@1.9.0_@types+node@22.10.2_@vitest+browser-playwright@4._626b8fe3e7710073f867b39a5370dce1/node_modules/vitest/dist/chunks/environment.d.CrsxCzP1.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.5_@opentelemetry+api@1.9.0_@types+node@22.10.2_@vitest+browser-playwright@4._626b8fe3e7710073f867b39a5370dce1/node_modules/vitest/dist/chunks/rpc.d.B_8sPU0w.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.5_@opentelemetry+api@1.9.0_@types+node@22.10.2_@vitest+browser-playwright@4._626b8fe3e7710073f867b39a5370dce1/node_modules/vitest/dist/chunks/worker.d.ZpHpO4yb.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.5_@opentelemetry+api@1.9.0_@types+node@22.10.2_@vitest+browser-playwright@4._626b8fe3e7710073f867b39a5370dce1/node_modules/vitest/dist/chunks/browser.d.BcoexmFG.d.ts","../../../../../node_modules/.pnpm/@vitest+spy@4.1.5/node_modules/@vitest/spy/optional-types.d.ts","../../../../../node_modules/.pnpm/@vitest+spy@4.1.5/node_modules/@vitest/spy/dist/index.d.ts","../../../../../node_modules/.pnpm/tinyrainbow@3.1.0/node_modules/tinyrainbow/dist/index.d.ts","../../../../../node_modules/.pnpm/@standard-schema+spec@1.1.0/node_modules/@standard-schema/spec/dist/index.d.ts","../../../../../node_modules/.pnpm/@types+deep-eql@4.0.2/node_modules/@types/deep-eql/index.d.ts","../../../../../node_modules/.pnpm/@types+chai@5.2.2/node_modules/@types/chai/index.d.ts","../../../../../node_modules/.pnpm/@vitest+expect@4.1.5/node_modules/@vitest/expect/dist/index.d.ts","../../../../../node_modules/.pnpm/@vitest+runner@4.1.5/node_modules/@vitest/runner/dist/utils.d.ts","../../../../../node_modules/.pnpm/tinybench@2.9.0/node_modules/tinybench/dist/index.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.5_@opentelemetry+api@1.9.0_@types+node@22.10.2_@vitest+browser-playwright@4._626b8fe3e7710073f867b39a5370dce1/node_modules/vitest/dist/chunks/benchmark.d.DAaHLpsq.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.5_@opentelemetry+api@1.9.0_@types+node@22.10.2_@vitest+browser-playwright@4._626b8fe3e7710073f867b39a5370dce1/node_modules/vitest/dist/chunks/global.d.DVsSRdQ5.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.5_@opentelemetry+api@1.9.0_@types+node@22.10.2_@vitest+browser-playwright@4._626b8fe3e7710073f867b39a5370dce1/node_modules/vitest/optional-runtime-types.d.ts","../../../../../node_modules/.pnpm/@vitest+mocker@4.1.5_vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2_/node_modules/@vitest/mocker/dist/types.d-BjI5eAwu.d.ts","../../../../../node_modules/.pnpm/@vitest+mocker@4.1.5_vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2_/node_modules/@vitest/mocker/dist/index.d-B41z0AuW.d.ts","../../../../../node_modules/.pnpm/@vitest+mocker@4.1.5_vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2_/node_modules/@vitest/mocker/dist/index.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.5_@opentelemetry+api@1.9.0_@types+node@22.10.2_@vitest+browser-playwright@4._626b8fe3e7710073f867b39a5370dce1/node_modules/vitest/dist/chunks/suite.d.udJtyAgw.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.5_@opentelemetry+api@1.9.0_@types+node@22.10.2_@vitest+browser-playwright@4._626b8fe3e7710073f867b39a5370dce1/node_modules/vitest/dist/chunks/evaluatedModules.d.BxJ5omdx.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.5_@opentelemetry+api@1.9.0_@types+node@22.10.2_@vitest+browser-playwright@4._626b8fe3e7710073f867b39a5370dce1/node_modules/vitest/dist/runners.d.ts","../../../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/utils.d.ts","../../../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/overloads.d.ts","../../../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/branding.d.ts","../../../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/messages.d.ts","../../../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/index.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.5_@opentelemetry+api@1.9.0_@types+node@22.10.2_@vitest+browser-playwright@4._626b8fe3e7710073f867b39a5370dce1/node_modules/vitest/dist/index.d.ts","../../../web-context/dist/types/src/protocol.d.ts","../../../web-context/dist/types/src/index.d.ts","../../src/internal.ts","../../src/provider.tsx","../../src/consumer.ts","../../src/consumer.test.tsx","../../../../../node_modules/.pnpm/component-register@0.8.8/node_modules/component-register/types/utils.d.ts","../../../../../node_modules/.pnpm/component-register@0.8.8/node_modules/component-register/types/mixin.d.ts","../../../../../node_modules/.pnpm/component-register@0.8.8/node_modules/component-register/types/context.d.ts","../../../../../node_modules/.pnpm/component-register@0.8.8/node_modules/component-register/types/element.d.ts","../../../../../node_modules/.pnpm/component-register@0.8.8/node_modules/component-register/types/hot.d.ts","../../../../../node_modules/.pnpm/component-register@0.8.8/node_modules/component-register/types/index.d.ts","../../../../../node_modules/.pnpm/solid-element@1.9.1_solid-js@1.9.11/node_modules/solid-element/dist/index.d.ts","../../src/solid-element.tsx","../../src/index.ts","../../src/provider.test.tsx","../../../../../node_modules/.pnpm/@testing-library+jest-dom@6.9.1/node_modules/@testing-library/jest-dom/types/matchers.d.ts","../../../../../node_modules/.pnpm/@testing-library+jest-dom@6.9.1/node_modules/@testing-library/jest-dom/types/jest.d.ts","../../../../../node_modules/.pnpm/@testing-library+jest-dom@6.9.1/node_modules/@testing-library/jest-dom/types/index.d.ts"],"fileInfos":[{"version":"a1aa1a5e065d48ef5c7bb99e38412f96","affectsGlobalScope":true,"impliedNodeFormat":1},"d4306fb2e47f74835e8674ffac07d76f","e437c5c1302869326c3bb93da85bbbcf","e4324975a566567b21d350615f1fc6ac","333b1b9a2a9ac3b8497dba5c63b5ba50","6cffacd662b6eb5fa7a36aa2ea366bfa","b4c34f9c23304dbef2d23698637ed638","e5cb86a5fc491796ecd1d2dd348d208f",{"version":"aae8996e8b5684814785a42cbbefcd79","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"01ac052ec4a79e87229f90466a9645f8","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"edba5df642941aa062a62f6328c6df3d","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"6344b55f26a4e81d9608777dbfb877dd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"3c0ed28e53d3695b363e256ec1c023fd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"4c2761daba7f17141c25baa0821ac5da","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b87656acabd63e69379ff6ffcfe52fc7","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"597469522da047a5af5222cc6989f405","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"bb3a710cbcda0533bb127712927cbe37","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"55d97a8c6fbf34a30450a7b1e5f7a298","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"0ee05eb59426d33e374226d8dcfa708b","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"e347c14030993906efcfbb88915b6a05","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b0231263857c9b6a03641acdc9280ceb","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"3b15c4a83b598cacb4067676e6f0abed","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b417d97b7934cef63b1889abec0bbfbf","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"09a6cf4032ebba60ce22a501e663f881","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"7a42de379b489e8f7b647455bebfc576","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"e22cc07e3f3cc242ba52fa3f8ea1fc58","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"2c45da767a1bfbb220848df1bc4029e4","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b44c3e0fbaf2130cdcf6ac38b120ffa1","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b612fb5cf8e5d964b92063a75207632a","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"02705151a5e1551b9162a9ed8ab763f7","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"41025e398be9215d32e4337335da8f0b","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"52684c2b1f353a5538e4f275182a54cd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"6dedb6a4f90d1df3a6fbe5693e44886c","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"ca3f36fe3562c07e0f0d71c2bebd3f6d","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"409974d6129befbb8226ddd1c6558568","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"4d9cfde2a1ae1b4925f1f9bc10848e5d","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"7e1daecc66dd564144e3bb1a0266b5fd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"a8e1d9bb35fd0637f2f9fd2b2a54f2ec","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"4f168501772a6543182765bfd5f2fbfe","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"a19c80aad1b2162103496f5ba293a732","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b69afa63cd5d059851c78adb2856ee09","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"ae2fc5d954e9b0f5feee3d481b953c27","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"1cfd3091a071d8b6feec15277643bafe","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"692bcd75364db0f65d428801c7884466","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"a0d87491913d843139e0c993650a3235","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"4ef72aa378127e7b7abba915b0110b1e","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"3ec74c6a7d4463f0254db3a74cf75646","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"84c2bdfa470d075526cce6322d81b0b6","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"0b3844c2b8c73e4e1ab91431411cad11","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"f64453cbf9671f28158677fa5c43967a","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"33f317af5428801f944a478d2c1e38e5","affectsGlobalScope":true,"impliedNodeFormat":1},"8244c8f803a86fcac606483469eb85c3",{"version":"cff20bff91597fa797201e79337e2350","impliedNodeFormat":99},{"version":"ee7a58341a32c1c40acf0e120631ed38","impliedNodeFormat":99},{"version":"ea96cad08e74fc443b29070fffc200db","impliedNodeFormat":99},{"version":"f616bd4eda6a52955e0b45f0b239ad6b","impliedNodeFormat":99},{"version":"88d30b1fc90ed5eff6e27153c6faf10d","impliedNodeFormat":99},{"version":"b771d0ebccbd75a53d786bd60a463762","impliedNodeFormat":99},{"version":"3674c8e7d9e407e51f416d9a9749ff0c","impliedNodeFormat":99},{"version":"c1b598dd205b2592e49bcc2894be4bc4","impliedNodeFormat":99},{"version":"5a92ab33358eeee4015e19dd60778485","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"a8866787b1b0406f23c70b20707d9955","impliedNodeFormat":99},{"version":"6d1be9f29a04f613dbc733b87407228a","affectsGlobalScope":true,"impliedNodeFormat":99},"56d080dfccb3c53a2d6c74c4f24252e3","3fcb673f9582e954b88e5301cea2e116","b70a23ee97272dcedf89a59eb13dce09","6294201618a7ac0b0aca11519e05beca","5404d75b707f770973bbfef8d6435b0b","66d6d2eeab2fe724d820ec343699b384","637ab145289a60542ee70edb98701030","de33595bdcb1218563e354efc70822bd","cb26617fcf48e41362825205d749886d","acfbf135a9ab3e0f7da298da54518715","e8ad67e7491d8f1f9a93b33b7415868c","77a3ee497da0d9f6f0b7977c6114cb3c","e1c7093ed7cf79a829f3949f0eea4d21","164404971a17bc3ec6026e1b1e1048cc","6085bc7c76200dfd2cb23e5b4209aca4","1aaec34fdd055abfa1bd0a4fafa64af7","756c116cd2a8fdfa70fd27becfe948b8",{"version":"e9ed9b4b8de652d57b97cd8a1448ace7","impliedNodeFormat":99},{"version":"ed63d99e1e5c371dc120bef1b84057fc","impliedNodeFormat":99},{"version":"4d3fb552bfc7fb53c9195b2fafb512c0","impliedNodeFormat":99},{"version":"fbf7ba69043f86dc506ba28263e2e783","impliedNodeFormat":99},{"version":"a611eb6935df7737a77b34b01c631a4a","impliedNodeFormat":99},{"version":"6d08f6f1d0ee294c119d0e66f826331a","impliedNodeFormat":99},{"version":"d0abb8fa314728650d85450ff59db909","impliedNodeFormat":99},{"version":"abe007be89c2ad52c4d67fc2b0f6da6b","impliedNodeFormat":99},{"version":"64c75f6d2d6076a260a3934f79d53914","impliedNodeFormat":99},{"version":"d1d3543c4fd710bf57c1620b46224928","impliedNodeFormat":99},{"version":"d8e5827b29ff5f752cb917592f40d89e","impliedNodeFormat":99},{"version":"47f7401876f3c0a5b80bd01fbdfaed2b","impliedNodeFormat":99},{"version":"c5156ca866ebe97e9684210705e65b18","impliedNodeFormat":99},{"version":"cf03c427cb6cbebe8bd7cbad8932b8e3","impliedNodeFormat":99},{"version":"421606974dd976bfc5ae48946dc1afac","impliedNodeFormat":99},{"version":"4aeb817c2b1122f77bdaeb4e884e9479","impliedNodeFormat":99},{"version":"c52142a849d48e8e4286c2eec06173ff","impliedNodeFormat":99},{"version":"0221e2868d1f0d6df8321d945764aadb","impliedNodeFormat":99},{"version":"d2f6ad6f161f0a522886f64842c96a0e","impliedNodeFormat":99},{"version":"618ace1500cc84e42bc2e47c64f8c407","impliedNodeFormat":99},{"version":"9dd3c481cc870c4bf19e59d34f030a27","impliedNodeFormat":99},{"version":"b5c81396e966d59acab5a45f66b70866","impliedNodeFormat":99},{"version":"f94aa434ddb9e71f6e80395de85f6850","impliedNodeFormat":99},{"version":"3486e8f7f01b9874a793ddd451eb62a5","impliedNodeFormat":99},{"version":"cb0e7222aae349c2fb4f89b26efa81bd","impliedNodeFormat":99},{"version":"b9129d694ae6cf810850117dda49d045","impliedNodeFormat":99},{"version":"0d7bbad7f82c886c5f36730065aec119","impliedNodeFormat":99},{"version":"369460c2755240ac2d3d006f09adb5ca","impliedNodeFormat":99},{"version":"4509fca76e721cdf9edb2d028395a117","impliedNodeFormat":99},"548472bfd4ebe2f1c8f494b960a27836",{"version":"31d11e53cef40d113a56c173ad0ac9f4","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"2c51637edf65b89d39356deff680ed36","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"b80d7107e7f3e430139e1bff13ac1681","impliedNodeFormat":99},{"version":"bd01f3bcdc72c9256e5cd5093d132df3","impliedNodeFormat":99},{"version":"b01bdc9acbaf3eb24eef464959e8e627","impliedNodeFormat":99},{"version":"2a75a1a065e5d0439fa1514d9c89b0eb","impliedNodeFormat":99},{"version":"b9129d694ae6cf810850117dda49d045","impliedNodeFormat":99},{"version":"c01d22bc96b89eedc0ed1f11d8c270ab","impliedNodeFormat":99},{"version":"c15bc5b81c64386efb6f85fb596c4349","impliedNodeFormat":99},{"version":"5794a694c1f75a9cc38cb5e9c757224e","impliedNodeFormat":99},{"version":"4040d5640775a803b2ca1aa914f7a1d4","impliedNodeFormat":99},{"version":"5ed96746ee2e7eb084ad54f0e0e518bc","impliedNodeFormat":99},{"version":"eba7786b00a4e551c36bafa71bfb1876","impliedNodeFormat":99},"8d8a98bf45979ce5401d9ca4027940cd","7d98e95d38525423bbe0f05e0a508a41","96920299d013de56061cbc74a1d658b2","439adabdf29be1212ec7acc292679f21","3eb46d20ed056dcbfa5e75bad9014661",{"version":"b46aa1886055db890de9be52a97b301e","impliedNodeFormat":99},"40f6d98a59ec5443585abf12e266651f","3b710df51e0ca8f28252f9e605f0d93e",{"version":"bf9608d74544477c9ffa7e80080d43dc","signature":"ad4036f5fd77014a40a8461430cd651c","impliedNodeFormat":1},{"version":"6b06b1ec3a704e08309bbbd0caf47883","signature":"f992ff082adc96020e816da071bc4c77","impliedNodeFormat":1},{"version":"16538c92ae1978bee5a7c0c9f836c47a","signature":"72a3c1678c8c6b8b6ba4c5820146f3e9","impliedNodeFormat":1},{"version":"6602c973034b5693a70714041324b992","signature":"abe7d9981d6018efb6b2b794f40a1607","impliedNodeFormat":1},"8f15775b6a43f379f081ac8a62c48ab1","f13377d027c934a67234952fdc9bf9a8","7d77713398f0cb826186b0b70c6af125","cd62663bc6e05fd6c1a1fdd85370e431","8669b949737db163af87523bb9456f6f","51f2b0fcfbb8205220a2065ea67f9b96",{"version":"c9a739c9fc3002ef7cdf22a0770cc41c","impliedNodeFormat":99},{"version":"6bc1a30a77d5d4c4de0f20d8c3875020","signature":"80302c73141f6c3a78e392df0618fc42","impliedNodeFormat":1},{"version":"d8debccc44f1f73f9ef6a613d72155b4","signature":"839d76aadc9223f578dbd05010f521e6","impliedNodeFormat":1},{"version":"a8ad93faffc9125c5ee2f484814aa742","signature":"abe7d9981d6018efb6b2b794f40a1607","impliedNodeFormat":1},"75ebd62d9641cc8b34ba9b09be8283a9",{"version":"753f71e16f2994f332390bb1c997b0e3","affectsGlobalScope":true,"impliedNodeFormat":1},"8def0ea0e249f49397d74a4f5bdd45a5"],"fileIdsList":[[63,80],[68],[65,66,67,68,69,72,73,74,75,76,77,78,79],[64],[71],[65,66,67],[65,66],[68,69,71],[66],[147],[146],[110],[83,89,107,108,109,111],[118],[118,119],[87,89,90],[87,89],[87],[82,87,98,99],[82,87,98],[106],[82,88],[82],[84],[82,83,84,85,86],[136],[136,137,138,139,140],[124,125],[124,125,126,127],[124,126],[124],[70],[141],[53,54,59,60,61,62],[52],[60],[53,54,59],[53],[53,60],[55,56,57,58],[93],[93,94,95,96],[95],[91,113,114,116],[91,92,104,116],[82,89,91,92,100,116],[97],[82,91,92,100,112,115],[91,92,97,100,116],[91,113,114,115,116],[91,97,101,102,103,116],[82,87,89,91,92,97,100,101,102,103,104,105,107,112,113,114,115,116,117,120,121,122,123,128],[82,89,91,92,100,101,113,114,115,116,121],[63,81,129,131,133,134],[63,131,132,133],[131,133,134,143],[63],[63,81,129,131,133],[63,131],[63,132,142],[130]],"options":{"allowJs":false,"composite":true,"emitDeclarationOnly":true,"declaration":true,"declarationMap":true,"experimentalDecorators":true,"jsx":1,"jsxImportSource":"solid-js","module":200,"noImplicitOverride":true,"noUncheckedSideEffectImports":false,"outDir":"./","rewriteRelativeImportExtensions":true,"skipLibCheck":true,"strict":true,"stripInternal":true,"sourceMap":true,"target":99,"esModuleInterop":true},"referencedMap":[[81,1],[69,2],[80,3],[65,4],[76,5],[68,6],[67,7],[72,8],[73,9],[148,10],[147,11],[146,4],[111,12],[112,13],[119,14],[120,15],[91,16],[90,17],[113,16],[98,18],[100,19],[99,20],[107,21],[89,22],[83,23],[85,24],[87,25],[88,23],[138,26],[139,26],[141,27],[137,26],[126,28],[128,29],[127,30],[125,31],[71,32],[142,33],[63,34],[53,35],[62,36],[61,36],[60,37],[57,38],[55,38],[56,39],[58,36],[59,40],[94,41],[97,42],[95,41],[96,43],[115,44],[105,45],[101,46],[102,18],[122,47],[116,48],[103,49],[121,50],[104,51],[129,52],[123,53],[135,54],[134,55],[144,56],[132,57],[145,58],[133,59],[143,60],[131,61]],"latestChangedDtsFile":"./src/provider.test.d.ts"}
1
+ {"version":"7.0.0-dev.20260421.2","root":[[132,135],[143,145]],"fileNames":["lib.es5.d.ts","lib.es2015.d.ts","lib.es2016.d.ts","lib.es2017.d.ts","lib.es2018.d.ts","lib.es2019.d.ts","lib.es2020.d.ts","lib.es2021.d.ts","lib.dom.d.ts","lib.es2015.core.d.ts","lib.es2015.collection.d.ts","lib.es2015.generator.d.ts","lib.es2015.iterable.d.ts","lib.es2015.promise.d.ts","lib.es2015.proxy.d.ts","lib.es2015.reflect.d.ts","lib.es2015.symbol.d.ts","lib.es2015.symbol.wellknown.d.ts","lib.es2016.array.include.d.ts","lib.es2016.intl.d.ts","lib.es2017.arraybuffer.d.ts","lib.es2017.date.d.ts","lib.es2017.object.d.ts","lib.es2017.sharedmemory.d.ts","lib.es2017.string.d.ts","lib.es2017.intl.d.ts","lib.es2017.typedarrays.d.ts","lib.es2018.asyncgenerator.d.ts","lib.es2018.asynciterable.d.ts","lib.es2018.intl.d.ts","lib.es2018.promise.d.ts","lib.es2018.regexp.d.ts","lib.es2019.array.d.ts","lib.es2019.object.d.ts","lib.es2019.string.d.ts","lib.es2019.symbol.d.ts","lib.es2019.intl.d.ts","lib.es2020.bigint.d.ts","lib.es2020.date.d.ts","lib.es2020.promise.d.ts","lib.es2020.sharedmemory.d.ts","lib.es2020.string.d.ts","lib.es2020.symbol.wellknown.d.ts","lib.es2020.intl.d.ts","lib.es2020.number.d.ts","lib.es2021.promise.d.ts","lib.es2021.string.d.ts","lib.es2021.weakref.d.ts","lib.es2021.intl.d.ts","lib.decorators.d.ts","lib.decorators.legacy.d.ts","../../../../../node_modules/.pnpm/csstype@3.2.3/node_modules/csstype/index.d.ts","../../../../../node_modules/.pnpm/solid-js@1.9.11/node_modules/solid-js/types/jsx.d.ts","../../../../../node_modules/.pnpm/solid-js@1.9.11/node_modules/solid-js/types/reactive/scheduler.d.ts","../../../../../node_modules/.pnpm/solid-js@1.9.11/node_modules/solid-js/types/render/component.d.ts","../../../../../node_modules/.pnpm/solid-js@1.9.11/node_modules/solid-js/types/render/flow.d.ts","../../../../../node_modules/.pnpm/solid-js@1.9.11/node_modules/solid-js/types/render/Suspense.d.ts","../../../../../node_modules/.pnpm/solid-js@1.9.11/node_modules/solid-js/types/render/hydration.d.ts","../../../../../node_modules/.pnpm/solid-js@1.9.11/node_modules/solid-js/types/render/index.d.ts","../../../../../node_modules/.pnpm/solid-js@1.9.11/node_modules/solid-js/types/reactive/signal.d.ts","../../../../../node_modules/.pnpm/solid-js@1.9.11/node_modules/solid-js/types/reactive/observable.d.ts","../../../../../node_modules/.pnpm/solid-js@1.9.11/node_modules/solid-js/types/reactive/array.d.ts","../../../../../node_modules/.pnpm/solid-js@1.9.11/node_modules/solid-js/types/index.d.ts","../../../../../node_modules/.pnpm/@types+aria-query@5.0.4/node_modules/@types/aria-query/index.d.ts","../../../../../node_modules/.pnpm/@testing-library+dom@10.4.1/node_modules/@testing-library/dom/types/matches.d.ts","../../../../../node_modules/.pnpm/@testing-library+dom@10.4.1/node_modules/@testing-library/dom/types/wait-for.d.ts","../../../../../node_modules/.pnpm/@testing-library+dom@10.4.1/node_modules/@testing-library/dom/types/query-helpers.d.ts","../../../../../node_modules/.pnpm/@testing-library+dom@10.4.1/node_modules/@testing-library/dom/types/queries.d.ts","../../../../../node_modules/.pnpm/@testing-library+dom@10.4.1/node_modules/@testing-library/dom/types/get-queries-for-element.d.ts","../../../../../node_modules/.pnpm/pretty-format@27.5.1/node_modules/pretty-format/build/types.d.ts","../../../../../node_modules/.pnpm/pretty-format@27.5.1/node_modules/pretty-format/build/index.d.ts","../../../../../node_modules/.pnpm/@testing-library+dom@10.4.1/node_modules/@testing-library/dom/types/screen.d.ts","../../../../../node_modules/.pnpm/@testing-library+dom@10.4.1/node_modules/@testing-library/dom/types/wait-for-element-to-be-removed.d.ts","../../../../../node_modules/.pnpm/@testing-library+dom@10.4.1/node_modules/@testing-library/dom/types/get-node-text.d.ts","../../../../../node_modules/.pnpm/@testing-library+dom@10.4.1/node_modules/@testing-library/dom/types/events.d.ts","../../../../../node_modules/.pnpm/@testing-library+dom@10.4.1/node_modules/@testing-library/dom/types/pretty-dom.d.ts","../../../../../node_modules/.pnpm/@testing-library+dom@10.4.1/node_modules/@testing-library/dom/types/role-helpers.d.ts","../../../../../node_modules/.pnpm/@testing-library+dom@10.4.1/node_modules/@testing-library/dom/types/config.d.ts","../../../../../node_modules/.pnpm/@testing-library+dom@10.4.1/node_modules/@testing-library/dom/types/suggestions.d.ts","../../../../../node_modules/.pnpm/@testing-library+dom@10.4.1/node_modules/@testing-library/dom/types/index.d.ts","../../../../../node_modules/.pnpm/@solidjs+testing-library@0.8.10_solid-js@1.9.11/node_modules/@solidjs/testing-library/dist/index.d.ts","../../../../../node_modules/.pnpm/@vitest+pretty-format@4.1.6/node_modules/@vitest/pretty-format/dist/index.d.ts","../../../../../node_modules/.pnpm/@vitest+utils@4.1.6/node_modules/@vitest/utils/dist/display.d.ts","../../../../../node_modules/.pnpm/@vitest+utils@4.1.6/node_modules/@vitest/utils/dist/types.d.ts","../../../../../node_modules/.pnpm/@vitest+utils@4.1.6/node_modules/@vitest/utils/dist/helpers.d.ts","../../../../../node_modules/.pnpm/@vitest+utils@4.1.6/node_modules/@vitest/utils/dist/timers.d.ts","../../../../../node_modules/.pnpm/@vitest+utils@4.1.6/node_modules/@vitest/utils/dist/index.d.ts","../../../../../node_modules/.pnpm/@vitest+utils@4.1.6/node_modules/@vitest/utils/dist/types.d-BCElaP-c.d.ts","../../../../../node_modules/.pnpm/@vitest+utils@4.1.6/node_modules/@vitest/utils/dist/diff.d.ts","../../../../../node_modules/.pnpm/@vitest+runner@4.1.6/node_modules/@vitest/runner/dist/tasks.d-DEYaIMIu.d.ts","../../../../../node_modules/.pnpm/@vitest+runner@4.1.6/node_modules/@vitest/runner/dist/index.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.6_patch_hash=a7bf6a3d21c2bc782d60d0f0f916d76f304c0eb6fbf2827e8d981408c7b5120_6da06b8fd5851d8f9190287aca0d9733/node_modules/vitest/dist/chunks/traces.d.D2T_R8rx.d.ts","../../../../../node_modules/.pnpm/vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2/node_modules/vite/types/hmrPayload.d.ts","../../../../../node_modules/.pnpm/vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2/node_modules/vite/dist/node/chunks/moduleRunnerTransport.d.ts","../../../../../node_modules/.pnpm/vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2/node_modules/vite/types/customEvent.d.ts","../../../../../node_modules/.pnpm/vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2/node_modules/vite/types/hot.d.ts","../../../../../node_modules/.pnpm/vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2/node_modules/vite/dist/node/module-runner.d.ts","../../../../../node_modules/.pnpm/@vitest+snapshot@4.1.6/node_modules/@vitest/snapshot/dist/environment.d-DOJxxZV9.d.ts","../../../../../node_modules/.pnpm/@vitest+snapshot@4.1.6/node_modules/@vitest/snapshot/dist/rawSnapshot.d-D_X3-62x.d.ts","../../../../../node_modules/.pnpm/@vitest+snapshot@4.1.6/node_modules/@vitest/snapshot/dist/index.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.6_patch_hash=a7bf6a3d21c2bc782d60d0f0f916d76f304c0eb6fbf2827e8d981408c7b5120_6da06b8fd5851d8f9190287aca0d9733/node_modules/vitest/dist/chunks/config.d.A1h_Y6Jt.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.6_patch_hash=a7bf6a3d21c2bc782d60d0f0f916d76f304c0eb6fbf2827e8d981408c7b5120_6da06b8fd5851d8f9190287aca0d9733/node_modules/vitest/dist/chunks/environment.d.CrsxCzP1.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.6_patch_hash=a7bf6a3d21c2bc782d60d0f0f916d76f304c0eb6fbf2827e8d981408c7b5120_6da06b8fd5851d8f9190287aca0d9733/node_modules/vitest/dist/chunks/rpc.d.B_8sPU0w.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.6_patch_hash=a7bf6a3d21c2bc782d60d0f0f916d76f304c0eb6fbf2827e8d981408c7b5120_6da06b8fd5851d8f9190287aca0d9733/node_modules/vitest/dist/chunks/worker.d.ZpHpO4yb.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.6_patch_hash=a7bf6a3d21c2bc782d60d0f0f916d76f304c0eb6fbf2827e8d981408c7b5120_6da06b8fd5851d8f9190287aca0d9733/node_modules/vitest/dist/chunks/browser.d.BcoexmFG.d.ts","../../../../../node_modules/.pnpm/@vitest+spy@4.1.6/node_modules/@vitest/spy/optional-types.d.ts","../../../../../node_modules/.pnpm/@vitest+spy@4.1.6/node_modules/@vitest/spy/dist/index.d.ts","../../../../../node_modules/.pnpm/tinyrainbow@3.1.0/node_modules/tinyrainbow/dist/index.d.ts","../../../../../node_modules/.pnpm/@standard-schema+spec@1.1.0/node_modules/@standard-schema/spec/dist/index.d.ts","../../../../../node_modules/.pnpm/@types+deep-eql@4.0.2/node_modules/@types/deep-eql/index.d.ts","../../../../../node_modules/.pnpm/@types+chai@5.2.2/node_modules/@types/chai/index.d.ts","../../../../../node_modules/.pnpm/@vitest+expect@4.1.6/node_modules/@vitest/expect/dist/index.d.ts","../../../../../node_modules/.pnpm/@vitest+runner@4.1.6/node_modules/@vitest/runner/dist/utils.d.ts","../../../../../node_modules/.pnpm/tinybench@2.9.0/node_modules/tinybench/dist/index.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.6_patch_hash=a7bf6a3d21c2bc782d60d0f0f916d76f304c0eb6fbf2827e8d981408c7b5120_6da06b8fd5851d8f9190287aca0d9733/node_modules/vitest/dist/chunks/benchmark.d.DAaHLpsq.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.6_patch_hash=a7bf6a3d21c2bc782d60d0f0f916d76f304c0eb6fbf2827e8d981408c7b5120_6da06b8fd5851d8f9190287aca0d9733/node_modules/vitest/dist/chunks/global.d.DVsSRdQ5.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.6_patch_hash=a7bf6a3d21c2bc782d60d0f0f916d76f304c0eb6fbf2827e8d981408c7b5120_6da06b8fd5851d8f9190287aca0d9733/node_modules/vitest/optional-runtime-types.d.ts","../../../../../node_modules/.pnpm/@vitest+mocker@4.1.6_vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2_/node_modules/@vitest/mocker/dist/types.d-BjI5eAwu.d.ts","../../../../../node_modules/.pnpm/@vitest+mocker@4.1.6_vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2_/node_modules/@vitest/mocker/dist/index.d-B41z0AuW.d.ts","../../../../../node_modules/.pnpm/@vitest+mocker@4.1.6_vite@8.0.10_@types+node@22.10.2_esbuild@0.28.0_jiti@2.6.1_terser@5.46.0_tsx@4.21.0_yaml@2.8.2_/node_modules/@vitest/mocker/dist/index.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.6_patch_hash=a7bf6a3d21c2bc782d60d0f0f916d76f304c0eb6fbf2827e8d981408c7b5120_6da06b8fd5851d8f9190287aca0d9733/node_modules/vitest/dist/chunks/suite.d.udJtyAgw.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.6_patch_hash=a7bf6a3d21c2bc782d60d0f0f916d76f304c0eb6fbf2827e8d981408c7b5120_6da06b8fd5851d8f9190287aca0d9733/node_modules/vitest/dist/chunks/evaluatedModules.d.BxJ5omdx.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.6_patch_hash=a7bf6a3d21c2bc782d60d0f0f916d76f304c0eb6fbf2827e8d981408c7b5120_6da06b8fd5851d8f9190287aca0d9733/node_modules/vitest/dist/runners.d.ts","../../../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/utils.d.ts","../../../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/overloads.d.ts","../../../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/branding.d.ts","../../../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/messages.d.ts","../../../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/index.d.ts","../../../../../node_modules/.pnpm/vitest@4.1.6_patch_hash=a7bf6a3d21c2bc782d60d0f0f916d76f304c0eb6fbf2827e8d981408c7b5120_6da06b8fd5851d8f9190287aca0d9733/node_modules/vitest/dist/index.d.ts","../../../web-context/dist/types/src/protocol.d.ts","../../../web-context/dist/types/src/index.d.ts","../../src/internal.ts","../../src/provider.tsx","../../src/consumer.ts","../../src/consumer.test.tsx","../../../../../node_modules/.pnpm/component-register@0.8.8/node_modules/component-register/types/utils.d.ts","../../../../../node_modules/.pnpm/component-register@0.8.8/node_modules/component-register/types/mixin.d.ts","../../../../../node_modules/.pnpm/component-register@0.8.8/node_modules/component-register/types/context.d.ts","../../../../../node_modules/.pnpm/component-register@0.8.8/node_modules/component-register/types/element.d.ts","../../../../../node_modules/.pnpm/component-register@0.8.8/node_modules/component-register/types/hot.d.ts","../../../../../node_modules/.pnpm/component-register@0.8.8/node_modules/component-register/types/index.d.ts","../../../../../node_modules/.pnpm/solid-element@1.9.1_solid-js@1.9.11/node_modules/solid-element/dist/index.d.ts","../../src/solid-element.tsx","../../src/index.ts","../../src/provider.test.tsx","../../../../../node_modules/.pnpm/@testing-library+jest-dom@6.9.1/node_modules/@testing-library/jest-dom/types/matchers.d.ts","../../../../../node_modules/.pnpm/@testing-library+jest-dom@6.9.1/node_modules/@testing-library/jest-dom/types/jest.d.ts","../../../../../node_modules/.pnpm/@testing-library+jest-dom@6.9.1/node_modules/@testing-library/jest-dom/types/index.d.ts"],"fileInfos":[{"version":"a1aa1a5e065d48ef5c7bb99e38412f96","affectsGlobalScope":true,"impliedNodeFormat":1},"d4306fb2e47f74835e8674ffac07d76f","e437c5c1302869326c3bb93da85bbbcf","e4324975a566567b21d350615f1fc6ac","333b1b9a2a9ac3b8497dba5c63b5ba50","6cffacd662b6eb5fa7a36aa2ea366bfa","b4c34f9c23304dbef2d23698637ed638","e5cb86a5fc491796ecd1d2dd348d208f",{"version":"aae8996e8b5684814785a42cbbefcd79","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"01ac052ec4a79e87229f90466a9645f8","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"edba5df642941aa062a62f6328c6df3d","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"6344b55f26a4e81d9608777dbfb877dd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"3c0ed28e53d3695b363e256ec1c023fd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"4c2761daba7f17141c25baa0821ac5da","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b87656acabd63e69379ff6ffcfe52fc7","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"597469522da047a5af5222cc6989f405","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"bb3a710cbcda0533bb127712927cbe37","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"55d97a8c6fbf34a30450a7b1e5f7a298","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"0ee05eb59426d33e374226d8dcfa708b","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"e347c14030993906efcfbb88915b6a05","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b0231263857c9b6a03641acdc9280ceb","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"3b15c4a83b598cacb4067676e6f0abed","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b417d97b7934cef63b1889abec0bbfbf","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"09a6cf4032ebba60ce22a501e663f881","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"7a42de379b489e8f7b647455bebfc576","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"e22cc07e3f3cc242ba52fa3f8ea1fc58","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"2c45da767a1bfbb220848df1bc4029e4","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b44c3e0fbaf2130cdcf6ac38b120ffa1","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b612fb5cf8e5d964b92063a75207632a","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"02705151a5e1551b9162a9ed8ab763f7","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"41025e398be9215d32e4337335da8f0b","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"52684c2b1f353a5538e4f275182a54cd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"6dedb6a4f90d1df3a6fbe5693e44886c","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"ca3f36fe3562c07e0f0d71c2bebd3f6d","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"409974d6129befbb8226ddd1c6558568","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"4d9cfde2a1ae1b4925f1f9bc10848e5d","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"7e1daecc66dd564144e3bb1a0266b5fd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"a8e1d9bb35fd0637f2f9fd2b2a54f2ec","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"4f168501772a6543182765bfd5f2fbfe","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"a19c80aad1b2162103496f5ba293a732","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b69afa63cd5d059851c78adb2856ee09","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"ae2fc5d954e9b0f5feee3d481b953c27","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"1cfd3091a071d8b6feec15277643bafe","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"692bcd75364db0f65d428801c7884466","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"a0d87491913d843139e0c993650a3235","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"4ef72aa378127e7b7abba915b0110b1e","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"3ec74c6a7d4463f0254db3a74cf75646","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"84c2bdfa470d075526cce6322d81b0b6","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"0b3844c2b8c73e4e1ab91431411cad11","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"f64453cbf9671f28158677fa5c43967a","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"33f317af5428801f944a478d2c1e38e5","affectsGlobalScope":true,"impliedNodeFormat":1},"8244c8f803a86fcac606483469eb85c3",{"version":"cff20bff91597fa797201e79337e2350","impliedNodeFormat":99},{"version":"ee7a58341a32c1c40acf0e120631ed38","impliedNodeFormat":99},{"version":"ea96cad08e74fc443b29070fffc200db","impliedNodeFormat":99},{"version":"f616bd4eda6a52955e0b45f0b239ad6b","impliedNodeFormat":99},{"version":"88d30b1fc90ed5eff6e27153c6faf10d","impliedNodeFormat":99},{"version":"b771d0ebccbd75a53d786bd60a463762","impliedNodeFormat":99},{"version":"3674c8e7d9e407e51f416d9a9749ff0c","impliedNodeFormat":99},{"version":"c1b598dd205b2592e49bcc2894be4bc4","impliedNodeFormat":99},{"version":"5a92ab33358eeee4015e19dd60778485","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"a8866787b1b0406f23c70b20707d9955","impliedNodeFormat":99},{"version":"6d1be9f29a04f613dbc733b87407228a","affectsGlobalScope":true,"impliedNodeFormat":99},"56d080dfccb3c53a2d6c74c4f24252e3","3fcb673f9582e954b88e5301cea2e116","b70a23ee97272dcedf89a59eb13dce09","6294201618a7ac0b0aca11519e05beca","5404d75b707f770973bbfef8d6435b0b","66d6d2eeab2fe724d820ec343699b384","637ab145289a60542ee70edb98701030","de33595bdcb1218563e354efc70822bd","cb26617fcf48e41362825205d749886d","acfbf135a9ab3e0f7da298da54518715","e8ad67e7491d8f1f9a93b33b7415868c","77a3ee497da0d9f6f0b7977c6114cb3c","e1c7093ed7cf79a829f3949f0eea4d21","164404971a17bc3ec6026e1b1e1048cc","6085bc7c76200dfd2cb23e5b4209aca4","1aaec34fdd055abfa1bd0a4fafa64af7","756c116cd2a8fdfa70fd27becfe948b8",{"version":"e9ed9b4b8de652d57b97cd8a1448ace7","impliedNodeFormat":99},{"version":"ed63d99e1e5c371dc120bef1b84057fc","impliedNodeFormat":99},{"version":"4d3fb552bfc7fb53c9195b2fafb512c0","impliedNodeFormat":99},{"version":"fbf7ba69043f86dc506ba28263e2e783","impliedNodeFormat":99},{"version":"a611eb6935df7737a77b34b01c631a4a","impliedNodeFormat":99},{"version":"6d08f6f1d0ee294c119d0e66f826331a","impliedNodeFormat":99},{"version":"d0abb8fa314728650d85450ff59db909","impliedNodeFormat":99},{"version":"abe007be89c2ad52c4d67fc2b0f6da6b","impliedNodeFormat":99},{"version":"ae1fe3925f3a2c8dfbb269ac2a50f5a6","impliedNodeFormat":99},{"version":"ee8ce731ff781ae7011350481a1af176","impliedNodeFormat":99},{"version":"08dcd98985ae16732a9be03d2b56aea6","impliedNodeFormat":99},{"version":"47f7401876f3c0a5b80bd01fbdfaed2b","impliedNodeFormat":99},{"version":"c5156ca866ebe97e9684210705e65b18","impliedNodeFormat":99},{"version":"cf03c427cb6cbebe8bd7cbad8932b8e3","impliedNodeFormat":99},{"version":"421606974dd976bfc5ae48946dc1afac","impliedNodeFormat":99},{"version":"4aeb817c2b1122f77bdaeb4e884e9479","impliedNodeFormat":99},{"version":"c52142a849d48e8e4286c2eec06173ff","impliedNodeFormat":99},{"version":"0221e2868d1f0d6df8321d945764aadb","impliedNodeFormat":99},{"version":"d2f6ad6f161f0a522886f64842c96a0e","impliedNodeFormat":99},{"version":"618ace1500cc84e42bc2e47c64f8c407","impliedNodeFormat":99},{"version":"9dd3c481cc870c4bf19e59d34f030a27","impliedNodeFormat":99},{"version":"b5c81396e966d59acab5a45f66b70866","impliedNodeFormat":99},{"version":"f94aa434ddb9e71f6e80395de85f6850","impliedNodeFormat":99},{"version":"3486e8f7f01b9874a793ddd451eb62a5","impliedNodeFormat":99},{"version":"cb0e7222aae349c2fb4f89b26efa81bd","impliedNodeFormat":99},{"version":"b9129d694ae6cf810850117dda49d045","impliedNodeFormat":99},{"version":"0d7bbad7f82c886c5f36730065aec119","impliedNodeFormat":99},{"version":"369460c2755240ac2d3d006f09adb5ca","impliedNodeFormat":99},{"version":"4509fca76e721cdf9edb2d028395a117","impliedNodeFormat":99},"548472bfd4ebe2f1c8f494b960a27836",{"version":"31d11e53cef40d113a56c173ad0ac9f4","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"2c51637edf65b89d39356deff680ed36","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"0bf0efdacfd4bfadb631a4376097e382","impliedNodeFormat":99},{"version":"bd01f3bcdc72c9256e5cd5093d132df3","impliedNodeFormat":99},{"version":"b01bdc9acbaf3eb24eef464959e8e627","impliedNodeFormat":99},{"version":"2a75a1a065e5d0439fa1514d9c89b0eb","impliedNodeFormat":99},{"version":"b9129d694ae6cf810850117dda49d045","impliedNodeFormat":99},{"version":"c01d22bc96b89eedc0ed1f11d8c270ab","impliedNodeFormat":99},{"version":"c15bc5b81c64386efb6f85fb596c4349","impliedNodeFormat":99},{"version":"5794a694c1f75a9cc38cb5e9c757224e","impliedNodeFormat":99},{"version":"4040d5640775a803b2ca1aa914f7a1d4","impliedNodeFormat":99},{"version":"5ed96746ee2e7eb084ad54f0e0e518bc","impliedNodeFormat":99},{"version":"eba7786b00a4e551c36bafa71bfb1876","impliedNodeFormat":99},"8d8a98bf45979ce5401d9ca4027940cd","7d98e95d38525423bbe0f05e0a508a41","96920299d013de56061cbc74a1d658b2","439adabdf29be1212ec7acc292679f21","3eb46d20ed056dcbfa5e75bad9014661",{"version":"b46aa1886055db890de9be52a97b301e","impliedNodeFormat":99},"40f6d98a59ec5443585abf12e266651f","3b710df51e0ca8f28252f9e605f0d93e",{"version":"bf9608d74544477c9ffa7e80080d43dc","signature":"ad4036f5fd77014a40a8461430cd651c","impliedNodeFormat":1},{"version":"6b06b1ec3a704e08309bbbd0caf47883","signature":"f992ff082adc96020e816da071bc4c77","impliedNodeFormat":1},{"version":"16538c92ae1978bee5a7c0c9f836c47a","signature":"72a3c1678c8c6b8b6ba4c5820146f3e9","impliedNodeFormat":1},{"version":"6602c973034b5693a70714041324b992","signature":"abe7d9981d6018efb6b2b794f40a1607","impliedNodeFormat":1},"8f15775b6a43f379f081ac8a62c48ab1","f13377d027c934a67234952fdc9bf9a8","7d77713398f0cb826186b0b70c6af125","cd62663bc6e05fd6c1a1fdd85370e431","8669b949737db163af87523bb9456f6f","51f2b0fcfbb8205220a2065ea67f9b96",{"version":"c9a739c9fc3002ef7cdf22a0770cc41c","impliedNodeFormat":99},{"version":"6bc1a30a77d5d4c4de0f20d8c3875020","signature":"80302c73141f6c3a78e392df0618fc42","impliedNodeFormat":1},{"version":"d8debccc44f1f73f9ef6a613d72155b4","signature":"839d76aadc9223f578dbd05010f521e6","impliedNodeFormat":1},{"version":"a8ad93faffc9125c5ee2f484814aa742","signature":"abe7d9981d6018efb6b2b794f40a1607","impliedNodeFormat":1},"75ebd62d9641cc8b34ba9b09be8283a9",{"version":"753f71e16f2994f332390bb1c997b0e3","affectsGlobalScope":true,"impliedNodeFormat":1},"8def0ea0e249f49397d74a4f5bdd45a5"],"fileIdsList":[[63,80],[68],[65,66,67,68,69,72,73,74,75,76,77,78,79],[64],[71],[65,66,67],[65,66],[68,69,71],[66],[147],[146],[110],[83,89,107,108,109,111],[118],[118,119],[87,89,90],[87,89],[87],[82,87,98,99],[82,87,98],[106],[82,88],[82],[84],[82,83,84,85,86],[136],[136,137,138,139,140],[124,125],[124,125,126,127],[124,126],[124],[70],[141],[53,54,59,60,61,62],[52],[60],[53,54,59],[53],[53,60],[55,56,57,58],[93],[93,94,95,96],[95],[91,113,114,116],[91,92,104,116],[82,89,91,92,100,116],[97],[82,91,92,100,112,115],[91,92,97,100,116],[91,113,114,115,116],[91,97,101,102,103,116],[82,87,89,91,92,97,100,101,102,103,104,105,107,112,113,114,115,116,117,120,121,122,123,128],[82,89,91,92,100,101,113,114,115,116,121],[63,81,129,131,133,134],[63,131,132,133],[131,133,134,143],[63],[63,81,129,131,133],[63,131],[63,132,142],[130]],"options":{"allowJs":false,"composite":true,"emitDeclarationOnly":true,"declaration":true,"declarationMap":true,"experimentalDecorators":true,"jsx":1,"jsxImportSource":"solid-js","module":200,"noImplicitOverride":true,"noUncheckedSideEffectImports":false,"outDir":"./","rewriteRelativeImportExtensions":true,"skipLibCheck":true,"strict":true,"stripInternal":true,"sourceMap":true,"target":99,"esModuleInterop":true},"referencedMap":[[81,1],[69,2],[80,3],[65,4],[76,5],[68,6],[67,7],[72,8],[73,9],[148,10],[147,11],[146,4],[111,12],[112,13],[119,14],[120,15],[91,16],[90,17],[113,16],[98,18],[100,19],[99,20],[107,21],[89,22],[83,23],[85,24],[87,25],[88,23],[138,26],[139,26],[141,27],[137,26],[126,28],[128,29],[127,30],[125,31],[71,32],[142,33],[63,34],[53,35],[62,36],[61,36],[60,37],[57,38],[55,38],[56,39],[58,36],[59,40],[94,41],[97,42],[95,41],[96,43],[115,44],[105,45],[101,46],[102,18],[122,47],[116,48],[103,49],[121,50],[104,51],[129,52],[123,53],[135,54],[134,55],[144,56],[132,57],[145,58],[133,59],[143,60],[131,61]],"latestChangedDtsFile":"./src/provider.test.d.ts"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/web-context-solid",
3
- "version": "0.8.4-main.bbf232bc24",
3
+ "version": "0.8.4-main.bc2380dfbc",
4
4
  "description": "Solid.js integration with web context protocol",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -8,7 +8,7 @@
8
8
  "type": "git",
9
9
  "url": "https://github.com/dxos/dxos"
10
10
  },
11
- "license": "MIT",
11
+ "license": "FSL-1.1-Apache-2.0",
12
12
  "author": "DXOS.org",
13
13
  "sideEffects": true,
14
14
  "type": "module",
@@ -27,7 +27,7 @@
27
27
  ],
28
28
  "dependencies": {
29
29
  "solid-element": "^1.9.1",
30
- "@dxos/web-context": "0.8.4-main.bbf232bc24"
30
+ "@dxos/web-context": "0.8.4-main.bc2380dfbc"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@solidjs/testing-library": "^0.8.10",