forstok-ui-lib 8.5.16 → 8.5.17
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 +6 -4
- package/dist/index.js +27 -27
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +58 -58
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/assets/stylesheets/shares.styles.ts +3 -3
- package/src/components/popup/index.tsx +230 -64
- package/src/components/popup/styles.ts +128 -88
- package/src/components/select/all.tsx +243 -171
- package/src/components/select/asyncPaginate.tsx +4 -2
- package/src/components/select/index.tsx +476 -265
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
625
|
+
"data-qa-id"?: string;
|
|
624
626
|
value: MultiValue<any>;
|
|
625
627
|
options: TOption[] | null;
|
|
626
628
|
evChange: (newValue: any[], actionMeta: ActionMeta<any>) => void;
|