@stokelp/ui 1.23.0 → 1.24.0

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,20 @@
1
+ import { ComponentProps, FC, ReactNode, ForwardRefExoticComponent, DetailedHTMLProps, AnchorHTMLAttributes, DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES, RefObject } from 'react';
2
+ import { ComponentVariants } from '../../utils/slots';
3
+ import { StyledComponent } from '@stokelp/styled-system/jsx';
4
+ import { BreadcrumbRecipe } from '@stokelp/styled-system/recipes';
5
+ import { PolymorphicProps } from '@ark-ui/react';
6
+
7
+ declare const StyledBreadcrumb: ComponentVariants<StyledComponent<"nav", {}>, BreadcrumbRecipe>;
8
+ export declare const BreadcrumbItem: StyledComponent<"li", {}>;
9
+ export declare const BreadcrumbLink: StyledComponent<ForwardRefExoticComponent<Omit< DetailedHTMLProps<AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref"> & {
10
+ ref?: ((instance: HTMLAnchorElement | null) => void | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | RefObject<HTMLAnchorElement> | null | undefined;
11
+ } & PolymorphicProps>, {}>;
12
+ export declare const Breadcrumb: FC<BreadcrumbProps>;
13
+ export interface BreadcrumbLinkProps extends ComponentProps<typeof BreadcrumbLink> {
14
+ }
15
+ export interface BreadcrumbItemProps extends ComponentProps<typeof BreadcrumbItem> {
16
+ }
17
+ export interface BreadcrumbProps extends ComponentProps<typeof StyledBreadcrumb> {
18
+ separator?: ReactNode;
19
+ }
20
+ export {};
@@ -0,0 +1 @@
1
+ export * from './Breadcrumb';
@@ -21,4 +21,5 @@ export * from './icon-button';
21
21
  export * from './tooltip';
22
22
  export * from './alert';
23
23
  export * from './table';
24
+ export * from './breadcrumb';
24
25
  export * from './app';