@cmssy/react 0.9.0 → 0.9.1

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"),
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"),
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"),
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;
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;
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"),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cmssy/react",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
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",