@elmethis/qwik 0.0.26 → 0.0.28
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 +230 -197
- package/lib/index.qwik.mjs +230 -197
- package/lib/style.css +137 -103
- package/lib-types/components/code/elm-code-block.d.ts +1 -4
- package/lib-types/components/containments/elm-toggle.d.ts +2 -0
- package/lib-types/components/icon/elm-square-loading-icon.d.ts +6 -0
- package/lib-types/components/icon/elm-square-loading-icon.stories.d.ts +6 -0
- package/lib-types/components/media/elm-block-image.d.ts +4 -1
- package/lib-types/components/media/elm-block-image.stories.d.ts +1 -0
- package/lib-types/components/media/elm-file.d.ts +2 -0
- package/lib-types/components/navigation/elm-bookmark.d.ts +2 -0
- package/lib-types/components/others/elm-jarkup.d.ts +2 -0
- package/lib-types/components/others/elm-markdown.d.ts +2 -0
- package/lib-types/components/table/elm-table.d.ts +1 -4
- package/lib-types/components/typography/elm-block-quote.d.ts +2 -0
- package/lib-types/components/typography/elm-callout.d.ts +2 -0
- package/lib-types/components/typography/elm-divider.d.ts +1 -4
- package/lib-types/components/typography/elm-heading.d.ts +2 -0
- package/lib-types/components/typography/elm-list.d.ts +2 -0
- package/lib-types/index.d.ts +1 -0
- package/package.json +1 -1
package/lib/style.css
CHANGED
|
@@ -240,20 +240,20 @@
|
|
|
240
240
|
}
|
|
241
241
|
[data-theme=dark] ._parallax_1kb0k_1 {
|
|
242
242
|
opacity: 0.1;
|
|
243
|
-
}.
|
|
244
|
-
margin: 0;
|
|
243
|
+
}._toggle_pbyu8_1 {
|
|
244
|
+
margin-block: var(--margin-block, 0);
|
|
245
245
|
display: grid;
|
|
246
246
|
transition: grid 200ms;
|
|
247
247
|
overflow: hidden;
|
|
248
248
|
}
|
|
249
|
-
.
|
|
249
|
+
._toggle_pbyu8_1._toggle-closed_pbyu8_7 {
|
|
250
250
|
grid-template-rows: 3.5rem 0fr 0rem;
|
|
251
251
|
}
|
|
252
|
-
.
|
|
252
|
+
._toggle_pbyu8_1._toggle-open_pbyu8_10 {
|
|
253
253
|
grid-template-rows: 3.5rem 1fr 3rem;
|
|
254
254
|
}
|
|
255
255
|
|
|
256
|
-
.
|
|
256
|
+
._summary_pbyu8_14 {
|
|
257
257
|
box-sizing: border-box;
|
|
258
258
|
padding-inline: 1rem;
|
|
259
259
|
display: grid;
|
|
@@ -264,42 +264,42 @@
|
|
|
264
264
|
border: 1px solid rgba(0, 0, 0, 0.125);
|
|
265
265
|
background-color: rgba(62, 67, 75, 0.05);
|
|
266
266
|
}
|
|
267
|
-
[data-theme=dark] .
|
|
267
|
+
[data-theme=dark] ._summary_pbyu8_14 {
|
|
268
268
|
border: 1px solid rgba(255, 255, 255, 0.125);
|
|
269
269
|
background-color: rgba(190, 194, 202, 0.1);
|
|
270
270
|
}
|
|
271
|
-
.
|
|
271
|
+
._summary_pbyu8_14._summary-open_pbyu8_29 {
|
|
272
272
|
border-radius: 0.25rem 0.25rem 0 0;
|
|
273
273
|
border-bottom-color: transparent;
|
|
274
274
|
}
|
|
275
|
-
.
|
|
275
|
+
._summary_pbyu8_14._summary-closed_pbyu8_33 {
|
|
276
276
|
border-radius: 0.25rem;
|
|
277
277
|
}
|
|
278
278
|
|
|
279
|
-
._chevron-
|
|
279
|
+
._chevron-icon_pbyu8_37 {
|
|
280
280
|
transition: transform 200ms;
|
|
281
281
|
}
|
|
282
|
-
._chevron-
|
|
282
|
+
._chevron-icon_pbyu8_37._chevron-icon-open_pbyu8_40 {
|
|
283
283
|
transform: rotate(90deg);
|
|
284
284
|
}
|
|
285
|
-
._chevron-
|
|
285
|
+
._chevron-icon_pbyu8_37._chevron-icon-closed_pbyu8_43 {
|
|
286
286
|
transform: rotate(0deg);
|
|
287
287
|
}
|
|
288
288
|
|
|
289
|
-
._plus-
|
|
289
|
+
._plus-icon_pbyu8_47 {
|
|
290
290
|
height: 1rem;
|
|
291
291
|
width: 1rem;
|
|
292
292
|
transform-origin: center;
|
|
293
293
|
transition: transform 200ms;
|
|
294
294
|
}
|
|
295
|
-
._plus-
|
|
295
|
+
._plus-icon_pbyu8_47._plus-icon-open_pbyu8_53 {
|
|
296
296
|
transform: rotate(135deg);
|
|
297
297
|
}
|
|
298
|
-
._plus-
|
|
298
|
+
._plus-icon_pbyu8_47._plus-icon-closed_pbyu8_56 {
|
|
299
299
|
transform: rotate(0deg);
|
|
300
300
|
}
|
|
301
301
|
|
|
302
|
-
.
|
|
302
|
+
._content_pbyu8_60 {
|
|
303
303
|
box-sizing: border-box;
|
|
304
304
|
padding: 1rem;
|
|
305
305
|
overflow: hidden;
|
|
@@ -308,18 +308,18 @@
|
|
|
308
308
|
border-radius: 0 0 0.25rem 0.25rem;
|
|
309
309
|
background-color: rgba(62, 67, 75, 0.0125);
|
|
310
310
|
}
|
|
311
|
-
[data-theme=dark] .
|
|
311
|
+
[data-theme=dark] ._content_pbyu8_60 {
|
|
312
312
|
border-color: rgba(255, 255, 255, 0.125);
|
|
313
313
|
background-color: rgba(190, 194, 202, 0.025);
|
|
314
314
|
}
|
|
315
|
-
.
|
|
315
|
+
._content_pbyu8_60._content-open_pbyu8_73 {
|
|
316
316
|
opacity: 1;
|
|
317
317
|
}
|
|
318
|
-
.
|
|
318
|
+
._content_pbyu8_60._content-closed_pbyu8_76 {
|
|
319
319
|
opacity: 0;
|
|
320
320
|
}
|
|
321
321
|
|
|
322
|
-
.
|
|
322
|
+
._footer_pbyu8_80 {
|
|
323
323
|
box-sizing: border-box;
|
|
324
324
|
margin: 0.25rem 0rem;
|
|
325
325
|
padding: 0.5rem 0.25rem;
|
|
@@ -334,17 +334,17 @@
|
|
|
334
334
|
border-radius: 0.25rem;
|
|
335
335
|
transition: opacity 200ms, background-color 200ms;
|
|
336
336
|
}
|
|
337
|
-
.
|
|
337
|
+
._footer_pbyu8_80:hover {
|
|
338
338
|
opacity: 0.5;
|
|
339
339
|
background-color: rgba(96, 104, 117, 0.1);
|
|
340
340
|
}
|
|
341
|
-
.
|
|
341
|
+
._footer_pbyu8_80 ._footer-line_pbyu8_99 {
|
|
342
342
|
box-sizing: border-box;
|
|
343
343
|
flex: 1;
|
|
344
344
|
border: none;
|
|
345
345
|
border-bottom: 1px solid rgba(128, 128, 128, 0.3);
|
|
346
346
|
}
|
|
347
|
-
.
|
|
347
|
+
._footer_pbyu8_80 ._footer-cross-icon_pbyu8_105 {
|
|
348
348
|
transform: rotate(45deg);
|
|
349
349
|
}._block-fallback_rt986_1 {
|
|
350
350
|
position: relative;
|
|
@@ -959,8 +959,45 @@
|
|
|
959
959
|
color: #b0b5be;
|
|
960
960
|
border-radius: 50%;
|
|
961
961
|
cursor: pointer;
|
|
962
|
-
}
|
|
962
|
+
}@keyframes _appear_13xd3_1 {
|
|
963
|
+
0% {
|
|
964
|
+
transform: scale(0);
|
|
965
|
+
}
|
|
966
|
+
20% {
|
|
967
|
+
transform: scale(0);
|
|
968
|
+
}
|
|
969
|
+
80% {
|
|
970
|
+
transform: scale(1);
|
|
971
|
+
}
|
|
972
|
+
100% {
|
|
973
|
+
transform: scale(1);
|
|
974
|
+
}
|
|
975
|
+
}
|
|
976
|
+
._wrapper_13xd3_15 {
|
|
963
977
|
margin: 0;
|
|
978
|
+
padding: 0;
|
|
979
|
+
display: grid;
|
|
980
|
+
grid-template-columns: repeat(var(--dimensions), auto);
|
|
981
|
+
grid-template-rows: repeat(var(--dimensions), auto);
|
|
982
|
+
justify-content: start;
|
|
983
|
+
}
|
|
984
|
+
|
|
985
|
+
._square_13xd3_24 {
|
|
986
|
+
width: calc(var(--size) / var(--dimensions));
|
|
987
|
+
height: calc(var(--size) / var(--dimensions));
|
|
988
|
+
animation-name: _appear_13xd3_1;
|
|
989
|
+
animation-iteration-count: infinite;
|
|
990
|
+
animation-fill-mode: both;
|
|
991
|
+
animation-direction: alternate;
|
|
992
|
+
animation-duration: var(--duration);
|
|
993
|
+
animation-delay: var(--delay);
|
|
994
|
+
background-color: #606875;
|
|
995
|
+
}
|
|
996
|
+
[data-theme=dark] ._square_13xd3_24 {
|
|
997
|
+
background-color: #b0b5be;
|
|
998
|
+
}._block-image_sf1wj_1 {
|
|
999
|
+
margin-block: var(--margin-block, 0);
|
|
1000
|
+
margin-inline: 0;
|
|
964
1001
|
display: flex;
|
|
965
1002
|
justify-content: center;
|
|
966
1003
|
align-items: center;
|
|
@@ -969,7 +1006,7 @@
|
|
|
969
1006
|
width: 100%;
|
|
970
1007
|
}
|
|
971
1008
|
|
|
972
|
-
._image-
|
|
1009
|
+
._image-container_sf1wj_12 {
|
|
973
1010
|
width: 100%;
|
|
974
1011
|
height: 100%;
|
|
975
1012
|
position: relative;
|
|
@@ -978,7 +1015,7 @@
|
|
|
978
1015
|
align-items: center;
|
|
979
1016
|
}
|
|
980
1017
|
|
|
981
|
-
.
|
|
1018
|
+
._image_sf1wj_12 {
|
|
982
1019
|
max-width: 100%;
|
|
983
1020
|
max-height: min(100%, 100vh);
|
|
984
1021
|
height: auto;
|
|
@@ -991,7 +1028,7 @@
|
|
|
991
1028
|
cursor: var(--cursor);
|
|
992
1029
|
}
|
|
993
1030
|
|
|
994
|
-
.
|
|
1031
|
+
._fallback_sf1wj_34 {
|
|
995
1032
|
width: 100%;
|
|
996
1033
|
height: 100%;
|
|
997
1034
|
inset: 0 0 auto auto;
|
|
@@ -1001,7 +1038,7 @@
|
|
|
1001
1038
|
pointer-events: none;
|
|
1002
1039
|
}
|
|
1003
1040
|
|
|
1004
|
-
._caption-
|
|
1041
|
+
._caption-box_sf1wj_44 {
|
|
1005
1042
|
box-sizing: border-box;
|
|
1006
1043
|
padding: 0rem 1rem;
|
|
1007
1044
|
display: flex;
|
|
@@ -1013,7 +1050,7 @@
|
|
|
1013
1050
|
transition: opacity 400ms;
|
|
1014
1051
|
}
|
|
1015
1052
|
|
|
1016
|
-
._modal-
|
|
1053
|
+
._modal-container_sf1wj_56 {
|
|
1017
1054
|
width: 100vw;
|
|
1018
1055
|
height: 100vh;
|
|
1019
1056
|
display: flex;
|
|
@@ -1026,8 +1063,8 @@
|
|
|
1026
1063
|
cursor: zoom-out;
|
|
1027
1064
|
opacity: var(--opacity, 1);
|
|
1028
1065
|
transition: opacity 200ms;
|
|
1029
|
-
}.
|
|
1030
|
-
margin: 0;
|
|
1066
|
+
}._file_eqa3m_1 {
|
|
1067
|
+
margin-block: var(--margin-block, 0);
|
|
1031
1068
|
padding: 1rem;
|
|
1032
1069
|
display: grid;
|
|
1033
1070
|
grid-template-columns: 1.5rem 1fr 1fr 1.5rem;
|
|
@@ -1037,16 +1074,16 @@
|
|
|
1037
1074
|
border-radius: 0.25rem;
|
|
1038
1075
|
background-color: rgba(255, 255, 255, 0.2);
|
|
1039
1076
|
}
|
|
1040
|
-
[data-theme=dark] .
|
|
1077
|
+
[data-theme=dark] ._file_eqa3m_1 {
|
|
1041
1078
|
background-color: rgba(0, 0, 0, 0.2);
|
|
1042
1079
|
}
|
|
1043
1080
|
|
|
1044
|
-
._file-
|
|
1081
|
+
._file-size_eqa3m_16 {
|
|
1045
1082
|
text-align: right;
|
|
1046
1083
|
opacity: 0.5;
|
|
1047
1084
|
}
|
|
1048
1085
|
|
|
1049
|
-
._download-
|
|
1086
|
+
._download-icon_eqa3m_21 {
|
|
1050
1087
|
display: flex;
|
|
1051
1088
|
justify-content: center;
|
|
1052
1089
|
align-items: center;
|
|
@@ -1057,30 +1094,31 @@
|
|
|
1057
1094
|
cursor: pointer;
|
|
1058
1095
|
transition: color 200ms, background-color 200ms;
|
|
1059
1096
|
}
|
|
1060
|
-
._download-
|
|
1097
|
+
._download-icon_eqa3m_21:hover {
|
|
1061
1098
|
background-color: rgba(0, 0, 0, 0.1);
|
|
1062
1099
|
}
|
|
1063
|
-
[data-theme=dark] ._download-
|
|
1100
|
+
[data-theme=dark] ._download-icon_eqa3m_21:hover {
|
|
1064
1101
|
background-color: rgba(255, 255, 255, 0.1);
|
|
1065
|
-
}.
|
|
1102
|
+
}._bookmark_xxvle_1 {
|
|
1066
1103
|
all: unset;
|
|
1067
1104
|
display: block;
|
|
1068
1105
|
container-type: inline-size;
|
|
1069
1106
|
border-radius: 0.25rem;
|
|
1070
1107
|
box-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.1);
|
|
1071
1108
|
overflow: hidden;
|
|
1109
|
+
margin-block: var(--margin-block, 0);
|
|
1072
1110
|
transition: background-color 200ms, transform 200ms;
|
|
1073
1111
|
}
|
|
1074
|
-
.
|
|
1112
|
+
._bookmark_xxvle_1:hover {
|
|
1075
1113
|
background-color: rgba(105, 135, 184, 0.1);
|
|
1076
1114
|
transform: translateX(-0.125rem) translateY(-0.125rem);
|
|
1077
1115
|
}
|
|
1078
|
-
.
|
|
1116
|
+
._bookmark_xxvle_1:active {
|
|
1079
1117
|
background-color: rgba(89, 181, 124, 0.1);
|
|
1080
1118
|
transform: translateX(0) translateY(0);
|
|
1081
1119
|
}
|
|
1082
1120
|
|
|
1083
|
-
.
|
|
1121
|
+
._container_xxvle_20 {
|
|
1084
1122
|
all: unset;
|
|
1085
1123
|
cursor: pointer;
|
|
1086
1124
|
width: 100%;
|
|
@@ -1088,12 +1126,12 @@
|
|
|
1088
1126
|
flex-direction: row;
|
|
1089
1127
|
}
|
|
1090
1128
|
@container (max-width: 700px) {
|
|
1091
|
-
.
|
|
1129
|
+
._container_xxvle_20 {
|
|
1092
1130
|
flex-direction: column;
|
|
1093
1131
|
}
|
|
1094
1132
|
}
|
|
1095
1133
|
|
|
1096
|
-
.
|
|
1134
|
+
._image_xxvle_33 {
|
|
1097
1135
|
overflow: hidden;
|
|
1098
1136
|
height: 100%;
|
|
1099
1137
|
opacity: 0.9;
|
|
@@ -1107,14 +1145,14 @@
|
|
|
1107
1145
|
max-width: 35%;
|
|
1108
1146
|
}
|
|
1109
1147
|
@container (max-width: 700px) {
|
|
1110
|
-
.
|
|
1148
|
+
._image_xxvle_33 {
|
|
1111
1149
|
min-width: unset;
|
|
1112
1150
|
max-width: unset;
|
|
1113
1151
|
width: 100%;
|
|
1114
1152
|
}
|
|
1115
1153
|
}
|
|
1116
1154
|
|
|
1117
|
-
.
|
|
1155
|
+
._content_xxvle_54 {
|
|
1118
1156
|
flex: 1;
|
|
1119
1157
|
width: 75%;
|
|
1120
1158
|
box-sizing: border-box;
|
|
@@ -1127,21 +1165,21 @@
|
|
|
1127
1165
|
background-color: rgba(255, 255, 255, 0.4);
|
|
1128
1166
|
}
|
|
1129
1167
|
@container (max-width: 700px) {
|
|
1130
|
-
.
|
|
1168
|
+
._content_xxvle_54 {
|
|
1131
1169
|
width: 100%;
|
|
1132
1170
|
}
|
|
1133
1171
|
}
|
|
1134
|
-
[data-theme=dark] .
|
|
1172
|
+
[data-theme=dark] ._content_xxvle_54 {
|
|
1135
1173
|
background-color: rgba(0, 0, 0, 0.2);
|
|
1136
1174
|
}
|
|
1137
|
-
.
|
|
1175
|
+
._content_xxvle_54 ._title_xxvle_74 {
|
|
1138
1176
|
box-sizing: border-box;
|
|
1139
1177
|
}
|
|
1140
|
-
.
|
|
1178
|
+
._content_xxvle_54 ._description_xxvle_77 {
|
|
1141
1179
|
box-sizing: border-box;
|
|
1142
1180
|
opacity: 0.7;
|
|
1143
1181
|
}
|
|
1144
|
-
.
|
|
1182
|
+
._content_xxvle_54 ._link_xxvle_81 {
|
|
1145
1183
|
line-height: 0.75rem;
|
|
1146
1184
|
display: flex;
|
|
1147
1185
|
justify-content: flex-end;
|
|
@@ -1289,14 +1327,15 @@
|
|
|
1289
1327
|
[data-theme=dark] ._wrapper_nud26_1 ._text_nud26_85::selection {
|
|
1290
1328
|
color: #3e434b;
|
|
1291
1329
|
background-color: var(--color, #cccfd5);
|
|
1292
|
-
}.
|
|
1330
|
+
}._blockquote_1s60i_1 {
|
|
1293
1331
|
box-sizing: border-box;
|
|
1294
1332
|
width: 100%;
|
|
1295
|
-
margin: 0;
|
|
1333
|
+
margin-block: var(--margin-block, 0);
|
|
1334
|
+
margin-inline: 0;
|
|
1296
1335
|
background-color: rgba(134, 142, 156, 0.1);
|
|
1297
1336
|
position: relative;
|
|
1298
1337
|
}
|
|
1299
|
-
.
|
|
1338
|
+
._blockquote_1s60i_1::after {
|
|
1300
1339
|
position: absolute;
|
|
1301
1340
|
content: "";
|
|
1302
1341
|
top: 0;
|
|
@@ -1306,21 +1345,22 @@
|
|
|
1306
1345
|
background-color: #868e9c;
|
|
1307
1346
|
}
|
|
1308
1347
|
|
|
1309
|
-
.
|
|
1348
|
+
._body_1s60i_19 {
|
|
1310
1349
|
box-sizing: border-box;
|
|
1311
1350
|
padding: 2rem 1.5rem;
|
|
1312
1351
|
}
|
|
1313
1352
|
|
|
1314
|
-
.
|
|
1353
|
+
._icon_1s60i_24 {
|
|
1315
1354
|
position: absolute;
|
|
1316
1355
|
content: "";
|
|
1317
1356
|
inset: var(--inset);
|
|
1318
1357
|
opacity: 0.5;
|
|
1319
|
-
}.
|
|
1358
|
+
}._callout_ov76x_1 {
|
|
1320
1359
|
position: relative;
|
|
1321
1360
|
padding: 1rem;
|
|
1361
|
+
margin-block: var(--margin-block, 0);
|
|
1322
1362
|
}
|
|
1323
|
-
.
|
|
1363
|
+
._callout_ov76x_1::after {
|
|
1324
1364
|
position: absolute;
|
|
1325
1365
|
content: "";
|
|
1326
1366
|
inset: 0 auto auto 0;
|
|
@@ -1328,7 +1368,7 @@
|
|
|
1328
1368
|
width: 0.25rem;
|
|
1329
1369
|
background-color: var(--callout-color);
|
|
1330
1370
|
}
|
|
1331
|
-
.
|
|
1371
|
+
._callout_ov76x_1::before {
|
|
1332
1372
|
position: absolute;
|
|
1333
1373
|
content: "";
|
|
1334
1374
|
inset: 0 0 auto auto;
|
|
@@ -1340,17 +1380,17 @@
|
|
|
1340
1380
|
pointer-events: none;
|
|
1341
1381
|
}
|
|
1342
1382
|
|
|
1343
|
-
.
|
|
1383
|
+
._header_ov76x_26 {
|
|
1344
1384
|
display: flex;
|
|
1345
1385
|
align-items: center;
|
|
1346
1386
|
gap: 0.5rem;
|
|
1347
1387
|
}
|
|
1348
1388
|
|
|
1349
|
-
.
|
|
1389
|
+
._content_ov76x_32 {
|
|
1350
1390
|
padding-block-start: 1rem;
|
|
1351
1391
|
padding-block-end: 0.25rem;
|
|
1352
|
-
}.
|
|
1353
|
-
margin: 0;
|
|
1392
|
+
}._hr_b790w_1 {
|
|
1393
|
+
margin-block: var(--margin-block, 0);
|
|
1354
1394
|
width: 100%;
|
|
1355
1395
|
border: none;
|
|
1356
1396
|
border-bottom: dashed 1px #868e9c;
|
|
@@ -1376,16 +1416,16 @@
|
|
|
1376
1416
|
._fragment_1kofp_1:active {
|
|
1377
1417
|
opacity: 0.5;
|
|
1378
1418
|
transform: translateX(1px) translateY(1px);
|
|
1379
|
-
}._heading-
|
|
1380
|
-
margin: 0;
|
|
1419
|
+
}._heading-common_1c1xr_1 {
|
|
1381
1420
|
position: relative;
|
|
1382
1421
|
font-size: var(--font-size);
|
|
1383
1422
|
line-height: var(--font-size);
|
|
1384
1423
|
opacity: var(--opacity);
|
|
1424
|
+
margin-block: var(--margin-block, 0);
|
|
1385
1425
|
transition: color 400ms, opacity 800ms;
|
|
1386
1426
|
}
|
|
1387
1427
|
|
|
1388
|
-
.
|
|
1428
|
+
._h1_1c1xr_10::after {
|
|
1389
1429
|
position: absolute;
|
|
1390
1430
|
content: "";
|
|
1391
1431
|
bottom: -4px;
|
|
@@ -1396,10 +1436,10 @@
|
|
|
1396
1436
|
transition: transform 800ms;
|
|
1397
1437
|
transform: scaleX(var(--scale));
|
|
1398
1438
|
}
|
|
1399
|
-
[data-theme=dark] .
|
|
1439
|
+
[data-theme=dark] ._h1_1c1xr_10::after {
|
|
1400
1440
|
background-color: rgba(255, 255, 255, 0.5);
|
|
1401
1441
|
}
|
|
1402
|
-
.
|
|
1442
|
+
._h1_1c1xr_10::before {
|
|
1403
1443
|
position: absolute;
|
|
1404
1444
|
content: "";
|
|
1405
1445
|
bottom: -6px;
|
|
@@ -1411,11 +1451,11 @@
|
|
|
1411
1451
|
transform: scaleY(var(--scale));
|
|
1412
1452
|
transform-origin: top;
|
|
1413
1453
|
}
|
|
1414
|
-
[data-theme=dark] .
|
|
1454
|
+
[data-theme=dark] ._h1_1c1xr_10::before {
|
|
1415
1455
|
background-color: rgba(255, 255, 255, 0.6);
|
|
1416
1456
|
}
|
|
1417
1457
|
|
|
1418
|
-
.
|
|
1458
|
+
._h2_1c1xr_40::after {
|
|
1419
1459
|
position: absolute;
|
|
1420
1460
|
content: "";
|
|
1421
1461
|
right: 2px;
|
|
@@ -1426,10 +1466,10 @@
|
|
|
1426
1466
|
transform: skewX(-25deg);
|
|
1427
1467
|
background-color: rgba(0, 0, 0, 0.8);
|
|
1428
1468
|
}
|
|
1429
|
-
[data-theme=dark] .
|
|
1469
|
+
[data-theme=dark] ._h2_1c1xr_40::after {
|
|
1430
1470
|
background-color: rgba(255, 255, 255, 0.8);
|
|
1431
1471
|
}
|
|
1432
|
-
.
|
|
1472
|
+
._h2_1c1xr_40::before {
|
|
1433
1473
|
position: absolute;
|
|
1434
1474
|
content: "";
|
|
1435
1475
|
right: 10px;
|
|
@@ -1440,10 +1480,10 @@
|
|
|
1440
1480
|
transform: skewX(-25deg);
|
|
1441
1481
|
background-color: rgba(0, 0, 0, 0.8);
|
|
1442
1482
|
}
|
|
1443
|
-
[data-theme=dark] .
|
|
1483
|
+
[data-theme=dark] ._h2_1c1xr_40::before {
|
|
1444
1484
|
background-color: rgba(255, 255, 255, 0.8);
|
|
1445
1485
|
}
|
|
1446
|
-
.
|
|
1486
|
+
._h2__underline_1c1xr_68 {
|
|
1447
1487
|
overflow: hidden;
|
|
1448
1488
|
position: absolute;
|
|
1449
1489
|
content: "";
|
|
@@ -1456,15 +1496,15 @@
|
|
|
1456
1496
|
transform: scaleX(var(--scale));
|
|
1457
1497
|
transform-origin: left;
|
|
1458
1498
|
}
|
|
1459
|
-
[data-theme=dark] .
|
|
1499
|
+
[data-theme=dark] ._h2__underline_1c1xr_68 {
|
|
1460
1500
|
background-color: rgba(255, 255, 255, 0.5);
|
|
1461
1501
|
}
|
|
1462
1502
|
|
|
1463
|
-
.
|
|
1503
|
+
._h3_1c1xr_85 {
|
|
1464
1504
|
box-sizing: border-box;
|
|
1465
1505
|
padding-left: 0.75rem;
|
|
1466
1506
|
}
|
|
1467
|
-
.
|
|
1507
|
+
._h3_1c1xr_85::after {
|
|
1468
1508
|
position: absolute;
|
|
1469
1509
|
content: "";
|
|
1470
1510
|
width: 3px;
|
|
@@ -1473,77 +1513,77 @@
|
|
|
1473
1513
|
left: 0;
|
|
1474
1514
|
background-color: rgba(0, 0, 0, 0.5);
|
|
1475
1515
|
}
|
|
1476
|
-
[data-theme=dark] .
|
|
1516
|
+
[data-theme=dark] ._h3_1c1xr_85::after {
|
|
1477
1517
|
background-color: rgba(255, 255, 255, 0.5);
|
|
1478
1518
|
}
|
|
1479
1519
|
|
|
1480
|
-
.
|
|
1520
|
+
._h4_1c1xr_102 {
|
|
1481
1521
|
position: relative;
|
|
1482
1522
|
}
|
|
1483
1523
|
|
|
1484
|
-
.
|
|
1524
|
+
._h5_1c1xr_106 {
|
|
1485
1525
|
position: relative;
|
|
1486
1526
|
}
|
|
1487
1527
|
|
|
1488
|
-
.
|
|
1528
|
+
._h6_1c1xr_110 {
|
|
1489
1529
|
position: relative;
|
|
1490
|
-
}._elmethis-list-
|
|
1491
|
-
margin-block:
|
|
1530
|
+
}._elmethis-list-common_6g6c5_1 {
|
|
1531
|
+
margin-block: var(--margin-block, 0);
|
|
1492
1532
|
opacity: var(--opacity);
|
|
1493
1533
|
transition: opacity 800ms;
|
|
1494
1534
|
box-sizing: border-box;
|
|
1495
1535
|
padding-left: 1.25rem;
|
|
1496
1536
|
}
|
|
1497
1537
|
|
|
1498
|
-
._elmethis-bulleted-
|
|
1538
|
+
._elmethis-bulleted-list_6g6c5_9 li {
|
|
1499
1539
|
box-sizing: border-box;
|
|
1500
1540
|
padding-left: 0.5rem;
|
|
1501
1541
|
margin-block: 0.75rem;
|
|
1502
1542
|
}
|
|
1503
|
-
._elmethis-bulleted-
|
|
1543
|
+
._elmethis-bulleted-list_6g6c5_9 li::marker {
|
|
1504
1544
|
content: url("data:image/svg+xml;base64,ICA8c3ZnCiAgICB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnCiAgICB2aWV3Qm94PScwIDAgMTYgMTYnCiAgICB3aWR0aD0nMTJweCcKICAgIGhlaWdodD0nMTJweCcKICA+CiAgICA8cGF0aAogICAgICBmaWxsPScjNDQ5NzYzJwogICAgICBvcGFjaXR5PScwLjgnCiAgICAgIGQ9J00zIDMuNzMyYTEuNSAxLjUgMCAwIDEgMi4zMDUtMS4yNjVsNi43MDYgNC4yNjdhMS41IDEuNSAwIDAgMSAwIDIuNTMxbC02LjcwNiA0LjI2OEExLjUgMS41IDAgMCAxIDMgMTIuMjY3VjMuNzMyWicKICAgIC8+CiAgPC9zdmc+");
|
|
1505
1545
|
}
|
|
1506
|
-
._elmethis-bulleted-
|
|
1546
|
+
._elmethis-bulleted-list_6g6c5_9 li ul li::marker {
|
|
1507
1547
|
content: url("data:image/svg+xml;base64,ICA8c3ZnCiAgICB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnCiAgICB2aWV3Qm94PScwIDAgMjQgMjQnCiAgICB3aWR0aD0nMTJweCcKICAgIGhlaWdodD0nMTJweCcKICAgIHN0cm9rZT0nIzQ0OTc2MycKICAgIGZpbGw9J3RyYW5zcGFyZW50JwogID4KICAgIDxwYXRoCiAgICAgIHN0cm9rZUxpbmVjYXA9J3JvdW5kJwogICAgICBzdHJva2VMaW5lam9pbj0ncm91bmQnCiAgICAgIGQ9J001LjI1IDUuNjUzYzAtLjg1Ni45MTctMS4zOTggMS42NjctLjk4NmwxMS41NCA2LjM0N2ExLjEyNSAxLjEyNSAwIDAgMSAwIDEuOTcybC0xMS41NCA2LjM0N2ExLjEyNSAxLjEyNSAwIDAgMS0xLjY2Ny0uOTg2VjUuNjUzWicKICAgIC8+CiAgPC9zdmc+");
|
|
1508
1548
|
}
|
|
1509
|
-
._elmethis-bulleted-
|
|
1549
|
+
._elmethis-bulleted-list_6g6c5_9 li ul li ul li::marker {
|
|
1510
1550
|
content: url("data:image/svg+xml;base64,ICA8c3ZnCiAgICB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnCiAgICB2aWV3Qm94PScwIDAgMjAgMjAnCiAgICB3aWR0aD0nMTJweCcKICAgIGhlaWdodD0nMTJweCcKICAgIHN0cm9rZT0nIzQ0OTc2MycKICAgIGZpbGw9JyM0NDk3NjMnCiAgPgogICAgPHBhdGgKICAgICAgZmlsbFJ1bGU9J2V2ZW5vZGQnCiAgICAgIGQ9J004LjIyIDUuMjJhLjc1Ljc1IDAgMCAxIDEuMDYgMGw0LjI1IDQuMjVhLjc1Ljc1IDAgMCAxIDAgMS4wNmwtNC4yNSA0LjI1YS43NS43NSAwIDAgMS0xLjA2LTEuMDZMMTEuOTQgMTAgOC4yMiA2LjI4YS43NS43NSAwIDAgMSAwLTEuMDZaJwogICAgICBjbGlwUnVsZT0nZXZlbm9kZCcKICAgIC8+CiAgPC9zdmc+");
|
|
1511
1551
|
}
|
|
1512
1552
|
|
|
1513
|
-
._elmethis-numbered-
|
|
1553
|
+
._elmethis-numbered-list_6g6c5_24 li {
|
|
1514
1554
|
box-sizing: border-box;
|
|
1515
1555
|
padding-left: 0.25rem;
|
|
1516
1556
|
margin-block: 0.75rem;
|
|
1517
1557
|
margin-left: 0.25rem;
|
|
1518
1558
|
list-style-type: decimal;
|
|
1519
1559
|
}
|
|
1520
|
-
._elmethis-numbered-
|
|
1560
|
+
._elmethis-numbered-list_6g6c5_24 li::marker {
|
|
1521
1561
|
font-weight: bold;
|
|
1522
1562
|
color: #9771bd;
|
|
1523
1563
|
}
|
|
1524
|
-
._elmethis-numbered-
|
|
1564
|
+
._elmethis-numbered-list_6g6c5_24 li ol li {
|
|
1525
1565
|
list-style-type: lower-alpha;
|
|
1526
1566
|
}
|
|
1527
|
-
._elmethis-numbered-
|
|
1567
|
+
._elmethis-numbered-list_6g6c5_24 li ol li ol li {
|
|
1528
1568
|
list-style-type: lower-roman;
|
|
1529
1569
|
}
|
|
1530
|
-
._elmethis-numbered-
|
|
1570
|
+
._elmethis-numbered-list_6g6c5_24 li ol li ol li ol li {
|
|
1531
1571
|
list-style-type: lower-greek;
|
|
1532
|
-
}.
|
|
1572
|
+
}._paragraph_1klqe_1 {
|
|
1533
1573
|
opacity: var(--opacity, 0);
|
|
1534
|
-
opacity: var(--opacity);
|
|
1535
1574
|
transition: opacity 800ms;
|
|
1536
1575
|
color: var(--color, #606875);
|
|
1537
1576
|
background-color: var(--background-color, inherit);
|
|
1577
|
+
margin-block: var(--margin-block, 0);
|
|
1538
1578
|
}
|
|
1539
|
-
.
|
|
1579
|
+
._paragraph_1klqe_1::selection {
|
|
1540
1580
|
color: rgba(255, 255, 255, 0.7);
|
|
1541
1581
|
background-color: rgba(0, 0, 0, 0.7);
|
|
1542
1582
|
}
|
|
1543
|
-
[data-theme=dark] .
|
|
1583
|
+
[data-theme=dark] ._paragraph_1klqe_1 {
|
|
1544
1584
|
color: rgba(255, 255, 255, 0.7);
|
|
1545
1585
|
}
|
|
1546
|
-
[data-theme=dark] .
|
|
1586
|
+
[data-theme=dark] ._paragraph_1klqe_1::selection {
|
|
1547
1587
|
color: rgba(0, 0, 0, 0.7);
|
|
1548
1588
|
background-color: rgba(255, 255, 255, 0.7);
|
|
1549
1589
|
}._table_x2nyq_1 {
|
|
@@ -1632,13 +1672,7 @@
|
|
|
1632
1672
|
|
|
1633
1673
|
._th_1puhv_31 {
|
|
1634
1674
|
background-color: rgba(128, 128, 128, 0.15);
|
|
1635
|
-
}.
|
|
1636
|
-
display: flex;
|
|
1637
|
-
flex-direction: column;
|
|
1638
|
-
gap: 2rem;
|
|
1639
|
-
}
|
|
1640
|
-
|
|
1641
|
-
._column-list_1l2bp_7 {
|
|
1675
|
+
}._column-list_1yujg_1 {
|
|
1642
1676
|
box-sizing: content-box;
|
|
1643
1677
|
padding-block: 0.25rem;
|
|
1644
1678
|
width: 100%;
|
|
@@ -1649,12 +1683,12 @@
|
|
|
1649
1683
|
overflow: auto;
|
|
1650
1684
|
}
|
|
1651
1685
|
|
|
1652
|
-
.
|
|
1686
|
+
._column_1yujg_1 {
|
|
1653
1687
|
box-sizing: border-box;
|
|
1654
1688
|
padding: 0.125rem;
|
|
1655
1689
|
flex: var(--width-ratio, 1);
|
|
1656
1690
|
}
|
|
1657
|
-
.
|
|
1691
|
+
._column_1yujg_1 > * + * {
|
|
1658
1692
|
margin-block-start: 2em;
|
|
1659
1693
|
}._markdown-body_11s6o_1 {
|
|
1660
1694
|
display: flex;
|
|
@@ -13,9 +13,6 @@ export interface ElmCodeBlockProps {
|
|
|
13
13
|
* If not provided, the language will be used.
|
|
14
14
|
*/
|
|
15
15
|
caption?: string;
|
|
16
|
-
|
|
17
|
-
* The margin of the code block.
|
|
18
|
-
*/
|
|
19
|
-
margin?: CSSProperties["margin"];
|
|
16
|
+
style?: CSSProperties;
|
|
20
17
|
}
|
|
21
18
|
export declare const ElmCodeBlock: import("@builder.io/qwik").Component<ElmCodeBlockProps>;
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
import { CSSProperties } from "@builder.io/qwik";
|
|
1
2
|
export interface ElmToggleProps {
|
|
2
3
|
/**
|
|
3
4
|
* The summary of the toggle.
|
|
4
5
|
*/
|
|
5
6
|
summary?: string;
|
|
7
|
+
style?: CSSProperties;
|
|
6
8
|
}
|
|
7
9
|
export declare const ElmToggle: import("@builder.io/qwik").Component<ElmToggleProps>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from "storybook-framework-qwik";
|
|
2
|
+
import { ElmSquareLoadingIcon } from "./elm-square-loading-icon";
|
|
3
|
+
declare const meta: Meta<typeof ElmSquareLoadingIcon>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Primary: Story;
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
import { type Numberish } from "@builder.io/qwik";
|
|
1
|
+
import { CSSProperties, type Numberish } from "@builder.io/qwik";
|
|
2
2
|
export interface ElmBlockImageProps {
|
|
3
3
|
/**
|
|
4
4
|
* Image source URL
|
|
5
5
|
*/
|
|
6
6
|
src: string;
|
|
7
|
+
srcset?: string;
|
|
8
|
+
sizes?: string;
|
|
7
9
|
/**
|
|
8
10
|
* Image alt text
|
|
9
11
|
*/
|
|
@@ -12,5 +14,6 @@ export interface ElmBlockImageProps {
|
|
|
12
14
|
caption?: string;
|
|
13
15
|
width?: Numberish;
|
|
14
16
|
height?: Numberish;
|
|
17
|
+
style?: CSSProperties;
|
|
15
18
|
}
|
|
16
19
|
export declare const ElmBlockImage: import("@builder.io/qwik").Component<ElmBlockImageProps>;
|
|
@@ -4,6 +4,7 @@ declare const meta: Meta<typeof ElmBlockImage>;
|
|
|
4
4
|
export default meta;
|
|
5
5
|
type Story = StoryObj<typeof meta>;
|
|
6
6
|
export declare const Primary: Story;
|
|
7
|
+
export declare const SrcSet: Story;
|
|
7
8
|
export declare const Svg: Story;
|
|
8
9
|
export declare const LongAlt: Story;
|
|
9
10
|
export declare const Invalid: Story;
|