@proprioo/salatim 19.2.0 → 19.6.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.
Files changed (34) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/README.md +8 -0
  3. package/lib/index.js +288 -291
  4. package/lib/index.js.map +1 -1
  5. package/lib/ui/src/button/Button.interfaces.d.ts +1 -0
  6. package/lib/ui/src/card/Card.d.ts +1 -0
  7. package/lib/ui/src/card/Card.js +2 -1
  8. package/lib/ui/src/card/Card.js.map +1 -1
  9. package/lib/ui/src/card/Card.stories.js +4 -1
  10. package/lib/ui/src/card/Card.stories.js.map +1 -1
  11. package/lib/ui/src/card/Card.styles.d.ts +1 -0
  12. package/lib/ui/src/card/Card.styles.js +4 -1
  13. package/lib/ui/src/card/Card.styles.js.map +1 -1
  14. package/lib/ui/src/card/Card.test.js +7 -0
  15. package/lib/ui/src/card/Card.test.js.map +1 -1
  16. package/lib/ui/src/gmapsAutoComplete/GmapsAutocomplete.d.ts +4 -13
  17. package/lib/ui/src/gmapsAutoComplete/GmapsAutocomplete.js +28 -38
  18. package/lib/ui/src/gmapsAutoComplete/GmapsAutocomplete.js.map +1 -1
  19. package/lib/ui/src/gmapsGeocode/GmapsGeocode.d.ts +4 -7
  20. package/lib/ui/src/gmapsGeocode/GmapsGeocode.js +21 -36
  21. package/lib/ui/src/gmapsGeocode/GmapsGeocode.js.map +1 -1
  22. package/lib/ui/src/gmapsSuggestions/GmapsSuggestions.js +2 -2
  23. package/lib/ui/src/gmapsSuggestions/GmapsSuggestions.js.map +1 -1
  24. package/lib/ui/src/inputBase/InputBase.styles.js +8 -13
  25. package/lib/ui/src/inputBase/InputBase.styles.js.map +1 -1
  26. package/lib/ui/src/textarea/Textarea.d.ts +2 -0
  27. package/lib/ui/src/textarea/Textarea.js +3 -4
  28. package/lib/ui/src/textarea/Textarea.js.map +1 -1
  29. package/lib/utils/src/gmaps.d.ts +10 -0
  30. package/lib/utils/src/gmaps.js +19 -1
  31. package/lib/utils/src/gmaps.js.map +1 -1
  32. package/lib/utils/src/gmaps.test.js +48 -0
  33. package/lib/utils/src/gmaps.test.js.map +1 -1
  34. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  ## Changelog
2
2
 
3
+ **19.6.0**
4
+
5
+ * Fix: use right class to handle disabled mode for PhoneInput component
6
+ * Feat: add lang and spellCheck attributes to Textarea component
7
+ * Feat: increase label and value contrasts in disabled mode
8
+
9
+ **19.5.0**
10
+
11
+ * Feat: Add an id as an optional prop into <Button /> component for tracking
12
+
13
+ **19.4.0**
14
+
15
+ * Refactor: Display an optional custom component after the label into the card component
16
+
17
+ **19.3.1**
18
+
19
+ * Fix: Avoid bug on input label with translate3d
20
+
21
+ **19.3.0**
22
+
23
+ * Refactor: use FC instead of class component (GmapsAutocomplete, GmapsGeocode, GmapsSuggestions)
24
+ * Handle suggestions filtering when using geo search v2
25
+
3
26
  **19.2.0**
4
27
 
5
28
  * Add subtitle1 and subtitle2 in paragraphs (used in Figma sketches)
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
  ![build status](https://gitlab.com/proprioo/frontend/salatim/badges/master/build.svg)