@mindly/ui-components 5.16.1 → 5.17.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,13 @@
1
+ import * as React from 'react';
2
+ type ListItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
3
+ leftContent?: React.ReactNode;
4
+ rightContent?: React.ReactNode;
5
+ withBorders?: boolean;
6
+ };
7
+ export declare const ListItem: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLIonItemElement> & {
8
+ leftContent?: React.ReactNode;
9
+ rightContent?: React.ReactNode;
10
+ withBorders?: boolean | undefined;
11
+ } & React.RefAttributes<HTMLIonItemElement>>;
12
+ declare const _default: React.NamedExoticComponent<ListItemProps>;
13
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import * as React from 'react';
2
+ type ListItemsProps = React.HTMLAttributes<HTMLIonListElement> & {
3
+ withBorders?: boolean;
4
+ };
5
+ export declare const ListItems: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLIonListElement> & {
6
+ withBorders?: boolean | undefined;
7
+ } & {
8
+ children?: React.ReactNode;
9
+ } & React.RefAttributes<HTMLIonListElement>>;
10
+ declare const _default: React.NamedExoticComponent<ListItemsProps>;
11
+ export default _default;
@@ -0,0 +1,2 @@
1
+ export { default as ListItems } from './ListItems';
2
+ export { default as ListItem } from './ListItem';
@@ -0,0 +1,47 @@
1
+ export declare const listItemsStyles: import("tailwind-variants").TVReturnType<{
2
+ withBorders: {
3
+ true: "";
4
+ };
5
+ }, {
6
+ items: string;
7
+ item: string;
8
+ itemInnerContainer: string;
9
+ itemInnerContentWrapper: string;
10
+ itemInnerContent: string;
11
+ }, "", import("tailwind-variants/dist/config").TVConfig<{
12
+ withBorders: {
13
+ true: "";
14
+ };
15
+ }, {
16
+ withBorders: {
17
+ true: "";
18
+ };
19
+ }>, {
20
+ withBorders: {
21
+ true: "";
22
+ };
23
+ }, {
24
+ items: string;
25
+ item: string;
26
+ itemInnerContainer: string;
27
+ itemInnerContentWrapper: string;
28
+ itemInnerContent: string;
29
+ }, import("tailwind-variants").TVReturnType<{
30
+ withBorders: {
31
+ true: "";
32
+ };
33
+ }, {
34
+ items: string;
35
+ item: string;
36
+ itemInnerContainer: string;
37
+ itemInnerContentWrapper: string;
38
+ itemInnerContent: string;
39
+ }, "", import("tailwind-variants/dist/config").TVConfig<{
40
+ withBorders: {
41
+ true: "";
42
+ };
43
+ }, {
44
+ withBorders: {
45
+ true: "";
46
+ };
47
+ }>, unknown, unknown, undefined>>;
@@ -1,48 +1,48 @@
1
1
  export declare const toastStyles: import("tailwind-variants").TVReturnType<{
2
2
  type: {
3
- success: "bg-badges-success-main";
3
+ success: " bg-badges-success-main";
4
4
  error: "bg-color-info-red-not-red";
5
5
  attention: "bg-badges-attention-main";
6
6
  info: "bg-color-info-blue";
7
7
  };
8
- }, undefined, "toast fixed left-0 right-0 w-full h-[80px]", import("tailwind-variants/dist/config").TVConfig<{
8
+ }, undefined, "toast fixed top-0 left-0 right-0 w-full h-[80px]", import("tailwind-variants/dist/config").TVConfig<{
9
9
  type: {
10
- success: "bg-badges-success-main";
10
+ success: " bg-badges-success-main";
11
11
  error: "bg-color-info-red-not-red";
12
12
  attention: "bg-badges-attention-main";
13
13
  info: "bg-color-info-blue";
14
14
  };
15
15
  }, {
16
16
  type: {
17
- success: "bg-badges-success-main";
17
+ success: " bg-badges-success-main";
18
18
  error: "bg-color-info-red-not-red";
19
19
  attention: "bg-badges-attention-main";
20
20
  info: "bg-color-info-blue";
21
21
  };
22
22
  }>, {
23
23
  type: {
24
- success: "bg-badges-success-main";
24
+ success: " bg-badges-success-main";
25
25
  error: "bg-color-info-red-not-red";
26
26
  attention: "bg-badges-attention-main";
27
27
  info: "bg-color-info-blue";
28
28
  };
29
29
  }, undefined, import("tailwind-variants").TVReturnType<{
30
30
  type: {
31
- success: "bg-badges-success-main";
31
+ success: " bg-badges-success-main";
32
32
  error: "bg-color-info-red-not-red";
33
33
  attention: "bg-badges-attention-main";
34
34
  info: "bg-color-info-blue";
35
35
  };
36
- }, undefined, "toast fixed left-0 right-0 w-full h-[80px]", import("tailwind-variants/dist/config").TVConfig<{
36
+ }, undefined, "toast fixed top-0 left-0 right-0 w-full h-[80px]", import("tailwind-variants/dist/config").TVConfig<{
37
37
  type: {
38
- success: "bg-badges-success-main";
38
+ success: " bg-badges-success-main";
39
39
  error: "bg-color-info-red-not-red";
40
40
  attention: "bg-badges-attention-main";
41
41
  info: "bg-color-info-blue";
42
42
  };
43
43
  }, {
44
44
  type: {
45
- success: "bg-badges-success-main";
45
+ success: " bg-badges-success-main";
46
46
  error: "bg-color-info-red-not-red";
47
47
  attention: "bg-badges-attention-main";
48
48
  info: "bg-color-info-blue";
@@ -20,3 +20,4 @@ export * from './Spinner_v2';
20
20
  export * from './ModalSheet';
21
21
  export * from './ProgressBar_v2';
22
22
  export * from './Loading';
23
+ export * from './ListItems';