@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.
@@ -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';
@@ -10,3 +10,4 @@ export * from './CountdownTimerFeature';
10
10
  export * from './MobilePickerFeature';
11
11
  export * from './CheckBoxSectionListFeature';
12
12
  export * from './CheckBoxListFeature';
13
+ export * from './ShareModalFeature';
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+ interface IconProps extends React.SVGAttributes<SVGElement> {
3
+ size?: number | string;
4
+ color?: string;
5
+ }
6
+ export declare function IconLink({ size, ...props }: IconProps): JSX.Element;
7
+ export {};
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+ interface IconProps extends React.SVGAttributes<SVGElement> {
3
+ size?: number | string;
4
+ color?: string;
5
+ }
6
+ export declare function IconShare({ size, ...props }: IconProps): JSX.Element;
7
+ export {};
@@ -58,3 +58,5 @@ export * from './IconCalendarFilled';
58
58
  export * from './IconBookmark';
59
59
  export * from './IconArrowDown';
60
60
  export * from './IconRadioButtonChecked';
61
+ export * from './IconShare';
62
+ export * from './IconLink';
@@ -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;