@@ -32,7 +32,6 @@ To test your plugin in Sigma Plugin Dev Playground, you must:
3232To test a development version of a registered plugin, you must:
3333
3434- Have either:
35-
3635 - An Admin account type
3736 - A custom account type that supports plugin developer feature permissions
3837
@@ -106,7 +105,6 @@ and a React Hooks API.
106105 ```
107106
1081077 . Start developing:
109-
110108 - Get started with Sigma’s Plugin APIs.
111109 - Test your plugin directly in a Sigma workbook using the Sigma Plugin Dev
112110 Playground.
@@ -264,14 +262,14 @@ type CustomPluginConfigOptions =
264262 label?: string;
265263 }
266264 | {
267- type: ' action-effect' ;
268- name: string;
269- label?: string;
270- }
265+ type: ' action-effect' ;
266+ name: string;
267+ label?: string;
268+ }
271269 | {
272- type: ' url-parameter' ;
273- name: string;
274- };
270+ type: ' url-parameter' ;
271+ name: string;
272+ };
275273```
276274
277275</details>
@@ -814,9 +812,12 @@ console.log(urlParam?.value);
814812client.config.setUrlParameter(' myParamId' , ' new-value' );
815813
816814// Subscribe to changes
817- const unsubscribe = client.config.subscribeToUrlParameter(' myParamId' , (urlParam) => {
818- console.log(' URL parameter updated:' , urlParam.value);
819- });
815+ const unsubscribe = client.config.subscribeToUrlParameter(
816+ ' myParamId' ,
817+ urlParam => {
818+ console.log(' URL parameter updated:' , urlParam.value);
819+ },
820+ );
820821```
821822
822823#### useInteraction()
@@ -904,33 +905,27 @@ Github.
904905# ## Available Plugins
905906
906907- ** Recharts Bar Chart** - A basic bar chart built with the Recharts library.
907-
908908 - [Source Code](https://github.com/sigmacomputing/sigma-sample-plugins/tree/main/sample-plugin-bar-chart)
909909 - Production URL: https://sigma-sample-bar-chart-54049.netlify.app/
910910
911911- ** D3 Candlestick** - A candlestick visualization built with D3.
912-
913912 - [Source Code](https://github.com/sigmacomputing/sigma-sample-plugins/tree/main/sample-plugin-bar-chart)
914913 - Production URL: https://sigma-sample-candlestick-chart-1664e5.netlify.app/
915914
916915- ** Narrative Science Quill** - Demonstrates secure text entry.
917-
918916 - [Source Code] ()
919917 - Production URL: https://narrativescience-quill-3ee312.netlify.app/
920918
921919- ** D3 Graph** - Demonstrates usage of multiple data sources and in-memory
922920 joins.
923-
924921 - [Source Code](https://github.com/sigmacomputing/sigma-sample-plugins/tree/main/d3-graph)
925922 - Production URL: https://d3-graph-3a0d0f.netlify.app/
926923
927924- ** D3 Sunburst** - A sunburst visualization built with D3.
928-
929925 - [Source Code](https://github.com/sigmacomputing/sigma-sample-plugins/tree/main/d3-sunburst)
930926 - Production URL: https://d3-sunburst-b97c7c.netlify.app/
931927
932928- ** Frappe Heatmap** - A basic Frappe visualization example.
933-
934929 - [Source Code](https://github.com/sigmacomputing/sigma-sample-plugins/tree/main/frappe-heatmap)
935930 - Production URL: https://frappe-heatmap-9a4163.netlify.app/
936931
0 commit comments