forstok-ui-lib 8.5.16 → 8.5.18

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
@@ -557,9 +557,11 @@ declare const MessageQuestionComponent: ({ $type, title, subtitle, callback, but
557
557
 
558
558
  type TPopupOtherProp = {
559
559
  children: ReactNode[];
560
- 'data-qa-id'?: string;
560
+ "data-qa-id"?: string;
561
+ isNested?: boolean;
562
+ evToogleNestedPopup?: () => void;
561
563
  };
562
- declare const PopupComponent: ({ children, body, mode, height, width, isOpen, evTooglePopup, ...props }: TPopup & TPopupOtherProp) => react_jsx_runtime.JSX.Element;
564
+ declare const PopupComponent: ({ children, body, mode, height, width, isOpen, evTooglePopup, isNested, evToogleNestedPopup, ...props }: TPopup & TPopupOtherProp) => react_jsx_runtime.JSX.Element;
563
565
 
564
566
  type TImage$1 = ImgHTMLAttributes<HTMLImageElement> & {
565
567
  $mode?: string;
@@ -609,7 +611,7 @@ type TSelect$2 = {
609
611
  options: TOption[] | null;
610
612
  isMinOption?: boolean;
611
613
  placeholder?: string;
612
- 'data-qa-id'?: string;
614
+ "data-qa-id"?: string;
613
615
  removeMessage?: TObject;
614
616
  evCreateMessageQuestion?: TMessageQuestionFunction;
615
617
  isLoading?: boolean;
@@ -620,7 +622,7 @@ declare const SelectComponent: ({ type, isError, mode, customOption, customLabel
620
622
  type TSelect$1 = {
621
623
  mode?: string;
622
624
  isError?: boolean;
623
- 'data-qa-id'?: string;
625
+ "data-qa-id"?: string;
624
626
  value: MultiValue<any>;
625
627
  options: TOption[] | null;
626
628
  evChange: (newValue: any[], actionMeta: ActionMeta<any>) => void;