@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,115 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import { ref, watch, onMounted, onUnmounted, nextTick, type HTMLAttributes } from "vue";
|
|
3
|
+
import { cn } from "../../../utils";
|
|
4
|
+
|
|
5
|
+
export interface TabOption {
|
|
6
|
+
label: string;
|
|
7
|
+
value: string;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
const props = defineProps<{
|
|
11
|
+
options: TabOption[];
|
|
12
|
+
modelValue: string;
|
|
13
|
+
class?: HTMLAttributes["class"];
|
|
14
|
+
}>();
|
|
15
|
+
|
|
16
|
+
const emit = defineEmits<{
|
|
17
|
+
"update:modelValue": [value: string];
|
|
18
|
+
}>();
|
|
19
|
+
|
|
20
|
+
const containerRef = ref<HTMLElement | null>(null);
|
|
21
|
+
const buttonRefs = ref<HTMLElement[]>([]);
|
|
22
|
+
const underlineStyle = ref<Record<string, string>>({
|
|
23
|
+
width: "0px",
|
|
24
|
+
transform: "translateX(0px)",
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
function updateUnderline() {
|
|
28
|
+
const idx = props.options.findIndex((o) => o.value === props.modelValue);
|
|
29
|
+
if (idx < 0 || !buttonRefs.value[idx]) return;
|
|
30
|
+
const btn = buttonRefs.value[idx];
|
|
31
|
+
underlineStyle.value = {
|
|
32
|
+
width: `${btn.offsetWidth}px`,
|
|
33
|
+
transform: `translateX(${btn.offsetLeft}px)`,
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
function select(value: string) {
|
|
38
|
+
emit("update:modelValue", value);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
watch(() => props.modelValue, () => nextTick(updateUnderline));
|
|
42
|
+
watch(() => props.options, () => nextTick(updateUnderline), { deep: true });
|
|
43
|
+
|
|
44
|
+
let resizeObserver: ResizeObserver | null = null;
|
|
45
|
+
|
|
46
|
+
onMounted(() => {
|
|
47
|
+
nextTick(updateUnderline);
|
|
48
|
+
if (containerRef.value) {
|
|
49
|
+
resizeObserver = new ResizeObserver(() => updateUnderline());
|
|
50
|
+
resizeObserver.observe(containerRef.value);
|
|
51
|
+
}
|
|
52
|
+
});
|
|
53
|
+
|
|
54
|
+
onUnmounted(() => {
|
|
55
|
+
resizeObserver?.disconnect();
|
|
56
|
+
});
|
|
57
|
+
</script>
|
|
58
|
+
|
|
59
|
+
<template>
|
|
60
|
+
<div ref="containerRef" :class="cn('underline-tabs', props.class)">
|
|
61
|
+
<div class="underline-indicator" :style="underlineStyle" />
|
|
62
|
+
<button
|
|
63
|
+
v-for="(option, idx) in options"
|
|
64
|
+
:key="option.value"
|
|
65
|
+
:ref="(el) => { if (el) buttonRefs[idx] = el as HTMLElement }"
|
|
66
|
+
class="underline-tab"
|
|
67
|
+
:class="{ 'is-active': modelValue === option.value }"
|
|
68
|
+
@click="select(option.value)"
|
|
69
|
+
>
|
|
70
|
+
{{ option.label }}
|
|
71
|
+
</button>
|
|
72
|
+
</div>
|
|
73
|
+
</template>
|
|
74
|
+
|
|
75
|
+
<style scoped>
|
|
76
|
+
.underline-tabs {
|
|
77
|
+
position: relative;
|
|
78
|
+
display: flex;
|
|
79
|
+
gap: 0.25rem;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.underline-indicator {
|
|
83
|
+
position: absolute;
|
|
84
|
+
bottom: 0;
|
|
85
|
+
left: 0;
|
|
86
|
+
height: 2px;
|
|
87
|
+
background: var(--foreground);
|
|
88
|
+
border-radius: var(--radius-sm);
|
|
89
|
+
transition:
|
|
90
|
+
transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
|
|
91
|
+
width 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.underline-tab {
|
|
95
|
+
position: relative;
|
|
96
|
+
border: none;
|
|
97
|
+
background: none;
|
|
98
|
+
font-weight: 500;
|
|
99
|
+
cursor: pointer;
|
|
100
|
+
white-space: nowrap;
|
|
101
|
+
padding: 0.375rem 0.75rem;
|
|
102
|
+
font: inherit;
|
|
103
|
+
color: var(--muted-foreground);
|
|
104
|
+
transition: color var(--duration-normal) var(--ease-standard);
|
|
105
|
+
border-radius: 0.25rem;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.underline-tab:hover {
|
|
109
|
+
color: color-mix(in srgb, var(--foreground) 70%, transparent);
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.underline-tab.is-active {
|
|
113
|
+
color: var(--foreground);
|
|
114
|
+
}
|
|
115
|
+
</style>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { default as UnderlineTabs } from "./UnderlineTabs.vue";
|
|
2
|
+
export { default as BouncyTabs } from "./BouncyTabs.vue";
|
|
3
|
+
export { default as BouncyToggle } from "./BouncyToggle.vue";
|
|
4
|
+
export type { TabOption } from "./UnderlineTabs.vue";
|
|
5
|
+
export type { ToggleOption, BouncyToggleProps } from "./BouncyToggle.vue";
|
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import { ref } from "vue";
|
|
3
|
+
|
|
4
|
+
const props = defineProps<{
|
|
5
|
+
modelValue: number;
|
|
6
|
+
label?: string;
|
|
7
|
+
}>();
|
|
8
|
+
|
|
9
|
+
const emit = defineEmits<{
|
|
10
|
+
"update:modelValue": [v: number];
|
|
11
|
+
scrubStart: [];
|
|
12
|
+
scrubEnd: [];
|
|
13
|
+
}>();
|
|
14
|
+
|
|
15
|
+
const trackRef = ref<HTMLElement>();
|
|
16
|
+
const scrubbing = ref(false);
|
|
17
|
+
|
|
18
|
+
function tFromPointer(e: PointerEvent): number {
|
|
19
|
+
const rect = trackRef.value!.getBoundingClientRect();
|
|
20
|
+
return Math.max(0, Math.min(1, (e.clientX - rect.left) / rect.width));
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
function onTrackDown(e: PointerEvent) {
|
|
24
|
+
(e.currentTarget as HTMLElement).setPointerCapture(e.pointerId);
|
|
25
|
+
scrubbing.value = true;
|
|
26
|
+
emit("scrubStart");
|
|
27
|
+
emit("update:modelValue", tFromPointer(e));
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
function onTrackMove(e: PointerEvent) {
|
|
31
|
+
if (!scrubbing.value) return;
|
|
32
|
+
emit("update:modelValue", tFromPointer(e));
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
function onTrackUp() {
|
|
36
|
+
scrubbing.value = false;
|
|
37
|
+
emit("scrubEnd");
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
function onTrackKeydown(e: KeyboardEvent) {
|
|
41
|
+
const step = e.shiftKey ? 0.1 : 0.01;
|
|
42
|
+
if (e.key === "ArrowRight" || e.key === "ArrowUp") {
|
|
43
|
+
e.preventDefault();
|
|
44
|
+
emit("update:modelValue", Math.min(1, props.modelValue + step));
|
|
45
|
+
} else if (e.key === "ArrowLeft" || e.key === "ArrowDown") {
|
|
46
|
+
e.preventDefault();
|
|
47
|
+
emit("update:modelValue", Math.max(0, props.modelValue - step));
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
</script>
|
|
51
|
+
|
|
52
|
+
<template>
|
|
53
|
+
<div class="timeline-row">
|
|
54
|
+
<div v-if="label" class="timeline-caret" :style="{ left: (modelValue * 100) + '%' }">
|
|
55
|
+
<span class="caret-value font-mono-code">{{ label }}</span>
|
|
56
|
+
</div>
|
|
57
|
+
<div
|
|
58
|
+
ref="trackRef"
|
|
59
|
+
class="glass-track"
|
|
60
|
+
role="slider"
|
|
61
|
+
tabindex="0"
|
|
62
|
+
:aria-valuenow="modelValue"
|
|
63
|
+
aria-valuemin="0"
|
|
64
|
+
aria-valuemax="1"
|
|
65
|
+
aria-label="Timeline"
|
|
66
|
+
@pointerdown="onTrackDown"
|
|
67
|
+
@pointermove="onTrackMove"
|
|
68
|
+
@pointerup="onTrackUp"
|
|
69
|
+
@pointercancel="onTrackUp"
|
|
70
|
+
@keydown="onTrackKeydown"
|
|
71
|
+
>
|
|
72
|
+
<div class="glass-fill" :style="{ width: (modelValue * 100) + '%' }" />
|
|
73
|
+
<div class="glass-thumb" :style="{ left: (modelValue * 100) + '%' }" />
|
|
74
|
+
</div>
|
|
75
|
+
</div>
|
|
76
|
+
</template>
|
|
77
|
+
|
|
78
|
+
<style scoped>
|
|
79
|
+
.timeline-row {
|
|
80
|
+
flex: 1 1 0;
|
|
81
|
+
min-width: 0;
|
|
82
|
+
padding: 0 0.25rem;
|
|
83
|
+
position: relative;
|
|
84
|
+
display: flex;
|
|
85
|
+
align-items: center;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.timeline-caret {
|
|
89
|
+
position: absolute;
|
|
90
|
+
bottom: calc(100% + 6px);
|
|
91
|
+
transform: translateX(-50%);
|
|
92
|
+
pointer-events: none;
|
|
93
|
+
opacity: 0;
|
|
94
|
+
transition: opacity var(--duration-fast) var(--ease-standard);
|
|
95
|
+
z-index: var(--z-popover);
|
|
96
|
+
user-select: none;
|
|
97
|
+
-webkit-user-select: none;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.timeline-row:hover .timeline-caret,
|
|
101
|
+
.timeline-row:has(.glass-track:active) .timeline-caret {
|
|
102
|
+
opacity: 1;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.caret-value {
|
|
106
|
+
display: block;
|
|
107
|
+
padding: 0.125rem 0.375rem;
|
|
108
|
+
font-size: var(--type-small);
|
|
109
|
+
font-weight: 500;
|
|
110
|
+
color: var(--popover-foreground);
|
|
111
|
+
background: var(--popover);
|
|
112
|
+
border: 1px solid var(--border);
|
|
113
|
+
border-radius: var(--radius-sm);
|
|
114
|
+
box-shadow: var(--shadow-sm);
|
|
115
|
+
white-space: nowrap;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.glass-track {
|
|
119
|
+
position: relative;
|
|
120
|
+
width: 100%;
|
|
121
|
+
height: 24px;
|
|
122
|
+
border-radius: var(--radius-pill);
|
|
123
|
+
background: color-mix(in srgb, var(--foreground) 5%, transparent);
|
|
124
|
+
backdrop-filter: var(--glass-blur-subtle);
|
|
125
|
+
-webkit-backdrop-filter: var(--glass-blur-subtle);
|
|
126
|
+
cursor: pointer;
|
|
127
|
+
touch-action: none;
|
|
128
|
+
overflow: hidden;
|
|
129
|
+
transition: background var(--duration-fast) var(--ease-standard);
|
|
130
|
+
outline: none;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.glass-track:hover,
|
|
134
|
+
.glass-track:focus-visible {
|
|
135
|
+
background: color-mix(in srgb, var(--foreground) 8%, transparent);
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.glass-track:focus-visible {
|
|
139
|
+
box-shadow: var(--focus-ring-shadow);
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.glass-fill {
|
|
143
|
+
position: absolute;
|
|
144
|
+
top: 0;
|
|
145
|
+
left: 0;
|
|
146
|
+
bottom: 0;
|
|
147
|
+
background: color-mix(in srgb, var(--foreground) 7%, transparent);
|
|
148
|
+
border-radius: var(--radius-pill);
|
|
149
|
+
pointer-events: none;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.glass-thumb {
|
|
153
|
+
position: absolute;
|
|
154
|
+
top: 50%;
|
|
155
|
+
transform: translate(calc(-50% - 3px), -50%);
|
|
156
|
+
width: 6px;
|
|
157
|
+
height: 16px;
|
|
158
|
+
border-radius: var(--radius-sm);
|
|
159
|
+
background: color-mix(in srgb, var(--foreground) 25%, transparent);
|
|
160
|
+
opacity: 0;
|
|
161
|
+
pointer-events: none;
|
|
162
|
+
transition: opacity var(--duration-fast) var(--ease-standard),
|
|
163
|
+
width var(--duration-fast) var(--ease-standard),
|
|
164
|
+
height var(--duration-fast) var(--ease-standard),
|
|
165
|
+
background var(--duration-fast) var(--ease-standard);
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.glass-track:hover .glass-thumb {
|
|
169
|
+
opacity: 1;
|
|
170
|
+
width: 8px;
|
|
171
|
+
height: 18px;
|
|
172
|
+
background: color-mix(in srgb, var(--foreground) 40%, transparent);
|
|
173
|
+
}
|
|
174
|
+
</style>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as GlassTimeline } from "./GlassTimeline.vue";
|
|
@@ -0,0 +1,239 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<span class="tw-root">
|
|
3
|
+
<span
|
|
4
|
+
v-for="(char, index) in leadingChars"
|
|
5
|
+
:key="index"
|
|
6
|
+
:class="charClass"
|
|
7
|
+
@click="handleCharClick(index)"
|
|
8
|
+
>
|
|
9
|
+
{{ char }}
|
|
10
|
+
</span>
|
|
11
|
+
<span v-if="tailChar !== null" class="tw-tail">
|
|
12
|
+
<span :class="charClass" @click="handleCharClick(displayTextChars.length - 1)">
|
|
13
|
+
{{ tailChar }}
|
|
14
|
+
</span>
|
|
15
|
+
<span
|
|
16
|
+
v-if="cursorVisible"
|
|
17
|
+
class="tw-cursor"
|
|
18
|
+
:class="{
|
|
19
|
+
'tw-cursor--blink': cursorBlink && !typewriter.isTyping.value,
|
|
20
|
+
}"
|
|
21
|
+
>
|
|
22
|
+
{{ cursorChar }}
|
|
23
|
+
</span>
|
|
24
|
+
</span>
|
|
25
|
+
<span
|
|
26
|
+
v-else-if="cursorVisible"
|
|
27
|
+
class="tw-cursor"
|
|
28
|
+
:class="{
|
|
29
|
+
'tw-cursor--blink': cursorBlink && !typewriter.isTyping.value,
|
|
30
|
+
}"
|
|
31
|
+
>
|
|
32
|
+
{{ cursorChar }}
|
|
33
|
+
</span>
|
|
34
|
+
</span>
|
|
35
|
+
</template>
|
|
36
|
+
|
|
37
|
+
<script setup lang="ts">
|
|
38
|
+
import { watch, onMounted, onUnmounted, computed } from "vue";
|
|
39
|
+
import { useTypewriter } from "./composables/useTypewriter";
|
|
40
|
+
import type { TypewriterWord } from "./types";
|
|
41
|
+
|
|
42
|
+
interface Props {
|
|
43
|
+
/** Single text to type. Use this OR `words`, not both. */
|
|
44
|
+
text?: string;
|
|
45
|
+
/** Array of words to cycle through in rotation mode. Use this OR `text`, not both. */
|
|
46
|
+
words?: TypewriterWord[];
|
|
47
|
+
ngramSize?: number | { min: number; max: number };
|
|
48
|
+
baseSpeed?: number;
|
|
49
|
+
variance?: number;
|
|
50
|
+
errorRate?: number;
|
|
51
|
+
firstAnimationSpeedFactor?: number;
|
|
52
|
+
maxCharsBeforeNotice?: number;
|
|
53
|
+
continueAfterTypoProbability?: number;
|
|
54
|
+
sequentialTypoDecay?: number;
|
|
55
|
+
correctionSpeedMultiplier?: number;
|
|
56
|
+
cursorVisible?: boolean;
|
|
57
|
+
cursorBlink?: boolean;
|
|
58
|
+
cursorChar?: string;
|
|
59
|
+
startDelay?: number;
|
|
60
|
+
loop?: boolean;
|
|
61
|
+
/** Pause after typing a word before deleting (ms). Word-rotation mode only. */
|
|
62
|
+
pauseAfterType?: number;
|
|
63
|
+
/** Pause after deleting a word before typing the next (ms). Word-rotation mode only. */
|
|
64
|
+
pauseAfterDelete?: number;
|
|
65
|
+
/** Backspace speed in word-rotation mode (ms per char). */
|
|
66
|
+
deletingSpeed?: number;
|
|
67
|
+
/** Whether clicking characters triggers interactive backspace. */
|
|
68
|
+
interactive?: boolean;
|
|
69
|
+
respectReducedMotion?: boolean;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
const props = withDefaults(defineProps<Props>(), {
|
|
73
|
+
text: undefined,
|
|
74
|
+
words: undefined,
|
|
75
|
+
ngramSize: () => ({ min: 1, max: 3 }),
|
|
76
|
+
baseSpeed: 150,
|
|
77
|
+
variance: 0.4,
|
|
78
|
+
errorRate: 0.015,
|
|
79
|
+
firstAnimationSpeedFactor: 0.6,
|
|
80
|
+
maxCharsBeforeNotice: 4,
|
|
81
|
+
continueAfterTypoProbability: 0.6,
|
|
82
|
+
sequentialTypoDecay: 0.3,
|
|
83
|
+
correctionSpeedMultiplier: 0.5,
|
|
84
|
+
cursorVisible: true,
|
|
85
|
+
cursorBlink: true,
|
|
86
|
+
cursorChar: "|",
|
|
87
|
+
startDelay: 0,
|
|
88
|
+
loop: false,
|
|
89
|
+
pauseAfterType: 3000,
|
|
90
|
+
pauseAfterDelete: 800,
|
|
91
|
+
deletingSpeed: 70,
|
|
92
|
+
interactive: true,
|
|
93
|
+
respectReducedMotion: true,
|
|
94
|
+
});
|
|
95
|
+
|
|
96
|
+
const emit = defineEmits<{
|
|
97
|
+
complete: [];
|
|
98
|
+
start: [];
|
|
99
|
+
/** Emitted after each word finishes typing in word-rotation mode. */
|
|
100
|
+
wordComplete: [index: number];
|
|
101
|
+
}>();
|
|
102
|
+
|
|
103
|
+
const typewriter = useTypewriter({
|
|
104
|
+
text: props.text,
|
|
105
|
+
words: props.words,
|
|
106
|
+
ngramSize: props.ngramSize,
|
|
107
|
+
baseSpeed: props.baseSpeed,
|
|
108
|
+
variance: props.variance,
|
|
109
|
+
errorRate: props.errorRate,
|
|
110
|
+
firstAnimationSpeedFactor: props.firstAnimationSpeedFactor,
|
|
111
|
+
maxCharsBeforeNotice: props.maxCharsBeforeNotice,
|
|
112
|
+
continueAfterTypoProbability: props.continueAfterTypoProbability,
|
|
113
|
+
sequentialTypoDecay: props.sequentialTypoDecay,
|
|
114
|
+
correctionSpeedMultiplier: props.correctionSpeedMultiplier,
|
|
115
|
+
cursorVisible: props.cursorVisible,
|
|
116
|
+
cursorBlink: props.cursorBlink,
|
|
117
|
+
cursorChar: props.cursorChar,
|
|
118
|
+
loop: props.loop,
|
|
119
|
+
pauseAfterType: props.pauseAfterType,
|
|
120
|
+
pauseAfterDelete: props.pauseAfterDelete,
|
|
121
|
+
deletingSpeed: props.deletingSpeed,
|
|
122
|
+
respectReducedMotion: props.respectReducedMotion,
|
|
123
|
+
onComplete: () => emit("complete"),
|
|
124
|
+
onWordComplete: (index: number) => emit("wordComplete", index),
|
|
125
|
+
});
|
|
126
|
+
|
|
127
|
+
const { displayText, startTyping, stopTyping, reset, backspaceToPosition } = typewriter;
|
|
128
|
+
|
|
129
|
+
const displayTextChars = computed(() => displayText.value.split(""));
|
|
130
|
+
const leadingChars = computed(() => displayTextChars.value.slice(0, -1));
|
|
131
|
+
const tailChar = computed(() =>
|
|
132
|
+
displayTextChars.value.length > 0
|
|
133
|
+
? displayTextChars.value[displayTextChars.value.length - 1]
|
|
134
|
+
: null,
|
|
135
|
+
);
|
|
136
|
+
|
|
137
|
+
const charClass = computed(() => (props.interactive ? "tw-char tw-char--interactive" : "tw-char"));
|
|
138
|
+
|
|
139
|
+
function handleCharClick(clickedIndex: number) {
|
|
140
|
+
if (!props.interactive) return;
|
|
141
|
+
if (clickedIndex >= displayText.value.length) return;
|
|
142
|
+
|
|
143
|
+
if (typewriter.isTyping.value) {
|
|
144
|
+
stopTyping();
|
|
145
|
+
setTimeout(() => backspaceToPosition(clickedIndex + 1), 50);
|
|
146
|
+
} else {
|
|
147
|
+
backspaceToPosition(clickedIndex + 1);
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
// Watch for text changes in single-text mode
|
|
152
|
+
watch(
|
|
153
|
+
() => props.text,
|
|
154
|
+
(newText, oldText) => {
|
|
155
|
+
if (newText !== oldText && newText) {
|
|
156
|
+
stopTyping();
|
|
157
|
+
typewriter.updateText(newText);
|
|
158
|
+
setTimeout(() => {
|
|
159
|
+
emit("start");
|
|
160
|
+
startTyping();
|
|
161
|
+
}, props.startDelay);
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
);
|
|
165
|
+
|
|
166
|
+
onMounted(() => {
|
|
167
|
+
const hasContent = props.text || (props.words && props.words.length > 0);
|
|
168
|
+
if (hasContent) {
|
|
169
|
+
setTimeout(() => {
|
|
170
|
+
emit("start");
|
|
171
|
+
startTyping();
|
|
172
|
+
}, props.startDelay);
|
|
173
|
+
}
|
|
174
|
+
});
|
|
175
|
+
|
|
176
|
+
onUnmounted(() => {
|
|
177
|
+
stopTyping();
|
|
178
|
+
});
|
|
179
|
+
|
|
180
|
+
defineExpose({
|
|
181
|
+
startTyping,
|
|
182
|
+
stopTyping,
|
|
183
|
+
reset,
|
|
184
|
+
isTyping: typewriter.isTyping,
|
|
185
|
+
isDeleting: typewriter.isDeleting,
|
|
186
|
+
currentWord: typewriter.currentWord,
|
|
187
|
+
currentWordIndex: typewriter.currentWordIndex,
|
|
188
|
+
pause: typewriter.pause,
|
|
189
|
+
resume: typewriter.resume,
|
|
190
|
+
setCharPosition: typewriter.setCharPosition,
|
|
191
|
+
forceWord: typewriter.forceWord,
|
|
192
|
+
});
|
|
193
|
+
</script>
|
|
194
|
+
|
|
195
|
+
<style scoped>
|
|
196
|
+
.tw-root {
|
|
197
|
+
display: inline;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.tw-tail {
|
|
201
|
+
white-space: nowrap;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.tw-char {
|
|
205
|
+
display: inline;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.tw-char--interactive {
|
|
209
|
+
cursor: pointer;
|
|
210
|
+
border-radius: var(--radius-sm);
|
|
211
|
+
padding: 0 1px;
|
|
212
|
+
margin: 0 -1px;
|
|
213
|
+
transition: background-color var(--duration-fast) var(--ease-standard);
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.tw-char--interactive:hover {
|
|
217
|
+
background-color: rgba(128, 128, 128, 0.15);
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.tw-cursor {
|
|
221
|
+
display: inline-block;
|
|
222
|
+
font-weight: 100;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.tw-cursor--blink {
|
|
226
|
+
animation: tw-cursor-blink 1.06s step-end infinite;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
@keyframes tw-cursor-blink {
|
|
230
|
+
0%,
|
|
231
|
+
50% {
|
|
232
|
+
opacity: 1;
|
|
233
|
+
}
|
|
234
|
+
51%,
|
|
235
|
+
100% {
|
|
236
|
+
opacity: 0;
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
</style>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { useTypewriter } from "./useTypewriter";
|