@fewbox/den-web 0.0.83
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/index-web.d.ts +63 -0
- package/index.css +1 -0
- package/index.js +2 -0
- package/index.js.map +1 -0
- package/package.json +25 -0
- package/scripts/copy-templates.js +29 -0
- package/src/action/index.d.ts +8 -0
- package/src/components/Analyze/GA4NextJS/index.d.ts +5 -0
- package/src/components/Analyze/util.d.ts +115 -0
- package/src/components/Api/GAPI/index.d.ts +7 -0
- package/src/components/Auth/FigmaSignin/index.d.ts +9 -0
- package/src/components/Auth/GoogleSignin/index.d.ts +14 -0
- package/src/components/Auth/WeComSignin/index.d.ts +8 -0
- package/src/components/Auth/util.d.ts +17 -0
- package/src/components/Debug/index.d.ts +6 -0
- package/src/components/Engine/Base/index.d.ts +222 -0
- package/src/components/Engine/BaseComponent/index.d.ts +9 -0
- package/src/components/Engine/index.d.ts +212 -0
- package/src/components/Layout/Display/index.d.ts +18 -0
- package/src/components/Layout/Dock/index.d.ts +23 -0
- package/src/components/Layout/DockBak/index.d.ts +24 -0
- package/src/components/Layout/Flex/index.d.ts +44 -0
- package/src/components/Layout/FlexItem/index.d.ts +18 -0
- package/src/components/Layout/Position/index.d.ts +32 -0
- package/src/components/Layout/PositionArea/index.d.ts +10 -0
- package/src/components/Layout/SBaseline/index.d.ts +5 -0
- package/src/components/Layout/SBottom/index.d.ts +6 -0
- package/src/components/Layout/SCenter/index.d.ts +5 -0
- package/src/components/Layout/SLeft/index.d.ts +5 -0
- package/src/components/Layout/SMiddle/index.d.ts +5 -0
- package/src/components/Layout/SRight/index.d.ts +5 -0
- package/src/components/Layout/SStretch/index.d.ts +5 -0
- package/src/components/Layout/STop/index.d.ts +5 -0
- package/src/components/Layout/X/index.d.ts +5 -0
- package/src/components/Layout/XAround/index.d.ts +5 -0
- package/src/components/Layout/XAutoBoth/index.d.ts +5 -0
- package/src/components/Layout/XAutoCenter/index.d.ts +5 -0
- package/src/components/Layout/XAutoLeft/index.d.ts +5 -0
- package/src/components/Layout/XAutoLefts/index.d.ts +5 -0
- package/src/components/Layout/XAutoRight/index.d.ts +5 -0
- package/src/components/Layout/XAutoRights/index.d.ts +5 -0
- package/src/components/Layout/XBase/index.d.ts +18 -0
- package/src/components/Layout/XBetween/index.d.ts +5 -0
- package/src/components/Layout/XCenter/index.d.ts +5 -0
- package/src/components/Layout/XCustom/index.d.ts +7 -0
- package/src/components/Layout/XCustomBoth/index.d.ts +7 -0
- package/src/components/Layout/XEvenly/index.d.ts +5 -0
- package/src/components/Layout/XLeft/index.d.ts +5 -0
- package/src/components/Layout/XRight/index.d.ts +5 -0
- package/src/components/Layout/XWrapAround/index.d.ts +5 -0
- package/src/components/Layout/XWrapBetween/index.d.ts +5 -0
- package/src/components/Layout/XWrapBottom/index.d.ts +5 -0
- package/src/components/Layout/XWrapEvenly/index.d.ts +5 -0
- package/src/components/Layout/XWrapMiddle/index.d.ts +5 -0
- package/src/components/Layout/XWrapTop/index.d.ts +5 -0
- package/src/components/Layout/Y/index.d.ts +5 -0
- package/src/components/Layout/YAround/index.d.ts +5 -0
- package/src/components/Layout/YAutoBoth/index.d.ts +5 -0
- package/src/components/Layout/YAutoBottom/index.d.ts +5 -0
- package/src/components/Layout/YAutoBottoms/index.d.ts +5 -0
- package/src/components/Layout/YAutoCenter/index.d.ts +5 -0
- package/src/components/Layout/YAutoTop/index.d.ts +5 -0
- package/src/components/Layout/YAutoTops/index.d.ts +5 -0
- package/src/components/Layout/YBase/index.d.ts +16 -0
- package/src/components/Layout/YBetween/index.d.ts +5 -0
- package/src/components/Layout/YBottom/index.d.ts +5 -0
- package/src/components/Layout/YCustom/index.d.ts +7 -0
- package/src/components/Layout/YCustomBoth/index.d.ts +7 -0
- package/src/components/Layout/YEvenly/index.d.ts +5 -0
- package/src/components/Layout/YMiddle/index.d.ts +5 -0
- package/src/components/Layout/YTop/index.d.ts +5 -0
- package/src/components/Layout/YWrapAround/index.d.ts +5 -0
- package/src/components/Layout/YWrapBetween/index.d.ts +5 -0
- package/src/components/Layout/YWrapCenter/index.d.ts +5 -0
- package/src/components/Layout/YWrapEvenly/index.d.ts +5 -0
- package/src/components/Layout/YWrapLeft/index.d.ts +5 -0
- package/src/components/Layout/YWrapRight/index.d.ts +5 -0
- package/src/components/Layout/index.d.ts +8 -0
- package/src/components/Layout/util.d.ts +6 -0
- package/src/components/View/VActionForm/index.d.ts +10 -0
- package/src/components/View/VAnimation/index.d.ts +127 -0
- package/src/components/View/VAudio/index.d.ts +10 -0
- package/src/components/View/VAvatar/index.d.ts +11 -0
- package/src/components/View/VBackground/index.d.ts +18 -0
- package/src/components/View/VBadge/index.d.ts +6 -0
- package/src/components/View/VBlock/index.d.ts +9 -0
- package/src/components/View/VBoundary/index.d.ts +6 -0
- package/src/components/View/VButton/index.d.ts +17 -0
- package/src/components/View/VCard/index.d.ts +8 -0
- package/src/components/View/VCardMedia/index.d.ts +9 -0
- package/src/components/View/VCardSocial/index.d.ts +13 -0
- package/src/components/View/VCardWindow/index.d.ts +15 -0
- package/src/components/View/VChromeExtensionValidator/index.d.ts +12 -0
- package/src/components/View/VDesigner/VDesignerConnection/index.d.ts +10 -0
- package/src/components/View/VDesigner/VDesignerElement/index.d.ts +11 -0
- package/src/components/View/VDesigner/VDesignerGroup/index.d.ts +10 -0
- package/src/components/View/VDesigner/VDesignerNode/index.d.ts +68 -0
- package/src/components/View/VDesigner/index.d.ts +35 -0
- package/src/components/View/VFooter/index.d.ts +5 -0
- package/src/components/View/VForm/index.d.ts +13 -0
- package/src/components/View/VFrame/index.d.ts +14 -0
- package/src/components/View/VGoogleFont/index.d.ts +18 -0
- package/src/components/View/VHR/index.d.ts +5 -0
- package/src/components/View/VHeader/index.d.ts +5 -0
- package/src/components/View/VHyperlink/index.d.ts +13 -0
- package/src/components/View/VImage/App/index.d.ts +16 -0
- package/src/components/View/VImage/Web/index.d.ts +6 -0
- package/src/components/View/VInput/VBase64File/App/index.d.ts +10 -0
- package/src/components/View/VInput/VBase64File/Web/index.d.ts +10 -0
- package/src/components/View/VInput/VCheckBox/index.d.ts +9 -0
- package/src/components/View/VInput/VColor/index.d.ts +7 -0
- package/src/components/View/VInput/VDate/index.d.ts +7 -0
- package/src/components/View/VInput/VDatetimeLocal/index.d.ts +7 -0
- package/src/components/View/VInput/VDropdown/index.d.ts +31 -0
- package/src/components/View/VInput/VEmail/index.d.ts +5 -0
- package/src/components/View/VInput/VFile/index.d.ts +22 -0
- package/src/components/View/VInput/VGroup/index.d.ts +11 -0
- package/src/components/View/VInput/VHidden/index.d.ts +8 -0
- package/src/components/View/VInput/VMonth/index.d.ts +5 -0
- package/src/components/View/VInput/VNumber/index.d.ts +5 -0
- package/src/components/View/VInput/VPassword/index.d.ts +5 -0
- package/src/components/View/VInput/VRadio/index.d.ts +6 -0
- package/src/components/View/VInput/VRange/index.d.ts +8 -0
- package/src/components/View/VInput/VSearch/index.d.ts +5 -0
- package/src/components/View/VInput/VSubmit/index.d.ts +7 -0
- package/src/components/View/VInput/VSubmitWrapper/index.d.ts +6 -0
- package/src/components/View/VInput/VTel/index.d.ts +5 -0
- package/src/components/View/VInput/VTextBox/index.d.ts +7 -0
- package/src/components/View/VInput/VTime/index.d.ts +5 -0
- package/src/components/View/VInput/VUrl/index.d.ts +5 -0
- package/src/components/View/VInput/VWeek/index.d.ts +5 -0
- package/src/components/View/VInput/index.d.ts +47 -0
- package/src/components/View/VLabel/index.d.ts +60 -0
- package/src/components/View/VLink/App/index.d.ts +6 -0
- package/src/components/View/VLink/Web/index.d.ts +6 -0
- package/src/components/View/VLoading/index.d.ts +8 -0
- package/src/components/View/VMain/index.d.ts +5 -0
- package/src/components/View/VMask/index.d.ts +5 -0
- package/src/components/View/VPaypal/index.d.ts +10 -0
- package/src/components/View/VPhoto/index.d.ts +20 -0
- package/src/components/View/VPureRoot/index.d.ts +7 -0
- package/src/components/View/VRoot/index.d.ts +7 -0
- package/src/components/View/VSection/index.d.ts +5 -0
- package/src/components/View/VSelect/index.d.ts +14 -0
- package/src/components/View/VShadow/index.d.ts +15 -0
- package/src/components/View/VShape/VEllipse/index.d.ts +10 -0
- package/src/components/View/VShape/VLine/index.d.ts +10 -0
- package/src/components/View/VShape/VRectangle/index.d.ts +10 -0
- package/src/components/View/VStack/index.d.ts +5 -0
- package/src/components/View/VSvg/index.d.ts +16 -0
- package/src/components/View/VSwitch/index.d.ts +13 -0
- package/src/components/View/VTemplate/index.d.ts +5 -0
- package/src/components/View/VText/index.d.ts +22 -0
- package/src/components/View/VTextArea/index.d.ts +17 -0
- package/src/components/View/VTheme/index.d.ts +43 -0
- package/src/components/View/VTooltip/index.d.ts +20 -0
- package/src/components/View/VTree/Block/index.d.ts +14 -0
- package/src/components/View/VTree/index.d.ts +15 -0
- package/src/components/View/VVideo/index.d.ts +10 -0
- package/src/components/View/VZone/index.d.ts +14 -0
- package/src/components/util.d.ts +1 -0
- package/src/components/web.d.ts +122 -0
- package/src/fewbox/index.d.ts +25 -0
- package/src/language/index.d.ts +5 -0
- package/src/network/Delete.d.ts +6 -0
- package/src/network/DeleteExternal.d.ts +6 -0
- package/src/network/DeleteForm.d.ts +6 -0
- package/src/network/DeleteFormExternal.d.ts +6 -0
- package/src/network/ErrorMessage.d.ts +2 -0
- package/src/network/FormHeaders.d.ts +2 -0
- package/src/network/GQL.d.ts +6 -0
- package/src/network/GQLExternal.d.ts +6 -0
- package/src/network/Get.d.ts +6 -0
- package/src/network/GetExternal.d.ts +6 -0
- package/src/network/GetFetch.d.ts +6 -0
- package/src/network/GetFetchExternal.d.ts +6 -0
- package/src/network/GetForm.d.ts +6 -0
- package/src/network/GetFormExternal.d.ts +6 -0
- package/src/network/GetLocal.d.ts +5 -0
- package/src/network/GetSSE.d.ts +5 -0
- package/src/network/Headers.d.ts +5 -0
- package/src/network/NetworkObservableAjax.d.ts +8 -0
- package/src/network/NetworkObservableAjaxExternal.d.ts +9 -0
- package/src/network/NetworkObservableBase.d.ts +12 -0
- package/src/network/NetworkObservableFetch.d.ts +7 -0
- package/src/network/NetworkObservableFetchExternal.d.ts +8 -0
- package/src/network/NetworkObservableGQL.d.ts +8 -0
- package/src/network/NetworkObservableGQLExternal.d.ts +9 -0
- package/src/network/Patch.d.ts +6 -0
- package/src/network/PatchExternal.d.ts +6 -0
- package/src/network/PatchFetch.d.ts +6 -0
- package/src/network/PatchFetchExternal.d.ts +6 -0
- package/src/network/PatchForm.d.ts +6 -0
- package/src/network/PatchFormExternal.d.ts +6 -0
- package/src/network/Post.d.ts +6 -0
- package/src/network/PostExternal.d.ts +6 -0
- package/src/network/PostFetch.d.ts +6 -0
- package/src/network/PostFetchExternal.d.ts +6 -0
- package/src/network/PostForm.d.ts +6 -0
- package/src/network/PostFormExternal.d.ts +6 -0
- package/src/network/PostSSE.d.ts +5 -0
- package/src/network/Put.d.ts +6 -0
- package/src/network/PutExternal.d.ts +6 -0
- package/src/network/PutFetch.d.ts +6 -0
- package/src/network/PutFetchExternal.d.ts +6 -0
- package/src/network/PutForm.d.ts +6 -0
- package/src/network/PutFormExternal.d.ts +6 -0
- package/src/network/SSEObservableBase.d.ts +13 -0
- package/src/network/index.d.ts +38 -0
- package/src/network/util.d.ts +5 -0
- package/templates/FEWBOX.md +73 -0
- package/templates/style/_core.scss +297 -0
- package/templates/style/_root-properties.scss +56 -0
- package/templates/style/_root.scss +6 -0
- package/templates/style/_variables.scss +194 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { IChildrenProps, IEventProps, IViewProps } from '../../Engine/Base';
|
|
3
|
+
export declare enum DockCategory {
|
|
4
|
+
Auto = "auto",
|
|
5
|
+
Fix = "fix"
|
|
6
|
+
}
|
|
7
|
+
export declare enum DockType {
|
|
8
|
+
Top = "top",
|
|
9
|
+
Right = "right",
|
|
10
|
+
Bottom = "bottom",
|
|
11
|
+
Left = "left",
|
|
12
|
+
LeftTop = "left-top",
|
|
13
|
+
RightTop = "right-top",
|
|
14
|
+
LeftBottom = "left-bottom",
|
|
15
|
+
RightBottom = "right-bottom"
|
|
16
|
+
}
|
|
17
|
+
export interface IDockProps extends IChildrenProps, IEventProps, IViewProps {
|
|
18
|
+
category?: DockCategory;
|
|
19
|
+
type?: DockType;
|
|
20
|
+
gap?: number;
|
|
21
|
+
renderOverlay: () => JSX.Element;
|
|
22
|
+
}
|
|
23
|
+
declare const Dock: React.FC<IDockProps>;
|
|
24
|
+
export default Dock;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { IBaseProps } from '../../Engine/Base';
|
|
2
|
+
export declare enum FlexDirectionType {
|
|
3
|
+
Row = "row",
|
|
4
|
+
RowReverse = "row-reverse",
|
|
5
|
+
Column = "column",
|
|
6
|
+
ColumnReverse = "column-reverse"
|
|
7
|
+
}
|
|
8
|
+
export declare enum FlexWrapType {
|
|
9
|
+
NoWrap = "nowrap",
|
|
10
|
+
Wrap = "wrap"
|
|
11
|
+
}
|
|
12
|
+
export declare enum FlexJustifyContentType {
|
|
13
|
+
Start = "flex-start",
|
|
14
|
+
Center = "center",
|
|
15
|
+
End = "flex-end",
|
|
16
|
+
SpaceBetween = "space-between",
|
|
17
|
+
SpaceAround = "space-around",
|
|
18
|
+
SpaceEvenly = "space-evenly"
|
|
19
|
+
}
|
|
20
|
+
export declare enum FlexAlignItemsType {
|
|
21
|
+
Start = "flex-start",
|
|
22
|
+
Center = "center",
|
|
23
|
+
End = "flex-end",
|
|
24
|
+
Stretch = "stretch",
|
|
25
|
+
Baseline = "baseline"
|
|
26
|
+
}
|
|
27
|
+
export declare enum FlexAlignContentType {
|
|
28
|
+
Start = "flex-start",
|
|
29
|
+
Center = "center",
|
|
30
|
+
End = "flex-end",
|
|
31
|
+
SpaceBetween = "space-between",
|
|
32
|
+
SpaceAround = "space-around",
|
|
33
|
+
SpaceEvenly = "space-evenly"
|
|
34
|
+
}
|
|
35
|
+
export interface IFlexProps extends IBaseProps {
|
|
36
|
+
direction?: FlexDirectionType;
|
|
37
|
+
wrap?: FlexWrapType;
|
|
38
|
+
justifyContent?: FlexJustifyContentType;
|
|
39
|
+
alignItems?: FlexAlignItemsType;
|
|
40
|
+
alignContent?: FlexAlignContentType;
|
|
41
|
+
gap?: string;
|
|
42
|
+
}
|
|
43
|
+
declare const Flex: (props: IFlexProps) => JSX.Element;
|
|
44
|
+
export default Flex;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Property } from 'csstype';
|
|
2
|
+
import { IBaseProps } from '../../Engine/Base';
|
|
3
|
+
export declare enum FlexItemAlignSelfType {
|
|
4
|
+
Start = "start",
|
|
5
|
+
Center = "center",
|
|
6
|
+
End = "end",
|
|
7
|
+
Stretch = "stretch",
|
|
8
|
+
Baseline = "baseline"
|
|
9
|
+
}
|
|
10
|
+
export interface IFlexItemProps extends IBaseProps {
|
|
11
|
+
alignSelf?: FlexItemAlignSelfType;
|
|
12
|
+
order?: Property.Order;
|
|
13
|
+
basis?: Property.FlexBasis;
|
|
14
|
+
grow?: Property.FlexGrow;
|
|
15
|
+
shrink?: Property.FlexShrink;
|
|
16
|
+
}
|
|
17
|
+
declare const FlexItem: (props: IFlexItemProps) => JSX.Element;
|
|
18
|
+
export default FlexItem;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { IChildrenProps } from '../../Engine/Base';
|
|
3
|
+
export declare enum PositionCategory {
|
|
4
|
+
Edge = "edge",
|
|
5
|
+
Window = "window",
|
|
6
|
+
Area = "area",
|
|
7
|
+
Self = "self"
|
|
8
|
+
}
|
|
9
|
+
export declare enum PositionType {
|
|
10
|
+
Top = "top",
|
|
11
|
+
Right = "right",
|
|
12
|
+
Bottom = "bottom",
|
|
13
|
+
Left = "left",
|
|
14
|
+
LeftTop = "left-top",
|
|
15
|
+
RightTop = "right-top",
|
|
16
|
+
LeftBottom = "left-bottom",
|
|
17
|
+
RightBottom = "right-bottom",
|
|
18
|
+
Center = "center"
|
|
19
|
+
}
|
|
20
|
+
export interface IPositionProps extends IChildrenProps {
|
|
21
|
+
category: PositionCategory;
|
|
22
|
+
type?: PositionType;
|
|
23
|
+
top?: string;
|
|
24
|
+
right?: string;
|
|
25
|
+
bottom?: string;
|
|
26
|
+
left?: string;
|
|
27
|
+
zIndex?: number;
|
|
28
|
+
isFullWidth?: boolean;
|
|
29
|
+
style?: React.CSSProperties;
|
|
30
|
+
}
|
|
31
|
+
declare const Position: (props: IPositionProps) => JSX.Element;
|
|
32
|
+
export default Position;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IChildrenProps } from '../../Engine/Base';
|
|
2
|
+
export declare enum PositionAreaCategory {
|
|
3
|
+
Default = "default",
|
|
4
|
+
FullSize = "full-size"
|
|
5
|
+
}
|
|
6
|
+
export interface IPositionAreaProps extends IChildrenProps {
|
|
7
|
+
category?: PositionAreaCategory;
|
|
8
|
+
}
|
|
9
|
+
declare const PositionArea: (props: IPositionAreaProps) => JSX.Element;
|
|
10
|
+
export default PositionArea;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { IBaseProps } from '../../Engine/Base';
|
|
3
|
+
import { FlexAlignContentType, FlexJustifyContentType, FlexWrapType } from '../Flex';
|
|
4
|
+
import { FlexItemAlignSelfType } from '../FlexItem';
|
|
5
|
+
export declare enum XCrossType {
|
|
6
|
+
Top = "top",
|
|
7
|
+
Middle = "middle",
|
|
8
|
+
Bottom = "bottom",
|
|
9
|
+
Stretch = "stretch",
|
|
10
|
+
Baseline = "baseline"
|
|
11
|
+
}
|
|
12
|
+
export interface IXBaseProps extends IBaseProps {
|
|
13
|
+
gap?: string;
|
|
14
|
+
cross?: XCrossType;
|
|
15
|
+
style?: React.CSSProperties;
|
|
16
|
+
}
|
|
17
|
+
declare const XBase: (props: IXBaseProps, overwriteRenderChildren?: (child: any, childIndex: number, alignSelf?: FlexItemAlignSelfType) => JSX.Element, overwriteGetWrap?: () => FlexWrapType, overwriteGetJustifyContent?: () => FlexJustifyContentType, overwriteGetAlignContent?: () => FlexAlignContentType) => JSX.Element;
|
|
18
|
+
export default XBase;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Property } from 'csstype';
|
|
2
|
+
import { IXBaseProps } from '../XBase';
|
|
3
|
+
export interface IXCustomBothProps extends IXBaseProps {
|
|
4
|
+
basis?: Property.FlexBasis;
|
|
5
|
+
}
|
|
6
|
+
declare const XCustomBoth: (props: IXCustomBothProps) => JSX.Element;
|
|
7
|
+
export default XCustomBoth;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { IBaseProps } from '../../Engine/Base';
|
|
2
|
+
import { FlexAlignContentType, FlexWrapType, FlexJustifyContentType } from '../Flex';
|
|
3
|
+
import { FlexItemAlignSelfType } from '../FlexItem';
|
|
4
|
+
export declare enum YCrossType {
|
|
5
|
+
Left = "left",
|
|
6
|
+
Center = "center",
|
|
7
|
+
Right = "right",
|
|
8
|
+
Baseline = "baseline",
|
|
9
|
+
Stretch = "stretch"
|
|
10
|
+
}
|
|
11
|
+
export interface IYBaseProps extends IBaseProps {
|
|
12
|
+
gap?: string;
|
|
13
|
+
cross?: YCrossType;
|
|
14
|
+
}
|
|
15
|
+
declare const YBase: (props: IYBaseProps, overwriteRenderChildren?: (child: any, childIndex: number, alignSelf?: FlexItemAlignSelfType) => JSX.Element, overwriteGetWrap?: () => FlexWrapType, overwriteGetAlignContent?: () => FlexAlignContentType, overwriteGetJustifyContent?: () => FlexJustifyContentType) => JSX.Element;
|
|
16
|
+
export default YBase;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Property } from 'csstype';
|
|
2
|
+
import { IYBaseProps } from '../YBase';
|
|
3
|
+
export interface IYCustomBothProps extends IYBaseProps {
|
|
4
|
+
basis?: Property.FlexBasis;
|
|
5
|
+
}
|
|
6
|
+
declare const YCustomBoth: (props: IYCustomBothProps) => JSX.Element;
|
|
7
|
+
export default YCustomBoth;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IChildrenProps } from '../../Engine/Base';
|
|
2
|
+
export interface IVActionFormProps extends IChildrenProps {
|
|
3
|
+
action: string | undefined;
|
|
4
|
+
method: string | undefined;
|
|
5
|
+
target: string | undefined;
|
|
6
|
+
}
|
|
7
|
+
export interface IVActionFormStates {
|
|
8
|
+
}
|
|
9
|
+
declare const VActionForm: (props: IVActionFormProps) => JSX.Element;
|
|
10
|
+
export default VActionForm;
|