reykit 1.0.72 → 1.0.73

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.
@@ -0,0 +1,18 @@
1
+ /**
2
+ * @Time : 2026-03-27
3
+ * @Author : Rey
4
+ * @Contact : reyxbo@163.com
5
+ * @Explain : Breadcrumb components.
6
+ */
7
+ export type BreadcrumbDict = Record<string, {
8
+ label: string;
9
+ href?: string;
10
+ }[]>;
11
+ /**
12
+ * Breadcrumb components.
13
+ *
14
+ * @param props.dict - Breadcrumb data dictionary.
15
+ */
16
+ export declare function Breadcrumb({ dict }: {
17
+ dict: BreadcrumbDict;
18
+ }): import("react/jsx-runtime").JSX.Element;
@@ -4,6 +4,7 @@
4
4
  * @Contact : reyxbo@163.com
5
5
  * @Explain : Component index file.
6
6
  */
7
+ export { Breadcrumb, type BreadcrumbDict } from './Breadcrumb';
7
8
  export { CycleButton } from './Button';
8
9
  export { Form } from './Form';
9
10
  export { Loading } from './Loading/Loading';