@cmssy/react 0.9.2 → 0.9.4
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/client.cjs +2 -0
- package/dist/client.js +2 -0
- package/dist/index.cjs +2 -0
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/package.json +3 -2
package/dist/client.cjs
CHANGED
|
@@ -1037,6 +1037,8 @@ var fields = {
|
|
|
1037
1037
|
multiselect: control("multiselect"),
|
|
1038
1038
|
radio: control("radio"),
|
|
1039
1039
|
repeater: control("repeater"),
|
|
1040
|
+
table: control("table"),
|
|
1041
|
+
json: control("json"),
|
|
1040
1042
|
form: control("form"),
|
|
1041
1043
|
pageSelector: control("pageSelector")
|
|
1042
1044
|
};
|
package/dist/client.js
CHANGED
|
@@ -1035,6 +1035,8 @@ var fields = {
|
|
|
1035
1035
|
multiselect: control("multiselect"),
|
|
1036
1036
|
radio: control("radio"),
|
|
1037
1037
|
repeater: control("repeater"),
|
|
1038
|
+
table: control("table"),
|
|
1039
|
+
json: control("json"),
|
|
1038
1040
|
form: control("form"),
|
|
1039
1041
|
pageSelector: control("pageSelector")
|
|
1040
1042
|
};
|
package/dist/index.cjs
CHANGED
package/dist/index.d.cts
CHANGED
|
@@ -25,6 +25,8 @@ declare const fields: {
|
|
|
25
25
|
multiselect: (opts?: FieldControl) => FieldDefinition;
|
|
26
26
|
radio: (opts?: FieldControl) => FieldDefinition;
|
|
27
27
|
repeater: (opts?: FieldControl) => FieldDefinition;
|
|
28
|
+
table: (opts?: FieldControl) => FieldDefinition;
|
|
29
|
+
json: (opts?: FieldControl) => FieldDefinition;
|
|
28
30
|
form: (opts?: FieldControl) => FieldDefinition;
|
|
29
31
|
pageSelector: (opts?: FieldControl) => FieldDefinition;
|
|
30
32
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -25,6 +25,8 @@ declare const fields: {
|
|
|
25
25
|
multiselect: (opts?: FieldControl) => FieldDefinition;
|
|
26
26
|
radio: (opts?: FieldControl) => FieldDefinition;
|
|
27
27
|
repeater: (opts?: FieldControl) => FieldDefinition;
|
|
28
|
+
table: (opts?: FieldControl) => FieldDefinition;
|
|
29
|
+
json: (opts?: FieldControl) => FieldDefinition;
|
|
28
30
|
form: (opts?: FieldControl) => FieldDefinition;
|
|
29
31
|
pageSelector: (opts?: FieldControl) => FieldDefinition;
|
|
30
32
|
};
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cmssy/react",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.4",
|
|
4
4
|
"description": "React blocks, renderers, data client and editor bridge for cmssy headless sites",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cmssy",
|
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
"@testing-library/react": "^16.1.0",
|
|
48
48
|
"@types/react": "^19.0.0",
|
|
49
49
|
"@types/react-dom": "^19.0.0",
|
|
50
|
+
"graphql": "^16.10.0",
|
|
50
51
|
"jsdom": "^25.0.0",
|
|
51
52
|
"react": "^19.0.0",
|
|
52
53
|
"react-dom": "^19.0.0",
|
|
@@ -55,7 +56,7 @@
|
|
|
55
56
|
"vitest": "^2.1.0"
|
|
56
57
|
},
|
|
57
58
|
"dependencies": {
|
|
58
|
-
"@cmssy/types": "
|
|
59
|
+
"@cmssy/types": "0.22.0"
|
|
59
60
|
},
|
|
60
61
|
"scripts": {
|
|
61
62
|
"build": "tsup",
|