@cmssy/react 0.9.2 → 0.9.3

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 CHANGED
@@ -1037,6 +1037,7 @@ var fields = {
1037
1037
  multiselect: control("multiselect"),
1038
1038
  radio: control("radio"),
1039
1039
  repeater: control("repeater"),
1040
+ table: control("table"),
1040
1041
  form: control("form"),
1041
1042
  pageSelector: control("pageSelector")
1042
1043
  };
package/dist/client.js CHANGED
@@ -1035,6 +1035,7 @@ var fields = {
1035
1035
  multiselect: control("multiselect"),
1036
1036
  radio: control("radio"),
1037
1037
  repeater: control("repeater"),
1038
+ table: control("table"),
1038
1039
  form: control("form"),
1039
1040
  pageSelector: control("pageSelector")
1040
1041
  };
package/dist/index.cjs CHANGED
@@ -30,6 +30,7 @@ var fields = {
30
30
  multiselect: control("multiselect"),
31
31
  radio: control("radio"),
32
32
  repeater: control("repeater"),
33
+ table: control("table"),
33
34
  form: control("form"),
34
35
  pageSelector: control("pageSelector")
35
36
  };
package/dist/index.d.cts CHANGED
@@ -25,6 +25,7 @@ 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;
28
29
  form: (opts?: FieldControl) => FieldDefinition;
29
30
  pageSelector: (opts?: FieldControl) => FieldDefinition;
30
31
  };
package/dist/index.d.ts CHANGED
@@ -25,6 +25,7 @@ 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;
28
29
  form: (opts?: FieldControl) => FieldDefinition;
29
30
  pageSelector: (opts?: FieldControl) => FieldDefinition;
30
31
  };
package/dist/index.js CHANGED
@@ -28,6 +28,7 @@ var fields = {
28
28
  multiselect: control("multiselect"),
29
29
  radio: control("radio"),
30
30
  repeater: control("repeater"),
31
+ table: control("table"),
31
32
  form: control("form"),
32
33
  pageSelector: control("pageSelector")
33
34
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cmssy/react",
3
- "version": "0.9.2",
3
+ "version": "0.9.3",
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": "^0.20.0"
59
+ "@cmssy/types": "0.21.0"
59
60
  },
60
61
  "scripts": {
61
62
  "build": "tsup",