react-declarative 2.7.106 → 2.7.107
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 +5 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -20305,6 +20305,7 @@ declare module "react-declarative/components/FeatureView/hooks/useFeatureView" {
|
|
|
20305
20305
|
withStaticAction,
|
|
20306
20306
|
}: IParams) => {
|
|
20307
20307
|
open: boolean;
|
|
20308
|
+
setOpen: import("react").Dispatch<import("react").SetStateAction<boolean>>;
|
|
20308
20309
|
render: () => JSX.Element;
|
|
20309
20310
|
pickData: (param?: any) => void;
|
|
20310
20311
|
};
|
|
@@ -20482,6 +20483,7 @@ declare module "react-declarative/components/VisibilityView/hooks/useVisibilityV
|
|
|
20482
20483
|
submitLabel,
|
|
20483
20484
|
}: IParams) => {
|
|
20484
20485
|
open: boolean;
|
|
20486
|
+
setOpen: import("react").Dispatch<import("react").SetStateAction<boolean>>;
|
|
20485
20487
|
render: () => JSX.Element;
|
|
20486
20488
|
pickData: (param?: any) => void;
|
|
20487
20489
|
};
|
|
@@ -23628,6 +23630,7 @@ declare module "react-declarative/components/ActionModal/ActionModal" {
|
|
|
23628
23630
|
}
|
|
23629
23631
|
|
|
23630
23632
|
declare module "react-declarative/components/ActionModal/useActionModal" {
|
|
23633
|
+
import * as React from "react";
|
|
23631
23634
|
import { IActionModalProps } from "react-declarative/components/ActionModal/ActionModal";
|
|
23632
23635
|
import TypedField from "react-declarative/model/TypedField";
|
|
23633
23636
|
import IAnything from "react-declarative/model/IAnything";
|
|
@@ -23742,6 +23745,7 @@ declare module "react-declarative/components/ActionModal/useActionModal" {
|
|
|
23742
23745
|
title,
|
|
23743
23746
|
}: IParams<Data, Payload, Field, Param>) => {
|
|
23744
23747
|
open: boolean;
|
|
23748
|
+
setOpen: React.Dispatch<React.SetStateAction<boolean>>;
|
|
23745
23749
|
render: () => JSX.Element;
|
|
23746
23750
|
pickData: (param?: Param | undefined) => void;
|
|
23747
23751
|
};
|
|
@@ -23749,6 +23753,7 @@ declare module "react-declarative/components/ActionModal/useActionModal" {
|
|
|
23749
23753
|
params: IParams<Data, TypedField<Data, any>, IField<Data, any>, any>,
|
|
23750
23754
|
) => {
|
|
23751
23755
|
open: boolean;
|
|
23756
|
+
setOpen: React.Dispatch<React.SetStateAction<boolean>>;
|
|
23752
23757
|
render: () => JSX.Element;
|
|
23753
23758
|
pickData: (param?: any) => void;
|
|
23754
23759
|
};
|