@salmexio/ui 1.0.0 → 1.1.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/README.md +1 -1
- package/dist/dialogs/ContextMenu/ContextMenu.svelte +6 -6
- package/dist/dialogs/ContextMenu/ContextMenu.svelte.d.ts +1 -1
- package/dist/dialogs/Modal/Modal.svelte +3 -3
- package/dist/dialogs/Modal/Modal.svelte.d.ts +1 -1
- package/dist/feedback/Alert/Alert.svelte +16 -11
- package/dist/feedback/Alert/Alert.svelte.d.ts +1 -1
- package/dist/feedback/ProgressBar/ProgressBar.svelte +23 -4
- package/dist/feedback/ProgressBar/ProgressBar.svelte.d.ts +1 -1
- package/dist/feedback/Skeleton/Skeleton.svelte +7 -3
- package/dist/feedback/Skeleton/Skeleton.svelte.d.ts +1 -1
- package/dist/feedback/Spinner/Spinner.svelte +3 -3
- package/dist/feedback/Spinner/Spinner.svelte.d.ts +2 -2
- package/dist/feedback/Toast/Toaster.svelte +10 -10
- package/dist/feedback/Toast/Toaster.svelte.d.ts +1 -1
- package/dist/forms/Checkbox/Checkbox.svelte +13 -8
- package/dist/forms/Checkbox/Checkbox.svelte.d.ts +1 -1
- package/dist/forms/Select/Select.svelte +11 -11
- package/dist/forms/Select/Select.svelte.d.ts +1 -1
- package/dist/forms/Slider/Slider.svelte +27 -27
- package/dist/forms/Slider/Slider.svelte.d.ts +1 -1
- package/dist/forms/TextInput/TextInput.svelte +16 -6
- package/dist/forms/TextInput/TextInput.svelte.d.ts +1 -1
- package/dist/forms/Textarea/Textarea.svelte +5 -5
- package/dist/forms/Textarea/Textarea.svelte.d.ts +1 -1
- package/dist/forms/Toggle/Toggle.svelte +8 -8
- package/dist/forms/Toggle/Toggle.svelte.d.ts +1 -1
- package/dist/layout/Card/Card.svelte +6 -4
- package/dist/layout/Card/Card.svelte.d.ts +1 -1
- package/dist/layout/Container/Container.svelte +1 -1
- package/dist/layout/Container/Container.svelte.d.ts +1 -1
- package/dist/layout/ThermalBackground/ThermalBackground.svelte +313 -0
- package/dist/layout/ThermalBackground/ThermalBackground.svelte.d.ts +16 -0
- package/dist/layout/ThermalBackground/ThermalBackground.svelte.d.ts.map +1 -0
- package/dist/layout/ThermalBackground/index.d.ts +2 -0
- package/dist/layout/ThermalBackground/index.d.ts.map +1 -0
- package/dist/layout/ThermalBackground/index.js +1 -0
- package/dist/layout/index.d.ts +1 -0
- package/dist/layout/index.d.ts.map +1 -1
- package/dist/layout/index.js +1 -0
- package/dist/navigation/CommandPalette/CommandPalette.svelte +8 -8
- package/dist/navigation/CommandPalette/CommandPalette.svelte.d.ts +1 -1
- package/dist/navigation/Tabs/Tabs.svelte +43 -10
- package/dist/navigation/Tabs/Tabs.svelte.d.ts +1 -1
- package/dist/primitives/Badge/Badge.svelte +16 -14
- package/dist/primitives/Badge/Badge.svelte.d.ts +1 -1
- package/dist/primitives/Button/Button.svelte +87 -16
- package/dist/primitives/Button/Button.svelte.d.ts +1 -1
- package/dist/primitives/Tooltip/Tooltip.svelte +1 -1
- package/dist/primitives/Tooltip/Tooltip.svelte.d.ts +1 -1
- package/dist/styles/tokens.css +201 -64
- package/package.json +3 -3
package/dist/styles/tokens.css
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Salmex I/O Design System —
|
|
2
|
+
* Salmex I/O Design System — INFRARED
|
|
3
3
|
*
|
|
4
4
|
* Dark-only. Glassmorphic. Sovereign.
|
|
5
|
-
*
|
|
5
|
+
* Thermal optics. Forge heat. Earned authority.
|
|
6
6
|
*
|
|
7
7
|
* Token architecture: primitives → semantic → component
|
|
8
8
|
* Prefix: --sx-
|
|
9
9
|
*
|
|
10
|
-
* Typography: TT Fors (body), TT Quaris (display),
|
|
10
|
+
* Typography: TT Fors (body), TT Quaris (display), JetBrains Mono (mono).
|
|
11
11
|
* Fonts must be loaded by the consuming app.
|
|
12
12
|
*/
|
|
13
13
|
|
|
@@ -17,34 +17,42 @@
|
|
|
17
17
|
Raw palette — never use directly in components
|
|
18
18
|
======================================== */
|
|
19
19
|
|
|
20
|
-
--sx-gray-950: #
|
|
21
|
-
--sx-gray-900: #
|
|
22
|
-
--sx-gray-800: #
|
|
23
|
-
--sx-gray-700: #
|
|
24
|
-
--sx-gray-600: #
|
|
25
|
-
--sx-gray-500: #
|
|
26
|
-
--sx-gray-400: #
|
|
27
|
-
--sx-gray-300: #
|
|
28
|
-
--sx-gray-200: #
|
|
29
|
-
--sx-gray-100: #
|
|
30
|
-
--sx-white: #
|
|
31
|
-
|
|
32
|
-
/* Accents */
|
|
33
|
-
--sx-
|
|
34
|
-
--sx-
|
|
35
|
-
--sx-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
--sx-
|
|
39
|
-
--sx-
|
|
40
|
-
--sx-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
--sx-
|
|
44
|
-
--sx-
|
|
45
|
-
--sx-
|
|
46
|
-
|
|
47
|
-
|
|
20
|
+
--sx-gray-950: #08080C;
|
|
21
|
+
--sx-gray-900: #0F0F14;
|
|
22
|
+
--sx-gray-800: #171720;
|
|
23
|
+
--sx-gray-700: #1F1F2A;
|
|
24
|
+
--sx-gray-600: #2D2D3A;
|
|
25
|
+
--sx-gray-500: #505060;
|
|
26
|
+
--sx-gray-400: #7A7A88;
|
|
27
|
+
--sx-gray-300: #A0A0AB;
|
|
28
|
+
--sx-gray-200: #C5C5CC;
|
|
29
|
+
--sx-gray-100: #E8E6E1;
|
|
30
|
+
--sx-white: #F0EEE8;
|
|
31
|
+
|
|
32
|
+
/* Accents — Vermilion (forge heat) */
|
|
33
|
+
--sx-vermilion-500: #FF6B35;
|
|
34
|
+
--sx-vermilion-400: #FF8C5A;
|
|
35
|
+
--sx-vermilion-600: #E05520;
|
|
36
|
+
|
|
37
|
+
/* Accents — Brass (earned authority) */
|
|
38
|
+
--sx-brass-500: #C8A84E;
|
|
39
|
+
--sx-brass-400: #D4B86A;
|
|
40
|
+
--sx-brass-600: #A68B3A;
|
|
41
|
+
|
|
42
|
+
/* Accents — Danger */
|
|
43
|
+
--sx-red-500: #DC2626;
|
|
44
|
+
--sx-red-400: #EF4444;
|
|
45
|
+
--sx-red-600: #B91C1C;
|
|
46
|
+
|
|
47
|
+
/* Accents — Phosphor (operational green) */
|
|
48
|
+
--sx-green-500: #4ADE80;
|
|
49
|
+
--sx-green-400: #6EE7A0;
|
|
50
|
+
--sx-green-600: #22C55E;
|
|
51
|
+
|
|
52
|
+
/* Accents — Teal (encrypted channel) */
|
|
53
|
+
--sx-teal-500: #3D8B8B;
|
|
54
|
+
--sx-teal-400: #5AABAB;
|
|
55
|
+
--sx-teal-600: #2D6B6B;
|
|
48
56
|
|
|
49
57
|
/* ========================================
|
|
50
58
|
SEMANTIC COLORS
|
|
@@ -68,25 +76,30 @@
|
|
|
68
76
|
--sx-color-border-strong: rgba(255, 255, 255, 0.12);
|
|
69
77
|
--sx-color-border-hover: rgba(255, 255, 255, 0.18);
|
|
70
78
|
|
|
71
|
-
/* Accents */
|
|
72
|
-
--sx-color-
|
|
73
|
-
--sx-color-
|
|
79
|
+
/* Accents — semantic aliases */
|
|
80
|
+
--sx-color-primary: var(--sx-vermilion-500);
|
|
81
|
+
--sx-color-secondary: var(--sx-brass-500);
|
|
74
82
|
--sx-color-red: var(--sx-red-500);
|
|
75
83
|
--sx-color-green: var(--sx-green-500);
|
|
76
|
-
--sx-color-
|
|
84
|
+
--sx-color-teal: var(--sx-teal-500);
|
|
85
|
+
|
|
86
|
+
/* Backward compat aliases — components referencing old names */
|
|
87
|
+
--sx-color-cyan: var(--sx-vermilion-500);
|
|
88
|
+
--sx-color-gold: var(--sx-brass-500);
|
|
89
|
+
--sx-color-purple: var(--sx-teal-500);
|
|
77
90
|
|
|
78
91
|
/* Semantic states */
|
|
79
92
|
--sx-color-success: var(--sx-green-500);
|
|
80
|
-
--sx-color-warning: var(--sx-
|
|
93
|
+
--sx-color-warning: var(--sx-brass-500);
|
|
81
94
|
--sx-color-error: var(--sx-red-500);
|
|
82
|
-
--sx-color-info: var(--sx-
|
|
95
|
+
--sx-color-info: var(--sx-teal-500);
|
|
83
96
|
|
|
84
97
|
/* ========================================
|
|
85
98
|
GLASSMORPHISM
|
|
86
99
|
======================================== */
|
|
87
100
|
|
|
88
|
-
--sx-glass-bg: rgba(
|
|
89
|
-
--sx-glass-bg-strong: rgba(
|
|
101
|
+
--sx-glass-bg: rgba(15, 15, 20, 0.6);
|
|
102
|
+
--sx-glass-bg-strong: rgba(15, 15, 20, 0.85);
|
|
90
103
|
--sx-glass-border: 1px solid rgba(255, 255, 255, 0.06);
|
|
91
104
|
--sx-glass-blur: blur(16px);
|
|
92
105
|
|
|
@@ -98,37 +111,54 @@
|
|
|
98
111
|
--sx-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
|
|
99
112
|
--sx-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
|
|
100
113
|
--sx-shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
|
|
101
|
-
--sx-shadow-glow-
|
|
102
|
-
--sx-shadow-glow-
|
|
103
|
-
--sx-shadow-glow-
|
|
104
|
-
--sx-shadow-glow-red: 0 0 20px rgba(
|
|
105
|
-
--sx-shadow-glow-green: 0 0 20px rgba(
|
|
114
|
+
--sx-shadow-glow-primary: 0 0 20px rgba(255, 107, 53, 0.18);
|
|
115
|
+
--sx-shadow-glow-primary-strong: 0 0 30px rgba(255, 107, 53, 0.30);
|
|
116
|
+
--sx-shadow-glow-brass: 0 0 20px rgba(200, 168, 78, 0.15);
|
|
117
|
+
--sx-shadow-glow-red: 0 0 20px rgba(220, 38, 38, 0.15);
|
|
118
|
+
--sx-shadow-glow-green: 0 0 20px rgba(74, 222, 128, 0.15);
|
|
119
|
+
--sx-shadow-glow-teal: 0 0 20px rgba(61, 139, 139, 0.15);
|
|
120
|
+
|
|
121
|
+
/* Backward compat aliases */
|
|
122
|
+
--sx-shadow-glow-cyan: var(--sx-shadow-glow-primary);
|
|
123
|
+
--sx-shadow-glow-cyan-strong: var(--sx-shadow-glow-primary-strong);
|
|
124
|
+
--sx-shadow-glow-gold: var(--sx-shadow-glow-brass);
|
|
106
125
|
|
|
107
126
|
/* ========================================
|
|
108
127
|
INTERACTION OVERLAYS
|
|
109
128
|
Translucent accents for hovers, highlights, backdrops
|
|
110
129
|
======================================== */
|
|
111
130
|
|
|
112
|
-
--sx-color-
|
|
113
|
-
--sx-color-
|
|
114
|
-
--sx-color-
|
|
115
|
-
--sx-color-
|
|
116
|
-
--sx-color-red-subtle: rgba(
|
|
117
|
-
--sx-color-red-hover: rgba(
|
|
118
|
-
--sx-color-red-ring: rgba(
|
|
119
|
-
--sx-color-green-subtle: rgba(
|
|
120
|
-
--sx-color-
|
|
121
|
-
--sx-color-
|
|
122
|
-
--sx-color-backdrop: rgba(
|
|
131
|
+
--sx-color-primary-subtle: rgba(255, 107, 53, 0.06);
|
|
132
|
+
--sx-color-primary-hover: rgba(255, 107, 53, 0.1);
|
|
133
|
+
--sx-color-primary-active: rgba(255, 107, 53, 0.15);
|
|
134
|
+
--sx-color-primary-ring: rgba(255, 107, 53, 0.1);
|
|
135
|
+
--sx-color-red-subtle: rgba(220, 38, 38, 0.06);
|
|
136
|
+
--sx-color-red-hover: rgba(220, 38, 38, 0.1);
|
|
137
|
+
--sx-color-red-ring: rgba(220, 38, 38, 0.1);
|
|
138
|
+
--sx-color-green-subtle: rgba(74, 222, 128, 0.06);
|
|
139
|
+
--sx-color-brass-subtle: rgba(200, 168, 78, 0.06);
|
|
140
|
+
--sx-color-teal-subtle: rgba(61, 139, 139, 0.12);
|
|
141
|
+
--sx-color-backdrop: rgba(8, 8, 12, 0.7);
|
|
142
|
+
|
|
143
|
+
/* Backward compat aliases */
|
|
144
|
+
--sx-color-cyan-subtle: var(--sx-color-primary-subtle);
|
|
145
|
+
--sx-color-cyan-hover: var(--sx-color-primary-hover);
|
|
146
|
+
--sx-color-cyan-active: var(--sx-color-primary-active);
|
|
147
|
+
--sx-color-cyan-ring: var(--sx-color-primary-ring);
|
|
148
|
+
--sx-color-gold-subtle: var(--sx-color-brass-subtle);
|
|
149
|
+
--sx-color-purple-subtle: var(--sx-color-teal-subtle);
|
|
123
150
|
|
|
124
151
|
/* ========================================
|
|
125
152
|
GRADIENTS
|
|
126
153
|
======================================== */
|
|
127
154
|
|
|
128
|
-
--sx-gradient-brand: linear-gradient(135deg, var(--sx-color-
|
|
155
|
+
--sx-gradient-brand: linear-gradient(135deg, var(--sx-color-primary), var(--sx-color-secondary));
|
|
129
156
|
--sx-gradient-surface: linear-gradient(180deg, var(--sx-color-surface), var(--sx-color-base));
|
|
130
|
-
--sx-gradient-
|
|
131
|
-
--sx-gradient-overlay: linear-gradient(180deg, rgba(
|
|
157
|
+
--sx-gradient-primary: linear-gradient(135deg, var(--sx-color-primary), var(--sx-vermilion-600));
|
|
158
|
+
--sx-gradient-overlay: linear-gradient(180deg, rgba(8, 8, 12, 0) 0%, rgba(8, 8, 12, 0.8) 100%);
|
|
159
|
+
|
|
160
|
+
/* Backward compat */
|
|
161
|
+
--sx-gradient-cyan: var(--sx-gradient-primary);
|
|
132
162
|
|
|
133
163
|
/* ========================================
|
|
134
164
|
TYPOGRAPHY
|
|
@@ -136,7 +166,7 @@
|
|
|
136
166
|
|
|
137
167
|
--sx-font-body: 'TT Fors', system-ui, -apple-system, sans-serif;
|
|
138
168
|
--sx-font-display: 'TT Quaris', Georgia, 'Times New Roman', serif;
|
|
139
|
-
--sx-font-mono: 'Consolas', 'Courier New', monospace;
|
|
169
|
+
--sx-font-mono: 'JetBrains Mono', 'Consolas', 'Courier New', monospace;
|
|
140
170
|
|
|
141
171
|
--sx-text-xs: 0.75rem;
|
|
142
172
|
--sx-text-sm: 0.875rem;
|
|
@@ -190,13 +220,31 @@
|
|
|
190
220
|
--sx-radius-full: 9999px;
|
|
191
221
|
|
|
192
222
|
/* ========================================
|
|
193
|
-
|
|
223
|
+
MOTION — Durations
|
|
224
|
+
======================================== */
|
|
225
|
+
|
|
226
|
+
--sx-duration-instant: 100ms;
|
|
227
|
+
--sx-duration-fast: 150ms;
|
|
228
|
+
--sx-duration-base: 250ms;
|
|
229
|
+
--sx-duration-slow: 400ms;
|
|
230
|
+
--sx-duration-slower: 600ms;
|
|
231
|
+
|
|
232
|
+
/* ========================================
|
|
233
|
+
MOTION — Easing curves
|
|
234
|
+
======================================== */
|
|
235
|
+
|
|
236
|
+
--sx-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
|
|
237
|
+
--sx-ease-in: cubic-bezier(0.7, 0, 0.84, 0);
|
|
238
|
+
--sx-ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
|
|
239
|
+
--sx-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
240
|
+
|
|
241
|
+
/* ========================================
|
|
242
|
+
MOTION — Transition shorthands
|
|
194
243
|
======================================== */
|
|
195
244
|
|
|
196
245
|
--sx-transition-fast: 150ms ease;
|
|
197
246
|
--sx-transition-base: 250ms ease;
|
|
198
247
|
--sx-transition-slow: 400ms ease;
|
|
199
|
-
--sx-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
|
|
200
248
|
|
|
201
249
|
/* ========================================
|
|
202
250
|
Z-INDEX LAYERS
|
|
@@ -236,7 +284,7 @@
|
|
|
236
284
|
}
|
|
237
285
|
|
|
238
286
|
/* ========================================
|
|
239
|
-
FOCUS STATES —
|
|
287
|
+
FOCUS STATES — Vermilion outline, visible on dark
|
|
240
288
|
======================================== */
|
|
241
289
|
|
|
242
290
|
:focus {
|
|
@@ -244,7 +292,7 @@
|
|
|
244
292
|
}
|
|
245
293
|
|
|
246
294
|
:focus-visible {
|
|
247
|
-
outline: 2px solid var(--sx-color-
|
|
295
|
+
outline: 2px solid var(--sx-color-primary);
|
|
248
296
|
outline-offset: 2px;
|
|
249
297
|
}
|
|
250
298
|
|
|
@@ -259,15 +307,104 @@
|
|
|
259
307
|
stroke-width: var(--sx-icon-stroke);
|
|
260
308
|
}
|
|
261
309
|
|
|
310
|
+
/* ========================================
|
|
311
|
+
AMBIENT BACKGROUND — Thermal signature
|
|
312
|
+
Barely-visible heat dissipation drifts slowly,
|
|
313
|
+
giving the base surface infrared life.
|
|
314
|
+
======================================== */
|
|
315
|
+
|
|
316
|
+
body {
|
|
317
|
+
background-color: var(--sx-color-base);
|
|
318
|
+
background-image:
|
|
319
|
+
radial-gradient(ellipse at 15% 50%, rgba(255, 107, 53, 0.02) 0%, transparent 50%),
|
|
320
|
+
radial-gradient(ellipse at 85% 20%, rgba(200, 168, 78, 0.015) 0%, transparent 50%),
|
|
321
|
+
radial-gradient(ellipse at 50% 85%, rgba(61, 139, 139, 0.015) 0%, transparent 50%);
|
|
322
|
+
background-size: 200% 200%;
|
|
323
|
+
animation: sx-ambient-drift 25s ease-in-out infinite;
|
|
324
|
+
}
|
|
325
|
+
|
|
262
326
|
/* ========================================
|
|
263
327
|
SELECTION
|
|
264
328
|
======================================== */
|
|
265
329
|
|
|
266
330
|
::selection {
|
|
267
|
-
background: rgba(
|
|
331
|
+
background: rgba(255, 107, 53, 0.25);
|
|
268
332
|
color: var(--sx-color-text);
|
|
269
333
|
}
|
|
270
334
|
|
|
335
|
+
/* ========================================
|
|
336
|
+
@property — GPU-accelerated gradient angles
|
|
337
|
+
Required for conic-gradient rotation animations.
|
|
338
|
+
Falls back gracefully: browsers without @property
|
|
339
|
+
see a static gradient (no rotation), which is fine.
|
|
340
|
+
======================================== */
|
|
341
|
+
|
|
342
|
+
@property --sx-border-angle {
|
|
343
|
+
syntax: "<angle>";
|
|
344
|
+
initial-value: 0deg;
|
|
345
|
+
inherits: false;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
/* ========================================
|
|
349
|
+
GLOBAL KEYFRAMES
|
|
350
|
+
Shared animations used by multiple components.
|
|
351
|
+
Component-specific keyframes live in the component.
|
|
352
|
+
======================================== */
|
|
353
|
+
|
|
354
|
+
@keyframes sx-border-flow {
|
|
355
|
+
to {
|
|
356
|
+
--sx-border-angle: 360deg;
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
@keyframes sx-ambient-drift {
|
|
361
|
+
0% { background-position: 0% 50%; }
|
|
362
|
+
50% { background-position: 100% 50%; }
|
|
363
|
+
100% { background-position: 0% 50%; }
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
@keyframes sx-focus-breathe {
|
|
367
|
+
0%, 100% { box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.12); }
|
|
368
|
+
50% { box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.28); }
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
@keyframes sx-error-shake {
|
|
372
|
+
0%, 100% { transform: translateX(0); }
|
|
373
|
+
15% { transform: translateX(-4px); }
|
|
374
|
+
30% { transform: translateX(4px); }
|
|
375
|
+
45% { transform: translateX(-3px); }
|
|
376
|
+
60% { transform: translateX(2px); }
|
|
377
|
+
75% { transform: translateX(-1px); }
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
@keyframes sx-check-in {
|
|
381
|
+
from {
|
|
382
|
+
transform: scale(0.5);
|
|
383
|
+
opacity: 0;
|
|
384
|
+
}
|
|
385
|
+
to {
|
|
386
|
+
transform: scale(1);
|
|
387
|
+
opacity: 1;
|
|
388
|
+
}
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
@keyframes sx-badge-pop {
|
|
392
|
+
0% { transform: scale(1); }
|
|
393
|
+
40% { transform: scale(1.15); }
|
|
394
|
+
100% { transform: scale(1); }
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
@keyframes sx-alert-in {
|
|
398
|
+
from {
|
|
399
|
+
opacity: 0;
|
|
400
|
+
transform: translateY(-8px);
|
|
401
|
+
}
|
|
402
|
+
to {
|
|
403
|
+
opacity: 1;
|
|
404
|
+
transform: translateY(0);
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
|
|
271
408
|
/* ========================================
|
|
272
409
|
REDUCED MOTION
|
|
273
410
|
======================================== */
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salmexio/ui",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "Salmex I/O Design System —
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "Salmex I/O Design System — INFRARED component library for Salmex products",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"publishConfig": {
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"sveltekit",
|
|
75
75
|
"ui",
|
|
76
76
|
"components",
|
|
77
|
-
"
|
|
77
|
+
"infrared",
|
|
78
78
|
"dark-mode",
|
|
79
79
|
"accessibility",
|
|
80
80
|
"typescript"
|