reykit 1.0.162 → 1.0.163
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/index.js +8017 -8001
- package/dist/src/component/ui/icon.d.ts +6 -3
- package/dist/src/component/ui/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,3 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
export
|
|
1
|
+
import { ComponentProps } from 'react';
|
|
2
|
+
export * from 'lucide-react';
|
|
3
|
+
export declare const Python: ({ ...props }: ComponentProps<"div">) => import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
export declare const Javascript: ({ ...props }: ComponentProps<"div">) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export declare const Github: ({ ...props }: ComponentProps<"div">) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export declare const Npm: ({ ...props }: ComponentProps<"div">) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -51,7 +51,7 @@ import { Item, ItemActions, ItemContent, ItemDescription, ItemGroup, ItemMedia,
|
|
|
51
51
|
import { Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle } from './field';
|
|
52
52
|
import { Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle } from './empty';
|
|
53
53
|
import { SidebarProvider, SidebarInset, SidebarTrigger, Sidebar, SidebarRail, SidebarHeader, SidebarContent, SidebarFooter, SidebarSeparator, SidebarInput, SidebarGroup, SidebarGroupLabel, SidebarGroupAction, SidebarGroupContent, SidebarMenu, SidebarMenuSkeleton, SidebarMenuItem, SidebarMenuButton, SidebarMenuAction, SidebarMenuBadge, SidebarMenuSub, SidebarMenuSubItem, SidebarMenuSubButton, useSidebar } from './sidebar';
|
|
54
|
-
import
|
|
54
|
+
import * as icon from './icon';
|
|
55
55
|
/**
|
|
56
56
|
* Hook of return popup box component dictionary by media inquiries.
|
|
57
57
|
*
|