@cmssy/react 0.9.0 → 0.9.2

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
@@ -1023,6 +1023,7 @@ var fields = {
1023
1023
  text: control("text"),
1024
1024
  textarea: control("textarea"),
1025
1025
  richText: control("richText"),
1026
+ markdown: control("markdown"),
1026
1027
  number: control("number"),
1027
1028
  date: control("date"),
1028
1029
  datetime: control("datetime"),
@@ -1035,7 +1036,9 @@ var fields = {
1035
1036
  select: control("select"),
1036
1037
  multiselect: control("multiselect"),
1037
1038
  radio: control("radio"),
1038
- repeater: control("repeater")
1039
+ repeater: control("repeater"),
1040
+ form: control("form"),
1041
+ pageSelector: control("pageSelector")
1039
1042
  };
1040
1043
 
1041
1044
  // src/commerce/money.ts
package/dist/client.js CHANGED
@@ -1021,6 +1021,7 @@ var fields = {
1021
1021
  text: control("text"),
1022
1022
  textarea: control("textarea"),
1023
1023
  richText: control("richText"),
1024
+ markdown: control("markdown"),
1024
1025
  number: control("number"),
1025
1026
  date: control("date"),
1026
1027
  datetime: control("datetime"),
@@ -1033,7 +1034,9 @@ var fields = {
1033
1034
  select: control("select"),
1034
1035
  multiselect: control("multiselect"),
1035
1036
  radio: control("radio"),
1036
- repeater: control("repeater")
1037
+ repeater: control("repeater"),
1038
+ form: control("form"),
1039
+ pageSelector: control("pageSelector")
1037
1040
  };
1038
1041
 
1039
1042
  // src/commerce/money.ts
package/dist/index.cjs CHANGED
@@ -16,6 +16,7 @@ var fields = {
16
16
  text: control("text"),
17
17
  textarea: control("textarea"),
18
18
  richText: control("richText"),
19
+ markdown: control("markdown"),
19
20
  number: control("number"),
20
21
  date: control("date"),
21
22
  datetime: control("datetime"),
@@ -28,7 +29,9 @@ var fields = {
28
29
  select: control("select"),
29
30
  multiselect: control("multiselect"),
30
31
  radio: control("radio"),
31
- repeater: control("repeater")
32
+ repeater: control("repeater"),
33
+ form: control("form"),
34
+ pageSelector: control("pageSelector")
32
35
  };
33
36
 
34
37
  // src/registry.ts
package/dist/index.d.cts CHANGED
@@ -11,6 +11,7 @@ declare const fields: {
11
11
  text: (opts?: FieldControl) => FieldDefinition;
12
12
  textarea: (opts?: FieldControl) => FieldDefinition;
13
13
  richText: (opts?: FieldControl) => FieldDefinition;
14
+ markdown: (opts?: FieldControl) => FieldDefinition;
14
15
  number: (opts?: FieldControl) => FieldDefinition;
15
16
  date: (opts?: FieldControl) => FieldDefinition;
16
17
  datetime: (opts?: FieldControl) => FieldDefinition;
@@ -24,6 +25,8 @@ declare const fields: {
24
25
  multiselect: (opts?: FieldControl) => FieldDefinition;
25
26
  radio: (opts?: FieldControl) => FieldDefinition;
26
27
  repeater: (opts?: FieldControl) => FieldDefinition;
28
+ form: (opts?: FieldControl) => FieldDefinition;
29
+ pageSelector: (opts?: FieldControl) => FieldDefinition;
27
30
  };
28
31
 
29
32
  interface CmssyServerPageProps {
package/dist/index.d.ts CHANGED
@@ -11,6 +11,7 @@ declare const fields: {
11
11
  text: (opts?: FieldControl) => FieldDefinition;
12
12
  textarea: (opts?: FieldControl) => FieldDefinition;
13
13
  richText: (opts?: FieldControl) => FieldDefinition;
14
+ markdown: (opts?: FieldControl) => FieldDefinition;
14
15
  number: (opts?: FieldControl) => FieldDefinition;
15
16
  date: (opts?: FieldControl) => FieldDefinition;
16
17
  datetime: (opts?: FieldControl) => FieldDefinition;
@@ -24,6 +25,8 @@ declare const fields: {
24
25
  multiselect: (opts?: FieldControl) => FieldDefinition;
25
26
  radio: (opts?: FieldControl) => FieldDefinition;
26
27
  repeater: (opts?: FieldControl) => FieldDefinition;
28
+ form: (opts?: FieldControl) => FieldDefinition;
29
+ pageSelector: (opts?: FieldControl) => FieldDefinition;
27
30
  };
28
31
 
29
32
  interface CmssyServerPageProps {
package/dist/index.js CHANGED
@@ -14,6 +14,7 @@ var fields = {
14
14
  text: control("text"),
15
15
  textarea: control("textarea"),
16
16
  richText: control("richText"),
17
+ markdown: control("markdown"),
17
18
  number: control("number"),
18
19
  date: control("date"),
19
20
  datetime: control("datetime"),
@@ -26,7 +27,9 @@ var fields = {
26
27
  select: control("select"),
27
28
  multiselect: control("multiselect"),
28
29
  radio: control("radio"),
29
- repeater: control("repeater")
30
+ repeater: control("repeater"),
31
+ form: control("form"),
32
+ pageSelector: control("pageSelector")
30
33
  };
31
34
 
32
35
  // src/registry.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cmssy/react",
3
- "version": "0.9.0",
3
+ "version": "0.9.2",
4
4
  "description": "React blocks, renderers, data client and editor bridge for cmssy headless sites",
5
5
  "keywords": [
6
6
  "cmssy",
@@ -55,7 +55,7 @@
55
55
  "vitest": "^2.1.0"
56
56
  },
57
57
  "dependencies": {
58
- "@cmssy/types": "^0.19.0"
58
+ "@cmssy/types": "^0.20.0"
59
59
  },
60
60
  "scripts": {
61
61
  "build": "tsup",