@geomak/ui 7.7.2 → 7.7.4
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.cjs +6 -11
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +33 -26
- package/dist/index.d.ts +33 -26
- package/dist/index.js +6 -11
- package/dist/index.js.map +1 -1
- package/dist/styles.css +20 -3
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1520,6 +1520,12 @@ input:autofill,
|
|
|
1520
1520
|
.w-\[calc\(100\%-2rem\)\] {
|
|
1521
1521
|
width: calc(100% - 2rem);
|
|
1522
1522
|
}
|
|
1523
|
+
.w-\[calc\(50\%-6px\)\] {
|
|
1524
|
+
width: calc(50% - 6px);
|
|
1525
|
+
}
|
|
1526
|
+
.w-\[\2026\] {
|
|
1527
|
+
width: …;
|
|
1528
|
+
}
|
|
1523
1529
|
.w-fit {
|
|
1524
1530
|
width: -moz-fit-content;
|
|
1525
1531
|
width: fit-content;
|
|
@@ -1630,9 +1636,6 @@ input:autofill,
|
|
|
1630
1636
|
.flex-1 {
|
|
1631
1637
|
flex: 1 1 0%;
|
|
1632
1638
|
}
|
|
1633
|
-
.flex-none {
|
|
1634
|
-
flex: none;
|
|
1635
|
-
}
|
|
1636
1639
|
.flex-shrink-0 {
|
|
1637
1640
|
flex-shrink: 0;
|
|
1638
1641
|
}
|
|
@@ -2863,6 +2866,11 @@ input:autofill,
|
|
|
2863
2866
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2864
2867
|
transition-duration: 150ms;
|
|
2865
2868
|
}
|
|
2869
|
+
.transition-\[width\2c height\2c box-shadow\] {
|
|
2870
|
+
transition-property: width,height,box-shadow;
|
|
2871
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2872
|
+
transition-duration: 150ms;
|
|
2873
|
+
}
|
|
2866
2874
|
.transition-all {
|
|
2867
2875
|
transition-property: all;
|
|
2868
2876
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -2900,6 +2908,9 @@ input:autofill,
|
|
|
2900
2908
|
.duration-300 {
|
|
2901
2909
|
transition-duration: 300ms;
|
|
2902
2910
|
}
|
|
2911
|
+
.duration-\[320ms\] {
|
|
2912
|
+
transition-duration: 320ms;
|
|
2913
|
+
}
|
|
2903
2914
|
.duration-fast {
|
|
2904
2915
|
transition-duration: var(--duration-fast);
|
|
2905
2916
|
}
|
|
@@ -2915,6 +2926,9 @@ input:autofill,
|
|
|
2915
2926
|
.duration-slow {
|
|
2916
2927
|
transition-duration: var(--duration-slow);
|
|
2917
2928
|
}
|
|
2929
|
+
.ease-\[cubic-bezier\(0\.16\2c 1\2c 0\.3\2c 1\)\] {
|
|
2930
|
+
transition-timing-function: cubic-bezier(0.16,1,0.3,1);
|
|
2931
|
+
}
|
|
2918
2932
|
.ease-in {
|
|
2919
2933
|
transition-timing-function: var(--ease-in);
|
|
2920
2934
|
}
|
|
@@ -3487,6 +3501,9 @@ input:autofill,
|
|
|
3487
3501
|
margin-top: -0.5rem;
|
|
3488
3502
|
margin-bottom: -0.5rem;
|
|
3489
3503
|
}
|
|
3504
|
+
.lg\:w-\[calc\(50\%-6px\)\] {
|
|
3505
|
+
width: calc(50% - 6px);
|
|
3506
|
+
}
|
|
3490
3507
|
.lg\:grid-cols-2 {
|
|
3491
3508
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
3492
3509
|
}
|