@colisweb/rescript-toolkit 5.46.1 → 5.46.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colisweb/rescript-toolkit",
3
- "version": "5.46.1",
3
+ "version": "5.46.3",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "clean": "rescript clean",
@@ -6,6 +6,6 @@ let make = (~title: React.element, ~icon: module(ReactIcons.Icon), ~children) =>
6
6
  <Icon size={32} />
7
7
  <p className={"font-medium text-xl font-display text-primary-800"}> {title} </p>
8
8
  </header>
9
- <div className="p-6 min-h-64"> {children} </div>
9
+ <div className="flex p-6 min-h-64"> {children} </div>
10
10
  </section>
11
11
  }
@@ -18,6 +18,7 @@ external makeFetcherOptions: (
18
18
  ~revalidateOnFocus: bool=?,
19
19
  ~revalidateOnMount: bool=?,
20
20
  ~revalidateOnReconnect: bool=?,
21
+ ~revalidateIfStale:bool=?,
21
22
  ~refreshInterval: int=?,
22
23
  ~refreshWhenHidden: bool=?,
23
24
  ~refreshWhenOffline: bool=?,