@kwantis-id3/frontend-library 0.20.3 → 0.21.0-rc.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/changelog.md +12 -1
- package/dist/esm/index.js +94 -50
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Dropdown/Dropdown.d.ts +3 -2
- package/dist/esm/types/components/Dropdown/DropdownStyled.d.ts +13 -3
- package/dist/esm/types/components/ThemeContext/ThemeContext.d.ts +3 -9
- package/dist/index.d.ts +4 -10
- package/package.json +1 -1
package/changelog.md
CHANGED
|
@@ -1,10 +1,21 @@
|
|
|
1
|
+
# v0.21.0
|
|
2
|
+
## Minor Changes
|
|
3
|
+
- Now the `ThemeContextProps` interface is exported, so that it can be used to type the `useTheme` hook return value.
|
|
4
|
+
- Refactored the styling of the `Dropdown` component. It's cleaner and more readable now, both in mobile and desktop view.
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
# v0.20.3
|
|
9
|
+
## Patch Changes
|
|
10
|
+
- Fixed `isDefaultOpen` prop
|
|
11
|
+
|
|
12
|
+
|
|
1
13
|
# v0.20.2
|
|
2
14
|
## Patch Changes
|
|
3
15
|
- Added comments to each prop field in all components to better describe them
|
|
4
16
|
- Added `isDefaultOpen` prop to Accordion component, usable when the component is uncontrolled
|
|
5
17
|
|
|
6
18
|
|
|
7
|
-
|
|
8
19
|
# v0.20.1
|
|
9
20
|
## Patch Changes
|
|
10
21
|
- Added labels to styled components to better identify them in the DOM
|