@proprioo/salatim 19.3.0 → 19.3.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 CHANGED
@@ -1,5 +1,9 @@
1
1
  ## Changelog
2
2
 
3
+ **19.3.1**
4
+
5
+ * Fix: Avoid bug on input label with translate3d
6
+
3
7
  **19.3.0**
4
8
 
5
9
  * Refactor: use FC instead of class component (GmapsAutocomplete, GmapsGeocode, GmapsSuggestions)
package/lib/index.js CHANGED
@@ -224,8 +224,7 @@
224
224
  overflow: hidden;
225
225
  text-overflow: ellipsis;
226
226
  color: ${ne.dark.base80};
227
- transform: translate3d(${oe(28)}, ${oe(16)}, 0)
228
- scale(1.1);
227
+ transform: translate(${oe(28)}, ${oe(16)}) scale(1.1);
229
228
  transform-origin: top left;
230
229
  transition: color 200ms cubic-bezier(0, 0, 0.2, 1) 0ms,
231
230
  transform 200ms cubic-bezier(0, 0, 0.2, 1) 0ms;
@@ -319,14 +318,10 @@
319
318
 
320
319
  ${Fe} {
321
320
  color: ${ne.red.base};
322
- transform: translate3d(${oe(48)}, ${oe(16)}, 0);
321
+ transform: translate(${oe(48)}, ${oe(16)});
323
322
 
324
323
  ${!e&&n.css`
325
- transform: translate3d(
326
- ${oe(48)},
327
- ${oe(16)},
328
- 0
329
- );
324
+ transform: translate(${oe(48)}, ${oe(16)}, 0);
330
325
  `}
331
326
  }
332
327
  `}
@@ -347,7 +342,7 @@
347
342
  ${Fe} {
348
343
  overflow: initial;
349
344
  text-overflow: ellipsis;
350
- transform: translate3d(${oe(29)}, -${oe(6)}, 0);
345
+ transform: translate(${oe(29)}, -${oe(6)});
351
346
  }
352
347
  `}
353
348