@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.
- package/index.js +3 -3
- 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
|
|
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:
|
|
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:", ";
|
|
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 = {
|