@geomak/ui 1.9.0 → 2.0.0

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
@@ -731,9 +731,6 @@ video {
731
731
  .pointer-events-auto {
732
732
  pointer-events: auto;
733
733
  }
734
- .\!visible {
735
- visibility: visible !important;
736
- }
737
734
  .visible {
738
735
  visibility: visible;
739
736
  }
@@ -822,9 +819,6 @@ video {
822
819
  .z-10 {
823
820
  z-index: 10;
824
821
  }
825
- .z-30 {
826
- z-index: 30;
827
- }
828
822
  .z-50 {
829
823
  z-index: 50;
830
824
  }
@@ -1152,6 +1146,9 @@ video {
1152
1146
  .min-w-\[120px\] {
1153
1147
  min-width: 120px;
1154
1148
  }
1149
+ .min-w-\[180px\] {
1150
+ min-width: 180px;
1151
+ }
1155
1152
  .min-w-\[240px\] {
1156
1153
  min-width: 240px;
1157
1154
  }
@@ -1432,9 +1429,6 @@ video {
1432
1429
  .rounded-br-lg {
1433
1430
  border-bottom-right-radius: var(--radius-lg);
1434
1431
  }
1435
- .rounded-tl-lg {
1436
- border-top-left-radius: var(--radius-lg);
1437
- }
1438
1432
  .rounded-tr-lg {
1439
1433
  border-top-right-radius: var(--radius-lg);
1440
1434
  }
@@ -1586,6 +1580,9 @@ video {
1586
1580
  .p-10 {
1587
1581
  padding: 2.5rem;
1588
1582
  }
1583
+ .p-12 {
1584
+ padding: 3rem;
1585
+ }
1589
1586
  .p-2 {
1590
1587
  padding: 0.5rem;
1591
1588
  }
@@ -2129,9 +2126,18 @@ video {
2129
2126
  .data-\[state\=open\]\:animate-accordion-down[data-state="open"] {
2130
2127
  animation: accordion-down 0.22s var(--ease-out-quart);
2131
2128
  }
2129
+ .data-\[disabled\]\:cursor-not-allowed[data-disabled] {
2130
+ cursor: not-allowed;
2131
+ }
2132
2132
  .data-\[state\=checked\]\:border-accent[data-state="checked"] {
2133
2133
  border-color: var(--color-accent);
2134
2134
  }
2135
+ .data-\[disabled\]\:bg-transparent[data-disabled] {
2136
+ background-color: rgba(255, 255, 255, .0);
2137
+ }
2138
+ .data-\[highlighted\]\:bg-accent[data-highlighted] {
2139
+ background-color: var(--color-accent);
2140
+ }
2135
2141
  .data-\[state\=active\]\:bg-accent[data-state="active"] {
2136
2142
  background-color: var(--color-accent);
2137
2143
  }
@@ -2141,9 +2147,18 @@ video {
2141
2147
  .data-\[state\=on\]\:bg-accent[data-state="on"] {
2142
2148
  background-color: var(--color-accent);
2143
2149
  }
2150
+ .data-\[disabled\]\:text-foreground-muted[data-disabled] {
2151
+ color: var(--color-foreground-muted);
2152
+ }
2153
+ .data-\[highlighted\]\:text-accent-fg[data-highlighted] {
2154
+ color: var(--color-accent-foreground);
2155
+ }
2144
2156
  .data-\[state\=on\]\:text-accent-fg[data-state="on"] {
2145
2157
  color: var(--color-accent-foreground);
2146
2158
  }
2159
+ .data-\[disabled\]\:opacity-40[data-disabled] {
2160
+ opacity: 0.4;
2161
+ }
2147
2162
  .group[data-state="closed"] .group-data-\[state\=closed\]\:-rotate-90 {
2148
2163
  --tw-rotate: -90deg;
2149
2164
  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));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geomak/ui",
3
- "version": "1.9.0",
3
+ "version": "2.0.0",
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",
@@ -48,6 +48,7 @@
48
48
  "dependencies": {
49
49
  "@radix-ui/react-accordion": "^1.2.11",
50
50
  "@radix-ui/react-checkbox": "^1.3.2",
51
+ "@radix-ui/react-context-menu": "^2.2.16",
51
52
  "@radix-ui/react-dialog": "^1.1.14",
52
53
  "@radix-ui/react-dropdown-menu": "^2.1.15",
53
54
  "@radix-ui/react-popover": "^1.1.14",