@colisweb/rescript-toolkit 4.18.6 → 4.19.0

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": "4.18.6",
3
+ "version": "4.19.0",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "clean": "rescript clean",
@@ -29,12 +29,12 @@
29
29
  "dependencies": {
30
30
  "@colisweb/bs-react-intl-extractor-bin": "0.12.2",
31
31
  "@colisweb/restorative": "1.0.0",
32
- "@datadog/browser-rum": "4.48.2",
32
+ "@datadog/browser-rum": "4.50.1",
33
33
  "@headlessui/react": "1.7.17",
34
34
  "@headlessui/tailwindcss": "0.2.0",
35
35
  "@reach/auto-id": "0.18.0",
36
36
  "@rescript/react": "0.11.0",
37
- "autoprefixer": "10.4.15",
37
+ "autoprefixer": "10.4.16",
38
38
  "axios": "0.24.0",
39
39
  "bs-axios": "0.0.43",
40
40
  "case": "1.6.3",
@@ -46,20 +46,20 @@
46
46
  "lenses-ppx": "6.1.10",
47
47
  "list-selectors": "2.0.1",
48
48
  "lodash": "4.17.21",
49
- "postcss": "8.4.29",
49
+ "postcss": "8.4.31",
50
50
  "postcss-preset-env": "8.0.1",
51
51
  "prismjs": "1.29.0",
52
52
  "react": "18.2.0",
53
53
  "react-big-calendar": "1.5.2",
54
54
  "react-datepicker": "3.8.0",
55
- "react-day-picker": "8.8.1",
55
+ "react-day-picker": "8.8.2",
56
56
  "react-dom": "18.2.0",
57
57
  "react-error-boundary": "4.0.11",
58
58
  "react-helmet": "6.1.0",
59
59
  "react-icons": "4.11.0",
60
- "react-intl": "6.4.6",
60
+ "react-intl": "6.4.7",
61
61
  "react-portal": "4.2.2",
62
- "react-select": "5.7.4",
62
+ "react-select": "5.7.7",
63
63
  "react-table": "7.8.0",
64
64
  "react-use": "17.4.0",
65
65
  "reason-promise": "1.1.5",
@@ -68,20 +68,20 @@
68
68
  "rescript-classnames": "6.0.0",
69
69
  "rescript-react-update": "5.0.2",
70
70
  "sanitize-html": "1.27.4",
71
- "swr": "2.2.2",
71
+ "swr": "2.2.4",
72
72
  "tailwindcss": "3.3.3",
73
- "use-local-storage-state": "19.0.4"
73
+ "use-local-storage-state": "19.1.0"
74
74
  },
75
75
  "devDependencies": {
76
- "@babel/core": "7.22.17",
77
- "@jihchi/vite-plugin-rescript": "5.3.0",
76
+ "@babel/core": "7.23.2",
77
+ "@jihchi/vite-plugin-rescript": "5.3.1",
78
78
  "@mdx-js/mdx": "2.3.0",
79
79
  "@mdx-js/react": "2.3.0",
80
80
  "@mdx-js/rollup": "2.3.0",
81
81
  "@originjs/vite-plugin-commonjs": "1.0.3",
82
- "@vitejs/plugin-react": "4.0.4",
82
+ "@vitejs/plugin-react": "4.1.0",
83
83
  "babel-loader": "8.2.5",
84
- "highlight.js": "11.8.0",
84
+ "highlight.js": "11.9.0",
85
85
  "husky": "8.0.3",
86
86
  "is-ci": "3.0.1",
87
87
  "raw-loader": "4.0.2",
@@ -90,8 +90,8 @@
90
90
  "rehype-autolink-headings": "^6.1.1",
91
91
  "rehype-highlight": "^6.0.0",
92
92
  "rehype-slug": "^5.1.0",
93
- "sass": "1.66.1",
94
- "vite": "4.4.9"
93
+ "sass": "1.69.3",
94
+ "vite": "4.4.11"
95
95
  },
96
96
  "packageManager": "yarn@3.3.1"
97
97
  }
@@ -90,6 +90,7 @@ let make = (
90
90
  ?autoFocus
91
91
  id=?inputId
92
92
  onChange=onInputChange
93
+ autocomplete="off"
93
94
  className={cx([
94
95
  "w-full border py-2 rounded pl-3 pr-10 text-sm leading-5 text-gray-900 focus:ring-0",
95
96
  isInvalid ? "border-danger-500" : "border-gray-300",
@@ -20,6 +20,7 @@ module Input = {
20
20
  ~onChange: ReactEvent.Form.t => unit,
21
21
  ~className: string=?,
22
22
  ~placeholder: string=?,
23
+ ~autocomplete: string=?,
23
24
  ~id: string=?,
24
25
  ~autoFocus: bool=?,
25
26
  ~displayValue: Js.Nullable.t<suggestion<'value>> => string=?,