indicator-ui 0.0.360 → 0.0.361
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/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -48277,6 +48277,7 @@ function useBackgroundModalAnim() {
|
|
|
48277
48277
|
var obj = ref.current;
|
|
48278
48278
|
if (obj) {
|
|
48279
48279
|
obj.style.position = 'fixed';
|
|
48280
|
+
obj.style.visibility = 'hidden';
|
|
48280
48281
|
}
|
|
48281
48282
|
}
|
|
48282
48283
|
function initBackdropObj() {
|
|
@@ -48507,6 +48508,7 @@ function useModalAnim() {
|
|
|
48507
48508
|
var obj = ref.current;
|
|
48508
48509
|
if (obj) {
|
|
48509
48510
|
obj.style.position = 'fixed';
|
|
48511
|
+
obj.style.visibility = 'hidden';
|
|
48510
48512
|
}
|
|
48511
48513
|
}
|
|
48512
48514
|
function initBackdropObj() {
|