@helixui/library 1.1.2-next.3 → 1.1.2-next.5
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/custom-elements.json +85 -149
- package/dist/components/hx-patient-banner/hx-patient-banner.d.ts +8 -0
- package/dist/components/hx-patient-banner/hx-patient-banner.d.ts.map +1 -1
- package/dist/components/hx-patient-banner/hx-patient-banner.styles.d.ts.map +1 -1
- package/dist/components/hx-patient-banner/index.js +1 -1
- package/dist/components/hx-phi-field/hx-phi-field.d.ts +27 -2
- package/dist/components/hx-phi-field/hx-phi-field.d.ts.map +1 -1
- package/dist/components/hx-phi-field/hx-phi-field.styles.d.ts.map +1 -1
- package/dist/components/hx-phi-field/index.js +1 -1
- package/dist/components/hx-select/hx-select.d.ts +1 -0
- package/dist/components/hx-select/hx-select.d.ts.map +1 -1
- package/dist/components/hx-select/hx-select.styles.d.ts.map +1 -1
- package/dist/components/hx-select/index.js +1 -1
- package/dist/components/hx-status-indicator/hx-status-indicator.d.ts +17 -1
- package/dist/components/hx-status-indicator/hx-status-indicator.d.ts.map +1 -1
- package/dist/components/hx-status-indicator/hx-status-indicator.styles.d.ts.map +1 -1
- package/dist/components/hx-status-indicator/index.js +1 -1
- package/dist/css/helix-all.css +144 -48
- package/dist/css/helix-feedback.css +33 -4
- package/dist/css/helix-forms.css +68 -41
- package/dist/css/hx-patient-banner.css +31 -3
- package/dist/css/hx-phi-field.css +12 -0
- package/dist/css/hx-select.css +68 -41
- package/dist/css/hx-status-indicator.css +33 -4
- package/dist/css/index.css +1 -1
- package/dist/css/manifest.json +11 -5
- package/dist/index.js +4 -4
- package/dist/shared/{hx-patient-banner-BoJHddAL.js → hx-patient-banner-wk4qWmsH.js} +88 -47
- package/dist/shared/hx-patient-banner-wk4qWmsH.js.map +1 -0
- package/dist/shared/{hx-phi-field-EDWna59z.js → hx-phi-field-DX9z3nu0.js} +67 -33
- package/dist/shared/hx-phi-field-DX9z3nu0.js.map +1 -0
- package/dist/shared/{hx-select-4-nHL0vd.js → hx-select-BWzxWZs_.js} +82 -55
- package/dist/shared/hx-select-BWzxWZs_.js.map +1 -0
- package/dist/shared/{hx-status-indicator-4ClvA5mU.js → hx-status-indicator-Dl3Y34mc.js} +76 -35
- package/dist/shared/hx-status-indicator-Dl3Y34mc.js.map +1 -0
- package/package.json +2 -2
- package/dist/shared/hx-patient-banner-BoJHddAL.js.map +0 -1
- package/dist/shared/hx-phi-field-EDWna59z.js.map +0 -1
- package/dist/shared/hx-select-4-nHL0vd.js.map +0 -1
- package/dist/shared/hx-status-indicator-4ClvA5mU.js.map +0 -1
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
--_value-color: var(--hx-patient-banner-value-color, var(--hx-color-neutral-900, #111827));
|
|
18
18
|
--_value-font-size: var(--hx-patient-banner-value-font-size, var(--hx-font-size-sm, 0.875rem));
|
|
19
19
|
--_photo-size: var(--hx-patient-banner-photo-size, var(--hx-space-10, 2.5rem));
|
|
20
|
+
--_photo-bg: var(--hx-patient-banner-photo-bg, var(--hx-color-neutral-200, #e5e7eb));
|
|
20
21
|
}
|
|
21
22
|
|
|
22
23
|
* {
|
|
@@ -34,6 +35,7 @@
|
|
|
34
35
|
border-bottom: var(--hx-border-width-thin, 1px) solid var(--_border-color);
|
|
35
36
|
font-family: var(--_font-family);
|
|
36
37
|
width: 100%;
|
|
38
|
+
position: relative;
|
|
37
39
|
}
|
|
38
40
|
|
|
39
41
|
/* ─── Photo Area ─── */
|
|
@@ -42,12 +44,15 @@
|
|
|
42
44
|
flex-shrink: 0;
|
|
43
45
|
width: var(--_photo-size);
|
|
44
46
|
height: var(--_photo-size);
|
|
47
|
+
/* Minimum 44x44px touch target for interactive photo content. */
|
|
48
|
+
min-width: 44px;
|
|
49
|
+
min-height: 44px;
|
|
45
50
|
border-radius: var(--hx-border-radius-full, 9999px);
|
|
46
51
|
overflow: hidden;
|
|
47
52
|
display: flex;
|
|
48
53
|
align-items: center;
|
|
49
54
|
justify-content: center;
|
|
50
|
-
background-color: var(--
|
|
55
|
+
background-color: var(--_photo-bg);
|
|
51
56
|
}
|
|
52
57
|
|
|
53
58
|
/* ─── Fields Grid ─── */
|
|
@@ -93,9 +98,8 @@
|
|
|
93
98
|
:host([aria-invalid='true']) .banner {
|
|
94
99
|
border-bottom-color: var(--hx-color-error-400, #f87171);
|
|
95
100
|
background-color: var(--hx-color-error-50, #fef2f2);
|
|
96
|
-
/* Darken label color to maintain 4.5:1 contrast on error-50 background */
|
|
101
|
+
/* Darken label color to maintain 4.5:1 contrast on error-50 background. */
|
|
97
102
|
--_label-color: var(--hx-patient-banner-label-color, var(--hx-color-neutral-700, #374151));
|
|
98
|
-
position: relative;
|
|
99
103
|
}
|
|
100
104
|
|
|
101
105
|
:host([aria-invalid='true']) .banner::before {
|
|
@@ -109,3 +113,27 @@
|
|
|
109
113
|
background-color: var(--hx-color-error-500, #ef4444);
|
|
110
114
|
border-radius: 0;
|
|
111
115
|
}
|
|
116
|
+
|
|
117
|
+
/* ─── Visually-hidden violation live region ─── */
|
|
118
|
+
/* Announces identifier rule violations to screen readers without visible text. */
|
|
119
|
+
|
|
120
|
+
.violation-message {
|
|
121
|
+
position: absolute;
|
|
122
|
+
width: 1px;
|
|
123
|
+
height: 1px;
|
|
124
|
+
padding: 0;
|
|
125
|
+
margin: -1px;
|
|
126
|
+
overflow: hidden;
|
|
127
|
+
clip: rect(0, 0, 0, 0);
|
|
128
|
+
white-space: nowrap;
|
|
129
|
+
border-width: 0;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
/* ─── Motion reduction ─── */
|
|
133
|
+
|
|
134
|
+
@media (prefers-reduced-motion: reduce) {
|
|
135
|
+
* {
|
|
136
|
+
transition: none !important;
|
|
137
|
+
animation: none !important;
|
|
138
|
+
}
|
|
139
|
+
}
|
|
@@ -76,6 +76,18 @@
|
|
|
76
76
|
pointer-events: none;
|
|
77
77
|
}
|
|
78
78
|
|
|
79
|
+
/* ─── Disabled State ─── */
|
|
80
|
+
|
|
81
|
+
:host([disabled]) {
|
|
82
|
+
opacity: var(--hx-phi-field-disabled-opacity, var(--hx-opacity-50, 0.5));
|
|
83
|
+
pointer-events: none;
|
|
84
|
+
cursor: not-allowed;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.phi-field--disabled .phi-field__toggle {
|
|
88
|
+
cursor: not-allowed;
|
|
89
|
+
}
|
|
90
|
+
|
|
79
91
|
/* ─── Reduced Motion ─── */
|
|
80
92
|
|
|
81
93
|
@media (prefers-reduced-motion: reduce) {
|
package/dist/css/hx-select.css
CHANGED
|
@@ -1,6 +1,43 @@
|
|
|
1
1
|
/* hx-select — extracted from Shadow DOM styles */
|
|
2
|
-
:
|
|
2
|
+
/* ─── 3-tier token cascade: component → semantic → hardcoded fallback ─── */
|
|
3
|
+
:host {
|
|
3
4
|
display: block;
|
|
5
|
+
|
|
6
|
+
/* Background & foreground */
|
|
7
|
+
--_bg: var(--hx-select-bg, var(--hx-color-neutral-0, #ffffff));
|
|
8
|
+
--_color: var(--hx-select-color, var(--hx-color-neutral-800, #212529));
|
|
9
|
+
--_placeholder-color: var(--hx-select-placeholder-color, var(--hx-color-neutral-400, #adb5bd));
|
|
10
|
+
|
|
11
|
+
/* Label */
|
|
12
|
+
--_label-color: var(--hx-select-label-color, var(--hx-color-neutral-700, #343a40));
|
|
13
|
+
|
|
14
|
+
/* Border */
|
|
15
|
+
--_border-color: var(--hx-select-border-color, var(--hx-color-neutral-300, #ced4da));
|
|
16
|
+
--_border-radius: var(--hx-select-border-radius, var(--hx-border-radius-md, 0.375rem));
|
|
17
|
+
|
|
18
|
+
/* Focus ring */
|
|
19
|
+
--_focus-ring-color: var(
|
|
20
|
+
--hx-select-focus-ring-color,
|
|
21
|
+
var(--hx-focus-ring-color, var(--hx-color-primary-400, #60a5fa))
|
|
22
|
+
);
|
|
23
|
+
|
|
24
|
+
/* Error */
|
|
25
|
+
--_error-color: var(--hx-select-error-color, var(--hx-color-error-500, #dc3545));
|
|
26
|
+
|
|
27
|
+
/* Chevron */
|
|
28
|
+
--_chevron-color: var(--hx-select-chevron-color, var(--hx-color-neutral-500, #6c757d));
|
|
29
|
+
--_chevron-size: var(--hx-select-chevron-size, 0.5rem);
|
|
30
|
+
|
|
31
|
+
/* Listbox */
|
|
32
|
+
--_listbox-bg: var(--hx-select-listbox-bg, var(--hx-color-neutral-0, #ffffff));
|
|
33
|
+
--_option-hover-bg: var(--hx-select-option-hover-bg, var(--hx-color-primary-50, #eff6ff));
|
|
34
|
+
--_option-selected-bg: var(
|
|
35
|
+
--hx-select-option-selected-bg,
|
|
36
|
+
var(--hx-color-primary-100, #dbeafe)
|
|
37
|
+
);
|
|
38
|
+
|
|
39
|
+
/* Typography */
|
|
40
|
+
--_font-family: var(--hx-select-font-family, var(--hx-font-family-sans, sans-serif));
|
|
4
41
|
}
|
|
5
42
|
|
|
6
43
|
:host([disabled]) {
|
|
@@ -16,7 +53,7 @@
|
|
|
16
53
|
display: flex;
|
|
17
54
|
flex-direction: column;
|
|
18
55
|
gap: var(--hx-space-1, 0.25rem);
|
|
19
|
-
font-family: var(--
|
|
56
|
+
font-family: var(--_font-family);
|
|
20
57
|
position: relative;
|
|
21
58
|
}
|
|
22
59
|
|
|
@@ -26,7 +63,7 @@
|
|
|
26
63
|
gap: var(--hx-space-1, 0.25rem);
|
|
27
64
|
font-size: var(--hx-font-size-sm, 0.875rem);
|
|
28
65
|
font-weight: var(--hx-font-weight-medium, 500);
|
|
29
|
-
color: var(--
|
|
66
|
+
color: var(--_label-color);
|
|
30
67
|
line-height: var(--hx-line-height-normal, 1.5);
|
|
31
68
|
}
|
|
32
69
|
|
|
@@ -47,11 +84,10 @@
|
|
|
47
84
|
gap: var(--hx-space-2, 0.5rem);
|
|
48
85
|
width: 100%;
|
|
49
86
|
min-height: var(--hx-input-height-md, var(--hx-size-10, 2.5rem));
|
|
50
|
-
border: var(--hx-border-width-thin, 1px) solid
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
color: var(--hx-select-color, var(--hx-color-neutral-800, #212529));
|
|
87
|
+
border: var(--hx-border-width-thin, 1px) solid var(--_border-color);
|
|
88
|
+
border-radius: var(--_border-radius);
|
|
89
|
+
background-color: var(--_bg);
|
|
90
|
+
color: var(--_color);
|
|
55
91
|
font-family: inherit;
|
|
56
92
|
font-size: var(--hx-font-size-md, 1rem);
|
|
57
93
|
line-height: var(--hx-line-height-normal, 1.5);
|
|
@@ -66,18 +102,11 @@
|
|
|
66
102
|
|
|
67
103
|
.field__trigger:focus,
|
|
68
104
|
.field__trigger:focus-visible {
|
|
69
|
-
border-color: var(
|
|
70
|
-
--hx-select-focus-ring-color,
|
|
71
|
-
var(--hx-focus-ring-color, var(--hx-color-primary-400, #60a5fa))
|
|
72
|
-
);
|
|
105
|
+
border-color: var(--_focus-ring-color);
|
|
73
106
|
box-shadow: 0 0 0 var(--hx-focus-ring-width, 2px)
|
|
74
107
|
color-mix(
|
|
75
108
|
in srgb,
|
|
76
|
-
var(
|
|
77
|
-
--hx-select-focus-ring-color,
|
|
78
|
-
var(--hx-focus-ring-color, var(--hx-color-primary-400, #60a5fa))
|
|
79
|
-
)
|
|
80
|
-
calc(var(--hx-focus-ring-opacity, 0.25) * 100%),
|
|
109
|
+
var(--_focus-ring-color) calc(var(--hx-focus-ring-opacity, 0.25) * 100%),
|
|
81
110
|
transparent
|
|
82
111
|
);
|
|
83
112
|
}
|
|
@@ -107,15 +136,15 @@
|
|
|
107
136
|
}
|
|
108
137
|
|
|
109
138
|
.field__trigger--placeholder .field__trigger-value {
|
|
110
|
-
color: var(--
|
|
139
|
+
color: var(--_placeholder-color);
|
|
111
140
|
}
|
|
112
141
|
|
|
113
142
|
.field__chevron {
|
|
114
143
|
flex-shrink: 0;
|
|
115
|
-
width:
|
|
116
|
-
height:
|
|
144
|
+
width: calc(var(--_chevron-size) * 1.5);
|
|
145
|
+
height: var(--_chevron-size);
|
|
117
146
|
position: relative;
|
|
118
|
-
color: var(--
|
|
147
|
+
color: var(--_chevron-color);
|
|
119
148
|
pointer-events: none;
|
|
120
149
|
transition: transform var(--hx-transition-fast, 150ms ease);
|
|
121
150
|
}
|
|
@@ -124,11 +153,11 @@
|
|
|
124
153
|
content: '';
|
|
125
154
|
position: absolute;
|
|
126
155
|
top: 0;
|
|
127
|
-
left: 2px;
|
|
128
|
-
width:
|
|
129
|
-
height:
|
|
130
|
-
border-inline-end: 1.5px solid currentColor;
|
|
131
|
-
border-bottom: 1.5px solid currentColor;
|
|
156
|
+
left: var(--hx-space-px, 2px);
|
|
157
|
+
width: var(--_chevron-size);
|
|
158
|
+
height: var(--_chevron-size);
|
|
159
|
+
border-inline-end: var(--hx-border-width-thin, 1.5px) solid currentColor;
|
|
160
|
+
border-bottom: var(--hx-border-width-thin, 1.5px) solid currentColor;
|
|
132
161
|
transform: rotate(45deg);
|
|
133
162
|
}
|
|
134
163
|
|
|
@@ -137,17 +166,16 @@
|
|
|
137
166
|
}
|
|
138
167
|
|
|
139
168
|
.field--error .field__trigger {
|
|
140
|
-
border-color: var(--
|
|
169
|
+
border-color: var(--_error-color);
|
|
141
170
|
}
|
|
142
171
|
|
|
143
172
|
.field--error .field__trigger:focus,
|
|
144
173
|
.field--error .field__trigger:focus-visible {
|
|
145
|
-
border-color: var(--
|
|
174
|
+
border-color: var(--_error-color);
|
|
146
175
|
box-shadow: 0 0 0 var(--hx-focus-ring-width, 2px)
|
|
147
176
|
color-mix(
|
|
148
177
|
in srgb,
|
|
149
|
-
var(--
|
|
150
|
-
calc(var(--hx-focus-ring-opacity, 0.25) * 100%),
|
|
178
|
+
var(--_error-color) calc(var(--hx-focus-ring-opacity, 0.25) * 100%),
|
|
151
179
|
transparent
|
|
152
180
|
);
|
|
153
181
|
}
|
|
@@ -158,10 +186,9 @@
|
|
|
158
186
|
left: 0;
|
|
159
187
|
right: 0;
|
|
160
188
|
z-index: var(--hx-z-index-dropdown, 1000);
|
|
161
|
-
background-color: var(--
|
|
162
|
-
border: var(--hx-border-width-thin, 1px) solid
|
|
163
|
-
|
|
164
|
-
border-radius: var(--hx-select-border-radius, var(--hx-border-radius-md, 0.375rem));
|
|
189
|
+
background-color: var(--_listbox-bg);
|
|
190
|
+
border: var(--hx-border-width-thin, 1px) solid var(--_border-color);
|
|
191
|
+
border-radius: var(--_border-radius);
|
|
165
192
|
box-shadow: var(
|
|
166
193
|
--hx-select-listbox-shadow,
|
|
167
194
|
0 4px 16px var(--hx-overlay-neutral-12, rgba(13, 17, 23, 0.12))
|
|
@@ -188,7 +215,7 @@
|
|
|
188
215
|
gap: var(--hx-space-2, 0.5rem);
|
|
189
216
|
padding: var(--hx-space-2, 0.5rem) var(--hx-space-3, 0.75rem);
|
|
190
217
|
font-size: var(--hx-font-size-md, 1rem);
|
|
191
|
-
color: var(--
|
|
218
|
+
color: var(--_color);
|
|
192
219
|
cursor: pointer;
|
|
193
220
|
user-select: none;
|
|
194
221
|
-webkit-user-select: none;
|
|
@@ -196,23 +223,23 @@
|
|
|
196
223
|
}
|
|
197
224
|
|
|
198
225
|
.field__option:hover {
|
|
199
|
-
background-color: var(--
|
|
226
|
+
background-color: var(--_option-hover-bg);
|
|
200
227
|
}
|
|
201
228
|
|
|
202
229
|
.field__option--selected {
|
|
203
|
-
background-color: var(--
|
|
230
|
+
background-color: var(--_option-selected-bg);
|
|
204
231
|
font-weight: var(--hx-font-weight-medium, 500);
|
|
205
232
|
}
|
|
206
233
|
|
|
207
234
|
.field__option--focused {
|
|
208
|
-
background-color: var(--
|
|
235
|
+
background-color: var(--_option-hover-bg);
|
|
209
236
|
outline: var(--hx-focus-ring-width, 2px) solid
|
|
210
|
-
var(--
|
|
237
|
+
var(--_focus-ring-color, var(--hx-color-primary-500));
|
|
211
238
|
outline-offset: var(--hx-select-option-focus-ring-offset, -2px);
|
|
212
239
|
}
|
|
213
240
|
|
|
214
241
|
.field__option--focused.field__option--selected {
|
|
215
|
-
background-color: var(--
|
|
242
|
+
background-color: var(--_option-selected-bg);
|
|
216
243
|
}
|
|
217
244
|
|
|
218
245
|
.field__option--disabled {
|
|
@@ -231,7 +258,7 @@
|
|
|
231
258
|
.field__no-options {
|
|
232
259
|
padding: var(--hx-space-3, 0.75rem);
|
|
233
260
|
text-align: center;
|
|
234
|
-
color: var(--
|
|
261
|
+
color: var(--_placeholder-color);
|
|
235
262
|
font-size: var(--hx-font-size-sm, 0.875rem);
|
|
236
263
|
}
|
|
237
264
|
|
|
@@ -3,9 +3,12 @@
|
|
|
3
3
|
display: inline-flex;
|
|
4
4
|
align-items: center;
|
|
5
5
|
justify-content: center;
|
|
6
|
+
gap: var(--hx-space-2, 0.5rem);
|
|
6
7
|
position: relative;
|
|
7
8
|
flex-shrink: 0;
|
|
8
9
|
--_dot-color: var(--hx-status-indicator-color-default, var(--hx-color-neutral-300, #ced4da));
|
|
10
|
+
/* Default size (md) — always defined so .indicator never collapses to 0x0 */
|
|
11
|
+
--_indicator-size: var(--hx-status-indicator-size-md, var(--hx-space-3, 0.75rem));
|
|
9
12
|
}
|
|
10
13
|
|
|
11
14
|
.indicator {
|
|
@@ -60,18 +63,44 @@
|
|
|
60
63
|
}
|
|
61
64
|
}
|
|
62
65
|
|
|
66
|
+
/* ─── Visible label (part="label") ─── */
|
|
67
|
+
|
|
68
|
+
.indicator__label {
|
|
69
|
+
font-size: var(
|
|
70
|
+
--hx-status-indicator-label-font-size,
|
|
71
|
+
var(--hx-font-size-sm, var(--hx-text-sm, 0.875rem))
|
|
72
|
+
);
|
|
73
|
+
color: var(--hx-status-indicator-label-color, var(--hx-color-neutral-700, #374151));
|
|
74
|
+
line-height: 1;
|
|
75
|
+
white-space: nowrap;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
/* ─── aria-live announcement region (visually hidden) ─── */
|
|
79
|
+
|
|
80
|
+
.indicator__live-region {
|
|
81
|
+
position: absolute;
|
|
82
|
+
width: 1px;
|
|
83
|
+
height: 1px;
|
|
84
|
+
padding: 0;
|
|
85
|
+
margin: -1px;
|
|
86
|
+
overflow: hidden;
|
|
87
|
+
clip: rect(0, 0, 0, 0);
|
|
88
|
+
white-space: nowrap;
|
|
89
|
+
border: 0;
|
|
90
|
+
}
|
|
91
|
+
|
|
63
92
|
/* ─── Size Variants ─── */
|
|
64
93
|
|
|
65
|
-
:host([size='sm']) {
|
|
94
|
+
:host([hx-size='sm']) {
|
|
66
95
|
--_indicator-size: var(--hx-status-indicator-size-sm, var(--hx-space-2, 0.5rem));
|
|
67
96
|
}
|
|
68
97
|
|
|
69
|
-
:host([size='md']) {
|
|
98
|
+
:host([hx-size='md']) {
|
|
70
99
|
--_indicator-size: var(--hx-status-indicator-size-md, var(--hx-space-3, 0.75rem));
|
|
71
100
|
}
|
|
72
101
|
|
|
73
|
-
:host([size='lg']) {
|
|
74
|
-
--_indicator-size: var(--hx-status-indicator-size-lg, var(--hx-
|
|
102
|
+
:host([hx-size='lg']) {
|
|
103
|
+
--_indicator-size: var(--hx-status-indicator-size-lg, var(--hx-space-4, 1rem));
|
|
75
104
|
}
|
|
76
105
|
|
|
77
106
|
/* ─── Status Colors ─── */
|
package/dist/css/index.css
CHANGED
package/dist/css/manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generated": "2026-03-
|
|
2
|
+
"generated": "2026-03-26T23:13:02.126Z",
|
|
3
3
|
"components": [
|
|
4
4
|
{
|
|
5
5
|
"name": "hx-accordion",
|
|
@@ -1435,6 +1435,7 @@
|
|
|
1435
1435
|
"--hx-patient-banner-gap",
|
|
1436
1436
|
"--hx-patient-banner-label-color",
|
|
1437
1437
|
"--hx-patient-banner-label-font-size",
|
|
1438
|
+
"--hx-patient-banner-photo-bg",
|
|
1438
1439
|
"--hx-patient-banner-photo-size",
|
|
1439
1440
|
"--hx-patient-banner-value-color",
|
|
1440
1441
|
"--hx-patient-banner-value-font-size",
|
|
@@ -1458,6 +1459,7 @@
|
|
|
1458
1459
|
"--hx-font-family-mono",
|
|
1459
1460
|
"--hx-opacity-50",
|
|
1460
1461
|
"--hx-opacity-90",
|
|
1462
|
+
"--hx-phi-field-disabled-opacity",
|
|
1461
1463
|
"--hx-phi-field-font-family",
|
|
1462
1464
|
"--hx-phi-field-masked-color",
|
|
1463
1465
|
"--hx-phi-field-toggle-color",
|
|
@@ -1653,16 +1655,15 @@
|
|
|
1653
1655
|
"--hx-select-border-color",
|
|
1654
1656
|
"--hx-select-border-radius",
|
|
1655
1657
|
"--hx-select-chevron-color",
|
|
1658
|
+
"--hx-select-chevron-size",
|
|
1656
1659
|
"--hx-select-color",
|
|
1657
1660
|
"--hx-select-error-color",
|
|
1658
|
-
"--hx-select-focus-ring-color",
|
|
1659
1661
|
"--hx-select-font-family",
|
|
1660
1662
|
"--hx-select-label-color",
|
|
1661
1663
|
"--hx-select-listbox-bg",
|
|
1662
1664
|
"--hx-select-listbox-max-height",
|
|
1663
1665
|
"--hx-select-option-focus-ring-offset",
|
|
1664
1666
|
"--hx-select-option-hover-bg",
|
|
1665
|
-
"--hx-select-option-selected-bg",
|
|
1666
1667
|
"--hx-select-placeholder-color",
|
|
1667
1668
|
"--hx-size-10",
|
|
1668
1669
|
"--hx-size-12",
|
|
@@ -1671,6 +1672,7 @@
|
|
|
1671
1672
|
"--hx-space-2",
|
|
1672
1673
|
"--hx-space-3",
|
|
1673
1674
|
"--hx-space-4",
|
|
1675
|
+
"--hx-space-px",
|
|
1674
1676
|
"--hx-transition-fast",
|
|
1675
1677
|
"--hx-z-index-dropdown"
|
|
1676
1678
|
]
|
|
@@ -1940,11 +1942,13 @@
|
|
|
1940
1942
|
"--hx-color-error-500",
|
|
1941
1943
|
"--hx-color-neutral-300",
|
|
1942
1944
|
"--hx-color-neutral-400",
|
|
1945
|
+
"--hx-color-neutral-700",
|
|
1943
1946
|
"--hx-color-success-500",
|
|
1944
1947
|
"--hx-color-warning-500",
|
|
1945
|
-
"--hx-size-
|
|
1948
|
+
"--hx-font-size-sm",
|
|
1946
1949
|
"--hx-space-2",
|
|
1947
1950
|
"--hx-space-3",
|
|
1951
|
+
"--hx-space-4",
|
|
1948
1952
|
"--hx-state-focus-opacity",
|
|
1949
1953
|
"--hx-status-indicator-color-away",
|
|
1950
1954
|
"--hx-status-indicator-color-busy",
|
|
@@ -1952,12 +1956,14 @@
|
|
|
1952
1956
|
"--hx-status-indicator-color-offline",
|
|
1953
1957
|
"--hx-status-indicator-color-online",
|
|
1954
1958
|
"--hx-status-indicator-color-unknown",
|
|
1959
|
+
"--hx-status-indicator-label-color",
|
|
1955
1960
|
"--hx-status-indicator-pulse-color",
|
|
1956
1961
|
"--hx-status-indicator-pulse-duration",
|
|
1957
1962
|
"--hx-status-indicator-pulse-scale",
|
|
1958
1963
|
"--hx-status-indicator-size-lg",
|
|
1959
1964
|
"--hx-status-indicator-size-md",
|
|
1960
|
-
"--hx-status-indicator-size-sm"
|
|
1965
|
+
"--hx-status-indicator-size-sm",
|
|
1966
|
+
"--hx-text-sm"
|
|
1961
1967
|
]
|
|
1962
1968
|
},
|
|
1963
1969
|
{
|
package/dist/index.js
CHANGED
|
@@ -42,8 +42,8 @@ import { H as qe } from "./shared/hx-nav-D377Ngz4.js";
|
|
|
42
42
|
import { H as Je } from "./shared/hx-number-input-BPgrlMLN.js";
|
|
43
43
|
import { H as Qe } from "./shared/hx-overflow-menu-Bz02LPPk.js";
|
|
44
44
|
import { H as eo } from "./shared/hx-pagination-DYhYPqDn.js";
|
|
45
|
-
import { H as to } from "./shared/hx-patient-banner-
|
|
46
|
-
import { H as ao } from "./shared/hx-phi-field-
|
|
45
|
+
import { H as to } from "./shared/hx-patient-banner-wk4qWmsH.js";
|
|
46
|
+
import { H as ao } from "./shared/hx-phi-field-DX9z3nu0.js";
|
|
47
47
|
import { H as so } from "./shared/hx-popover-D6kYQkt3.js";
|
|
48
48
|
import { H as Ho } from "./shared/hx-popup-RQb6HUXc.js";
|
|
49
49
|
import { H as po } from "./shared/hx-progress-bar-ByEmxq1V.js";
|
|
@@ -51,7 +51,7 @@ import { H as mo } from "./shared/hx-progress-ring-CtVnNRQx.js";
|
|
|
51
51
|
import { H as co } from "./shared/hx-prose-Ml_L2zje.js";
|
|
52
52
|
import { H as uo, a as bo } from "./shared/hx-radio-jgeW92SV.js";
|
|
53
53
|
import { H as So } from "./shared/hx-rating-g_iy-DW_.js";
|
|
54
|
-
import { H as go } from "./shared/hx-select-
|
|
54
|
+
import { H as go } from "./shared/hx-select-BWzxWZs_.js";
|
|
55
55
|
import { H as vo, a as _o } from "./shared/hx-nav-item-CuGiJPAf.js";
|
|
56
56
|
import { H as Do } from "./shared/hx-skeleton-BHvALyd7.js";
|
|
57
57
|
import { H as Bo } from "./shared/hx-slider-7Q-e0_pc.js";
|
|
@@ -60,7 +60,7 @@ import { H as Ao } from "./shared/hx-split-button-BA7P_ly5.js";
|
|
|
60
60
|
import { H as Lo } from "./shared/hx-split-panel-Bss54UN8.js";
|
|
61
61
|
import { H as No } from "./shared/hx-stack-BStY1RmV.js";
|
|
62
62
|
import { H as Go } from "./shared/hx-stat-CmkCUI8v.js";
|
|
63
|
-
import { H as $o } from "./shared/hx-status-indicator-
|
|
63
|
+
import { H as $o } from "./shared/hx-status-indicator-Dl3Y34mc.js";
|
|
64
64
|
import { H as Oo, a as Wo } from "./shared/hx-step-DlANlr2A.js";
|
|
65
65
|
import { H as Yo, a as jo } from "./shared/hx-structured-list-Db9rwLI_.js";
|
|
66
66
|
import { H as zo } from "./shared/hx-style-scope-BroUu83L.js";
|