@mindly/ui-components 5.55.2 → 5.56.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,18 @@
1
+ import { FC } from 'react';
2
+ type ScreenInputUpdateFeatureProps = {
3
+ children?: any;
4
+ title: string;
5
+ warnLabel?: string;
6
+ btnLabel: string;
7
+ defaultValue?: string;
8
+ name: string;
9
+ type: 'email' | 'text' | 'password';
10
+ placeholder: string;
11
+ autocomplete: string;
12
+ handleSubmit: (value: string) => void;
13
+ isLoading: boolean;
14
+ isDisabled: boolean;
15
+ isKeyboardShown: boolean;
16
+ };
17
+ declare const ScreenInputUpdateFeature: FC<ScreenInputUpdateFeatureProps>;
18
+ export default ScreenInputUpdateFeature;
@@ -0,0 +1 @@
1
+ export { default as ScreenInputUpdateFeature } from './ScreenInputUpdateFeature';
@@ -18,3 +18,4 @@ export * from './PaymentCalendarFeature';
18
18
  export * from './GoogleCalendarModalFeature';
19
19
  export * from './ReviewCardFeature';
20
20
  export * from './AppNotSupporedFeature';
21
+ export * from './ScreenInputUpdateFeature';
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ import { IconProps } from '../../types';
3
+ export declare const IconLock: FC<IconProps>;
@@ -0,0 +1,8 @@
1
+ import * as React from 'react';
2
+ import { FC } from 'react';
3
+ interface IconProps extends React.SVGAttributes<SVGElement> {
4
+ size?: number | string;
5
+ color?: string;
6
+ }
7
+ export declare const IconStylus: FC<IconProps>;
8
+ export {};
@@ -68,6 +68,7 @@ export * from './IconSchema';
68
68
  export * from './IconPromocode';
69
69
  export * from './IconEventBusy';
70
70
  export * from './IconDelete';
71
+ export * from './IconLock';
71
72
  export * from './IconEdit';
72
73
  export * from './IconCopy';
73
74
  export * from './IconTimeAdd';
@@ -79,3 +80,4 @@ export * from './IconCheckCircle';
79
80
  export * from './IconAttachMoney';
80
81
  export * from './IconArrowTopRight';
81
82
  export * from './IconMoreVertical';
83
+ export * from './IconStylus';
@@ -1,64 +1,78 @@
1
1
  export declare const itemCardStyles: import("tailwind-variants").TVReturnType<{
2
2
  variant: {
3
3
  neutral: "bg-color-background-anti-flash-light rounded-[30px]";
4
- transparent: "bg-transparent rounded-[24px] border border-color-black border-opacity-35";
4
+ transparent: "bg-transparent rounded-[24px] border border-color-black !border-opacity-35";
5
+ transparent20: "bg-transparent rounded-[20px] border border-color-black !border-opacity-10";
5
6
  };
6
7
  size: {
7
8
  M: "p-5";
8
9
  M4: "p-4";
10
+ M45: "py-4 px-5";
9
11
  };
10
12
  }, undefined, "", import("tailwind-variants/dist/config").TVConfig<{
11
13
  variant: {
12
14
  neutral: "bg-color-background-anti-flash-light rounded-[30px]";
13
- transparent: "bg-transparent rounded-[24px] border border-color-black border-opacity-35";
15
+ transparent: "bg-transparent rounded-[24px] border border-color-black !border-opacity-35";
16
+ transparent20: "bg-transparent rounded-[20px] border border-color-black !border-opacity-10";
14
17
  };
15
18
  size: {
16
19
  M: "p-5";
17
20
  M4: "p-4";
21
+ M45: "py-4 px-5";
18
22
  };
19
23
  }, {
20
24
  variant: {
21
25
  neutral: "bg-color-background-anti-flash-light rounded-[30px]";
22
- transparent: "bg-transparent rounded-[24px] border border-color-black border-opacity-35";
26
+ transparent: "bg-transparent rounded-[24px] border border-color-black !border-opacity-35";
27
+ transparent20: "bg-transparent rounded-[20px] border border-color-black !border-opacity-10";
23
28
  };
24
29
  size: {
25
30
  M: "p-5";
26
31
  M4: "p-4";
32
+ M45: "py-4 px-5";
27
33
  };
28
34
  }>, {
29
35
  variant: {
30
36
  neutral: "bg-color-background-anti-flash-light rounded-[30px]";
31
- transparent: "bg-transparent rounded-[24px] border border-color-black border-opacity-35";
37
+ transparent: "bg-transparent rounded-[24px] border border-color-black !border-opacity-35";
38
+ transparent20: "bg-transparent rounded-[20px] border border-color-black !border-opacity-10";
32
39
  };
33
40
  size: {
34
41
  M: "p-5";
35
42
  M4: "p-4";
43
+ M45: "py-4 px-5";
36
44
  };
37
45
  }, undefined, import("tailwind-variants").TVReturnType<{
38
46
  variant: {
39
47
  neutral: "bg-color-background-anti-flash-light rounded-[30px]";
40
- transparent: "bg-transparent rounded-[24px] border border-color-black border-opacity-35";
48
+ transparent: "bg-transparent rounded-[24px] border border-color-black !border-opacity-35";
49
+ transparent20: "bg-transparent rounded-[20px] border border-color-black !border-opacity-10";
41
50
  };
42
51
  size: {
43
52
  M: "p-5";
44
53
  M4: "p-4";
54
+ M45: "py-4 px-5";
45
55
  };
46
56
  }, undefined, "", import("tailwind-variants/dist/config").TVConfig<{
47
57
  variant: {
48
58
  neutral: "bg-color-background-anti-flash-light rounded-[30px]";
49
- transparent: "bg-transparent rounded-[24px] border border-color-black border-opacity-35";
59
+ transparent: "bg-transparent rounded-[24px] border border-color-black !border-opacity-35";
60
+ transparent20: "bg-transparent rounded-[20px] border border-color-black !border-opacity-10";
50
61
  };
51
62
  size: {
52
63
  M: "p-5";
53
64
  M4: "p-4";
65
+ M45: "py-4 px-5";
54
66
  };
55
67
  }, {
56
68
  variant: {
57
69
  neutral: "bg-color-background-anti-flash-light rounded-[30px]";
58
- transparent: "bg-transparent rounded-[24px] border border-color-black border-opacity-35";
70
+ transparent: "bg-transparent rounded-[24px] border border-color-black !border-opacity-35";
71
+ transparent20: "bg-transparent rounded-[20px] border border-color-black !border-opacity-10";
59
72
  };
60
73
  size: {
61
74
  M: "p-5";
62
75
  M4: "p-4";
76
+ M45: "py-4 px-5";
63
77
  };
64
78
  }>, unknown, unknown, undefined>>;
@@ -3,6 +3,8 @@ type LabelArrowRedirectProps = {
3
3
  transparent?: boolean;
4
4
  disabled?: boolean;
5
5
  label?: string;
6
+ subLabel?: string;
7
+ className?: string;
6
8
  routeClick: () => void;
7
9
  };
8
10
  export declare const LabelArrowRedirect: FC<LabelArrowRedirectProps>;