@mindly/ui-components 8.2.42 → 8.3.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.
@@ -2,7 +2,8 @@ import React, { PropsWithChildren } from 'react';
2
2
  import { TranslationType } from '../../shared/types';
3
3
  type AppNotSupportedProps = {
4
4
  isOpen: boolean;
5
- showMessenger: () => void;
5
+ onUpdate?: () => void;
6
+ redirectToWeb?: () => void;
6
7
  } & TranslationType;
7
- export declare function AppNotSupportedFeature({ isOpen, showMessenger, t, children, }: PropsWithChildren<AppNotSupportedProps>): React.ReactElement;
8
+ export declare function AppNotSupportedFeature({ isOpen, onUpdate, redirectToWeb, t, children, }: PropsWithChildren<AppNotSupportedProps>): React.ReactElement;
8
9
  export {};
@@ -1,5 +1,6 @@
1
1
  import { JSX } from '@ionic/core/components';
2
2
  import { CSSVarStyles } from '../../types';
3
+ import { HTMLAttributes } from 'react';
3
4
  export type ButtonProps = {
4
5
  fill?: 'outline' | 'clear';
5
6
  size?: 'default' | 'large' | 'small';
@@ -17,4 +18,4 @@ export type ButtonProps = {
17
18
  id?: string;
18
19
  variant?: 'default' | 'blue' | 'custom' | 'round';
19
20
  slot?: string;
20
- } & JSX.IonButton;
21
+ } & JSX.IonButton & HTMLAttributes<HTMLIonButtonElement>;
package/dist/index.d.ts CHANGED
@@ -1374,7 +1374,7 @@ type ButtonProps$1 = {
1374
1374
  id?: string;
1375
1375
  variant?: 'default' | 'blue' | 'custom' | 'round';
1376
1376
  slot?: string;
1377
- } & JSX.IonButton;
1377
+ } & JSX.IonButton & HTMLAttributes<HTMLIonButtonElement>;
1378
1378
 
1379
1379
  declare const Button_v2: FC<PropsWithChildren<ButtonProps$1>>;
1380
1380
 
@@ -2884,9 +2884,10 @@ declare const ReviewsCardFeatureSkeleton: React__default.MemoExoticComponent<()
2884
2884
 
2885
2885
  type AppNotSupportedProps = {
2886
2886
  isOpen: boolean;
2887
- showMessenger: () => void;
2887
+ onUpdate?: () => void;
2888
+ redirectToWeb?: () => void;
2888
2889
  } & TranslationType;
2889
- declare function AppNotSupportedFeature({ isOpen, showMessenger, t, children, }: PropsWithChildren<AppNotSupportedProps>): React__default.ReactElement;
2890
+ declare function AppNotSupportedFeature({ isOpen, onUpdate, redirectToWeb, t, children, }: PropsWithChildren<AppNotSupportedProps>): React__default.ReactElement;
2890
2891
 
2891
2892
  type ScreenInputUpdateFeatureProps = React__default.PropsWithChildren<{
2892
2893
  title: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "8.2.42",
3
+ "version": "8.3.0",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",