@eagami/ui 0.11.1 → 1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eagami/ui",
3
- "version": "0.11.1",
3
+ "version": "1.0.0",
4
4
  "description": "Lightweight, accessible Angular UI component library built on CSS custom properties",
5
5
  "author": "Michal Wiraszka <michal@eagami.com>",
6
6
  "license": "MIT",
@@ -25,6 +25,9 @@
25
25
  "@angular/core": "^21.0.0",
26
26
  "@angular/forms": "^21.0.0"
27
27
  },
28
+ "engines": {
29
+ "node": ">=20"
30
+ },
28
31
  "module": "fesm2022/eagami-ui.mjs",
29
32
  "typings": "types/eagami-ui.d.ts",
30
33
  "exports": {
@@ -88,7 +88,7 @@
88
88
  --color-text-disabled: var(--color-neutral-300);
89
89
  --color-text-inverse: var(--color-neutral-0);
90
90
  --color-text-link: var(--color-primary-600);
91
- --color-text-link-hover: var(--color-primary-700);
91
+ --color-text-link-hover: var(--color-primary-800);
92
92
 
93
93
  // Background
94
94
  --color-bg-base: var(--color-neutral-0);
@@ -143,6 +143,8 @@
143
143
  --color-text-tertiary: var(--color-neutral-500);
144
144
  --color-text-disabled: var(--color-neutral-700);
145
145
  --color-text-inverse: var(--color-neutral-900);
146
+ --color-text-link: var(--color-primary-300);
147
+ --color-text-link-hover: var(--color-primary-100);
146
148
 
147
149
  --color-bg-base: var(--color-neutral-950);
148
150
  --color-bg-subtle: var(--color-neutral-900);