Skip to content

Commit c401ee1

Browse files
committed
Merge branch 'main' of github.com:deriv-com/ui into aizad/FEQ-1560/password-input
2 parents fced196 + 63365d8 commit c401ee1

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## [1.1.2](https://github.com/deriv-com/ui/compare/v1.1.1...v1.1.2) (2024-02-01)
2+
3+
4+
### 🐛 Bug Fixes
5+
6+
* exported missing components and hooks ([7471d04](https://github.com/deriv-com/ui/commit/7471d04183804c1d73c19f8184fe9b8349d8414c))
7+
* exported missing components and hooks ([87c5c85](https://github.com/deriv-com/ui/commit/87c5c85ee7a24d2d1da1062872fe23c1b01445d6))
8+
19
## [1.1.1](https://github.com/deriv-com/ui/compare/v1.1.0...v1.1.1) (2024-01-31)
210

311

lib/main.ts

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
export { Button } from "./components/Button";
2+
export { Dropdown } from "./components/Dropdown";
23
export { Input } from "./components/Input";
3-
export { PageLayout } from "./components/Layout";
44
export { Loader } from "./components/Loader";
5+
export { PageLayout } from "./components/Layout";
56
export { Tab, Tabs } from "./components/Tabs";
67
export { Text } from "./components/Text";
7-
export { Tooltip } from "./components/Tooltip";
88
export { ToggleSwitch } from "./components/ToggleSwitch";
9-
export { PasswordInput } from "./components/PasswordInput";
9+
export { Tooltip } from "./components/Tooltip";
10+
export { useDevice } from "./hooks/useDevice";
11+
export { useOnClickOutside } from "./hooks/useOnClickOutside";

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@deriv-com/ui",
33
"private": false,
4-
"version": "1.1.1",
4+
"version": "1.1.2",
55
"type": "module",
66
"main": "dist/main.js",
77
"files": [

0 commit comments

Comments
 (0)