@metropolle/design-system 1.2025.1-2.5.1903 → 1.2026.0-1.2.1231
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/css/components.css +414 -126
- package/dist/css/liquid-glass.css +468 -0
- package/dist/react/components/react/GlassCard/GlassCard.d.ts +46 -6
- package/dist/react/components/react/GlassCard/GlassCard.d.ts.map +1 -1
- package/dist/react/components/react/Modal/Modal.d.ts.map +1 -1
- package/dist/react/components/react/Select/Select.d.ts +61 -10
- package/dist/react/components/react/Select/Select.d.ts.map +1 -1
- package/dist/react/components/react/index.d.ts +1 -1
- package/dist/react/components/react/index.d.ts.map +1 -1
- package/dist/react/index.d.ts +1 -1
- package/dist/react/index.esm.js +352 -42
- package/dist/react/index.esm.js.map +1 -1
- package/dist/react/index.js +351 -41
- package/dist/react/index.js.map +1 -1
- package/package.json +4 -2
|
@@ -0,0 +1,468 @@
|
|
|
1
|
+
/* ============================================
|
|
2
|
+
Metropolle Design System - Liquid Glass CSS
|
|
3
|
+
Apple iOS 26 Liquid Glass Style
|
|
4
|
+
============================================ */
|
|
5
|
+
|
|
6
|
+
/* =========================
|
|
7
|
+
CSS Custom Properties
|
|
8
|
+
========================= */
|
|
9
|
+
|
|
10
|
+
:root {
|
|
11
|
+
/* =========================
|
|
12
|
+
Centralized Theme Variables
|
|
13
|
+
Use these across all repos
|
|
14
|
+
========================= */
|
|
15
|
+
|
|
16
|
+
/* Typography */
|
|
17
|
+
--mds-font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
18
|
+
--mds-font-family-brand: 'Helvetica', 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
19
|
+
|
|
20
|
+
/* Brand Colors */
|
|
21
|
+
--mds-color-brand-primary: #0055FF;
|
|
22
|
+
--mds-color-brand-secondary: #667eea;
|
|
23
|
+
--mds-color-brand-accent: #764ba2;
|
|
24
|
+
|
|
25
|
+
/* Status Colors */
|
|
26
|
+
--mds-color-success: #10b981;
|
|
27
|
+
--mds-color-warning: #f59e0b;
|
|
28
|
+
--mds-color-error: #ef4444;
|
|
29
|
+
--mds-color-info: #3b82f6;
|
|
30
|
+
--mds-color-accent: #a855f7;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
/* =========================
|
|
34
|
+
Dark Theme (Default)
|
|
35
|
+
========================= */
|
|
36
|
+
:root,
|
|
37
|
+
html[data-theme="dark"] {
|
|
38
|
+
/* Semantic Colors */
|
|
39
|
+
--mds-color-text-primary: #ffffff;
|
|
40
|
+
--mds-color-text-secondary: rgba(255, 255, 255, 0.7);
|
|
41
|
+
--mds-color-text-tertiary: rgba(255, 255, 255, 0.5);
|
|
42
|
+
--mds-color-background-primary: #0f0f0f;
|
|
43
|
+
--mds-color-background-secondary: #1a1a1a;
|
|
44
|
+
--mds-color-background-tertiary: #2a2a2a;
|
|
45
|
+
--mds-color-border-default: rgba(255, 255, 255, 0.15);
|
|
46
|
+
--mds-color-border-light: rgba(255, 255, 255, 0.08);
|
|
47
|
+
|
|
48
|
+
/* Scrollbar */
|
|
49
|
+
--mds-scrollbar-track: rgba(40, 40, 40, 0.8);
|
|
50
|
+
--mds-scrollbar-thumb: rgba(80, 80, 80, 0.8);
|
|
51
|
+
--mds-scrollbar-thumb-hover: rgba(100, 100, 100, 0.8);
|
|
52
|
+
|
|
53
|
+
/* =========================
|
|
54
|
+
Liquid Glass Tokens - iOS 26 Style
|
|
55
|
+
========================= */
|
|
56
|
+
|
|
57
|
+
/* Blur tokens - Increased for more glass-like effect */
|
|
58
|
+
--mds-liquid-blur-xs: 4px;
|
|
59
|
+
--mds-liquid-blur-sm: 8px;
|
|
60
|
+
--mds-liquid-blur-md: 12px;
|
|
61
|
+
--mds-liquid-blur-lg: 16px;
|
|
62
|
+
--mds-liquid-blur-xl: 24px;
|
|
63
|
+
|
|
64
|
+
/* Saturate tokens - Subtle per Apple guidelines */
|
|
65
|
+
--mds-liquid-saturate-subtle: 105%;
|
|
66
|
+
--mds-liquid-saturate-default: 120%;
|
|
67
|
+
--mds-liquid-saturate-vibrant: 140%;
|
|
68
|
+
|
|
69
|
+
/* Background tokens - True glass transparency */
|
|
70
|
+
--mds-liquid-bg-glass: rgba(255, 255, 255, 0.08);
|
|
71
|
+
--mds-liquid-bg-glass-thick: rgba(255, 255, 255, 0.12);
|
|
72
|
+
--mds-liquid-bg-overlay: rgba(0, 0, 0, 0.4);
|
|
73
|
+
--mds-liquid-bg-sidebar: rgba(0, 0, 0, 0.35);
|
|
74
|
+
--mds-liquid-bg-navbar: rgba(0, 0, 0, 0.4);
|
|
75
|
+
--mds-liquid-bg-card: rgba(255, 255, 255, 0.06);
|
|
76
|
+
--mds-liquid-bg-input: rgba(255, 255, 255, 0.08);
|
|
77
|
+
--mds-liquid-bg-button: rgba(255, 255, 255, 0.1);
|
|
78
|
+
--mds-liquid-bg-button-hover: rgba(255, 255, 255, 0.15);
|
|
79
|
+
|
|
80
|
+
/* Border tokens - Subtle glass edges */
|
|
81
|
+
--mds-liquid-border-subtle: rgba(255, 255, 255, 0.12);
|
|
82
|
+
--mds-liquid-border-default: rgba(255, 255, 255, 0.18);
|
|
83
|
+
--mds-liquid-border-bright: rgba(255, 255, 255, 0.25);
|
|
84
|
+
|
|
85
|
+
/* Shadow tokens - Deeper for lifted effect */
|
|
86
|
+
--mds-liquid-shadow-raised: 0 2px 8px rgba(0, 0, 0, 0.2);
|
|
87
|
+
--mds-liquid-shadow-floating: 0 8px 24px rgba(0, 0, 0, 0.25);
|
|
88
|
+
--mds-liquid-shadow-elevated: 0 12px 40px rgba(0, 0, 0, 0.3);
|
|
89
|
+
--mds-liquid-shadow-dramatic: 0 16px 56px rgba(0, 0, 0, 0.4);
|
|
90
|
+
|
|
91
|
+
/* Inner glow - Top edge highlight */
|
|
92
|
+
--mds-liquid-glow-edge: inset 0 1px 0 rgba(255, 255, 255, 0.1);
|
|
93
|
+
--mds-liquid-glow-soft: inset 0 1px 1px rgba(255, 255, 255, 0.08);
|
|
94
|
+
|
|
95
|
+
/* Specular highlight - More dramatic top-left shine */
|
|
96
|
+
--mds-liquid-specular: linear-gradient(
|
|
97
|
+
145deg,
|
|
98
|
+
rgba(255, 255, 255, 0.15) 0%,
|
|
99
|
+
rgba(255, 255, 255, 0.05) 25%,
|
|
100
|
+
rgba(255, 255, 255, 0) 50%
|
|
101
|
+
);
|
|
102
|
+
--mds-liquid-specular-intense: linear-gradient(
|
|
103
|
+
145deg,
|
|
104
|
+
rgba(255, 255, 255, 0.25) 0%,
|
|
105
|
+
rgba(255, 255, 255, 0.08) 30%,
|
|
106
|
+
rgba(255, 255, 255, 0) 60%
|
|
107
|
+
);
|
|
108
|
+
|
|
109
|
+
/* Transitions */
|
|
110
|
+
--mds-liquid-transition: all 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
111
|
+
--mds-liquid-transition-fast: all 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
112
|
+
--mds-liquid-transition-slow: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
113
|
+
|
|
114
|
+
/* Background gradient */
|
|
115
|
+
--mds-liquid-gradient: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
/* =========================
|
|
119
|
+
Light Theme
|
|
120
|
+
========================= */
|
|
121
|
+
html[data-theme="light"] {
|
|
122
|
+
/* Semantic Colors */
|
|
123
|
+
--mds-color-text-primary: #1a1a1a;
|
|
124
|
+
--mds-color-text-secondary: rgba(0, 0, 0, 0.6);
|
|
125
|
+
--mds-color-text-tertiary: rgba(0, 0, 0, 0.4);
|
|
126
|
+
--mds-color-background-primary: #f8f9fa;
|
|
127
|
+
--mds-color-background-secondary: #ffffff;
|
|
128
|
+
--mds-color-background-tertiary: #f0f0f0;
|
|
129
|
+
--mds-color-border-default: rgba(0, 0, 0, 0.08);
|
|
130
|
+
--mds-color-border-light: rgba(0, 0, 0, 0.04);
|
|
131
|
+
|
|
132
|
+
/* Scrollbar */
|
|
133
|
+
--mds-scrollbar-track: rgba(0, 0, 0, 0.05);
|
|
134
|
+
--mds-scrollbar-thumb: rgba(0, 0, 0, 0.2);
|
|
135
|
+
--mds-scrollbar-thumb-hover: rgba(0, 0, 0, 0.3);
|
|
136
|
+
|
|
137
|
+
/* Liquid Glass - Light mode uses darker glass for contrast */
|
|
138
|
+
--mds-liquid-bg-glass: rgba(255, 255, 255, 0.7);
|
|
139
|
+
--mds-liquid-bg-glass-thick: rgba(255, 255, 255, 0.85);
|
|
140
|
+
--mds-liquid-bg-overlay: rgba(255, 255, 255, 0.6);
|
|
141
|
+
--mds-liquid-bg-sidebar: rgba(255, 255, 255, 0.75);
|
|
142
|
+
--mds-liquid-bg-navbar: rgba(255, 255, 255, 0.8);
|
|
143
|
+
--mds-liquid-bg-card: rgba(255, 255, 255, 0.6);
|
|
144
|
+
--mds-liquid-bg-input: rgba(255, 255, 255, 0.9);
|
|
145
|
+
--mds-liquid-bg-button: rgba(0, 0, 0, 0.04);
|
|
146
|
+
--mds-liquid-bg-button-hover: rgba(0, 0, 0, 0.08);
|
|
147
|
+
|
|
148
|
+
/* Borders - Subtle dark edges */
|
|
149
|
+
--mds-liquid-border-subtle: rgba(0, 0, 0, 0.06);
|
|
150
|
+
--mds-liquid-border-default: rgba(0, 0, 0, 0.1);
|
|
151
|
+
--mds-liquid-border-bright: rgba(0, 0, 0, 0.15);
|
|
152
|
+
|
|
153
|
+
/* Shadows - Softer for light mode */
|
|
154
|
+
--mds-liquid-shadow-raised: 0 2px 8px rgba(0, 0, 0, 0.06);
|
|
155
|
+
--mds-liquid-shadow-floating: 0 8px 24px rgba(0, 0, 0, 0.1);
|
|
156
|
+
--mds-liquid-shadow-elevated: 0 12px 40px rgba(0, 0, 0, 0.12);
|
|
157
|
+
--mds-liquid-shadow-dramatic: 0 16px 56px rgba(0, 0, 0, 0.15);
|
|
158
|
+
|
|
159
|
+
/* Inner glow - Subtle white edge */
|
|
160
|
+
--mds-liquid-glow-edge: inset 0 1px 0 rgba(255, 255, 255, 0.8);
|
|
161
|
+
--mds-liquid-glow-soft: inset 0 1px 1px rgba(255, 255, 255, 0.5);
|
|
162
|
+
|
|
163
|
+
/* Specular - Brighter for light mode */
|
|
164
|
+
--mds-liquid-specular: linear-gradient(
|
|
165
|
+
145deg,
|
|
166
|
+
rgba(255, 255, 255, 0.6) 0%,
|
|
167
|
+
rgba(255, 255, 255, 0.2) 25%,
|
|
168
|
+
rgba(255, 255, 255, 0) 50%
|
|
169
|
+
);
|
|
170
|
+
--mds-liquid-specular-intense: linear-gradient(
|
|
171
|
+
145deg,
|
|
172
|
+
rgba(255, 255, 255, 0.8) 0%,
|
|
173
|
+
rgba(255, 255, 255, 0.3) 30%,
|
|
174
|
+
rgba(255, 255, 255, 0) 60%
|
|
175
|
+
);
|
|
176
|
+
|
|
177
|
+
/* Background gradient */
|
|
178
|
+
--mds-liquid-gradient: linear-gradient(180deg, #f0f2f5 0%, #e4e6e9 100%);
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
/* =========================
|
|
183
|
+
Base Liquid Glass Class
|
|
184
|
+
========================= */
|
|
185
|
+
|
|
186
|
+
.mds-liquid-glass {
|
|
187
|
+
position: relative;
|
|
188
|
+
background: var(--mds-liquid-bg-glass);
|
|
189
|
+
backdrop-filter: blur(var(--mds-liquid-blur-md)) saturate(var(--mds-liquid-saturate-default));
|
|
190
|
+
-webkit-backdrop-filter: blur(var(--mds-liquid-blur-md)) saturate(var(--mds-liquid-saturate-default));
|
|
191
|
+
border: 1px solid var(--mds-liquid-border-subtle);
|
|
192
|
+
border-radius: 16px;
|
|
193
|
+
box-shadow: var(--mds-liquid-shadow-floating), var(--mds-liquid-glow-edge);
|
|
194
|
+
transition: var(--mds-liquid-transition);
|
|
195
|
+
overflow: hidden;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
/* Specular highlight via pseudo-element */
|
|
199
|
+
.mds-liquid-glass::before {
|
|
200
|
+
content: '';
|
|
201
|
+
position: absolute;
|
|
202
|
+
inset: 0;
|
|
203
|
+
background: var(--mds-liquid-specular);
|
|
204
|
+
border-radius: inherit;
|
|
205
|
+
pointer-events: none;
|
|
206
|
+
z-index: 0;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
/* Content should be above the specular */
|
|
210
|
+
.mds-liquid-glass > * {
|
|
211
|
+
position: relative;
|
|
212
|
+
z-index: 1;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
/* Hover state - subtle brightness increase */
|
|
216
|
+
.mds-liquid-glass:hover {
|
|
217
|
+
border-color: var(--mds-liquid-border-bright);
|
|
218
|
+
box-shadow: var(--mds-liquid-shadow-elevated), var(--mds-liquid-glow-edge);
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
/* No-hover variant */
|
|
222
|
+
.mds-liquid-glass--no-hover,
|
|
223
|
+
.mds-liquid-glass--no-hover:hover {
|
|
224
|
+
border-color: var(--mds-liquid-border-subtle);
|
|
225
|
+
box-shadow: var(--mds-liquid-shadow-floating), var(--mds-liquid-glow-edge);
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
/* =========================
|
|
230
|
+
Size Variants
|
|
231
|
+
========================= */
|
|
232
|
+
|
|
233
|
+
.mds-liquid-glass--xs {
|
|
234
|
+
backdrop-filter: blur(var(--mds-liquid-blur-xs)) saturate(var(--mds-liquid-saturate-subtle));
|
|
235
|
+
-webkit-backdrop-filter: blur(var(--mds-liquid-blur-xs)) saturate(var(--mds-liquid-saturate-subtle));
|
|
236
|
+
border-radius: 8px;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.mds-liquid-glass--sm {
|
|
240
|
+
backdrop-filter: blur(var(--mds-liquid-blur-sm)) saturate(var(--mds-liquid-saturate-subtle));
|
|
241
|
+
-webkit-backdrop-filter: blur(var(--mds-liquid-blur-sm)) saturate(var(--mds-liquid-saturate-subtle));
|
|
242
|
+
border-radius: 12px;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.mds-liquid-glass--lg {
|
|
246
|
+
backdrop-filter: blur(var(--mds-liquid-blur-lg)) saturate(var(--mds-liquid-saturate-default));
|
|
247
|
+
-webkit-backdrop-filter: blur(var(--mds-liquid-blur-lg)) saturate(var(--mds-liquid-saturate-default));
|
|
248
|
+
border-radius: 20px;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.mds-liquid-glass--xl {
|
|
252
|
+
backdrop-filter: blur(var(--mds-liquid-blur-xl)) saturate(var(--mds-liquid-saturate-vibrant));
|
|
253
|
+
-webkit-backdrop-filter: blur(var(--mds-liquid-blur-xl)) saturate(var(--mds-liquid-saturate-vibrant));
|
|
254
|
+
border-radius: 24px;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
/* =========================
|
|
259
|
+
Element-Specific Classes
|
|
260
|
+
========================= */
|
|
261
|
+
|
|
262
|
+
/* Navbar */
|
|
263
|
+
.mds-liquid-glass--navbar {
|
|
264
|
+
background: var(--mds-liquid-bg-navbar);
|
|
265
|
+
backdrop-filter: blur(var(--mds-liquid-blur-lg)) saturate(var(--mds-liquid-saturate-default));
|
|
266
|
+
-webkit-backdrop-filter: blur(var(--mds-liquid-blur-lg)) saturate(var(--mds-liquid-saturate-default));
|
|
267
|
+
border: none;
|
|
268
|
+
border-bottom: 1px solid var(--mds-liquid-border-subtle);
|
|
269
|
+
border-radius: 0;
|
|
270
|
+
box-shadow: var(--mds-liquid-shadow-raised);
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.mds-liquid-glass--navbar::before {
|
|
274
|
+
border-radius: 0;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.mds-liquid-glass--navbar:hover {
|
|
278
|
+
box-shadow: var(--mds-liquid-shadow-raised);
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
/* Sidebar */
|
|
282
|
+
.mds-liquid-glass--sidebar {
|
|
283
|
+
background: var(--mds-liquid-bg-sidebar);
|
|
284
|
+
backdrop-filter: blur(var(--mds-liquid-blur-xl)) saturate(var(--mds-liquid-saturate-default));
|
|
285
|
+
-webkit-backdrop-filter: blur(var(--mds-liquid-blur-xl)) saturate(var(--mds-liquid-saturate-default));
|
|
286
|
+
border: none;
|
|
287
|
+
border-right: 1px solid var(--mds-liquid-border-subtle);
|
|
288
|
+
border-radius: 0;
|
|
289
|
+
box-shadow: var(--mds-liquid-shadow-raised);
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.mds-liquid-glass--sidebar::before {
|
|
293
|
+
border-radius: 0;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
/* Card */
|
|
297
|
+
.mds-liquid-glass--card {
|
|
298
|
+
background: var(--mds-liquid-bg-card);
|
|
299
|
+
backdrop-filter: blur(var(--mds-liquid-blur-md)) saturate(var(--mds-liquid-saturate-default));
|
|
300
|
+
-webkit-backdrop-filter: blur(var(--mds-liquid-blur-md)) saturate(var(--mds-liquid-saturate-default));
|
|
301
|
+
padding: 1.5rem;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
/* Modal */
|
|
305
|
+
.mds-liquid-glass--modal {
|
|
306
|
+
background: var(--mds-liquid-bg-glass-thick);
|
|
307
|
+
backdrop-filter: blur(var(--mds-liquid-blur-xl)) saturate(var(--mds-liquid-saturate-vibrant));
|
|
308
|
+
-webkit-backdrop-filter: blur(var(--mds-liquid-blur-xl)) saturate(var(--mds-liquid-saturate-vibrant));
|
|
309
|
+
border-radius: 20px;
|
|
310
|
+
box-shadow: var(--mds-liquid-shadow-dramatic), var(--mds-liquid-glow-edge);
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.mds-liquid-glass--modal::before {
|
|
314
|
+
background: var(--mds-liquid-specular-intense);
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
/* Modal Overlay */
|
|
318
|
+
.mds-liquid-glass--overlay {
|
|
319
|
+
background: var(--mds-liquid-bg-overlay);
|
|
320
|
+
backdrop-filter: blur(var(--mds-liquid-blur-sm));
|
|
321
|
+
-webkit-backdrop-filter: blur(var(--mds-liquid-blur-sm));
|
|
322
|
+
border: none;
|
|
323
|
+
border-radius: 0;
|
|
324
|
+
box-shadow: none;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.mds-liquid-glass--overlay::before {
|
|
328
|
+
display: none;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
/* Input */
|
|
332
|
+
.mds-liquid-glass--input {
|
|
333
|
+
background: var(--mds-liquid-bg-input);
|
|
334
|
+
backdrop-filter: blur(var(--mds-liquid-blur-sm)) saturate(var(--mds-liquid-saturate-subtle));
|
|
335
|
+
-webkit-backdrop-filter: blur(var(--mds-liquid-blur-sm)) saturate(var(--mds-liquid-saturate-subtle));
|
|
336
|
+
border-radius: 10px;
|
|
337
|
+
box-shadow: var(--mds-liquid-glow-soft);
|
|
338
|
+
padding: 0.75rem 1rem;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.mds-liquid-glass--input:focus {
|
|
342
|
+
border-color: var(--mds-color-brand-primary);
|
|
343
|
+
box-shadow: var(--mds-liquid-glow-soft), 0 0 0 3px rgba(0, 85, 255, 0.2);
|
|
344
|
+
outline: none;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
/* Button */
|
|
348
|
+
.mds-liquid-glass--button {
|
|
349
|
+
background: var(--mds-liquid-bg-button);
|
|
350
|
+
backdrop-filter: blur(var(--mds-liquid-blur-xs)) saturate(var(--mds-liquid-saturate-default));
|
|
351
|
+
-webkit-backdrop-filter: blur(var(--mds-liquid-blur-xs)) saturate(var(--mds-liquid-saturate-default));
|
|
352
|
+
border-radius: 10px;
|
|
353
|
+
box-shadow: var(--mds-liquid-shadow-raised), var(--mds-liquid-glow-soft);
|
|
354
|
+
padding: 0.5rem 1rem;
|
|
355
|
+
cursor: pointer;
|
|
356
|
+
transition: var(--mds-liquid-transition-fast);
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
.mds-liquid-glass--button:hover {
|
|
360
|
+
background: var(--mds-liquid-bg-button-hover);
|
|
361
|
+
border-color: var(--mds-liquid-border-bright);
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.mds-liquid-glass--button:active {
|
|
365
|
+
box-shadow: var(--mds-liquid-glow-soft);
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
/* Dropdown */
|
|
369
|
+
.mds-liquid-glass--dropdown {
|
|
370
|
+
background: var(--mds-liquid-bg-glass-thick);
|
|
371
|
+
backdrop-filter: blur(var(--mds-liquid-blur-lg)) saturate(var(--mds-liquid-saturate-default));
|
|
372
|
+
-webkit-backdrop-filter: blur(var(--mds-liquid-blur-lg)) saturate(var(--mds-liquid-saturate-default));
|
|
373
|
+
border-radius: 14px;
|
|
374
|
+
box-shadow: var(--mds-liquid-shadow-elevated);
|
|
375
|
+
padding: 0.5rem;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
/* Table */
|
|
379
|
+
.mds-liquid-glass--table {
|
|
380
|
+
background: var(--mds-liquid-bg-glass);
|
|
381
|
+
backdrop-filter: blur(var(--mds-liquid-blur-sm)) saturate(var(--mds-liquid-saturate-subtle));
|
|
382
|
+
-webkit-backdrop-filter: blur(var(--mds-liquid-blur-sm)) saturate(var(--mds-liquid-saturate-subtle));
|
|
383
|
+
border-radius: 16px;
|
|
384
|
+
overflow: hidden;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
/* Footer */
|
|
388
|
+
.mds-liquid-glass--footer {
|
|
389
|
+
background: var(--mds-liquid-bg-navbar);
|
|
390
|
+
backdrop-filter: blur(var(--mds-liquid-blur-lg)) saturate(var(--mds-liquid-saturate-default));
|
|
391
|
+
-webkit-backdrop-filter: blur(var(--mds-liquid-blur-lg)) saturate(var(--mds-liquid-saturate-default));
|
|
392
|
+
border: none;
|
|
393
|
+
border-top: 1px solid var(--mds-liquid-border-subtle);
|
|
394
|
+
border-radius: 0;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
.mds-liquid-glass--footer::before {
|
|
398
|
+
border-radius: 0;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
/* TOC (Table of Contents) */
|
|
402
|
+
.mds-liquid-glass--toc {
|
|
403
|
+
background: var(--mds-liquid-bg-card);
|
|
404
|
+
backdrop-filter: blur(var(--mds-liquid-blur-md)) saturate(var(--mds-liquid-saturate-subtle));
|
|
405
|
+
-webkit-backdrop-filter: blur(var(--mds-liquid-blur-md)) saturate(var(--mds-liquid-saturate-subtle));
|
|
406
|
+
border-radius: 14px;
|
|
407
|
+
padding: 1rem;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
/* Badge */
|
|
411
|
+
.mds-liquid-glass--badge {
|
|
412
|
+
background: var(--mds-liquid-bg-button);
|
|
413
|
+
backdrop-filter: blur(var(--mds-liquid-blur-xs)) saturate(var(--mds-liquid-saturate-subtle));
|
|
414
|
+
-webkit-backdrop-filter: blur(var(--mds-liquid-blur-xs)) saturate(var(--mds-liquid-saturate-subtle));
|
|
415
|
+
border-radius: 999px;
|
|
416
|
+
box-shadow: var(--mds-liquid-shadow-raised);
|
|
417
|
+
padding: 0.25rem 0.75rem;
|
|
418
|
+
font-size: 0.75rem;
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
/* =========================
|
|
423
|
+
Background Utilities
|
|
424
|
+
========================= */
|
|
425
|
+
|
|
426
|
+
.mds-liquid-bg-gradient {
|
|
427
|
+
background: var(--mds-liquid-gradient) !important;
|
|
428
|
+
background-attachment: fixed !important;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
/* =========================
|
|
433
|
+
Accessibility
|
|
434
|
+
========================= */
|
|
435
|
+
|
|
436
|
+
/* Reduced motion */
|
|
437
|
+
@media (prefers-reduced-motion: reduce) {
|
|
438
|
+
.mds-liquid-glass,
|
|
439
|
+
.mds-liquid-glass--button,
|
|
440
|
+
.mds-liquid-glass--input {
|
|
441
|
+
transition: none !important;
|
|
442
|
+
}
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
/* High contrast */
|
|
446
|
+
@media (prefers-contrast: high) {
|
|
447
|
+
.mds-liquid-glass {
|
|
448
|
+
background: var(--mds-color-background-secondary) !important;
|
|
449
|
+
backdrop-filter: none !important;
|
|
450
|
+
-webkit-backdrop-filter: none !important;
|
|
451
|
+
border: 2px solid var(--mds-color-text-primary) !important;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
.mds-liquid-glass::before {
|
|
455
|
+
display: none !important;
|
|
456
|
+
}
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
/* =========================
|
|
461
|
+
Browser Fallback
|
|
462
|
+
========================= */
|
|
463
|
+
|
|
464
|
+
@supports not (backdrop-filter: blur(1px)) {
|
|
465
|
+
.mds-liquid-glass {
|
|
466
|
+
background: var(--mds-color-background-secondary);
|
|
467
|
+
}
|
|
468
|
+
}
|
|
@@ -1,23 +1,63 @@
|
|
|
1
1
|
import React, { HTMLAttributes } from 'react';
|
|
2
|
+
export type GlassStyle = 'glass' | 'liquid';
|
|
3
|
+
export type GlassIntensity = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
4
|
+
export type GlassTheme = 'light' | 'dark';
|
|
2
5
|
export interface GlassCardProps extends HTMLAttributes<HTMLDivElement> {
|
|
3
|
-
/**
|
|
6
|
+
/**
|
|
7
|
+
* Estilo do card: 'glass' (tradicional) ou 'liquid' (iOS 26 style)
|
|
8
|
+
* @default 'liquid'
|
|
9
|
+
*/
|
|
10
|
+
glassStyle?: GlassStyle;
|
|
11
|
+
/**
|
|
12
|
+
* Intensidade do efeito blur/saturate
|
|
13
|
+
* xs: 2px, sm: 4px, md: 6px (default), lg: 8px, xl: 12px
|
|
14
|
+
* @default 'md'
|
|
15
|
+
*/
|
|
16
|
+
intensity?: GlassIntensity;
|
|
17
|
+
/**
|
|
18
|
+
* Tema de cor: afeta opacidade e bordas
|
|
19
|
+
* @default 'light'
|
|
20
|
+
*/
|
|
21
|
+
theme?: GlassTheme;
|
|
22
|
+
/**
|
|
23
|
+
* @deprecated Use 'theme' instead. Mantido para retrocompatibilidade.
|
|
24
|
+
*/
|
|
4
25
|
variant?: 'light' | 'dark';
|
|
5
|
-
/**
|
|
26
|
+
/**
|
|
27
|
+
* @deprecated Use 'intensity' instead. Valor do blur em pixels.
|
|
28
|
+
*/
|
|
6
29
|
blur?: number;
|
|
7
|
-
/**
|
|
30
|
+
/**
|
|
31
|
+
* Opacidade do background (0-1). Sobrescreve valor default do theme.
|
|
32
|
+
*/
|
|
8
33
|
opacity?: number;
|
|
9
34
|
/** Conteúdo do card */
|
|
10
35
|
children: React.ReactNode;
|
|
11
36
|
/** Classes CSS adicionais */
|
|
12
37
|
className?: string;
|
|
13
|
-
/**
|
|
38
|
+
/**
|
|
39
|
+
* Se deve aplicar hover effects
|
|
40
|
+
* @default true
|
|
41
|
+
*/
|
|
14
42
|
enableHover?: boolean;
|
|
15
43
|
}
|
|
16
44
|
/**
|
|
17
45
|
* Glass Card Component
|
|
18
46
|
*
|
|
19
|
-
* Componente de cartão com efeito glassmorphism
|
|
20
|
-
*
|
|
47
|
+
* Componente de cartão com efeito glassmorphism ou Liquid Glass (iOS 26 style).
|
|
48
|
+
*
|
|
49
|
+
* @example
|
|
50
|
+
* ```tsx
|
|
51
|
+
* // Liquid Glass (novo padrão)
|
|
52
|
+
* <GlassCard glassStyle="liquid" intensity="md">
|
|
53
|
+
* Content here
|
|
54
|
+
* </GlassCard>
|
|
55
|
+
*
|
|
56
|
+
* // Glassmorphism tradicional (retrocompatível)
|
|
57
|
+
* <GlassCard glassStyle="glass" variant="dark">
|
|
58
|
+
* Content here
|
|
59
|
+
* </GlassCard>
|
|
60
|
+
* ```
|
|
21
61
|
*/
|
|
22
62
|
export declare const GlassCard: React.ForwardRefExoticComponent<GlassCardProps & React.RefAttributes<HTMLDivElement>>;
|
|
23
63
|
//# sourceMappingURL=GlassCard.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GlassCard.d.ts","sourceRoot":"","sources":["../../../../../src/components/react/GlassCard/GlassCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAc,cAAc,EAAE,MAAM,OAAO,CAAC;AAG1D,MAAM,WAAW,cAAe,SAAQ,cAAc,CAAC,cAAc,CAAC;IACpE,
|
|
1
|
+
{"version":3,"file":"GlassCard.d.ts","sourceRoot":"","sources":["../../../../../src/components/react/GlassCard/GlassCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAc,cAAc,EAAE,MAAM,OAAO,CAAC;AAG1D,MAAM,MAAM,UAAU,GAAG,OAAO,GAAG,QAAQ,CAAC;AAC5C,MAAM,MAAM,cAAc,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AAC9D,MAAM,MAAM,UAAU,GAAG,OAAO,GAAG,MAAM,CAAC;AAE1C,MAAM,WAAW,cAAe,SAAQ,cAAc,CAAC,cAAc,CAAC;IACpE;;;OAGG;IACH,UAAU,CAAC,EAAE,UAAU,CAAC;IACxB;;;;OAIG;IACH,SAAS,CAAC,EAAE,cAAc,CAAC;IAC3B;;;OAGG;IACH,KAAK,CAAC,EAAE,UAAU,CAAC;IACnB;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;IAC3B;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,uBAAuB;IACvB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,6BAA6B;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;;OAGG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB;AAED;;;;;;;;;;;;;;;;;GAiBG;AACH,eAAO,MAAM,SAAS,uFA4HpB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Modal.d.ts","sourceRoot":"","sources":["../../../../../src/components/react/Modal/Modal.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAG3D,MAAM,WAAW,UAAU;IACzB,IAAI,EAAE,OAAO,CAAC;IACd,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;CAC7B;
|
|
1
|
+
{"version":3,"file":"Modal.d.ts","sourceRoot":"","sources":["../../../../../src/components/react/Modal/Modal.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAG3D,MAAM,WAAW,UAAU;IACzB,IAAI,EAAE,OAAO,CAAC;IACd,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;CAC7B;AAsDD,wBAAgB,KAAK,CAAC,EACpB,IAAI,EACJ,OAAO,EACP,cAAqB,EACrB,QAAQ,EACR,SAAS,EACT,KAAK,EACN,EAAE,UAAU,4BA2FZ;AAED,eAAe,KAAK,CAAC"}
|
|
@@ -1,20 +1,71 @@
|
|
|
1
|
-
import React
|
|
1
|
+
import React from 'react';
|
|
2
2
|
export interface SelectOption {
|
|
3
|
-
label
|
|
3
|
+
/** Display label (must be string for serialization safety) */
|
|
4
|
+
label: string;
|
|
5
|
+
/** Option value */
|
|
4
6
|
value: string;
|
|
7
|
+
/** Disable this option */
|
|
8
|
+
disabled?: boolean;
|
|
5
9
|
}
|
|
6
|
-
export interface SelectProps
|
|
7
|
-
options
|
|
10
|
+
export interface SelectProps {
|
|
11
|
+
/** Array of options to display */
|
|
12
|
+
options: SelectOption[];
|
|
13
|
+
/** Currently selected value */
|
|
14
|
+
value?: string;
|
|
15
|
+
/** Callback when value changes */
|
|
16
|
+
onChange?: (value: string) => void;
|
|
17
|
+
/** Placeholder text when no value selected */
|
|
18
|
+
placeholder?: string;
|
|
19
|
+
/** Visual variant */
|
|
8
20
|
variant?: 'base' | 'themed' | 'dashboard';
|
|
9
|
-
|
|
21
|
+
/** Size variant */
|
|
22
|
+
size?: 'sm' | 'md' | 'lg';
|
|
23
|
+
/** Disable the select */
|
|
24
|
+
disabled?: boolean;
|
|
25
|
+
/** Show loading state */
|
|
26
|
+
loading?: boolean;
|
|
27
|
+
/** Error state */
|
|
28
|
+
error?: boolean;
|
|
29
|
+
/** Additional class for the trigger button */
|
|
30
|
+
className?: string;
|
|
31
|
+
/** Additional class for the dropdown container */
|
|
32
|
+
dropdownClassName?: string;
|
|
33
|
+
/** ID for the select (for labels) */
|
|
34
|
+
id?: string;
|
|
35
|
+
/** Name attribute for form submission */
|
|
36
|
+
name?: string;
|
|
37
|
+
/** ARIA label */
|
|
38
|
+
'aria-label'?: string;
|
|
39
|
+
/** Full width mode */
|
|
40
|
+
fullWidth?: boolean;
|
|
41
|
+
/** Enable search/filter functionality */
|
|
42
|
+
searchable?: boolean;
|
|
43
|
+
/** Search placeholder */
|
|
44
|
+
searchPlaceholder?: string;
|
|
45
|
+
/** Max height of dropdown in pixels */
|
|
46
|
+
maxHeight?: number;
|
|
47
|
+
/** Z-index for dropdown (default: 1050) */
|
|
48
|
+
zIndex?: number;
|
|
10
49
|
}
|
|
11
50
|
/**
|
|
12
51
|
* Select Component (Design System)
|
|
13
52
|
*
|
|
14
|
-
*
|
|
15
|
-
*
|
|
16
|
-
*
|
|
17
|
-
*
|
|
53
|
+
* Custom dropdown select that renders consistently across all browsers.
|
|
54
|
+
* Unlike native <select>, this component renders the dropdown via JavaScript,
|
|
55
|
+
* ensuring proper theming support on Edge/Chrome Windows.
|
|
56
|
+
*
|
|
57
|
+
* @example
|
|
58
|
+
* ```tsx
|
|
59
|
+
* <Select
|
|
60
|
+
* options={[
|
|
61
|
+
* { label: 'Option 1', value: '1' },
|
|
62
|
+
* { label: 'Option 2', value: '2' },
|
|
63
|
+
* ]}
|
|
64
|
+
* value={selectedValue}
|
|
65
|
+
* onChange={setSelectedValue}
|
|
66
|
+
* placeholder="Select an option..."
|
|
67
|
+
* />
|
|
68
|
+
* ```
|
|
18
69
|
*/
|
|
19
|
-
export declare const Select: React.ForwardRefExoticComponent<SelectProps & React.RefAttributes<
|
|
70
|
+
export declare const Select: React.ForwardRefExoticComponent<SelectProps & React.RefAttributes<HTMLButtonElement>>;
|
|
20
71
|
//# sourceMappingURL=Select.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Select.d.ts","sourceRoot":"","sources":["../../../../../src/components/react/Select/Select.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Select.d.ts","sourceRoot":"","sources":["../../../../../src/components/react/Select/Select.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAwE,MAAM,OAAO,CAAC;AAI7F,MAAM,WAAW,YAAY;IAC3B,8DAA8D;IAC9D,KAAK,EAAE,MAAM,CAAC;IACd,mBAAmB;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,0BAA0B;IAC1B,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,MAAM,WAAW,WAAW;IAC1B,kCAAkC;IAClC,OAAO,EAAE,YAAY,EAAE,CAAC;IACxB,+BAA+B;IAC/B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,kCAAkC;IAClC,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACnC,8CAA8C;IAC9C,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,qBAAqB;IACrB,OAAO,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,WAAW,CAAC;IAC1C,mBAAmB;IACnB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B,yBAAyB;IACzB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,yBAAyB;IACzB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,kBAAkB;IAClB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,8CAA8C;IAC9C,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,kDAAkD;IAClD,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,qCAAqC;IACrC,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,yCAAyC;IACzC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,iBAAiB;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,sBAAsB;IACtB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,yCAAyC;IACzC,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,yBAAyB;IACzB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,uCAAuC;IACvC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,2CAA2C;IAC3C,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED;;;;;;;;;;;;;;;;;;;GAmBG;AACH,eAAO,MAAM,MAAM,uFAoXjB,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { GlassCard, type GlassCardProps } from './GlassCard';
|
|
2
2
|
export { Typography, BrandLogo, type TypographyProps, type BrandLogoProps } from './Typography';
|
|
3
3
|
export { Button, type ButtonProps } from './Button';
|
|
4
|
-
export { Select, type SelectProps } from './Select';
|
|
4
|
+
export { Select, type SelectProps, type SelectOption } from './Select';
|
|
5
5
|
export { ThemeToggle, type ThemeToggleProps } from './ThemeToggle';
|
|
6
6
|
export { DataTable, CellRenderers, ActionIcons, getTableConfig, type DataTableProps, type TableColumn, type TableAction } from './DataTable';
|
|
7
7
|
export { cn } from '../../utils/cn';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/react/index.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,SAAS,EAAE,KAAK,cAAc,EAAE,MAAM,aAAa,CAAC;AAC7D,OAAO,EACL,UAAU,EACV,SAAS,EACT,KAAK,eAAe,EACpB,KAAK,cAAc,EACpB,MAAM,cAAc,CAAC;AACtB,OAAO,EAAE,MAAM,EAAE,KAAK,WAAW,EAAE,MAAM,UAAU,CAAC;AACpD,OAAO,EAAE,MAAM,EAAE,KAAK,WAAW,EAAE,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/react/index.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,SAAS,EAAE,KAAK,cAAc,EAAE,MAAM,aAAa,CAAC;AAC7D,OAAO,EACL,UAAU,EACV,SAAS,EACT,KAAK,eAAe,EACpB,KAAK,cAAc,EACpB,MAAM,cAAc,CAAC;AACtB,OAAO,EAAE,MAAM,EAAE,KAAK,WAAW,EAAE,MAAM,UAAU,CAAC;AACpD,OAAO,EAAE,MAAM,EAAE,KAAK,WAAW,EAAE,KAAK,YAAY,EAAE,MAAM,UAAU,CAAC;AACvE,OAAO,EAAE,WAAW,EAAE,KAAK,gBAAgB,EAAE,MAAM,eAAe,CAAC;AACnE,OAAO,EACL,SAAS,EACT,aAAa,EACb,WAAW,EACX,cAAc,EACd,KAAK,cAAc,EACnB,KAAK,WAAW,EAChB,KAAK,WAAW,EACjB,MAAM,aAAa,CAAC;AAGrB,OAAO,EAAE,EAAE,EAAE,MAAM,gBAAgB,CAAC;AAGpC,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,eAAe,CAAC;AAC9B,cAAc,qBAAqB,CAAC;AACpC,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC"}
|
package/dist/react/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { GlassCard, type GlassCardProps } from './GlassCard';
|
|
2
2
|
export { Typography, BrandLogo, type TypographyProps, type BrandLogoProps } from './Typography';
|
|
3
3
|
export { Button, type ButtonProps } from './Button';
|
|
4
|
-
export { Select, type SelectProps } from './Select';
|
|
4
|
+
export { Select, type SelectProps, type SelectOption } from './Select';
|
|
5
5
|
export { ThemeToggle, type ThemeToggleProps } from './ThemeToggle';
|
|
6
6
|
export { DataTable, CellRenderers, ActionIcons, getTableConfig, type DataTableProps, type TableColumn, type TableAction } from './DataTable';
|
|
7
7
|
export { cn } from '../../utils/cn';
|