@khal-os/ui 1.0.23 → 1.0.25
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.cjs +22 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +13 -1
- package/dist/index.d.ts +13 -1
- package/dist/index.js +18 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/tokens.css +6 -0
package/dist/index.d.cts
CHANGED
|
@@ -924,10 +924,14 @@ declare const KHAL_TERTIARY = "oklch(47.99% 0.0369 269.33)";
|
|
|
924
924
|
declare const KHAL_BORDER_STRONG = "oklch(36.17% 0.0439 266.77)";
|
|
925
925
|
declare const KHAL_ACCENT_BLUE = "oklch(55.73% 0.1910 256.76)";
|
|
926
926
|
declare const KHAL_SURFACE_LIGHT = "oklch(95.99% 0.0079 73.74)";
|
|
927
|
+
declare const KHAL_ACCENT_HOVER = "oklch(78% 0.1 63.09)";
|
|
928
|
+
declare const KHAL_ACCENT_GLOW = "oklch(71.49% 0.1112 63.09 / 0.2)";
|
|
929
|
+
declare const KHAL_ERROR = "oklch(63.7% 0.231 25.3)";
|
|
927
930
|
declare const KHAL_FONT_DISPLAY = "\"Geist\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", system-ui, sans-serif";
|
|
928
931
|
declare const KHAL_FONT_BODY = "\"Geist\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", system-ui, sans-serif";
|
|
929
932
|
declare const KHAL_FONT_MONO = "\"Geist Mono\", \"SFMono-Regular\", ui-monospace, Menlo, Consolas, monospace";
|
|
930
933
|
declare const KHAL_RADIUS = "10px";
|
|
934
|
+
declare const KHAL_RADIUS_SM = "8px";
|
|
931
935
|
declare const KHAL_RADIUS_LG = "12px";
|
|
932
936
|
declare const KHAL_MOTION_EASE = "cubic-bezier(0.22, 1, 0.36, 1)";
|
|
933
937
|
declare const KHAL_MOTION_DURATION_MS = 420;
|
|
@@ -949,6 +953,9 @@ declare const KHAL_TOKENS: Readonly<{
|
|
|
949
953
|
readonly borderStrong: "oklch(36.17% 0.0439 266.77)";
|
|
950
954
|
readonly accentBlue: "oklch(55.73% 0.1910 256.76)";
|
|
951
955
|
readonly surfaceLight: "oklch(95.99% 0.0079 73.74)";
|
|
956
|
+
readonly accentHover: "oklch(78% 0.1 63.09)";
|
|
957
|
+
readonly accentGlow: "oklch(71.49% 0.1112 63.09 / 0.2)";
|
|
958
|
+
readonly error: "oklch(63.7% 0.231 25.3)";
|
|
952
959
|
};
|
|
953
960
|
readonly font: {
|
|
954
961
|
readonly display: "\"Geist\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", system-ui, sans-serif";
|
|
@@ -957,6 +964,7 @@ declare const KHAL_TOKENS: Readonly<{
|
|
|
957
964
|
};
|
|
958
965
|
readonly radius: {
|
|
959
966
|
readonly base: "10px";
|
|
967
|
+
readonly sm: "8px";
|
|
960
968
|
readonly lg: "12px";
|
|
961
969
|
};
|
|
962
970
|
readonly motion: {
|
|
@@ -983,6 +991,10 @@ declare const KHAL_CSS_VARS: Readonly<{
|
|
|
983
991
|
readonly borderStrong: "--khal-border-strong";
|
|
984
992
|
readonly accentBlue: "--khal-accent-blue";
|
|
985
993
|
readonly surfaceLight: "--khal-surface-light";
|
|
994
|
+
readonly accentHover: "--khal-accent-hover";
|
|
995
|
+
readonly accentGlow: "--khal-accent-glow";
|
|
996
|
+
readonly error: "--khal-error";
|
|
997
|
+
readonly radiusSm: "--khal-radius-sm";
|
|
986
998
|
}>;
|
|
987
999
|
|
|
988
1000
|
/**
|
|
@@ -1010,4 +1022,4 @@ interface AppComponentProps {
|
|
|
1010
1022
|
meta?: Record<string, unknown>;
|
|
1011
1023
|
}
|
|
1012
1024
|
|
|
1013
|
-
export { ACCENT_BLUE, type AppComponentProps, Avatar, type AvatarProps, BUTTON_RADIUS, Badge, Button, type ButtonProps, CELL_BG, CHROME_BG, CollapsibleSidebar, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuSeparator, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CostCounter, type CostCounterProps, DataRow, type DataRowProps, type DesktopNotifMode, type DesktopNotification, Dialog, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, type FeedEvent, type FeedEventType, GlassCard, type GlassCardProps, Input, KHAL_ACCENT, KHAL_ACCENT_BLUE, KHAL_BG, KHAL_BORDER, KHAL_BORDER_STRONG, KHAL_CELL, KHAL_CHROME, KHAL_CSS_VARS, KHAL_FG, KHAL_FONT_BODY, KHAL_FONT_DISPLAY, KHAL_FONT_MONO, KHAL_MOTION_DURATION_MS, KHAL_MOTION_EASE, KHAL_MUTED, KHAL_RADIUS, KHAL_RADIUS_LG, KHAL_SURFACE, KHAL_SURFACE_LIGHT, KHAL_TERTIARY, KHAL_TOKENS, KhalLogo, type KhalTokens, ListView, LiveFeed, type LiveFeedProps, MESH_GRADIENT_PALETTE, MeshGradientInner as MeshGradient, type MeshGradientProps, MetricDisplay, type MetricDisplayProps, Note, type NotificationUrgency, NumberFlow, type NumberFlowProps, PillBadge, type PillBadgeProps, ProgressBar, type ProgressBarProps, PropertyPanel, SectionCard, SectionCardHeader, type SectionCardProps, SectionHeader, Separator, SidebarNav, Spinner, SplitPane, StatusBadge, StatusBar, StatusDot, type StatusDotProps, type StatusState, TEXT_PRIMARY, TEXT_SECONDARY, TEXT_TERTIARY, ThemeProvider, ThemeSwitcher, TickerBar, type TickerBarProps, Toggle, Toolbar, Tooltip, TooltipContent, TooltipProvider, TooltipRoot, TooltipTrigger, type TrayIcon, WINDOW_RADIUS, WIN_BG, WIN_BORDER, WIN_BORDER_FOCUSED, WindowActiveProvider, WindowMinimizedProvider, badgeVariants, buttonVariants, cn, dataRowVariants, fadeIn, fadeUp, glassCardVariants, khalEasing, metricDisplayVariants, pillBadgeVariants, progressBarVariants, scaleUp, sectionCardVariants, springConfig, staggerChild, staggerContainer, stateConfig, useNotificationStore, useReducedMotion, useSidebar, useThemeStore, useWindowActive, useWindowMinimized };
|
|
1025
|
+
export { ACCENT_BLUE, type AppComponentProps, Avatar, type AvatarProps, BUTTON_RADIUS, Badge, Button, type ButtonProps, CELL_BG, CHROME_BG, CollapsibleSidebar, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuSeparator, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CostCounter, type CostCounterProps, DataRow, type DataRowProps, type DesktopNotifMode, type DesktopNotification, Dialog, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, type FeedEvent, type FeedEventType, GlassCard, type GlassCardProps, Input, KHAL_ACCENT, KHAL_ACCENT_BLUE, KHAL_ACCENT_GLOW, KHAL_ACCENT_HOVER, KHAL_BG, KHAL_BORDER, KHAL_BORDER_STRONG, KHAL_CELL, KHAL_CHROME, KHAL_CSS_VARS, KHAL_ERROR, KHAL_FG, KHAL_FONT_BODY, KHAL_FONT_DISPLAY, KHAL_FONT_MONO, KHAL_MOTION_DURATION_MS, KHAL_MOTION_EASE, KHAL_MUTED, KHAL_RADIUS, KHAL_RADIUS_LG, KHAL_RADIUS_SM, KHAL_SURFACE, KHAL_SURFACE_LIGHT, KHAL_TERTIARY, KHAL_TOKENS, KhalLogo, type KhalTokens, ListView, LiveFeed, type LiveFeedProps, MESH_GRADIENT_PALETTE, MeshGradientInner as MeshGradient, type MeshGradientProps, MetricDisplay, type MetricDisplayProps, Note, type NotificationUrgency, NumberFlow, type NumberFlowProps, PillBadge, type PillBadgeProps, ProgressBar, type ProgressBarProps, PropertyPanel, SectionCard, SectionCardHeader, type SectionCardProps, SectionHeader, Separator, SidebarNav, Spinner, SplitPane, StatusBadge, StatusBar, StatusDot, type StatusDotProps, type StatusState, TEXT_PRIMARY, TEXT_SECONDARY, TEXT_TERTIARY, ThemeProvider, ThemeSwitcher, TickerBar, type TickerBarProps, Toggle, Toolbar, Tooltip, TooltipContent, TooltipProvider, TooltipRoot, TooltipTrigger, type TrayIcon, WINDOW_RADIUS, WIN_BG, WIN_BORDER, WIN_BORDER_FOCUSED, WindowActiveProvider, WindowMinimizedProvider, badgeVariants, buttonVariants, cn, dataRowVariants, fadeIn, fadeUp, glassCardVariants, khalEasing, metricDisplayVariants, pillBadgeVariants, progressBarVariants, scaleUp, sectionCardVariants, springConfig, staggerChild, staggerContainer, stateConfig, useNotificationStore, useReducedMotion, useSidebar, useThemeStore, useWindowActive, useWindowMinimized };
|
package/dist/index.d.ts
CHANGED
|
@@ -924,10 +924,14 @@ declare const KHAL_TERTIARY = "oklch(47.99% 0.0369 269.33)";
|
|
|
924
924
|
declare const KHAL_BORDER_STRONG = "oklch(36.17% 0.0439 266.77)";
|
|
925
925
|
declare const KHAL_ACCENT_BLUE = "oklch(55.73% 0.1910 256.76)";
|
|
926
926
|
declare const KHAL_SURFACE_LIGHT = "oklch(95.99% 0.0079 73.74)";
|
|
927
|
+
declare const KHAL_ACCENT_HOVER = "oklch(78% 0.1 63.09)";
|
|
928
|
+
declare const KHAL_ACCENT_GLOW = "oklch(71.49% 0.1112 63.09 / 0.2)";
|
|
929
|
+
declare const KHAL_ERROR = "oklch(63.7% 0.231 25.3)";
|
|
927
930
|
declare const KHAL_FONT_DISPLAY = "\"Geist\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", system-ui, sans-serif";
|
|
928
931
|
declare const KHAL_FONT_BODY = "\"Geist\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", system-ui, sans-serif";
|
|
929
932
|
declare const KHAL_FONT_MONO = "\"Geist Mono\", \"SFMono-Regular\", ui-monospace, Menlo, Consolas, monospace";
|
|
930
933
|
declare const KHAL_RADIUS = "10px";
|
|
934
|
+
declare const KHAL_RADIUS_SM = "8px";
|
|
931
935
|
declare const KHAL_RADIUS_LG = "12px";
|
|
932
936
|
declare const KHAL_MOTION_EASE = "cubic-bezier(0.22, 1, 0.36, 1)";
|
|
933
937
|
declare const KHAL_MOTION_DURATION_MS = 420;
|
|
@@ -949,6 +953,9 @@ declare const KHAL_TOKENS: Readonly<{
|
|
|
949
953
|
readonly borderStrong: "oklch(36.17% 0.0439 266.77)";
|
|
950
954
|
readonly accentBlue: "oklch(55.73% 0.1910 256.76)";
|
|
951
955
|
readonly surfaceLight: "oklch(95.99% 0.0079 73.74)";
|
|
956
|
+
readonly accentHover: "oklch(78% 0.1 63.09)";
|
|
957
|
+
readonly accentGlow: "oklch(71.49% 0.1112 63.09 / 0.2)";
|
|
958
|
+
readonly error: "oklch(63.7% 0.231 25.3)";
|
|
952
959
|
};
|
|
953
960
|
readonly font: {
|
|
954
961
|
readonly display: "\"Geist\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", system-ui, sans-serif";
|
|
@@ -957,6 +964,7 @@ declare const KHAL_TOKENS: Readonly<{
|
|
|
957
964
|
};
|
|
958
965
|
readonly radius: {
|
|
959
966
|
readonly base: "10px";
|
|
967
|
+
readonly sm: "8px";
|
|
960
968
|
readonly lg: "12px";
|
|
961
969
|
};
|
|
962
970
|
readonly motion: {
|
|
@@ -983,6 +991,10 @@ declare const KHAL_CSS_VARS: Readonly<{
|
|
|
983
991
|
readonly borderStrong: "--khal-border-strong";
|
|
984
992
|
readonly accentBlue: "--khal-accent-blue";
|
|
985
993
|
readonly surfaceLight: "--khal-surface-light";
|
|
994
|
+
readonly accentHover: "--khal-accent-hover";
|
|
995
|
+
readonly accentGlow: "--khal-accent-glow";
|
|
996
|
+
readonly error: "--khal-error";
|
|
997
|
+
readonly radiusSm: "--khal-radius-sm";
|
|
986
998
|
}>;
|
|
987
999
|
|
|
988
1000
|
/**
|
|
@@ -1010,4 +1022,4 @@ interface AppComponentProps {
|
|
|
1010
1022
|
meta?: Record<string, unknown>;
|
|
1011
1023
|
}
|
|
1012
1024
|
|
|
1013
|
-
export { ACCENT_BLUE, type AppComponentProps, Avatar, type AvatarProps, BUTTON_RADIUS, Badge, Button, type ButtonProps, CELL_BG, CHROME_BG, CollapsibleSidebar, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuSeparator, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CostCounter, type CostCounterProps, DataRow, type DataRowProps, type DesktopNotifMode, type DesktopNotification, Dialog, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, type FeedEvent, type FeedEventType, GlassCard, type GlassCardProps, Input, KHAL_ACCENT, KHAL_ACCENT_BLUE, KHAL_BG, KHAL_BORDER, KHAL_BORDER_STRONG, KHAL_CELL, KHAL_CHROME, KHAL_CSS_VARS, KHAL_FG, KHAL_FONT_BODY, KHAL_FONT_DISPLAY, KHAL_FONT_MONO, KHAL_MOTION_DURATION_MS, KHAL_MOTION_EASE, KHAL_MUTED, KHAL_RADIUS, KHAL_RADIUS_LG, KHAL_SURFACE, KHAL_SURFACE_LIGHT, KHAL_TERTIARY, KHAL_TOKENS, KhalLogo, type KhalTokens, ListView, LiveFeed, type LiveFeedProps, MESH_GRADIENT_PALETTE, MeshGradientInner as MeshGradient, type MeshGradientProps, MetricDisplay, type MetricDisplayProps, Note, type NotificationUrgency, NumberFlow, type NumberFlowProps, PillBadge, type PillBadgeProps, ProgressBar, type ProgressBarProps, PropertyPanel, SectionCard, SectionCardHeader, type SectionCardProps, SectionHeader, Separator, SidebarNav, Spinner, SplitPane, StatusBadge, StatusBar, StatusDot, type StatusDotProps, type StatusState, TEXT_PRIMARY, TEXT_SECONDARY, TEXT_TERTIARY, ThemeProvider, ThemeSwitcher, TickerBar, type TickerBarProps, Toggle, Toolbar, Tooltip, TooltipContent, TooltipProvider, TooltipRoot, TooltipTrigger, type TrayIcon, WINDOW_RADIUS, WIN_BG, WIN_BORDER, WIN_BORDER_FOCUSED, WindowActiveProvider, WindowMinimizedProvider, badgeVariants, buttonVariants, cn, dataRowVariants, fadeIn, fadeUp, glassCardVariants, khalEasing, metricDisplayVariants, pillBadgeVariants, progressBarVariants, scaleUp, sectionCardVariants, springConfig, staggerChild, staggerContainer, stateConfig, useNotificationStore, useReducedMotion, useSidebar, useThemeStore, useWindowActive, useWindowMinimized };
|
|
1025
|
+
export { ACCENT_BLUE, type AppComponentProps, Avatar, type AvatarProps, BUTTON_RADIUS, Badge, Button, type ButtonProps, CELL_BG, CHROME_BG, CollapsibleSidebar, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuSeparator, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CostCounter, type CostCounterProps, DataRow, type DataRowProps, type DesktopNotifMode, type DesktopNotification, Dialog, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, type FeedEvent, type FeedEventType, GlassCard, type GlassCardProps, Input, KHAL_ACCENT, KHAL_ACCENT_BLUE, KHAL_ACCENT_GLOW, KHAL_ACCENT_HOVER, KHAL_BG, KHAL_BORDER, KHAL_BORDER_STRONG, KHAL_CELL, KHAL_CHROME, KHAL_CSS_VARS, KHAL_ERROR, KHAL_FG, KHAL_FONT_BODY, KHAL_FONT_DISPLAY, KHAL_FONT_MONO, KHAL_MOTION_DURATION_MS, KHAL_MOTION_EASE, KHAL_MUTED, KHAL_RADIUS, KHAL_RADIUS_LG, KHAL_RADIUS_SM, KHAL_SURFACE, KHAL_SURFACE_LIGHT, KHAL_TERTIARY, KHAL_TOKENS, KhalLogo, type KhalTokens, ListView, LiveFeed, type LiveFeedProps, MESH_GRADIENT_PALETTE, MeshGradientInner as MeshGradient, type MeshGradientProps, MetricDisplay, type MetricDisplayProps, Note, type NotificationUrgency, NumberFlow, type NumberFlowProps, PillBadge, type PillBadgeProps, ProgressBar, type ProgressBarProps, PropertyPanel, SectionCard, SectionCardHeader, type SectionCardProps, SectionHeader, Separator, SidebarNav, Spinner, SplitPane, StatusBadge, StatusBar, StatusDot, type StatusDotProps, type StatusState, TEXT_PRIMARY, TEXT_SECONDARY, TEXT_TERTIARY, ThemeProvider, ThemeSwitcher, TickerBar, type TickerBarProps, Toggle, Toolbar, Tooltip, TooltipContent, TooltipProvider, TooltipRoot, TooltipTrigger, type TrayIcon, WINDOW_RADIUS, WIN_BG, WIN_BORDER, WIN_BORDER_FOCUSED, WindowActiveProvider, WindowMinimizedProvider, badgeVariants, buttonVariants, cn, dataRowVariants, fadeIn, fadeUp, glassCardVariants, khalEasing, metricDisplayVariants, pillBadgeVariants, progressBarVariants, scaleUp, sectionCardVariants, springConfig, staggerChild, staggerContainer, stateConfig, useNotificationStore, useReducedMotion, useSidebar, useThemeStore, useWindowActive, useWindowMinimized };
|
package/dist/index.js
CHANGED
|
@@ -2379,10 +2379,14 @@ var KHAL_TERTIARY = "oklch(47.99% 0.0369 269.33)";
|
|
|
2379
2379
|
var KHAL_BORDER_STRONG = "oklch(36.17% 0.0439 266.77)";
|
|
2380
2380
|
var KHAL_ACCENT_BLUE = "oklch(55.73% 0.1910 256.76)";
|
|
2381
2381
|
var KHAL_SURFACE_LIGHT = "oklch(95.99% 0.0079 73.74)";
|
|
2382
|
+
var KHAL_ACCENT_HOVER = "oklch(78% 0.1 63.09)";
|
|
2383
|
+
var KHAL_ACCENT_GLOW = "oklch(71.49% 0.1112 63.09 / 0.2)";
|
|
2384
|
+
var KHAL_ERROR = "oklch(63.7% 0.231 25.3)";
|
|
2382
2385
|
var KHAL_FONT_DISPLAY = '"Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif';
|
|
2383
2386
|
var KHAL_FONT_BODY = '"Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif';
|
|
2384
2387
|
var KHAL_FONT_MONO = '"Geist Mono", "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace';
|
|
2385
2388
|
var KHAL_RADIUS = "10px";
|
|
2389
|
+
var KHAL_RADIUS_SM = "8px";
|
|
2386
2390
|
var KHAL_RADIUS_LG = "12px";
|
|
2387
2391
|
var KHAL_MOTION_EASE = "cubic-bezier(0.22, 1, 0.36, 1)";
|
|
2388
2392
|
var KHAL_MOTION_DURATION_MS = 420;
|
|
@@ -2399,7 +2403,10 @@ var KHAL_TOKENS = Object.freeze({
|
|
|
2399
2403
|
tertiary: KHAL_TERTIARY,
|
|
2400
2404
|
borderStrong: KHAL_BORDER_STRONG,
|
|
2401
2405
|
accentBlue: KHAL_ACCENT_BLUE,
|
|
2402
|
-
surfaceLight: KHAL_SURFACE_LIGHT
|
|
2406
|
+
surfaceLight: KHAL_SURFACE_LIGHT,
|
|
2407
|
+
accentHover: KHAL_ACCENT_HOVER,
|
|
2408
|
+
accentGlow: KHAL_ACCENT_GLOW,
|
|
2409
|
+
error: KHAL_ERROR
|
|
2403
2410
|
},
|
|
2404
2411
|
font: {
|
|
2405
2412
|
display: KHAL_FONT_DISPLAY,
|
|
@@ -2408,6 +2415,7 @@ var KHAL_TOKENS = Object.freeze({
|
|
|
2408
2415
|
},
|
|
2409
2416
|
radius: {
|
|
2410
2417
|
base: KHAL_RADIUS,
|
|
2418
|
+
sm: KHAL_RADIUS_SM,
|
|
2411
2419
|
lg: KHAL_RADIUS_LG
|
|
2412
2420
|
},
|
|
2413
2421
|
motion: {
|
|
@@ -2427,7 +2435,11 @@ var KHAL_CSS_VARS = Object.freeze({
|
|
|
2427
2435
|
tertiary: "--khal-tertiary",
|
|
2428
2436
|
borderStrong: "--khal-border-strong",
|
|
2429
2437
|
accentBlue: "--khal-accent-blue",
|
|
2430
|
-
surfaceLight: "--khal-surface-light"
|
|
2438
|
+
surfaceLight: "--khal-surface-light",
|
|
2439
|
+
accentHover: "--khal-accent-hover",
|
|
2440
|
+
accentGlow: "--khal-accent-glow",
|
|
2441
|
+
error: "--khal-error",
|
|
2442
|
+
radiusSm: "--khal-radius-sm"
|
|
2431
2443
|
});
|
|
2432
2444
|
|
|
2433
2445
|
// src/tokens/lp-tokens.ts
|
|
@@ -2504,12 +2516,15 @@ export {
|
|
|
2504
2516
|
Input,
|
|
2505
2517
|
KHAL_ACCENT,
|
|
2506
2518
|
KHAL_ACCENT_BLUE,
|
|
2519
|
+
KHAL_ACCENT_GLOW,
|
|
2520
|
+
KHAL_ACCENT_HOVER,
|
|
2507
2521
|
KHAL_BG,
|
|
2508
2522
|
KHAL_BORDER,
|
|
2509
2523
|
KHAL_BORDER_STRONG,
|
|
2510
2524
|
KHAL_CELL,
|
|
2511
2525
|
KHAL_CHROME,
|
|
2512
2526
|
KHAL_CSS_VARS,
|
|
2527
|
+
KHAL_ERROR,
|
|
2513
2528
|
KHAL_FG,
|
|
2514
2529
|
KHAL_FONT_BODY,
|
|
2515
2530
|
KHAL_FONT_DISPLAY,
|
|
@@ -2519,6 +2534,7 @@ export {
|
|
|
2519
2534
|
KHAL_MUTED,
|
|
2520
2535
|
KHAL_RADIUS,
|
|
2521
2536
|
KHAL_RADIUS_LG,
|
|
2537
|
+
KHAL_RADIUS_SM,
|
|
2522
2538
|
KHAL_SURFACE,
|
|
2523
2539
|
KHAL_SURFACE_LIGHT,
|
|
2524
2540
|
KHAL_TERTIARY,
|