reykit 1.0.162 → 1.0.164

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.
@@ -1,3 +1,6 @@
1
- import { ComponentType } from 'react';
2
- declare const icon: Record<string, ComponentType<any>>;
3
- export default icon;
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 { default as icon } from './icon';
54
+ import * as icon from './icon';
55
55
  /**
56
56
  * Hook of return popup box component dictionary by media inquiries.
57
57
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reykit",
3
- "version": "1.0.162",
3
+ "version": "1.0.164",
4
4
  "description": "Kit method set.",
5
5
  "author": "reyxbo",
6
6
  "keywords": [
@@ -25,6 +25,7 @@
25
25
  "types": "./dist/src/index.d.ts",
26
26
  "exports": {
27
27
  ".": {
28
+ "types": "./dist/index.d.ts",
28
29
  "default": "./dist/index.js"
29
30
  },
30
31
  "./base": {