@mindly/ui-components 5.56.0 → 5.57.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 +2 -2
- package/dist/cjs/lib2/features/AppNotSupporedFeature/AppNotSupportedFeature.d.ts +2 -1
- package/dist/cjs/lib2/shared/hooks/useSpecialistPayments.d.ts +1 -1
- package/dist/cjs/lib2/shared/ui/ItemCard/types.d.ts +2 -2
- package/dist/esm/index.js +1 -1
- package/dist/esm/lib2/features/AppNotSupporedFeature/AppNotSupportedFeature.d.ts +2 -1
- package/dist/esm/lib2/shared/hooks/useSpecialistPayments.d.ts +1 -1
- package/dist/esm/lib2/shared/ui/ItemCard/types.d.ts +2 -2
- package/dist/index.d.ts +4 -4
- package/package.json +1 -1
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import { PropsWithChildren } from 'react';
|
|
1
2
|
import { TranslationType } from '../../shared/types';
|
|
2
3
|
type AppNotSupportedProps = {
|
|
3
4
|
isOpen: boolean;
|
|
4
5
|
showMessenger: () => void;
|
|
5
6
|
} & TranslationType;
|
|
6
|
-
export declare function AppNotSupportedFeature({ isOpen, showMessenger, t, }: AppNotSupportedProps): JSX.Element;
|
|
7
|
+
export declare function AppNotSupportedFeature({ isOpen, showMessenger, t, children }: PropsWithChildren<AppNotSupportedProps>): JSX.Element;
|
|
7
8
|
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
export type ItemCardVariants = 'neutral' | 'transparent';
|
|
2
|
+
export type ItemCardVariants = 'neutral' | 'transparent' | 'transparent20';
|
|
3
3
|
export type ItemCardProps = React.ComponentPropsWithoutRef<'div'> & {
|
|
4
4
|
variant: ItemCardVariants;
|
|
5
|
-
size?: 'M' | 'M4';
|
|
5
|
+
size?: 'M' | 'M4' | 'M45';
|
|
6
6
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import React__default, { ReactNode, CSSProperties, HTMLAttributes, RefAttributes, FC, ReactText, ReactElement, ChangeEvent, SVGAttributes, InputHTMLAttributes, SVGProps } from 'react';
|
|
2
|
+
import React__default, { ReactNode, CSSProperties, HTMLAttributes, RefAttributes, FC, ReactText, ReactElement, ChangeEvent, SVGAttributes, InputHTMLAttributes, SVGProps, PropsWithChildren } from 'react';
|
|
3
3
|
import { JSX as JSX$1 } from '@ionic/core/components';
|
|
4
4
|
import * as react_i18next from 'react-i18next';
|
|
5
5
|
import { WithTranslation } from 'react-i18next';
|
|
@@ -1529,10 +1529,10 @@ type BadgeProps = React.ComponentPropsWithoutRef<'span'> & {
|
|
|
1529
1529
|
|
|
1530
1530
|
declare const _default$l: React.NamedExoticComponent<BadgeProps>;
|
|
1531
1531
|
|
|
1532
|
-
type ItemCardVariants = 'neutral' | 'transparent';
|
|
1532
|
+
type ItemCardVariants = 'neutral' | 'transparent' | 'transparent20';
|
|
1533
1533
|
type ItemCardProps = React.ComponentPropsWithoutRef<'div'> & {
|
|
1534
1534
|
variant: ItemCardVariants;
|
|
1535
|
-
size?: 'M' | 'M4';
|
|
1535
|
+
size?: 'M' | 'M4' | 'M45';
|
|
1536
1536
|
};
|
|
1537
1537
|
|
|
1538
1538
|
declare const _default$k: React.NamedExoticComponent<ItemCardProps>;
|
|
@@ -2617,7 +2617,7 @@ type AppNotSupportedProps = {
|
|
|
2617
2617
|
isOpen: boolean;
|
|
2618
2618
|
showMessenger: () => void;
|
|
2619
2619
|
} & TranslationType;
|
|
2620
|
-
declare function AppNotSupportedFeature({ isOpen, showMessenger, t, }: AppNotSupportedProps): JSX.Element;
|
|
2620
|
+
declare function AppNotSupportedFeature({ isOpen, showMessenger, t, children }: PropsWithChildren<AppNotSupportedProps>): JSX.Element;
|
|
2621
2621
|
|
|
2622
2622
|
type ScreenInputUpdateFeatureProps = {
|
|
2623
2623
|
children?: any;
|