@geomak/ui 5.0.2 → 5.0.3

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/styles.css CHANGED
@@ -82,10 +82,10 @@
82
82
  }
83
83
  @keyframes shimmer {
84
84
  0% {
85
- background-position: -400% 0;
85
+ transform: translateX(-100%);
86
86
  }
87
87
  100% {
88
- background-position: 400% 0;
88
+ transform: translateX(100%);
89
89
  }
90
90
  }
91
91
  @keyframes fade-in {
@@ -768,6 +768,9 @@ video {
768
768
  .bottom-0 {
769
769
  bottom: 0px;
770
770
  }
771
+ .bottom-2 {
772
+ bottom: 0.5rem;
773
+ }
771
774
  .bottom-4 {
772
775
  bottom: 1rem;
773
776
  }
@@ -777,6 +780,9 @@ video {
777
780
  .left-1\/2 {
778
781
  left: 50%;
779
782
  }
783
+ .left-2 {
784
+ left: 0.5rem;
785
+ }
780
786
  .left-4 {
781
787
  left: 1rem;
782
788
  }
@@ -786,6 +792,9 @@ video {
786
792
  .right-1\.5 {
787
793
  right: 0.375rem;
788
794
  }
795
+ .right-2 {
796
+ right: 0.5rem;
797
+ }
789
798
  .right-4 {
790
799
  right: 1rem;
791
800
  }
@@ -798,6 +807,9 @@ video {
798
807
  .top-1\/2 {
799
808
  top: 50%;
800
809
  }
810
+ .top-2 {
811
+ top: 0.5rem;
812
+ }
801
813
  .top-4 {
802
814
  top: 1rem;
803
815
  }
@@ -934,6 +946,9 @@ video {
934
946
  .hidden {
935
947
  display: none;
936
948
  }
949
+ .h-0\.5 {
950
+ height: 0.125rem;
951
+ }
937
952
  .h-1 {
938
953
  height: 0.25rem;
939
954
  }
@@ -979,6 +994,9 @@ video {
979
994
  .h-4 {
980
995
  height: 1rem;
981
996
  }
997
+ .h-48 {
998
+ height: 12rem;
999
+ }
982
1000
  .h-5 {
983
1001
  height: 1.25rem;
984
1002
  }
@@ -1006,6 +1024,9 @@ video {
1006
1024
  .h-\[3px\] {
1007
1025
  height: 3px;
1008
1026
  }
1027
+ .h-\[400px\] {
1028
+ height: 400px;
1029
+ }
1009
1030
  .h-full {
1010
1031
  height: 100%;
1011
1032
  }
@@ -1046,6 +1067,9 @@ video {
1046
1067
  .w-0 {
1047
1068
  width: 0px;
1048
1069
  }
1070
+ .w-0\.5 {
1071
+ width: 0.125rem;
1072
+ }
1049
1073
  .w-1 {
1050
1074
  width: 0.25rem;
1051
1075
  }
@@ -1161,6 +1185,9 @@ video {
1161
1185
  .min-w-\[200px\] {
1162
1186
  min-width: 200px;
1163
1187
  }
1188
+ .min-w-\[224px\] {
1189
+ min-width: 224px;
1190
+ }
1164
1191
  .min-w-\[240px\] {
1165
1192
  min-width: 240px;
1166
1193
  }
@@ -1202,9 +1229,6 @@ video {
1202
1229
  --tw-border-spacing-y: 0px;
1203
1230
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
1204
1231
  }
1205
- .origin-center {
1206
- transform-origin: center;
1207
- }
1208
1232
  .-translate-x-1\/2 {
1209
1233
  --tw-translate-x: -50%;
1210
1234
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
@@ -1236,9 +1260,6 @@ video {
1236
1260
  .animate-breathe {
1237
1261
  animation: breathe 2s ease-in-out infinite;
1238
1262
  }
1239
- .animate-shimmer {
1240
- animation: shimmer 1.6s ease-in-out infinite;
1241
- }
1242
1263
  @keyframes spin {
1243
1264
  to {
1244
1265
  transform: rotate(360deg);
@@ -1276,6 +1297,9 @@ video {
1276
1297
  .list-none {
1277
1298
  list-style-type: none;
1278
1299
  }
1300
+ .grid-cols-2 {
1301
+ grid-template-columns: repeat(2, minmax(0, 1fr));
1302
+ }
1279
1303
  .grid-cols-3 {
1280
1304
  grid-template-columns: repeat(3, minmax(0, 1fr));
1281
1305
  }
@@ -1439,12 +1463,6 @@ video {
1439
1463
  border-top-right-radius: var(--radius-lg);
1440
1464
  border-bottom-right-radius: var(--radius-lg);
1441
1465
  }
1442
- .rounded-br-lg {
1443
- border-bottom-right-radius: var(--radius-lg);
1444
- }
1445
- .rounded-tr-lg {
1446
- border-top-right-radius: var(--radius-lg);
1447
- }
1448
1466
  .border {
1449
1467
  border-width: 1px;
1450
1468
  }
@@ -1454,6 +1472,9 @@ video {
1454
1472
  .border-4 {
1455
1473
  border-width: 4px;
1456
1474
  }
1475
+ .border-\[1\.5px\] {
1476
+ border-width: 1.5px;
1477
+ }
1457
1478
  .border-\[3px\] {
1458
1479
  border-width: 3px;
1459
1480
  }
@@ -1570,9 +1591,6 @@ video {
1570
1591
  .to-border {
1571
1592
  --tw-gradient-to: var(--color-border) var(--tw-gradient-to-position);
1572
1593
  }
1573
- .bg-\[length\:400\%_100\%\] {
1574
- background-size: 400% 100%;
1575
- }
1576
1594
  .fill-foreground {
1577
1595
  fill: var(--color-foreground);
1578
1596
  }
@@ -1940,6 +1958,11 @@ video {
1940
1958
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1941
1959
  transition-duration: 150ms;
1942
1960
  }
1961
+ .transition-shadow {
1962
+ transition-property: box-shadow;
1963
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1964
+ transition-duration: 150ms;
1965
+ }
1943
1966
  .transition-transform {
1944
1967
  transition-property: transform;
1945
1968
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
@@ -1995,9 +2018,47 @@ video {
1995
2018
  .\[transform-origin\:left\] {
1996
2019
  transform-origin: left;
1997
2020
  }
2021
+ .before\:absolute::before {
2022
+ content: var(--tw-content);
2023
+ position: absolute;
2024
+ }
2025
+ .before\:inset-0::before {
2026
+ content: var(--tw-content);
2027
+ inset: 0px;
2028
+ }
2029
+ .before\:animate-\[shimmer_1\.6s_linear_infinite\]::before {
2030
+ content: var(--tw-content);
2031
+ animation: shimmer 1.6s linear infinite;
2032
+ }
2033
+ .before\:bg-gradient-to-r::before {
2034
+ content: var(--tw-content);
2035
+ background-image: linear-gradient(to right, var(--tw-gradient-stops));
2036
+ }
2037
+ .before\:from-transparent::before {
2038
+ content: var(--tw-content);
2039
+ --tw-gradient-from: rgba(255, 255, 255, .0) var(--tw-gradient-from-position);
2040
+ --tw-gradient-to: rgba(255, 255, 255, 0) var(--tw-gradient-to-position);
2041
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
2042
+ }
2043
+ .before\:via-white\/30::before {
2044
+ content: var(--tw-content);
2045
+ --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
2046
+ --tw-gradient-stops: var(--tw-gradient-from), rgb(255 255 255 / 0.3) var(--tw-gradient-via-position), var(--tw-gradient-to);
2047
+ }
2048
+ .before\:to-transparent::before {
2049
+ content: var(--tw-content);
2050
+ --tw-gradient-to: rgba(255, 255, 255, .0) var(--tw-gradient-to-position);
2051
+ }
2052
+ .before\:content-\[\"\"\]::before {
2053
+ --tw-content: "";
2054
+ content: var(--tw-content);
2055
+ }
1998
2056
  .last\:border-0:last-child {
1999
2057
  border-width: 0px;
2000
2058
  }
2059
+ .focus-within\:border-transparent:focus-within {
2060
+ border-color: rgba(255, 255, 255, .0);
2061
+ }
2001
2062
  .focus-within\:ring-2:focus-within {
2002
2063
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2003
2064
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
@@ -2044,10 +2105,24 @@ video {
2044
2105
  .hover\:opacity-90:hover {
2045
2106
  opacity: 0.9;
2046
2107
  }
2108
+ .focus\:border-transparent:focus {
2109
+ border-color: rgba(255, 255, 255, .0);
2110
+ }
2047
2111
  .focus\:outline-none:focus {
2048
2112
  outline: 2px solid transparent;
2049
2113
  outline-offset: 2px;
2050
2114
  }
2115
+ .focus\:ring-2:focus {
2116
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2117
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
2118
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
2119
+ }
2120
+ .focus\:ring-accent:focus {
2121
+ --tw-ring-color: var(--color-accent);
2122
+ }
2123
+ .focus-visible\:border-transparent:focus-visible {
2124
+ border-color: rgba(255, 255, 255, .0);
2125
+ }
2051
2126
  .focus-visible\:bg-surface-raised:focus-visible {
2052
2127
  background-color: var(--color-surface-raised);
2053
2128
  }
@@ -2097,6 +2172,9 @@ video {
2097
2172
  .active\:opacity-100:active {
2098
2173
  opacity: 1;
2099
2174
  }
2175
+ .disabled\:cursor-default:disabled {
2176
+ cursor: default;
2177
+ }
2100
2178
  .disabled\:cursor-not-allowed:disabled {
2101
2179
  cursor: not-allowed;
2102
2180
  }
@@ -2118,6 +2196,9 @@ video {
2118
2196
  .disabled\:opacity-50:disabled {
2119
2197
  opacity: 0.5;
2120
2198
  }
2199
+ .disabled\:hover\:bg-transparent:hover:disabled {
2200
+ background-color: rgba(255, 255, 255, .0);
2201
+ }
2121
2202
  .group:hover .group-hover\:bg-accent {
2122
2203
  background-color: var(--color-accent);
2123
2204
  }
@@ -2201,6 +2282,12 @@ video {
2201
2282
  --tw-rotate: 0deg;
2202
2283
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
2203
2284
  }
2285
+ @media (prefers-reduced-motion: reduce) {
2286
+ .motion-reduce\:before\:hidden::before {
2287
+ content: var(--tw-content);
2288
+ display: none;
2289
+ }
2290
+ }
2204
2291
  .dark\:bg-independence:is(.dark *) {
2205
2292
  --tw-bg-opacity: 1;
2206
2293
  background-color: rgb(51 65 92 / var(--tw-bg-opacity, 1));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geomak/ui",
3
- "version": "5.0.2",
3
+ "version": "5.0.3",
4
4
  "description": "Oxygen Design System — reusable UI primitives built with Radix UI behaviours and Tailwind CSS styling",
5
5
  "author": "G-MAKROGLOU",
6
6
  "license": "MIT",