@proprioo/salatim 19.1.0 → 19.5.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 +21 -0
- package/README.md +8 -0
- package/lib/index.js +357 -352
- 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/gmapsAutoComplete/GmapsAutocomplete.d.ts +4 -13
- package/lib/ui/src/gmapsAutoComplete/GmapsAutocomplete.js +28 -38
- package/lib/ui/src/gmapsAutoComplete/GmapsAutocomplete.js.map +1 -1
- package/lib/ui/src/gmapsGeocode/GmapsGeocode.d.ts +4 -7
- package/lib/ui/src/gmapsGeocode/GmapsGeocode.js +21 -36
- package/lib/ui/src/gmapsGeocode/GmapsGeocode.js.map +1 -1
- package/lib/ui/src/gmapsSuggestions/GmapsSuggestions.js +2 -2
- package/lib/ui/src/gmapsSuggestions/GmapsSuggestions.js.map +1 -1
- package/lib/ui/src/inputBase/InputBase.styles.js +4 -9
- package/lib/ui/src/inputBase/InputBase.styles.js.map +1 -1
- package/lib/utils/src/gmaps.d.ts +10 -0
- package/lib/utils/src/gmaps.js +19 -1
- package/lib/utils/src/gmaps.js.map +1 -1
- package/lib/utils/src/gmaps.test.js +48 -0
- package/lib/utils/src/gmaps.test.js.map +1 -1
- package/lib/utils/src/paragraphs.d.ts +2 -0
- package/lib/utils/src/paragraphs.js +12 -0
- package/lib/utils/src/paragraphs.js.map +1 -1
- package/lib/utils/src/utils.stories.js +2 -0
- package/lib/utils/src/utils.stories.js.map +1 -1
- package/lib/utils/src/utils.styles.d.ts +2 -0
- package/lib/utils/src/utils.styles.js +7 -1
- package/lib/utils/src/utils.styles.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
+
**19.5.0**
|
|
4
|
+
|
|
5
|
+
* Feat: Add an id as an optional prop into <Button /> component for tracking
|
|
6
|
+
|
|
7
|
+
**19.4.0**
|
|
8
|
+
|
|
9
|
+
* Refactor: Display an optional custom component after the label into the card component
|
|
10
|
+
|
|
11
|
+
**19.3.1**
|
|
12
|
+
|
|
13
|
+
* Fix: Avoid bug on input label with translate3d
|
|
14
|
+
|
|
15
|
+
**19.3.0**
|
|
16
|
+
|
|
17
|
+
* Refactor: use FC instead of class component (GmapsAutocomplete, GmapsGeocode, GmapsSuggestions)
|
|
18
|
+
* Handle suggestions filtering when using geo search v2
|
|
19
|
+
|
|
20
|
+
**19.2.0**
|
|
21
|
+
|
|
22
|
+
* Add subtitle1 and subtitle2 in paragraphs (used in Figma sketches)
|
|
23
|
+
|
|
3
24
|
**19.1.0**
|
|
4
25
|
|
|
5
26
|
* Allow custom React component to be given as a label on `Checkbox`
|
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
|

|