forstok-ui-lib 8.0.6 → 8.0.7

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/index.d.ts CHANGED
@@ -551,14 +551,14 @@ type TPopupOtherProp = {
551
551
  };
552
552
  declare const PopupComponent: ({ children, body, mode, height, width, isOpen, evTooglePopup, ...props }: TPopup & TPopupOtherProp) => react_jsx_runtime.JSX.Element;
553
553
 
554
- type TImage = ImgHTMLAttributes<HTMLImageElement> & {
554
+ type TImage$1 = ImgHTMLAttributes<HTMLImageElement> & {
555
555
  $mode?: string;
556
556
  };
557
- declare const ImageComponent: ({ $mode, ...props }: TImage) => react_jsx_runtime.JSX.Element;
557
+ declare const ImageComponent: ({ $mode, ...props }: TImage$1) => react_jsx_runtime.JSX.Element;
558
558
 
559
559
  type ImageMode = 'store' | 'product';
560
560
 
561
- declare const ImageChannelComponent: ({ data, label, size, isImageOnly, $mode, $isPhone, labelPhone }: {
561
+ type TImage = {
562
562
  data?: any;
563
563
  label?: string;
564
564
  size?: string;
@@ -566,7 +566,9 @@ declare const ImageChannelComponent: ({ data, label, size, isImageOnly, $mode, $
566
566
  $mode?: ImageMode;
567
567
  $isPhone?: boolean;
568
568
  labelPhone?: string;
569
- }) => react_jsx_runtime.JSX.Element;
569
+ $url?: string;
570
+ };
571
+ declare const ImageChannelComponent: (props: TImage) => react_jsx_runtime.JSX.Element;
570
572
 
571
573
  type TSelect$2 = {
572
574
  type?: string;