@vsn-ux/gaia-styles 0.4.5 → 0.4.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.
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.1.3 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.1.4 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  :root {
4
4
  --ga-color-black: #000000;
@@ -1867,6 +1867,91 @@
1867
1867
  font-weight: 600;
1868
1868
  }
1869
1869
  }
1870
+ .ga-link {
1871
+ display: inline-flex;
1872
+ height: calc(0.4rem * 5);
1873
+ cursor: pointer;
1874
+ align-items: center;
1875
+ justify-content: center;
1876
+ gap: calc(0.4rem * 1);
1877
+ border-radius: var(--ga-radius);
1878
+ padding-inline: calc(0.4rem * 0.5);
1879
+ vertical-align: middle;
1880
+ font-size: calc(
1881
+ var(--ga-text-md-font-size) * var(--ga-base-scaling-factor, 1)
1882
+ );
1883
+ line-height: var(--tw-leading, calc(
1884
+ var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
1885
+ ));
1886
+ letter-spacing: var(--tw-tracking, calc(
1887
+ var(--ga-text-md-tracking) * var(--ga-base-scaling-factor, 1)
1888
+ ));
1889
+ --tw-font-weight: 500;
1890
+ font-weight: 500;
1891
+ white-space: nowrap;
1892
+ color: var(--ga-color-text-action);
1893
+ --tw-numeric-spacing: tabular-nums;
1894
+ font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
1895
+ &.ga-link--inline {
1896
+ text-decoration-line: underline;
1897
+ text-decoration-color: var(--ga-color-primary-90);
1898
+ text-decoration-thickness: 1px;
1899
+ }
1900
+ &.ga-link--small {
1901
+ height: calc(0.4rem * 4);
1902
+ font-size: calc(
1903
+ var(--ga-text-sm-font-size) * var(--ga-base-scaling-factor, 1)
1904
+ );
1905
+ line-height: var(--tw-leading, calc(
1906
+ var(--ga-text-sm-line-height) * var(--ga-base-scaling-factor, 1)
1907
+ ));
1908
+ letter-spacing: var(--tw-tracking, 0);
1909
+ }
1910
+ &.ga-link--large {
1911
+ height: calc(0.4rem * 6);
1912
+ font-size: calc(
1913
+ var(--ga-text-lg-font-size) * var(--ga-base-scaling-factor, 1)
1914
+ );
1915
+ line-height: var(--tw-leading, calc(
1916
+ var(--ga-text-lg-line-height) * var(--ga-base-scaling-factor, 1)
1917
+ ));
1918
+ letter-spacing: var(--tw-tracking, calc(
1919
+ var(--ga-text-lg-tracking) * var(--ga-base-scaling-factor, 1)
1920
+ ));
1921
+ }
1922
+ &.ga-link--disabled {
1923
+ cursor: not-allowed;
1924
+ color: var(--ga-color-text-disabled);
1925
+ .ga-link__icon {
1926
+ color: var(--ga-color-icon-disabled);
1927
+ }
1928
+ }
1929
+ &:not(.ga-link--disabled) {
1930
+ &:visited {
1931
+ color: var(--ga-color-text-link-visited);
1932
+ text-decoration-color: var(--ga-color-text-link-visited);
1933
+ }
1934
+ &:hover {
1935
+ color: var(--ga-color-text-action-hover);
1936
+ text-decoration-line: underline;
1937
+ text-decoration-color: var(--ga-color-primary-90);
1938
+ text-decoration-thickness: 1px;
1939
+ }
1940
+ &:active {
1941
+ color: var(--ga-color-text-action);
1942
+ text-decoration-color: var(--ga-color-text-action);
1943
+ }
1944
+ &:focus-visible {
1945
+ outline-style: var(--tw-outline-style);
1946
+ outline-width: 2px;
1947
+ outline-offset: 2px;
1948
+ outline-color: var(--ga-color-border-focus);
1949
+ }
1950
+ }
1951
+ :not(:visited) .ga-link__icon {
1952
+ color: var(--ga-color-icon-primary);
1953
+ }
1954
+ }
1870
1955
  }
1871
1956
  :root {
1872
1957
  --ga-base-scaling-factor: 1.6;
@@ -1978,6 +2063,26 @@
1978
2063
  syntax: "*";
1979
2064
  inherits: false;
1980
2065
  }
2066
+ @property --tw-ordinal {
2067
+ syntax: "*";
2068
+ inherits: false;
2069
+ }
2070
+ @property --tw-slashed-zero {
2071
+ syntax: "*";
2072
+ inherits: false;
2073
+ }
2074
+ @property --tw-numeric-figure {
2075
+ syntax: "*";
2076
+ inherits: false;
2077
+ }
2078
+ @property --tw-numeric-spacing {
2079
+ syntax: "*";
2080
+ inherits: false;
2081
+ }
2082
+ @property --tw-numeric-fraction {
2083
+ syntax: "*";
2084
+ inherits: false;
2085
+ }
1981
2086
  @layer properties {
1982
2087
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
1983
2088
  *, ::before, ::after, ::backdrop {
@@ -2004,6 +2109,11 @@
2004
2109
  --tw-translate-y: 0;
2005
2110
  --tw-translate-z: 0;
2006
2111
  --tw-duration: initial;
2112
+ --tw-ordinal: initial;
2113
+ --tw-slashed-zero: initial;
2114
+ --tw-numeric-figure: initial;
2115
+ --tw-numeric-spacing: initial;
2116
+ --tw-numeric-fraction: initial;
2007
2117
  }
2008
2118
  }
2009
2119
  }
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.1.3 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.1.4 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  :root {
4
4
  --ga-color-black: #000000;
@@ -1867,6 +1867,91 @@
1867
1867
  font-weight: 600;
1868
1868
  }
1869
1869
  }
1870
+ .ga-link {
1871
+ display: inline-flex;
1872
+ height: calc(0.25rem * 5);
1873
+ cursor: pointer;
1874
+ align-items: center;
1875
+ justify-content: center;
1876
+ gap: calc(0.25rem * 1);
1877
+ border-radius: var(--ga-radius);
1878
+ padding-inline: calc(0.25rem * 0.5);
1879
+ vertical-align: middle;
1880
+ font-size: calc(
1881
+ var(--ga-text-md-font-size) * var(--ga-base-scaling-factor, 1)
1882
+ );
1883
+ line-height: var(--tw-leading, calc(
1884
+ var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
1885
+ ));
1886
+ letter-spacing: var(--tw-tracking, calc(
1887
+ var(--ga-text-md-tracking) * var(--ga-base-scaling-factor, 1)
1888
+ ));
1889
+ --tw-font-weight: 500;
1890
+ font-weight: 500;
1891
+ white-space: nowrap;
1892
+ color: var(--ga-color-text-action);
1893
+ --tw-numeric-spacing: tabular-nums;
1894
+ font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
1895
+ &.ga-link--inline {
1896
+ text-decoration-line: underline;
1897
+ text-decoration-color: var(--ga-color-primary-90);
1898
+ text-decoration-thickness: 1px;
1899
+ }
1900
+ &.ga-link--small {
1901
+ height: calc(0.25rem * 4);
1902
+ font-size: calc(
1903
+ var(--ga-text-sm-font-size) * var(--ga-base-scaling-factor, 1)
1904
+ );
1905
+ line-height: var(--tw-leading, calc(
1906
+ var(--ga-text-sm-line-height) * var(--ga-base-scaling-factor, 1)
1907
+ ));
1908
+ letter-spacing: var(--tw-tracking, 0);
1909
+ }
1910
+ &.ga-link--large {
1911
+ height: calc(0.25rem * 6);
1912
+ font-size: calc(
1913
+ var(--ga-text-lg-font-size) * var(--ga-base-scaling-factor, 1)
1914
+ );
1915
+ line-height: var(--tw-leading, calc(
1916
+ var(--ga-text-lg-line-height) * var(--ga-base-scaling-factor, 1)
1917
+ ));
1918
+ letter-spacing: var(--tw-tracking, calc(
1919
+ var(--ga-text-lg-tracking) * var(--ga-base-scaling-factor, 1)
1920
+ ));
1921
+ }
1922
+ &.ga-link--disabled {
1923
+ cursor: not-allowed;
1924
+ color: var(--ga-color-text-disabled);
1925
+ .ga-link__icon {
1926
+ color: var(--ga-color-icon-disabled);
1927
+ }
1928
+ }
1929
+ &:not(.ga-link--disabled) {
1930
+ &:visited {
1931
+ color: var(--ga-color-text-link-visited);
1932
+ text-decoration-color: var(--ga-color-text-link-visited);
1933
+ }
1934
+ &:hover {
1935
+ color: var(--ga-color-text-action-hover);
1936
+ text-decoration-line: underline;
1937
+ text-decoration-color: var(--ga-color-primary-90);
1938
+ text-decoration-thickness: 1px;
1939
+ }
1940
+ &:active {
1941
+ color: var(--ga-color-text-action);
1942
+ text-decoration-color: var(--ga-color-text-action);
1943
+ }
1944
+ &:focus-visible {
1945
+ outline-style: var(--tw-outline-style);
1946
+ outline-width: 2px;
1947
+ outline-offset: 2px;
1948
+ outline-color: var(--ga-color-border-focus);
1949
+ }
1950
+ }
1951
+ :not(:visited) .ga-link__icon {
1952
+ color: var(--ga-color-icon-primary);
1953
+ }
1954
+ }
1870
1955
  }
1871
1956
  @property --tw-border-style {
1872
1957
  syntax: "*";
@@ -1975,6 +2060,26 @@
1975
2060
  syntax: "*";
1976
2061
  inherits: false;
1977
2062
  }
2063
+ @property --tw-ordinal {
2064
+ syntax: "*";
2065
+ inherits: false;
2066
+ }
2067
+ @property --tw-slashed-zero {
2068
+ syntax: "*";
2069
+ inherits: false;
2070
+ }
2071
+ @property --tw-numeric-figure {
2072
+ syntax: "*";
2073
+ inherits: false;
2074
+ }
2075
+ @property --tw-numeric-spacing {
2076
+ syntax: "*";
2077
+ inherits: false;
2078
+ }
2079
+ @property --tw-numeric-fraction {
2080
+ syntax: "*";
2081
+ inherits: false;
2082
+ }
1978
2083
  @layer properties {
1979
2084
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
1980
2085
  *, ::before, ::after, ::backdrop {
@@ -2001,6 +2106,11 @@
2001
2106
  --tw-translate-y: 0;
2002
2107
  --tw-translate-z: 0;
2003
2108
  --tw-duration: initial;
2109
+ --tw-ordinal: initial;
2110
+ --tw-slashed-zero: initial;
2111
+ --tw-numeric-figure: initial;
2112
+ --tw-numeric-spacing: initial;
2113
+ --tw-numeric-fraction: initial;
2004
2114
  }
2005
2115
  }
2006
2116
  }
package/dist/all.css CHANGED
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.1.3 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.1.4 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  :root {
4
4
  --ga-color-black: #000000;
@@ -2017,6 +2017,91 @@
2017
2017
  font-weight: 600;
2018
2018
  }
2019
2019
  }
2020
+ .ga-link {
2021
+ display: inline-flex;
2022
+ height: calc(0.25rem * 5);
2023
+ cursor: pointer;
2024
+ align-items: center;
2025
+ justify-content: center;
2026
+ gap: calc(0.25rem * 1);
2027
+ border-radius: var(--ga-radius);
2028
+ padding-inline: calc(0.25rem * 0.5);
2029
+ vertical-align: middle;
2030
+ font-size: calc(
2031
+ var(--ga-text-md-font-size) * var(--ga-base-scaling-factor, 1)
2032
+ );
2033
+ line-height: var(--tw-leading, calc(
2034
+ var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
2035
+ ));
2036
+ letter-spacing: var(--tw-tracking, calc(
2037
+ var(--ga-text-md-tracking) * var(--ga-base-scaling-factor, 1)
2038
+ ));
2039
+ --tw-font-weight: 500;
2040
+ font-weight: 500;
2041
+ white-space: nowrap;
2042
+ color: var(--ga-color-text-action);
2043
+ --tw-numeric-spacing: tabular-nums;
2044
+ font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
2045
+ &.ga-link--inline {
2046
+ text-decoration-line: underline;
2047
+ text-decoration-color: var(--ga-color-primary-90);
2048
+ text-decoration-thickness: 1px;
2049
+ }
2050
+ &.ga-link--small {
2051
+ height: calc(0.25rem * 4);
2052
+ font-size: calc(
2053
+ var(--ga-text-sm-font-size) * var(--ga-base-scaling-factor, 1)
2054
+ );
2055
+ line-height: var(--tw-leading, calc(
2056
+ var(--ga-text-sm-line-height) * var(--ga-base-scaling-factor, 1)
2057
+ ));
2058
+ letter-spacing: var(--tw-tracking, 0);
2059
+ }
2060
+ &.ga-link--large {
2061
+ height: calc(0.25rem * 6);
2062
+ font-size: calc(
2063
+ var(--ga-text-lg-font-size) * var(--ga-base-scaling-factor, 1)
2064
+ );
2065
+ line-height: var(--tw-leading, calc(
2066
+ var(--ga-text-lg-line-height) * var(--ga-base-scaling-factor, 1)
2067
+ ));
2068
+ letter-spacing: var(--tw-tracking, calc(
2069
+ var(--ga-text-lg-tracking) * var(--ga-base-scaling-factor, 1)
2070
+ ));
2071
+ }
2072
+ &.ga-link--disabled {
2073
+ cursor: not-allowed;
2074
+ color: var(--ga-color-text-disabled);
2075
+ .ga-link__icon {
2076
+ color: var(--ga-color-icon-disabled);
2077
+ }
2078
+ }
2079
+ &:not(.ga-link--disabled) {
2080
+ &:visited {
2081
+ color: var(--ga-color-text-link-visited);
2082
+ text-decoration-color: var(--ga-color-text-link-visited);
2083
+ }
2084
+ &:hover {
2085
+ color: var(--ga-color-text-action-hover);
2086
+ text-decoration-line: underline;
2087
+ text-decoration-color: var(--ga-color-primary-90);
2088
+ text-decoration-thickness: 1px;
2089
+ }
2090
+ &:active {
2091
+ color: var(--ga-color-text-action);
2092
+ text-decoration-color: var(--ga-color-text-action);
2093
+ }
2094
+ &:focus-visible {
2095
+ outline-style: var(--tw-outline-style);
2096
+ outline-width: 2px;
2097
+ outline-offset: 2px;
2098
+ outline-color: var(--ga-color-border-focus);
2099
+ }
2100
+ }
2101
+ :not(:visited) .ga-link__icon {
2102
+ color: var(--ga-color-icon-primary);
2103
+ }
2104
+ }
2020
2105
  }
2021
2106
  @property --tw-border-style {
2022
2107
  syntax: "*";
@@ -2125,6 +2210,26 @@
2125
2210
  syntax: "*";
2126
2211
  inherits: false;
2127
2212
  }
2213
+ @property --tw-ordinal {
2214
+ syntax: "*";
2215
+ inherits: false;
2216
+ }
2217
+ @property --tw-slashed-zero {
2218
+ syntax: "*";
2219
+ inherits: false;
2220
+ }
2221
+ @property --tw-numeric-figure {
2222
+ syntax: "*";
2223
+ inherits: false;
2224
+ }
2225
+ @property --tw-numeric-spacing {
2226
+ syntax: "*";
2227
+ inherits: false;
2228
+ }
2229
+ @property --tw-numeric-fraction {
2230
+ syntax: "*";
2231
+ inherits: false;
2232
+ }
2128
2233
  @layer properties {
2129
2234
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
2130
2235
  *, ::before, ::after, ::backdrop {
@@ -2151,6 +2256,11 @@
2151
2256
  --tw-translate-y: 0;
2152
2257
  --tw-translate-z: 0;
2153
2258
  --tw-duration: initial;
2259
+ --tw-ordinal: initial;
2260
+ --tw-slashed-zero: initial;
2261
+ --tw-numeric-figure: initial;
2262
+ --tw-numeric-spacing: initial;
2263
+ --tw-numeric-fraction: initial;
2154
2264
  }
2155
2265
  }
2156
2266
  }
package/dist/base.css CHANGED
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.1.3 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.1.4 | MIT License | https://tailwindcss.com */
2
2
  body {
3
3
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
4
4
  font-feature-settings: 'liga' 1, 'calt' 1;
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.1.3 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.1.4 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  .ga-avatar {
4
4
  display: inline-flex;
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.1.3 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.1.4 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  .ga-badge {
4
4
  display: inline-block;
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.1.3 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.1.4 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  .ga-button {
4
4
  display: inline-flex;
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.1.3 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.1.4 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  .ga-card {
4
4
  display: inline-block;
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.1.3 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.1.4 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  .ga-checkbox {
4
4
  position: relative;
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.1.3 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.1.4 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  .ga-dropdown {
4
4
  display: flex;
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.1.3 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.1.4 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  .ga-form-field {
4
4
  display: flex;
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.1.3 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.1.4 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  .ga-input {
4
4
  display: flex;
@@ -0,0 +1,129 @@
1
+ /*! tailwindcss v4.1.4 | MIT License | https://tailwindcss.com */
2
+ @layer properties;
3
+ .ga-link {
4
+ display: inline-flex;
5
+ height: calc(0.25rem * 5);
6
+ cursor: pointer;
7
+ align-items: center;
8
+ justify-content: center;
9
+ gap: calc(0.25rem * 1);
10
+ border-radius: var(--ga-radius);
11
+ padding-inline: calc(0.25rem * 0.5);
12
+ vertical-align: middle;
13
+ font-size: calc(
14
+ var(--ga-text-md-font-size) * var(--ga-base-scaling-factor, 1)
15
+ );
16
+ line-height: var(--tw-leading, calc(
17
+ var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
18
+ ));
19
+ letter-spacing: var(--tw-tracking, calc(
20
+ var(--ga-text-md-tracking) * var(--ga-base-scaling-factor, 1)
21
+ ));
22
+ --tw-font-weight: 500;
23
+ font-weight: 500;
24
+ white-space: nowrap;
25
+ color: var(--ga-color-text-action);
26
+ --tw-numeric-spacing: tabular-nums;
27
+ font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
28
+ &.ga-link--inline {
29
+ text-decoration-line: underline;
30
+ text-decoration-color: var(--ga-color-primary-90);
31
+ text-decoration-thickness: 1px;
32
+ }
33
+ &.ga-link--small {
34
+ height: calc(0.25rem * 4);
35
+ font-size: calc(
36
+ var(--ga-text-sm-font-size) * var(--ga-base-scaling-factor, 1)
37
+ );
38
+ line-height: var(--tw-leading, calc(
39
+ var(--ga-text-sm-line-height) * var(--ga-base-scaling-factor, 1)
40
+ ));
41
+ letter-spacing: var(--tw-tracking, 0);
42
+ }
43
+ &.ga-link--large {
44
+ height: calc(0.25rem * 6);
45
+ font-size: calc(
46
+ var(--ga-text-lg-font-size) * var(--ga-base-scaling-factor, 1)
47
+ );
48
+ line-height: var(--tw-leading, calc(
49
+ var(--ga-text-lg-line-height) * var(--ga-base-scaling-factor, 1)
50
+ ));
51
+ letter-spacing: var(--tw-tracking, calc(
52
+ var(--ga-text-lg-tracking) * var(--ga-base-scaling-factor, 1)
53
+ ));
54
+ }
55
+ &.ga-link--disabled {
56
+ cursor: not-allowed;
57
+ color: var(--ga-color-text-disabled);
58
+ .ga-link__icon {
59
+ color: var(--ga-color-icon-disabled);
60
+ }
61
+ }
62
+ &:not(.ga-link--disabled) {
63
+ &:visited {
64
+ color: var(--ga-color-text-link-visited);
65
+ text-decoration-color: var(--ga-color-text-link-visited);
66
+ }
67
+ &:hover {
68
+ color: var(--ga-color-text-action-hover);
69
+ text-decoration-line: underline;
70
+ text-decoration-color: var(--ga-color-primary-90);
71
+ text-decoration-thickness: 1px;
72
+ }
73
+ &:active {
74
+ color: var(--ga-color-text-action);
75
+ text-decoration-color: var(--ga-color-text-action);
76
+ }
77
+ &:focus-visible {
78
+ outline-style: var(--tw-outline-style);
79
+ outline-width: 2px;
80
+ outline-offset: 2px;
81
+ outline-color: var(--ga-color-border-focus);
82
+ }
83
+ }
84
+ :not(:visited) .ga-link__icon {
85
+ color: var(--ga-color-icon-primary);
86
+ }
87
+ }
88
+ @property --tw-font-weight {
89
+ syntax: "*";
90
+ inherits: false;
91
+ }
92
+ @property --tw-ordinal {
93
+ syntax: "*";
94
+ inherits: false;
95
+ }
96
+ @property --tw-slashed-zero {
97
+ syntax: "*";
98
+ inherits: false;
99
+ }
100
+ @property --tw-numeric-figure {
101
+ syntax: "*";
102
+ inherits: false;
103
+ }
104
+ @property --tw-numeric-spacing {
105
+ syntax: "*";
106
+ inherits: false;
107
+ }
108
+ @property --tw-numeric-fraction {
109
+ syntax: "*";
110
+ inherits: false;
111
+ }
112
+ @property --tw-outline-style {
113
+ syntax: "*";
114
+ inherits: false;
115
+ initial-value: solid;
116
+ }
117
+ @layer properties {
118
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
119
+ *, ::before, ::after, ::backdrop {
120
+ --tw-font-weight: initial;
121
+ --tw-ordinal: initial;
122
+ --tw-slashed-zero: initial;
123
+ --tw-numeric-figure: initial;
124
+ --tw-numeric-spacing: initial;
125
+ --tw-numeric-fraction: initial;
126
+ --tw-outline-style: solid;
127
+ }
128
+ }
129
+ }
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.1.3 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.1.4 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  .ga-menu {
4
4
  display: flex;
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.1.3 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.1.4 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  .ga-notification {
4
4
  display: inline-flex;
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.1.3 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.1.4 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  .ga-radio-group {
4
4
  display: inline-flex;
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.1.3 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.1.4 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  .ga-segmented-control {
4
4
  display: inline-flex;
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.1.3 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.1.4 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  .ga-native-select {
4
4
  position: relative;
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.1.3 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.1.4 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  .ga-switch {
4
4
  position: relative;
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.1.3 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.1.4 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  .ga-tag {
4
4
  box-sizing: content-box;
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.1.3 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.1.4 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  .ga-text-area {
4
4
  display: flex;
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.1.3 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.1.4 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  .ga-tooltip {
4
4
  position: relative;
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.1.3 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.1.4 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  .ga-avatar {
4
4
  display: inline-flex;
@@ -1638,6 +1638,91 @@
1638
1638
  font-weight: 600;
1639
1639
  }
1640
1640
  }
1641
+ .ga-link {
1642
+ display: inline-flex;
1643
+ height: calc(0.25rem * 5);
1644
+ cursor: pointer;
1645
+ align-items: center;
1646
+ justify-content: center;
1647
+ gap: calc(0.25rem * 1);
1648
+ border-radius: var(--ga-radius);
1649
+ padding-inline: calc(0.25rem * 0.5);
1650
+ vertical-align: middle;
1651
+ font-size: calc(
1652
+ var(--ga-text-md-font-size) * var(--ga-base-scaling-factor, 1)
1653
+ );
1654
+ line-height: var(--tw-leading, calc(
1655
+ var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
1656
+ ));
1657
+ letter-spacing: var(--tw-tracking, calc(
1658
+ var(--ga-text-md-tracking) * var(--ga-base-scaling-factor, 1)
1659
+ ));
1660
+ --tw-font-weight: 500;
1661
+ font-weight: 500;
1662
+ white-space: nowrap;
1663
+ color: var(--ga-color-text-action);
1664
+ --tw-numeric-spacing: tabular-nums;
1665
+ font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
1666
+ &.ga-link--inline {
1667
+ text-decoration-line: underline;
1668
+ text-decoration-color: var(--ga-color-primary-90);
1669
+ text-decoration-thickness: 1px;
1670
+ }
1671
+ &.ga-link--small {
1672
+ height: calc(0.25rem * 4);
1673
+ font-size: calc(
1674
+ var(--ga-text-sm-font-size) * var(--ga-base-scaling-factor, 1)
1675
+ );
1676
+ line-height: var(--tw-leading, calc(
1677
+ var(--ga-text-sm-line-height) * var(--ga-base-scaling-factor, 1)
1678
+ ));
1679
+ letter-spacing: var(--tw-tracking, 0);
1680
+ }
1681
+ &.ga-link--large {
1682
+ height: calc(0.25rem * 6);
1683
+ font-size: calc(
1684
+ var(--ga-text-lg-font-size) * var(--ga-base-scaling-factor, 1)
1685
+ );
1686
+ line-height: var(--tw-leading, calc(
1687
+ var(--ga-text-lg-line-height) * var(--ga-base-scaling-factor, 1)
1688
+ ));
1689
+ letter-spacing: var(--tw-tracking, calc(
1690
+ var(--ga-text-lg-tracking) * var(--ga-base-scaling-factor, 1)
1691
+ ));
1692
+ }
1693
+ &.ga-link--disabled {
1694
+ cursor: not-allowed;
1695
+ color: var(--ga-color-text-disabled);
1696
+ .ga-link__icon {
1697
+ color: var(--ga-color-icon-disabled);
1698
+ }
1699
+ }
1700
+ &:not(.ga-link--disabled) {
1701
+ &:visited {
1702
+ color: var(--ga-color-text-link-visited);
1703
+ text-decoration-color: var(--ga-color-text-link-visited);
1704
+ }
1705
+ &:hover {
1706
+ color: var(--ga-color-text-action-hover);
1707
+ text-decoration-line: underline;
1708
+ text-decoration-color: var(--ga-color-primary-90);
1709
+ text-decoration-thickness: 1px;
1710
+ }
1711
+ &:active {
1712
+ color: var(--ga-color-text-action);
1713
+ text-decoration-color: var(--ga-color-text-action);
1714
+ }
1715
+ &:focus-visible {
1716
+ outline-style: var(--tw-outline-style);
1717
+ outline-width: 2px;
1718
+ outline-offset: 2px;
1719
+ outline-color: var(--ga-color-border-focus);
1720
+ }
1721
+ }
1722
+ :not(:visited) .ga-link__icon {
1723
+ color: var(--ga-color-icon-primary);
1724
+ }
1725
+ }
1641
1726
  @property --tw-border-style {
1642
1727
  syntax: "*";
1643
1728
  inherits: false;
@@ -1745,6 +1830,26 @@
1745
1830
  syntax: "*";
1746
1831
  inherits: false;
1747
1832
  }
1833
+ @property --tw-ordinal {
1834
+ syntax: "*";
1835
+ inherits: false;
1836
+ }
1837
+ @property --tw-slashed-zero {
1838
+ syntax: "*";
1839
+ inherits: false;
1840
+ }
1841
+ @property --tw-numeric-figure {
1842
+ syntax: "*";
1843
+ inherits: false;
1844
+ }
1845
+ @property --tw-numeric-spacing {
1846
+ syntax: "*";
1847
+ inherits: false;
1848
+ }
1849
+ @property --tw-numeric-fraction {
1850
+ syntax: "*";
1851
+ inherits: false;
1852
+ }
1748
1853
  @layer properties {
1749
1854
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
1750
1855
  *, ::before, ::after, ::backdrop {
@@ -1771,6 +1876,11 @@
1771
1876
  --tw-translate-y: 0;
1772
1877
  --tw-translate-z: 0;
1773
1878
  --tw-duration: initial;
1879
+ --tw-ordinal: initial;
1880
+ --tw-slashed-zero: initial;
1881
+ --tw-numeric-figure: initial;
1882
+ --tw-numeric-spacing: initial;
1883
+ --tw-numeric-fraction: initial;
1774
1884
  }
1775
1885
  }
1776
1886
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vsn-ux/gaia-styles",
3
- "version": "0.4.5",
3
+ "version": "0.4.6",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "dev": "storybook dev -p 6006",
@@ -40,6 +40,7 @@
40
40
  "@types/react-dom": "^18.3.5",
41
41
  "@vitejs/plugin-react": "^4.3.4",
42
42
  "chokidar": "^4.0.3",
43
+ "chromatic": "^11.27.0",
43
44
  "glob": "^11.0.1",
44
45
  "globals": "^15.15.0",
45
46
  "husky": "^9.1.7",
@@ -51,6 +52,7 @@
51
52
  "react-dom": "^18.3.1",
52
53
  "semantic-release": "^24.2.3",
53
54
  "storybook": "^8.6.9",
55
+ "storybook-addon-pseudo-states": "^4.0.3",
54
56
  "tailwindcss": "^4.0.17",
55
57
  "typescript": "~5.6.3",
56
58
  "typescript-eslint": "^8.28.0",
@@ -0,0 +1,45 @@
1
+ .ga-link {
2
+ @apply text-md inline-flex h-5 cursor-pointer items-center justify-center gap-1 rounded px-0.5 align-middle font-medium whitespace-nowrap text-(--ga-color-text-action) tabular-nums;
3
+
4
+ &.ga-link--inline {
5
+ @apply underline decoration-(--ga-color-primary-90) decoration-1;
6
+ }
7
+
8
+ &.ga-link--small {
9
+ @apply h-4 text-sm;
10
+ }
11
+
12
+ &.ga-link--large {
13
+ @apply h-6 text-lg;
14
+ }
15
+
16
+ &.ga-link--disabled {
17
+ @apply cursor-not-allowed text-(--ga-color-text-disabled);
18
+
19
+ .ga-link__icon {
20
+ @apply text-(--ga-color-icon-disabled);
21
+ }
22
+ }
23
+
24
+ &:not(.ga-link--disabled) {
25
+ &:visited {
26
+ @apply text-(--ga-color-text-link-visited) decoration-(--ga-color-text-link-visited);
27
+ }
28
+
29
+ &:hover {
30
+ @apply text-(--ga-color-text-action-hover) underline decoration-(--ga-color-primary-90) decoration-1;
31
+ }
32
+
33
+ &:active {
34
+ @apply text-(--ga-color-text-action) decoration-(--ga-color-text-action);
35
+ }
36
+
37
+ &:focus-visible {
38
+ @apply outline-2 outline-offset-2 outline-(--ga-color-border-focus);
39
+ }
40
+ }
41
+
42
+ :not(:visited) .ga-link__icon {
43
+ @apply text-(--ga-color-icon-primary);
44
+ }
45
+ }
@@ -15,3 +15,4 @@
15
15
  @import './components/tag.css';
16
16
  @import './components/text-area.css';
17
17
  @import './components/tooltip.css';
18
+ @import './components/link.css';