@mindly/ui-components 5.32.0 → 5.33.1
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 +6 -6
- package/dist/cjs/lib2/features/ShareModalFeature/ShareModalFeature.d.ts +14 -0
- package/dist/cjs/lib2/features/ShareModalFeature/index.d.ts +1 -0
- package/dist/cjs/lib2/features/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/assets/icons/IconLink.d.ts +7 -0
- package/dist/cjs/lib2/shared/assets/icons/IconShare.d.ts +7 -0
- package/dist/cjs/lib2/shared/assets/icons/index.d.ts +2 -0
- package/dist/cjs/lib2/shared/ui/InputSearch/types.d.ts +2 -2
- package/dist/cjs/lib2/shared/ui/ScreenInput/ScreenInput.d.ts +1 -0
- package/dist/esm/index.js +6 -6
- package/dist/esm/lib2/features/ShareModalFeature/ShareModalFeature.d.ts +14 -0
- package/dist/esm/lib2/features/ShareModalFeature/index.d.ts +1 -0
- package/dist/esm/lib2/features/index.d.ts +1 -0
- package/dist/esm/lib2/shared/assets/icons/IconLink.d.ts +7 -0
- package/dist/esm/lib2/shared/assets/icons/IconShare.d.ts +7 -0
- package/dist/esm/lib2/shared/assets/icons/index.d.ts +2 -0
- package/dist/esm/lib2/shared/ui/InputSearch/types.d.ts +2 -2
- package/dist/esm/lib2/shared/ui/ScreenInput/ScreenInput.d.ts +1 -0
- package/dist/index.d.ts +81 -56
- package/package.json +2 -2
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { WithTranslation } from 'react-i18next';
|
|
3
|
+
type ShareModalFeatureProps = {
|
|
4
|
+
isOpen: boolean;
|
|
5
|
+
shareUrl: string;
|
|
6
|
+
shareTitle?: string;
|
|
7
|
+
shareText?: string;
|
|
8
|
+
onDidDismiss?: () => void;
|
|
9
|
+
onLinkCopied?: () => void;
|
|
10
|
+
onShare?: () => void;
|
|
11
|
+
t?: WithTranslation['t'];
|
|
12
|
+
};
|
|
13
|
+
declare const ShareModalFeature: FC<ShareModalFeatureProps>;
|
|
14
|
+
export default ShareModalFeature;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as ShareModalFeature } from './ShareModalFeature';
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { SearchbarChangeEventDetail } from '@ionic/core';
|
|
2
|
-
import { IonSearchbarCustomEvent } from '@ionic/core/dist/types/components';
|
|
1
|
+
import { SearchbarChangeEventDetail, IonSearchbarCustomEvent } from '@ionic/core';
|
|
3
2
|
export type FieldSearchType = {
|
|
4
3
|
className?: string;
|
|
5
4
|
onCancelClick: () => void;
|
|
@@ -7,4 +6,5 @@ export type FieldSearchType = {
|
|
|
7
6
|
value: string;
|
|
8
7
|
debounce?: number;
|
|
9
8
|
placeholder?: string;
|
|
9
|
+
hideButton?: boolean;
|
|
10
10
|
};
|
|
@@ -4,6 +4,7 @@ interface ScreenInputProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
|
4
4
|
type?: 'text' | 'email' | 'password' | 'number';
|
|
5
5
|
showPasswordButton?: boolean;
|
|
6
6
|
className?: string;
|
|
7
|
+
label?: string;
|
|
7
8
|
}
|
|
8
9
|
declare const ScreenInput: React.ForwardRefExoticComponent<ScreenInputProps & React.RefAttributes<HTMLInputElement>>;
|
|
9
10
|
export default ScreenInput;
|
package/dist/index.d.ts
CHANGED
|
@@ -1702,6 +1702,7 @@ interface ScreenInputProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
|
1702
1702
|
type?: 'text' | 'email' | 'password' | 'number';
|
|
1703
1703
|
showPasswordButton?: boolean;
|
|
1704
1704
|
className?: string;
|
|
1705
|
+
label?: string;
|
|
1705
1706
|
}
|
|
1706
1707
|
declare const ScreenInput: React__default.ForwardRefExoticComponent<ScreenInputProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
1707
1708
|
|
|
@@ -1833,126 +1834,126 @@ declare function useRatingCircleBreakPoints({ ranges, maxValue, isReverse, }: {
|
|
|
1833
1834
|
}): number[];
|
|
1834
1835
|
declare function useRatingContext(): CircleRatingContextData;
|
|
1835
1836
|
|
|
1837
|
+
interface IconProps$u extends React.SVGAttributes<SVGElement> {
|
|
1838
|
+
size?: number | string;
|
|
1839
|
+
color?: string;
|
|
1840
|
+
}
|
|
1841
|
+
declare function IconArrowLeft({ color, size, ...other }: IconProps$u): JSX.Element;
|
|
1842
|
+
|
|
1843
|
+
interface IconProps$t extends React.SVGAttributes<SVGElement> {
|
|
1844
|
+
size?: number | string;
|
|
1845
|
+
color?: string;
|
|
1846
|
+
}
|
|
1847
|
+
declare function IconArrowRight({ color, size, ...other }: IconProps$t): JSX.Element;
|
|
1848
|
+
|
|
1836
1849
|
interface IconProps$s extends React.SVGAttributes<SVGElement> {
|
|
1837
1850
|
size?: number | string;
|
|
1838
1851
|
color?: string;
|
|
1839
1852
|
}
|
|
1840
|
-
declare function
|
|
1853
|
+
declare function IconBeachAccess({ color, size, ...other }: IconProps$s): JSX.Element;
|
|
1841
1854
|
|
|
1842
1855
|
interface IconProps$r extends React.SVGAttributes<SVGElement> {
|
|
1843
1856
|
size?: number | string;
|
|
1844
1857
|
color?: string;
|
|
1845
1858
|
}
|
|
1846
|
-
declare function
|
|
1859
|
+
declare function IconCalendar({ color, size, ...other }: IconProps$r): JSX.Element;
|
|
1847
1860
|
|
|
1848
1861
|
interface IconProps$q extends React.SVGAttributes<SVGElement> {
|
|
1849
1862
|
size?: number | string;
|
|
1850
1863
|
color?: string;
|
|
1851
1864
|
}
|
|
1852
|
-
declare function
|
|
1865
|
+
declare function IconCalendarMonth({ color, size, ...other }: IconProps$q): JSX.Element;
|
|
1853
1866
|
|
|
1854
1867
|
interface IconProps$p extends React.SVGAttributes<SVGElement> {
|
|
1855
1868
|
size?: number | string;
|
|
1856
1869
|
color?: string;
|
|
1857
1870
|
}
|
|
1858
|
-
declare function
|
|
1871
|
+
declare function IconChatOutline({ color, size, ...other }: IconProps$p): JSX.Element;
|
|
1859
1872
|
|
|
1860
1873
|
interface IconProps$o extends React.SVGAttributes<SVGElement> {
|
|
1861
1874
|
size?: number | string;
|
|
1862
1875
|
color?: string;
|
|
1863
1876
|
}
|
|
1864
|
-
declare function
|
|
1877
|
+
declare function IconCheckboxChecked({ color, size, ...other }: IconProps$o): JSX.Element;
|
|
1865
1878
|
|
|
1866
1879
|
interface IconProps$n extends React.SVGAttributes<SVGElement> {
|
|
1867
1880
|
size?: number | string;
|
|
1868
1881
|
color?: string;
|
|
1869
1882
|
}
|
|
1870
|
-
declare function
|
|
1883
|
+
declare function IconCheckboxUnchecked({ color, size, ...other }: IconProps$n): JSX.Element;
|
|
1884
|
+
|
|
1885
|
+
declare const IconClose: FC<React.SVGAttributes<SVGElement>>;
|
|
1871
1886
|
|
|
1872
1887
|
interface IconProps$m extends React.SVGAttributes<SVGElement> {
|
|
1873
1888
|
size?: number | string;
|
|
1874
1889
|
color?: string;
|
|
1875
1890
|
}
|
|
1876
|
-
declare function
|
|
1891
|
+
declare function IconEditCalendar({ color, size, ...props }: IconProps$m): JSX.Element;
|
|
1877
1892
|
|
|
1878
1893
|
interface IconProps$l extends React.SVGAttributes<SVGElement> {
|
|
1879
1894
|
size?: number | string;
|
|
1880
1895
|
color?: string;
|
|
1881
1896
|
}
|
|
1882
|
-
declare function
|
|
1883
|
-
|
|
1884
|
-
declare const IconClose: FC<React.SVGAttributes<SVGElement>>;
|
|
1897
|
+
declare function IconInvisible({ color, size, ...other }: IconProps$l): JSX.Element;
|
|
1885
1898
|
|
|
1886
1899
|
interface IconProps$k extends React.SVGAttributes<SVGElement> {
|
|
1887
1900
|
size?: number | string;
|
|
1888
1901
|
color?: string;
|
|
1889
1902
|
}
|
|
1890
|
-
declare function
|
|
1903
|
+
declare function IconLanguage({ color, size, ...other }: IconProps$k): JSX.Element;
|
|
1904
|
+
|
|
1905
|
+
declare const IconLeftArrow: FC<React.SVGAttributes<SVGElement>>;
|
|
1891
1906
|
|
|
1892
1907
|
interface IconProps$j extends React.SVGAttributes<SVGElement> {
|
|
1893
1908
|
size?: number | string;
|
|
1894
1909
|
color?: string;
|
|
1895
1910
|
}
|
|
1896
|
-
declare function
|
|
1911
|
+
declare function IconLogout({ color, size, ...other }: IconProps$j): JSX.Element;
|
|
1897
1912
|
|
|
1898
1913
|
interface IconProps$i extends React.SVGAttributes<SVGElement> {
|
|
1899
1914
|
size?: number | string;
|
|
1900
1915
|
color?: string;
|
|
1901
1916
|
}
|
|
1902
|
-
declare function
|
|
1917
|
+
declare function IconPause({ color, size, ...other }: IconProps$i): JSX.Element;
|
|
1903
1918
|
|
|
1904
|
-
|
|
1919
|
+
type IconPlusProps = React.SVGProps<any>;
|
|
1920
|
+
declare function IconPlus({ color, ...props }: IconPlusProps): JSX.Element;
|
|
1905
1921
|
|
|
1906
1922
|
interface IconProps$h extends React.SVGAttributes<SVGElement> {
|
|
1907
1923
|
size?: number | string;
|
|
1908
1924
|
color?: string;
|
|
1909
1925
|
}
|
|
1910
|
-
declare function
|
|
1926
|
+
declare function IconProfileChecked({ color, size, ...other }: IconProps$h): JSX.Element;
|
|
1911
1927
|
|
|
1912
1928
|
interface IconProps$g extends React.SVGAttributes<SVGElement> {
|
|
1913
1929
|
size?: number | string;
|
|
1914
1930
|
color?: string;
|
|
1915
1931
|
}
|
|
1916
|
-
declare function
|
|
1917
|
-
|
|
1918
|
-
type IconPlusProps = React.SVGProps<any>;
|
|
1919
|
-
declare function IconPlus({ color, ...props }: IconPlusProps): JSX.Element;
|
|
1932
|
+
declare function IconProfileCircle({ color, size, ...other }: IconProps$g): JSX.Element;
|
|
1920
1933
|
|
|
1921
1934
|
interface IconProps$f extends React.SVGAttributes<SVGElement> {
|
|
1922
1935
|
size?: number | string;
|
|
1923
1936
|
color?: string;
|
|
1924
1937
|
}
|
|
1925
|
-
declare function
|
|
1938
|
+
declare function IconProfileSetting({ color, size, ...other }: IconProps$f): JSX.Element;
|
|
1926
1939
|
|
|
1927
1940
|
interface IconProps$e extends React.SVGAttributes<SVGElement> {
|
|
1928
1941
|
size?: number | string;
|
|
1929
1942
|
color?: string;
|
|
1930
1943
|
}
|
|
1931
|
-
declare function
|
|
1944
|
+
declare function IconProfileUnderReview({ color, size, ...other }: IconProps$e): JSX.Element;
|
|
1932
1945
|
|
|
1933
1946
|
interface IconProps$d extends React.SVGAttributes<SVGElement> {
|
|
1934
1947
|
size?: number | string;
|
|
1935
1948
|
color?: string;
|
|
1936
1949
|
}
|
|
1937
|
-
declare function
|
|
1950
|
+
declare function IconResume({ color, size, ...other }: IconProps$d): JSX.Element;
|
|
1938
1951
|
|
|
1939
1952
|
interface IconProps$c extends React.SVGAttributes<SVGElement> {
|
|
1940
1953
|
size?: number | string;
|
|
1941
1954
|
color?: string;
|
|
1942
1955
|
}
|
|
1943
|
-
declare function
|
|
1944
|
-
|
|
1945
|
-
interface IconProps$b extends React.SVGAttributes<SVGElement> {
|
|
1946
|
-
size?: number | string;
|
|
1947
|
-
color?: string;
|
|
1948
|
-
}
|
|
1949
|
-
declare function IconResume({ color, size, ...other }: IconProps$b): JSX.Element;
|
|
1950
|
-
|
|
1951
|
-
interface IconProps$a extends React.SVGAttributes<SVGElement> {
|
|
1952
|
-
size?: number | string;
|
|
1953
|
-
color?: string;
|
|
1954
|
-
}
|
|
1955
|
-
declare function IconSettings({ color, size, ...other }: IconProps$a): JSX.Element;
|
|
1956
|
+
declare function IconSettings({ color, size, ...other }: IconProps$c): JSX.Element;
|
|
1956
1957
|
|
|
1957
1958
|
declare const IconStar: FC<React.SVGAttributes<SVGElement>>;
|
|
1958
1959
|
|
|
@@ -1960,23 +1961,23 @@ declare const IconStarFilled: FC<React.SVGAttributes<SVGElement>>;
|
|
|
1960
1961
|
|
|
1961
1962
|
declare const IconSuccess: FC<React.SVGAttributes<SVGElement>>;
|
|
1962
1963
|
|
|
1963
|
-
interface IconProps$
|
|
1964
|
+
interface IconProps$b extends React.SVGAttributes<SVGElement> {
|
|
1964
1965
|
size?: number | string;
|
|
1965
1966
|
color?: string;
|
|
1966
1967
|
}
|
|
1967
|
-
declare function IconTime({ color, size, ...other }: IconProps$
|
|
1968
|
+
declare function IconTime({ color, size, ...other }: IconProps$b): JSX.Element;
|
|
1968
1969
|
|
|
1969
|
-
interface IconProps$
|
|
1970
|
+
interface IconProps$a extends React.SVGAttributes<SVGElement> {
|
|
1970
1971
|
size?: number | string;
|
|
1971
1972
|
color?: string;
|
|
1972
1973
|
}
|
|
1973
|
-
declare function IconVerifiedUser({ color, size, ...other }: IconProps$
|
|
1974
|
+
declare function IconVerifiedUser({ color, size, ...other }: IconProps$a): JSX.Element;
|
|
1974
1975
|
|
|
1975
|
-
interface IconProps$
|
|
1976
|
+
interface IconProps$9 extends React.SVGAttributes<SVGElement> {
|
|
1976
1977
|
size?: number | string;
|
|
1977
1978
|
color?: string;
|
|
1978
1979
|
}
|
|
1979
|
-
declare function IconVisible({ color, size, ...other }: IconProps$
|
|
1980
|
+
declare function IconVisible({ color, size, ...other }: IconProps$9): JSX.Element;
|
|
1980
1981
|
|
|
1981
1982
|
declare const IconApple: FC<React.SVGAttributes<SVGElement>>;
|
|
1982
1983
|
|
|
@@ -1990,11 +1991,11 @@ declare const IconEye: FC<React.SVGAttributes<SVGElement>>;
|
|
|
1990
1991
|
|
|
1991
1992
|
declare const IconEyeOff: FC<React.SVGAttributes<SVGElement>>;
|
|
1992
1993
|
|
|
1993
|
-
interface IconProps$
|
|
1994
|
+
interface IconProps$8 extends React.SVGAttributes<SVGElement> {
|
|
1994
1995
|
size?: number | string;
|
|
1995
1996
|
color?: string;
|
|
1996
1997
|
}
|
|
1997
|
-
declare function IconWarning({ color, size, ...other }: IconProps$
|
|
1998
|
+
declare function IconWarning({ color, size, ...other }: IconProps$8): JSX.Element;
|
|
1998
1999
|
|
|
1999
2000
|
declare const IconGift: React.FC<React.SVGAttributes<SVGElement>>;
|
|
2000
2001
|
|
|
@@ -2010,49 +2011,49 @@ declare const IconNotificationMuted: (props: SVGProps<SVGSVGElement>) => JSX.Ele
|
|
|
2010
2011
|
|
|
2011
2012
|
declare const IconCheckSmall: React.FC<React.SVGAttributes<SVGElement>>;
|
|
2012
2013
|
|
|
2013
|
-
interface IconProps$
|
|
2014
|
+
interface IconProps$7 extends React.SVGAttributes<SVGElement> {
|
|
2014
2015
|
size?: number | string;
|
|
2015
2016
|
color?: string;
|
|
2016
2017
|
className?: string;
|
|
2017
2018
|
style?: React.CSSProperties;
|
|
2018
2019
|
}
|
|
2019
|
-
declare function IconCheck({ color, size, ...other }: IconProps$
|
|
2020
|
+
declare function IconCheck({ color, size, ...other }: IconProps$7): JSX.Element;
|
|
2020
2021
|
|
|
2021
|
-
interface IconProps$
|
|
2022
|
+
interface IconProps$6 extends React.SVGAttributes<SVGElement> {
|
|
2022
2023
|
size?: number | string;
|
|
2023
2024
|
color?: string;
|
|
2024
2025
|
className?: string;
|
|
2025
2026
|
style?: React.CSSProperties;
|
|
2026
2027
|
}
|
|
2027
|
-
declare const IconCapFilled: FC<IconProps$
|
|
2028
|
+
declare const IconCapFilled: FC<IconProps$6>;
|
|
2028
2029
|
|
|
2029
|
-
interface IconProps$
|
|
2030
|
+
interface IconProps$5 extends React.SVGAttributes<SVGElement> {
|
|
2030
2031
|
size?: number | string;
|
|
2031
2032
|
color?: string;
|
|
2032
2033
|
className?: string;
|
|
2033
2034
|
style?: React.CSSProperties;
|
|
2034
2035
|
}
|
|
2035
|
-
declare function IconCancelRounded({ color, size, ...other }: IconProps$
|
|
2036
|
+
declare function IconCancelRounded({ color, size, ...other }: IconProps$5): JSX.Element;
|
|
2036
2037
|
|
|
2037
|
-
interface IconProps$
|
|
2038
|
+
interface IconProps$4 extends React.SVGAttributes<SVGElement> {
|
|
2038
2039
|
size?: number | string;
|
|
2039
2040
|
color?: string;
|
|
2040
2041
|
}
|
|
2041
|
-
declare function IconMute({ color, size, ...other }: IconProps$
|
|
2042
|
+
declare function IconMute({ color, size, ...other }: IconProps$4): JSX.Element;
|
|
2042
2043
|
|
|
2043
|
-
interface IconProps$
|
|
2044
|
+
interface IconProps$3 extends React.SVGAttributes<SVGElement> {
|
|
2044
2045
|
size?: number | string;
|
|
2045
2046
|
color?: string;
|
|
2046
2047
|
}
|
|
2047
|
-
declare function IconUnmute({ color, size, ...other }: IconProps$
|
|
2048
|
+
declare function IconUnmute({ color, size, ...other }: IconProps$3): JSX.Element;
|
|
2048
2049
|
|
|
2049
2050
|
declare const IconBookmark: ({ width, height, color, ...other }: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
2050
2051
|
|
|
2051
|
-
interface IconProps extends React.SVGAttributes<SVGElement> {
|
|
2052
|
+
interface IconProps$2 extends React.SVGAttributes<SVGElement> {
|
|
2052
2053
|
size?: number | string;
|
|
2053
2054
|
color?: string;
|
|
2054
2055
|
}
|
|
2055
|
-
declare function IconBookmarkOutlined({ size, color, ...other }: IconProps): JSX.Element;
|
|
2056
|
+
declare function IconBookmarkOutlined({ size, color, ...other }: IconProps$2): JSX.Element;
|
|
2056
2057
|
|
|
2057
2058
|
declare const IconUserNotFound: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
2058
2059
|
|
|
@@ -2074,6 +2075,18 @@ declare const IconArrowDown: ({ width, height, color, ...other }: SVGProps<SVGSV
|
|
|
2074
2075
|
|
|
2075
2076
|
declare const IconRadioButtonChecked: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
2076
2077
|
|
|
2078
|
+
interface IconProps$1 extends React.SVGAttributes<SVGElement> {
|
|
2079
|
+
size?: number | string;
|
|
2080
|
+
color?: string;
|
|
2081
|
+
}
|
|
2082
|
+
declare function IconShare({ size, ...props }: IconProps$1): JSX.Element;
|
|
2083
|
+
|
|
2084
|
+
interface IconProps extends React.SVGAttributes<SVGElement> {
|
|
2085
|
+
size?: number | string;
|
|
2086
|
+
color?: string;
|
|
2087
|
+
}
|
|
2088
|
+
declare function IconLink({ size, ...props }: IconProps): JSX.Element;
|
|
2089
|
+
|
|
2077
2090
|
type AnyRef = React__default.Ref<any>;
|
|
2078
2091
|
declare const mergeRefs: <T extends unknown>(...refs: AnyRef[]) => React__default.Ref<T>;
|
|
2079
2092
|
|
|
@@ -2223,6 +2236,18 @@ type Props = {
|
|
|
2223
2236
|
};
|
|
2224
2237
|
declare const CheckBoxListFeature: ({ items, name, type, onChange, values, }: Props) => JSX.Element;
|
|
2225
2238
|
|
|
2239
|
+
type ShareModalFeatureProps = {
|
|
2240
|
+
isOpen: boolean;
|
|
2241
|
+
shareUrl: string;
|
|
2242
|
+
shareTitle?: string;
|
|
2243
|
+
shareText?: string;
|
|
2244
|
+
onDidDismiss?: () => void;
|
|
2245
|
+
onLinkCopied?: () => void;
|
|
2246
|
+
onShare?: () => void;
|
|
2247
|
+
t?: WithTranslation['t'];
|
|
2248
|
+
};
|
|
2249
|
+
declare const ShareModalFeature: FC<ShareModalFeatureProps>;
|
|
2250
|
+
|
|
2226
2251
|
declare const _default: React__default.NamedExoticComponent<any>;
|
|
2227
2252
|
|
|
2228
2253
|
type SpecialistCard = {
|
|
@@ -2249,4 +2274,4 @@ type SpecialistCardListWidgetProps = {
|
|
|
2249
2274
|
};
|
|
2250
2275
|
declare const SpecialistCardListWidget: FC<SpecialistCardListWidgetProps & WithTranslation['t']>;
|
|
2251
2276
|
|
|
2252
|
-
export { AppFooter, _default$g as AppFooter_v2, AppHeader, AppHeader_v2, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$f as Avatar_v2, BREAKPOINT_ICON_SIZE, _default$b as Badge, _default$u as BookingScheduleTime, _default$t as BookingSpecialistInfo, Button, Button_v2, Calendar, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$P as ChatListItem, _default$N as ChatListSkeleton, _default$O as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$o as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingContext, CircleRatingProvider, _default$G as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$D as ConsultationModal, _default$B as ConsultationSpecialistCard, Container, Container_v2, ContentCard, CountdownTimerFeature, CountryOfOriginModal, CustomButton, _default$p as CustomCheckbox, CustomRadioButton, _default$q as CustomSelect, _default$r as CustomTextarea, DatePicker, _default$z as DaySlider, DayToRender, _default$v as EducationCard, _default$M as EmptyChatList, EmptyChatMessages, _default$E as EmptyConsultations, EntryNotFound, EntryNotFoundProps, _default$l as Flag, FlagTypes, _default$d as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$7 as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCancel, IconCancelRounded, IconCapFilled, IconChat3d, IconChatFilled, IconChatOutline, IconCheck, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCreditCard, IconEditCalendar, IconEye, IconEyeOff, IconGift, IconGoogle, IconInvisible, IconLanguage, IconLeftArrow, IconLetter, IconLogout, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPlus, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconQuestion, IconRadioButtonChecked, IconResume, IconSearch, IconSettings, IconSpinner, IconStar, IconStarFilled, IconSuccess, IconTime, IconUnmute, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, _default$3 as Item, _default$a as ItemCard, LanguagesList, _default$T as LetterAvatar, _default$m as LineFileInput, ListBox, ListBoxItem, ListButton, ListItemType, _default$4 as ListItems, ListOption, ListSelect, ListSelectProps, ListSimple, _default$5 as Loading, LouseConnect, _default$Q as MediaPlayer, MobilePickerFeature, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$S as PersonDateTimeCard, _default$c as Picture, _default$k as ProfileInformation, _default$x as ProfileView, _default$n as ProgressBar, _default$6 as ProgressBar_v2, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$8 as Rating, RatingCircleWrapper, _default$A as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, SIZES, ScreenInput, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$R as SelectImpressionEmoji, SelectItemType, _default$F as SignUpSessionButton, _default$C as SignUpSessionModal, Skeleton, _default$e as Skeleton_v2, _default$1 as SlotsGrid, _default$w as SpecialistAbout, SpecialistCard$1 as SpecialistCard, SpecialistCardListWidget, _default as SpecialistCardWidget, _default$K as SpecialistEducationCard, SpecialistInfoColumnFeature as SpecialistInfoColumn, SpecialistLangs, _default$j as SpecialistMatch, _default$J as SpecialistProfileViewCard, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$i as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, Tag, _default$s as TextInput, _default$L as Textarea, _default$9 as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, _default$h as Typography, TypographyVariantsEnum, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$2 as Video, _default$H as VideoCallInfo, _default$I as VideoPlayer, _default$y as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, getProgressForBreakPoint, mergeRefs, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDomRef, useEvent, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext };
|
|
2277
|
+
export { AppFooter, _default$g as AppFooter_v2, AppHeader, AppHeader_v2, ArchivedConsultationCard, Avatar, AvatarProps$1 as AvatarProps, _default$f as Avatar_v2, BREAKPOINT_ICON_SIZE, _default$b as Badge, _default$u as BookingScheduleTime, _default$t as BookingSpecialistInfo, Button, Button_v2, Calendar, CancelSession, CardModal, ChangeLangModal, ChangeLanguageModal, _default$P as ChatListItem, _default$N as ChatListSkeleton, _default$O as ChatMessage, ChatMessageSkeleton, CheckBoxItem, CheckBoxListFeature, CheckBoxSectionListFeature, _default$o as CheckboxList, CheckboxListCategory, CheckboxListItem, CheckboxTypes, ChevronHeader, CircleRatingContext, CircleRatingProvider, _default$G as ConsultationCard, ConsultationCardProps, ConsultationCardType, _default$D as ConsultationModal, _default$B as ConsultationSpecialistCard, Container, Container_v2, ContentCard, CountdownTimerFeature, CountryOfOriginModal, CustomButton, _default$p as CustomCheckbox, CustomRadioButton, _default$q as CustomSelect, _default$r as CustomTextarea, DatePicker, _default$z as DaySlider, DayToRender, _default$v as EducationCard, _default$M as EmptyChatList, EmptyChatMessages, _default$E as EmptyConsultations, EntryNotFound, EntryNotFoundProps, _default$l as Flag, FlagTypes, _default$d as Flag_v2, FloatingButton, FooterForBooking, FrequentlyAskedQuestions, HorizontalCalendar, HorizontalCalendarProps, ISpecialistReview, IconApple, IconArrowDown, IconArrowLeft, IconArrowRight, IconBeachAccess, IconBookmark, IconBookmarkOutlined, _default$7 as IconButton, IconCalendar, IconCalendarFilled, IconCalendarMonth, IconCancel, IconCancelRounded, IconCapFilled, IconChat3d, IconChatFilled, IconChatOutline, IconCheck, IconCheckSmall, IconCheckboxChecked, IconCheckboxUnchecked, IconClient, IconClientFilled, IconClose, IconCreditCard, IconEditCalendar, IconEye, IconEyeOff, IconGift, IconGoogle, IconInvisible, IconLanguage, IconLeftArrow, IconLetter, IconLink, IconLogout, IconMute, IconNotificationMuted, IconPaid, IconPaper, IconPause, IconPlus, IconProfileChecked, IconProfileCircle, IconProfileSetting, IconProfileUnderReview, IconQuestion, IconRadioButtonChecked, IconResume, IconSearch, IconSettings, IconShare, IconSpinner, IconStar, IconStarFilled, IconSuccess, IconTime, IconUnmute, IconUserNotFound, IconVerifiedUser, IconVisible, IconWarning, ImageInput, ImageWithFallback, ImpressionEmojiEnum, Input, _default$3 as Item, _default$a as ItemCard, LanguagesList, _default$T as LetterAvatar, _default$m as LineFileInput, ListBox, ListBoxItem, ListButton, ListItemType, _default$4 as ListItems, ListOption, ListSelect, ListSelectProps, ListSimple, _default$5 as Loading, LouseConnect, _default$Q as MediaPlayer, MobilePickerFeature, Modal, ModalCalendar, ModalSheet, NavigationBar, NoInternetConnection, NotSupportModal, NotesCardText, NotesEditor, PasswordInput, _default$S as PersonDateTimeCard, _default$c as Picture, _default$k as ProfileInformation, _default$x as ProfileView, _default$n as ProgressBar, _default$6 as ProgressBar_v2, PushNotificationsIsDisabledBanner, PushNotificationsModal, Range, _default$8 as Rating, RatingCircleWrapper, _default$A as ReSchedule, ReScheduleSuccess, Refresher, ReviewCard, ReviewStatistics, ReviewSwiperSection, RoundButton, RowItemType, RowSelect, RowSelectProps, SIZES, ScreenInput, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$R as SelectImpressionEmoji, SelectItemType, ShareModalFeature, _default$F as SignUpSessionButton, _default$C as SignUpSessionModal, Skeleton, _default$e as Skeleton_v2, _default$1 as SlotsGrid, _default$w as SpecialistAbout, SpecialistCard$1 as SpecialistCard, SpecialistCardListWidget, _default as SpecialistCardWidget, _default$K as SpecialistEducationCard, SpecialistInfoColumnFeature as SpecialistInfoColumn, SpecialistLangs, _default$j as SpecialistMatch, _default$J as SpecialistProfileViewCard, SpecialistShortInfoItemFeature as SpecialistShortInfoItem, _default$i as SpecialistStatistic, SpecialistStatisticsCard, SpecialistWorkDirections, Spinner, Spinner_v2, StarRating, StatisticsScroll, StatusTag, SuccessScreen, SwitchDeviceCard, TabBar, Tag, _default$s as TextInput, _default$L as Textarea, _default$9 as Textarea_v2, ThemeProvider, ThemeProviderProps, TherapistCard, TherapistInformationComponent, Toast, ToastButton, ToastContext, ToastProps, ToastProvider, ToastRegion, Toggle, TooltipComponent, _default$h as Typography, TypographyVariantsEnum, UpdatesCard, UserInfoModal, UsersPsychologistScrollList, VerticalCalendar, VerticalCalendarMonthSkeleton, VerticalCalendarSkeleton, _default$2 as Video, _default$H as VideoCallInfo, _default$I as VideoPlayer, _default$y as WorkDirections, YourLocalTimeBlock, appThemes, decOfNum, getProgressForBreakPoint, mergeRefs, toast, useAutoFocus, useBreakPointsPosition, useCircleRatingRenderData, useDomRef, useEvent, useRangeIndex, useRatingCircleBreakPoints, useRatingCircleContentValue, useRatingCircleLegend, useRatingContext, useToastContext };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mindly/ui-components",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.33.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"clean": "rimraf dist",
|
|
@@ -40,13 +40,13 @@
|
|
|
40
40
|
"tailwind-variants": "^0.1.14"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
|
+
"react": "^17.0.2",
|
|
43
44
|
"@babel/polyfill": "^7.12.1",
|
|
44
45
|
"@fontsource/inter": "^5.0.8",
|
|
45
46
|
"@fontsource/inter-tight": "^5.0.12",
|
|
46
47
|
"@ionic/react": "^6.1.11",
|
|
47
48
|
"@ionic/react-router": "^6.1.11",
|
|
48
49
|
"luxon": "^2.4.0",
|
|
49
|
-
"react": "^17.0.2",
|
|
50
50
|
"react-dom": "^17.0.2",
|
|
51
51
|
"styled-components": "^5.3.1"
|
|
52
52
|
},
|