@uniformdev/canvas-next-rsc-shared 19.55.2-alpha.39 → 19.55.2-alpha.45
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/dist/index.d.mts +9 -1
- package/dist/index.d.ts +9 -1
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -18,6 +18,14 @@ type PageParameters = {
|
|
|
18
18
|
[key: string]: string | undefined;
|
|
19
19
|
};
|
|
20
20
|
};
|
|
21
|
+
type PlaygroundParameters = {
|
|
22
|
+
/**
|
|
23
|
+
* Used to retrieve the composition ID of the pattern.
|
|
24
|
+
*/
|
|
25
|
+
searchParams: {
|
|
26
|
+
[key: string]: string | undefined;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
21
29
|
type SlotDefinition = {
|
|
22
30
|
name: string;
|
|
23
31
|
items: PropsWithChildren['children'][];
|
|
@@ -84,4 +92,4 @@ declare const runTest: ({ test, component, contextInstance, }: TestProps & {
|
|
|
84
92
|
index: number | null;
|
|
85
93
|
};
|
|
86
94
|
|
|
87
|
-
export { AppDirectoryContext, AppDirectoryContextState, AppDirectoryServerContext, ComponentProps, CompositionContext, PageParameters, PersonalizeProps, PersonalizeWithContextComponentProps, SlotDefinition, TestProps, runPersonalization, runTest };
|
|
95
|
+
export { AppDirectoryContext, AppDirectoryContextState, AppDirectoryServerContext, ComponentProps, CompositionContext, PageParameters, PersonalizeProps, PersonalizeWithContextComponentProps, PlaygroundParameters, SlotDefinition, TestProps, runPersonalization, runTest };
|
package/dist/index.d.ts
CHANGED
|
@@ -18,6 +18,14 @@ type PageParameters = {
|
|
|
18
18
|
[key: string]: string | undefined;
|
|
19
19
|
};
|
|
20
20
|
};
|
|
21
|
+
type PlaygroundParameters = {
|
|
22
|
+
/**
|
|
23
|
+
* Used to retrieve the composition ID of the pattern.
|
|
24
|
+
*/
|
|
25
|
+
searchParams: {
|
|
26
|
+
[key: string]: string | undefined;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
21
29
|
type SlotDefinition = {
|
|
22
30
|
name: string;
|
|
23
31
|
items: PropsWithChildren['children'][];
|
|
@@ -84,4 +92,4 @@ declare const runTest: ({ test, component, contextInstance, }: TestProps & {
|
|
|
84
92
|
index: number | null;
|
|
85
93
|
};
|
|
86
94
|
|
|
87
|
-
export { AppDirectoryContext, AppDirectoryContextState, AppDirectoryServerContext, ComponentProps, CompositionContext, PageParameters, PersonalizeProps, PersonalizeWithContextComponentProps, SlotDefinition, TestProps, runPersonalization, runTest };
|
|
95
|
+
export { AppDirectoryContext, AppDirectoryContextState, AppDirectoryServerContext, ComponentProps, CompositionContext, PageParameters, PersonalizeProps, PersonalizeWithContextComponentProps, PlaygroundParameters, SlotDefinition, TestProps, runPersonalization, runTest };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/canvas-next-rsc-shared",
|
|
3
|
-
"version": "19.55.2-alpha.
|
|
3
|
+
"version": "19.55.2-alpha.45+964f41d73",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "tsup",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"react-dom": "18.2.0"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@uniformdev/canvas": "19.55.2-alpha.
|
|
36
|
-
"@uniformdev/context": "19.55.2-alpha.
|
|
35
|
+
"@uniformdev/canvas": "19.55.2-alpha.45+964f41d73",
|
|
36
|
+
"@uniformdev/context": "19.55.2-alpha.45+964f41d73"
|
|
37
37
|
},
|
|
38
38
|
"engines": {
|
|
39
39
|
"node": ">=16.14.0"
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"publishConfig": {
|
|
47
47
|
"access": "public"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "964f41d73b2415933b7fa45e279c78dde42a0e20"
|
|
50
50
|
}
|