@edvisor/product-language 0.8.4 → 0.8.5

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 (2) hide show
  1. package/index.js +3 -3
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -10755,16 +10755,16 @@ function useKeyDown(targetKey, handler) {
10755
10755
  return;
10756
10756
  }
10757
10757
 
10758
- const fadeIn = /*#__PURE__*/keyframes(["from{opacity:0;}to{opacity:1;}"]);
10758
+ const fadeIn = /*#__PURE__*/keyframes(["from{opacity:.4;}to{opacity:1;}"]);
10759
10759
  const grow = /*#__PURE__*/keyframes(["from{transform:scale(.8)}to{transform:scale(1)}"]);
10760
10760
  const OverlayFrame = /*#__PURE__*/styled(Flex).withConfig({
10761
10761
  displayName: "modal-base__OverlayFrame",
10762
10762
  componentId: "r4sytz-0"
10763
- })(["position:fixed;top:0;left:0;width:100%;height:100vh;z-index:20000;background-color:", ";justify-content:center;animation:", " .1s ease-out;"], Background.Overlay, fadeIn);
10763
+ })(["position:fixed;top:0;left:0;width:100%;height:100%;z-index:20000;background-color:", ";justify-content:center;animation:", " .2s ease-out;"], Background.Overlay, fadeIn);
10764
10764
  const ModalFrame = /*#__PURE__*/styled(Flex).withConfig({
10765
10765
  displayName: "modal-base__ModalFrame",
10766
10766
  componentId: "r4sytz-1"
10767
- })(["background-color:", ";z-index:20010;width:", ";position:fixed;transform:translate(-50%,-50%);", ";border-radius:8px;animation:", " .1s ease-in;"], Surface.Default.Default, ({
10767
+ })(["background-color:", ";z-index:20010;width:", ";", ";border-radius:8px;animation:", " .1s ease-in;"], Surface.Default.Default, ({
10768
10768
  widthValue
10769
10769
  }) => widthValue, shadowXl, grow);
10770
10770
  const modalSizeToPixelSize = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edvisor/product-language",
3
- "version": "0.8.4",
3
+ "version": "0.8.5",
4
4
  "license": "MIT",
5
5
  "description": "Edvisor.io product-language components",
6
6
  "repository": "https://github.com/edvisor-io/front-end/",