You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+96-4Lines changed: 96 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -264,10 +264,14 @@ type CustomPluginConfigOptions =
264
264
label?: string;
265
265
}
266
266
| {
267
-
type: 'action-effect';
268
-
name: string;
269
-
label?: string;
270
-
};
267
+
type: 'action-effect';
268
+
name: string;
269
+
label?: string;
270
+
}
271
+
| {
272
+
type: 'url-parameter';
273
+
name: string;
274
+
};
271
275
```
272
276
273
277
</details>
@@ -404,6 +408,14 @@ A configurable action trigger to trigger actions in other elements within your w
404
408
405
409
A configurable action effect that can be triggered by other elements within your workbook
406
410
411
+
**URL Parameter**
412
+
413
+
A configurable URL parameter that can be read from and written to the browser's URL. This allows plugins to sync state with the URL for bookmarking and sharing.
414
+
415
+
Additional Fields
416
+
417
+
- `name : string` - The config ID used to access this URL parameter via the API
0 commit comments