UNPKG

@mysten/dapp-kit

Version:

A collection of React hooks and components for interacting with the Sui blockchain and wallets.

140 lines (127 loc) 6.16 kB
// src/components/ui/Button.tsx import { Slot } from "@radix-ui/react-slot"; import clsx from "clsx"; import { forwardRef } from "react"; // src/components/ui/Button.css.ts import { createRuntimeFn as _7a468 } from "@vanilla-extract/recipes/createRuntimeFn"; var buttonVariants = _7a468({ defaultClassName: "Button_buttonVariants__x1s81q0", variantClassNames: { variant: { primary: "Button_buttonVariants_variant_primary__x1s81q1", outline: "Button_buttonVariants_variant_outline__x1s81q2" }, size: { md: "Button_buttonVariants_size_md__x1s81q3", lg: "Button_buttonVariants_size_lg__x1s81q4" } }, defaultVariants: { variant: "primary", size: "md" }, compoundVariants: [] }); // src/components/ui/Button.tsx import { jsx } from "react/jsx-runtime"; var Button = forwardRef( ({ className, variant, size, asChild = false, ...props }, forwardedRef) => { const Comp = asChild ? Slot : "button"; return /* @__PURE__ */ jsx( Comp, { ...props, className: clsx(buttonVariants({ variant, size }), className), ref: forwardedRef } ); } ); Button.displayName = "Button"; // src/components/ui/Heading.tsx import { Slot as Slot2 } from "@radix-ui/react-slot"; import clsx2 from "clsx"; import { forwardRef as forwardRef2 } from "react"; // src/components/ui/Heading.css.ts import { createRuntimeFn as _7a4682 } from "@vanilla-extract/recipes/createRuntimeFn"; var headingVariants = _7a4682({ defaultClassName: "Heading__1aa835k0", variantClassNames: { size: { sm: "Heading_headingVariants_size_sm__1aa835k1", md: "Heading_headingVariants_size_md__1aa835k2", lg: "Heading_headingVariants_size_lg__1aa835k3", xl: "Heading_headingVariants_size_xl__1aa835k4" }, weight: { normal: "Heading_headingVariants_weight_normal__1aa835k5", bold: "Heading_headingVariants_weight_bold__1aa835k6" }, truncate: { true: "Heading_headingVariants_truncate_true__1aa835k7" } }, defaultVariants: { size: "lg", weight: "bold" }, compoundVariants: [] }); // src/components/ui/Heading.tsx import { jsx as jsx2 } from "react/jsx-runtime"; var Heading = forwardRef2( ({ children, className, asChild = false, as: Tag = "h1", size, weight, truncate, ...headingProps }, forwardedRef) => { return /* @__PURE__ */ jsx2( Slot2, { ...headingProps, ref: forwardedRef, className: clsx2(headingVariants({ size, weight, truncate }), className), children: asChild ? children : /* @__PURE__ */ jsx2(Tag, { children }) } ); } ); Heading.displayName = "Heading"; // src/components/ui/Text.tsx import { Slot as Slot3 } from "@radix-ui/react-slot"; import clsx3 from "clsx"; import { forwardRef as forwardRef3 } from "react"; // src/components/ui/Text.css.ts import { createRuntimeFn as _7a4683 } from "@vanilla-extract/recipes/createRuntimeFn"; var textVariants = _7a4683({ defaultClassName: "Text__2bv1ur0", variantClassNames: { size: { sm: "Text_textVariants_size_sm__2bv1ur1" }, weight: { normal: "Text_textVariants_weight_normal__2bv1ur2", medium: "Text_textVariants_weight_medium__2bv1ur3", bold: "Text_textVariants_weight_bold__2bv1ur4" }, color: { muted: "Text_textVariants_color_muted__2bv1ur5", danger: "Text_textVariants_color_danger__2bv1ur6" }, mono: { true: "Text_textVariants_mono_true__2bv1ur7" } }, defaultVariants: { size: "sm", weight: "normal" }, compoundVariants: [] }); // src/components/ui/Text.tsx import { jsx as jsx3 } from "react/jsx-runtime"; var Text = forwardRef3( ({ children, className, asChild = false, as: Tag = "div", size, weight, color, mono, ...textProps }, forwardedRef) => { return /* @__PURE__ */ jsx3( Slot3, { ...textProps, ref: forwardedRef, className: clsx3(textVariants({ size, weight, color, mono }), className), children: asChild ? children : /* @__PURE__ */ jsx3(Tag, { children }) } ); } ); Text.displayName = "Text"; // src/components/connect-modal/InfoSection.css.ts var container = "InfoSection_container__1wtioi70"; // src/components/connect-modal/InfoSection.tsx import { jsx as jsx4, jsxs } from "react/jsx-runtime"; function InfoSection({ title, children }) { return /* @__PURE__ */ jsxs("section", { className: container, children: [ /* @__PURE__ */ jsx4(Heading, { as: "h3", size: "sm", weight: "normal", children: title }), /* @__PURE__ */ jsx4(Text, { weight: "medium", color: "muted", children }) ] }); } // src/components/connect-modal/views/GettingStarted.css.ts var container2 = "GettingStarted_container__1fp07e10"; var content = "GettingStarted_content__1fp07e11"; var installButtonContainer = "GettingStarted_installButtonContainer__1fp07e12"; // src/components/connect-modal/views/GettingStarted.tsx import { jsx as jsx5, jsxs as jsxs2 } from "react/jsx-runtime"; function GettingStarted() { return /* @__PURE__ */ jsxs2("div", { className: container2, children: [ /* @__PURE__ */ jsx5(Heading, { as: "h2", children: "Get Started with Sui" }), /* @__PURE__ */ jsxs2("div", { className: content, children: [ /* @__PURE__ */ jsx5(InfoSection, { title: "Install the Sui Wallet Extension", children: "We recommend pinning Sui Wallet to your taskbar for quicker access." }), /* @__PURE__ */ jsx5(InfoSection, { title: "Create or Import a Wallet", children: "Be sure to back up your wallet using a secure method. Never share your secret phrase with anyone." }), /* @__PURE__ */ jsx5(InfoSection, { title: "Refresh Your Browser", children: "Once you set up your wallet, refresh this window browser to load up the extension." }), /* @__PURE__ */ jsx5("div", { className: installButtonContainer, children: /* @__PURE__ */ jsx5(Button, { variant: "outline", asChild: true, children: /* @__PURE__ */ jsx5( "a", { href: "https://chrome.google.com/webstore/detail/sui-wallet/opcgpfmipidbgpenhmajoajpbobppdil", target: "_blank", rel: "noreferrer", children: "Install Wallet Extension" } ) }) }) ] }) ] }); } export { GettingStarted }; //# sourceMappingURL=GettingStarted.js.map