@homlista-devs/ui 1.6.4 → 1.6.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/README.md +25 -8
- package/dist/base.css +1373 -0
- package/dist/design-system.cjs.js +16 -16
- package/dist/design-system.cjs.js.map +1 -1
- package/dist/design-system.es.js +472 -484
- package/dist/design-system.es.js.map +1 -1
- package/dist/index.css +43 -30
- package/dist/precompiled.css +3644 -0
- package/dist/styles.css +1373 -0
- package/dist/tokens.css +387 -0
- package/dist/types/widgets/header/ui/header.d.ts.map +1 -1
- package/package.json +15 -5
package/dist/index.css
CHANGED
|
@@ -603,9 +603,15 @@
|
|
|
603
603
|
.w-1\/3 {
|
|
604
604
|
width: calc(1/3 * 100%);
|
|
605
605
|
}
|
|
606
|
+
.w-1\/5 {
|
|
607
|
+
width: calc(1/5 * 100%);
|
|
608
|
+
}
|
|
606
609
|
.w-2 {
|
|
607
610
|
width: calc(var(--spacing) * 2);
|
|
608
611
|
}
|
|
612
|
+
.w-2\/3 {
|
|
613
|
+
width: calc(2/3 * 100%);
|
|
614
|
+
}
|
|
609
615
|
.w-3 {
|
|
610
616
|
width: calc(var(--spacing) * 3);
|
|
611
617
|
}
|
|
@@ -672,6 +678,10 @@
|
|
|
672
678
|
.max-w-7xl {
|
|
673
679
|
max-width: var(--container-7xl);
|
|
674
680
|
}
|
|
681
|
+
.max-w-fit {
|
|
682
|
+
max-width: -moz-fit-content;
|
|
683
|
+
max-width: fit-content;
|
|
684
|
+
}
|
|
675
685
|
.max-w-md {
|
|
676
686
|
max-width: var(--container-md);
|
|
677
687
|
}
|
|
@@ -839,6 +849,13 @@
|
|
|
839
849
|
margin-block-end: calc(calc(var(--spacing) * 8) * calc(1 - var(--tw-space-y-reverse)));
|
|
840
850
|
}
|
|
841
851
|
}
|
|
852
|
+
.space-x-4 {
|
|
853
|
+
:where(& > :not(:last-child)) {
|
|
854
|
+
--tw-space-x-reverse: 0;
|
|
855
|
+
margin-inline-start: calc(calc(var(--spacing) * 4) * var(--tw-space-x-reverse));
|
|
856
|
+
margin-inline-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-x-reverse)));
|
|
857
|
+
}
|
|
858
|
+
}
|
|
842
859
|
.self-stretch {
|
|
843
860
|
align-self: stretch;
|
|
844
861
|
}
|
|
@@ -1432,6 +1449,12 @@
|
|
|
1432
1449
|
--tw-tracking: var(--tracking-wider);
|
|
1433
1450
|
letter-spacing: var(--tracking-wider);
|
|
1434
1451
|
}
|
|
1452
|
+
.text-nowrap {
|
|
1453
|
+
text-wrap: nowrap;
|
|
1454
|
+
}
|
|
1455
|
+
.text-ellipsis {
|
|
1456
|
+
text-overflow: ellipsis;
|
|
1457
|
+
}
|
|
1435
1458
|
.whitespace-nowrap {
|
|
1436
1459
|
white-space: nowrap;
|
|
1437
1460
|
}
|
|
@@ -2166,6 +2189,11 @@
|
|
|
2166
2189
|
height: calc(var(--spacing) * 24);
|
|
2167
2190
|
}
|
|
2168
2191
|
}
|
|
2192
|
+
.md\:w-1\/5 {
|
|
2193
|
+
@media (width >= 48rem) {
|
|
2194
|
+
width: calc(1/5 * 100%);
|
|
2195
|
+
}
|
|
2196
|
+
}
|
|
2169
2197
|
.md\:grid-cols-2 {
|
|
2170
2198
|
@media (width >= 48rem) {
|
|
2171
2199
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
@@ -2413,8 +2441,7 @@
|
|
|
2413
2441
|
--radius-3xl: 1.5rem;
|
|
2414
2442
|
--radius-full: 9999px;
|
|
2415
2443
|
}
|
|
2416
|
-
.dark,
|
|
2417
|
-
[data-theme="dark"] {
|
|
2444
|
+
.dark, [data-theme="dark"] {
|
|
2418
2445
|
--background: 222.2 84% 4.9%;
|
|
2419
2446
|
--background-secondary: 222.2 84% 6%;
|
|
2420
2447
|
--background-tertiary: 222.2 84% 8%;
|
|
@@ -2685,9 +2712,7 @@
|
|
|
2685
2712
|
--ring: 221.2 83.2% 53.3%;
|
|
2686
2713
|
}
|
|
2687
2714
|
@layer base {
|
|
2688
|
-
*,
|
|
2689
|
-
*::before,
|
|
2690
|
-
*::after {
|
|
2715
|
+
*, *::before, *::after {
|
|
2691
2716
|
box-sizing: border-box;
|
|
2692
2717
|
}
|
|
2693
2718
|
* {
|
|
@@ -2707,19 +2732,11 @@
|
|
|
2707
2732
|
:focus:not(:focus-visible) {
|
|
2708
2733
|
outline: none;
|
|
2709
2734
|
}
|
|
2710
|
-
img,
|
|
2711
|
-
picture,
|
|
2712
|
-
video,
|
|
2713
|
-
canvas,
|
|
2714
|
-
svg {
|
|
2735
|
+
img, picture, video, canvas, svg {
|
|
2715
2736
|
display: block;
|
|
2716
2737
|
max-width: 100%;
|
|
2717
2738
|
}
|
|
2718
|
-
input,
|
|
2719
|
-
button,
|
|
2720
|
-
select,
|
|
2721
|
-
optgroup,
|
|
2722
|
-
textarea {
|
|
2739
|
+
input, button, select, optgroup, textarea {
|
|
2723
2740
|
font-family: inherit;
|
|
2724
2741
|
font-size: 100%;
|
|
2725
2742
|
line-height: 1.15;
|
|
@@ -2729,10 +2746,7 @@
|
|
|
2729
2746
|
-webkit-appearance: textfield;
|
|
2730
2747
|
outline-offset: -2px;
|
|
2731
2748
|
}
|
|
2732
|
-
input[type="search"]::-webkit-search-decoration,
|
|
2733
|
-
input[type="search"]::-webkit-search-cancel-button,
|
|
2734
|
-
input[type="search"]::-webkit-search-results-button,
|
|
2735
|
-
input[type="search"]::-webkit-search-results-decoration {
|
|
2749
|
+
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-results-button, input[type="search"]::-webkit-search-results-decoration {
|
|
2736
2750
|
-webkit-appearance: none;
|
|
2737
2751
|
}
|
|
2738
2752
|
button {
|
|
@@ -2747,18 +2761,13 @@
|
|
|
2747
2761
|
-moz-osx-font-smoothing: grayscale;
|
|
2748
2762
|
font-family: var(--font-body, ui-sans-serif, system-ui, sans-serif);
|
|
2749
2763
|
}
|
|
2750
|
-
ol,
|
|
2751
|
-
ul {
|
|
2764
|
+
ol, ul {
|
|
2752
2765
|
list-style: none;
|
|
2753
2766
|
}
|
|
2754
|
-
blockquote,
|
|
2755
|
-
q {
|
|
2767
|
+
blockquote, q {
|
|
2756
2768
|
quotes: none;
|
|
2757
2769
|
}
|
|
2758
|
-
blockquote::before,
|
|
2759
|
-
blockquote::after,
|
|
2760
|
-
q::before,
|
|
2761
|
-
q::after {
|
|
2770
|
+
blockquote::before, blockquote::after, q::before, q::after {
|
|
2762
2771
|
content: '';
|
|
2763
2772
|
content: none;
|
|
2764
2773
|
}
|
|
@@ -3135,9 +3144,7 @@
|
|
|
3135
3144
|
}
|
|
3136
3145
|
}
|
|
3137
3146
|
@media (prefers-reduced-motion: reduce) {
|
|
3138
|
-
*,
|
|
3139
|
-
*::before,
|
|
3140
|
-
*::after {
|
|
3147
|
+
*, *::before, *::after {
|
|
3141
3148
|
animation-duration: 0.01ms !important;
|
|
3142
3149
|
animation-iteration-count: 1 !important;
|
|
3143
3150
|
transition-duration: 0.01ms !important;
|
|
@@ -3307,6 +3314,11 @@
|
|
|
3307
3314
|
inherits: false;
|
|
3308
3315
|
initial-value: 0;
|
|
3309
3316
|
}
|
|
3317
|
+
@property --tw-space-x-reverse {
|
|
3318
|
+
syntax: "*";
|
|
3319
|
+
inherits: false;
|
|
3320
|
+
initial-value: 0;
|
|
3321
|
+
}
|
|
3310
3322
|
@property --tw-border-style {
|
|
3311
3323
|
syntax: "*";
|
|
3312
3324
|
inherits: false;
|
|
@@ -3570,6 +3582,7 @@
|
|
|
3570
3582
|
--tw-skew-x: initial;
|
|
3571
3583
|
--tw-skew-y: initial;
|
|
3572
3584
|
--tw-space-y-reverse: 0;
|
|
3585
|
+
--tw-space-x-reverse: 0;
|
|
3573
3586
|
--tw-border-style: solid;
|
|
3574
3587
|
--tw-gradient-position: initial;
|
|
3575
3588
|
--tw-gradient-from: #0000;
|