@elevasis/ui 1.7.1 → 1.7.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.
@@ -19,9 +19,17 @@
19
19
  box-shadow: 0 0 12px color-mix(in srgb, var(--color-primary) 15%, transparent);
20
20
  }
21
21
  .iconRingSm {
22
- composes: iconRing;
22
+ position: relative;
23
+ display: flex;
24
+ align-items: center;
25
+ justify-content: center;
23
26
  width: 36px;
24
27
  height: 36px;
28
+ border-radius: 50%;
29
+ background: color-mix(in srgb, var(--color-primary) 12%, transparent);
30
+ border: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent);
31
+ color: var(--color-primary);
32
+ flex-shrink: 0;
25
33
  box-shadow: 0 0 8px color-mix(in srgb, var(--color-primary) 12%, transparent);
26
34
  }
27
35
  .heroValue {
@@ -36,9 +44,12 @@
36
44
  text-shadow: 0 0 20px color-mix(in srgb, var(--color-primary) 20%, transparent);
37
45
  }
38
46
  .heroValueSm {
39
- composes: heroValue;
47
+ font-family: var(--elevasis-font-family-subtitle);
40
48
  font-size: 1.35rem;
41
49
  font-weight: 700;
50
+ line-height: 1;
51
+ letter-spacing: -0.02em;
52
+ font-variant-numeric: tabular-nums;
42
53
  }
43
54
  .heroLabel {
44
55
  font-size: 0.68rem;
@@ -48,8 +59,11 @@
48
59
  color: var(--color-text-dimmed);
49
60
  }
50
61
  .heroLabelSm {
51
- composes: heroLabel;
52
62
  font-size: 0.62rem;
63
+ font-weight: 700;
64
+ text-transform: uppercase;
65
+ letter-spacing: 0.12em;
66
+ color: var(--color-text-dimmed);
53
67
  }
54
68
 
55
69
  /* src/components/display/ElevasisLoader.module.css */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elevasis/ui",
3
- "version": "1.7.1",
3
+ "version": "1.7.3",
4
4
  "description": "UI components and platform-aware hooks for building custom frontends on the Elevasis platform",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -94,7 +94,11 @@
94
94
  "./components/navigation": {
95
95
  "types": "./dist/components/navigation/index.d.ts",
96
96
  "import": "./dist/components/navigation/index.js"
97
- }
97
+ },
98
+ "./components/index.css": "./dist/components/index.css",
99
+ "./layout/index.css": "./dist/layout/index.css",
100
+ "./graph/index.css": "./dist/graph/index.css",
101
+ "./provider/index.css": "./dist/provider/index.css"
98
102
  },
99
103
  "publishConfig": {
100
104
  "name": "@elevasis/ui",
@@ -179,8 +183,8 @@
179
183
  "typescript": "5.9.2",
180
184
  "vite": "^7.0.0",
181
185
  "@repo/core": "0.0.0",
182
- "@repo/typescript-config": "0.0.0",
183
- "@repo/eslint-config": "0.0.0"
186
+ "@repo/eslint-config": "0.0.0",
187
+ "@repo/typescript-config": "0.0.0"
184
188
  },
185
189
  "dependencies": {
186
190
  "@dagrejs/dagre": "^1.1.4",