@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.
@@ -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 (DropdownMenu, ContextMenu).
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 IconColor as $, ALERT_TOKENS as A, BUTTON_TOKENS as B, CARD_TOKENS as C, DATA_TOKENS as D, type DataListRowPadding as E, type DomainCardBadge as F, type DomainCardImage as G, type DomainCardLayout as H, ICON_TOKENS as I, type DomainCardMetadata as J, type DomainCardMotion as K, type DomainCardPriceCapacity as L, MENU_TOKENS as M, NAVIGATION_TOKENS as N, OVERLAY_TOKENS as O, POPOVER_TOKENS as P, type DomainCardSkeleton as Q, RADIO_TOKENS as R, SECTION_TOKENS as S, TEXT_TOKENS as T, type DomainCardSkeletonContentWidth as U, type DomainCardSurface as V, type DropdownItemSize as W, type DropdownMenuSize as X, type DropdownTriggerSize as Y, type DropdownVariant as Z, type EmptyStateIconSize as _, CHECKBOX_TOKENS as a, type SkeletonBackground as a$, type IconSize as a0, type IconStroke as a1, type InputFontSize as a2, type InputHeight as a3, type InputPaddingHorizontal as a4, type InputPaddingVertical as a5, type InputRadius as a6, type InputSize as a7, type MenuContentMinWidth as a8, type MenuContentPadding as a9, type PopoverArrowSize as aA, type PopoverContentPadding as aB, type PopoverContentRadius as aC, type PopoverContentShadow as aD, type PopoverContentWidth as aE, type RadioSize as aF, type RadioState as aG, type RadioVariant as aH, type SectionGap as aI, type SectionPadding as aJ, type SelectContentPadding as aK, type SelectContentRadius as aL, type SelectItemFontSize as aM, type SelectItemPaddingHorizontal as aN, type SelectItemPaddingVertical as aO, type SelectItemRadius as aP, type SelectLabelFontSize as aQ, type SelectLabelPaddingHorizontal as aR, type SelectLabelPaddingVertical as aS, type SelectSeparatorMarginHorizontal as aT, type SelectSeparatorMarginVertical as aU, type SelectTriggerFontSize as aV, type SelectTriggerHeight as aW, type SelectTriggerPaddingHorizontal as aX, type SelectTriggerPaddingVertical as aY, type SelectTriggerRadius as aZ, type SkeletonAnimation as a_, type MenuContentRadius as aa, type MenuContentShadow as ab, type MenuIndicatorOffset as ac, type MenuIndicatorSize as ad, type MenuItemGap as ae, type MenuItemHeight as af, type MenuItemPadding as ag, type MenuItemRadius as ah, type MenuLabelPadding as ai, type MenuSeparatorMargin as aj, type MotionAnimation as ak, type MotionDuration as al, type MotionEasing as am, type MotionTransition as an, type MotionTransitionPreset as ao, type NavigationItemPadding as ap, type NavigationListGap as aq, type NavigationRadius as ar, type NavigationShadow as as, type NavigationSize as at, type NavigationState as au, type NotificationPanelWidth as av, type NotificationVariant as aw, type OverlayBackdropVariant as ax, type OverlayModalSize as ay, type PopoverArrowOffset as az, DOMAIN_TOKENS as b, accentColoredShadows as b$, type SkeletonVariant as b0, type SurfacePadding as b1, type SurfaceRadius as b2, type SurfaceShadow as b3, type SurfaceVariant as b4, type SwitchSize as b5, type SwitchState as b6, type SwitchVariant as b7, type TableCellPadding as b8, type TableGap as b9, springs as bA, tailwindMotionConfig as bB, transitions as bC, type MotionV2CombinedType as bD, type MotionV2Duration as bE, type MotionV2Easing as bF, type MotionV2SlideDirection as bG, type MotionV2Transition as bH, motionV2CSSVariables as bI, motionV2Combined as bJ, motionV2Durations as bK, motionV2Easings as bL, motionV2Fade as bM, motionV2Scale as bN, motionV2Slide as bO, motionV2TailwindConfig as bP, motionV2Transitions as bQ, type BorderRadius as bR, type ComponentRadius as bS, borderRadius as bT, componentRadius as bU, radiusCSSVariables as bV, tailwindRadiusConfig as bW, type ColoredShadow as bX, type ElevationShadow as bY, type FocusRing as bZ, type GlowEffect as b_, type TableHeaderPadding as ba, type TableRowHeight as bb, type TableShadow as bc, type TextFontSize as bd, type TextFontWeight as be, type TextLetterSpacing as bf, type TextLineHeight as bg, type ToastVariant as bh, type TooltipContentRadius as bi, type TooltipContentShadow as bj, allCSSVariables as bk, allCSSVariablesCSS as bl, generateCSSVariablesCSS as bm, tokenSystemSummary as bn, type Animation as bo, type Duration as bp, type Easing as bq, type Keyframe as br, type Spring as bs, type Transition as bt, animations as bu, durations as bv, easings as bw, keyframes as bx, motionCSSVariables as by, reducedMotion as bz, DROPDOWN_TOKENS as c, type ResponsiveColor as c$, componentShadowMapping as c0, elevationShadows as c1, focusRings as c2, glowEffects as c3, primaryColoredShadows as c4, shadowBase as c5, shadowCSSVariables as c6, shadowOpacity as c7, tailwindShadowConfig as c8, type ComponentSpacing as c9, fontWeight as cA, letterSpacing as cB, lineHeight as cC, tailwindTypographyConfig as cD, textStyles as cE, typographyCSSVariables as cF, type AlignOffsetToken as cG, type AnimationPresetToken as cH, type AspectRatioToken as cI, type ColorToken as cJ, type ContainerMaxWidthToken as cK, type ContainerPaddingToken as cL, type DelayToken as cM, type FlexBasisToken as cN, type LayoutSpaceToken as cO, type ModalFooterAlignToken as cP, type ModalHeightToken as cQ, type ModalSizeToken as cR, type ModalWidthToken as cS, type MotionDurationToken as cT, type MotionEasingToken as cU, type MotionToken as cV, type MotionTransitionToken as cW, type RadiusToken as cX, type ResponsiveAlignOffset as cY, type ResponsiveAnimationPreset as cZ, type ResponsiveAspectRatio as c_, type ContainerSpacing as ca, type GridSpacing as cb, type SectionSpacing as cc, type SemanticSpacing as cd, type Spacing as ce, type StackSpacing as cf, layoutSpacing as cg, semanticSpacing as ch, spacing as ci, spacingCSSVariables as cj, tailwindSpacingConfig as ck, UI_COLORS as cl, type CanonicalFontSize as cm, type CanonicalFontWeight as cn, type CanonicalLetterSpacing as co, type CanonicalLineHeight as cp, type CanonicalTextColor as cq, type FontFamily as cr, type FontSize as cs, type FontWeight as ct, type LetterSpacing as cu, type LineHeight as cv, type TextStyle as cw, fontFamily as cx, fontSize as cy, fontSizeWithMd as cz, INPUT_TOKENS as d, type ResponsiveContainerMaxWidth as d0, type ResponsiveContainerPadding as d1, type ResponsiveDelay as d2, type ResponsiveFlexBasis as d3, type ResponsiveModalHeight as d4, type ResponsiveModalSize as d5, type ResponsiveModalWidth as d6, type ResponsiveMotion as d7, type ResponsiveRadius as d8, type ResponsiveSelectSize as d9, type ResponsiveTabsSize as dA, type TabsVariantToken as dB, type TabsToneToken as dC, type Breakpoint as dD, type ResponsiveSelectWidth as da, type ResponsiveShadow as db, type ResponsiveSideOffset as dc, type ResponsiveSpace as dd, type ResponsiveSurface as de, type ResponsiveTextLineHeight as df, type ResponsiveTextSize as dg, type ResponsiveTextWeight as dh, type SelectSizeToken as di, type SelectStateToken as dj, type SelectVariantToken as dk, type SelectWidthToken as dl, type ShadowToken as dm, type SideOffsetToken as dn, type SpaceToken as dp, type SpacingToken as dq, type SurfaceToken as dr, type TextLetterSpacingToken as ds, type TextLineHeightToken as dt, type TextSizeToken as du, type TextWeightToken as dv, type Responsive as dw, type ResponsiveContextMenuSize as dx, type ResponsiveContextMenuWidth as dy, type ContextMenuItemToneToken as dz, MOTION_TOKENS as e, NOTIFICATION_TOKENS as f, SELECT_TOKENS as g, SURFACE_TOKENS as h, SWITCH_TOKENS as i, TOAST_TOKENS as j, TOOLTIP_TOKENS as k, type AlertVariant as l, type ButtonFontSize as m, type ButtonHeight as n, type ButtonPaddingHorizontal as o, type ButtonPaddingVertical as p, type ButtonShadow as q, type CardPadding as r, type CardRadius as s, type CardShadow as t, type CardSize as u, type CardSpacingVertical as v, type CheckboxSize as w, type CheckboxState as x, type CheckboxVariant as y, type DataListLabelWidth as z };
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 (DropdownMenu, ContextMenu).
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 IconColor as $, ALERT_TOKENS as A, BUTTON_TOKENS as B, CARD_TOKENS as C, DATA_TOKENS as D, type DataListRowPadding as E, type DomainCardBadge as F, type DomainCardImage as G, type DomainCardLayout as H, ICON_TOKENS as I, type DomainCardMetadata as J, type DomainCardMotion as K, type DomainCardPriceCapacity as L, MENU_TOKENS as M, NAVIGATION_TOKENS as N, OVERLAY_TOKENS as O, POPOVER_TOKENS as P, type DomainCardSkeleton as Q, RADIO_TOKENS as R, SECTION_TOKENS as S, TEXT_TOKENS as T, type DomainCardSkeletonContentWidth as U, type DomainCardSurface as V, type DropdownItemSize as W, type DropdownMenuSize as X, type DropdownTriggerSize as Y, type DropdownVariant as Z, type EmptyStateIconSize as _, CHECKBOX_TOKENS as a, type SkeletonBackground as a$, type IconSize as a0, type IconStroke as a1, type InputFontSize as a2, type InputHeight as a3, type InputPaddingHorizontal as a4, type InputPaddingVertical as a5, type InputRadius as a6, type InputSize as a7, type MenuContentMinWidth as a8, type MenuContentPadding as a9, type PopoverArrowSize as aA, type PopoverContentPadding as aB, type PopoverContentRadius as aC, type PopoverContentShadow as aD, type PopoverContentWidth as aE, type RadioSize as aF, type RadioState as aG, type RadioVariant as aH, type SectionGap as aI, type SectionPadding as aJ, type SelectContentPadding as aK, type SelectContentRadius as aL, type SelectItemFontSize as aM, type SelectItemPaddingHorizontal as aN, type SelectItemPaddingVertical as aO, type SelectItemRadius as aP, type SelectLabelFontSize as aQ, type SelectLabelPaddingHorizontal as aR, type SelectLabelPaddingVertical as aS, type SelectSeparatorMarginHorizontal as aT, type SelectSeparatorMarginVertical as aU, type SelectTriggerFontSize as aV, type SelectTriggerHeight as aW, type SelectTriggerPaddingHorizontal as aX, type SelectTriggerPaddingVertical as aY, type SelectTriggerRadius as aZ, type SkeletonAnimation as a_, type MenuContentRadius as aa, type MenuContentShadow as ab, type MenuIndicatorOffset as ac, type MenuIndicatorSize as ad, type MenuItemGap as ae, type MenuItemHeight as af, type MenuItemPadding as ag, type MenuItemRadius as ah, type MenuLabelPadding as ai, type MenuSeparatorMargin as aj, type MotionAnimation as ak, type MotionDuration as al, type MotionEasing as am, type MotionTransition as an, type MotionTransitionPreset as ao, type NavigationItemPadding as ap, type NavigationListGap as aq, type NavigationRadius as ar, type NavigationShadow as as, type NavigationSize as at, type NavigationState as au, type NotificationPanelWidth as av, type NotificationVariant as aw, type OverlayBackdropVariant as ax, type OverlayModalSize as ay, type PopoverArrowOffset as az, DOMAIN_TOKENS as b, accentColoredShadows as b$, type SkeletonVariant as b0, type SurfacePadding as b1, type SurfaceRadius as b2, type SurfaceShadow as b3, type SurfaceVariant as b4, type SwitchSize as b5, type SwitchState as b6, type SwitchVariant as b7, type TableCellPadding as b8, type TableGap as b9, springs as bA, tailwindMotionConfig as bB, transitions as bC, type MotionV2CombinedType as bD, type MotionV2Duration as bE, type MotionV2Easing as bF, type MotionV2SlideDirection as bG, type MotionV2Transition as bH, motionV2CSSVariables as bI, motionV2Combined as bJ, motionV2Durations as bK, motionV2Easings as bL, motionV2Fade as bM, motionV2Scale as bN, motionV2Slide as bO, motionV2TailwindConfig as bP, motionV2Transitions as bQ, type BorderRadius as bR, type ComponentRadius as bS, borderRadius as bT, componentRadius as bU, radiusCSSVariables as bV, tailwindRadiusConfig as bW, type ColoredShadow as bX, type ElevationShadow as bY, type FocusRing as bZ, type GlowEffect as b_, type TableHeaderPadding as ba, type TableRowHeight as bb, type TableShadow as bc, type TextFontSize as bd, type TextFontWeight as be, type TextLetterSpacing as bf, type TextLineHeight as bg, type ToastVariant as bh, type TooltipContentRadius as bi, type TooltipContentShadow as bj, allCSSVariables as bk, allCSSVariablesCSS as bl, generateCSSVariablesCSS as bm, tokenSystemSummary as bn, type Animation as bo, type Duration as bp, type Easing as bq, type Keyframe as br, type Spring as bs, type Transition as bt, animations as bu, durations as bv, easings as bw, keyframes as bx, motionCSSVariables as by, reducedMotion as bz, DROPDOWN_TOKENS as c, type ResponsiveColor as c$, componentShadowMapping as c0, elevationShadows as c1, focusRings as c2, glowEffects as c3, primaryColoredShadows as c4, shadowBase as c5, shadowCSSVariables as c6, shadowOpacity as c7, tailwindShadowConfig as c8, type ComponentSpacing as c9, fontWeight as cA, letterSpacing as cB, lineHeight as cC, tailwindTypographyConfig as cD, textStyles as cE, typographyCSSVariables as cF, type AlignOffsetToken as cG, type AnimationPresetToken as cH, type AspectRatioToken as cI, type ColorToken as cJ, type ContainerMaxWidthToken as cK, type ContainerPaddingToken as cL, type DelayToken as cM, type FlexBasisToken as cN, type LayoutSpaceToken as cO, type ModalFooterAlignToken as cP, type ModalHeightToken as cQ, type ModalSizeToken as cR, type ModalWidthToken as cS, type MotionDurationToken as cT, type MotionEasingToken as cU, type MotionToken as cV, type MotionTransitionToken as cW, type RadiusToken as cX, type ResponsiveAlignOffset as cY, type ResponsiveAnimationPreset as cZ, type ResponsiveAspectRatio as c_, type ContainerSpacing as ca, type GridSpacing as cb, type SectionSpacing as cc, type SemanticSpacing as cd, type Spacing as ce, type StackSpacing as cf, layoutSpacing as cg, semanticSpacing as ch, spacing as ci, spacingCSSVariables as cj, tailwindSpacingConfig as ck, UI_COLORS as cl, type CanonicalFontSize as cm, type CanonicalFontWeight as cn, type CanonicalLetterSpacing as co, type CanonicalLineHeight as cp, type CanonicalTextColor as cq, type FontFamily as cr, type FontSize as cs, type FontWeight as ct, type LetterSpacing as cu, type LineHeight as cv, type TextStyle as cw, fontFamily as cx, fontSize as cy, fontSizeWithMd as cz, INPUT_TOKENS as d, type ResponsiveContainerMaxWidth as d0, type ResponsiveContainerPadding as d1, type ResponsiveDelay as d2, type ResponsiveFlexBasis as d3, type ResponsiveModalHeight as d4, type ResponsiveModalSize as d5, type ResponsiveModalWidth as d6, type ResponsiveMotion as d7, type ResponsiveRadius as d8, type ResponsiveSelectSize as d9, type ResponsiveTabsSize as dA, type TabsVariantToken as dB, type TabsToneToken as dC, type Breakpoint as dD, type ResponsiveSelectWidth as da, type ResponsiveShadow as db, type ResponsiveSideOffset as dc, type ResponsiveSpace as dd, type ResponsiveSurface as de, type ResponsiveTextLineHeight as df, type ResponsiveTextSize as dg, type ResponsiveTextWeight as dh, type SelectSizeToken as di, type SelectStateToken as dj, type SelectVariantToken as dk, type SelectWidthToken as dl, type ShadowToken as dm, type SideOffsetToken as dn, type SpaceToken as dp, type SpacingToken as dq, type SurfaceToken as dr, type TextLetterSpacingToken as ds, type TextLineHeightToken as dt, type TextSizeToken as du, type TextWeightToken as dv, type Responsive as dw, type ResponsiveContextMenuSize as dx, type ResponsiveContextMenuWidth as dy, type ContextMenuItemToneToken as dz, MOTION_TOKENS as e, NOTIFICATION_TOKENS as f, SELECT_TOKENS as g, SURFACE_TOKENS as h, SWITCH_TOKENS as i, TOAST_TOKENS as j, TOOLTIP_TOKENS as k, type AlertVariant as l, type ButtonFontSize as m, type ButtonHeight as n, type ButtonPaddingHorizontal as o, type ButtonPaddingVertical as p, type ButtonShadow as q, type CardPadding as r, type CardRadius as s, type CardShadow as t, type CardSize as u, type CardSpacingVertical as v, type CheckboxSize as w, type CheckboxState as x, type CheckboxVariant as y, type DataListLabelWidth as z };
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 };