@proprioo/salatim 20.7.1 → 21.1.1
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 +13 -0
- package/lib/index.js +235 -238
- package/lib/index.js.map +1 -1
- package/lib/ui/index.d.ts +3 -3
- package/lib/ui/index.js +4 -3
- package/lib/ui/index.js.map +1 -1
- package/lib/ui/src/button/Button.d.ts +15 -2
- package/lib/ui/src/button/Button.interfaces.d.ts +10 -24
- package/lib/ui/src/button/Button.interfaces.js +19 -19
- package/lib/ui/src/button/Button.interfaces.js.map +1 -1
- package/lib/ui/src/button/Button.js +3 -10
- package/lib/ui/src/button/Button.js.map +1 -1
- package/lib/ui/src/button/Button.stories.js +23 -49
- package/lib/ui/src/button/Button.stories.js.map +1 -1
- package/lib/ui/src/button/Button.styles.d.ts +1 -1
- package/lib/ui/src/button/Button.styles.js +48 -46
- package/lib/ui/src/button/Button.styles.js.map +1 -1
- package/lib/ui/src/button/Button.test.js.map +1 -1
- package/lib/ui/src/card/Card.d.ts +5 -0
- package/lib/ui/src/card/Card.js +8 -2
- package/lib/ui/src/card/Card.js.map +1 -1
- package/lib/ui/src/card/Card.styles.d.ts +2 -1
- package/lib/ui/src/card/Card.styles.js +2 -2
- package/lib/ui/src/card/Card.styles.js.map +1 -1
- package/lib/ui/src/tooltip/Tooltip.styles.js +2 -3
- package/lib/ui/src/tooltip/Tooltip.styles.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
+
**21.1.1**
|
|
4
|
+
|
|
5
|
+
* Fix: Use correct font for Tooltip
|
|
6
|
+
|
|
7
|
+
**21.1.0**
|
|
8
|
+
|
|
9
|
+
* Feat: <Card/> add header icon size prop
|
|
10
|
+
|
|
11
|
+
**21.0.0**
|
|
12
|
+
|
|
13
|
+
* **BREAKING CHANGE** Refactor: change ButtonColors enum name to ButtonTheme
|
|
14
|
+
* Feat: adjust button theme (pink and blue)
|
|
15
|
+
|
|
3
16
|
**20.7.1**
|
|
4
17
|
|
|
5
18
|
* Fix: <Tag/> add outlined style to hidden tag group
|