@assure-one/design-system 1.32.0 → 1.33.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 +44 -13
- package/codemods/README.md +60 -0
- package/codemods/lib/forms.mjs +253 -0
- package/codemods/lib/jsx.mjs +0 -0
- package/codemods/lib/registry.mjs +2 -0
- package/codemods/transforms/cm-14-hidden-mirrors.mjs +275 -0
- package/codemods/transforms/cm-20-select-sentinels.mjs +442 -0
- package/dist/css/components.css +7 -0
- package/dist/css/legacy-aliases.css +180 -4
- package/dist/css/shadcn.css +4 -4
- package/dist/css/tailwind.css +66 -3
- package/dist/css/tokens.css +205 -14
- package/dist/index.d.ts +529 -4
- package/dist/index.js +477 -51
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/dist/system-BDU18fVg.d.ts +559 -0
- package/dist/tokens/index.d.ts +50 -439
- package/dist/tokens/index.js +513 -6
- package/dist/tokens/index.js.map +1 -1
- package/package.json +2 -1
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import * as React39 from 'react';
|
|
3
|
-
import { forwardRef, useId, useRef, useState, useEffect, useCallback, useImperativeHandle, useMemo, createContext, Fragment as Fragment$1, useContext } from 'react';
|
|
3
|
+
import { forwardRef, useId, useRef, useState, useEffect, useCallback, useImperativeHandle, useMemo, createContext, Fragment as Fragment$1, useSyncExternalStore, useContext } from 'react';
|
|
4
4
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
5
5
|
import { clsx } from 'clsx';
|
|
6
6
|
import { extendTailwindMerge } from 'tailwind-merge';
|
|
@@ -113,10 +113,10 @@ var radii = {
|
|
|
113
113
|
full: "9999px"
|
|
114
114
|
};
|
|
115
115
|
var shadows = {
|
|
116
|
-
quiet: "0 1px 2px rgba(
|
|
117
|
-
card: "0
|
|
118
|
-
pop: "0
|
|
119
|
-
focusRing: "0 0 0 2px
|
|
116
|
+
quiet: "0 1px 2px rgba(16, 20, 36, 0.05)",
|
|
117
|
+
card: "0 1px 2px rgba(16, 20, 36, 0.04), 0 4px 12px -4px rgba(16, 20, 36, 0.08)",
|
|
118
|
+
pop: "0 0 0 1px rgba(16, 20, 36, 0.03), 0 2px 4px -1px rgba(16, 20, 36, 0.06), 0 12px 28px -6px rgba(16, 20, 36, 0.14)",
|
|
119
|
+
focusRing: "0 0 0 2px #ffffff, 0 0 0 4px #6c42f8"
|
|
120
120
|
};
|
|
121
121
|
var overlays = {
|
|
122
122
|
hover: "rgba(10, 10, 10, 0.03)",
|
|
@@ -163,6 +163,28 @@ var motion = {
|
|
|
163
163
|
slow: "400ms"
|
|
164
164
|
}
|
|
165
165
|
};
|
|
166
|
+
var iconSizes = {
|
|
167
|
+
xs: "12px",
|
|
168
|
+
sm: "14px",
|
|
169
|
+
md: "16px",
|
|
170
|
+
lg: "20px"
|
|
171
|
+
};
|
|
172
|
+
var zIndex = {
|
|
173
|
+
base: 0,
|
|
174
|
+
sticky: 100,
|
|
175
|
+
overlay: 200,
|
|
176
|
+
modal: 300,
|
|
177
|
+
popover: 400,
|
|
178
|
+
toast: 500,
|
|
179
|
+
tooltip: 600
|
|
180
|
+
};
|
|
181
|
+
var breakpoints = {
|
|
182
|
+
sm: "40rem",
|
|
183
|
+
md: "48rem",
|
|
184
|
+
lg: "64rem",
|
|
185
|
+
xl: "80rem",
|
|
186
|
+
"2xl": "96rem"
|
|
187
|
+
};
|
|
166
188
|
var reference = {
|
|
167
189
|
colors,
|
|
168
190
|
typography,
|
|
@@ -172,7 +194,10 @@ var reference = {
|
|
|
172
194
|
layout,
|
|
173
195
|
motion,
|
|
174
196
|
spacing,
|
|
175
|
-
surfaces
|
|
197
|
+
surfaces,
|
|
198
|
+
iconSizes,
|
|
199
|
+
zIndex,
|
|
200
|
+
breakpoints
|
|
176
201
|
};
|
|
177
202
|
|
|
178
203
|
// src/tokens/system.ts
|
|
@@ -370,6 +395,54 @@ var systemTokens = {
|
|
|
370
395
|
}
|
|
371
396
|
}
|
|
372
397
|
},
|
|
398
|
+
/**
|
|
399
|
+
* Control sizing (amendment A1, W2-03). One outer height per size name, with
|
|
400
|
+
* the padding, gap, label size and glyph size derived from it.
|
|
401
|
+
*
|
|
402
|
+
* **Nothing reads these yet** and the numbers are gated on decision D5
|
|
403
|
+
* (implementation plan §3) — what each control renders *today* is in
|
|
404
|
+
* `docs/design-system/control-sizes.md`, and W2-05 is the task that unifies
|
|
405
|
+
* them. Referencing the scale here is also what keeps the custom properties
|
|
406
|
+
* in the published stylesheet, so `[data-ds-density="compact"]` has something
|
|
407
|
+
* to re-point.
|
|
408
|
+
*/
|
|
409
|
+
control: {
|
|
410
|
+
height: {
|
|
411
|
+
xs: "var(--control-height-xs)",
|
|
412
|
+
sm: "var(--control-height-sm)",
|
|
413
|
+
md: "var(--control-height-md)",
|
|
414
|
+
lg: "var(--control-height-lg)",
|
|
415
|
+
xl: "var(--control-height-xl)"
|
|
416
|
+
},
|
|
417
|
+
paddingX: {
|
|
418
|
+
xs: "var(--control-padding-x-xs)",
|
|
419
|
+
sm: "var(--control-padding-x-sm)",
|
|
420
|
+
md: "var(--control-padding-x-md)",
|
|
421
|
+
lg: "var(--control-padding-x-lg)",
|
|
422
|
+
xl: "var(--control-padding-x-xl)"
|
|
423
|
+
},
|
|
424
|
+
gap: {
|
|
425
|
+
xs: "var(--control-gap-xs)",
|
|
426
|
+
sm: "var(--control-gap-sm)",
|
|
427
|
+
md: "var(--control-gap-md)",
|
|
428
|
+
lg: "var(--control-gap-lg)",
|
|
429
|
+
xl: "var(--control-gap-xl)"
|
|
430
|
+
},
|
|
431
|
+
fontSize: {
|
|
432
|
+
xs: "var(--control-font-size-xs)",
|
|
433
|
+
sm: "var(--control-font-size-sm)",
|
|
434
|
+
md: "var(--control-font-size-md)",
|
|
435
|
+
lg: "var(--control-font-size-lg)",
|
|
436
|
+
xl: "var(--control-font-size-xl)"
|
|
437
|
+
},
|
|
438
|
+
icon: {
|
|
439
|
+
xs: "var(--control-icon-xs)",
|
|
440
|
+
sm: "var(--control-icon-sm)",
|
|
441
|
+
md: "var(--control-icon-md)",
|
|
442
|
+
lg: "var(--control-icon-lg)",
|
|
443
|
+
xl: "var(--control-icon-xl)"
|
|
444
|
+
}
|
|
445
|
+
},
|
|
373
446
|
layout: {
|
|
374
447
|
shellSidebarWidth: "var(--shell-sidebar-w)",
|
|
375
448
|
shellSidebarRailWidth: "var(--shell-sidebar-w-rail)",
|
|
@@ -387,10 +460,15 @@ var systemTokens = {
|
|
|
387
460
|
}
|
|
388
461
|
};
|
|
389
462
|
var split = (values) => values.split(" ");
|
|
390
|
-
var DS_RADIUS = split(
|
|
391
|
-
|
|
463
|
+
var DS_RADIUS = split(
|
|
464
|
+
"badges btn buttons card cards general icon input inputs pill control surface surface-sm badge"
|
|
465
|
+
);
|
|
466
|
+
var DS_SHADOW = split("card focus focus-ring focus-ring-field pop quiet subtle flat raised floating overlay");
|
|
392
467
|
var DS_EASE = split("out-quart");
|
|
393
468
|
var DS_FONT = split("body display");
|
|
469
|
+
var DS_TEXT = split(
|
|
470
|
+
"display title-page title-section title-sub body body-sm label helper caption micro overline code"
|
|
471
|
+
);
|
|
394
472
|
var DS_ANIMATE = split("accordion-down accordion-up collapsible-down collapsible-up pulse-soft");
|
|
395
473
|
var isDsShadowVar = (value) => /^\[var\(--shadow-[a-z0-9-]*\)\]$/.test(value);
|
|
396
474
|
var dsMergeConfig = {
|
|
@@ -400,6 +478,7 @@ var dsMergeConfig = {
|
|
|
400
478
|
shadow: DS_SHADOW,
|
|
401
479
|
ease: DS_EASE,
|
|
402
480
|
font: DS_FONT,
|
|
481
|
+
text: DS_TEXT,
|
|
403
482
|
animate: DS_ANIMATE
|
|
404
483
|
},
|
|
405
484
|
classGroups: {
|
|
@@ -2527,6 +2606,8 @@ defineAnatomy("message-composer", [
|
|
|
2527
2606
|
"below-editor",
|
|
2528
2607
|
"footer"
|
|
2529
2608
|
]);
|
|
2609
|
+
var codeAnatomy = defineAnatomy("code", ["root", "content"]);
|
|
2610
|
+
var kbdAnatomy = defineAnatomy("kbd", ["root"]);
|
|
2530
2611
|
var buttonAnatomy = defineAnatomy("button", ["root", "icon-start", "icon-end", "spinner"]);
|
|
2531
2612
|
var linkButtonAnatomy = defineAnatomy("link-button", ["root", "icon-start", "icon-end"]);
|
|
2532
2613
|
var badgeAnatomy = defineAnatomy("badge", ["root", "dot", "icon"]);
|
|
@@ -2707,6 +2788,11 @@ var sidebarBrandSwitcherAnatomy = defineAnatomy("sidebar-brand-switcher", [
|
|
|
2707
2788
|
"trigger",
|
|
2708
2789
|
"icon"
|
|
2709
2790
|
]);
|
|
2791
|
+
var textAnatomy = defineAnatomy("text", ["root"]);
|
|
2792
|
+
var headingAnatomy = defineAnatomy("heading", ["root"]);
|
|
2793
|
+
var stackAnatomy = defineAnatomy("stack", ["root"]);
|
|
2794
|
+
var inlineAnatomy = defineAnatomy("inline", ["root"]);
|
|
2795
|
+
var surfaceAnatomy = defineAnatomy("surface", ["root"]);
|
|
2710
2796
|
|
|
2711
2797
|
// src/foundation/anatomy/slot.ts
|
|
2712
2798
|
function slot(anatomy, part) {
|
|
@@ -2754,7 +2840,7 @@ var AlertDialogContent = React39.forwardRef(({ className, ...props }, ref) => /*
|
|
|
2754
2840
|
className: cn(
|
|
2755
2841
|
"fixed top-1/2 left-1/2 z-[var(--z-modal)] w-full max-w-lg",
|
|
2756
2842
|
"scrollbar-thin max-h-[calc(100vh-6rem)] overflow-y-auto",
|
|
2757
|
-
"rounded-card border-rule bg-surface shadow-
|
|
2843
|
+
"rounded-card border-rule bg-surface shadow-overlay border p-6",
|
|
2758
2844
|
"font-body text-fg",
|
|
2759
2845
|
"transition-[opacity,transform] duration-[var(--duration-overlay)] ease-[var(--ease-out-quart)]",
|
|
2760
2846
|
"data-[state=closed]:-translate-x-1/2 data-[state=closed]:-translate-y-[48%] data-[state=closed]:scale-95 data-[state=closed]:opacity-0",
|
|
@@ -3716,7 +3802,7 @@ var SelectTrigger = React39.forwardRef(({ className, children, tabIndex, ...prop
|
|
|
3716
3802
|
"transition-[color,background-color,border-color,box-shadow] duration-[var(--duration-fast)] ease-[var(--ease-out-quart)]",
|
|
3717
3803
|
"motion-reduce:transition-none",
|
|
3718
3804
|
"placeholder:text-fg-4",
|
|
3719
|
-
"focus-visible:[border-color:var(--focus-ring-border)] focus-visible:[box-shadow:var(--shadow-focus-ring)] focus-visible:outline-none",
|
|
3805
|
+
"focus-visible:[border-color:var(--focus-ring-border)] focus-visible:[box-shadow:var(--shadow-focus-ring-field)] focus-visible:outline-none",
|
|
3720
3806
|
"disabled:bg-bg-disabled disabled:text-fg-disabled disabled:cursor-not-allowed",
|
|
3721
3807
|
"data-[placeholder]:text-fg-4",
|
|
3722
3808
|
"aria-[invalid=true]:border-danger-line aria-[invalid=true]:focus-visible:border-danger-fg",
|
|
@@ -4206,7 +4292,7 @@ var Checkbox = React39.forwardRef(function Checkbox2({
|
|
|
4206
4292
|
shape === "circle" ? "rounded-full" : "rounded-[4px]",
|
|
4207
4293
|
microInteractions.selection,
|
|
4208
4294
|
"hover:border-fg-4",
|
|
4209
|
-
"focus-visible:[border-color:var(--focus-ring-border)] focus-visible:[box-shadow:var(--shadow-focus-ring)] focus-visible:outline-none",
|
|
4295
|
+
"focus-visible:[border-color:var(--focus-ring-border)] focus-visible:[box-shadow:var(--shadow-focus-ring-field)] focus-visible:outline-none",
|
|
4210
4296
|
"data-[state=checked]:border-brand data-[state=checked]:bg-brand-bg",
|
|
4211
4297
|
"data-[state=indeterminate]:border-brand data-[state=indeterminate]:bg-brand-bg",
|
|
4212
4298
|
"disabled:bg-bg-disabled disabled:border-rule disabled:text-fg-disabled disabled:cursor-not-allowed",
|
|
@@ -4391,7 +4477,7 @@ var DialogContent = React39.forwardRef(({ size = "md", showCloseButton = true, c
|
|
|
4391
4477
|
className: cn(
|
|
4392
4478
|
"fixed top-1/2 left-1/2 z-[var(--z-modal)] w-full",
|
|
4393
4479
|
"scrollbar-thin max-h-[calc(100vh-6rem)] overflow-y-auto",
|
|
4394
|
-
"rounded-card border-rule bg-surface shadow-
|
|
4480
|
+
"rounded-card border-rule bg-surface shadow-overlay border p-6",
|
|
4395
4481
|
"font-body text-fg",
|
|
4396
4482
|
// motion: scale + fade keyed off data-state
|
|
4397
4483
|
microInteractions.overlay,
|
|
@@ -4477,11 +4563,67 @@ var DialogDescription = React39.forwardRef(({ className, ...props }, ref) => /*
|
|
|
4477
4563
|
}
|
|
4478
4564
|
));
|
|
4479
4565
|
DialogDescription.displayName = DialogPrimitive.Description.displayName;
|
|
4480
|
-
var
|
|
4481
|
-
|
|
4482
|
-
|
|
4483
|
-
|
|
4484
|
-
);
|
|
4566
|
+
var APPLE = /Mac|iPhone|iPad|iPod/;
|
|
4567
|
+
function detectPlatform(nav) {
|
|
4568
|
+
if (!nav) return "other";
|
|
4569
|
+
const hinted = nav.userAgentData?.platform;
|
|
4570
|
+
if (hinted && /^(macOS|iOS|iPadOS)$/i.test(hinted)) return "apple";
|
|
4571
|
+
if (hinted && hinted.length > 0) return "other";
|
|
4572
|
+
const platform = nav.platform ?? "";
|
|
4573
|
+
if (APPLE.test(platform)) return "apple";
|
|
4574
|
+
const userAgent = nav.userAgent ?? "";
|
|
4575
|
+
return APPLE.test(userAgent) ? "apple" : "other";
|
|
4576
|
+
}
|
|
4577
|
+
var detected;
|
|
4578
|
+
var subscribe = () => () => {
|
|
4579
|
+
};
|
|
4580
|
+
function usePlatform({ serverValue = "other" } = {}) {
|
|
4581
|
+
const getSnapshot = () => {
|
|
4582
|
+
if (typeof navigator === "undefined") return serverValue;
|
|
4583
|
+
detected ??= detectPlatform(navigator);
|
|
4584
|
+
return detected;
|
|
4585
|
+
};
|
|
4586
|
+
const getServerSnapshot = () => serverValue;
|
|
4587
|
+
return useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot);
|
|
4588
|
+
}
|
|
4589
|
+
var GLYPHS = {
|
|
4590
|
+
mod: { apple: "\u2318", other: "Ctrl" },
|
|
4591
|
+
alt: { apple: "\u2325", other: "Alt" },
|
|
4592
|
+
shift: { apple: "\u21E7", other: "Shift" },
|
|
4593
|
+
ctrl: { apple: "\u2303", other: "Ctrl" }
|
|
4594
|
+
};
|
|
4595
|
+
function kbdGlyphText(glyph, platform) {
|
|
4596
|
+
return GLYPHS[glyph][platform];
|
|
4597
|
+
}
|
|
4598
|
+
var VARIANT_CLASS = {
|
|
4599
|
+
keycap: cn(
|
|
4600
|
+
"inline-flex items-center justify-center min-w-[18px] h-[18px] px-[5px]",
|
|
4601
|
+
"font-mono text-[10.5px] text-fg-3 bg-bg-2 border border-rule rounded-icon",
|
|
4602
|
+
"[border-bottom-width:1.5px]"
|
|
4603
|
+
),
|
|
4604
|
+
flat: cn(
|
|
4605
|
+
"rounded-icon inline-flex h-5 min-w-5 items-center justify-center px-1.5",
|
|
4606
|
+
"border-rule bg-bg-2 text-fg-3 border font-mono text-[10.5px]"
|
|
4607
|
+
)
|
|
4608
|
+
};
|
|
4609
|
+
var Kbd = forwardRef(function Kbd2({ variant = "keycap", glyph, className, children, ...props }, ref) {
|
|
4610
|
+
const platform = usePlatform();
|
|
4611
|
+
return /* @__PURE__ */ jsxs(
|
|
4612
|
+
"kbd",
|
|
4613
|
+
{
|
|
4614
|
+
ref,
|
|
4615
|
+
...slot(kbdAnatomy, "root"),
|
|
4616
|
+
...stateAttributes({ variant }),
|
|
4617
|
+
className: cn(VARIANT_CLASS[variant], className),
|
|
4618
|
+
...props,
|
|
4619
|
+
children: [
|
|
4620
|
+
glyph ? kbdGlyphText(glyph, platform) : null,
|
|
4621
|
+
children
|
|
4622
|
+
]
|
|
4623
|
+
}
|
|
4624
|
+
);
|
|
4625
|
+
});
|
|
4626
|
+
Kbd.displayName = "Kbd";
|
|
4485
4627
|
function groupItems(items) {
|
|
4486
4628
|
const groups = /* @__PURE__ */ new Map();
|
|
4487
4629
|
for (const item of items) {
|
|
@@ -4527,7 +4669,7 @@ function CommandPalette({
|
|
|
4527
4669
|
"aria-label": "Command palette",
|
|
4528
4670
|
className: cn(
|
|
4529
4671
|
"fixed top-[20vh] left-1/2 z-[var(--z-modal)] w-full max-w-xl -translate-x-1/2",
|
|
4530
|
-
"rounded-card border-rule bg-surface shadow-
|
|
4672
|
+
"rounded-card border-rule bg-surface shadow-overlay overflow-hidden border",
|
|
4531
4673
|
"font-body text-fg",
|
|
4532
4674
|
"transition-[opacity,transform] duration-[var(--duration-overlay)] ease-[var(--ease-out-quart)]",
|
|
4533
4675
|
"data-[state=closed]:-translate-x-1/2 data-[state=closed]:scale-95 data-[state=closed]:opacity-0",
|
|
@@ -4615,7 +4757,7 @@ function CommandPalette({
|
|
|
4615
4757
|
/* @__PURE__ */ jsx("div", { className: "text-fg text-sm font-medium", children: item.label }),
|
|
4616
4758
|
item.description && /* @__PURE__ */ jsx("div", { className: "text-fg-3 line-clamp-1 text-xs", children: item.description })
|
|
4617
4759
|
] }),
|
|
4618
|
-
item.shortcut && /* @__PURE__ */ jsx(
|
|
4760
|
+
item.shortcut && /* @__PURE__ */ jsx(Kbd, { className: "hidden shrink-0 sm:inline-flex", children: item.shortcut })
|
|
4619
4761
|
]
|
|
4620
4762
|
},
|
|
4621
4763
|
item.id
|
|
@@ -4628,15 +4770,15 @@ function CommandPalette({
|
|
|
4628
4770
|
),
|
|
4629
4771
|
/* @__PURE__ */ jsxs("div", { className: "border-rule bg-bg-2/40 text-fg-3 flex flex-wrap items-center gap-4 border-t px-4 py-2.5", children: [
|
|
4630
4772
|
/* @__PURE__ */ jsxs("span", { className: "flex items-center gap-1.5", children: [
|
|
4631
|
-
/* @__PURE__ */ jsx(
|
|
4773
|
+
/* @__PURE__ */ jsx(Kbd, { children: "\u2191\u2193" }),
|
|
4632
4774
|
"Navigate"
|
|
4633
4775
|
] }),
|
|
4634
4776
|
/* @__PURE__ */ jsxs("span", { className: "flex items-center gap-1.5", children: [
|
|
4635
|
-
/* @__PURE__ */ jsx(
|
|
4777
|
+
/* @__PURE__ */ jsx(Kbd, { children: "\u21B5" }),
|
|
4636
4778
|
"Select"
|
|
4637
4779
|
] }),
|
|
4638
4780
|
/* @__PURE__ */ jsxs("span", { className: "flex items-center gap-1.5", children: [
|
|
4639
|
-
/* @__PURE__ */ jsx(
|
|
4781
|
+
/* @__PURE__ */ jsx(Kbd, { children: "esc" }),
|
|
4640
4782
|
"Close"
|
|
4641
4783
|
] })
|
|
4642
4784
|
] })
|
|
@@ -5202,7 +5344,7 @@ var DatePicker = forwardRef(function DatePicker2({
|
|
|
5202
5344
|
"motion-reduce:transition-none",
|
|
5203
5345
|
"placeholder:font-body placeholder:text-fg-4",
|
|
5204
5346
|
"focus-visible:[border-color:var(--focus-ring-border)] focus-visible:outline-none",
|
|
5205
|
-
"focus-visible:[box-shadow:var(--shadow-focus-ring)]",
|
|
5347
|
+
"focus-visible:[box-shadow:var(--shadow-focus-ring-field)]",
|
|
5206
5348
|
"disabled:bg-bg-disabled disabled:text-fg-disabled disabled:cursor-not-allowed",
|
|
5207
5349
|
"aria-[invalid=true]:border-danger-line aria-[invalid=true]:focus-visible:border-danger-fg",
|
|
5208
5350
|
"aria-[invalid=true]:focus-visible:[box-shadow:0_0_0_2px_var(--color-danger-bg)]",
|
|
@@ -5395,7 +5537,7 @@ var DateRangePicker = forwardRef(
|
|
|
5395
5537
|
"motion-reduce:transition-none",
|
|
5396
5538
|
"hover:bg-bg-2",
|
|
5397
5539
|
"focus-visible:[border-color:var(--focus-ring-border)] focus-visible:outline-none",
|
|
5398
|
-
"focus-visible:[box-shadow:var(--shadow-focus-ring)]",
|
|
5540
|
+
"focus-visible:[box-shadow:var(--shadow-focus-ring-field)]",
|
|
5399
5541
|
"disabled:bg-bg-disabled disabled:text-fg-disabled disabled:cursor-not-allowed disabled:hover:bg-bg-disabled",
|
|
5400
5542
|
"data-[invalid=true]:border-danger-line data-[invalid=true]:focus-visible:border-danger-fg",
|
|
5401
5543
|
"data-[invalid=true]:focus-visible:[box-shadow:0_0_0_2px_var(--color-danger-bg)]"
|
|
@@ -6187,7 +6329,7 @@ var inputVariants = cva(
|
|
|
6187
6329
|
microInteractions.control,
|
|
6188
6330
|
"placeholder:text-fg-4",
|
|
6189
6331
|
"focus-visible:outline-none focus-visible:[border-color:var(--focus-ring-border)]",
|
|
6190
|
-
"focus-visible:[box-shadow:var(--shadow-focus-ring)]",
|
|
6332
|
+
"focus-visible:[box-shadow:var(--shadow-focus-ring-field)]",
|
|
6191
6333
|
"disabled:cursor-not-allowed disabled:bg-bg-disabled disabled:text-fg-disabled",
|
|
6192
6334
|
"aria-[invalid=true]:border-danger-line aria-[invalid=true]:focus-visible:border-danger-fg",
|
|
6193
6335
|
"aria-[invalid=true]:focus-visible:[box-shadow:0_0_0_2px_var(--color-danger-bg)]",
|
|
@@ -6367,7 +6509,7 @@ var GENERAL_SECTION = {
|
|
|
6367
6509
|
{ keys: ["Esc"], description: "Close / go back" }
|
|
6368
6510
|
]
|
|
6369
6511
|
};
|
|
6370
|
-
var
|
|
6512
|
+
var kbdClass = cn(
|
|
6371
6513
|
"inline-flex items-center justify-center min-w-[18px] h-[18px] px-[5px]",
|
|
6372
6514
|
"font-mono text-[10.5px] text-fg-3 bg-bg-2 border border-rule rounded-icon",
|
|
6373
6515
|
"[border-bottom-width:1.5px]"
|
|
@@ -6417,7 +6559,7 @@ function KeyboardShortcutsDialog({
|
|
|
6417
6559
|
/* @__PURE__ */ jsx("span", { className: "text-fg text-sm", children: shortcut.description }),
|
|
6418
6560
|
/* @__PURE__ */ jsx("div", { className: "flex shrink-0 items-center gap-1", children: shortcut.keys.map((key, i) => /* @__PURE__ */ jsxs(React39.Fragment, { children: [
|
|
6419
6561
|
i > 0 && /* @__PURE__ */ jsx("span", { className: "text-fg-4 mx-0.5 text-[11px]", children: "then" }),
|
|
6420
|
-
/* @__PURE__ */ jsx("kbd", { className:
|
|
6562
|
+
/* @__PURE__ */ jsx("kbd", { className: kbdClass, children: key })
|
|
6421
6563
|
] }, i)) })
|
|
6422
6564
|
]
|
|
6423
6565
|
},
|
|
@@ -6426,7 +6568,7 @@ function KeyboardShortcutsDialog({
|
|
|
6426
6568
|
] }, section.title)) }) }),
|
|
6427
6569
|
/* @__PURE__ */ jsx("div", { className: "border-rule bg-bg-2/40 border-t px-5 py-3", children: /* @__PURE__ */ jsxs("p", { className: "text-fg-3 text-[11px]", children: [
|
|
6428
6570
|
"Press ",
|
|
6429
|
-
/* @__PURE__ */ jsx("kbd", { className:
|
|
6571
|
+
/* @__PURE__ */ jsx("kbd", { className: kbdClass, children: hotkey ?? "?" }),
|
|
6430
6572
|
" anytime to toggle this dialog"
|
|
6431
6573
|
] }) })
|
|
6432
6574
|
] }) });
|
|
@@ -6578,6 +6720,19 @@ var LoadingRows = forwardRef(function LoadingRows2({
|
|
|
6578
6720
|
);
|
|
6579
6721
|
});
|
|
6580
6722
|
LoadingRows.displayName = "LoadingRows";
|
|
6723
|
+
|
|
6724
|
+
// src/lib/asset-base.ts
|
|
6725
|
+
var basePath = "/";
|
|
6726
|
+
function setAssetBasePath(base) {
|
|
6727
|
+
const trimmed = (base ?? "").replace(/\/+$/, "");
|
|
6728
|
+
basePath = trimmed === "" ? "/" : `${trimmed.startsWith("/") ? "" : "/"}${trimmed}/`;
|
|
6729
|
+
}
|
|
6730
|
+
function getAssetBasePath() {
|
|
6731
|
+
return basePath;
|
|
6732
|
+
}
|
|
6733
|
+
function assetPath(path) {
|
|
6734
|
+
return `${basePath}${path.replace(/^\/+/, "")}`;
|
|
6735
|
+
}
|
|
6581
6736
|
var sizeStyles = {
|
|
6582
6737
|
sm: { icon: 20, text: "text-sm", gap: "gap-2", assetHeight: 24 },
|
|
6583
6738
|
md: { icon: 24, text: "text-[17px]", gap: "gap-2.5", assetHeight: 30 },
|
|
@@ -6629,7 +6784,7 @@ function Logo({
|
|
|
6629
6784
|
asset && showText ? /* @__PURE__ */ jsx(
|
|
6630
6785
|
Image2,
|
|
6631
6786
|
{
|
|
6632
|
-
src: asset.src,
|
|
6787
|
+
src: assetPath(asset.src),
|
|
6633
6788
|
alt: "",
|
|
6634
6789
|
width: asset.width,
|
|
6635
6790
|
height: asset.height,
|
|
@@ -6640,7 +6795,7 @@ function Logo({
|
|
|
6640
6795
|
) : markAsset ? /* @__PURE__ */ jsx(
|
|
6641
6796
|
Image2,
|
|
6642
6797
|
{
|
|
6643
|
-
src: markAsset.src,
|
|
6798
|
+
src: assetPath(markAsset.src),
|
|
6644
6799
|
alt: "",
|
|
6645
6800
|
width: markAsset.width,
|
|
6646
6801
|
height: markAsset.height,
|
|
@@ -7032,7 +7187,7 @@ function OTPSlot({ isActive, char, hasFakeCaret, hasError }) {
|
|
|
7032
7187
|
"transition-[color,background-color,border-color,box-shadow] duration-[var(--duration-fast)]",
|
|
7033
7188
|
"sm:h-14 sm:w-12 sm:text-xl",
|
|
7034
7189
|
"border-rule-strong",
|
|
7035
|
-
isActive && "[border-color:var(--focus-ring-border)] z-10 [box-shadow:var(--shadow-focus-ring)]",
|
|
7190
|
+
isActive && "[border-color:var(--focus-ring-border)] z-10 [box-shadow:var(--shadow-focus-ring-field)]",
|
|
7036
7191
|
hasError && "border-danger-line",
|
|
7037
7192
|
hasError && isActive && "border-danger-fg [box-shadow:0_0_0_2px_var(--color-danger-bg)]"
|
|
7038
7193
|
),
|
|
@@ -7996,7 +8151,7 @@ var RadioGroupItem = React39.forwardRef(function RadioGroupItem2({ className, la
|
|
|
7996
8151
|
"peer border-rule-strong bg-surface text-brand aspect-square size-4 shrink-0 rounded-full border",
|
|
7997
8152
|
microInteractions.selection,
|
|
7998
8153
|
"hover:border-fg-4",
|
|
7999
|
-
"focus-visible:[border-color:var(--focus-ring-border)] focus-visible:[box-shadow:var(--shadow-focus-ring)] focus-visible:outline-none",
|
|
8154
|
+
"focus-visible:[border-color:var(--focus-ring-border)] focus-visible:[box-shadow:var(--shadow-focus-ring-field)] focus-visible:outline-none",
|
|
8000
8155
|
"data-[state=checked]:border-brand",
|
|
8001
8156
|
"disabled:bg-bg-disabled disabled:border-rule disabled:cursor-not-allowed",
|
|
8002
8157
|
"aria-[invalid=true]:border-danger-line",
|
|
@@ -8102,7 +8257,7 @@ var SheetOverlay = React39.forwardRef(({ className, ...props }, ref) => /* @__PU
|
|
|
8102
8257
|
SheetOverlay.displayName = DialogPrimitive.Overlay.displayName;
|
|
8103
8258
|
var sheetVariants = cva(
|
|
8104
8259
|
cn(
|
|
8105
|
-
"fixed z-[var(--z-modal)] flex flex-col gap-4 bg-surface text-fg shadow-
|
|
8260
|
+
"fixed z-[var(--z-modal)] flex flex-col gap-4 bg-surface text-fg shadow-overlay",
|
|
8106
8261
|
"transition ease-in-out duration-[var(--duration-normal)] ease-[var(--ease-out-quart)]",
|
|
8107
8262
|
"motion-reduce:transition-none"
|
|
8108
8263
|
),
|
|
@@ -8375,7 +8530,7 @@ var searchInputVariants = cva(
|
|
|
8375
8530
|
microInteractions.control,
|
|
8376
8531
|
"placeholder:text-fg-4",
|
|
8377
8532
|
"focus-visible:outline-none focus-visible:[border-color:var(--focus-ring-border)]",
|
|
8378
|
-
"focus-visible:[box-shadow:var(--shadow-focus-ring)]",
|
|
8533
|
+
"focus-visible:[box-shadow:var(--shadow-focus-ring-field)]",
|
|
8379
8534
|
"disabled:cursor-not-allowed disabled:bg-bg-disabled disabled:text-fg-disabled",
|
|
8380
8535
|
// Hide the native search-cancel button — we render our own clear button.
|
|
8381
8536
|
"[&::-webkit-search-cancel-button]:appearance-none",
|
|
@@ -9084,7 +9239,7 @@ var Separator4 = React39.forwardRef(function Separator5({ className, orientation
|
|
|
9084
9239
|
Separator4.displayName = SeparatorPrimitive.Root.displayName;
|
|
9085
9240
|
var sideDrawerVariants = cva(
|
|
9086
9241
|
cn(
|
|
9087
|
-
"fixed inset-y-0 z-[var(--z-modal)] flex h-full flex-col bg-surface text-fg shadow-
|
|
9242
|
+
"fixed inset-y-0 z-[var(--z-modal)] flex h-full flex-col bg-surface text-fg shadow-overlay",
|
|
9088
9243
|
"font-body",
|
|
9089
9244
|
"transition ease-in-out duration-[var(--duration-normal)] ease-[var(--ease-out-quart)]",
|
|
9090
9245
|
"motion-reduce:transition-none"
|
|
@@ -10511,7 +10666,7 @@ var textareaVariants = cva(
|
|
|
10511
10666
|
"motion-reduce:transition-none",
|
|
10512
10667
|
"placeholder:text-fg-4",
|
|
10513
10668
|
"focus-visible:outline-none focus-visible:[border-color:var(--focus-ring-border)]",
|
|
10514
|
-
"focus-visible:[box-shadow:var(--shadow-focus-ring)]",
|
|
10669
|
+
"focus-visible:[box-shadow:var(--shadow-focus-ring-field)]",
|
|
10515
10670
|
"disabled:cursor-not-allowed disabled:bg-bg-disabled disabled:text-fg-disabled",
|
|
10516
10671
|
"aria-[invalid=true]:border-danger-line aria-[invalid=true]:focus-visible:border-danger-fg",
|
|
10517
10672
|
"aria-[invalid=true]:focus-visible:[box-shadow:0_0_0_2px_var(--color-danger-bg)]"
|
|
@@ -11034,6 +11189,43 @@ var ToggleGroupItem = React39.forwardRef(function ToggleGroupItem2({ className,
|
|
|
11034
11189
|
);
|
|
11035
11190
|
});
|
|
11036
11191
|
ToggleGroupItem.displayName = ToggleGroupPrimitive.Item.displayName;
|
|
11192
|
+
var INLINE_CLASS = cn(
|
|
11193
|
+
"rounded-icon border-rule bg-bg-2 text-fg border px-1 py-px",
|
|
11194
|
+
"font-mono text-code"
|
|
11195
|
+
);
|
|
11196
|
+
var BLOCK_CLASS = cn(
|
|
11197
|
+
"rounded-btn border-rule bg-bg-2 text-fg block overflow-x-auto border px-3 py-2.5",
|
|
11198
|
+
"scrollbar-thin font-mono text-code",
|
|
11199
|
+
"focus-visible:[box-shadow:var(--shadow-focus-ring)] focus-visible:outline-none"
|
|
11200
|
+
);
|
|
11201
|
+
var Code = forwardRef(function Code2({ variant = "inline", className, children, ...props }, ref) {
|
|
11202
|
+
if (variant === "block") {
|
|
11203
|
+
return /* @__PURE__ */ jsx(
|
|
11204
|
+
"pre",
|
|
11205
|
+
{
|
|
11206
|
+
ref,
|
|
11207
|
+
tabIndex: 0,
|
|
11208
|
+
...slot(codeAnatomy, "root"),
|
|
11209
|
+
...stateAttributes({ variant }),
|
|
11210
|
+
className: cn(BLOCK_CLASS, className),
|
|
11211
|
+
...props,
|
|
11212
|
+
children: /* @__PURE__ */ jsx("code", { ...slot(codeAnatomy, "content"), children })
|
|
11213
|
+
}
|
|
11214
|
+
);
|
|
11215
|
+
}
|
|
11216
|
+
return /* @__PURE__ */ jsx(
|
|
11217
|
+
"code",
|
|
11218
|
+
{
|
|
11219
|
+
ref,
|
|
11220
|
+
...slot(codeAnatomy, "root"),
|
|
11221
|
+
...stateAttributes({ variant }),
|
|
11222
|
+
className: cn(INLINE_CLASS, className),
|
|
11223
|
+
...props,
|
|
11224
|
+
children
|
|
11225
|
+
}
|
|
11226
|
+
);
|
|
11227
|
+
});
|
|
11228
|
+
Code.displayName = "Code";
|
|
11037
11229
|
var TooltipProvider = TooltipPrimitive.Provider;
|
|
11038
11230
|
var TooltipTrigger = TooltipPrimitive.Trigger;
|
|
11039
11231
|
var TooltipPortal = TooltipPrimitive.Portal;
|
|
@@ -11157,6 +11349,252 @@ function IntentBadge({ tone = "muted", icon, children, className, ...props }) {
|
|
|
11157
11349
|
);
|
|
11158
11350
|
}
|
|
11159
11351
|
IntentBadge.displayName = "IntentBadge";
|
|
11352
|
+
var SIZE_CLASS = {
|
|
11353
|
+
display: "text-display",
|
|
11354
|
+
"title-page": "text-title-page",
|
|
11355
|
+
"title-section": "text-title-section",
|
|
11356
|
+
"title-sub": "text-title-sub",
|
|
11357
|
+
body: "text-body",
|
|
11358
|
+
"body-sm": "text-body-sm",
|
|
11359
|
+
label: "text-label",
|
|
11360
|
+
helper: "text-helper",
|
|
11361
|
+
caption: "text-caption",
|
|
11362
|
+
micro: "text-micro",
|
|
11363
|
+
overline: "text-overline uppercase",
|
|
11364
|
+
code: "text-code font-mono"
|
|
11365
|
+
};
|
|
11366
|
+
var COLOR_CLASS = {
|
|
11367
|
+
default: "text-fg",
|
|
11368
|
+
secondary: "text-fg-2",
|
|
11369
|
+
muted: "text-fg-3",
|
|
11370
|
+
subtle: "text-fg-4",
|
|
11371
|
+
inverse: "text-bg",
|
|
11372
|
+
danger: "text-danger-fg",
|
|
11373
|
+
success: "text-success-fg",
|
|
11374
|
+
warning: "text-warning-fg",
|
|
11375
|
+
brand: "text-brand"
|
|
11376
|
+
};
|
|
11377
|
+
var WEIGHT_CLASS = {
|
|
11378
|
+
regular: "font-normal",
|
|
11379
|
+
medium: "font-medium",
|
|
11380
|
+
semibold: "font-semibold",
|
|
11381
|
+
bold: "font-bold"
|
|
11382
|
+
};
|
|
11383
|
+
var Text = forwardRef(function Text2({ size = "body", color, weight, numeric, truncate, asChild, className, ...props }, ref) {
|
|
11384
|
+
const Comp = asChild ? Slot : "span";
|
|
11385
|
+
return /* @__PURE__ */ jsx(
|
|
11386
|
+
Comp,
|
|
11387
|
+
{
|
|
11388
|
+
ref,
|
|
11389
|
+
...slot(textAnatomy, "root"),
|
|
11390
|
+
className: cn(
|
|
11391
|
+
SIZE_CLASS[size],
|
|
11392
|
+
color && COLOR_CLASS[color],
|
|
11393
|
+
weight && WEIGHT_CLASS[weight],
|
|
11394
|
+
numeric && "numeric",
|
|
11395
|
+
truncate && "truncate",
|
|
11396
|
+
className
|
|
11397
|
+
),
|
|
11398
|
+
...props
|
|
11399
|
+
}
|
|
11400
|
+
);
|
|
11401
|
+
});
|
|
11402
|
+
Text.displayName = "Text";
|
|
11403
|
+
var DEFAULT_SIZE = {
|
|
11404
|
+
1: "title-page",
|
|
11405
|
+
2: "title-section",
|
|
11406
|
+
3: "title-sub",
|
|
11407
|
+
4: "title-sub",
|
|
11408
|
+
5: "title-sub",
|
|
11409
|
+
6: "title-sub"
|
|
11410
|
+
};
|
|
11411
|
+
var SIZE_CLASS2 = {
|
|
11412
|
+
display: "text-display",
|
|
11413
|
+
"title-page": "text-title-page",
|
|
11414
|
+
"title-section": "text-title-section",
|
|
11415
|
+
"title-sub": "text-title-sub"
|
|
11416
|
+
};
|
|
11417
|
+
var Heading = forwardRef(function Heading2({ level, size, className, ...props }, ref) {
|
|
11418
|
+
const Tag = `h${level}`;
|
|
11419
|
+
return /* @__PURE__ */ jsx(
|
|
11420
|
+
Tag,
|
|
11421
|
+
{
|
|
11422
|
+
ref,
|
|
11423
|
+
...slot(headingAnatomy, "root"),
|
|
11424
|
+
className: cn("font-display text-fg", SIZE_CLASS2[size ?? DEFAULT_SIZE[level]], className),
|
|
11425
|
+
...props
|
|
11426
|
+
}
|
|
11427
|
+
);
|
|
11428
|
+
});
|
|
11429
|
+
Heading.displayName = "Heading";
|
|
11430
|
+
|
|
11431
|
+
// src/primitives/layout/responsive.ts
|
|
11432
|
+
var GAP = {
|
|
11433
|
+
base: {
|
|
11434
|
+
none: "gap-0",
|
|
11435
|
+
xs: "gap-(--stack-gap-xs)",
|
|
11436
|
+
sm: "gap-(--stack-gap-sm)",
|
|
11437
|
+
md: "gap-(--stack-gap-md)",
|
|
11438
|
+
lg: "gap-(--stack-gap-lg)",
|
|
11439
|
+
xl: "gap-(--stack-gap-xl)"
|
|
11440
|
+
},
|
|
11441
|
+
sm: {
|
|
11442
|
+
none: "sm:gap-0",
|
|
11443
|
+
xs: "sm:gap-(--stack-gap-xs)",
|
|
11444
|
+
sm: "sm:gap-(--stack-gap-sm)",
|
|
11445
|
+
md: "sm:gap-(--stack-gap-md)",
|
|
11446
|
+
lg: "sm:gap-(--stack-gap-lg)",
|
|
11447
|
+
xl: "sm:gap-(--stack-gap-xl)"
|
|
11448
|
+
},
|
|
11449
|
+
md: {
|
|
11450
|
+
none: "md:gap-0",
|
|
11451
|
+
xs: "md:gap-(--stack-gap-xs)",
|
|
11452
|
+
sm: "md:gap-(--stack-gap-sm)",
|
|
11453
|
+
md: "md:gap-(--stack-gap-md)",
|
|
11454
|
+
lg: "md:gap-(--stack-gap-lg)",
|
|
11455
|
+
xl: "md:gap-(--stack-gap-xl)"
|
|
11456
|
+
},
|
|
11457
|
+
lg: {
|
|
11458
|
+
none: "lg:gap-0",
|
|
11459
|
+
xs: "lg:gap-(--stack-gap-xs)",
|
|
11460
|
+
sm: "lg:gap-(--stack-gap-sm)",
|
|
11461
|
+
md: "lg:gap-(--stack-gap-md)",
|
|
11462
|
+
lg: "lg:gap-(--stack-gap-lg)",
|
|
11463
|
+
xl: "lg:gap-(--stack-gap-xl)"
|
|
11464
|
+
}
|
|
11465
|
+
};
|
|
11466
|
+
var ALIGN = {
|
|
11467
|
+
start: "items-start",
|
|
11468
|
+
center: "items-center",
|
|
11469
|
+
end: "items-end",
|
|
11470
|
+
stretch: "items-stretch",
|
|
11471
|
+
baseline: "items-baseline"
|
|
11472
|
+
};
|
|
11473
|
+
var JUSTIFY = {
|
|
11474
|
+
start: "justify-start",
|
|
11475
|
+
center: "justify-center",
|
|
11476
|
+
end: "justify-end",
|
|
11477
|
+
between: "justify-between",
|
|
11478
|
+
around: "justify-around",
|
|
11479
|
+
evenly: "justify-evenly"
|
|
11480
|
+
};
|
|
11481
|
+
var BREAKPOINTS = ["sm", "md", "lg"];
|
|
11482
|
+
function responsiveClasses(value, fallback, table) {
|
|
11483
|
+
if (value === void 0 || typeof value === "string") {
|
|
11484
|
+
return [table.base[value ?? fallback]];
|
|
11485
|
+
}
|
|
11486
|
+
const classes = [table.base[value.base ?? fallback]];
|
|
11487
|
+
for (const breakpoint of BREAKPOINTS) {
|
|
11488
|
+
const step = value[breakpoint];
|
|
11489
|
+
if (step !== void 0) classes.push(table[breakpoint][step]);
|
|
11490
|
+
}
|
|
11491
|
+
return classes;
|
|
11492
|
+
}
|
|
11493
|
+
function gapClasses(gap, fallback) {
|
|
11494
|
+
return responsiveClasses(gap, fallback, GAP);
|
|
11495
|
+
}
|
|
11496
|
+
function alignClass(align) {
|
|
11497
|
+
return align === void 0 ? void 0 : ALIGN[align];
|
|
11498
|
+
}
|
|
11499
|
+
function justifyClass(justify) {
|
|
11500
|
+
return justify === void 0 ? void 0 : JUSTIFY[justify];
|
|
11501
|
+
}
|
|
11502
|
+
function wrapClass(wrap) {
|
|
11503
|
+
return wrap === void 0 ? void 0 : wrap ? "flex-wrap" : "flex-nowrap";
|
|
11504
|
+
}
|
|
11505
|
+
var DIRECTION = {
|
|
11506
|
+
base: { column: "flex-col", row: "flex-row" },
|
|
11507
|
+
sm: { column: "sm:flex-col", row: "sm:flex-row" },
|
|
11508
|
+
md: { column: "md:flex-col", row: "md:flex-row" },
|
|
11509
|
+
lg: { column: "lg:flex-col", row: "lg:flex-row" }
|
|
11510
|
+
};
|
|
11511
|
+
var BREAKPOINTS2 = ["sm", "md", "lg"];
|
|
11512
|
+
function directionClasses(direction) {
|
|
11513
|
+
if (direction === void 0 || typeof direction === "string") {
|
|
11514
|
+
return [DIRECTION.base[direction ?? "column"]];
|
|
11515
|
+
}
|
|
11516
|
+
const classes = [DIRECTION.base[direction.base ?? "column"]];
|
|
11517
|
+
for (const breakpoint of BREAKPOINTS2) {
|
|
11518
|
+
const value = direction[breakpoint];
|
|
11519
|
+
if (value !== void 0) classes.push(DIRECTION[breakpoint][value]);
|
|
11520
|
+
}
|
|
11521
|
+
return classes;
|
|
11522
|
+
}
|
|
11523
|
+
var Stack = forwardRef(function Stack2({ direction, gap, align, justify, wrap, className, ...props }, ref) {
|
|
11524
|
+
return /* @__PURE__ */ jsx(
|
|
11525
|
+
"div",
|
|
11526
|
+
{
|
|
11527
|
+
ref,
|
|
11528
|
+
...slot(stackAnatomy, "root"),
|
|
11529
|
+
className: cn(
|
|
11530
|
+
"flex",
|
|
11531
|
+
directionClasses(direction),
|
|
11532
|
+
gapClasses(gap, "md"),
|
|
11533
|
+
alignClass(align),
|
|
11534
|
+
justifyClass(justify),
|
|
11535
|
+
wrapClass(wrap),
|
|
11536
|
+
className
|
|
11537
|
+
),
|
|
11538
|
+
...props
|
|
11539
|
+
}
|
|
11540
|
+
);
|
|
11541
|
+
});
|
|
11542
|
+
Stack.displayName = "Stack";
|
|
11543
|
+
var Inline = forwardRef(function Inline2({ gap, align = "center", justify, wrap = true, className, ...props }, ref) {
|
|
11544
|
+
return /* @__PURE__ */ jsx(
|
|
11545
|
+
"div",
|
|
11546
|
+
{
|
|
11547
|
+
ref,
|
|
11548
|
+
...slot(inlineAnatomy, "root"),
|
|
11549
|
+
className: cn(
|
|
11550
|
+
"flex flex-row",
|
|
11551
|
+
gapClasses(gap, "md"),
|
|
11552
|
+
alignClass(align),
|
|
11553
|
+
justifyClass(justify),
|
|
11554
|
+
wrapClass(wrap),
|
|
11555
|
+
className
|
|
11556
|
+
),
|
|
11557
|
+
...props
|
|
11558
|
+
}
|
|
11559
|
+
);
|
|
11560
|
+
});
|
|
11561
|
+
Inline.displayName = "Inline";
|
|
11562
|
+
var PADDING = {
|
|
11563
|
+
none: "p-0",
|
|
11564
|
+
sm: "p-(--surface-pad-sm)",
|
|
11565
|
+
md: "p-(--surface-pad-md)",
|
|
11566
|
+
lg: "p-(--surface-pad-lg)"
|
|
11567
|
+
};
|
|
11568
|
+
var RADIUS = {
|
|
11569
|
+
none: "rounded-none",
|
|
11570
|
+
"surface-sm": "rounded-surface-sm",
|
|
11571
|
+
surface: "rounded-surface"
|
|
11572
|
+
};
|
|
11573
|
+
var ELEVATION = {
|
|
11574
|
+
none: void 0,
|
|
11575
|
+
flat: "shadow-flat",
|
|
11576
|
+
raised: "shadow-raised",
|
|
11577
|
+
floating: "shadow-floating",
|
|
11578
|
+
overlay: "shadow-overlay"
|
|
11579
|
+
};
|
|
11580
|
+
var Surface = forwardRef(function Surface2({ padding = "sm", radius = "surface", elevation = "none", className, ...props }, ref) {
|
|
11581
|
+
return /* @__PURE__ */ jsx(
|
|
11582
|
+
"div",
|
|
11583
|
+
{
|
|
11584
|
+
ref,
|
|
11585
|
+
...slot(surfaceAnatomy, "root"),
|
|
11586
|
+
className: cn(
|
|
11587
|
+
"border-rule bg-surface border",
|
|
11588
|
+
PADDING[padding],
|
|
11589
|
+
RADIUS[radius],
|
|
11590
|
+
ELEVATION[elevation],
|
|
11591
|
+
className
|
|
11592
|
+
),
|
|
11593
|
+
...props
|
|
11594
|
+
}
|
|
11595
|
+
);
|
|
11596
|
+
});
|
|
11597
|
+
Surface.displayName = "Surface";
|
|
11160
11598
|
var ICON_BTN = cn(
|
|
11161
11599
|
"inline-flex size-9 shrink-0 items-center justify-center rounded-[9px]",
|
|
11162
11600
|
"border-rule-strong bg-surface text-fg-3 border",
|
|
@@ -18941,20 +19379,8 @@ var Eyebrow = forwardRef(function Eyebrow2({ numeric, className, children, ...pr
|
|
|
18941
19379
|
return /* @__PURE__ */ jsx("div", { ref, className: cn(numeric ? "eyebrow-num" : "eyebrow", className), ...props, children });
|
|
18942
19380
|
});
|
|
18943
19381
|
Eyebrow.displayName = "Eyebrow";
|
|
18944
|
-
var KbdHint = forwardRef(function KbdHint2(
|
|
18945
|
-
return /* @__PURE__ */ jsx(
|
|
18946
|
-
"kbd",
|
|
18947
|
-
{
|
|
18948
|
-
ref,
|
|
18949
|
-
className: cn(
|
|
18950
|
-
"rounded-icon inline-flex h-5 min-w-5 items-center justify-center px-1.5",
|
|
18951
|
-
"border-rule bg-bg-2 text-fg-3 border font-mono text-[10.5px]",
|
|
18952
|
-
className
|
|
18953
|
-
),
|
|
18954
|
-
...props,
|
|
18955
|
-
children
|
|
18956
|
-
}
|
|
18957
|
-
);
|
|
19382
|
+
var KbdHint = forwardRef(function KbdHint2(props, ref) {
|
|
19383
|
+
return /* @__PURE__ */ jsx(Kbd, { ref, variant: "flat", ...props });
|
|
18958
19384
|
});
|
|
18959
19385
|
KbdHint.displayName = "KbdHint";
|
|
18960
19386
|
function SuggestionPills({
|
|
@@ -19828,6 +20254,6 @@ var BrandScope = forwardRef(function BrandScope2({ product, children, ...props }
|
|
|
19828
20254
|
});
|
|
19829
20255
|
BrandScope.displayName = "BrandScope";
|
|
19830
20256
|
|
|
19831
|
-
export { AIReceiptPanel, Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActivityEventItem, ActivityItem, ActivityList, AgreementPaneHeading, AgreementViewer, AiDraftCard, Alert, AlertCircleIcon, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AlertTriangleIcon, AlertTriangleSolidIcon, AppHeader, AppHeaderActions, AppHeaderBreadcrumb, AppHeaderSearch, AppHeaderTitle, AreaChart, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowRightSmallIcon, ArrowUpIcon, AspectRatio, Assignee, AssureAuditBrandIcon, AssureBooksBrandIcon, AssureProBrandIcon, AssureTaxBrandIcon, AtSignIcon, AttachmentChip, AttentionItem, Avatar, BRAND_PRODUCTS, Badge, BarChartIcon, BellIcon, Blockquote, BoldIcon, BottomNav, BrandScope, BrandScopeProvider, Breadcrumb, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, BriefcaseIcon, Building2Icon, BuildingIcon, BulkActionBar, BulkActionBarAction, BulkActionBarSeparator, Button, COUNTRY_CODES, Calendar, CalendarIcon, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CategoryDivider, CategoryTag, ChannelTabs, ChatBubbleIcon, CheckCircle2Icon, CheckCircleSolidIcon, CheckIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsUpDownIcon, CircleDotIcon, CircleIcon, ClientRailGroupHeader, ClientRailItem, ClientSelect, ClipboardCheckIcon, ClockIcon, CloseIcon, Collapsible, CollapsibleContent, CollapsibleTrigger, ComingSoon, CommandIcon, CommandPalette, ConfirmActionButton, Content16 as Content, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, CopyIcon, CornerDownLeftIcon, CountryFlag, CountrySelect, CreditCardIcon, DATE_DISPLAY_PLACEHOLDER, DangerAction, Dash, DashGrid, DataItem, DataTable, DataTableBody, DataTableCell, DataTableCellDue, DataTableCellId, DataTableCellMono, DataTableCellName, DataTableCheckbox, DataTableHead, DataTableHeader, DataTablePagination, DataTableResultsCount, DataTableRow, DataTableSearch, DataTableSpacer, DataTableToolbar, DataTableView, DatePicker, DateRangePicker, DetailGrid, DetailMain, DetailSpine, DetailSpineHeader, DetailSpineSection, DetailSpineStats, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DismissibleChip, DisplayMenu, DocumentChecklist, DocumentDetailActions, DocumentDetailBody, DocumentDetailHeader, DocumentDetailMetaRow, DocumentDetailPanel, DocumentDetailRequester, DocumentDetailTitle, DocumentFileCard, DocumentFileLine, DocumentFileRow, DocumentIcon, DocumentList, DocumentListSection, DocumentRequestCard, DocumentRequestDetail, DocumentRequestField, DocumentRequestUpload, DocumentRow, DocumentSourceFilter, DocumentSourceTag, DocumentsWorkspaceLayout, DollarSignIcon, DonutChart, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmailMessageCard, EmptyState, EngagementCard, EngagementTimeline, EngagementTimelineStep, ExtractIcon, EyeIcon, EyeOffIcon, Eyebrow, FileChip, FileIcon, FileReturnIcon, FileTextIcon, FileTypeBadge, FileUpload, FilterChip, FilterIcon, FlagIcon, FolderClosedIcon, FolderOpenIcon, FolderPlusIcon, FolderTree, FolderUpIcon, FormError, FormSection, FormSuccess, GlobeIcon, GoogleBrandIcon, Grid, HelpCircleIcon, HistoryIcon, HomeIcon, HoverCard, HoverCardContent, HoverCardPortal, HoverCardTrigger, IconAction, IconTile, InboxIcon, InfoCircleSolidIcon, InfoIcon, Input, IntentBadge, ItalicIcon, Kanban, KanbanCard, KanbanColumn, KanbanIcon, KbdHint, KeyIcon, KeyboardShortcutsDialog, KpiCard, Label4 as Label, LandmarkIcon, LayoutDashboardIcon, LayoutGridIcon, LayoutListIcon, LightningIcon, Link2Icon, LinkAction, LinkButton, LinkIcon, ListChecksIcon, ListIcon, ListOrderedIcon, LoaderIcon, LoadingRows, LockIcon, LockKeyholeIcon, LockOpenIcon, LogOutIcon, Logo, MailIcon, Main, MapPinIcon, MasterDetailLayout, MenuIcon, MessageBubble, MessageBubbleAction, MessageBubbleTombstone, MessageCircleIcon, MessageCircleWarningIcon, MessageComposer, MetadataGrid, MicrosoftBrandIcon, MinusIcon, MissingDocumentsPanel, MoneyCell, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoveIcon, MultiFilterPill, MultiSelectField, MutedSpec, NewMenu, NotificationFilter, NotificationItem, NotificationList, NotificationPanel, NotificationPanelFooter, NotificationPanelHeader, Numeric, OTPInput, PageHeader, PageHeaderSep, PageHeaderSpec, Pagination, PaletteIcon, PanelLeftCloseIcon, PanelLeftIcon, PaperclipIcon, PauseIcon, PdfPreview, PenSignIcon, PenToolIcon, PencilIcon, PhoneCountryInput, PhoneIcon, PhoneInput, PlayIcon, PlusIcon, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PrimaryAction, PriorityIcon, ProgressBar, ProgressRing, ProposalAddOn, ProposalBillingTerms, ProposalConsentGate, ProposalCustomPage, ProposalNote, ProposalPackageCard, ProposalPaymentCapture, ProposalPricingSummary, ProposalServiceRow, ProposalSignatureBlock, ProposalSignerList, QuestionnairePanel, Questions, RadioGroup3 as RadioGroup, RadioGroupItem, RankedBars, ReceiptIcon, ReplyIcon, ResponsiveDialog, RotateCcwIcon, RouteTransition, SERVICE_TONES, SaveIcon, ScrollArea, ScrollBar, SearchIcon, SearchInput, SearchSelect, SecondaryAction, Section, SectionHead, SectionHeader, SegmentedProgress, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SelectableKpiCard, SendIcon, Separator4 as Separator, SettingsIcon, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Shell, ShieldIcon, SideDrawer, Sidebar, SidebarBrand, SidebarBrandSwitcher, SidebarBrandSwitcherTile, SidebarBrandText, SidebarFooter, SidebarLink, SidebarLinkAction, SidebarLinkBadge, SidebarLinkGroup, SidebarLinkLabel, SidebarPinButton, SidebarProvider, SidebarSection, SidebarTrigger, SidebarUser, SignatureEditor, Skeleton, SkeletonCircle, SkeletonText, SlashIcon, Slider, SmartphoneIcon, SparkleIcon, SparklesIcon, Spinner, SpreadsheetPreview, StackedBarChart, StagePill, StarIcon, StarRating, Stat, StatusDot, StatusIcon, StatusPill, Stepper, StickyActionBar, StickyStack, StickyStackLayer, StickyStackSectionHeader, StickyStackSticky, StopIcon, StrikethroughIcon, SubmitButton, SuggestionPills, SuiteProgress, SunIcon, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableIcon, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, TagIcon, TagsCell, TeamIcon, TeamMemberSelect, Textarea, TimeLogger, TimeLoggerActions, TimeLoggerBillable, TimeLoggerContextRow, TimeLoggerEntry, TimeLoggerEntryList, TimeLoggerField, TimeLoggerFooter, TimeLoggerHeader, TimeLoggerNotes, TimeLoggerTimer, ToastProvider, ToggleGroup, ToggleGroupItem, Toolbar, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, Trash2Icon, TrashIcon, TrendingDownIcon, TrendingUpIcon, UnderlineIcon, UploadIcon, UserCircleIcon, UserIcon, UsersIcon, VisuallyHidden, WorkflowIcon, XCircleSolidIcon, XIcon, YEAR_DISPLAY_PLACEHOLDER, ZoomInIcon, ZoomOutIcon, alertVariants, applyMask, applyYearMask, attachmentChipVariants, badgeVariants, brandLabel, brandScope, buttonVariants, cardVariants, cn, colors, dateToIso, displayToIso, fileTypeBadgeVariants, fileTypeFromName, filterChipVariants, formatClock, formatCurrency, formatDuration, getFlagEmoji, iconTileVariants, inputVariants, isoToDate, isoToDisplay, isoToYear, labelVariants, parseDuration, parsePhoneForEditing, progressBarVariants, progressRingVariants, radii, reference, searchInputVariants, serviceToneLabel, serviceToneStyle, shadows, sidebarLinkBadgeVariants, spacing, spinnerVariants, starRatingVariants, statusDotVariants, suiteProgressFillVariants, surfaces, systemTokens, textareaVariants, typography, useBrandScope, useSidebarPeekLock, useSidebarState, useStopwatch, useToast, yearToIso };
|
|
20257
|
+
export { AIReceiptPanel, Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActivityEventItem, ActivityItem, ActivityList, AgreementPaneHeading, AgreementViewer, AiDraftCard, Alert, AlertCircleIcon, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AlertTriangleIcon, AlertTriangleSolidIcon, AppHeader, AppHeaderActions, AppHeaderBreadcrumb, AppHeaderSearch, AppHeaderTitle, AreaChart, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowRightSmallIcon, ArrowUpIcon, AspectRatio, Assignee, AssureAuditBrandIcon, AssureBooksBrandIcon, AssureProBrandIcon, AssureTaxBrandIcon, AtSignIcon, AttachmentChip, AttentionItem, Avatar, BRAND_PRODUCTS, Badge, BarChartIcon, BellIcon, Blockquote, BoldIcon, BottomNav, BrandScope, BrandScopeProvider, Breadcrumb, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, BriefcaseIcon, Building2Icon, BuildingIcon, BulkActionBar, BulkActionBarAction, BulkActionBarSeparator, Button, COUNTRY_CODES, Calendar, CalendarIcon, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CategoryDivider, CategoryTag, ChannelTabs, ChatBubbleIcon, CheckCircle2Icon, CheckCircleSolidIcon, CheckIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsUpDownIcon, CircleDotIcon, CircleIcon, ClientRailGroupHeader, ClientRailItem, ClientSelect, ClipboardCheckIcon, ClockIcon, CloseIcon, Code, Collapsible, CollapsibleContent, CollapsibleTrigger, ComingSoon, CommandIcon, CommandPalette, ConfirmActionButton, Content16 as Content, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, CopyIcon, CornerDownLeftIcon, CountryFlag, CountrySelect, CreditCardIcon, DATE_DISPLAY_PLACEHOLDER, DangerAction, Dash, DashGrid, DataItem, DataTable, DataTableBody, DataTableCell, DataTableCellDue, DataTableCellId, DataTableCellMono, DataTableCellName, DataTableCheckbox, DataTableHead, DataTableHeader, DataTablePagination, DataTableResultsCount, DataTableRow, DataTableSearch, DataTableSpacer, DataTableToolbar, DataTableView, DatePicker, DateRangePicker, DetailGrid, DetailMain, DetailSpine, DetailSpineHeader, DetailSpineSection, DetailSpineStats, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DismissibleChip, DisplayMenu, DocumentChecklist, DocumentDetailActions, DocumentDetailBody, DocumentDetailHeader, DocumentDetailMetaRow, DocumentDetailPanel, DocumentDetailRequester, DocumentDetailTitle, DocumentFileCard, DocumentFileLine, DocumentFileRow, DocumentIcon, DocumentList, DocumentListSection, DocumentRequestCard, DocumentRequestDetail, DocumentRequestField, DocumentRequestUpload, DocumentRow, DocumentSourceFilter, DocumentSourceTag, DocumentsWorkspaceLayout, DollarSignIcon, DonutChart, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmailMessageCard, EmptyState, EngagementCard, EngagementTimeline, EngagementTimelineStep, ExtractIcon, EyeIcon, EyeOffIcon, Eyebrow, FileChip, FileIcon, FileReturnIcon, FileTextIcon, FileTypeBadge, FileUpload, FilterChip, FilterIcon, FlagIcon, FolderClosedIcon, FolderOpenIcon, FolderPlusIcon, FolderTree, FolderUpIcon, FormError, FormSection, FormSuccess, GlobeIcon, GoogleBrandIcon, Grid, Heading, HelpCircleIcon, HistoryIcon, HomeIcon, HoverCard, HoverCardContent, HoverCardPortal, HoverCardTrigger, IconAction, IconTile, InboxIcon, InfoCircleSolidIcon, InfoIcon, Inline, Input, IntentBadge, ItalicIcon, Kanban, KanbanCard, KanbanColumn, KanbanIcon, Kbd, KbdHint, KeyIcon, KeyboardShortcutsDialog, KpiCard, Label4 as Label, LandmarkIcon, LayoutDashboardIcon, LayoutGridIcon, LayoutListIcon, LightningIcon, Link2Icon, LinkAction, LinkButton, LinkIcon, ListChecksIcon, ListIcon, ListOrderedIcon, LoaderIcon, LoadingRows, LockIcon, LockKeyholeIcon, LockOpenIcon, LogOutIcon, Logo, MailIcon, Main, MapPinIcon, MasterDetailLayout, MenuIcon, MessageBubble, MessageBubbleAction, MessageBubbleTombstone, MessageCircleIcon, MessageCircleWarningIcon, MessageComposer, MetadataGrid, MicrosoftBrandIcon, MinusIcon, MissingDocumentsPanel, MoneyCell, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoveIcon, MultiFilterPill, MultiSelectField, MutedSpec, NewMenu, NotificationFilter, NotificationItem, NotificationList, NotificationPanel, NotificationPanelFooter, NotificationPanelHeader, Numeric, OTPInput, PageHeader, PageHeaderSep, PageHeaderSpec, Pagination, PaletteIcon, PanelLeftCloseIcon, PanelLeftIcon, PaperclipIcon, PauseIcon, PdfPreview, PenSignIcon, PenToolIcon, PencilIcon, PhoneCountryInput, PhoneIcon, PhoneInput, PlayIcon, PlusIcon, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PrimaryAction, PriorityIcon, ProgressBar, ProgressRing, ProposalAddOn, ProposalBillingTerms, ProposalConsentGate, ProposalCustomPage, ProposalNote, ProposalPackageCard, ProposalPaymentCapture, ProposalPricingSummary, ProposalServiceRow, ProposalSignatureBlock, ProposalSignerList, QuestionnairePanel, Questions, RadioGroup3 as RadioGroup, RadioGroupItem, RankedBars, ReceiptIcon, ReplyIcon, ResponsiveDialog, RotateCcwIcon, RouteTransition, SERVICE_TONES, SaveIcon, ScrollArea, ScrollBar, SearchIcon, SearchInput, SearchSelect, SecondaryAction, Section, SectionHead, SectionHeader, SegmentedProgress, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SelectableKpiCard, SendIcon, Separator4 as Separator, SettingsIcon, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Shell, ShieldIcon, SideDrawer, Sidebar, SidebarBrand, SidebarBrandSwitcher, SidebarBrandSwitcherTile, SidebarBrandText, SidebarFooter, SidebarLink, SidebarLinkAction, SidebarLinkBadge, SidebarLinkGroup, SidebarLinkLabel, SidebarPinButton, SidebarProvider, SidebarSection, SidebarTrigger, SidebarUser, SignatureEditor, Skeleton, SkeletonCircle, SkeletonText, SlashIcon, Slider, SmartphoneIcon, SparkleIcon, SparklesIcon, Spinner, SpreadsheetPreview, Stack, StackedBarChart, StagePill, StarIcon, StarRating, Stat, StatusDot, StatusIcon, StatusPill, Stepper, StickyActionBar, StickyStack, StickyStackLayer, StickyStackSectionHeader, StickyStackSticky, StopIcon, StrikethroughIcon, SubmitButton, SuggestionPills, SuiteProgress, SunIcon, Surface, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableIcon, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, TagIcon, TagsCell, TeamIcon, TeamMemberSelect, Text, Textarea, TimeLogger, TimeLoggerActions, TimeLoggerBillable, TimeLoggerContextRow, TimeLoggerEntry, TimeLoggerEntryList, TimeLoggerField, TimeLoggerFooter, TimeLoggerHeader, TimeLoggerNotes, TimeLoggerTimer, ToastProvider, ToggleGroup, ToggleGroupItem, Toolbar, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, Trash2Icon, TrashIcon, TrendingDownIcon, TrendingUpIcon, UnderlineIcon, UploadIcon, UserCircleIcon, UserIcon, UsersIcon, VisuallyHidden, WorkflowIcon, XCircleSolidIcon, XIcon, YEAR_DISPLAY_PLACEHOLDER, ZoomInIcon, ZoomOutIcon, alertVariants, applyMask, applyYearMask, assetPath, attachmentChipVariants, badgeVariants, brandLabel, brandScope, buttonVariants, cardVariants, cn, colors, dateToIso, displayToIso, fileTypeBadgeVariants, fileTypeFromName, filterChipVariants, formatClock, formatCurrency, formatDuration, getAssetBasePath, getFlagEmoji, iconTileVariants, inputVariants, isoToDate, isoToDisplay, isoToYear, labelVariants, parseDuration, parsePhoneForEditing, progressBarVariants, progressRingVariants, radii, reference, searchInputVariants, serviceToneLabel, serviceToneStyle, setAssetBasePath, shadows, sidebarLinkBadgeVariants, spacing, spinnerVariants, starRatingVariants, statusDotVariants, suiteProgressFillVariants, surfaces, systemTokens, textareaVariants, typography, useBrandScope, useSidebarPeekLock, useSidebarState, useStopwatch, useToast, yearToIso };
|
|
19832
20258
|
//# sourceMappingURL=index.js.map
|
|
19833
20259
|
//# sourceMappingURL=index.js.map
|