@elmethis/qwik 0.0.27 → 0.0.29
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 +175 -152
- package/lib/index.qwik.mjs +175 -152
- package/lib/style.css +68 -26
- 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/index.d.ts +1 -0
- package/package.json +1 -1
package/lib/style.css
CHANGED
|
@@ -959,6 +959,42 @@
|
|
|
959
959
|
color: #b0b5be;
|
|
960
960
|
border-radius: 50%;
|
|
961
961
|
cursor: pointer;
|
|
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 {
|
|
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;
|
|
962
998
|
}._block-image_sf1wj_1 {
|
|
963
999
|
margin-block: var(--margin-block, 0);
|
|
964
1000
|
margin-inline: 0;
|
|
@@ -1380,7 +1416,7 @@
|
|
|
1380
1416
|
._fragment_1kofp_1:active {
|
|
1381
1417
|
opacity: 0.5;
|
|
1382
1418
|
transform: translateX(1px) translateY(1px);
|
|
1383
|
-
}._heading-
|
|
1419
|
+
}._heading-common_13qod_1 {
|
|
1384
1420
|
position: relative;
|
|
1385
1421
|
font-size: var(--font-size);
|
|
1386
1422
|
line-height: var(--font-size);
|
|
@@ -1389,7 +1425,15 @@
|
|
|
1389
1425
|
transition: color 400ms, opacity 800ms;
|
|
1390
1426
|
}
|
|
1391
1427
|
|
|
1392
|
-
|
|
1428
|
+
@keyframes _heading-stretch_13qod_1 {
|
|
1429
|
+
from {
|
|
1430
|
+
transform: scaleX(0);
|
|
1431
|
+
}
|
|
1432
|
+
to {
|
|
1433
|
+
transform: scaleX(1);
|
|
1434
|
+
}
|
|
1435
|
+
}
|
|
1436
|
+
._h1_13qod_18::after {
|
|
1393
1437
|
position: absolute;
|
|
1394
1438
|
content: "";
|
|
1395
1439
|
bottom: -4px;
|
|
@@ -1397,13 +1441,13 @@
|
|
|
1397
1441
|
width: 100%;
|
|
1398
1442
|
height: 0.25px;
|
|
1399
1443
|
background-color: rgba(0, 0, 0, 0.5);
|
|
1400
|
-
|
|
1401
|
-
|
|
1444
|
+
transform-origin: left;
|
|
1445
|
+
animation: _heading-stretch_13qod_1 1000ms ease 200ms both;
|
|
1402
1446
|
}
|
|
1403
|
-
[data-theme=dark] .
|
|
1447
|
+
[data-theme=dark] ._h1_13qod_18::after {
|
|
1404
1448
|
background-color: rgba(255, 255, 255, 0.5);
|
|
1405
1449
|
}
|
|
1406
|
-
.
|
|
1450
|
+
._h1_13qod_18::before {
|
|
1407
1451
|
position: absolute;
|
|
1408
1452
|
content: "";
|
|
1409
1453
|
bottom: -6px;
|
|
@@ -1415,11 +1459,11 @@
|
|
|
1415
1459
|
transform: scaleY(var(--scale));
|
|
1416
1460
|
transform-origin: top;
|
|
1417
1461
|
}
|
|
1418
|
-
[data-theme=dark] .
|
|
1462
|
+
[data-theme=dark] ._h1_13qod_18::before {
|
|
1419
1463
|
background-color: rgba(255, 255, 255, 0.6);
|
|
1420
1464
|
}
|
|
1421
1465
|
|
|
1422
|
-
.
|
|
1466
|
+
._h2_13qod_48::after {
|
|
1423
1467
|
position: absolute;
|
|
1424
1468
|
content: "";
|
|
1425
1469
|
right: 2px;
|
|
@@ -1430,10 +1474,10 @@
|
|
|
1430
1474
|
transform: skewX(-25deg);
|
|
1431
1475
|
background-color: rgba(0, 0, 0, 0.8);
|
|
1432
1476
|
}
|
|
1433
|
-
[data-theme=dark] .
|
|
1477
|
+
[data-theme=dark] ._h2_13qod_48::after {
|
|
1434
1478
|
background-color: rgba(255, 255, 255, 0.8);
|
|
1435
1479
|
}
|
|
1436
|
-
.
|
|
1480
|
+
._h2_13qod_48::before {
|
|
1437
1481
|
position: absolute;
|
|
1438
1482
|
content: "";
|
|
1439
1483
|
right: 10px;
|
|
@@ -1444,10 +1488,10 @@
|
|
|
1444
1488
|
transform: skewX(-25deg);
|
|
1445
1489
|
background-color: rgba(0, 0, 0, 0.8);
|
|
1446
1490
|
}
|
|
1447
|
-
[data-theme=dark] .
|
|
1491
|
+
[data-theme=dark] ._h2_13qod_48::before {
|
|
1448
1492
|
background-color: rgba(255, 255, 255, 0.8);
|
|
1449
1493
|
}
|
|
1450
|
-
.
|
|
1494
|
+
._h2__underline_13qod_76 {
|
|
1451
1495
|
overflow: hidden;
|
|
1452
1496
|
position: absolute;
|
|
1453
1497
|
content: "";
|
|
@@ -1456,19 +1500,18 @@
|
|
|
1456
1500
|
width: 100%;
|
|
1457
1501
|
height: 0.25px;
|
|
1458
1502
|
background-color: rgba(0, 0, 0, 0.5);
|
|
1459
|
-
transition: transform 800ms;
|
|
1460
|
-
transform: scaleX(var(--scale));
|
|
1461
1503
|
transform-origin: left;
|
|
1504
|
+
animation: _heading-stretch_13qod_1 1000ms ease 200ms both;
|
|
1462
1505
|
}
|
|
1463
|
-
[data-theme=dark] .
|
|
1506
|
+
[data-theme=dark] ._h2__underline_13qod_76 {
|
|
1464
1507
|
background-color: rgba(255, 255, 255, 0.5);
|
|
1465
1508
|
}
|
|
1466
1509
|
|
|
1467
|
-
.
|
|
1510
|
+
._h3_13qod_92 {
|
|
1468
1511
|
box-sizing: border-box;
|
|
1469
1512
|
padding-left: 0.75rem;
|
|
1470
1513
|
}
|
|
1471
|
-
.
|
|
1514
|
+
._h3_13qod_92::after {
|
|
1472
1515
|
position: absolute;
|
|
1473
1516
|
content: "";
|
|
1474
1517
|
width: 3px;
|
|
@@ -1477,19 +1520,19 @@
|
|
|
1477
1520
|
left: 0;
|
|
1478
1521
|
background-color: rgba(0, 0, 0, 0.5);
|
|
1479
1522
|
}
|
|
1480
|
-
[data-theme=dark] .
|
|
1523
|
+
[data-theme=dark] ._h3_13qod_92::after {
|
|
1481
1524
|
background-color: rgba(255, 255, 255, 0.5);
|
|
1482
1525
|
}
|
|
1483
1526
|
|
|
1484
|
-
.
|
|
1527
|
+
._h4_13qod_109 {
|
|
1485
1528
|
position: relative;
|
|
1486
1529
|
}
|
|
1487
1530
|
|
|
1488
|
-
.
|
|
1531
|
+
._h5_13qod_113 {
|
|
1489
1532
|
position: relative;
|
|
1490
1533
|
}
|
|
1491
1534
|
|
|
1492
|
-
.
|
|
1535
|
+
._h6_13qod_117 {
|
|
1493
1536
|
position: relative;
|
|
1494
1537
|
}._elmethis-list-common_6g6c5_1 {
|
|
1495
1538
|
margin-block: var(--margin-block, 0);
|
|
@@ -1533,21 +1576,20 @@
|
|
|
1533
1576
|
}
|
|
1534
1577
|
._elmethis-numbered-list_6g6c5_24 li ol li ol li ol li {
|
|
1535
1578
|
list-style-type: lower-greek;
|
|
1536
|
-
}.
|
|
1537
|
-
opacity: var(--opacity, 0);
|
|
1579
|
+
}._paragraph_14h3g_1 {
|
|
1538
1580
|
transition: opacity 800ms;
|
|
1539
1581
|
color: var(--color, #606875);
|
|
1540
1582
|
background-color: var(--background-color, inherit);
|
|
1541
1583
|
margin-block: var(--margin-block, 0);
|
|
1542
1584
|
}
|
|
1543
|
-
.
|
|
1585
|
+
._paragraph_14h3g_1::selection {
|
|
1544
1586
|
color: rgba(255, 255, 255, 0.7);
|
|
1545
1587
|
background-color: rgba(0, 0, 0, 0.7);
|
|
1546
1588
|
}
|
|
1547
|
-
[data-theme=dark] .
|
|
1589
|
+
[data-theme=dark] ._paragraph_14h3g_1 {
|
|
1548
1590
|
color: rgba(255, 255, 255, 0.7);
|
|
1549
1591
|
}
|
|
1550
|
-
[data-theme=dark] .
|
|
1592
|
+
[data-theme=dark] ._paragraph_14h3g_1::selection {
|
|
1551
1593
|
color: rgba(0, 0, 0, 0.7);
|
|
1552
1594
|
background-color: rgba(255, 255, 255, 0.7);
|
|
1553
1595
|
}._table_x2nyq_1 {
|
|
@@ -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;
|
package/lib-types/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export { ElmInlineIcon, type ElmInlineIconProps, } from "./components/icon/elm-i
|
|
|
16
16
|
export { ElmLanguageIcon, type ElmLanguageIconProps, } from "./components/icon/elm-language-icon";
|
|
17
17
|
export { ElmMdiIcon, type ElmMdiIconProps, } from "./components/icon/elm-mdi-icon";
|
|
18
18
|
export { ElmToggleTheme, type ElmToggleThemeProps, } from "./components/icon/elm-toggle-theme";
|
|
19
|
+
export { ElmSquareLoadingIcon, type ElmSquareLoadingIconProps, } from "./components/icon/elm-square-loading-icon";
|
|
19
20
|
export { ElmBlockImage, type ElmBlockImageProps, } from "./components/media/elm-block-image";
|
|
20
21
|
export { ElmFile, type ElmFileProps } from "./components/media/elm-file";
|
|
21
22
|
export { ElmBookmark, type ElmBookmarkProps, } from "./components/navigation/elm-bookmark";
|