@frigade/react 1.32.81 → 1.32.83
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 +2 -0
- package/lib/index.d.ts +5 -0
- package/lib/index.js +199 -200
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +223 -224
- package/lib/index.mjs.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -10,6 +10,8 @@
|
|
|
10
10
|
<div align="center">
|
|
11
11
|
<a href="https://frigade.com">Website</a>
|
|
12
12
|
<span> · </span>
|
|
13
|
+
<a href="https://demo.frigade.com">Demo</a>
|
|
14
|
+
<span> · </span>
|
|
13
15
|
<a href="https://github.com/FrigadeHQ">GitHub</a>
|
|
14
16
|
<span> · </span>
|
|
15
17
|
<a href="https://docs.frigade.com">Docs</a></div>
|
package/lib/index.d.ts
CHANGED
|
@@ -290,6 +290,11 @@ interface FrigadeConfig {
|
|
|
290
290
|
* API url to use for all requests. Defaults to https://api.frigade.com
|
|
291
291
|
*/
|
|
292
292
|
apiUrl?: string;
|
|
293
|
+
/**
|
|
294
|
+
* When true, Frigade will be in read-only mode and state will not be updated. Default false.
|
|
295
|
+
* Used mostly for demo purposes.
|
|
296
|
+
*/
|
|
297
|
+
readonly?: boolean;
|
|
293
298
|
}
|
|
294
299
|
declare const FrigadeProvider: FC<FrigadeProviderProps>;
|
|
295
300
|
|