@proprioo/salatim 19.3.0 → 19.7.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 +22 -0
- package/README.md +8 -0
- package/lib/index.js +108 -111
- package/lib/index.js.map +1 -1
- package/lib/ui/src/button/Button.interfaces.d.ts +1 -0
- package/lib/ui/src/card/Card.d.ts +1 -0
- package/lib/ui/src/card/Card.js +2 -1
- package/lib/ui/src/card/Card.js.map +1 -1
- package/lib/ui/src/card/Card.stories.js +4 -1
- package/lib/ui/src/card/Card.stories.js.map +1 -1
- package/lib/ui/src/card/Card.styles.d.ts +1 -0
- package/lib/ui/src/card/Card.styles.js +4 -1
- package/lib/ui/src/card/Card.styles.js.map +1 -1
- package/lib/ui/src/card/Card.test.js +7 -0
- package/lib/ui/src/card/Card.test.js.map +1 -1
- package/lib/ui/src/inputBase/InputBase.styles.js +8 -13
- package/lib/ui/src/inputBase/InputBase.styles.js.map +1 -1
- package/lib/ui/src/selectWrapper/SelectWrapper.styles.js +1 -1
- package/lib/ui/src/selectWrapper/SelectWrapper.styles.js.map +1 -1
- package/lib/ui/src/textarea/Textarea.d.ts +2 -0
- package/lib/ui/src/textarea/Textarea.js +3 -4
- package/lib/ui/src/textarea/Textarea.js.map +1 -1
- package/lib/ui/src/textarea/Textarea.styles.js +1 -1
- package/lib/ui/src/textarea/Textarea.styles.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
+
**19.7.0**
|
|
4
|
+
|
|
5
|
+
* Feat: increase value contrast in disabled mode for SelectWrapper and Textarea
|
|
6
|
+
|
|
7
|
+
**19.6.0**
|
|
8
|
+
|
|
9
|
+
* Fix: use right class to handle disabled mode for PhoneInput component
|
|
10
|
+
* Feat: add lang and spellCheck attributes to Textarea component
|
|
11
|
+
* Feat: increase label and value contrasts in disabled mode
|
|
12
|
+
|
|
13
|
+
**19.5.0**
|
|
14
|
+
|
|
15
|
+
* Feat: Add an id as an optional prop into <Button /> component for tracking
|
|
16
|
+
|
|
17
|
+
**19.4.0**
|
|
18
|
+
|
|
19
|
+
* Refactor: Display an optional custom component after the label into the card component
|
|
20
|
+
|
|
21
|
+
**19.3.1**
|
|
22
|
+
|
|
23
|
+
* Fix: Avoid bug on input label with translate3d
|
|
24
|
+
|
|
3
25
|
**19.3.0**
|
|
4
26
|
|
|
5
27
|
* Refactor: use FC instead of class component (GmapsAutocomplete, GmapsGeocode, GmapsSuggestions)
|
package/README.md
CHANGED
|
@@ -4,6 +4,14 @@ Salatim is our component library, made with 🥑 and ❤️.
|
|
|
4
4
|
|
|
5
5
|
Please have a look on its storybook for each components.
|
|
6
6
|
|
|
7
|
+
## Before
|
|
8
|
+
|
|
9
|
+
Don't forget to add an empty npm token in your bash_profile, zsh, etc.. and reload it.
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
export NPM_TOKEN=''
|
|
13
|
+
```
|
|
14
|
+
|
|
7
15
|
## Status
|
|
8
16
|
|
|
9
17
|

|