@kompasid/lit-web-components 0.5.5 → 0.5.7
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/demo/index.html +26 -1
- package/dist/src/components/kompasid-metered-wall-register/KompasMeteredWallRegister.d.ts +98 -0
- package/dist/src/components/kompasid-metered-wall-register/KompasMeteredWallRegister.js +395 -0
- package/dist/src/components/kompasid-metered-wall-register/KompasMeteredWallRegister.js.map +1 -0
- package/dist/src/components/kompasid-metered-wall-register/types.d.ts +16 -0
- package/dist/src/components/kompasid-metered-wall-register/types.js +2 -0
- package/dist/src/components/kompasid-metered-wall-register/types.js.map +1 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.js +1 -0
- package/dist/src/index.js.map +1 -1
- package/dist/tailwind/tailwind.js +81 -0
- package/dist/tailwind/tailwind.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/components/kompasid-metered-wall-register/KompasMeteredWallRegister.ts +349 -0
- package/src/components/kompasid-metered-wall-register/readme.md +77 -0
- package/src/components/kompasid-metered-wall-register/types.ts +16 -0
- package/src/index.ts +1 -0
- package/tailwind/tailwind.css +81 -0
- package/tailwind/tailwind.ts +81 -0
package/tailwind/tailwind.ts
CHANGED
|
@@ -612,6 +612,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
612
612
|
grid-column: span 4 / span 4;
|
|
613
613
|
}
|
|
614
614
|
|
|
615
|
+
.m-auto {
|
|
616
|
+
margin: auto;
|
|
617
|
+
}
|
|
618
|
+
|
|
615
619
|
.mx-2 {
|
|
616
620
|
margin-left: 0.5rem;
|
|
617
621
|
margin-right: 0.5rem;
|
|
@@ -666,6 +670,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
666
670
|
margin-bottom: 0.5rem;
|
|
667
671
|
}
|
|
668
672
|
|
|
673
|
+
.mb-3 {
|
|
674
|
+
margin-bottom: 0.75rem;
|
|
675
|
+
}
|
|
676
|
+
|
|
669
677
|
.mb-4 {
|
|
670
678
|
margin-bottom: 1rem;
|
|
671
679
|
}
|
|
@@ -690,6 +698,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
690
698
|
margin-left: 0.75rem;
|
|
691
699
|
}
|
|
692
700
|
|
|
701
|
+
.ml-4 {
|
|
702
|
+
margin-left: 1rem;
|
|
703
|
+
}
|
|
704
|
+
|
|
693
705
|
.ml-8 {
|
|
694
706
|
margin-left: 2rem;
|
|
695
707
|
}
|
|
@@ -738,6 +750,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
738
750
|
margin-top: 2rem;
|
|
739
751
|
}
|
|
740
752
|
|
|
753
|
+
.ml-auto {
|
|
754
|
+
margin-left: auto;
|
|
755
|
+
}
|
|
756
|
+
|
|
741
757
|
.block {
|
|
742
758
|
display: block;
|
|
743
759
|
}
|
|
@@ -770,6 +786,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
770
786
|
height: 1rem;
|
|
771
787
|
}
|
|
772
788
|
|
|
789
|
+
.h-40 {
|
|
790
|
+
height: 10rem;
|
|
791
|
+
}
|
|
792
|
+
|
|
773
793
|
.h-5 {
|
|
774
794
|
height: 1.25rem;
|
|
775
795
|
}
|
|
@@ -875,6 +895,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
875
895
|
width: 100%;
|
|
876
896
|
}
|
|
877
897
|
|
|
898
|
+
.w-\\[127px\\] {
|
|
899
|
+
width: 127px;
|
|
900
|
+
}
|
|
901
|
+
|
|
878
902
|
.max-w-7xl {
|
|
879
903
|
max-width: 80rem;
|
|
880
904
|
}
|
|
@@ -956,6 +980,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
956
980
|
flex-direction: column;
|
|
957
981
|
}
|
|
958
982
|
|
|
983
|
+
.flex-col-reverse {
|
|
984
|
+
flex-direction: column-reverse;
|
|
985
|
+
}
|
|
986
|
+
|
|
959
987
|
.flex-wrap {
|
|
960
988
|
flex-wrap: wrap;
|
|
961
989
|
}
|
|
@@ -1277,6 +1305,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1277
1305
|
padding-right: 1rem;
|
|
1278
1306
|
}
|
|
1279
1307
|
|
|
1308
|
+
.px-5 {
|
|
1309
|
+
padding-left: 1.25rem;
|
|
1310
|
+
padding-right: 1.25rem;
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1280
1313
|
.px-8 {
|
|
1281
1314
|
padding-left: 2rem;
|
|
1282
1315
|
padding-right: 2rem;
|
|
@@ -1371,6 +1404,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1371
1404
|
padding-left: 1rem;
|
|
1372
1405
|
}
|
|
1373
1406
|
|
|
1407
|
+
.pr-14 {
|
|
1408
|
+
padding-right: 3.5rem;
|
|
1409
|
+
}
|
|
1410
|
+
|
|
1374
1411
|
.pr-2 {
|
|
1375
1412
|
padding-right: 0.5rem;
|
|
1376
1413
|
}
|
|
@@ -1621,6 +1658,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1621
1658
|
margin-right: 1.25rem;
|
|
1622
1659
|
}
|
|
1623
1660
|
|
|
1661
|
+
.md\\:mt-0 {
|
|
1662
|
+
margin-top: 0px;
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1624
1665
|
.md\\:mt-3 {
|
|
1625
1666
|
margin-top: 0.75rem;
|
|
1626
1667
|
}
|
|
@@ -1653,6 +1694,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1653
1694
|
height: 68px;
|
|
1654
1695
|
}
|
|
1655
1696
|
|
|
1697
|
+
.md\\:h-full {
|
|
1698
|
+
height: 100%;
|
|
1699
|
+
}
|
|
1700
|
+
|
|
1656
1701
|
.md\\:h-max {
|
|
1657
1702
|
height: -moz-max-content;
|
|
1658
1703
|
height: max-content;
|
|
@@ -1670,6 +1715,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1670
1715
|
width: 10rem;
|
|
1671
1716
|
}
|
|
1672
1717
|
|
|
1718
|
+
.md\\:w-5\\/12 {
|
|
1719
|
+
width: 41.666667%;
|
|
1720
|
+
}
|
|
1721
|
+
|
|
1673
1722
|
.md\\:w-52 {
|
|
1674
1723
|
width: 13rem;
|
|
1675
1724
|
}
|
|
@@ -1730,6 +1779,14 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1730
1779
|
justify-content: center;
|
|
1731
1780
|
}
|
|
1732
1781
|
|
|
1782
|
+
.md\\:gap-2 {
|
|
1783
|
+
gap: 0.5rem;
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1786
|
+
.md\\:gap-8 {
|
|
1787
|
+
gap: 2rem;
|
|
1788
|
+
}
|
|
1789
|
+
|
|
1733
1790
|
.md\\:space-x-0 > :not([hidden]) ~ :not([hidden]) {
|
|
1734
1791
|
--tw-space-x-reverse: 0;
|
|
1735
1792
|
margin-right: calc(0px * var(--tw-space-x-reverse));
|
|
@@ -1760,10 +1817,18 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1760
1817
|
margin-bottom: calc(1rem * var(--tw-space-y-reverse));
|
|
1761
1818
|
}
|
|
1762
1819
|
|
|
1820
|
+
.md\\:self-start {
|
|
1821
|
+
align-self: flex-start;
|
|
1822
|
+
}
|
|
1823
|
+
|
|
1763
1824
|
.md\\:self-end {
|
|
1764
1825
|
align-self: flex-end;
|
|
1765
1826
|
}
|
|
1766
1827
|
|
|
1828
|
+
.md\\:self-center {
|
|
1829
|
+
align-self: center;
|
|
1830
|
+
}
|
|
1831
|
+
|
|
1767
1832
|
.md\\:rounded {
|
|
1768
1833
|
border-radius: 0.25rem;
|
|
1769
1834
|
}
|
|
@@ -1841,6 +1906,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1841
1906
|
text-align: left;
|
|
1842
1907
|
}
|
|
1843
1908
|
|
|
1909
|
+
.md\\:text-2xl {
|
|
1910
|
+
font-size: 1.5rem;
|
|
1911
|
+
line-height: 2rem;
|
|
1912
|
+
}
|
|
1913
|
+
|
|
1844
1914
|
.md\\:text-base {
|
|
1845
1915
|
font-size: 1rem;
|
|
1846
1916
|
line-height: 1.5rem;
|
|
@@ -1929,6 +1999,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1929
1999
|
width: 410px;
|
|
1930
2000
|
}
|
|
1931
2001
|
|
|
2002
|
+
.lg\\:max-w-7xl {
|
|
2003
|
+
max-width: 80rem;
|
|
2004
|
+
}
|
|
2005
|
+
|
|
1932
2006
|
.lg\\:grid-cols-12 {
|
|
1933
2007
|
grid-template-columns: repeat(12, minmax(0, 1fr));
|
|
1934
2008
|
}
|
|
@@ -1993,4 +2067,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1993
2067
|
padding-bottom: 1.5rem;
|
|
1994
2068
|
}
|
|
1995
2069
|
}
|
|
2070
|
+
|
|
2071
|
+
@media (min-width: 1280px) {
|
|
2072
|
+
.xl\\:px-0 {
|
|
2073
|
+
padding-left: 0px;
|
|
2074
|
+
padding-right: 0px;
|
|
2075
|
+
}
|
|
2076
|
+
}
|
|
1996
2077
|
`
|