welcome-ui 0.0.0-dev.1764249770432 → 0.0.0-dev.1764250957701

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,5 +1,5 @@
1
- import { BreadcrumbItemProps } from './types';
1
+ import { BreadcrumbItemOptions } from './types';
2
2
  /**
3
3
  * @name Breadcrumb.Item
4
4
  */
5
- export declare const Item: import('../../utils').FunctionComponentWithAs<"a", BreadcrumbItemProps>;
5
+ export declare const Item: import('../../utils').FunctionComponentWithAs<"a", BreadcrumbItemOptions>;
@@ -2,5 +2,5 @@ import { default as React } from 'react';
2
2
  import { BreadcrumbProps } from './types';
3
3
  export declare const BreadcrumbComponent: React.ForwardRefExoticComponent<Omit<BreadcrumbProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
4
4
  export declare const Breadcrumb: React.ForwardRefExoticComponent<Omit<BreadcrumbProps, "ref"> & React.RefAttributes<HTMLDivElement>> & {
5
- Item: import('../../utils').FunctionComponentWithAs<"a", import('./types').BreadcrumbItemProps>;
5
+ Item: import('../../utils').FunctionComponentWithAs<"a", import('./types').BreadcrumbItemOptions>;
6
6
  };
@@ -1,5 +1,4 @@
1
1
  import { ComponentPropsWithRef, HTMLAttributes } from 'react';
2
- import { MergeProps } from '../../utils';
3
2
  import { IconName } from '../Icon/types';
4
3
  interface BreadcrumbOptions {
5
4
  children: React.ReactNode | React.ReactNode[];
@@ -9,7 +8,7 @@ interface BreadcrumbOptions {
9
8
  separator?: React.ReactNode | string;
10
9
  }
11
10
  export type BreadcrumbProps = BreadcrumbOptions & ComponentPropsWithRef<'div'> & HTMLAttributes<HTMLDivElement>;
12
- interface BreadcrumbItemOptions {
11
+ export interface BreadcrumbItemOptions {
13
12
  children: React.ReactNode;
14
13
  collapsed?: boolean;
15
14
  'data-testid'?: string;
@@ -18,5 +17,4 @@ interface BreadcrumbItemOptions {
18
17
  separator?: React.ReactNode | string;
19
18
  to?: string;
20
19
  }
21
- export type BreadcrumbItemProps = MergeProps<BreadcrumbItemOptions>;
22
20
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "welcome-ui",
3
- "version": "0.0.0-dev.1764249770432",
3
+ "version": "0.0.0-dev.1764250957701",
4
4
  "description": "Customizable design system with react, typescript, tailwindcss and ariakit.",
5
5
  "files": [
6
6
  "dist"