@tenerife.music/ui 1.0.16 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{index-DPWxsWs3.d.cts → index-Cj8oRSOc.d.cts} +2 -156
- package/dist/{index-DPWxsWs3.d.ts → index-Cj8oRSOc.d.ts} +2 -156
- package/dist/index.cjs +4251 -6733
- package/dist/index.d.cts +1154 -1479
- package/dist/index.d.ts +1154 -1479
- package/dist/index.mjs +4263 -6719
- package/dist/preset.cjs +6 -6
- package/dist/preset.mjs +6 -6
- package/dist/styles.css +10 -150
- package/dist/theme/index.cjs +1306 -1306
- package/dist/theme/index.mjs +1306 -1306
- package/dist/tokens/index.cjs +32 -222
- package/dist/tokens/index.d.cts +1 -1
- package/dist/tokens/index.d.ts +1 -1
- package/dist/tokens/index.mjs +33 -222
- package/package.json +50 -41
|
@@ -2713,7 +2713,7 @@ type NavigationItemPadding = keyof typeof NAVIGATION_TOKENS.spacing.itemPadding;
|
|
|
2713
2713
|
/**
|
|
2714
2714
|
* Menu Component Tokens
|
|
2715
2715
|
*
|
|
2716
|
-
* Component-level design tokens for Menu components (
|
|
2716
|
+
* Component-level design tokens for Menu components (ContextMenu).
|
|
2717
2717
|
* Maps foundation tokens (spacing, radius, shadows, typography, motion) to menu-specific usage.
|
|
2718
2718
|
*
|
|
2719
2719
|
* All values use Tailwind utility classes that map to foundation tokens.
|
|
@@ -2910,160 +2910,6 @@ type PopoverContentWidth = keyof typeof POPOVER_TOKENS.content.width;
|
|
|
2910
2910
|
type PopoverArrowSize = keyof typeof POPOVER_TOKENS.arrow.size;
|
|
2911
2911
|
type PopoverArrowOffset = keyof typeof POPOVER_TOKENS.arrow.offset;
|
|
2912
2912
|
|
|
2913
|
-
/**
|
|
2914
|
-
* Dropdown Component Tokens
|
|
2915
|
-
*
|
|
2916
|
-
* Component-level design tokens for Dropdown component.
|
|
2917
|
-
* Maps foundation tokens (spacing, radius, shadows, typography) to dropdown-specific usage.
|
|
2918
|
-
*
|
|
2919
|
-
* All values use Tailwind utility classes that map to foundation tokens.
|
|
2920
|
-
*/
|
|
2921
|
-
/**
|
|
2922
|
-
* Dropdown Component Tokens
|
|
2923
|
-
*
|
|
2924
|
-
* Defines tokens for trigger, menu, and item variants.
|
|
2925
|
-
* Values are mapped to Tailwind utility classes for direct use.
|
|
2926
|
-
*/
|
|
2927
|
-
declare const DROPDOWN_TOKENS: {
|
|
2928
|
-
/**
|
|
2929
|
-
* Trigger tokens by size
|
|
2930
|
-
* Button element that opens/closes the dropdown
|
|
2931
|
-
*/
|
|
2932
|
-
readonly trigger: {
|
|
2933
|
-
readonly height: {
|
|
2934
|
-
readonly sm: "h-8";
|
|
2935
|
-
readonly md: "h-9";
|
|
2936
|
-
readonly lg: "h-10";
|
|
2937
|
-
};
|
|
2938
|
-
readonly padding: {
|
|
2939
|
-
readonly horizontal: {
|
|
2940
|
-
readonly sm: "px-sm";
|
|
2941
|
-
readonly md: "px-md";
|
|
2942
|
-
readonly lg: "px-lg";
|
|
2943
|
-
};
|
|
2944
|
-
readonly vertical: {
|
|
2945
|
-
readonly sm: "py-xs";
|
|
2946
|
-
readonly md: "py-xs";
|
|
2947
|
-
readonly lg: "py-sm";
|
|
2948
|
-
};
|
|
2949
|
-
};
|
|
2950
|
-
readonly radius: {
|
|
2951
|
-
readonly sm: "rounded-md";
|
|
2952
|
-
readonly md: "rounded-md";
|
|
2953
|
-
readonly lg: "rounded-md";
|
|
2954
|
-
};
|
|
2955
|
-
readonly fontSize: {
|
|
2956
|
-
readonly sm: "text-sm";
|
|
2957
|
-
readonly md: "text-base";
|
|
2958
|
-
readonly lg: "text-base";
|
|
2959
|
-
};
|
|
2960
|
-
readonly shadow: "shadow-sm";
|
|
2961
|
-
/**
|
|
2962
|
-
* Icon spacing for trigger
|
|
2963
|
-
*/
|
|
2964
|
-
readonly icon: {
|
|
2965
|
-
readonly spacing: "ml-sm";
|
|
2966
|
-
};
|
|
2967
|
-
};
|
|
2968
|
-
/**
|
|
2969
|
-
* Variant-based tokens
|
|
2970
|
-
* Border, background, text, and focus colors for different variants
|
|
2971
|
-
*/
|
|
2972
|
-
readonly variant: {
|
|
2973
|
-
readonly neutral: {
|
|
2974
|
-
readonly border: "border border-[hsl(var(--border))]";
|
|
2975
|
-
readonly background: "bg-[hsl(var(--popover))]";
|
|
2976
|
-
readonly text: "text-[hsl(var(--popover-foreground))]";
|
|
2977
|
-
readonly focus: "focus-visible:ring-2 focus-visible:ring-[hsl(var(--ring))] focus-visible:ring-offset-2";
|
|
2978
|
-
};
|
|
2979
|
-
readonly tinted: {
|
|
2980
|
-
readonly border: "border border-[hsl(var(--border))]";
|
|
2981
|
-
readonly background: "bg-[hsl(var(--muted))]";
|
|
2982
|
-
readonly text: "text-[hsl(var(--popover-foreground))]";
|
|
2983
|
-
readonly focus: "focus-visible:ring-2 focus-visible:ring-[hsl(var(--ring))] focus-visible:ring-offset-2";
|
|
2984
|
-
};
|
|
2985
|
-
};
|
|
2986
|
-
/**
|
|
2987
|
-
* Menu tokens by size
|
|
2988
|
-
* Container for the dropdown items
|
|
2989
|
-
*/
|
|
2990
|
-
readonly menu: {
|
|
2991
|
-
readonly border: {
|
|
2992
|
-
readonly default: "border border-[hsl(var(--border))]";
|
|
2993
|
-
};
|
|
2994
|
-
readonly background: {
|
|
2995
|
-
readonly neutral: "bg-[hsl(var(--popover))]";
|
|
2996
|
-
readonly tinted: "bg-[hsl(var(--muted))]";
|
|
2997
|
-
};
|
|
2998
|
-
readonly text: {
|
|
2999
|
-
readonly default: "text-[hsl(var(--popover-foreground))]";
|
|
3000
|
-
};
|
|
3001
|
-
readonly padding: {
|
|
3002
|
-
readonly sm: "p-sm";
|
|
3003
|
-
readonly md: "p-md";
|
|
3004
|
-
readonly lg: "p-lg";
|
|
3005
|
-
};
|
|
3006
|
-
readonly radius: {
|
|
3007
|
-
readonly sm: "rounded-md";
|
|
3008
|
-
readonly md: "rounded-lg";
|
|
3009
|
-
readonly lg: "rounded-lg";
|
|
3010
|
-
};
|
|
3011
|
-
readonly shadow: {
|
|
3012
|
-
readonly sm: "shadow-md";
|
|
3013
|
-
readonly md: "shadow-lg";
|
|
3014
|
-
readonly lg: "shadow-xl";
|
|
3015
|
-
};
|
|
3016
|
-
readonly minWidth: {
|
|
3017
|
-
readonly sm: "min-w-32";
|
|
3018
|
-
readonly md: "min-w-48";
|
|
3019
|
-
readonly lg: "min-w-64";
|
|
3020
|
-
};
|
|
3021
|
-
};
|
|
3022
|
-
/**
|
|
3023
|
-
* Width tokens
|
|
3024
|
-
* Common width utilities
|
|
3025
|
-
*/
|
|
3026
|
-
readonly width: {
|
|
3027
|
-
readonly full: "w-full";
|
|
3028
|
-
};
|
|
3029
|
-
/**
|
|
3030
|
-
* Item tokens by size
|
|
3031
|
-
* Individual menu item
|
|
3032
|
-
*/
|
|
3033
|
-
readonly item: {
|
|
3034
|
-
readonly background: {
|
|
3035
|
-
readonly focus: "focus-visible:bg-[hsl(var(--accent))]";
|
|
3036
|
-
readonly selected: "bg-[hsl(var(--accent))]";
|
|
3037
|
-
};
|
|
3038
|
-
readonly text: {
|
|
3039
|
-
readonly focus: "focus-visible:text-[hsl(var(--accent-foreground))]";
|
|
3040
|
-
readonly selected: "text-[hsl(var(--accent-foreground))]";
|
|
3041
|
-
};
|
|
3042
|
-
readonly padding: {
|
|
3043
|
-
readonly sm: "px-sm py-xs";
|
|
3044
|
-
readonly md: "px-md py-xs";
|
|
3045
|
-
readonly lg: "px-lg py-sm";
|
|
3046
|
-
};
|
|
3047
|
-
readonly radius: {
|
|
3048
|
-
readonly sm: "rounded-sm";
|
|
3049
|
-
readonly md: "rounded-md";
|
|
3050
|
-
readonly lg: "rounded-md";
|
|
3051
|
-
};
|
|
3052
|
-
readonly fontSize: {
|
|
3053
|
-
readonly sm: "text-sm";
|
|
3054
|
-
readonly md: "text-sm";
|
|
3055
|
-
readonly lg: "text-base";
|
|
3056
|
-
};
|
|
3057
|
-
};
|
|
3058
|
-
};
|
|
3059
|
-
/**
|
|
3060
|
-
* Type exports for Dropdown tokens
|
|
3061
|
-
*/
|
|
3062
|
-
type DropdownTriggerSize = keyof typeof DROPDOWN_TOKENS.trigger.height;
|
|
3063
|
-
type DropdownVariant = keyof typeof DROPDOWN_TOKENS.variant;
|
|
3064
|
-
type DropdownMenuSize = keyof typeof DROPDOWN_TOKENS.menu.padding;
|
|
3065
|
-
type DropdownItemSize = keyof typeof DROPDOWN_TOKENS.item.padding;
|
|
3066
|
-
|
|
3067
2913
|
/**
|
|
3068
2914
|
* Tooltip Component Tokens
|
|
3069
2915
|
*
|
|
@@ -7475,4 +7321,4 @@ type ResponsiveContextMenuSize = Responsive<ContextMenuSizeToken>;
|
|
|
7475
7321
|
*/
|
|
7476
7322
|
type ResponsiveContextMenuWidth = Responsive<ContextMenuWidthToken>;
|
|
7477
7323
|
|
|
7478
|
-
export { type
|
|
7324
|
+
export { type InputPaddingHorizontal as $, ALERT_TOKENS as A, BUTTON_TOKENS as B, CARD_TOKENS as C, DATA_TOKENS as D, type DomainCardBadge as E, type DomainCardImage as F, type DomainCardLayout as G, type DomainCardMetadata as H, ICON_TOKENS as I, type DomainCardMotion as J, type DomainCardPriceCapacity as K, type DomainCardSkeleton as L, MENU_TOKENS as M, NAVIGATION_TOKENS as N, OVERLAY_TOKENS as O, POPOVER_TOKENS as P, type DomainCardSkeletonContentWidth as Q, RADIO_TOKENS as R, SECTION_TOKENS as S, TEXT_TOKENS as T, type DomainCardSurface as U, type EmptyStateIconSize as V, type IconColor as W, type IconSize as X, type IconStroke as Y, type InputFontSize as Z, type InputHeight as _, CHECKBOX_TOKENS as a, type SurfaceVariant as a$, type InputPaddingVertical as a0, type InputRadius as a1, type InputSize as a2, type MenuContentMinWidth as a3, type MenuContentPadding as a4, type MenuContentRadius as a5, type MenuContentShadow as a6, type MenuIndicatorOffset as a7, type MenuIndicatorSize as a8, type MenuItemGap as a9, type RadioSize as aA, type RadioState as aB, type RadioVariant as aC, type SectionGap as aD, type SectionPadding as aE, type SelectContentPadding as aF, type SelectContentRadius as aG, type SelectItemFontSize as aH, type SelectItemPaddingHorizontal as aI, type SelectItemPaddingVertical as aJ, type SelectItemRadius as aK, type SelectLabelFontSize as aL, type SelectLabelPaddingHorizontal as aM, type SelectLabelPaddingVertical as aN, type SelectSeparatorMarginHorizontal as aO, type SelectSeparatorMarginVertical as aP, type SelectTriggerFontSize as aQ, type SelectTriggerHeight as aR, type SelectTriggerPaddingHorizontal as aS, type SelectTriggerPaddingVertical as aT, type SelectTriggerRadius as aU, type SkeletonAnimation as aV, type SkeletonBackground as aW, type SkeletonVariant as aX, type SurfacePadding as aY, type SurfaceRadius as aZ, type SurfaceShadow as a_, type MenuItemHeight as aa, type MenuItemPadding as ab, type MenuItemRadius as ac, type MenuLabelPadding as ad, type MenuSeparatorMargin as ae, type MotionAnimation as af, type MotionDuration as ag, type MotionEasing as ah, type MotionTransition as ai, type MotionTransitionPreset as aj, type NavigationItemPadding as ak, type NavigationListGap as al, type NavigationRadius as am, type NavigationShadow as an, type NavigationSize as ao, type NavigationState as ap, type NotificationPanelWidth as aq, type NotificationVariant as ar, type OverlayBackdropVariant as as, type OverlayModalSize as at, type PopoverArrowOffset as au, type PopoverArrowSize as av, type PopoverContentPadding as aw, type PopoverContentRadius as ax, type PopoverContentShadow as ay, type PopoverContentWidth as az, DOMAIN_TOKENS as b, primaryColoredShadows as b$, type SwitchSize as b0, type SwitchState as b1, type SwitchVariant as b2, type TableCellPadding as b3, type TableGap as b4, type TableHeaderPadding as b5, type TableRowHeight as b6, type TableShadow as b7, type TextFontSize as b8, type TextFontWeight as b9, type MotionV2Easing as bA, type MotionV2SlideDirection as bB, type MotionV2Transition as bC, motionV2CSSVariables as bD, motionV2Combined as bE, motionV2Durations as bF, motionV2Easings as bG, motionV2Fade as bH, motionV2Scale as bI, motionV2Slide as bJ, motionV2TailwindConfig as bK, motionV2Transitions as bL, type BorderRadius as bM, type ComponentRadius as bN, borderRadius as bO, componentRadius as bP, radiusCSSVariables as bQ, tailwindRadiusConfig as bR, type ColoredShadow as bS, type ElevationShadow as bT, type FocusRing as bU, type GlowEffect as bV, accentColoredShadows as bW, componentShadowMapping as bX, elevationShadows as bY, focusRings as bZ, glowEffects as b_, type TextLetterSpacing as ba, type TextLineHeight as bb, type ToastVariant as bc, type TooltipContentRadius as bd, type TooltipContentShadow as be, allCSSVariables as bf, allCSSVariablesCSS as bg, generateCSSVariablesCSS as bh, tokenSystemSummary as bi, type Animation as bj, type Duration as bk, type Easing as bl, type Keyframe as bm, type Spring as bn, type Transition as bo, animations as bp, durations as bq, easings as br, keyframes as bs, motionCSSVariables as bt, reducedMotion as bu, springs as bv, tailwindMotionConfig as bw, transitions as bx, type MotionV2CombinedType as by, type MotionV2Duration as bz, INPUT_TOKENS as c, type ResponsiveModalHeight as c$, shadowBase as c0, shadowCSSVariables as c1, shadowOpacity as c2, tailwindShadowConfig as c3, type ComponentSpacing as c4, type ContainerSpacing as c5, type GridSpacing as c6, type SectionSpacing as c7, type SemanticSpacing as c8, type Spacing as c9, typographyCSSVariables as cA, type AlignOffsetToken as cB, type AnimationPresetToken as cC, type AspectRatioToken as cD, type ColorToken as cE, type ContainerMaxWidthToken as cF, type ContainerPaddingToken as cG, type DelayToken as cH, type FlexBasisToken as cI, type LayoutSpaceToken as cJ, type ModalFooterAlignToken as cK, type ModalHeightToken as cL, type ModalSizeToken as cM, type ModalWidthToken as cN, type MotionDurationToken as cO, type MotionEasingToken as cP, type MotionToken as cQ, type MotionTransitionToken as cR, type RadiusToken as cS, type ResponsiveAlignOffset as cT, type ResponsiveAnimationPreset as cU, type ResponsiveAspectRatio as cV, type ResponsiveColor as cW, type ResponsiveContainerMaxWidth as cX, type ResponsiveContainerPadding as cY, type ResponsiveDelay as cZ, type ResponsiveFlexBasis as c_, type StackSpacing as ca, layoutSpacing as cb, semanticSpacing as cc, spacing as cd, spacingCSSVariables as ce, tailwindSpacingConfig as cf, UI_COLORS as cg, type CanonicalFontSize as ch, type CanonicalFontWeight as ci, type CanonicalLetterSpacing as cj, type CanonicalLineHeight as ck, type CanonicalTextColor as cl, type FontFamily as cm, type FontSize as cn, type FontWeight as co, type LetterSpacing as cp, type LineHeight as cq, type TextStyle as cr, fontFamily as cs, fontSize as ct, fontSizeWithMd as cu, fontWeight as cv, letterSpacing as cw, lineHeight as cx, tailwindTypographyConfig as cy, textStyles as cz, MOTION_TOKENS as d, type ResponsiveModalSize as d0, type ResponsiveModalWidth as d1, type ResponsiveMotion as d2, type ResponsiveRadius as d3, type ResponsiveSelectSize as d4, type ResponsiveSelectWidth as d5, type ResponsiveShadow as d6, type ResponsiveSideOffset as d7, type ResponsiveSpace as d8, type ResponsiveSurface as d9, type ResponsiveTextLineHeight as da, type ResponsiveTextSize as db, type ResponsiveTextWeight as dc, type SelectSizeToken as dd, type SelectStateToken as de, type SelectVariantToken as df, type SelectWidthToken as dg, type ShadowToken as dh, type SideOffsetToken as di, type SpaceToken as dj, type SpacingToken as dk, type SurfaceToken as dl, type TextLetterSpacingToken as dm, type TextLineHeightToken as dn, type TextSizeToken as dp, type TextWeightToken as dq, type Responsive as dr, type ResponsiveContextMenuSize as ds, type ResponsiveContextMenuWidth as dt, type ContextMenuItemToneToken as du, type ResponsiveTabsSize as dv, type TabsVariantToken as dw, type TabsToneToken as dx, type Breakpoint as dy, NOTIFICATION_TOKENS as e, SELECT_TOKENS as f, SURFACE_TOKENS as g, SWITCH_TOKENS as h, TOAST_TOKENS as i, TOOLTIP_TOKENS as j, type AlertVariant as k, type ButtonFontSize as l, type ButtonHeight as m, type ButtonPaddingHorizontal as n, type ButtonPaddingVertical as o, type ButtonShadow as p, type CardPadding as q, type CardRadius as r, type CardShadow as s, type CardSize as t, type CardSpacingVertical as u, type CheckboxSize as v, type CheckboxState as w, type CheckboxVariant as x, type DataListLabelWidth as y, type DataListRowPadding as z };
|
|
@@ -2713,7 +2713,7 @@ type NavigationItemPadding = keyof typeof NAVIGATION_TOKENS.spacing.itemPadding;
|
|
|
2713
2713
|
/**
|
|
2714
2714
|
* Menu Component Tokens
|
|
2715
2715
|
*
|
|
2716
|
-
* Component-level design tokens for Menu components (
|
|
2716
|
+
* Component-level design tokens for Menu components (ContextMenu).
|
|
2717
2717
|
* Maps foundation tokens (spacing, radius, shadows, typography, motion) to menu-specific usage.
|
|
2718
2718
|
*
|
|
2719
2719
|
* All values use Tailwind utility classes that map to foundation tokens.
|
|
@@ -2910,160 +2910,6 @@ type PopoverContentWidth = keyof typeof POPOVER_TOKENS.content.width;
|
|
|
2910
2910
|
type PopoverArrowSize = keyof typeof POPOVER_TOKENS.arrow.size;
|
|
2911
2911
|
type PopoverArrowOffset = keyof typeof POPOVER_TOKENS.arrow.offset;
|
|
2912
2912
|
|
|
2913
|
-
/**
|
|
2914
|
-
* Dropdown Component Tokens
|
|
2915
|
-
*
|
|
2916
|
-
* Component-level design tokens for Dropdown component.
|
|
2917
|
-
* Maps foundation tokens (spacing, radius, shadows, typography) to dropdown-specific usage.
|
|
2918
|
-
*
|
|
2919
|
-
* All values use Tailwind utility classes that map to foundation tokens.
|
|
2920
|
-
*/
|
|
2921
|
-
/**
|
|
2922
|
-
* Dropdown Component Tokens
|
|
2923
|
-
*
|
|
2924
|
-
* Defines tokens for trigger, menu, and item variants.
|
|
2925
|
-
* Values are mapped to Tailwind utility classes for direct use.
|
|
2926
|
-
*/
|
|
2927
|
-
declare const DROPDOWN_TOKENS: {
|
|
2928
|
-
/**
|
|
2929
|
-
* Trigger tokens by size
|
|
2930
|
-
* Button element that opens/closes the dropdown
|
|
2931
|
-
*/
|
|
2932
|
-
readonly trigger: {
|
|
2933
|
-
readonly height: {
|
|
2934
|
-
readonly sm: "h-8";
|
|
2935
|
-
readonly md: "h-9";
|
|
2936
|
-
readonly lg: "h-10";
|
|
2937
|
-
};
|
|
2938
|
-
readonly padding: {
|
|
2939
|
-
readonly horizontal: {
|
|
2940
|
-
readonly sm: "px-sm";
|
|
2941
|
-
readonly md: "px-md";
|
|
2942
|
-
readonly lg: "px-lg";
|
|
2943
|
-
};
|
|
2944
|
-
readonly vertical: {
|
|
2945
|
-
readonly sm: "py-xs";
|
|
2946
|
-
readonly md: "py-xs";
|
|
2947
|
-
readonly lg: "py-sm";
|
|
2948
|
-
};
|
|
2949
|
-
};
|
|
2950
|
-
readonly radius: {
|
|
2951
|
-
readonly sm: "rounded-md";
|
|
2952
|
-
readonly md: "rounded-md";
|
|
2953
|
-
readonly lg: "rounded-md";
|
|
2954
|
-
};
|
|
2955
|
-
readonly fontSize: {
|
|
2956
|
-
readonly sm: "text-sm";
|
|
2957
|
-
readonly md: "text-base";
|
|
2958
|
-
readonly lg: "text-base";
|
|
2959
|
-
};
|
|
2960
|
-
readonly shadow: "shadow-sm";
|
|
2961
|
-
/**
|
|
2962
|
-
* Icon spacing for trigger
|
|
2963
|
-
*/
|
|
2964
|
-
readonly icon: {
|
|
2965
|
-
readonly spacing: "ml-sm";
|
|
2966
|
-
};
|
|
2967
|
-
};
|
|
2968
|
-
/**
|
|
2969
|
-
* Variant-based tokens
|
|
2970
|
-
* Border, background, text, and focus colors for different variants
|
|
2971
|
-
*/
|
|
2972
|
-
readonly variant: {
|
|
2973
|
-
readonly neutral: {
|
|
2974
|
-
readonly border: "border border-[hsl(var(--border))]";
|
|
2975
|
-
readonly background: "bg-[hsl(var(--popover))]";
|
|
2976
|
-
readonly text: "text-[hsl(var(--popover-foreground))]";
|
|
2977
|
-
readonly focus: "focus-visible:ring-2 focus-visible:ring-[hsl(var(--ring))] focus-visible:ring-offset-2";
|
|
2978
|
-
};
|
|
2979
|
-
readonly tinted: {
|
|
2980
|
-
readonly border: "border border-[hsl(var(--border))]";
|
|
2981
|
-
readonly background: "bg-[hsl(var(--muted))]";
|
|
2982
|
-
readonly text: "text-[hsl(var(--popover-foreground))]";
|
|
2983
|
-
readonly focus: "focus-visible:ring-2 focus-visible:ring-[hsl(var(--ring))] focus-visible:ring-offset-2";
|
|
2984
|
-
};
|
|
2985
|
-
};
|
|
2986
|
-
/**
|
|
2987
|
-
* Menu tokens by size
|
|
2988
|
-
* Container for the dropdown items
|
|
2989
|
-
*/
|
|
2990
|
-
readonly menu: {
|
|
2991
|
-
readonly border: {
|
|
2992
|
-
readonly default: "border border-[hsl(var(--border))]";
|
|
2993
|
-
};
|
|
2994
|
-
readonly background: {
|
|
2995
|
-
readonly neutral: "bg-[hsl(var(--popover))]";
|
|
2996
|
-
readonly tinted: "bg-[hsl(var(--muted))]";
|
|
2997
|
-
};
|
|
2998
|
-
readonly text: {
|
|
2999
|
-
readonly default: "text-[hsl(var(--popover-foreground))]";
|
|
3000
|
-
};
|
|
3001
|
-
readonly padding: {
|
|
3002
|
-
readonly sm: "p-sm";
|
|
3003
|
-
readonly md: "p-md";
|
|
3004
|
-
readonly lg: "p-lg";
|
|
3005
|
-
};
|
|
3006
|
-
readonly radius: {
|
|
3007
|
-
readonly sm: "rounded-md";
|
|
3008
|
-
readonly md: "rounded-lg";
|
|
3009
|
-
readonly lg: "rounded-lg";
|
|
3010
|
-
};
|
|
3011
|
-
readonly shadow: {
|
|
3012
|
-
readonly sm: "shadow-md";
|
|
3013
|
-
readonly md: "shadow-lg";
|
|
3014
|
-
readonly lg: "shadow-xl";
|
|
3015
|
-
};
|
|
3016
|
-
readonly minWidth: {
|
|
3017
|
-
readonly sm: "min-w-32";
|
|
3018
|
-
readonly md: "min-w-48";
|
|
3019
|
-
readonly lg: "min-w-64";
|
|
3020
|
-
};
|
|
3021
|
-
};
|
|
3022
|
-
/**
|
|
3023
|
-
* Width tokens
|
|
3024
|
-
* Common width utilities
|
|
3025
|
-
*/
|
|
3026
|
-
readonly width: {
|
|
3027
|
-
readonly full: "w-full";
|
|
3028
|
-
};
|
|
3029
|
-
/**
|
|
3030
|
-
* Item tokens by size
|
|
3031
|
-
* Individual menu item
|
|
3032
|
-
*/
|
|
3033
|
-
readonly item: {
|
|
3034
|
-
readonly background: {
|
|
3035
|
-
readonly focus: "focus-visible:bg-[hsl(var(--accent))]";
|
|
3036
|
-
readonly selected: "bg-[hsl(var(--accent))]";
|
|
3037
|
-
};
|
|
3038
|
-
readonly text: {
|
|
3039
|
-
readonly focus: "focus-visible:text-[hsl(var(--accent-foreground))]";
|
|
3040
|
-
readonly selected: "text-[hsl(var(--accent-foreground))]";
|
|
3041
|
-
};
|
|
3042
|
-
readonly padding: {
|
|
3043
|
-
readonly sm: "px-sm py-xs";
|
|
3044
|
-
readonly md: "px-md py-xs";
|
|
3045
|
-
readonly lg: "px-lg py-sm";
|
|
3046
|
-
};
|
|
3047
|
-
readonly radius: {
|
|
3048
|
-
readonly sm: "rounded-sm";
|
|
3049
|
-
readonly md: "rounded-md";
|
|
3050
|
-
readonly lg: "rounded-md";
|
|
3051
|
-
};
|
|
3052
|
-
readonly fontSize: {
|
|
3053
|
-
readonly sm: "text-sm";
|
|
3054
|
-
readonly md: "text-sm";
|
|
3055
|
-
readonly lg: "text-base";
|
|
3056
|
-
};
|
|
3057
|
-
};
|
|
3058
|
-
};
|
|
3059
|
-
/**
|
|
3060
|
-
* Type exports for Dropdown tokens
|
|
3061
|
-
*/
|
|
3062
|
-
type DropdownTriggerSize = keyof typeof DROPDOWN_TOKENS.trigger.height;
|
|
3063
|
-
type DropdownVariant = keyof typeof DROPDOWN_TOKENS.variant;
|
|
3064
|
-
type DropdownMenuSize = keyof typeof DROPDOWN_TOKENS.menu.padding;
|
|
3065
|
-
type DropdownItemSize = keyof typeof DROPDOWN_TOKENS.item.padding;
|
|
3066
|
-
|
|
3067
2913
|
/**
|
|
3068
2914
|
* Tooltip Component Tokens
|
|
3069
2915
|
*
|
|
@@ -7475,4 +7321,4 @@ type ResponsiveContextMenuSize = Responsive<ContextMenuSizeToken>;
|
|
|
7475
7321
|
*/
|
|
7476
7322
|
type ResponsiveContextMenuWidth = Responsive<ContextMenuWidthToken>;
|
|
7477
7323
|
|
|
7478
|
-
export { type
|
|
7324
|
+
export { type InputPaddingHorizontal as $, ALERT_TOKENS as A, BUTTON_TOKENS as B, CARD_TOKENS as C, DATA_TOKENS as D, type DomainCardBadge as E, type DomainCardImage as F, type DomainCardLayout as G, type DomainCardMetadata as H, ICON_TOKENS as I, type DomainCardMotion as J, type DomainCardPriceCapacity as K, type DomainCardSkeleton as L, MENU_TOKENS as M, NAVIGATION_TOKENS as N, OVERLAY_TOKENS as O, POPOVER_TOKENS as P, type DomainCardSkeletonContentWidth as Q, RADIO_TOKENS as R, SECTION_TOKENS as S, TEXT_TOKENS as T, type DomainCardSurface as U, type EmptyStateIconSize as V, type IconColor as W, type IconSize as X, type IconStroke as Y, type InputFontSize as Z, type InputHeight as _, CHECKBOX_TOKENS as a, type SurfaceVariant as a$, type InputPaddingVertical as a0, type InputRadius as a1, type InputSize as a2, type MenuContentMinWidth as a3, type MenuContentPadding as a4, type MenuContentRadius as a5, type MenuContentShadow as a6, type MenuIndicatorOffset as a7, type MenuIndicatorSize as a8, type MenuItemGap as a9, type RadioSize as aA, type RadioState as aB, type RadioVariant as aC, type SectionGap as aD, type SectionPadding as aE, type SelectContentPadding as aF, type SelectContentRadius as aG, type SelectItemFontSize as aH, type SelectItemPaddingHorizontal as aI, type SelectItemPaddingVertical as aJ, type SelectItemRadius as aK, type SelectLabelFontSize as aL, type SelectLabelPaddingHorizontal as aM, type SelectLabelPaddingVertical as aN, type SelectSeparatorMarginHorizontal as aO, type SelectSeparatorMarginVertical as aP, type SelectTriggerFontSize as aQ, type SelectTriggerHeight as aR, type SelectTriggerPaddingHorizontal as aS, type SelectTriggerPaddingVertical as aT, type SelectTriggerRadius as aU, type SkeletonAnimation as aV, type SkeletonBackground as aW, type SkeletonVariant as aX, type SurfacePadding as aY, type SurfaceRadius as aZ, type SurfaceShadow as a_, type MenuItemHeight as aa, type MenuItemPadding as ab, type MenuItemRadius as ac, type MenuLabelPadding as ad, type MenuSeparatorMargin as ae, type MotionAnimation as af, type MotionDuration as ag, type MotionEasing as ah, type MotionTransition as ai, type MotionTransitionPreset as aj, type NavigationItemPadding as ak, type NavigationListGap as al, type NavigationRadius as am, type NavigationShadow as an, type NavigationSize as ao, type NavigationState as ap, type NotificationPanelWidth as aq, type NotificationVariant as ar, type OverlayBackdropVariant as as, type OverlayModalSize as at, type PopoverArrowOffset as au, type PopoverArrowSize as av, type PopoverContentPadding as aw, type PopoverContentRadius as ax, type PopoverContentShadow as ay, type PopoverContentWidth as az, DOMAIN_TOKENS as b, primaryColoredShadows as b$, type SwitchSize as b0, type SwitchState as b1, type SwitchVariant as b2, type TableCellPadding as b3, type TableGap as b4, type TableHeaderPadding as b5, type TableRowHeight as b6, type TableShadow as b7, type TextFontSize as b8, type TextFontWeight as b9, type MotionV2Easing as bA, type MotionV2SlideDirection as bB, type MotionV2Transition as bC, motionV2CSSVariables as bD, motionV2Combined as bE, motionV2Durations as bF, motionV2Easings as bG, motionV2Fade as bH, motionV2Scale as bI, motionV2Slide as bJ, motionV2TailwindConfig as bK, motionV2Transitions as bL, type BorderRadius as bM, type ComponentRadius as bN, borderRadius as bO, componentRadius as bP, radiusCSSVariables as bQ, tailwindRadiusConfig as bR, type ColoredShadow as bS, type ElevationShadow as bT, type FocusRing as bU, type GlowEffect as bV, accentColoredShadows as bW, componentShadowMapping as bX, elevationShadows as bY, focusRings as bZ, glowEffects as b_, type TextLetterSpacing as ba, type TextLineHeight as bb, type ToastVariant as bc, type TooltipContentRadius as bd, type TooltipContentShadow as be, allCSSVariables as bf, allCSSVariablesCSS as bg, generateCSSVariablesCSS as bh, tokenSystemSummary as bi, type Animation as bj, type Duration as bk, type Easing as bl, type Keyframe as bm, type Spring as bn, type Transition as bo, animations as bp, durations as bq, easings as br, keyframes as bs, motionCSSVariables as bt, reducedMotion as bu, springs as bv, tailwindMotionConfig as bw, transitions as bx, type MotionV2CombinedType as by, type MotionV2Duration as bz, INPUT_TOKENS as c, type ResponsiveModalHeight as c$, shadowBase as c0, shadowCSSVariables as c1, shadowOpacity as c2, tailwindShadowConfig as c3, type ComponentSpacing as c4, type ContainerSpacing as c5, type GridSpacing as c6, type SectionSpacing as c7, type SemanticSpacing as c8, type Spacing as c9, typographyCSSVariables as cA, type AlignOffsetToken as cB, type AnimationPresetToken as cC, type AspectRatioToken as cD, type ColorToken as cE, type ContainerMaxWidthToken as cF, type ContainerPaddingToken as cG, type DelayToken as cH, type FlexBasisToken as cI, type LayoutSpaceToken as cJ, type ModalFooterAlignToken as cK, type ModalHeightToken as cL, type ModalSizeToken as cM, type ModalWidthToken as cN, type MotionDurationToken as cO, type MotionEasingToken as cP, type MotionToken as cQ, type MotionTransitionToken as cR, type RadiusToken as cS, type ResponsiveAlignOffset as cT, type ResponsiveAnimationPreset as cU, type ResponsiveAspectRatio as cV, type ResponsiveColor as cW, type ResponsiveContainerMaxWidth as cX, type ResponsiveContainerPadding as cY, type ResponsiveDelay as cZ, type ResponsiveFlexBasis as c_, type StackSpacing as ca, layoutSpacing as cb, semanticSpacing as cc, spacing as cd, spacingCSSVariables as ce, tailwindSpacingConfig as cf, UI_COLORS as cg, type CanonicalFontSize as ch, type CanonicalFontWeight as ci, type CanonicalLetterSpacing as cj, type CanonicalLineHeight as ck, type CanonicalTextColor as cl, type FontFamily as cm, type FontSize as cn, type FontWeight as co, type LetterSpacing as cp, type LineHeight as cq, type TextStyle as cr, fontFamily as cs, fontSize as ct, fontSizeWithMd as cu, fontWeight as cv, letterSpacing as cw, lineHeight as cx, tailwindTypographyConfig as cy, textStyles as cz, MOTION_TOKENS as d, type ResponsiveModalSize as d0, type ResponsiveModalWidth as d1, type ResponsiveMotion as d2, type ResponsiveRadius as d3, type ResponsiveSelectSize as d4, type ResponsiveSelectWidth as d5, type ResponsiveShadow as d6, type ResponsiveSideOffset as d7, type ResponsiveSpace as d8, type ResponsiveSurface as d9, type ResponsiveTextLineHeight as da, type ResponsiveTextSize as db, type ResponsiveTextWeight as dc, type SelectSizeToken as dd, type SelectStateToken as de, type SelectVariantToken as df, type SelectWidthToken as dg, type ShadowToken as dh, type SideOffsetToken as di, type SpaceToken as dj, type SpacingToken as dk, type SurfaceToken as dl, type TextLetterSpacingToken as dm, type TextLineHeightToken as dn, type TextSizeToken as dp, type TextWeightToken as dq, type Responsive as dr, type ResponsiveContextMenuSize as ds, type ResponsiveContextMenuWidth as dt, type ContextMenuItemToneToken as du, type ResponsiveTabsSize as dv, type TabsVariantToken as dw, type TabsToneToken as dx, type Breakpoint as dy, NOTIFICATION_TOKENS as e, SELECT_TOKENS as f, SURFACE_TOKENS as g, SWITCH_TOKENS as h, TOAST_TOKENS as i, TOOLTIP_TOKENS as j, type AlertVariant as k, type ButtonFontSize as l, type ButtonHeight as m, type ButtonPaddingHorizontal as n, type ButtonPaddingVertical as o, type ButtonShadow as p, type CardPadding as q, type CardRadius as r, type CardShadow as s, type CardSize as t, type CardSpacingVertical as u, type CheckboxSize as v, type CheckboxState as w, type CheckboxVariant as x, type DataListLabelWidth as y, type DataListRowPadding as z };
|