@mindly/ui-components 5.36.0 → 5.37.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.
@@ -1,4 +1,5 @@
1
1
  import React from 'react';
2
+ import { WithTranslation } from 'react-i18next';
2
3
  type FileInfoType = {
3
4
  originalName: string;
4
5
  size: number;
@@ -14,6 +15,7 @@ type TextareaProps = {
14
15
  maxLength: number;
15
16
  onError?: (message: string) => void;
16
17
  onFileSelect?: (file: File | null, type: 'file' | 'image' | 'video', fileInfo: FileInfoType) => void;
18
+ t?: WithTranslation['t'];
17
19
  };
18
20
  declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<TextareaProps & React.RefAttributes<HTMLIonFooterElement>>>;
19
21
  export default _default;
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ import { IconProps } from '../../types';
3
+ export declare const IconAddModerator: FC<IconProps>;
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ import { IconProps } from '../../types';
3
+ export declare const IconEcgHeart: FC<IconProps>;
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ import { IconProps } from '../../types';
3
+ export declare const IconHome: FC<IconProps>;
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ import { IconProps } from '../../types';
3
+ export declare const IconPromocode: FC<IconProps>;
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ import { IconProps } from '../../types';
3
+ export declare const IconQueryStats: FC<IconProps>;
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ import { IconProps } from '../../types';
3
+ export declare const IconSchema: FC<IconProps>;
@@ -60,3 +60,9 @@ export * from './IconArrowDown';
60
60
  export * from './IconRadioButtonChecked';
61
61
  export * from './IconShare';
62
62
  export * from './IconLink';
63
+ export * from './IconHome';
64
+ export * from './IconEcgHeart';
65
+ export * from './IconAddModerator';
66
+ export * from './IconQueryStats';
67
+ export * from './IconSchema';
68
+ export * from './IconPromocode';
@@ -0,0 +1,6 @@
1
+ import { SVGAttributes } from 'react';
2
+ export interface IconProps extends SVGAttributes<SVGElement> {
3
+ size?: number | string;
4
+ color?: string;
5
+ className?: string;
6
+ }
@@ -1 +1,2 @@
1
1
  export * from './ratingCircleTypes';
2
+ export * from './iconProps';