@omni-co/embed 0.3.2 → 0.3.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/README.md +4 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -86,5 +86,9 @@ type EmbedSsoDashboardProps = {
|
|
|
86
86
|
|
|
87
87
|
// Optional theme setting. Can be one of "dawn", "vibes", "breeze" or "blank".
|
|
88
88
|
theme?: string;
|
|
89
|
+
|
|
90
|
+
// Optional url filter search parameter. Should be the same as the filter search parameters on a dashboard url.
|
|
91
|
+
// Example: f--inventory_items.cost=%7B"kind"%3A"EQUALS"%2C"type"%3A"number"%2C"values"%3A%5B%5D%2C"is_negative"%3Afalse%2C"is_inclusive"%3Afalse%7D&f--users.state=%7B"kind"%3A"EQUALS"%2C"type"%3A"string"%2C"values"%3A%5B"Aberdeen"%2C"Alabama"%5D%2C"is_negative"%3Afalse%7D&f--users.country=%7B"kind"%3A"EQUALS"%2C"type"%3A"string"%2C"values"%3A%5B"UK"%5D%2C"is_negative"%3Afalse%7D
|
|
92
|
+
filterSearchParam?: string;
|
|
89
93
|
};
|
|
90
94
|
```
|
package/package.json
CHANGED