@uigraph/sdk 1.2.2 → 1.2.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/index.cjs CHANGED
@@ -3075,7 +3075,13 @@ function convertSequenceDiagramToReactFlow(mermaidCode) {
3075
3075
  },
3076
3076
  data: {
3077
3077
  source: "mermaid",
3078
- componentFields: [generateComponentFieldNameInput(data.title)]
3078
+ componentFields: [generateComponentFieldInput({
3079
+ componentFieldId: "text",
3080
+ label: "Text",
3081
+ type: require_component_type.ComponentInputType.TextBox,
3082
+ data: data.title,
3083
+ isReadonly: true
3084
+ })]
3079
3085
  }
3080
3086
  });
3081
3087
  return {
package/dist/index.mjs CHANGED
@@ -3068,7 +3068,13 @@ function convertSequenceDiagramToReactFlow(mermaidCode) {
3068
3068
  },
3069
3069
  data: {
3070
3070
  source: "mermaid",
3071
- componentFields: [generateComponentFieldNameInput(data.title)]
3071
+ componentFields: [generateComponentFieldInput({
3072
+ componentFieldId: "text",
3073
+ label: "Text",
3074
+ type: ComponentInputType.TextBox,
3075
+ data: data.title,
3076
+ isReadonly: true
3077
+ })]
3072
3078
  }
3073
3079
  });
3074
3080
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uigraph/sdk",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "type": "module",
5
5
  "license": "BUSL-1.1",
6
6
  "repository": {