@zag-js/tour
Version:
Core logic for the tour widget implemented as a state machine
21 lines (20 loc) • 343 B
JavaScript
// src/tour.anatomy.ts
import { createAnatomy } from "@zag-js/anatomy";
var anatomy = createAnatomy("tour").parts(
"content",
"actionTrigger",
"closeTrigger",
"progressText",
"title",
"description",
"positioner",
"arrow",
"arrowTip",
"backdrop",
"spotlight"
);
var parts = anatomy.build();
export {
anatomy,
parts
};