@mindly/ui-components 5.16.1 → 5.18.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.
- package/dist/cjs/index.js +5 -5
- package/dist/cjs/lib2/shared/assets/icons/IconCreditCard.d.ts +2 -0
- package/dist/cjs/lib2/shared/assets/icons/IconGift.d.ts +2 -0
- package/dist/cjs/lib2/shared/assets/icons/IconPaper.d.ts +2 -0
- package/dist/cjs/lib2/shared/assets/icons/IconQuestion.d.ts +2 -0
- package/dist/cjs/lib2/shared/assets/icons/index.d.ts +4 -0
- package/dist/cjs/lib2/shared/ui/ListItems/ListItem.d.ts +15 -0
- package/dist/cjs/lib2/shared/ui/ListItems/ListItems.d.ts +11 -0
- package/dist/cjs/lib2/shared/ui/ListItems/index.d.ts +2 -0
- package/dist/cjs/lib2/shared/ui/ListItems/styles.d.ts +68 -0
- package/dist/cjs/lib2/shared/ui/Toast/styles.d.ts +9 -9
- package/dist/cjs/lib2/shared/ui/index.d.ts +1 -0
- package/dist/esm/index.js +5 -5
- package/dist/esm/lib2/shared/assets/icons/IconCreditCard.d.ts +2 -0
- package/dist/esm/lib2/shared/assets/icons/IconGift.d.ts +2 -0
- package/dist/esm/lib2/shared/assets/icons/IconPaper.d.ts +2 -0
- package/dist/esm/lib2/shared/assets/icons/IconQuestion.d.ts +2 -0
- package/dist/esm/lib2/shared/assets/icons/index.d.ts +4 -0
- package/dist/esm/lib2/shared/ui/ListItems/ListItem.d.ts +15 -0
- package/dist/esm/lib2/shared/ui/ListItems/ListItems.d.ts +11 -0
- package/dist/esm/lib2/shared/ui/ListItems/index.d.ts +2 -0
- package/dist/esm/lib2/shared/ui/ListItems/styles.d.ts +68 -0
- package/dist/esm/lib2/shared/ui/Toast/styles.d.ts +9 -9
- package/dist/esm/lib2/shared/ui/index.d.ts +1 -0
- package/dist/index.d.ts +72 -51
- package/package.json +1 -1
|
@@ -32,6 +32,10 @@ export * from './IconLetter';
|
|
|
32
32
|
export * from './IconSpinner';
|
|
33
33
|
export * from './IconEye';
|
|
34
34
|
export * from './IconEyeOff';
|
|
35
|
+
export * from './IconGift';
|
|
36
|
+
export * from './IconCreditCard';
|
|
37
|
+
export * from './IconQuestion';
|
|
38
|
+
export * from './IconPaper';
|
|
35
39
|
export * from './IconChat3d';
|
|
36
40
|
export * from './IconNotficationMuted';
|
|
37
41
|
export * from './IconCheckSmall';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
type ListItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
|
|
3
|
+
leftContent?: React.ReactNode;
|
|
4
|
+
rightContent?: React.ReactNode;
|
|
5
|
+
withBorders?: boolean;
|
|
6
|
+
isDisabled?: boolean;
|
|
7
|
+
};
|
|
8
|
+
export declare const ListItem: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLIonItemElement> & {
|
|
9
|
+
leftContent?: React.ReactNode;
|
|
10
|
+
rightContent?: React.ReactNode;
|
|
11
|
+
withBorders?: boolean | undefined;
|
|
12
|
+
isDisabled?: boolean | undefined;
|
|
13
|
+
} & React.RefAttributes<HTMLIonItemElement>>;
|
|
14
|
+
declare const _default: React.NamedExoticComponent<ListItemProps>;
|
|
15
|
+
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,68 @@
|
|
|
1
|
+
export declare const listItemsStyles: import("tailwind-variants").TVReturnType<{
|
|
2
|
+
withBorders: {
|
|
3
|
+
true: "";
|
|
4
|
+
};
|
|
5
|
+
isDisabled: {
|
|
6
|
+
true: "";
|
|
7
|
+
};
|
|
8
|
+
}, {
|
|
9
|
+
items: string;
|
|
10
|
+
item: string;
|
|
11
|
+
itemInnerContainer: string;
|
|
12
|
+
itemInnerContentWrapper: string;
|
|
13
|
+
itemInnerContent: string;
|
|
14
|
+
}, "", import("tailwind-variants/dist/config").TVConfig<{
|
|
15
|
+
withBorders: {
|
|
16
|
+
true: "";
|
|
17
|
+
};
|
|
18
|
+
isDisabled: {
|
|
19
|
+
true: "";
|
|
20
|
+
};
|
|
21
|
+
}, {
|
|
22
|
+
withBorders: {
|
|
23
|
+
true: "";
|
|
24
|
+
};
|
|
25
|
+
isDisabled: {
|
|
26
|
+
true: "";
|
|
27
|
+
};
|
|
28
|
+
}>, {
|
|
29
|
+
withBorders: {
|
|
30
|
+
true: "";
|
|
31
|
+
};
|
|
32
|
+
isDisabled: {
|
|
33
|
+
true: "";
|
|
34
|
+
};
|
|
35
|
+
}, {
|
|
36
|
+
items: string;
|
|
37
|
+
item: string;
|
|
38
|
+
itemInnerContainer: string;
|
|
39
|
+
itemInnerContentWrapper: string;
|
|
40
|
+
itemInnerContent: string;
|
|
41
|
+
}, import("tailwind-variants").TVReturnType<{
|
|
42
|
+
withBorders: {
|
|
43
|
+
true: "";
|
|
44
|
+
};
|
|
45
|
+
isDisabled: {
|
|
46
|
+
true: "";
|
|
47
|
+
};
|
|
48
|
+
}, {
|
|
49
|
+
items: string;
|
|
50
|
+
item: string;
|
|
51
|
+
itemInnerContainer: string;
|
|
52
|
+
itemInnerContentWrapper: string;
|
|
53
|
+
itemInnerContent: string;
|
|
54
|
+
}, "", import("tailwind-variants/dist/config").TVConfig<{
|
|
55
|
+
withBorders: {
|
|
56
|
+
true: "";
|
|
57
|
+
};
|
|
58
|
+
isDisabled: {
|
|
59
|
+
true: "";
|
|
60
|
+
};
|
|
61
|
+
}, {
|
|
62
|
+
withBorders: {
|
|
63
|
+
true: "";
|
|
64
|
+
};
|
|
65
|
+
isDisabled: {
|
|
66
|
+
true: "";
|
|
67
|
+
};
|
|
68
|
+
}>, 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";
|