sveld 0.36.7 → 0.36.9
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/lib/browser.d.ts +9 -0
- package/lib/browser.js +218 -218
- package/lib/chunk-0beysrt7.js +62 -0
- package/lib/chunk-26w7fg2w.js +13 -0
- package/lib/chunk-bbeezhqq.js +6 -0
- package/lib/chunk-cqkng6ys.js +7 -0
- package/lib/chunk-hpxd4cgm.js +1 -0
- package/lib/chunk-mdth9bg3.js +225 -0
- package/lib/chunk-n5cjh6db.js +1 -0
- package/lib/chunk-nrz6c5ew.js +10 -0
- package/lib/chunk-ptdfswsv.js +2 -0
- package/lib/chunk-syz2wqmb.js +3 -0
- package/lib/chunk-yzabyfqs.js +16 -0
- package/lib/cli-entry.js +1 -1
- package/lib/index.d.ts +9 -0
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/lib/chunk-02g49ekt.js +0 -13
- package/lib/chunk-0q7qnmx3.js +0 -2
- package/lib/chunk-4ndm4k55.js +0 -16
- package/lib/chunk-5x7ma2jx.js +0 -62
- package/lib/chunk-bjwm35xb.js +0 -1
- package/lib/chunk-c5sqd852.js +0 -1
- package/lib/chunk-fk94b2eb.js +0 -6
- package/lib/chunk-hytk5gv8.js +0 -225
- package/lib/chunk-jvqe4bt1.js +0 -3
- package/lib/chunk-tjthqdyw.js +0 -10
- package/lib/chunk-wn9w3zst.js +0 -7
package/lib/browser.d.ts
CHANGED
|
@@ -39,6 +39,13 @@ interface PendingCallDefaultCandidate {
|
|
|
39
39
|
importedName?: string;
|
|
40
40
|
}
|
|
41
41
|
|
|
42
|
+
interface PendingContextKeyCandidate {
|
|
43
|
+
importSource: string;
|
|
44
|
+
importedName: string;
|
|
45
|
+
properties: ComponentContextProp[];
|
|
46
|
+
description?: string;
|
|
47
|
+
}
|
|
48
|
+
|
|
42
49
|
interface ParsedComponentTypeScriptMetadata {
|
|
43
50
|
canonicalPropsType?: string;
|
|
44
51
|
canonicalPropNames: string[];
|
|
@@ -53,6 +60,8 @@ interface ParsedComponentTypeScriptMetadata {
|
|
|
53
60
|
referencesComponentGenerics?: boolean;
|
|
54
61
|
/** Unresolved CallExpression defaults for the cross-file pass in `generateBundle`. */
|
|
55
62
|
pendingCallDefaultCandidates?: PendingCallDefaultCandidate[];
|
|
63
|
+
/** Unresolved `setContext` import keys for the cross-file pass in `generateBundle`. */
|
|
64
|
+
pendingContextKeyCandidates?: PendingContextKeyCandidate[];
|
|
56
65
|
}
|
|
57
66
|
|
|
58
67
|
type SyntaxMode = "legacy" | "runes";
|