@uniformdev/canvas-next-rsc 19.61.1-alpha.10 → 19.61.1-alpha.18
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/README.md +2 -2
- package/dist/UniformComposition-38e22896.d.ts +61 -0
- package/dist/UniformComposition-d178d865.d.ts +64 -0
- package/dist/component.d.mts +76 -0
- package/dist/component.d.ts +76 -0
- package/dist/component.js +218 -0
- package/dist/component.mjs +182 -0
- package/dist/config.d.mts +6 -0
- package/dist/config.d.ts +6 -1
- package/dist/config.js +56 -29
- package/dist/config.mjs +41 -0
- package/dist/handler.d.mts +12 -0
- package/dist/handler.d.ts +12 -2
- package/dist/handler.js +703 -2
- package/dist/handler.mjs +682 -0
- package/dist/index.d.mts +245 -0
- package/dist/index.d.ts +245 -23
- package/dist/index.esm.js +974 -0
- package/dist/index.js +1011 -29
- package/dist/index.mjs +974 -0
- package/package.json +24 -16
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/canvas-next-rsc",
|
|
3
|
-
"version": "19.61.1-alpha.
|
|
3
|
+
"version": "19.61.1-alpha.18+f26189658",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"scripts": {
|
|
6
|
-
"
|
|
7
|
-
"
|
|
6
|
+
"build": "tsup",
|
|
7
|
+
"dev": "tsup --watch",
|
|
8
8
|
"lint": "eslint \"**/*.{ts,tsx}\" --fix",
|
|
9
9
|
"test": "jest --maxWorkers=1 --passWithNoTests"
|
|
10
10
|
},
|
|
@@ -26,6 +26,11 @@
|
|
|
26
26
|
"require": "./dist/config.js",
|
|
27
27
|
"import": "./dist/config.js",
|
|
28
28
|
"types": "./dist/config.d.ts"
|
|
29
|
+
},
|
|
30
|
+
"./component": {
|
|
31
|
+
"require": "./dist/component.js",
|
|
32
|
+
"import": "./dist/component.js",
|
|
33
|
+
"types": "./dist/component.d.ts"
|
|
29
34
|
}
|
|
30
35
|
},
|
|
31
36
|
"typesVersions": {
|
|
@@ -38,6 +43,9 @@
|
|
|
38
43
|
],
|
|
39
44
|
"config": [
|
|
40
45
|
"./dist/config.d.ts"
|
|
46
|
+
],
|
|
47
|
+
"component": [
|
|
48
|
+
"./dist/component.d.ts"
|
|
41
49
|
]
|
|
42
50
|
}
|
|
43
51
|
},
|
|
@@ -45,8 +53,6 @@
|
|
|
45
53
|
"/dist"
|
|
46
54
|
],
|
|
47
55
|
"devDependencies": {
|
|
48
|
-
"@types/gtag.js": "^0.0.14",
|
|
49
|
-
"@types/js-cookie": "^3.0.3",
|
|
50
56
|
"@types/node": "^18.0.0",
|
|
51
57
|
"@types/react": "^18.2.20",
|
|
52
58
|
"eslint": "^8.11.0",
|
|
@@ -55,16 +61,18 @@
|
|
|
55
61
|
"react-dom": "18.2.0"
|
|
56
62
|
},
|
|
57
63
|
"dependencies": {
|
|
58
|
-
"@uniformdev/canvas": "19.61.1-alpha.
|
|
59
|
-
"@uniformdev/canvas-
|
|
60
|
-
"@uniformdev/
|
|
61
|
-
"@uniformdev/
|
|
62
|
-
"@uniformdev/
|
|
63
|
-
"@uniformdev/
|
|
64
|
-
"@uniformdev/
|
|
65
|
-
"@
|
|
66
|
-
"
|
|
67
|
-
"
|
|
64
|
+
"@uniformdev/canvas": "19.61.1-alpha.18+f26189658",
|
|
65
|
+
"@uniformdev/canvas-next-rsc-client": "^19.61.1-alpha.18+f26189658",
|
|
66
|
+
"@uniformdev/canvas-next-rsc-shared": "^19.61.1-alpha.18+f26189658",
|
|
67
|
+
"@uniformdev/canvas-react": "19.61.1-alpha.18+f26189658",
|
|
68
|
+
"@uniformdev/context": "19.61.1-alpha.18+f26189658",
|
|
69
|
+
"@uniformdev/project-map": "19.61.1-alpha.18+f26189658",
|
|
70
|
+
"@uniformdev/redirect": "19.61.1-alpha.18+f26189658",
|
|
71
|
+
"@uniformdev/richtext": "19.61.1-alpha.18+f26189658",
|
|
72
|
+
"@uniformdev/webhooks": "19.61.1-alpha.18+f26189658",
|
|
73
|
+
"@vercel/edge-config": "^0.4.0",
|
|
74
|
+
"encoding": "^0.1.13",
|
|
75
|
+
"server-only": "^0.0.1",
|
|
68
76
|
"svix": "^1.5.0"
|
|
69
77
|
},
|
|
70
78
|
"engines": {
|
|
@@ -78,5 +86,5 @@
|
|
|
78
86
|
"publishConfig": {
|
|
79
87
|
"access": "public"
|
|
80
88
|
},
|
|
81
|
-
"gitHead": "
|
|
89
|
+
"gitHead": "f2618965881c30f1e995f45a6e880bc2f4d10ebe"
|
|
82
90
|
}
|