@alfadocs/ui-kit 0.97.2 → 0.98.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/dist/_chunks/{document-preview-DXl9migE.js → document-preview-DXsCEj4U.js} +2 -2
- package/dist/_chunks/{muscle-scheme-CFBE2dme.js → muscle-scheme-kgCX5qfO.js} +2 -2
- package/dist/_chunks/{notes-panel-BLjlYBt-.js → notes-panel-BKwd-bOV.js} +2 -2
- package/dist/_chunks/{patient-summary-card-vn1H4xWj.js → patient-summary-card-C-iVDo53.js} +4 -2
- package/dist/_chunks/{rich-text-editor-RRkBN_WB.js → rich-text-editor-DHpV2q6d.js} +4 -4
- package/dist/_chunks/{sign-document-DI561d1C.js → sign-document-cH9CboWB.js} +2 -2
- package/dist/_chunks/{signature-capture-DN52VNKL.js → signature-capture-D6ut9_IR.js} +2 -2
- package/dist/_chunks/{tabs-CVTukWRD.js → tabs-CBb2AidH.js} +17 -17
- package/dist/_chunks/{warning-stack-CAHQ0xxS.js → warning-stack-DKeAfj5M.js} +3 -3
- package/dist/agent-catalog.json +1 -1
- package/dist/components/document-preview/index.js +1 -1
- package/dist/components/muscle-scheme/index.js +1 -1
- package/dist/components/notes-panel/index.js +1 -1
- package/dist/components/patient-summary-card/index.js +1 -1
- package/dist/components/rich-text-editor/index.js +1 -1
- package/dist/components/sign-document/index.js +1 -1
- package/dist/components/signature-capture/index.js +1 -1
- package/dist/components/skeleton-scheme/index.js +1 -1
- package/dist/components/tabs/index.js +1 -1
- package/dist/components/warning-stack/index.js +1 -1
- package/dist/host-compat.css +572 -0
- package/dist/index.js +9 -9
- package/dist/tokens.css +1 -1
- package/package.json +10 -3
|
@@ -0,0 +1,572 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @alfadocs/ui-kit — host-compat stylesheet. GENERATED — DO NOT EDIT.
|
|
3
|
+
*
|
|
4
|
+
* Regenerate with `npm run build:host-compat`; `npm run check:host-compat`
|
|
5
|
+
* fails the build if this file drifts from dist/tokens.css. Source:
|
|
6
|
+
* scripts/build-host-compat.mjs. Docs: Storybook →
|
|
7
|
+
* "29. Host Compatibility — Root Font Size".
|
|
8
|
+
*
|
|
9
|
+
* WHAT THIS IS
|
|
10
|
+
* Every dimension the kit ships is rem-based and designed against the
|
|
11
|
+
* browser default root font size of 16px. A host page that overrides
|
|
12
|
+
* `html { font-size }` rescales the whole design system — the AlfaDocs
|
|
13
|
+
* platform's legacy Material bundle sets 10px, so the kit renders at
|
|
14
|
+
* 62.5%. This sheet re-declares every rem-valued kit dimension in
|
|
15
|
+
* absolute px so the rem is never evaluated against the host root.
|
|
16
|
+
*
|
|
17
|
+
* LOAD IT ONLY IF THE HOST ROOT IS NOT 16px. Check first:
|
|
18
|
+
* getComputedStyle(document.documentElement).fontSize
|
|
19
|
+
* On a healthy 16px host this sheet is a pure regression — it freezes
|
|
20
|
+
* kit dimensions against the user's browser text-size preference.
|
|
21
|
+
*
|
|
22
|
+
* LOAD ORDER: after `@alfadocs/ui-kit/tokens`. The token block below is
|
|
23
|
+
* unlayered and so wins regardless of order, but the layered block is
|
|
24
|
+
* ranked by source order within its layer and must come second.
|
|
25
|
+
*
|
|
26
|
+
* NOT COVERED (by construction, not by omission):
|
|
27
|
+
* - `@media` preludes — rem in a media query resolves against the
|
|
28
|
+
* browser's INITIAL font size, not the document root, so the kit's
|
|
29
|
+
* breakpoints are already correct on a non-16px host. Left alone.
|
|
30
|
+
* - `@container` preludes — container-query rem DOES follow the root,
|
|
31
|
+
* but a prelude is not a declaration and no overlay can reach it.
|
|
32
|
+
* Fixed at source: the kit authors container thresholds in px.
|
|
33
|
+
* - rem written by the CONSUMER in its own CSS or in a host-authored
|
|
34
|
+
* arbitrary utility class. Use px or a kit token on a non-16px host.
|
|
35
|
+
*/
|
|
36
|
+
|
|
37
|
+
/* The kit's layer order, repeated so this file is still correct if a
|
|
38
|
+
consumer loads it before the tokens sheet. A repeat of an already
|
|
39
|
+
established order is a no-op. */
|
|
40
|
+
@layer properties, theme, base, components, utilities, ui-kit-tokens, ui-kit-components;
|
|
41
|
+
|
|
42
|
+
/* ───────────────────────────────────────────────────────────────────────
|
|
43
|
+
SECTION A — design tokens (custom properties). UNLAYERED.
|
|
44
|
+
93 declarations across 72 token names and 23 selectors.
|
|
45
|
+
|
|
46
|
+
Unlayered normal declarations outrank every layered one regardless of
|
|
47
|
+
source order and specificity, so this block beats the kit's own
|
|
48
|
+
`@layer ui-kit-tokens` and `@layer theme` wherever it is loaded.
|
|
49
|
+
|
|
50
|
+
Each selector is mirrored verbatim from dist/tokens.css. A flat
|
|
51
|
+
`:root` block would not reach the theme-scoped overrides
|
|
52
|
+
(`.theme-accessible` ships deliberately larger QR sizes) and could
|
|
53
|
+
not reach the element-scoped arbitrary-property `ds:` utilities at all —
|
|
54
|
+
a declaration set on the element itself always beats an inherited
|
|
55
|
+
value from `:root`, whatever the specificity.
|
|
56
|
+
─────────────────────────────────────────────────────────────────── */
|
|
57
|
+
:root,:host {
|
|
58
|
+
--ds-spacing:4px;
|
|
59
|
+
--ds-container-xs:320px;
|
|
60
|
+
--ds-container-sm:384px;
|
|
61
|
+
--ds-container-md:448px;
|
|
62
|
+
--ds-container-lg:512px;
|
|
63
|
+
--ds-container-xl:576px;
|
|
64
|
+
--ds-container-2xl:672px;
|
|
65
|
+
--ds-container-3xl:768px;
|
|
66
|
+
--ds-container-4xl:896px;
|
|
67
|
+
--ds-container-5xl:1024px;
|
|
68
|
+
--ds-container-6xl:1152px;
|
|
69
|
+
--ds-container-7xl:1280px;
|
|
70
|
+
--ds-text-xs:12px;
|
|
71
|
+
--ds-text-sm:14px;
|
|
72
|
+
--ds-text-base:16px;
|
|
73
|
+
--ds-text-lg:18px;
|
|
74
|
+
--ds-radius-sm:4px;
|
|
75
|
+
--ds-radius-md:6px;
|
|
76
|
+
--ds-radius-2xl:16px;
|
|
77
|
+
}
|
|
78
|
+
.ds\:\[--carousel-fade-distance\:5rem\] {
|
|
79
|
+
--carousel-fade-distance:80px;
|
|
80
|
+
}
|
|
81
|
+
.ds\:\[--carousel-item-inline-size\:14rem\] {
|
|
82
|
+
--carousel-item-inline-size:224px;
|
|
83
|
+
}
|
|
84
|
+
.ds\:\[--carousel-item-inline-size\:20rem\] {
|
|
85
|
+
--carousel-item-inline-size:320px;
|
|
86
|
+
}
|
|
87
|
+
.ds\:\[--carousel-item-inline-size\:28rem\] {
|
|
88
|
+
--carousel-item-inline-size:448px;
|
|
89
|
+
}
|
|
90
|
+
.ds\:\[--map-block-size\:14rem\] {
|
|
91
|
+
--map-block-size:224px;
|
|
92
|
+
}
|
|
93
|
+
.ds\:\[--map-block-size\:20rem\] {
|
|
94
|
+
--map-block-size:320px;
|
|
95
|
+
}
|
|
96
|
+
.ds\:\[--map-block-size\:28rem\] {
|
|
97
|
+
--map-block-size:448px;
|
|
98
|
+
}
|
|
99
|
+
.ds\:\[--marker-box\:0\.75rem\] {
|
|
100
|
+
--marker-box:12px;
|
|
101
|
+
}
|
|
102
|
+
.ds\:\[--marker-box\:1\.25rem\] {
|
|
103
|
+
--marker-box:20px;
|
|
104
|
+
}
|
|
105
|
+
.ds\:\[--marker-box\:1rem\] {
|
|
106
|
+
--marker-box:16px;
|
|
107
|
+
}
|
|
108
|
+
.ds\:\[--qr-edge\:var\(--qr-code-size-lg\,16rem\)\] {
|
|
109
|
+
--qr-edge:var(--qr-code-size-lg,256px);
|
|
110
|
+
}
|
|
111
|
+
.ds\:\[--qr-edge\:var\(--qr-code-size-md\,12rem\)\] {
|
|
112
|
+
--qr-edge:var(--qr-code-size-md,192px);
|
|
113
|
+
}
|
|
114
|
+
.ds\:\[--qr-edge\:var\(--qr-code-size-sm\,8rem\)\] {
|
|
115
|
+
--qr-edge:var(--qr-code-size-sm,128px);
|
|
116
|
+
}
|
|
117
|
+
.ds\:\[--tool-rail-panel-inline-size\:26rem\] {
|
|
118
|
+
--tool-rail-panel-inline-size:416px;
|
|
119
|
+
}
|
|
120
|
+
:root,.theme-light {
|
|
121
|
+
--spacing:4px;
|
|
122
|
+
--spacing-2xs:2px;
|
|
123
|
+
--spacing-xs:4px;
|
|
124
|
+
--spacing-sm:8px;
|
|
125
|
+
--spacing-md:16px;
|
|
126
|
+
--spacing-lg:24px;
|
|
127
|
+
--spacing-xl:32px;
|
|
128
|
+
--spacing-2xl:48px;
|
|
129
|
+
--skeleton-label-h:16px;
|
|
130
|
+
--skeleton-label-w:80px;
|
|
131
|
+
--skeleton-value-h:36px;
|
|
132
|
+
--skeleton-value-w:128px;
|
|
133
|
+
--avatar-size-2xl:128px;
|
|
134
|
+
--avatar-size-3xl:192px;
|
|
135
|
+
--avatar-text-size-2xl:48px;
|
|
136
|
+
--avatar-text-size-3xl:64px;
|
|
137
|
+
--row-height-compact:32px;
|
|
138
|
+
--row-height-expanded:64px;
|
|
139
|
+
--header-height-expanded:56px;
|
|
140
|
+
--form-label-inline-size:160px;
|
|
141
|
+
--font-size-2xs:10px;
|
|
142
|
+
--font-size-xs:12px;
|
|
143
|
+
--font-size-sm:14px;
|
|
144
|
+
--font-size-base:16px;
|
|
145
|
+
--font-size-lg:18px;
|
|
146
|
+
--font-size-xl:20px;
|
|
147
|
+
--font-size-2xl:24px;
|
|
148
|
+
--font-size-3xl:30px;
|
|
149
|
+
--font-size-4xl:36px;
|
|
150
|
+
--font-size-5xl:48px;
|
|
151
|
+
--type-title-hero-size:clamp(36px, 4vw, 56px);
|
|
152
|
+
--badge-truncate-max-width:192px;
|
|
153
|
+
--dialog-width-sm:320px;
|
|
154
|
+
--dialog-width-md:480px;
|
|
155
|
+
--dialog-width-lg:640px;
|
|
156
|
+
--dialog-width-xl:576px;
|
|
157
|
+
--header-workspace-max-inline-size:192px;
|
|
158
|
+
--arrow-size:8px;
|
|
159
|
+
--rich-text-editor-min-block-size:160px;
|
|
160
|
+
--rich-text-editor-min-inline-size:96px;
|
|
161
|
+
--qr-code-size-sm:128px;
|
|
162
|
+
--qr-code-size-md:192px;
|
|
163
|
+
--qr-code-size-lg:256px;
|
|
164
|
+
}
|
|
165
|
+
.theme-dark {
|
|
166
|
+
--qr-code-size-sm:128px;
|
|
167
|
+
--qr-code-size-md:192px;
|
|
168
|
+
--qr-code-size-lg:256px;
|
|
169
|
+
}
|
|
170
|
+
.theme-accessible {
|
|
171
|
+
--qr-code-size-sm:144px;
|
|
172
|
+
--qr-code-size-md:208px;
|
|
173
|
+
--qr-code-size-lg:288px;
|
|
174
|
+
--type-title-hero-size:clamp(40px, 4.5vw, 64px);
|
|
175
|
+
}
|
|
176
|
+
.theme-dark.theme-accessible {
|
|
177
|
+
--qr-code-size-sm:144px;
|
|
178
|
+
--qr-code-size-md:208px;
|
|
179
|
+
--qr-code-size-lg:288px;
|
|
180
|
+
}
|
|
181
|
+
.ag-theme-alfadocs {
|
|
182
|
+
--ag-menu-min-width:224px;
|
|
183
|
+
--ag-tab-min-width:288px;
|
|
184
|
+
--ag-side-bar-panel-width:240px;
|
|
185
|
+
--ag-chart-menu-panel-width:256px;
|
|
186
|
+
}
|
|
187
|
+
.redactor-theme-alfadocs[data-min-height=sm] {
|
|
188
|
+
--rich-text-editor-min-block-size:128px;
|
|
189
|
+
}
|
|
190
|
+
.redactor-theme-alfadocs[data-min-height=md] {
|
|
191
|
+
--rich-text-editor-min-block-size:256px;
|
|
192
|
+
}
|
|
193
|
+
.redactor-theme-alfadocs[data-min-height=lg] {
|
|
194
|
+
--rich-text-editor-min-block-size:384px;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
/* ───────────────────────────────────────────────────────────────────────
|
|
198
|
+
SECTION B — non-token declarations. ORIGINAL LAYER PRESERVED.
|
|
199
|
+
121 declarations across 117 rules.
|
|
200
|
+
|
|
201
|
+
Kit-authored arbitrary-value utilities (`ds:w-[20rem]`) and the
|
|
202
|
+
vendored AG Grid rules. These set real properties on real elements,
|
|
203
|
+
so their layer rank is deliberate — `@layer ui-kit-components`
|
|
204
|
+
intentionally outranks `@layer utilities`, and host legacy CSS
|
|
205
|
+
intentionally outranks both. Re-emitting each rule in its ORIGINAL
|
|
206
|
+
layer keeps every one of those relationships intact and wins on
|
|
207
|
+
source order alone; hoisting them unlayered would invert them.
|
|
208
|
+
|
|
209
|
+
Consequence: this block only works if the sheet is loaded AFTER
|
|
210
|
+
`@alfadocs/ui-kit/tokens`.
|
|
211
|
+
─────────────────────────────────────────────────────────────────── */
|
|
212
|
+
@layer utilities {
|
|
213
|
+
.ds\:-inset-\[calc\(\(var\(--min-target-size\)-1\.5rem\)\/2\)\] {
|
|
214
|
+
inset:calc(calc((var(--min-target-size) - 24px) / 2) * -1);
|
|
215
|
+
}
|
|
216
|
+
.ds\:-inset-\[calc\(\(var\(--min-target-size\)-1\.25rem\)\/2\)\] {
|
|
217
|
+
inset:calc(calc((var(--min-target-size) - 20px) / 2) * -1);
|
|
218
|
+
}
|
|
219
|
+
.ds\:-inset-\[calc\(\(var\(--min-target-size\)-1rem\)\/2\)\] {
|
|
220
|
+
inset:calc(calc((var(--min-target-size) - 16px) / 2) * -1);
|
|
221
|
+
}
|
|
222
|
+
.ds\:mt-\[calc\(\(var\(--type-label-size\)\*var\(--type-label-line-height\)-0\.875rem\)\/2\)\] {
|
|
223
|
+
margin-top:calc((var(--type-label-size) * var(--type-label-line-height) - 14px) / 2);
|
|
224
|
+
}
|
|
225
|
+
.ds\:mt-\[calc\(\(var\(--type-label-size\)\*var\(--type-label-line-height\)-1\.25rem\)\/2\)\] {
|
|
226
|
+
margin-top:calc((var(--type-label-size) * var(--type-label-line-height) - 20px) / 2);
|
|
227
|
+
}
|
|
228
|
+
.ds\:mt-\[calc\(\(var\(--type-label-size\)\*var\(--type-label-line-height\)-1rem\)\/2\)\] {
|
|
229
|
+
margin-top:calc((var(--type-label-size) * var(--type-label-line-height) - 16px) / 2);
|
|
230
|
+
}
|
|
231
|
+
.ds\:size-\[1\.5rem\] {
|
|
232
|
+
width:24px;
|
|
233
|
+
height:24px;
|
|
234
|
+
}
|
|
235
|
+
.ds\:size-\[1\.125rem\] {
|
|
236
|
+
width:18px;
|
|
237
|
+
height:18px;
|
|
238
|
+
}
|
|
239
|
+
.ds\:size-\[4\.5rem\] {
|
|
240
|
+
width:72px;
|
|
241
|
+
height:72px;
|
|
242
|
+
}
|
|
243
|
+
.ds\:size-\[7\.5rem\] {
|
|
244
|
+
width:120px;
|
|
245
|
+
height:120px;
|
|
246
|
+
}
|
|
247
|
+
.ds\:\!h-\[9\.25rem\] {
|
|
248
|
+
height:148px!important;
|
|
249
|
+
}
|
|
250
|
+
.ds\:\!h-\[11\.75rem\] {
|
|
251
|
+
height:188px!important;
|
|
252
|
+
}
|
|
253
|
+
.ds\:h-\[20rem\] {
|
|
254
|
+
height:320px;
|
|
255
|
+
}
|
|
256
|
+
.ds\:h-\[28rem\] {
|
|
257
|
+
height:448px;
|
|
258
|
+
}
|
|
259
|
+
.ds\:h-\[40rem\] {
|
|
260
|
+
height:640px;
|
|
261
|
+
}
|
|
262
|
+
.ds\:h-\[44rem\] {
|
|
263
|
+
height:704px;
|
|
264
|
+
}
|
|
265
|
+
.ds\:h-\[calc\(100dvh-6rem\)\] {
|
|
266
|
+
height:calc(100dvh - 96px);
|
|
267
|
+
}
|
|
268
|
+
.ds\:h-\[clamp\(24rem\,60vh\,42rem\)\] {
|
|
269
|
+
height:clamp(384px,60vh,672px);
|
|
270
|
+
}
|
|
271
|
+
.ds\:max-h-\[18rem\] {
|
|
272
|
+
max-height:288px;
|
|
273
|
+
}
|
|
274
|
+
.ds\:max-h-\[20rem\] {
|
|
275
|
+
max-height:320px;
|
|
276
|
+
}
|
|
277
|
+
.ds\:max-h-\[32rem\] {
|
|
278
|
+
max-height:512px;
|
|
279
|
+
}
|
|
280
|
+
.ds\:max-h-\[min\(24rem\,var\(--radix-popover-content-available-height\)\)\] {
|
|
281
|
+
max-height:min(384px,var(--radix-popover-content-available-height));
|
|
282
|
+
}
|
|
283
|
+
.ds\:min-h-\[3rem\] {
|
|
284
|
+
min-height:48px;
|
|
285
|
+
}
|
|
286
|
+
.ds\:min-h-\[20rem\] {
|
|
287
|
+
min-height:320px;
|
|
288
|
+
}
|
|
289
|
+
.ds\:min-h-\[24rem\] {
|
|
290
|
+
min-height:384px;
|
|
291
|
+
}
|
|
292
|
+
.ds\:min-h-\[30rem\] {
|
|
293
|
+
min-height:480px;
|
|
294
|
+
}
|
|
295
|
+
.ds\:w-\[11rem\] {
|
|
296
|
+
width:176px;
|
|
297
|
+
}
|
|
298
|
+
.ds\:w-\[12rem\] {
|
|
299
|
+
width:192px;
|
|
300
|
+
}
|
|
301
|
+
.ds\:w-\[13rem\] {
|
|
302
|
+
width:208px;
|
|
303
|
+
}
|
|
304
|
+
.ds\:w-\[16rem\] {
|
|
305
|
+
width:256px;
|
|
306
|
+
}
|
|
307
|
+
.ds\:w-\[18rem\] {
|
|
308
|
+
width:288px;
|
|
309
|
+
}
|
|
310
|
+
.ds\:w-\[20rem\] {
|
|
311
|
+
width:320px;
|
|
312
|
+
}
|
|
313
|
+
.ds\:w-\[22rem\] {
|
|
314
|
+
width:352px;
|
|
315
|
+
}
|
|
316
|
+
.ds\:w-\[24rem\] {
|
|
317
|
+
width:384px;
|
|
318
|
+
}
|
|
319
|
+
.ds\:w-\[26rem\] {
|
|
320
|
+
width:416px;
|
|
321
|
+
}
|
|
322
|
+
.ds\:w-\[28rem\] {
|
|
323
|
+
width:448px;
|
|
324
|
+
}
|
|
325
|
+
.ds\:w-\[32rem\] {
|
|
326
|
+
width:512px;
|
|
327
|
+
}
|
|
328
|
+
.ds\:w-\[34rem\] {
|
|
329
|
+
width:544px;
|
|
330
|
+
}
|
|
331
|
+
.ds\:w-\[36rem\] {
|
|
332
|
+
width:576px;
|
|
333
|
+
}
|
|
334
|
+
.ds\:w-\[40rem\] {
|
|
335
|
+
width:640px;
|
|
336
|
+
}
|
|
337
|
+
.ds\:w-\[42rem\] {
|
|
338
|
+
width:672px;
|
|
339
|
+
}
|
|
340
|
+
.ds\:w-\[44rem\] {
|
|
341
|
+
width:704px;
|
|
342
|
+
}
|
|
343
|
+
.ds\:w-\[60rem\] {
|
|
344
|
+
width:960px;
|
|
345
|
+
}
|
|
346
|
+
.ds\:w-\[64rem\] {
|
|
347
|
+
width:1024px;
|
|
348
|
+
}
|
|
349
|
+
.ds\:w-\[72rem\] {
|
|
350
|
+
width:1152px;
|
|
351
|
+
}
|
|
352
|
+
.ds\:w-\[80rem\] {
|
|
353
|
+
width:1280px;
|
|
354
|
+
}
|
|
355
|
+
.ds\:w-\[calc\(100vw-2rem\)\] {
|
|
356
|
+
width:calc(100vw - 32px);
|
|
357
|
+
}
|
|
358
|
+
.ds\:w-\[min\(22rem\,calc\(100vw-2\*var\(--spacing-md\)\)\)\] {
|
|
359
|
+
width:min(352px,calc(100vw - 2 * var(--spacing-md)));
|
|
360
|
+
}
|
|
361
|
+
.ds\:w-\[min\(22rem\,calc\(100vw-var\(--spacing-xl\)\)\)\] {
|
|
362
|
+
width:min(352px,calc(100vw - var(--spacing-xl)));
|
|
363
|
+
}
|
|
364
|
+
.ds\:w-\[min\(24rem\,calc\(100vw-2\*var\(--spacing-md\)\)\)\] {
|
|
365
|
+
width:min(384px,calc(100vw - 2 * var(--spacing-md)));
|
|
366
|
+
}
|
|
367
|
+
.ds\:w-\[min\(26rem\,calc\(100vw-2\*var\(--spacing-md\)\)\)\] {
|
|
368
|
+
width:min(416px,calc(100vw - 2 * var(--spacing-md)));
|
|
369
|
+
}
|
|
370
|
+
.ds\:max-w-\[12rem\] {
|
|
371
|
+
max-width:192px;
|
|
372
|
+
}
|
|
373
|
+
.ds\:max-w-\[16rem\] {
|
|
374
|
+
max-width:256px;
|
|
375
|
+
}
|
|
376
|
+
.ds\:max-w-\[18rem\] {
|
|
377
|
+
max-width:288px;
|
|
378
|
+
}
|
|
379
|
+
.ds\:max-w-\[20rem\] {
|
|
380
|
+
max-width:320px;
|
|
381
|
+
}
|
|
382
|
+
.ds\:max-w-\[24rem\] {
|
|
383
|
+
max-width:384px;
|
|
384
|
+
}
|
|
385
|
+
.ds\:max-w-\[26rem\] {
|
|
386
|
+
max-width:416px;
|
|
387
|
+
}
|
|
388
|
+
.ds\:max-w-\[28rem\] {
|
|
389
|
+
max-width:448px;
|
|
390
|
+
}
|
|
391
|
+
.ds\:max-w-\[32rem\] {
|
|
392
|
+
max-width:512px;
|
|
393
|
+
}
|
|
394
|
+
.ds\:max-w-\[40rem\] {
|
|
395
|
+
max-width:640px;
|
|
396
|
+
}
|
|
397
|
+
.ds\:max-w-\[42rem\] {
|
|
398
|
+
max-width:672px;
|
|
399
|
+
}
|
|
400
|
+
.ds\:max-w-\[56rem\] {
|
|
401
|
+
max-width:896px;
|
|
402
|
+
}
|
|
403
|
+
.ds\:max-w-\[64rem\] {
|
|
404
|
+
max-width:1024px;
|
|
405
|
+
}
|
|
406
|
+
.ds\:max-w-\[80rem\] {
|
|
407
|
+
max-width:1280px;
|
|
408
|
+
}
|
|
409
|
+
.ds\:max-w-\[min\(42rem\,90\%\)\] {
|
|
410
|
+
max-width:min(672px,90%);
|
|
411
|
+
}
|
|
412
|
+
.ds\:max-w-\[min\(42rem\,calc\(100\%-var\(--spacing-xl\)-var\(--spacing-sm\)\)\)\] {
|
|
413
|
+
max-width:min(672px,calc(100% - var(--spacing-xl) - var(--spacing-sm)));
|
|
414
|
+
}
|
|
415
|
+
.ds\:min-w-\[3\.5rem\] {
|
|
416
|
+
min-width:56px;
|
|
417
|
+
}
|
|
418
|
+
.ds\:min-w-\[3rem\] {
|
|
419
|
+
min-width:48px;
|
|
420
|
+
}
|
|
421
|
+
.ds\:min-w-\[6rem\] {
|
|
422
|
+
min-width:96px;
|
|
423
|
+
}
|
|
424
|
+
.ds\:min-w-\[8rem\] {
|
|
425
|
+
min-width:128px;
|
|
426
|
+
}
|
|
427
|
+
.ds\:min-w-\[10rem\] {
|
|
428
|
+
min-width:160px;
|
|
429
|
+
}
|
|
430
|
+
.ds\:min-w-\[12rem\] {
|
|
431
|
+
min-width:192px;
|
|
432
|
+
}
|
|
433
|
+
.ds\:min-w-\[14rem\] {
|
|
434
|
+
min-width:224px;
|
|
435
|
+
}
|
|
436
|
+
.ds\:min-w-\[16rem\] {
|
|
437
|
+
min-width:256px;
|
|
438
|
+
}
|
|
439
|
+
.ds\:min-w-\[32rem\] {
|
|
440
|
+
min-width:512px;
|
|
441
|
+
}
|
|
442
|
+
.ds\:auto-rows-\[14rem\] {
|
|
443
|
+
grid-auto-rows:224px;
|
|
444
|
+
}
|
|
445
|
+
.ds\:auto-rows-\[19rem\] {
|
|
446
|
+
grid-auto-rows:304px;
|
|
447
|
+
}
|
|
448
|
+
.ds\:auto-rows-\[minmax\(12rem\,auto\)\] {
|
|
449
|
+
grid-auto-rows:minmax(192px,auto);
|
|
450
|
+
}
|
|
451
|
+
.ds\:\[grid-template-columns\:minmax\(2\.75rem\,auto\)_repeat\(4\,minmax\(0\,1fr\)\)\] {
|
|
452
|
+
grid-template-columns:minmax(44px,auto) repeat(4,minmax(0,1fr));
|
|
453
|
+
}
|
|
454
|
+
.ds\:\[grid-template-columns\:minmax\(2\.75rem\,auto\)_repeat\(6\,minmax\(0\,1fr\)\)\] {
|
|
455
|
+
grid-template-columns:minmax(44px,auto) repeat(6,minmax(0,1fr));
|
|
456
|
+
}
|
|
457
|
+
.ds\:\[grid-template-columns\:repeat\(auto-fill\,minmax\(2rem\,1fr\)\)\] {
|
|
458
|
+
grid-template-columns:repeat(auto-fill,minmax(32px,1fr));
|
|
459
|
+
}
|
|
460
|
+
.ds\:\[grid-template-columns\:repeat\(auto-fit\,minmax\(14rem\,1fr\)\)\] {
|
|
461
|
+
grid-template-columns:repeat(auto-fit,minmax(224px,1fr));
|
|
462
|
+
}
|
|
463
|
+
.ds\:\[grid-template-columns\:repeat\(auto-fit\,minmax\(16rem\,1fr\)\)\] {
|
|
464
|
+
grid-template-columns:repeat(auto-fit,minmax(256px,1fr));
|
|
465
|
+
}
|
|
466
|
+
.ds\:grid-cols-\[1fr_2rem_1fr\] {
|
|
467
|
+
grid-template-columns:1fr 32px 1fr;
|
|
468
|
+
}
|
|
469
|
+
.ds\:grid-cols-\[repeat\(auto-fill\,minmax\(12rem\,1fr\)\)\] {
|
|
470
|
+
grid-template-columns:repeat(auto-fill,minmax(192px,1fr));
|
|
471
|
+
}
|
|
472
|
+
.ds\:grid-cols-\[repeat\(auto-fit\,minmax\(8rem\,1fr\)\)\] {
|
|
473
|
+
grid-template-columns:repeat(auto-fit,minmax(128px,1fr));
|
|
474
|
+
}
|
|
475
|
+
.ds\:grid-cols-\[repeat\(auto-fit\,minmax\(12rem\,1fr\)\)\] {
|
|
476
|
+
grid-template-columns:repeat(auto-fit,minmax(192px,1fr));
|
|
477
|
+
}
|
|
478
|
+
.ds\:text-\[7rem\] {
|
|
479
|
+
font-size:112px;
|
|
480
|
+
}
|
|
481
|
+
.ds\:\[inline-size\:3rem\] {
|
|
482
|
+
inline-size:48px;
|
|
483
|
+
}
|
|
484
|
+
.ds\:\[inline-size\:22rem\] {
|
|
485
|
+
inline-size:352px;
|
|
486
|
+
}
|
|
487
|
+
.ds\:\[inline-size\:24rem\] {
|
|
488
|
+
inline-size:384px;
|
|
489
|
+
}
|
|
490
|
+
.ds\:\[inline-size\:var\(--tool-rail-panel-inline-size\,var\(--ai-tools-rail-panel-inline-size\,22rem\)\)\] {
|
|
491
|
+
inline-size:var(--tool-rail-panel-inline-size,var(--ai-tools-rail-panel-inline-size,352px));
|
|
492
|
+
}
|
|
493
|
+
.ds\:\[max-block-size\:10rem\] {
|
|
494
|
+
max-block-size:160px;
|
|
495
|
+
}
|
|
496
|
+
.ds\:\[max-block-size\:12rem\] {
|
|
497
|
+
max-block-size:192px;
|
|
498
|
+
}
|
|
499
|
+
.ds\:\[max-inline-size\:16rem\] {
|
|
500
|
+
max-inline-size:256px;
|
|
501
|
+
}
|
|
502
|
+
.ds\:\[max-inline-size\:20rem\] {
|
|
503
|
+
max-inline-size:320px;
|
|
504
|
+
}
|
|
505
|
+
.ds\:\[max-inline-size\:28rem\] {
|
|
506
|
+
max-inline-size:448px;
|
|
507
|
+
}
|
|
508
|
+
.ds\:\[max-inline-size\:34rem\] {
|
|
509
|
+
max-inline-size:544px;
|
|
510
|
+
}
|
|
511
|
+
.ds\:\[max-inline-size\:36rem\] {
|
|
512
|
+
max-inline-size:576px;
|
|
513
|
+
}
|
|
514
|
+
.ds\:\[max-inline-size\:40rem\] {
|
|
515
|
+
max-inline-size:640px;
|
|
516
|
+
}
|
|
517
|
+
.ds\:\[max-inline-size\:48rem\] {
|
|
518
|
+
max-inline-size:768px;
|
|
519
|
+
}
|
|
520
|
+
.ds\:\[min-block-size\:18rem\] {
|
|
521
|
+
min-block-size:288px;
|
|
522
|
+
}
|
|
523
|
+
.ds\:\[min-block-size\:30rem\] {
|
|
524
|
+
min-block-size:480px;
|
|
525
|
+
}
|
|
526
|
+
@media (min-width:40rem) {
|
|
527
|
+
.ds\:sm\:text-\[8rem\] {
|
|
528
|
+
font-size:128px;
|
|
529
|
+
}
|
|
530
|
+
.ds\:sm\:\[max-block-size\:var\(--message-tray-max-block-size\,26rem\)\] {
|
|
531
|
+
max-block-size:var(--message-tray-max-block-size,416px);
|
|
532
|
+
}
|
|
533
|
+
.ds\:sm\:\[max-block-size\:var\(--notification-tray-max-block-size\,24rem\)\] {
|
|
534
|
+
max-block-size:var(--notification-tray-max-block-size,384px);
|
|
535
|
+
}
|
|
536
|
+
.ds\:sm\:\[max-block-size\:var\(--product-hub-tray-max-block-size\,24rem\)\] {
|
|
537
|
+
max-block-size:var(--product-hub-tray-max-block-size,384px);
|
|
538
|
+
}
|
|
539
|
+
}
|
|
540
|
+
@media (min-width:64rem) {
|
|
541
|
+
.ds\:lg\:w-\[15rem\] {
|
|
542
|
+
width:240px;
|
|
543
|
+
}
|
|
544
|
+
.ds\:lg\:w-\[20rem\] {
|
|
545
|
+
width:320px;
|
|
546
|
+
}
|
|
547
|
+
.ds\:lg\:w-\[28rem\] {
|
|
548
|
+
width:448px;
|
|
549
|
+
}
|
|
550
|
+
}
|
|
551
|
+
}
|
|
552
|
+
.ag-watermark-text {
|
|
553
|
+
padding-left:11.2px;
|
|
554
|
+
}
|
|
555
|
+
.ag-pill-container {
|
|
556
|
+
gap:4px;
|
|
557
|
+
}
|
|
558
|
+
.ag-pill {
|
|
559
|
+
padding:0 4px;
|
|
560
|
+
}
|
|
561
|
+
.ag-rich-select-list .ag-rich-select-loading {
|
|
562
|
+
min-height:32px;
|
|
563
|
+
}
|
|
564
|
+
.ag-ltr .ag-rich-select-typing-multi .ag-rich-select-field-input {
|
|
565
|
+
margin-left:4px;
|
|
566
|
+
}
|
|
567
|
+
.ag-rtl .ag-rich-select-typing-multi .ag-rich-select-field-input {
|
|
568
|
+
margin-right:4px;
|
|
569
|
+
}
|
|
570
|
+
.ag-skeleton-effect {
|
|
571
|
+
border-radius:4px;
|
|
572
|
+
}
|
package/dist/index.js
CHANGED
|
@@ -115,7 +115,7 @@ import { S as Dl } from "./_chunks/stepper-accordion-BeVMZPuG.js";
|
|
|
115
115
|
import { s as Ml } from "./_chunks/stepper-accordion.agent-cmEguIdx.js";
|
|
116
116
|
import { S as Ol, s as kl } from "./_chunks/stepper-progress-Bv0njx4g.js";
|
|
117
117
|
import { T as wl } from "./_chunks/tab-bar-Axhk6xzx.js";
|
|
118
|
-
import { T as Gl, a as Vl, b as Ul, c as Wl, t as zl } from "./_chunks/tabs-
|
|
118
|
+
import { T as Gl, a as Vl, b as Ul, c as Wl, t as zl } from "./_chunks/tabs-CBb2AidH.js";
|
|
119
119
|
import { T as Yl, t as jl } from "./_chunks/theme-toggle-B4mOrQX1.js";
|
|
120
120
|
import { A as ql } from "./_chunks/agenda-card-BCGaQazD.js";
|
|
121
121
|
import { a as $l } from "./_chunks/agenda-card.agent-mTCrkKSZ.js";
|
|
@@ -138,7 +138,7 @@ import { M as wd, m as Hd } from "./_chunks/message-tray-BFlu8clI.js";
|
|
|
138
138
|
import { N as Vd, i as Ud } from "./_chunks/notification-card-D29_sVA1.js";
|
|
139
139
|
import { n as zd } from "./_chunks/notification-card.agent-DxGBZb8T.js";
|
|
140
140
|
import { N as Yd, n as jd } from "./_chunks/notification-tray-CzIzz3bX.js";
|
|
141
|
-
import { N as qd } from "./_chunks/notes-panel-
|
|
141
|
+
import { N as qd } from "./_chunks/notes-panel-BKwd-bOV.js";
|
|
142
142
|
import { P as $d, p as Jd } from "./_chunks/popover-Cc0a69sw.js";
|
|
143
143
|
import { R as am, I as em, r as sm } from "./_chunks/radiograph-panel.agent-AsXJBr1p.js";
|
|
144
144
|
import { P as tm, R as om, T as im, a as nm, r as lm } from "./_chunks/pregnancy-weight-gain-B-CkVYnU.js";
|
|
@@ -153,7 +153,7 @@ import { T as Dm, t as Fm } from "./_chunks/task-tray-CLIqIXUZ.js";
|
|
|
153
153
|
import { T as Lm, t as Om } from "./_chunks/tasks-panel-CjGAhIN8.js";
|
|
154
154
|
import { T as Bm, t as wm, a as Hm, b as Gm, c as Vm, d as Um, e as Wm } from "./_chunks/toast.agent-Iw2jWdce.js";
|
|
155
155
|
import { T as Km, a as Ym } from "./_chunks/tooltip-DvmfrNvB.js";
|
|
156
|
-
import { W as Xm } from "./_chunks/warning-stack-
|
|
156
|
+
import { W as Xm } from "./_chunks/warning-stack-DKeAfj5M.js";
|
|
157
157
|
import { A as Qm } from "./_chunks/app-frame-DIEMIC5V.js";
|
|
158
158
|
import { A as Jm } from "./_chunks/aspect-ratio-DeSNzASA.js";
|
|
159
159
|
import { C as ap, a as ep, b as sp, c as rp } from "./_chunks/collapsible-BrnRiCC6.js";
|
|
@@ -179,7 +179,7 @@ import { s as pc } from "./_chunks/suggestion-chip.agent-Brn3CiFE.js";
|
|
|
179
179
|
import { T as fc, t as gc } from "./_chunks/transcript-panel-BGkEhvHO.js";
|
|
180
180
|
import { T as uc } from "./_chunks/typing-indicator-DHeVN4ob.js";
|
|
181
181
|
import { A as Cc } from "./_chunks/anamnesis-card-CJ5MNbkc.js";
|
|
182
|
-
import { D as Tc, F as Ic, a as Pc, M as hc, b as Nc, e as bc, f as Ec, g as Rc, c as _c, m as yc, r as vc, v as Dc } from "./_chunks/muscle-scheme-
|
|
182
|
+
import { D as Tc, F as Ic, a as Pc, M as hc, b as Nc, e as bc, f as Ec, g as Rc, c as _c, m as yc, r as vc, v as Dc } from "./_chunks/muscle-scheme-kgCX5qfO.js";
|
|
183
183
|
import { A as Mc, a as Lc, b as Oc, c as kc, d as Bc, e as wc, C as Hc, f as Gc, g as Vc, D as Uc, h as Wc, E as zc, L as Kc, O as Yc, P as jc, i as Xc, j as qc, k as Qc, l as $c, R as Jc, S as Zc, m as af, n as ef, o as sf, p as rf, q as tf, r as of, s as nf, t as lf, u as df, v as mf, w as pf, x as cf, y as ff, z as gf, B as Af, F as uf } from "./_chunks/optical-prescription-BEjYQjiO.js";
|
|
184
184
|
import { B as Cf, C as Sf, O as Tf, b as If } from "./_chunks/booking-BSpSMmJ2.js";
|
|
185
185
|
import { C as hf, c as Nf, r as bf } from "./_chunks/calendar-4dXTvsCz.js";
|
|
@@ -190,7 +190,7 @@ import { C as Of, c as kf } from "./_chunks/care-plan-header-BXvRpGG8.js";
|
|
|
190
190
|
import { O as wf, o as Hf } from "./_chunks/operator-hero-DVy0RGoD.js";
|
|
191
191
|
import { P as Vf, p as Uf } from "./_chunks/patient-details-DrhlTrLf.js";
|
|
192
192
|
import { P as zf, p as Kf } from "./_chunks/patient-search-vtRTSdf6.js";
|
|
193
|
-
import { P as jf, p as Xf } from "./_chunks/patient-summary-card-
|
|
193
|
+
import { P as jf, p as Xf } from "./_chunks/patient-summary-card-C-iVDo53.js";
|
|
194
194
|
import { B as Qf, C as $f, N as Jf, P as Zf, a as ag, b as eg, g as sg, u as rg } from "./_chunks/patient-table-CvZTIM2R.js";
|
|
195
195
|
import { B as og, M as ig, P as ng, a as lg, b as dg, c as mg, d as pg, S as cg, e as fg, f as gg, g as Ag, h as ug, p as xg, i as Cg, j as Sg, k as Tg, s as Ig, t as Pg, l as hg } from "./_chunks/periodontal-chart-CYBhr9vc.js";
|
|
196
196
|
import { P as bg, a as Eg, p as Rg } from "./_chunks/periodontal-chart-card-WVjJAheq.js";
|
|
@@ -203,11 +203,11 @@ import { P as Zg, a as aA, p as eA, b as sA } from "./_chunks/payment-request-ca
|
|
|
203
203
|
import { P as tA, f as oA, p as iA, a as nA, s as lA, b as dA, c as mA } from "./_chunks/payment-form-BoGxEmGn.js";
|
|
204
204
|
import { P as cA, p as fA } from "./_chunks/pdf-viewer-CcOuR2wj.js";
|
|
205
205
|
import { R as AA, r as uA } from "./_chunks/reviews-panel-DmOjvmyH.js";
|
|
206
|
-
import { R as CA, r as SA, w as TA } from "./_chunks/rich-text-editor-
|
|
206
|
+
import { R as CA, r as SA, w as TA } from "./_chunks/rich-text-editor-DHpV2q6d.js";
|
|
207
207
|
import { E as PA } from "./_chunks/editor-overlay-DE3esyio.js";
|
|
208
|
-
import { S as NA, s as bA } from "./_chunks/signature-capture-
|
|
208
|
+
import { S as NA, s as bA } from "./_chunks/signature-capture-D6ut9_IR.js";
|
|
209
209
|
import { S as RA, s as _A } from "./_chunks/signature-field-0rFODJlW.js";
|
|
210
|
-
import { S as vA, s as DA } from "./_chunks/sign-document-
|
|
210
|
+
import { S as vA, s as DA } from "./_chunks/sign-document-cH9CboWB.js";
|
|
211
211
|
import { S as MA, f as LA, i as OA } from "./_chunks/slot-grid-CQSULZjd.js";
|
|
212
212
|
import { A as BA, F as wA, a as HA, b as GA, c as VA, d as UA, e as WA, I as zA, f as KA, g as YA, h as jA, i as XA, j as qA, k as QA, l as $A, m as JA, n as ZA, o as au, p as eu, q as su, r as ru, s as tu, t as ou, u as iu } from "./_chunks/face-scheme-CjQAHvSP.js";
|
|
213
213
|
import { T as lu, t as du, r as mu } from "./_chunks/tooth-scheme-BzJ6rcte.js";
|
|
@@ -219,7 +219,7 @@ import { A as ox, a as ix, b as nx, c as lx } from "./_chunks/alia-sidebar-DzNz1
|
|
|
219
219
|
import { C as mx, M as px, P as cx } from "./_chunks/marketplace-app-shell-Bv1ZO4XO.js";
|
|
220
220
|
import { S as gx } from "./_chunks/signature-request-BzXTV_RH.js";
|
|
221
221
|
import { D as ux, d as xx } from "./_chunks/dependent-selector-DyFpdzZV.js";
|
|
222
|
-
import { D as Sx, d as Tx } from "./_chunks/document-preview-
|
|
222
|
+
import { D as Sx, d as Tx } from "./_chunks/document-preview-DXsCEj4U.js";
|
|
223
223
|
import { D as Px, d as hx } from "./_chunks/document-scanner-cS_ispQs.js";
|
|
224
224
|
import { F as bx, c as Ex, a as Rx, b as _x, f as yx, w as vx, i as Dx } from "./_chunks/fiscal-code-input-QP9gkyDE.js";
|
|
225
225
|
import { Q as Mx, c as Lx, q as Ox, s as kx } from "./_chunks/qr-code-CPkEs5mG.js";
|