@industream/flowmaker-flowbox-ui-components 0.0.4 → 0.0.6

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -28,13 +28,13 @@ A dropdown component that fetches and displays source connections from the DataC
28
28
  <script>
29
29
  let conn = $state('');
30
30
  </script>
31
-
32
- Selection: {{ conn }}
31
+
32
+ Selection: { conn ?? '-'}
33
33
 
34
34
  <DCSourceConnection
35
35
  dcapiurl="http://localhost:8002"
36
36
  sourcetypefilter="DataBridge"
37
- onsourceselect={(newValue) => conn = newvalue}
37
+ onsourceselect={(newValue) => conn = (newValue?.id ?? '')}
38
38
  />
39
39
  ```
40
40
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@industream/flowmaker-flowbox-ui-components",
3
- "version": "0.0.4",
3
+ "version": "0.0.6",
4
4
  "description": "Reusable Svelte components for FlowMaker FlowBox UI",
5
5
  "type": "module",
6
6
  "svelte": "./dist/index.js",