@mindly/ui-components 5.21.0 → 5.22.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.
Files changed (30) hide show
  1. package/dist/cjs/index.js +6 -6
  2. package/dist/cjs/lib2/shared/assets/icons/IconArrowDown.d.ts +2 -0
  3. package/dist/cjs/lib2/shared/assets/icons/IconBookmark.d.ts +2 -0
  4. package/dist/cjs/lib2/shared/assets/icons/IconCalendarFilled.d.ts +3 -0
  5. package/dist/cjs/lib2/shared/assets/icons/IconCancel.d.ts +2 -0
  6. package/dist/cjs/lib2/shared/assets/icons/IconChatFilled.d.ts +3 -0
  7. package/dist/cjs/lib2/shared/assets/icons/IconClient.d.ts +2 -0
  8. package/dist/cjs/lib2/shared/assets/icons/IconClientFilled.d.ts +2 -0
  9. package/dist/cjs/lib2/shared/assets/icons/IconPaid.d.ts +2 -0
  10. package/dist/cjs/lib2/shared/assets/icons/IconSearch.d.ts +2 -0
  11. package/dist/cjs/lib2/shared/assets/icons/IconUserNotFound.d.ts +3 -0
  12. package/dist/cjs/lib2/shared/assets/icons/index.d.ts +10 -0
  13. package/dist/cjs/lib2/shared/ui/ListItems/{ListItem.d.ts → Item.d.ts} +3 -3
  14. package/dist/cjs/lib2/shared/ui/ListItems/index.d.ts +1 -1
  15. package/dist/esm/index.js +6 -6
  16. package/dist/esm/lib2/shared/assets/icons/IconArrowDown.d.ts +2 -0
  17. package/dist/esm/lib2/shared/assets/icons/IconBookmark.d.ts +2 -0
  18. package/dist/esm/lib2/shared/assets/icons/IconCalendarFilled.d.ts +3 -0
  19. package/dist/esm/lib2/shared/assets/icons/IconCancel.d.ts +2 -0
  20. package/dist/esm/lib2/shared/assets/icons/IconChatFilled.d.ts +3 -0
  21. package/dist/esm/lib2/shared/assets/icons/IconClient.d.ts +2 -0
  22. package/dist/esm/lib2/shared/assets/icons/IconClientFilled.d.ts +2 -0
  23. package/dist/esm/lib2/shared/assets/icons/IconPaid.d.ts +2 -0
  24. package/dist/esm/lib2/shared/assets/icons/IconSearch.d.ts +2 -0
  25. package/dist/esm/lib2/shared/assets/icons/IconUserNotFound.d.ts +3 -0
  26. package/dist/esm/lib2/shared/assets/icons/index.d.ts +10 -0
  27. package/dist/esm/lib2/shared/ui/ListItems/{ListItem.d.ts → Item.d.ts} +3 -3
  28. package/dist/esm/lib2/shared/ui/ListItems/index.d.ts +1 -1
  29. package/dist/index.d.ts +25 -5
  30. package/package.json +1 -1
@@ -0,0 +1,2 @@
1
+ import { SVGProps } from 'react';
2
+ export declare const IconArrowDown: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { SVGProps } from 'react';
2
+ export declare const IconBookmark: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ export declare const IconCalendarFilled: ({ width, height, color, ...props }: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default IconCalendarFilled;
@@ -0,0 +1,2 @@
1
+ import { SVGProps } from 'react';
2
+ export declare const IconCancel: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ export declare const IconChatFilled: ({ width, height, color, ...props }: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default IconChatFilled;
@@ -0,0 +1,2 @@
1
+ import { SVGProps } from 'react';
2
+ export declare const IconClient: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { SVGProps } from 'react';
2
+ export declare const IconClientFilled: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { SVGProps } from 'react';
2
+ export declare const IconPaid: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { SVGProps } from 'react';
2
+ export declare const IconSearch: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ export declare const IconUserNotFound: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default IconUserNotFound;
@@ -43,3 +43,13 @@ export * from './IconCheckSmall';
43
43
  export * from './IconCheck';
44
44
  export * from './IconCapFilled';
45
45
  export * from './IconCancelRounded';
46
+ export * from './IconUserNotFound';
47
+ export * from './IconSearch';
48
+ export * from './IconPaid';
49
+ export * from './IconClient';
50
+ export * from './IconClientFilled';
51
+ export * from './IconChatFilled';
52
+ export * from './IconCancel';
53
+ export * from './IconCalendarFilled';
54
+ export * from './IconBookmark';
55
+ export * from './IconArrowDown';
@@ -1,15 +1,15 @@
1
1
  import * as React from 'react';
2
- type ListItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
2
+ type ItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
3
3
  leftContent?: React.ReactNode;
4
4
  rightContent?: React.ReactNode;
5
5
  withBorders?: boolean;
6
6
  isDisabled?: boolean;
7
7
  };
8
- export declare const ListItem: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLIonItemElement> & {
8
+ export declare const Item: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLIonItemElement> & {
9
9
  leftContent?: React.ReactNode;
10
10
  rightContent?: React.ReactNode;
11
11
  withBorders?: boolean | undefined;
12
12
  isDisabled?: boolean | undefined;
13
13
  } & React.RefAttributes<HTMLIonItemElement>>;
14
- declare const _default: React.NamedExoticComponent<ListItemProps>;
14
+ declare const _default: React.NamedExoticComponent<ItemProps>;
15
15
  export default _default;
@@ -1,2 +1,2 @@
1
1
  export { default as ListItems } from './ListItems';
2
- export { default as ListItem } from './ListItem';
2
+ export { default as Item } from './Item';