@mkbabb/glass-ui 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +172 -0
- package/dist/glass-ui.css +1 -0
- package/dist/glass-ui.js +10019 -0
- package/dist/index.d.ts +6619 -0
- package/package.json +65 -0
- package/src/components/custom/aurora/Aurora.vue +34 -0
- package/src/components/custom/aurora/composables/color.ts +122 -0
- package/src/components/custom/aurora/composables/useAurora.ts +355 -0
- package/src/components/custom/aurora/index.ts +8 -0
- package/src/components/custom/confirm-dialog/ConfirmDialog.vue +88 -0
- package/src/components/custom/confirm-dialog/index.ts +1 -0
- package/src/components/custom/controls/DarkModeToggle.vue +96 -0
- package/src/components/custom/controls/index.ts +1 -0
- package/src/components/custom/dock/DockLayerGroup.vue +21 -0
- package/src/components/custom/dock/DockPopover.vue +263 -0
- package/src/components/custom/dock/GlassDock.vue +276 -0
- package/src/components/custom/dock/composables/index.ts +16 -0
- package/src/components/custom/dock/composables/isTeleportedTarget.ts +19 -0
- package/src/components/custom/dock/composables/useDockActionBar.ts +33 -0
- package/src/components/custom/dock/composables/useDockState.ts +301 -0
- package/src/components/custom/dock/composables/useDockTransition.ts +146 -0
- package/src/components/custom/dock/composables/useLayerTransition.ts +135 -0
- package/src/components/custom/dock/composables/usePopupMutex.ts +83 -0
- package/src/components/custom/dock/index.ts +9 -0
- package/src/components/custom/expandable-container/ExpandableContainer.vue +64 -0
- package/src/components/custom/expandable-container/index.ts +1 -0
- package/src/components/custom/glass-panel/GlassPanel.vue +98 -0
- package/src/components/custom/glass-panel/index.ts +2 -0
- package/src/components/custom/icon-tooltip/IconTooltip.vue +20 -0
- package/src/components/custom/icon-tooltip/index.ts +1 -0
- package/src/components/custom/index.ts +15 -0
- package/src/components/custom/infinite-scroll/InfiniteScroll.vue +55 -0
- package/src/components/custom/infinite-scroll/composables/index.ts +2 -0
- package/src/components/custom/infinite-scroll/composables/types.ts +23 -0
- package/src/components/custom/infinite-scroll/composables/useInfiniteScroll.ts +73 -0
- package/src/components/custom/infinite-scroll/index.ts +1 -0
- package/src/components/custom/labeled-field/LabeledInput.vue +29 -0
- package/src/components/custom/labeled-field/LabeledSelect.vue +59 -0
- package/src/components/custom/labeled-field/LabeledSlider.vue +32 -0
- package/src/components/custom/labeled-field/LabeledSwitch.vue +27 -0
- package/src/components/custom/labeled-field/index.ts +4 -0
- package/src/components/custom/metaballs/MetaballCanvas.vue +23 -0
- package/src/components/custom/metaballs/index.ts +4 -0
- package/src/components/custom/metaballs/shaders.ts +63 -0
- package/src/components/custom/metaballs/types.ts +29 -0
- package/src/components/custom/metaballs/useMetaballs.ts +252 -0
- package/src/components/custom/search/FuzzySearch.vue +589 -0
- package/src/components/custom/search/SearchBar.vue +44 -0
- package/src/components/custom/search/composables/fuzzySearchIndex.ts +224 -0
- package/src/components/custom/search/composables/index.ts +5 -0
- package/src/components/custom/search/composables/types.ts +34 -0
- package/src/components/custom/search/composables/useFuzzySearch.ts +115 -0
- package/src/components/custom/search/index.ts +7 -0
- package/src/components/custom/sidebar/ProgressiveSidebar.vue +256 -0
- package/src/components/custom/sidebar/composables/index.ts +6 -0
- package/src/components/custom/sidebar/composables/useScrollTracker.ts +242 -0
- package/src/components/custom/sidebar/composables/useSidebarFollow.ts +247 -0
- package/src/components/custom/sidebar/composables/useSidebarState.ts +72 -0
- package/src/components/custom/sidebar/composables/useTreeIndex.ts +152 -0
- package/src/components/custom/sidebar/index.ts +15 -0
- package/src/components/custom/sidebar/types.ts +50 -0
- package/src/components/custom/tabs/BouncyTabs.vue +39 -0
- package/src/components/custom/tabs/BouncyToggle.vue +352 -0
- package/src/components/custom/tabs/UnderlineTabs.vue +115 -0
- package/src/components/custom/tabs/index.ts +5 -0
- package/src/components/custom/timeline/GlassTimeline.vue +174 -0
- package/src/components/custom/timeline/index.ts +1 -0
- package/src/components/custom/typewriter/TypewriterText.vue +239 -0
- package/src/components/custom/typewriter/composables/index.ts +1 -0
- package/src/components/custom/typewriter/composables/useTypewriter.ts +413 -0
- package/src/components/custom/typewriter/index.ts +7 -0
- package/src/components/custom/typewriter/types.ts +159 -0
- package/src/components/custom/typewriter/utils/keyboard.ts +213 -0
- package/src/components/custom/typewriter/utils/pausePatterns.ts +55 -0
- package/src/components/custom/typewriter/utils/timing.ts +104 -0
- package/src/components/custom/typewriter/utils/typoStateMachine.ts +197 -0
- package/src/components/index.ts +2 -0
- package/src/components/ui/accordion/Accordion.vue +19 -0
- package/src/components/ui/accordion/AccordionContent.vue +24 -0
- package/src/components/ui/accordion/AccordionItem.vue +24 -0
- package/src/components/ui/accordion/AccordionTrigger.vue +39 -0
- package/src/components/ui/accordion/index.ts +4 -0
- package/src/components/ui/alert/Alert.vue +20 -0
- package/src/components/ui/alert/AlertDescription.vue +17 -0
- package/src/components/ui/alert/AlertTitle.vue +17 -0
- package/src/components/ui/alert/index.ts +23 -0
- package/src/components/ui/avatar/Avatar.vue +21 -0
- package/src/components/ui/avatar/AvatarFallback.vue +11 -0
- package/src/components/ui/avatar/AvatarImage.vue +9 -0
- package/src/components/ui/avatar/index.ts +24 -0
- package/src/components/ui/badge/Badge.vue +16 -0
- package/src/components/ui/badge/index.ts +25 -0
- package/src/components/ui/button/Button.vue +26 -0
- package/src/components/ui/button/index.ts +43 -0
- package/src/components/ui/card/Card.vue +28 -0
- package/src/components/ui/card/CardContent.vue +14 -0
- package/src/components/ui/card/CardDescription.vue +14 -0
- package/src/components/ui/card/CardFooter.vue +14 -0
- package/src/components/ui/card/CardHeader.vue +14 -0
- package/src/components/ui/card/CardTitle.vue +21 -0
- package/src/components/ui/card/index.ts +6 -0
- package/src/components/ui/carousel/Carousel.vue +53 -0
- package/src/components/ui/carousel/CarouselContent.vue +35 -0
- package/src/components/ui/carousel/CarouselItem.vue +24 -0
- package/src/components/ui/carousel/CarouselNext.vue +40 -0
- package/src/components/ui/carousel/CarouselPrevious.vue +40 -0
- package/src/components/ui/carousel/index.ts +10 -0
- package/src/components/ui/carousel/interface.ts +26 -0
- package/src/components/ui/carousel/useCarousel.ts +56 -0
- package/src/components/ui/checkbox/Checkbox.vue +33 -0
- package/src/components/ui/checkbox/index.ts +1 -0
- package/src/components/ui/collapsible/Collapsible.vue +15 -0
- package/src/components/ui/collapsible/CollapsibleContent.vue +11 -0
- package/src/components/ui/collapsible/CollapsibleTrigger.vue +11 -0
- package/src/components/ui/collapsible/index.ts +3 -0
- package/src/components/ui/combobox/Combobox.vue +17 -0
- package/src/components/ui/combobox/ComboboxAnchor.vue +23 -0
- package/src/components/ui/combobox/ComboboxEmpty.vue +21 -0
- package/src/components/ui/combobox/ComboboxGroup.vue +27 -0
- package/src/components/ui/combobox/ComboboxInput.vue +41 -0
- package/src/components/ui/combobox/ComboboxItem.vue +24 -0
- package/src/components/ui/combobox/ComboboxItemIndicator.vue +23 -0
- package/src/components/ui/combobox/ComboboxList.vue +29 -0
- package/src/components/ui/combobox/ComboboxSeparator.vue +21 -0
- package/src/components/ui/combobox/ComboboxViewport.vue +23 -0
- package/src/components/ui/combobox/index.ts +12 -0
- package/src/components/ui/command/Command.vue +30 -0
- package/src/components/ui/command/CommandDialog.vue +21 -0
- package/src/components/ui/command/CommandEmpty.vue +20 -0
- package/src/components/ui/command/CommandGroup.vue +29 -0
- package/src/components/ui/command/CommandInput.vue +33 -0
- package/src/components/ui/command/CommandItem.vue +26 -0
- package/src/components/ui/command/CommandList.vue +27 -0
- package/src/components/ui/command/CommandSeparator.vue +23 -0
- package/src/components/ui/command/CommandShortcut.vue +14 -0
- package/src/components/ui/command/index.ts +9 -0
- package/src/components/ui/context-menu/ContextMenu.vue +15 -0
- package/src/components/ui/context-menu/ContextMenuCheckboxItem.vue +40 -0
- package/src/components/ui/context-menu/ContextMenuContent.vue +36 -0
- package/src/components/ui/context-menu/ContextMenuGroup.vue +11 -0
- package/src/components/ui/context-menu/ContextMenuItem.vue +34 -0
- package/src/components/ui/context-menu/ContextMenuLabel.vue +25 -0
- package/src/components/ui/context-menu/ContextMenuPortal.vue +11 -0
- package/src/components/ui/context-menu/ContextMenuRadioGroup.vue +19 -0
- package/src/components/ui/context-menu/ContextMenuRadioItem.vue +40 -0
- package/src/components/ui/context-menu/ContextMenuSeparator.vue +20 -0
- package/src/components/ui/context-menu/ContextMenuShortcut.vue +14 -0
- package/src/components/ui/context-menu/ContextMenuSub.vue +19 -0
- package/src/components/ui/context-menu/ContextMenuSubContent.vue +35 -0
- package/src/components/ui/context-menu/ContextMenuSubTrigger.vue +34 -0
- package/src/components/ui/context-menu/ContextMenuTrigger.vue +13 -0
- package/src/components/ui/context-menu/index.ts +14 -0
- package/src/components/ui/data-table/DataTable.vue +167 -0
- package/src/components/ui/data-table/DataTablePagination.vue +112 -0
- package/src/components/ui/data-table/index.ts +3 -0
- package/src/components/ui/data-table/types.ts +48 -0
- package/src/components/ui/dialog/Dialog.vue +14 -0
- package/src/components/ui/dialog/DialogClose.vue +11 -0
- package/src/components/ui/dialog/DialogContent.vue +61 -0
- package/src/components/ui/dialog/DialogDescription.vue +24 -0
- package/src/components/ui/dialog/DialogFooter.vue +19 -0
- package/src/components/ui/dialog/DialogHeader.vue +16 -0
- package/src/components/ui/dialog/DialogScrollContent.vue +65 -0
- package/src/components/ui/dialog/DialogTitle.vue +29 -0
- package/src/components/ui/dialog/DialogTrigger.vue +11 -0
- package/src/components/ui/dialog/index.ts +9 -0
- package/src/components/ui/drawer/Drawer.vue +19 -0
- package/src/components/ui/drawer/DrawerContent.vue +28 -0
- package/src/components/ui/drawer/DrawerDescription.vue +20 -0
- package/src/components/ui/drawer/DrawerFooter.vue +14 -0
- package/src/components/ui/drawer/DrawerHeader.vue +14 -0
- package/src/components/ui/drawer/DrawerOverlay.vue +18 -0
- package/src/components/ui/drawer/DrawerTitle.vue +20 -0
- package/src/components/ui/drawer/index.ts +8 -0
- package/src/components/ui/dropdown-menu/DropdownMenu.vue +14 -0
- package/src/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue +40 -0
- package/src/components/ui/dropdown-menu/DropdownMenuContent.vue +44 -0
- package/src/components/ui/dropdown-menu/DropdownMenuGroup.vue +11 -0
- package/src/components/ui/dropdown-menu/DropdownMenuItem.vue +28 -0
- package/src/components/ui/dropdown-menu/DropdownMenuLabel.vue +24 -0
- package/src/components/ui/dropdown-menu/DropdownMenuRadioGroup.vue +19 -0
- package/src/components/ui/dropdown-menu/DropdownMenuRadioItem.vue +40 -0
- package/src/components/ui/dropdown-menu/DropdownMenuSeparator.vue +22 -0
- package/src/components/ui/dropdown-menu/DropdownMenuShortcut.vue +14 -0
- package/src/components/ui/dropdown-menu/DropdownMenuSub.vue +19 -0
- package/src/components/ui/dropdown-menu/DropdownMenuSubContent.vue +36 -0
- package/src/components/ui/dropdown-menu/DropdownMenuSubTrigger.vue +33 -0
- package/src/components/ui/dropdown-menu/DropdownMenuTrigger.vue +13 -0
- package/src/components/ui/dropdown-menu/index.ts +16 -0
- package/src/components/ui/hover-card/HoverCard.vue +14 -0
- package/src/components/ui/hover-card/HoverCardContent.vue +41 -0
- package/src/components/ui/hover-card/HoverCardTrigger.vue +11 -0
- package/src/components/ui/hover-card/index.ts +3 -0
- package/src/components/ui/index.ts +41 -0
- package/src/components/ui/input/Input.vue +24 -0
- package/src/components/ui/input/index.ts +1 -0
- package/src/components/ui/label/Label.vue +27 -0
- package/src/components/ui/label/index.ts +1 -0
- package/src/components/ui/multi-select/MultiSelect.vue +141 -0
- package/src/components/ui/multi-select/index.ts +7 -0
- package/src/components/ui/notification/Notification.vue +85 -0
- package/src/components/ui/notification/index.ts +1 -0
- package/src/components/ui/number-field/NumberField.vue +23 -0
- package/src/components/ui/number-field/NumberFieldContent.vue +14 -0
- package/src/components/ui/number-field/NumberFieldDecrement.vue +25 -0
- package/src/components/ui/number-field/NumberFieldIncrement.vue +25 -0
- package/src/components/ui/number-field/NumberFieldInput.vue +8 -0
- package/src/components/ui/number-field/index.ts +5 -0
- package/src/components/ui/popover/Popover.vue +15 -0
- package/src/components/ui/popover/PopoverContent.vue +61 -0
- package/src/components/ui/popover/PopoverTrigger.vue +11 -0
- package/src/components/ui/popover/index.ts +3 -0
- package/src/components/ui/progress/Progress.vue +39 -0
- package/src/components/ui/progress/index.ts +1 -0
- package/src/components/ui/radio-group/RadioGroup.vue +25 -0
- package/src/components/ui/radio-group/RadioGroupItem.vue +39 -0
- package/src/components/ui/radio-group/index.ts +2 -0
- package/src/components/ui/scroll-area/ScrollArea.vue +29 -0
- package/src/components/ui/scroll-area/ScrollBar.vue +30 -0
- package/src/components/ui/scroll-area/index.ts +2 -0
- package/src/components/ui/scroll-pane/ScrollPane.vue +25 -0
- package/src/components/ui/scroll-pane/ScrollPaneHeader.vue +75 -0
- package/src/components/ui/scroll-pane/index.ts +2 -0
- package/src/components/ui/select/Select.vue +15 -0
- package/src/components/ui/select/SelectContent.vue +57 -0
- package/src/components/ui/select/SelectGroup.vue +19 -0
- package/src/components/ui/select/SelectItem.vue +47 -0
- package/src/components/ui/select/SelectItemText.vue +11 -0
- package/src/components/ui/select/SelectLabel.vue +13 -0
- package/src/components/ui/select/SelectScrollDownButton.vue +24 -0
- package/src/components/ui/select/SelectScrollUpButton.vue +24 -0
- package/src/components/ui/select/SelectSeparator.vue +17 -0
- package/src/components/ui/select/SelectTrigger.vue +45 -0
- package/src/components/ui/select/SelectValue.vue +11 -0
- package/src/components/ui/select/index.ts +11 -0
- package/src/components/ui/separator/Separator.vue +35 -0
- package/src/components/ui/separator/index.ts +1 -0
- package/src/components/ui/sheet/Sheet.vue +14 -0
- package/src/components/ui/sheet/SheetClose.vue +11 -0
- package/src/components/ui/sheet/SheetContent.vue +56 -0
- package/src/components/ui/sheet/SheetDescription.vue +22 -0
- package/src/components/ui/sheet/SheetFooter.vue +19 -0
- package/src/components/ui/sheet/SheetHeader.vue +16 -0
- package/src/components/ui/sheet/SheetTitle.vue +22 -0
- package/src/components/ui/sheet/SheetTrigger.vue +11 -0
- package/src/components/ui/sheet/index.ts +31 -0
- package/src/components/ui/skeleton/Skeleton.vue +14 -0
- package/src/components/ui/skeleton/index.ts +1 -0
- package/src/components/ui/slider/Slider.vue +66 -0
- package/src/components/ui/slider/index.ts +1 -0
- package/src/components/ui/switch/Switch.vue +37 -0
- package/src/components/ui/switch/index.ts +1 -0
- package/src/components/ui/table/Table.vue +16 -0
- package/src/components/ui/table/TableBody.vue +14 -0
- package/src/components/ui/table/TableCaption.vue +14 -0
- package/src/components/ui/table/TableCell.vue +14 -0
- package/src/components/ui/table/TableEmpty.vue +39 -0
- package/src/components/ui/table/TableFooter.vue +16 -0
- package/src/components/ui/table/TableHead.vue +21 -0
- package/src/components/ui/table/TableHeader.vue +14 -0
- package/src/components/ui/table/TableRow.vue +21 -0
- package/src/components/ui/table/index.ts +9 -0
- package/src/components/ui/tabs/Tabs.vue +15 -0
- package/src/components/ui/tabs/TabsContent.vue +22 -0
- package/src/components/ui/tabs/TabsIndicator.vue +22 -0
- package/src/components/ui/tabs/TabsList.vue +25 -0
- package/src/components/ui/tabs/TabsTrigger.vue +29 -0
- package/src/components/ui/tabs/index.ts +5 -0
- package/src/components/ui/tags-input/TagsInput.vue +22 -0
- package/src/components/ui/tags-input/TagsInputInput.vue +19 -0
- package/src/components/ui/tags-input/TagsInputItem.vue +22 -0
- package/src/components/ui/tags-input/TagsInputItemDelete.vue +24 -0
- package/src/components/ui/tags-input/TagsInputItemText.vue +19 -0
- package/src/components/ui/tags-input/index.ts +5 -0
- package/src/components/ui/textarea/Textarea.vue +24 -0
- package/src/components/ui/textarea/index.ts +1 -0
- package/src/components/ui/toast/Toast.vue +57 -0
- package/src/components/ui/toast/ToastAction.vue +30 -0
- package/src/components/ui/toast/ToastClose.vue +31 -0
- package/src/components/ui/toast/ToastDescription.vue +25 -0
- package/src/components/ui/toast/ToastTitle.vue +25 -0
- package/src/components/ui/toast/Toaster.vue +31 -0
- package/src/components/ui/toast/index.ts +8 -0
- package/src/components/ui/toast/use-toast.ts +136 -0
- package/src/components/ui/toggle/Toggle.vue +35 -0
- package/src/components/ui/toggle/index.ts +27 -0
- package/src/components/ui/toggle-group/ToggleGroup.vue +34 -0
- package/src/components/ui/toggle-group/ToggleGroupItem.vue +35 -0
- package/src/components/ui/toggle-group/index.ts +2 -0
- package/src/components/ui/tooltip/Tooltip.vue +14 -0
- package/src/components/ui/tooltip/TooltipContent.vue +31 -0
- package/src/components/ui/tooltip/TooltipProvider.vue +11 -0
- package/src/components/ui/tooltip/TooltipTrigger.vue +11 -0
- package/src/components/ui/tooltip/index.ts +4 -0
- package/src/composables/glass/index.ts +8 -0
- package/src/composables/glass/useGlassRenderer.ts +252 -0
- package/src/composables/glass/webgl/frostShader.ts +221 -0
- package/src/composables/glass/webgpu/glassShader.wgsl +173 -0
- package/src/composables/index.ts +32 -0
- package/src/composables/infinite-scroll/index.ts +2 -0
- package/src/composables/infinite-scroll/types.ts +25 -0
- package/src/composables/infinite-scroll/useInfiniteScroll.ts +101 -0
- package/src/composables/interaction/index.ts +5 -0
- package/src/composables/interaction/useHeightTransition.ts +82 -0
- package/src/composables/interaction/useHoverPopover.ts +64 -0
- package/src/composables/interaction/useHoverToggle.ts +103 -0
- package/src/composables/interaction/useLeaveTimer.ts +17 -0
- package/src/composables/interaction/useTouchGate.ts +207 -0
- package/src/composables/pagination/index.ts +2 -0
- package/src/composables/pagination/useOffsetPagination.ts +70 -0
- package/src/composables/prng.ts +32 -0
- package/src/composables/useCharSplit.ts +31 -0
- package/src/composables/useClipboard.ts +46 -0
- package/src/composables/useGlobalDark.ts +61 -0
- package/src/composables/useKeyboardShortcuts.ts +205 -0
- package/src/composables/useWatercolorBlob.ts +136 -0
- package/src/composables/virtual/index.ts +22 -0
- package/src/composables/virtual/useVirtualSectionWindow.ts +338 -0
- package/src/composables/virtual/useWindowedStore.ts +86 -0
- package/src/composables/virtual/virtualSectionLayout.ts +212 -0
- package/src/index.ts +9 -0
- package/src/styles/animations.css +233 -0
- package/src/styles/cards.css +66 -0
- package/src/styles/dock.css +221 -0
- package/src/styles/floating-panel.css +49 -0
- package/src/styles/glass.css +266 -0
- package/src/styles/index.css +26 -0
- package/src/styles/scroll-pane.css +10 -0
- package/src/styles/theme.css +138 -0
- package/src/styles/tokens.css +333 -0
- package/src/styles/transitions.css +226 -0
- package/src/styles/typography.css +277 -0
- package/src/styles/utilities.css +697 -0
- package/src/utils/cn.ts +6 -0
- package/src/utils/index.ts +1 -0
|
@@ -0,0 +1,226 @@
|
|
|
1
|
+
/* Reusable Vue <Transition> class sets */
|
|
2
|
+
|
|
3
|
+
/* ── Fade (symmetric, fast) ── */
|
|
4
|
+
.fade-enter-active,
|
|
5
|
+
.fade-leave-active {
|
|
6
|
+
transition: opacity var(--duration-fast) var(--ease-standard);
|
|
7
|
+
}
|
|
8
|
+
.fade-enter-from,
|
|
9
|
+
.fade-leave-to {
|
|
10
|
+
opacity: 0;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
/* ── Fade-slide (spring in, accelerate out) ── */
|
|
14
|
+
.fade-slide-enter-active {
|
|
15
|
+
transition:
|
|
16
|
+
opacity var(--duration-normal) var(--ease-out),
|
|
17
|
+
transform var(--duration-normal) var(--spring-smooth);
|
|
18
|
+
}
|
|
19
|
+
.fade-slide-leave-active {
|
|
20
|
+
transition:
|
|
21
|
+
opacity var(--duration-fast) var(--ease-in),
|
|
22
|
+
transform var(--duration-fast) var(--ease-in);
|
|
23
|
+
}
|
|
24
|
+
.fade-slide-enter-from {
|
|
25
|
+
opacity: 0;
|
|
26
|
+
transform: translateY(-4px);
|
|
27
|
+
}
|
|
28
|
+
.fade-slide-leave-to {
|
|
29
|
+
opacity: 0;
|
|
30
|
+
transform: translateY(4px);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
/* ── Expand-fade (spring in + max-height) ── */
|
|
34
|
+
.expand-fade-enter-active {
|
|
35
|
+
transition:
|
|
36
|
+
opacity var(--duration-normal) var(--ease-out),
|
|
37
|
+
transform var(--duration-normal) var(--spring-smooth),
|
|
38
|
+
max-height var(--duration-normal) var(--spring-smooth);
|
|
39
|
+
}
|
|
40
|
+
.expand-fade-leave-active {
|
|
41
|
+
transition:
|
|
42
|
+
opacity var(--duration-fast) var(--ease-in),
|
|
43
|
+
transform var(--duration-fast) var(--ease-in),
|
|
44
|
+
max-height var(--duration-fast) var(--ease-in);
|
|
45
|
+
}
|
|
46
|
+
.expand-fade-enter-from,
|
|
47
|
+
.expand-fade-leave-to {
|
|
48
|
+
opacity: 0;
|
|
49
|
+
transform: translateY(-4px);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/* ── Dialog scale (bouncy spring in, ease out) ── */
|
|
53
|
+
.dialog-scale-enter-active {
|
|
54
|
+
transition:
|
|
55
|
+
opacity var(--duration-slow) var(--ease-out),
|
|
56
|
+
transform var(--duration-slow) var(--spring-bouncy);
|
|
57
|
+
}
|
|
58
|
+
.dialog-scale-leave-active {
|
|
59
|
+
transition:
|
|
60
|
+
opacity var(--duration-normal) var(--ease-standard),
|
|
61
|
+
transform var(--duration-normal) var(--ease-standard);
|
|
62
|
+
}
|
|
63
|
+
.dialog-scale-enter-from {
|
|
64
|
+
opacity: 0;
|
|
65
|
+
transform: scale(0.95) translateY(8px);
|
|
66
|
+
}
|
|
67
|
+
.dialog-scale-leave-to {
|
|
68
|
+
opacity: 0;
|
|
69
|
+
transform: scale(0.95) translateY(8px);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
/* ── Spring pop (bouncy in, fast out) ── */
|
|
73
|
+
.pop-enter-active {
|
|
74
|
+
transition:
|
|
75
|
+
opacity var(--duration-fast) var(--ease-out),
|
|
76
|
+
transform var(--duration-slow) var(--spring-bouncy);
|
|
77
|
+
}
|
|
78
|
+
.pop-leave-active {
|
|
79
|
+
transition:
|
|
80
|
+
opacity var(--duration-fast) var(--ease-out),
|
|
81
|
+
transform var(--duration-fast) var(--ease-out);
|
|
82
|
+
}
|
|
83
|
+
.pop-enter-from {
|
|
84
|
+
opacity: 0;
|
|
85
|
+
transform: scale(0.9);
|
|
86
|
+
}
|
|
87
|
+
.pop-leave-to {
|
|
88
|
+
opacity: 0;
|
|
89
|
+
transform: scale(0.95);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
/* ── Dropdown (fast opacity + snappy spring transform) ── */
|
|
93
|
+
.dropdown-enter-active {
|
|
94
|
+
transition:
|
|
95
|
+
opacity var(--duration-instant) var(--ease-out),
|
|
96
|
+
transform var(--duration-normal) var(--spring-snappy);
|
|
97
|
+
}
|
|
98
|
+
.dropdown-leave-active {
|
|
99
|
+
transition:
|
|
100
|
+
opacity var(--duration-instant) var(--ease-standard),
|
|
101
|
+
transform var(--duration-fast) var(--ease-standard);
|
|
102
|
+
}
|
|
103
|
+
.dropdown-enter-from,
|
|
104
|
+
.dropdown-leave-to {
|
|
105
|
+
opacity: 0;
|
|
106
|
+
transform: scale(0.96) translateY(4px);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
/* ── Tab fade ── */
|
|
110
|
+
.tab-fade-enter-active,
|
|
111
|
+
.tab-fade-leave-active {
|
|
112
|
+
transition: opacity var(--duration-fast) var(--ease-standard);
|
|
113
|
+
}
|
|
114
|
+
.tab-fade-enter-from,
|
|
115
|
+
.tab-fade-leave-to {
|
|
116
|
+
opacity: 0;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
/* ── Pane swap (horizontal slide + fade) ── */
|
|
120
|
+
.pane-swap-enter-active {
|
|
121
|
+
transition:
|
|
122
|
+
opacity var(--duration-normal, 0.3s) var(--ease-out, ease),
|
|
123
|
+
transform var(--duration-normal, 0.3s) var(--spring-smooth, ease);
|
|
124
|
+
}
|
|
125
|
+
.pane-swap-leave-active {
|
|
126
|
+
transition:
|
|
127
|
+
opacity var(--duration-normal, 0.3s) var(--ease-standard, ease),
|
|
128
|
+
transform var(--duration-normal, 0.3s) var(--ease-standard, ease);
|
|
129
|
+
}
|
|
130
|
+
.pane-swap-enter-from {
|
|
131
|
+
opacity: 0;
|
|
132
|
+
transform: translateX(var(--animation-slide-md, 6px));
|
|
133
|
+
}
|
|
134
|
+
.pane-swap-leave-to {
|
|
135
|
+
opacity: 0;
|
|
136
|
+
transform: translateX(calc(-1 * var(--animation-slide-md, 6px)));
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
/* ── Pane slide (collapse/expand) ── */
|
|
140
|
+
.pane-slide-enter-active {
|
|
141
|
+
transition:
|
|
142
|
+
opacity var(--duration-panel, 0.55s) var(--ease-out, ease),
|
|
143
|
+
max-height var(--duration-panel, 0.55s) var(--spring-gentle, ease);
|
|
144
|
+
}
|
|
145
|
+
.pane-slide-leave-active {
|
|
146
|
+
transition:
|
|
147
|
+
opacity var(--duration-panel, 0.55s) var(--ease-standard, ease),
|
|
148
|
+
max-height var(--duration-panel, 0.55s) var(--ease-standard, ease);
|
|
149
|
+
}
|
|
150
|
+
.pane-slide-enter-from,
|
|
151
|
+
.pane-slide-leave-to {
|
|
152
|
+
opacity: 0;
|
|
153
|
+
max-height: 0;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
/* ── Badge entrance (wiggle + bounce) ── */
|
|
157
|
+
@keyframes badge-in {
|
|
158
|
+
0% {
|
|
159
|
+
opacity: 0;
|
|
160
|
+
transform: translateY(1rem) scale(0.8) rotate(-3deg);
|
|
161
|
+
}
|
|
162
|
+
60% {
|
|
163
|
+
opacity: 1;
|
|
164
|
+
transform: translateY(-0.15rem) scale(1.02) rotate(1.5deg);
|
|
165
|
+
}
|
|
166
|
+
80% {
|
|
167
|
+
transform: translateY(0.05rem) scale(0.99) rotate(-0.5deg);
|
|
168
|
+
}
|
|
169
|
+
100% {
|
|
170
|
+
transform: translateY(0) scale(1) rotate(0);
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
.badge-enter-active {
|
|
174
|
+
animation: badge-in 600ms var(--ease-standard, ease);
|
|
175
|
+
}
|
|
176
|
+
.badge-leave-active {
|
|
177
|
+
animation: badge-in 300ms var(--ease-standard, ease) reverse;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
/* ── Reduced motion: preserve fades, remove transform/scale motion ── */
|
|
181
|
+
@media (prefers-reduced-motion: reduce) {
|
|
182
|
+
.fade-enter-active,
|
|
183
|
+
.fade-leave-active,
|
|
184
|
+
.tab-fade-enter-active,
|
|
185
|
+
.tab-fade-leave-active {
|
|
186
|
+
/* Fades are safe — keep them but shorten */
|
|
187
|
+
transition-duration: 0.1s !important;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.fade-slide-enter-active,
|
|
191
|
+
.fade-slide-leave-active,
|
|
192
|
+
.expand-fade-enter-active,
|
|
193
|
+
.expand-fade-leave-active,
|
|
194
|
+
.dialog-scale-enter-active,
|
|
195
|
+
.dialog-scale-leave-active,
|
|
196
|
+
.pop-enter-active,
|
|
197
|
+
.pop-leave-active,
|
|
198
|
+
.dropdown-enter-active,
|
|
199
|
+
.dropdown-leave-active,
|
|
200
|
+
.pane-swap-enter-active,
|
|
201
|
+
.pane-swap-leave-active,
|
|
202
|
+
.pane-slide-enter-active,
|
|
203
|
+
.pane-slide-leave-active,
|
|
204
|
+
.badge-enter-active,
|
|
205
|
+
.badge-leave-active {
|
|
206
|
+
/* Keep opacity transition, eliminate transform motion */
|
|
207
|
+
transition-property: opacity !important;
|
|
208
|
+
transition-duration: 0.15s !important;
|
|
209
|
+
animation-duration: 0.01ms !important;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.fade-slide-enter-from,
|
|
213
|
+
.fade-slide-leave-to,
|
|
214
|
+
.expand-fade-enter-from,
|
|
215
|
+
.expand-fade-leave-to,
|
|
216
|
+
.dialog-scale-enter-from,
|
|
217
|
+
.dialog-scale-leave-to,
|
|
218
|
+
.pop-enter-from,
|
|
219
|
+
.pop-leave-to,
|
|
220
|
+
.dropdown-enter-from,
|
|
221
|
+
.dropdown-leave-to,
|
|
222
|
+
.pane-swap-enter-from,
|
|
223
|
+
.pane-swap-leave-to {
|
|
224
|
+
transform: none !important;
|
|
225
|
+
}
|
|
226
|
+
}
|
|
@@ -0,0 +1,277 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* typography.css — Golden-ratio type scale + semantic classes
|
|
3
|
+
*
|
|
4
|
+
* Scale ratio: sqrt(φ) ≈ 1.272 (modulated golden ratio)
|
|
5
|
+
* Base: 1rem (16px)
|
|
6
|
+
*
|
|
7
|
+
* Key relationships:
|
|
8
|
+
* body × φ ≈ subheading
|
|
9
|
+
* subheading × φ ≈ title
|
|
10
|
+
* title × φ ≈ display-2
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
:root {
|
|
14
|
+
/* Scale tokens */
|
|
15
|
+
--type-micro: 0.6875rem; /* 11px */
|
|
16
|
+
--type-caption: 0.75rem; /* 12px */
|
|
17
|
+
--type-small: 0.875rem; /* 14px */
|
|
18
|
+
--type-body: 1rem; /* 16px */
|
|
19
|
+
--type-prose: 1.125rem; /* 18px */
|
|
20
|
+
--type-subheading: 1.272rem; /* 20.4px — φ^(1/2) */
|
|
21
|
+
--type-heading: 1.618rem; /* 25.9px — φ^1 */
|
|
22
|
+
--type-title: 2.058rem; /* 32.9px — φ^(3/2) */
|
|
23
|
+
--type-display-1: clamp(1.618rem, 1.2rem + 1.6vw, 2.618rem); /* φ^2, fluid */
|
|
24
|
+
--type-display-2: clamp(2.058rem, 1.5rem + 2.2vw, 3.33rem); /* φ^(5/2), fluid */
|
|
25
|
+
--type-display-3: clamp(2.618rem, 2rem + 3vw, 4.236rem); /* φ^3, fluid */
|
|
26
|
+
--type-display-4: clamp(3.33rem, 2.5rem + 4vw, 5.382rem); /* φ^(7/2), fluid */
|
|
27
|
+
--type-display-5: clamp(4.236rem, 3.5rem + 6vw, 6.854rem); /* φ^4, fluid */
|
|
28
|
+
|
|
29
|
+
/* Line heights — semantic, paired to scale steps */
|
|
30
|
+
--leading-micro: 1.2;
|
|
31
|
+
--leading-caption: 1.3;
|
|
32
|
+
--leading-small: 1.4;
|
|
33
|
+
--leading-body: 1.5;
|
|
34
|
+
--leading-prose: 1.618; /* golden ratio */
|
|
35
|
+
--leading-heading: 1.2;
|
|
36
|
+
--leading-display: 1.1;
|
|
37
|
+
|
|
38
|
+
/* Letter spacing */
|
|
39
|
+
--tracking-tight: -0.025em;
|
|
40
|
+
--tracking-normal: 0;
|
|
41
|
+
--tracking-wide: 0.025em;
|
|
42
|
+
--tracking-wider: 0.05em;
|
|
43
|
+
--tracking-caps: 0.1em;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
@layer components {
|
|
47
|
+
/* ── Display: Hero / splash — light weight, knife-edge serifs ── */
|
|
48
|
+
.text-display-5 {
|
|
49
|
+
font-family: var(--font-display);
|
|
50
|
+
font-size: var(--type-display-5);
|
|
51
|
+
line-height: var(--leading-display);
|
|
52
|
+
letter-spacing: var(--tracking-tight);
|
|
53
|
+
font-weight: 300;
|
|
54
|
+
font-optical-sizing: auto;
|
|
55
|
+
font-variation-settings: "WONK" 1, "SOFT" 0;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
.text-display-4 {
|
|
60
|
+
font-family: var(--font-display);
|
|
61
|
+
font-size: var(--type-display-4);
|
|
62
|
+
line-height: var(--leading-display);
|
|
63
|
+
letter-spacing: var(--tracking-tight);
|
|
64
|
+
font-weight: 350;
|
|
65
|
+
font-optical-sizing: auto;
|
|
66
|
+
font-variation-settings: "WONK" 1, "SOFT" 0;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
.text-display-3 {
|
|
71
|
+
font-family: var(--font-display);
|
|
72
|
+
font-size: var(--type-display-3);
|
|
73
|
+
line-height: var(--leading-display);
|
|
74
|
+
letter-spacing: var(--tracking-tight);
|
|
75
|
+
font-weight: 350;
|
|
76
|
+
font-optical-sizing: auto;
|
|
77
|
+
font-variation-settings: "WONK" 1, "SOFT" 0;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.text-display-2 {
|
|
81
|
+
font-family: var(--font-display);
|
|
82
|
+
font-size: var(--type-display-2);
|
|
83
|
+
line-height: var(--leading-display);
|
|
84
|
+
letter-spacing: var(--tracking-tight);
|
|
85
|
+
font-weight: 350;
|
|
86
|
+
font-optical-sizing: auto;
|
|
87
|
+
font-variation-settings: "WONK" 1, "SOFT" 0;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.text-display {
|
|
91
|
+
font-family: var(--font-display);
|
|
92
|
+
font-size: var(--type-display-1);
|
|
93
|
+
line-height: var(--leading-display);
|
|
94
|
+
letter-spacing: var(--tracking-tight);
|
|
95
|
+
font-weight: 350;
|
|
96
|
+
font-optical-sizing: auto;
|
|
97
|
+
font-variation-settings: "WONK" 1, "SOFT" 0;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
/* ── Title: Page / section heads ── */
|
|
101
|
+
.text-title {
|
|
102
|
+
font-family: var(--font-display);
|
|
103
|
+
font-size: var(--type-title);
|
|
104
|
+
line-height: var(--leading-heading);
|
|
105
|
+
letter-spacing: var(--tracking-tight);
|
|
106
|
+
font-weight: 400;
|
|
107
|
+
font-optical-sizing: auto;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
/* ── Heading: Subsection heads ── */
|
|
111
|
+
.text-heading {
|
|
112
|
+
font-family: var(--font-display);
|
|
113
|
+
font-size: var(--type-heading);
|
|
114
|
+
line-height: var(--leading-heading);
|
|
115
|
+
letter-spacing: var(--tracking-normal);
|
|
116
|
+
font-weight: 500;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
/* ── Subheading: Card titles, field labels ── */
|
|
120
|
+
.text-subheading {
|
|
121
|
+
font-family: var(--font-serif);
|
|
122
|
+
font-size: var(--type-subheading);
|
|
123
|
+
line-height: var(--leading-body);
|
|
124
|
+
letter-spacing: var(--tracking-normal);
|
|
125
|
+
font-weight: 600;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
/* ── Prose: Long-form reading ── */
|
|
129
|
+
.text-prose {
|
|
130
|
+
font-family: var(--font-serif);
|
|
131
|
+
font-size: var(--type-prose);
|
|
132
|
+
line-height: var(--leading-prose);
|
|
133
|
+
letter-spacing: var(--tracking-normal);
|
|
134
|
+
font-weight: 400;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
/* ── Body: Default body copy ── */
|
|
138
|
+
.text-body {
|
|
139
|
+
font-family: var(--font-serif);
|
|
140
|
+
font-size: var(--type-body);
|
|
141
|
+
line-height: var(--leading-body);
|
|
142
|
+
letter-spacing: var(--tracking-normal);
|
|
143
|
+
font-weight: 400;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
/* ── Small: Secondary body, metadata ── */
|
|
147
|
+
.text-small {
|
|
148
|
+
font-family: var(--font-serif);
|
|
149
|
+
font-size: var(--type-small);
|
|
150
|
+
line-height: var(--leading-small);
|
|
151
|
+
letter-spacing: var(--tracking-normal);
|
|
152
|
+
font-weight: 400;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
/* ── Caption: Labels, timestamps, hints ── */
|
|
156
|
+
.text-caption {
|
|
157
|
+
font-family: var(--font-serif);
|
|
158
|
+
font-size: var(--type-caption);
|
|
159
|
+
line-height: var(--leading-caption);
|
|
160
|
+
letter-spacing: var(--tracking-wide);
|
|
161
|
+
font-weight: 400;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
/* ── Micro: Fine print, badges ── */
|
|
165
|
+
.text-micro {
|
|
166
|
+
font-family: var(--font-serif);
|
|
167
|
+
font-size: var(--type-micro);
|
|
168
|
+
line-height: var(--leading-micro);
|
|
169
|
+
letter-spacing: var(--tracking-wide);
|
|
170
|
+
font-weight: 500;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
/* ── Mono variants ── */
|
|
174
|
+
.text-mono-caption {
|
|
175
|
+
font-family: var(--font-mono);
|
|
176
|
+
font-size: var(--type-caption);
|
|
177
|
+
line-height: var(--leading-caption);
|
|
178
|
+
letter-spacing: var(--tracking-wider);
|
|
179
|
+
text-transform: uppercase;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.text-mono-small {
|
|
183
|
+
font-family: var(--font-mono);
|
|
184
|
+
font-size: var(--type-small);
|
|
185
|
+
line-height: var(--leading-small);
|
|
186
|
+
letter-spacing: var(--tracking-normal);
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
/* ── Responsive pane title ── */
|
|
190
|
+
.text-pane-title {
|
|
191
|
+
font-family: var(--font-display);
|
|
192
|
+
font-size: clamp(2.4rem, 1.8rem + 2vw, 3.33rem);
|
|
193
|
+
line-height: var(--leading-display);
|
|
194
|
+
letter-spacing: var(--tracking-tight);
|
|
195
|
+
font-weight: 400;
|
|
196
|
+
font-optical-sizing: auto;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
@media (min-width: 640px) {
|
|
200
|
+
.text-pane-title {
|
|
201
|
+
font-size: var(--type-display-3);
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
/* ── Section label (mono, small caps) ── */
|
|
206
|
+
.section-label {
|
|
207
|
+
font-family: var(--font-mono);
|
|
208
|
+
font-size: var(--type-caption);
|
|
209
|
+
color: var(--muted-foreground);
|
|
210
|
+
text-transform: uppercase;
|
|
211
|
+
letter-spacing: var(--tracking-caps);
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
/* ── Pane description ── */
|
|
215
|
+
.text-pane-description {
|
|
216
|
+
font-family: var(--font-mono);
|
|
217
|
+
font-size: var(--type-small);
|
|
218
|
+
color: color-mix(in srgb, var(--muted-foreground) 60%, transparent);
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
/* ── Font family utilities ── */
|
|
222
|
+
.font-display {
|
|
223
|
+
font-family: var(--font-display);
|
|
224
|
+
font-optical-sizing: auto;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.font-mono-code {
|
|
228
|
+
font-family: var(--font-mono);
|
|
229
|
+
font-feature-settings: "liga", "calt";
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
/* ── Font feature utilities ── */
|
|
233
|
+
.tabular-nums {
|
|
234
|
+
font-variant-numeric: tabular-nums;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.proportional-nums {
|
|
238
|
+
font-variant-numeric: proportional-nums;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
/* ── Glass legibility — halo shadow for text over translucent backgrounds ── */
|
|
242
|
+
.text-glass-legible {
|
|
243
|
+
text-shadow:
|
|
244
|
+
0 0 12px color-mix(in srgb, var(--background) 50%, transparent),
|
|
245
|
+
0 0 4px color-mix(in srgb, var(--background) 30%, transparent);
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
/* ── Kinetic: ambient weight breathing ── */
|
|
249
|
+
.text-breathe {
|
|
250
|
+
animation: weight-breathe 4s ease-in-out infinite;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
/* ── Kinetic: Fraunces WONK/SOFT personality shift on hover ── */
|
|
254
|
+
.text-wonk-hover {
|
|
255
|
+
font-variation-settings: "WONK" 0, "SOFT" 100;
|
|
256
|
+
transition: font-variation-settings var(--duration-slow) var(--spring-smooth, ease);
|
|
257
|
+
}
|
|
258
|
+
.text-wonk-hover:hover {
|
|
259
|
+
font-variation-settings: "WONK" 1, "SOFT" 0;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
/* ── Kinetic: scroll-driven weight reveal (zero JS) ── */
|
|
263
|
+
@supports (animation-timeline: view()) {
|
|
264
|
+
.scroll-weight-reveal {
|
|
265
|
+
animation: weight-reveal linear both;
|
|
266
|
+
animation-timeline: view();
|
|
267
|
+
animation-range: entry 0% cover 30%;
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
/* ── Kinetic: per-character stagger ── */
|
|
272
|
+
.char-stagger > .char {
|
|
273
|
+
display: inline-block;
|
|
274
|
+
animation: fade-in var(--duration-normal) var(--spring-smooth, ease) backwards;
|
|
275
|
+
animation-delay: calc(var(--char-index, 0) * 30ms);
|
|
276
|
+
}
|
|
277
|
+
}
|