mtxuilib 0.1.492 → 0.1.494
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/icons/icons.d.ts +2 -0
- package/dist/icons/icons.js +3 -1
- package/dist/ui/mt/skeleton/SkeletonInput.d.ts +5 -1
- package/dist/ui/mt/skeleton/SkeletonInput.js +1 -1
- package/package.json +1 -1
- package/dist/icons/DotsHorizontalIcon.d.ts +0 -2
- package/dist/icons/DotsHorizontalIcon.js +0 -2
- package/dist/icons/DotsVerticalIcon.d.ts +0 -0
- package/dist/icons/DotsVerticalIcon.js +0 -1
package/dist/icons/icons.d.ts
CHANGED
|
@@ -15,6 +15,8 @@ export declare const Icons: {
|
|
|
15
15
|
plus: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
16
16
|
save: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
17
17
|
messageSquare: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
18
|
+
dotsHorizontal: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
|
|
19
|
+
dotsVertical: import("react").ForwardRefExoticComponent<import("@radix-ui/react-icons/dist/types").IconProps & import("react").RefAttributes<SVGSVGElement>>;
|
|
18
20
|
alignCenter: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
19
21
|
alignJustify: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
20
22
|
alignLeft: import("react").ForwardRefExoticComponent<Omit<LucideProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
package/dist/icons/icons.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { cva } from "class-variance-authority";
|
|
3
3
|
import { AlertTriangle, AlignCenter, AlignJustify, AlignLeft, AlignRight, ArrowLeft, ArrowRight, Baseline, Bell, Bold, Boxes, Bug, Check, ChevronDown, ChevronLeft, ChevronRight, ChevronsUpDown, ClipboardCheck, Code2, Combine, Copy, CreditCard, DownloadCloud, Edit2, ExternalLink, Eye, File, FileCode, FileText, Film, GripVertical, Heading1, Heading2, Heading3, Heading4, Heading5, Heading6, HelpCircle, Highlighter, Image, Indent, Italic, Keyboard, Laptop, LayoutDashboard, Link2, Link2Off, List, ListOrdered, Loader2, MailX, Menu, MessageSquare, MessageSquarePlus, Minus, Moon, MoreHorizontal, MoreVertical, Outdent, PaintBucket, Paperclip, PenLine, PenTool, Pilcrow, Pizza, Plus, Quote, RectangleHorizontal, RectangleVertical, RotateCcw, Save, Search, SeparatorHorizontal, Settings, Smile, SquareIcon, Star, Strikethrough, Subscript, SunMedium, Superscript, Table, Terminal, Text, Trash, Underline, Ungroup, User, Verified, WrapText, X, } from "lucide-react";
|
|
4
|
-
import { ReloadIcon } from "@radix-ui/react-icons";
|
|
4
|
+
import { DotsHorizontalIcon, DotsVerticalIcon, ReloadIcon, } from "@radix-ui/react-icons";
|
|
5
5
|
export const iconVariants = cva("", {
|
|
6
6
|
variants: {
|
|
7
7
|
variant: {
|
|
@@ -30,6 +30,8 @@ export const Icons = {
|
|
|
30
30
|
plus: Plus,
|
|
31
31
|
save: Save,
|
|
32
32
|
messageSquare: MessageSquare,
|
|
33
|
+
dotsHorizontal: DotsHorizontalIcon,
|
|
34
|
+
dotsVertical: DotsVerticalIcon,
|
|
33
35
|
alignCenter: AlignCenter,
|
|
34
36
|
alignJustify: AlignJustify,
|
|
35
37
|
alignLeft: AlignLeft,
|
|
@@ -1 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
import type { InputProps } from "../../input";
|
|
2
|
+
interface SkeletonInputProps extends InputProps {
|
|
3
|
+
}
|
|
4
|
+
export declare function SkeletonInput(props: SkeletonInputProps): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import { Skeleton } from "../../skeleton";
|
|
3
|
-
export function SkeletonInput() {
|
|
3
|
+
export function SkeletonInput(props) {
|
|
4
4
|
return (_jsx("div", { className: "flex flex-col", children: _jsx(Skeleton, { className: "h-9 w-full rounded-md border px-3 py-1 shadow-sm" }) }));
|
|
5
5
|
}
|
package/package.json
CHANGED
|
File without changes
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";
|