@colisweb/rescript-toolkit 5.0.4 → 5.0.6

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.0.4",
3
+ "version": "5.0.6",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "clean": "rescript clean",
@@ -35,7 +35,7 @@ let make = (~worker: Msw.worker, ~workerOptions: Msw.startOptions={}, ~className
35
35
  <React.Suspense fallback={<Toolkit__Ui_SpinnerFullScreen />}>
36
36
  <label
37
37
  className={cx([
38
- "fixed top-2 left-1/2 flex flex-row gap-2 items-center justify-center z-50",
38
+ "fixed top-2 left-1/2 flex flex-row gap-2 items-center justify-center z-50 print:hidden",
39
39
  mockEnabled
40
40
  ? "bg-success-100 border-success-400 text-success-700"
41
41
  : "bg-neutral-100 p-1 border rounded-lg cursor-pointer",
@@ -187,7 +187,7 @@ module App = {
187
187
  <main
188
188
  className={cx([
189
189
  className,
190
- "flex-initial w-full transition-all duration-300 ease-in-out mt-16 z-20",
190
+ "flex-initial w-full transition-all duration-300 ease-in-out mt-16 z-20 print:mt-0 print:!pl-0",
191
191
  isNavOpen ? "navOpen lg:pl-64" : "lg:pl-16",
192
192
  ])}>
193
193
  children
@@ -6158,3 +6158,7 @@ module FaChevronCircleRight = {
6158
6158
  external make: (~size: int=?, ~color: string=?, ~className: string=?) => React.element =
6159
6159
  "FaChevronCircleRight"
6160
6160
  }
6161
+ module FaBell = {
6162
+ @module("react-icons/fa") @react.component
6163
+ external make: (~size: int=?, ~color: string=?, ~className: string=?) => React.element = "FaBell"
6164
+ }