@yomologic/react-ui 0.5.4 → 0.5.6
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.d.mts +54 -2
- package/dist/index.d.ts +54 -2
- package/dist/index.js +390 -200
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +389 -200
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +20 -0
- package/dist/styles.css.map +1 -1
- package/package.json +5 -2
package/dist/styles.css
CHANGED
|
@@ -1514,6 +1514,9 @@
|
|
|
1514
1514
|
}
|
|
1515
1515
|
background-image: linear-gradient(var(--tw-gradient-stops));
|
|
1516
1516
|
}
|
|
1517
|
+
.bg-\[url\(\'data\:image\/svg\+xml\;charset\=UTF-8\,\%3csvg\%20xmlns\%3D\%22http\%3A\%2F\%2Fwww\.w3\.org\%2F2000\%2Fsvg\%22\%20width\%3D\%2224\%22\%20height\%3D\%2224\%22\%20viewBox\%3D\%220\%200\%2024\%2024\%22\%20fill\%3D\%22none\%22\%20stroke\%3D\%22currentColor\%22\%20stroke-width\%3D\%222\%22\%20stroke-linecap\%3D\%22round\%22\%20stroke-linejoin\%3D\%22round\%22\%3E\%3cpolyline\%20points\%3D\%226\%209\%2012\%2015\%2018\%209\%22\%3E\%3c\%2fpolyline\%3E\%3c\%2fsvg\%3E\'\)\] {
|
|
1518
|
+
background-image: url(data:image/svg+xml;charset=UTF-8,%3csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3c%2fpolyline%3E%3c%2fsvg%3E);
|
|
1519
|
+
}
|
|
1517
1520
|
.from-blue-400 {
|
|
1518
1521
|
--tw-gradient-from: var(--color-blue-400);
|
|
1519
1522
|
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
@@ -1555,15 +1558,24 @@
|
|
|
1555
1558
|
--tw-gradient-to: transparent;
|
|
1556
1559
|
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
1557
1560
|
}
|
|
1561
|
+
.bg-\[length\:1\.25rem_1\.25rem\] {
|
|
1562
|
+
background-size: 1.25rem 1.25rem;
|
|
1563
|
+
}
|
|
1558
1564
|
.bg-cover {
|
|
1559
1565
|
background-size: cover;
|
|
1560
1566
|
}
|
|
1561
1567
|
.bg-clip-text {
|
|
1562
1568
|
background-clip: text;
|
|
1563
1569
|
}
|
|
1570
|
+
.bg-\[position\:right_0\.5rem_center\] {
|
|
1571
|
+
background-position: right 0.5rem center;
|
|
1572
|
+
}
|
|
1564
1573
|
.bg-center {
|
|
1565
1574
|
background-position: center;
|
|
1566
1575
|
}
|
|
1576
|
+
.bg-no-repeat {
|
|
1577
|
+
background-repeat: no-repeat;
|
|
1578
|
+
}
|
|
1567
1579
|
.object-contain {
|
|
1568
1580
|
object-fit: contain;
|
|
1569
1581
|
}
|
|
@@ -1651,6 +1663,9 @@
|
|
|
1651
1663
|
.py-3 {
|
|
1652
1664
|
padding-block: calc(var(--spacing) * 3);
|
|
1653
1665
|
}
|
|
1666
|
+
.py-3\.5 {
|
|
1667
|
+
padding-block: calc(var(--spacing) * 3.5);
|
|
1668
|
+
}
|
|
1654
1669
|
.py-4 {
|
|
1655
1670
|
padding-block: calc(var(--spacing) * 4);
|
|
1656
1671
|
}
|
|
@@ -3161,6 +3176,11 @@
|
|
|
3161
3176
|
top: calc(var(--spacing) * 0);
|
|
3162
3177
|
}
|
|
3163
3178
|
}
|
|
3179
|
+
.lg\:right-64 {
|
|
3180
|
+
@media (width >= 64rem) {
|
|
3181
|
+
right: calc(var(--spacing) * 64);
|
|
3182
|
+
}
|
|
3183
|
+
}
|
|
3164
3184
|
.lg\:mr-64 {
|
|
3165
3185
|
@media (width >= 64rem) {
|
|
3166
3186
|
margin-right: calc(var(--spacing) * 64);
|