@elmethis/qwik 0.0.32 → 0.0.33
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/lib/index.qwik.cjs +6 -6
- package/lib/index.qwik.mjs +6 -6
- package/lib/style.css +14 -9
- package/package.json +1 -1
package/lib/index.qwik.cjs
CHANGED
|
@@ -2200,15 +2200,15 @@ const ElmSquareLoadingIcon = qwik.component$(({ size = "3rem", dimensions = 4 })
|
|
|
2200
2200
|
}, `${rowIndex}-${columnIndex}`)))
|
|
2201
2201
|
});
|
|
2202
2202
|
});
|
|
2203
|
-
const image$1 = "
|
|
2204
|
-
const fallback = "
|
|
2203
|
+
const image$1 = "_image_slok6_12";
|
|
2204
|
+
const fallback = "_fallback_slok6_37";
|
|
2205
2205
|
const styles$h = {
|
|
2206
|
-
"block-image": "_block-
|
|
2207
|
-
"image-container": "_image-
|
|
2206
|
+
"block-image": "_block-image_slok6_1",
|
|
2207
|
+
"image-container": "_image-container_slok6_12",
|
|
2208
2208
|
image: image$1,
|
|
2209
2209
|
fallback,
|
|
2210
|
-
"caption-box": "_caption-
|
|
2211
|
-
"modal-container": "_modal-
|
|
2210
|
+
"caption-box": "_caption-box_slok6_45",
|
|
2211
|
+
"modal-container": "_modal-container_slok6_57"
|
|
2212
2212
|
};
|
|
2213
2213
|
const ElmBlockImage = qwik.component$(({ src, alt, caption: caption2, width, height, enableModal = true, srcset, sizes, style }) => {
|
|
2214
2214
|
const isLoading = qwik.useSignal(true);
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -2198,15 +2198,15 @@ const ElmSquareLoadingIcon = component$(({ size = "3rem", dimensions = 4 }) => {
|
|
|
2198
2198
|
}, `${rowIndex}-${columnIndex}`)))
|
|
2199
2199
|
});
|
|
2200
2200
|
});
|
|
2201
|
-
const image$1 = "
|
|
2202
|
-
const fallback = "
|
|
2201
|
+
const image$1 = "_image_slok6_12";
|
|
2202
|
+
const fallback = "_fallback_slok6_37";
|
|
2203
2203
|
const styles$h = {
|
|
2204
|
-
"block-image": "_block-
|
|
2205
|
-
"image-container": "_image-
|
|
2204
|
+
"block-image": "_block-image_slok6_1",
|
|
2205
|
+
"image-container": "_image-container_slok6_12",
|
|
2206
2206
|
image: image$1,
|
|
2207
2207
|
fallback,
|
|
2208
|
-
"caption-box": "_caption-
|
|
2209
|
-
"modal-container": "_modal-
|
|
2208
|
+
"caption-box": "_caption-box_slok6_45",
|
|
2209
|
+
"modal-container": "_modal-container_slok6_57"
|
|
2210
2210
|
};
|
|
2211
2211
|
const ElmBlockImage = component$(({ src, alt, caption: caption2, width, height, enableModal = true, srcset, sizes, style }) => {
|
|
2212
2212
|
const isLoading = useSignal(true);
|
package/lib/style.css
CHANGED
|
@@ -995,7 +995,7 @@
|
|
|
995
995
|
}
|
|
996
996
|
[data-theme=dark] ._square_13xd3_24 {
|
|
997
997
|
background-color: #b0b5be;
|
|
998
|
-
}._block-
|
|
998
|
+
}._block-image_slok6_1 {
|
|
999
999
|
margin-block: var(--margin-block, 0);
|
|
1000
1000
|
margin-inline: 0;
|
|
1001
1001
|
display: flex;
|
|
@@ -1006,7 +1006,7 @@
|
|
|
1006
1006
|
width: 100%;
|
|
1007
1007
|
}
|
|
1008
1008
|
|
|
1009
|
-
._image-
|
|
1009
|
+
._image-container_slok6_12 {
|
|
1010
1010
|
width: 100%;
|
|
1011
1011
|
height: 100%;
|
|
1012
1012
|
position: relative;
|
|
@@ -1016,7 +1016,8 @@
|
|
|
1016
1016
|
align-items: center;
|
|
1017
1017
|
}
|
|
1018
1018
|
|
|
1019
|
-
.
|
|
1019
|
+
._image_slok6_12 {
|
|
1020
|
+
box-sizing: border-box;
|
|
1020
1021
|
max-width: 100%;
|
|
1021
1022
|
max-height: min(100%, 100vh);
|
|
1022
1023
|
height: auto;
|
|
@@ -1030,9 +1031,7 @@
|
|
|
1030
1031
|
cursor: var(--cursor);
|
|
1031
1032
|
}
|
|
1032
1033
|
|
|
1033
|
-
.
|
|
1034
|
-
width: 100%;
|
|
1035
|
-
height: 100%;
|
|
1034
|
+
._fallback_slok6_37 {
|
|
1036
1035
|
inset: 0 0 auto auto;
|
|
1037
1036
|
position: absolute;
|
|
1038
1037
|
transition: opacity 400ms;
|
|
@@ -1040,7 +1039,7 @@
|
|
|
1040
1039
|
pointer-events: none;
|
|
1041
1040
|
}
|
|
1042
1041
|
|
|
1043
|
-
._caption-
|
|
1042
|
+
._caption-box_slok6_45 {
|
|
1044
1043
|
box-sizing: border-box;
|
|
1045
1044
|
padding: 0rem 1rem;
|
|
1046
1045
|
display: flex;
|
|
@@ -1052,7 +1051,13 @@
|
|
|
1052
1051
|
transition: opacity 400ms;
|
|
1053
1052
|
}
|
|
1054
1053
|
|
|
1055
|
-
._modal-
|
|
1054
|
+
._modal-container_slok6_57 {
|
|
1055
|
+
width: 100%;
|
|
1056
|
+
height: 100vh;
|
|
1057
|
+
display: flex;
|
|
1058
|
+
justify-content: center;
|
|
1059
|
+
align-items: center;
|
|
1060
|
+
overflow: hidden;
|
|
1056
1061
|
opacity: 0;
|
|
1057
1062
|
transform: scale(0.95);
|
|
1058
1063
|
background-color: transparent;
|
|
@@ -1089,7 +1094,7 @@
|
|
|
1089
1094
|
}
|
|
1090
1095
|
|
|
1091
1096
|
@starting-style {
|
|
1092
|
-
._modal-
|
|
1097
|
+
._modal-container_slok6_57:popover-open {
|
|
1093
1098
|
opacity: 0;
|
|
1094
1099
|
transform: scale(0.95);
|
|
1095
1100
|
|