@fewbox/den-web 0.0.83 → 0.0.88
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 +0 -58
- package/index.css +1 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +1 -2
- package/src/components/Api/Google/index.d.ts +9 -0
- package/src/components/Auth/GoogleSignin/index.d.ts +12 -10
- package/src/components/Engine/Base/index.d.ts +8 -2
- package/src/components/Layout/Position/index.d.ts +2 -1
- package/src/components/View/VChromeExtensionValidator/index.d.ts +18 -5
- package/src/components/View/VInput/index.d.ts +0 -2
- package/src/components/web.d.ts +4 -5
- package/src/store/EnumDictionary.d.ts +3 -0
- package/src/store/IContinuePaging.d.ts +4 -0
- package/src/store/IList.d.ts +3 -0
- package/src/store/IMetaResponse.d.ts +5 -0
- package/src/store/IPaging.d.ts +6 -0
- package/src/store/IPayloadResponse.d.ts +4 -0
- package/src/store/Json.d.ts +9 -0
- package/src/store/index.d.ts +6 -0
- package/templates/style/_root-properties.scss +1 -0
- package/templates/style/_variables.scss +5 -5
- package/src/action/index.d.ts +0 -8
- package/src/components/Api/GAPI/index.d.ts +0 -7
- package/src/components/View/VDesigner/VDesignerConnection/index.d.ts +0 -10
- package/src/components/View/VDesigner/VDesignerElement/index.d.ts +0 -11
- package/src/components/View/VDesigner/VDesignerGroup/index.d.ts +0 -10
- package/src/components/View/VDesigner/VDesignerNode/index.d.ts +0 -68
- package/src/components/View/VDesigner/index.d.ts +0 -35
- package/src/components/View/VImage/Web/index.d.ts +0 -6
- package/src/components/View/VInput/VBase64File/Web/index.d.ts +0 -10
- package/src/components/View/VLink/Web/index.d.ts +0 -6
- package/src/fewbox/index.d.ts +0 -25
- package/src/language/index.d.ts +0 -5
- package/src/network/Delete.d.ts +0 -6
- package/src/network/DeleteExternal.d.ts +0 -6
- package/src/network/DeleteForm.d.ts +0 -6
- package/src/network/DeleteFormExternal.d.ts +0 -6
- package/src/network/ErrorMessage.d.ts +0 -2
- package/src/network/FormHeaders.d.ts +0 -2
- package/src/network/GQL.d.ts +0 -6
- package/src/network/GQLExternal.d.ts +0 -6
- package/src/network/Get.d.ts +0 -6
- package/src/network/GetExternal.d.ts +0 -6
- package/src/network/GetFetch.d.ts +0 -6
- package/src/network/GetFetchExternal.d.ts +0 -6
- package/src/network/GetForm.d.ts +0 -6
- package/src/network/GetFormExternal.d.ts +0 -6
- package/src/network/GetLocal.d.ts +0 -5
- package/src/network/GetSSE.d.ts +0 -5
- package/src/network/Headers.d.ts +0 -5
- package/src/network/NetworkObservableAjax.d.ts +0 -8
- package/src/network/NetworkObservableAjaxExternal.d.ts +0 -9
- package/src/network/NetworkObservableBase.d.ts +0 -12
- package/src/network/NetworkObservableFetch.d.ts +0 -7
- package/src/network/NetworkObservableFetchExternal.d.ts +0 -8
- package/src/network/NetworkObservableGQL.d.ts +0 -8
- package/src/network/NetworkObservableGQLExternal.d.ts +0 -9
- package/src/network/Patch.d.ts +0 -6
- package/src/network/PatchExternal.d.ts +0 -6
- package/src/network/PatchFetch.d.ts +0 -6
- package/src/network/PatchFetchExternal.d.ts +0 -6
- package/src/network/PatchForm.d.ts +0 -6
- package/src/network/PatchFormExternal.d.ts +0 -6
- package/src/network/Post.d.ts +0 -6
- package/src/network/PostExternal.d.ts +0 -6
- package/src/network/PostFetch.d.ts +0 -6
- package/src/network/PostFetchExternal.d.ts +0 -6
- package/src/network/PostForm.d.ts +0 -6
- package/src/network/PostFormExternal.d.ts +0 -6
- package/src/network/PostSSE.d.ts +0 -5
- package/src/network/Put.d.ts +0 -6
- package/src/network/PutExternal.d.ts +0 -6
- package/src/network/PutFetch.d.ts +0 -6
- package/src/network/PutFetchExternal.d.ts +0 -6
- package/src/network/PutForm.d.ts +0 -6
- package/src/network/PutFormExternal.d.ts +0 -6
- package/src/network/SSEObservableBase.d.ts +0 -13
- package/src/network/index.d.ts +0 -38
- package/src/network/util.d.ts +0 -5
|
@@ -1,14 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
name: string;
|
|
6
|
-
avatarUrl: string;
|
|
1
|
+
export declare enum GoogleSigninCategory {
|
|
2
|
+
Prompt = "prompt",
|
|
3
|
+
Popup = "popup",
|
|
4
|
+
Redirect = "redirect"
|
|
7
5
|
}
|
|
8
|
-
export interface IGoogleSigninProps
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
6
|
+
export interface IGoogleSigninProps {
|
|
7
|
+
clientId: string;
|
|
8
|
+
category: GoogleSigninCategory;
|
|
9
|
+
redirectUrl?: string;
|
|
10
|
+
gsiButtonConfiguration?: google.accounts.id.GsiButtonConfiguration;
|
|
11
|
+
callback: (credential: string) => void;
|
|
12
|
+
enableGoogle: () => void;
|
|
13
|
+
disableGoogle: () => void;
|
|
12
14
|
}
|
|
13
15
|
declare const GoogleSignin: (props: IGoogleSigninProps) => JSX.Element;
|
|
14
16
|
export default GoogleSignin;
|
|
@@ -5,7 +5,12 @@ export type TLength = (string & {}) | 0;
|
|
|
5
5
|
export interface IChildrenProps {
|
|
6
6
|
children?: React.ReactNode | undefined;
|
|
7
7
|
}
|
|
8
|
+
export declare enum RootCategory {
|
|
9
|
+
Div = "div",
|
|
10
|
+
Span = "span"
|
|
11
|
+
}
|
|
8
12
|
export interface IViewProps {
|
|
13
|
+
rootCategory?: RootCategory;
|
|
9
14
|
className?: string;
|
|
10
15
|
style?: React.CSSProperties;
|
|
11
16
|
size?: FullSizeType;
|
|
@@ -43,8 +48,9 @@ export interface IViewProps {
|
|
|
43
48
|
overflowX?: Property.OverflowX;
|
|
44
49
|
overflowY?: Property.OverflowY;
|
|
45
50
|
isDefaultValue?: boolean;
|
|
46
|
-
key?: React.Key
|
|
47
|
-
ref?: React.
|
|
51
|
+
key?: React.Key;
|
|
52
|
+
ref?: React.RefObject<any>;
|
|
53
|
+
readonlyRef?: React.RefObject<any>;
|
|
48
54
|
customAttibutes?: Object;
|
|
49
55
|
}
|
|
50
56
|
export interface IEventProps {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { IChildrenProps } from '../../Engine/Base';
|
|
3
|
+
import { Property } from 'csstype';
|
|
3
4
|
export declare enum PositionCategory {
|
|
4
5
|
Edge = "edge",
|
|
5
6
|
Window = "window",
|
|
@@ -24,7 +25,7 @@ export interface IPositionProps extends IChildrenProps {
|
|
|
24
25
|
right?: string;
|
|
25
26
|
bottom?: string;
|
|
26
27
|
left?: string;
|
|
27
|
-
zIndex?:
|
|
28
|
+
zIndex?: Property.ZIndex;
|
|
28
29
|
isFullWidth?: boolean;
|
|
29
30
|
style?: React.CSSProperties;
|
|
30
31
|
}
|
|
@@ -1,12 +1,25 @@
|
|
|
1
1
|
export interface IChromeExtensionValidatorProps {
|
|
2
2
|
extensionId: string;
|
|
3
|
-
version
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
downloadUrl
|
|
3
|
+
version?: string;
|
|
4
|
+
uninstalledCaption?: string | JSX.Element;
|
|
5
|
+
outdatedCaption?: string | JSX.Element;
|
|
6
|
+
downloadUrl?: string;
|
|
7
|
+
waitingTime?: number;
|
|
8
|
+
overWrite?: (status: ExtensionStatus) => JSX.Element;
|
|
9
|
+
}
|
|
10
|
+
export declare enum ExtensionStatus {
|
|
11
|
+
Uninstalled = "uninstalled",
|
|
12
|
+
Outdated = "outdated",
|
|
13
|
+
Ready = "ready"
|
|
7
14
|
}
|
|
8
15
|
export interface IChromeExtensionValidatorStates {
|
|
9
|
-
|
|
16
|
+
status?: ExtensionStatus;
|
|
17
|
+
}
|
|
18
|
+
export interface MetaEvent {
|
|
19
|
+
version: string;
|
|
20
|
+
}
|
|
21
|
+
export interface ValidationEvent {
|
|
22
|
+
id: string;
|
|
10
23
|
}
|
|
11
24
|
declare const ChromeExtensionValidator: (props: IChromeExtensionValidatorProps) => JSX.Element;
|
|
12
25
|
export default ChromeExtensionValidator;
|
|
@@ -33,8 +33,6 @@ export interface IBaseInputProps extends IBaseProps {
|
|
|
33
33
|
isRequired?: boolean;
|
|
34
34
|
disabled?: boolean;
|
|
35
35
|
overWrite?: (inputRef: React.RefObject<HTMLInputElement>) => JSX.Element;
|
|
36
|
-
inputRef?: React.RefObject<HTMLInputElement>;
|
|
37
|
-
inputReadonlyRef?: React.RefObject<any>;
|
|
38
36
|
}
|
|
39
37
|
export interface IVInputProps extends IBaseInputProps {
|
|
40
38
|
inheritClassName?: string;
|
package/src/components/web.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export { RootCategory } from './Engine/Base';
|
|
1
2
|
export { default as Debug } from './Debug';
|
|
2
3
|
export { BreakpointType } from './Layout';
|
|
3
4
|
export { default as VZone, ZoneCategory } from './View/VZone';
|
|
@@ -62,7 +63,6 @@ export { default as YWrapEvenly } from './Layout/YWrapEvenly';
|
|
|
62
63
|
export { YCrossType } from './Layout/YBase';
|
|
63
64
|
export { default as Base, IBaseProps, IBaseStates, IChildrenProps, IBaseReturn } from './Engine/Base';
|
|
64
65
|
export { default as VBackground, BackgroundPositionType } from './View/VBackground';
|
|
65
|
-
export { default as VImage } from './View/VImage/Web';
|
|
66
66
|
export { default as VForm, HandleSubmitCategory } from './View/VForm';
|
|
67
67
|
export { default as VActionForm } from './View/VActionForm';
|
|
68
68
|
export { InputExtensionItem } from './View/VInput';
|
|
@@ -72,7 +72,6 @@ export { default as VDate } from './View/VInput/VDate';
|
|
|
72
72
|
export { default as VDatetimeLocal } from './View/VInput/VDatetimeLocal';
|
|
73
73
|
export { default as VEmail } from './View/VInput/VEmail';
|
|
74
74
|
export { default as VFile, FileCategory } from './View/VInput/VFile';
|
|
75
|
-
export { default as VBase64File } from './View/VInput/VBase64File/Web';
|
|
76
75
|
export { default as VMonth } from './View/VInput/VMonth';
|
|
77
76
|
export { default as VNumber } from './View/VInput/VNumber';
|
|
78
77
|
export { default as VPassword } from './View/VInput/VPassword';
|
|
@@ -91,9 +90,9 @@ export { default as VGroup } from './View/VInput/VGroup';
|
|
|
91
90
|
export { default as VSelect, ISelectItemData } from './View/VSelect';
|
|
92
91
|
export { default as VDropdown, IDropdownItemData } from './View/VInput/VDropdown';
|
|
93
92
|
export { default as VSvg, SvgCategory } from './View/VSvg';
|
|
93
|
+
export { default as VChromeExtensionValidator, ExtensionStatus } from './View/VChromeExtensionValidator';
|
|
94
94
|
export { default as VBoundary } from './View/VBoundary';
|
|
95
95
|
export { default as VHyperlink, HyperlinkCategory } from './View/VHyperlink';
|
|
96
|
-
export { default as VLink } from './View/VLink/Web';
|
|
97
96
|
export { default as VLabel, LabelCategory, LabelType, LabelAlignType } from './View/VLabel';
|
|
98
97
|
export { default as VText, TextCategory, TextAlignType } from './View/VText';
|
|
99
98
|
export { default as VTextArea } from './View/VTextArea';
|
|
@@ -113,9 +112,9 @@ export { default as VSection } from './View/VSection';
|
|
|
113
112
|
export { default as VMask } from './View/VMask';
|
|
114
113
|
export { default as VFrame } from './View/VFrame';
|
|
115
114
|
export { default as GA4NextJS } from './Analyze/GA4NextJS';
|
|
116
|
-
export { default as
|
|
115
|
+
export { default as Google } from './Api/Google';
|
|
117
116
|
export { default as FigmaSignin } from './Auth/FigmaSignin';
|
|
118
|
-
export { default as GoogleSignin,
|
|
117
|
+
export { default as GoogleSignin, GoogleSigninCategory } from './Auth/GoogleSignin';
|
|
119
118
|
export { default as WeComSignin } from './Auth/WeComSignin';
|
|
120
119
|
export { IUserProfile, parseJWT } from './Auth/util';
|
|
121
120
|
export { ga4NextJSScope, ga4NextJSEvent, ga4NextJSInit, ga4NextJSPageview, ga4NextJSSetFieldsObject, IGAEvent, IGA4Options, ICustomGA4Options, IGAOptions, ICustomGAOptions, IGTagOptions, ICustomGTagOptions, IGFieldsObject, GAEventTransportType } from './Analyze/util';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export { default as IList } from './IList';
|
|
2
|
+
export { default as IPaging } from './IPaging';
|
|
3
|
+
export { default as IContinuePaging } from './IContinuePaging';
|
|
4
|
+
export { EnumDictionary } from './EnumDictionary';
|
|
5
|
+
export { default as IMetaResponse } from './IMetaResponse';
|
|
6
|
+
export { default as IPayloadResponse } from './IPayloadResponse';
|
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
#{v.$var-prefix}scrollbar-track-color: #{v.$scrollbar-track-color};
|
|
35
35
|
#{v.$var-prefix}scrollbar-thumb-color: #{v.$scrollbar-thumb-color};
|
|
36
36
|
#{v.$var-prefix}scrollbar-thumb-hover-color: #{v.$scrollbar-thumb-hover-color};
|
|
37
|
+
#{v.$var-prefix}scrollbar-thumb-active-color: #{v.$scrollbar-thumb-active-color};
|
|
37
38
|
#{v.$var-prefix}scrollbar-radius: #{v.$scrollbar-radius};
|
|
38
39
|
// Component
|
|
39
40
|
#{v.$var-prefix}input-padding: #{v.$input-padding};
|
|
@@ -104,11 +104,11 @@ $box-sizing: border-box;
|
|
|
104
104
|
/* HTML ELEMENT */
|
|
105
105
|
/*------------------*/
|
|
106
106
|
//scrollbar
|
|
107
|
-
$scrollbar-size:
|
|
108
|
-
$scrollbar-track-color:
|
|
109
|
-
$scrollbar-thumb-color:
|
|
110
|
-
$scrollbar-thumb-hover-color:
|
|
111
|
-
$scrollbar-thumb-active-color:
|
|
107
|
+
$scrollbar-size: 6px;
|
|
108
|
+
$scrollbar-track-color: #e1e1e1;
|
|
109
|
+
$scrollbar-thumb-color: #2e2e2e;
|
|
110
|
+
$scrollbar-thumb-hover-color: #525252;
|
|
111
|
+
$scrollbar-thumb-active-color: #000000;
|
|
112
112
|
$scrollbar-radius: 8px;
|
|
113
113
|
|
|
114
114
|
/*------------------*/
|
package/src/action/index.d.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import VDesignerNode, { DesignerConnectionPointType, IVDesignerNodePorps } from "../VDesignerNode";
|
|
2
|
-
export interface IVDesignerConnectionProps extends IVDesignerNodePorps {
|
|
3
|
-
upstream: string;
|
|
4
|
-
downstream: string;
|
|
5
|
-
isAnimated?: boolean;
|
|
6
|
-
upstreamPointType?: DesignerConnectionPointType;
|
|
7
|
-
downstreamPointType?: DesignerConnectionPointType;
|
|
8
|
-
}
|
|
9
|
-
export default class VDesignerConnection extends VDesignerNode<IVDesignerConnectionProps> {
|
|
10
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import VDesignerNode, { DesignerConnectionPointType, IVDesignerNodePorps } from "../VDesignerNode";
|
|
2
|
-
export interface IVDesignerElementProps extends IVDesignerNodePorps {
|
|
3
|
-
connectionPointType?: DesignerConnectionPointType;
|
|
4
|
-
x: number;
|
|
5
|
-
y: number;
|
|
6
|
-
width: number;
|
|
7
|
-
content: JSX.Element | string;
|
|
8
|
-
isGlobalStyle?: boolean;
|
|
9
|
-
}
|
|
10
|
-
export default class VDesignerElement extends VDesignerNode<IVDesignerElementProps> {
|
|
11
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import VDesignerNode, { DesignerConnectionPointType, IVDesignerNodePorps } from "../VDesignerNode";
|
|
2
|
-
import { IVDesignerElementProps } from "../VDesignerElement";
|
|
3
|
-
export interface IVDesignerGroupProps extends IVDesignerNodePorps {
|
|
4
|
-
connectionPointType?: DesignerConnectionPointType;
|
|
5
|
-
x: number;
|
|
6
|
-
y: number;
|
|
7
|
-
children: (IVDesignerElementProps | IVDesignerGroupProps)[];
|
|
8
|
-
}
|
|
9
|
-
export default class VDesignerGroup extends VDesignerNode<IVDesignerGroupProps> {
|
|
10
|
-
}
|
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
import Konva from "konva";
|
|
2
|
-
import { IVDesignerGroupProps } from "../VDesignerGroup";
|
|
3
|
-
import { IVDesignerElementProps } from "../VDesignerElement";
|
|
4
|
-
import { IVDesignerConnectionProps } from "../VDesignerConnection";
|
|
5
|
-
export interface ClientReact {
|
|
6
|
-
width: number;
|
|
7
|
-
height: number;
|
|
8
|
-
x: number;
|
|
9
|
-
y: number;
|
|
10
|
-
}
|
|
11
|
-
export interface PositionDictionary {
|
|
12
|
-
[id: number]: {
|
|
13
|
-
x: number;
|
|
14
|
-
y: number;
|
|
15
|
-
};
|
|
16
|
-
}
|
|
17
|
-
export declare enum DesignerNodeType {
|
|
18
|
-
Element = "element",
|
|
19
|
-
Group = "group",
|
|
20
|
-
Connection = "connection"
|
|
21
|
-
}
|
|
22
|
-
export declare enum DesignerConnectionPointType {
|
|
23
|
-
None = 0,
|
|
24
|
-
Top = 2,
|
|
25
|
-
Right = 4,
|
|
26
|
-
Bottom = 8,
|
|
27
|
-
Left = 16,
|
|
28
|
-
LeftTop = 32,
|
|
29
|
-
RightTop = 64,
|
|
30
|
-
LeftBottom = 128,
|
|
31
|
-
RightBottom = 256,
|
|
32
|
-
Center = 512,
|
|
33
|
-
All = 1022
|
|
34
|
-
}
|
|
35
|
-
export declare const getConnectionPointType: (name: string) => DesignerConnectionPointType.Top | DesignerConnectionPointType.Right | DesignerConnectionPointType.Bottom | DesignerConnectionPointType.Left | DesignerConnectionPointType.LeftTop | DesignerConnectionPointType.RightTop | DesignerConnectionPointType.LeftBottom | DesignerConnectionPointType.RightBottom | DesignerConnectionPointType.Center;
|
|
36
|
-
export interface IVDesignerNodePorps {
|
|
37
|
-
id: string;
|
|
38
|
-
type: DesignerNodeType;
|
|
39
|
-
zIndex?: number;
|
|
40
|
-
onClick?: (sender: Konva.Group) => void;
|
|
41
|
-
}
|
|
42
|
-
export interface IVDesignerNode<P extends IVDesignerNodePorps> {
|
|
43
|
-
props: P;
|
|
44
|
-
draw: () => void;
|
|
45
|
-
}
|
|
46
|
-
export default class VDesignerNode<P extends IVDesignerGroupProps | IVDesignerElementProps | IVDesignerConnectionProps> implements IVDesignerNode<P> {
|
|
47
|
-
private rootContainer;
|
|
48
|
-
private layer;
|
|
49
|
-
props: P;
|
|
50
|
-
private startConnectPointCallback?;
|
|
51
|
-
private selectedColor;
|
|
52
|
-
private normalColor;
|
|
53
|
-
private connectionColor;
|
|
54
|
-
constructor(layer: Konva.Layer, props: P, selectedColor: string, normalColor: string, connectionColor: string, startConnectPointCallback?: (id: string, pointType: DesignerConnectionPointType) => void);
|
|
55
|
-
private buildElement;
|
|
56
|
-
private buildAnchor;
|
|
57
|
-
private buildControlAnchor;
|
|
58
|
-
private buildAnimated;
|
|
59
|
-
private getPosition;
|
|
60
|
-
private getAngle;
|
|
61
|
-
private getAutoPosition;
|
|
62
|
-
private buildConnection;
|
|
63
|
-
private bindPointEvent;
|
|
64
|
-
private buildConnectionPoints;
|
|
65
|
-
private getPointPositions;
|
|
66
|
-
private drawGroup;
|
|
67
|
-
draw(): void;
|
|
68
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { IBaseProps } from '../../Engine/Base';
|
|
2
|
-
import { IVDesignerGroupProps } from './VDesignerGroup';
|
|
3
|
-
import { IVDesignerElementProps } from './VDesignerElement';
|
|
4
|
-
import { Property } from 'csstype';
|
|
5
|
-
import { IVDesignerConnectionProps } from './VDesignerConnection';
|
|
6
|
-
import { IVTreeNode } from '../VTree';
|
|
7
|
-
type TLength = (string & {}) | 0;
|
|
8
|
-
export interface StructureNode extends IVTreeNode {
|
|
9
|
-
}
|
|
10
|
-
export interface IVDesignerProps extends IBaseProps {
|
|
11
|
-
downloadIcon?: JSX.Element;
|
|
12
|
-
clearIcon?: JSX.Element;
|
|
13
|
-
debugIcon?: JSX.Element;
|
|
14
|
-
leftIcon?: JSX.Element;
|
|
15
|
-
rightIcon?: JSX.Element;
|
|
16
|
-
closeIcon?: JSX.Element;
|
|
17
|
-
deleteIcon?: JSX.Element;
|
|
18
|
-
toolboxCaption: JSX.Element | string;
|
|
19
|
-
contextMenuCaption: JSX.Element | string;
|
|
20
|
-
deleteCaption: JSX.Element | string;
|
|
21
|
-
selectedColor: string;
|
|
22
|
-
normalColor: string;
|
|
23
|
-
connectionColor: string;
|
|
24
|
-
containerName?: string;
|
|
25
|
-
nodeItems?: (IVDesignerElementProps | IVDesignerGroupProps | IVDesignerConnectionProps)[];
|
|
26
|
-
isAutoLayout?: boolean;
|
|
27
|
-
autosizeHeight: Property.Height<TLength>;
|
|
28
|
-
toolbox?: JSX.Element;
|
|
29
|
-
}
|
|
30
|
-
export interface IDesignerStates {
|
|
31
|
-
isToolboxExtend: boolean;
|
|
32
|
-
debugNode?: StructureNode;
|
|
33
|
-
}
|
|
34
|
-
declare const VDesigner: (props: IVDesignerProps) => JSX.Element;
|
|
35
|
-
export default VDesigner;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { IBaseInputProps } from "../..";
|
|
2
|
-
export interface IVBase64FileProps extends IBaseInputProps {
|
|
3
|
-
fileIcon?: JSX.Element;
|
|
4
|
-
base64Image: string;
|
|
5
|
-
}
|
|
6
|
-
export interface IVBase64FileStates {
|
|
7
|
-
base64Image: string;
|
|
8
|
-
}
|
|
9
|
-
declare const VBase64File: (props: IVBase64FileProps) => JSX.Element;
|
|
10
|
-
export default VBase64File;
|
package/src/fewbox/index.d.ts
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
export interface Consts {
|
|
3
|
-
FontFamily: string;
|
|
4
|
-
}
|
|
5
|
-
export interface IFewBoxOptions {
|
|
6
|
-
getToken: () => string;
|
|
7
|
-
getAppSettings: () => any;
|
|
8
|
-
getLanguages: (lang?: string) => any;
|
|
9
|
-
getHeaders?: () => any;
|
|
10
|
-
getConsts?: () => Consts;
|
|
11
|
-
showErrorMessage: (message: string, error?: any) => void;
|
|
12
|
-
handleFetchException: (errors: any) => void;
|
|
13
|
-
isDebug: boolean;
|
|
14
|
-
}
|
|
15
|
-
export declare const boot: (options: IFewBoxOptions) => void;
|
|
16
|
-
export interface IBootProps {
|
|
17
|
-
options: IFewBoxOptions;
|
|
18
|
-
}
|
|
19
|
-
export declare class BootClass {
|
|
20
|
-
private static instance;
|
|
21
|
-
options: IFewBoxOptions;
|
|
22
|
-
private constructor();
|
|
23
|
-
static getInstance(): BootClass;
|
|
24
|
-
}
|
|
25
|
-
export declare const Boot: (props: IBootProps) => React.JSX.Element;
|
package/src/language/index.d.ts
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
export declare const getBrowserLangFull: () => string;
|
|
2
|
-
export declare const getBrowserLang: () => string;
|
|
3
|
-
export declare const getIntlMessage: (intlId: string, lang?: any, values?: any) => string;
|
|
4
|
-
export declare const language: (en: any, zh: any, lang?: string) => any;
|
|
5
|
-
export declare const languageFull: (langs: any, lang?: string) => any;
|
package/src/network/Delete.d.ts
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import NetworkObservableAjaxExternal from './NetworkObservableAjaxExternal';
|
|
2
|
-
import { LoadPayload } from '.';
|
|
3
|
-
declare class DeleteExternal<ARP> extends NetworkObservableAjaxExternal<ARP> {
|
|
4
|
-
constructor(path: string, external: string, action?: LoadPayload);
|
|
5
|
-
}
|
|
6
|
-
export default DeleteExternal;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import NetworkObservableAjaxExternal from './NetworkObservableAjaxExternal';
|
|
2
|
-
import { LoadPayload } from '.';
|
|
3
|
-
declare class DeleteFormExternal<ARP> extends NetworkObservableAjaxExternal<ARP> {
|
|
4
|
-
constructor(path: string, external: string, action?: LoadPayload);
|
|
5
|
-
}
|
|
6
|
-
export default DeleteFormExternal;
|
package/src/network/GQL.d.ts
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import NetworkObservableGQLExternal from './NetworkObservableGQLExternal';
|
|
2
|
-
import { LoadPayload } from './util';
|
|
3
|
-
declare class GQLExternal<ARP> extends NetworkObservableGQLExternal<ARP> {
|
|
4
|
-
constructor(graphql: string, field: string, external: string, action?: LoadPayload);
|
|
5
|
-
}
|
|
6
|
-
export default GQLExternal;
|
package/src/network/Get.d.ts
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import NetworkObservableAjaxExternal from './NetworkObservableAjaxExternal';
|
|
2
|
-
import { LoadPayload } from '.';
|
|
3
|
-
declare class GetExternal<ARP> extends NetworkObservableAjaxExternal<ARP> {
|
|
4
|
-
constructor(path: string, external: string, action?: LoadPayload);
|
|
5
|
-
}
|
|
6
|
-
export default GetExternal;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import NetworkObservableFetchExternal from './NetworkObservableFetchExternal';
|
|
2
|
-
import { LoadPayload } from '.';
|
|
3
|
-
declare class GetFetchExternal<FRP> extends NetworkObservableFetchExternal {
|
|
4
|
-
constructor(path: string, external: string, action?: LoadPayload);
|
|
5
|
-
}
|
|
6
|
-
export default GetFetchExternal;
|
package/src/network/GetForm.d.ts
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import NetworkObservableAjaxExternal from './NetworkObservableAjaxExternal';
|
|
2
|
-
import { LoadPayload } from '.';
|
|
3
|
-
declare class GetFormExternal<ARP> extends NetworkObservableAjaxExternal<ARP> {
|
|
4
|
-
constructor(path: string, external: string, action?: LoadPayload);
|
|
5
|
-
}
|
|
6
|
-
export default GetFormExternal;
|
package/src/network/GetSSE.d.ts
DELETED
package/src/network/Headers.d.ts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { NetworkObservableBase } from './NetworkObservableBase';
|
|
2
|
-
import { AjaxResponse } from 'rxjs/ajax';
|
|
3
|
-
import { LoadPayload } from './util';
|
|
4
|
-
declare class NetworkObservableAjax<ARP> extends NetworkObservableBase<AjaxResponse<ARP>> {
|
|
5
|
-
constructor(path: string, action?: LoadPayload);
|
|
6
|
-
protected GetUrl(): string;
|
|
7
|
-
}
|
|
8
|
-
export default NetworkObservableAjax;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { AjaxResponse } from 'rxjs/ajax';
|
|
2
|
-
import { LoadPayload } from '.';
|
|
3
|
-
import { NetworkObservableBase } from './NetworkObservableBase';
|
|
4
|
-
declare class NetworkObservableAjaxExternal<ARP> extends NetworkObservableBase<AjaxResponse<ARP>> {
|
|
5
|
-
protected External: string;
|
|
6
|
-
constructor(path: string, external: string, action?: LoadPayload);
|
|
7
|
-
protected GetUrl(): string;
|
|
8
|
-
}
|
|
9
|
-
export default NetworkObservableAjaxExternal;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { Observable } from 'rxjs';
|
|
2
|
-
import { LoadPayload } from '.';
|
|
3
|
-
export declare class NetworkObservableBase<RP> extends Observable<any> {
|
|
4
|
-
protected Path: string;
|
|
5
|
-
protected ParseData: (input: RP, key?: string) => any;
|
|
6
|
-
protected Action?: LoadPayload;
|
|
7
|
-
protected AppSettings: any;
|
|
8
|
-
constructor();
|
|
9
|
-
protected GetHeader(): any;
|
|
10
|
-
protected GetFormHeader(): any;
|
|
11
|
-
protected Pipe(networkObservable: Observable<RP>): Observable<any>;
|
|
12
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { NetworkObservableBase } from './NetworkObservableBase';
|
|
2
|
-
import { LoadPayload } from './util';
|
|
3
|
-
declare class NetworkObservableFetch extends NetworkObservableBase<Response> {
|
|
4
|
-
constructor(path: string, action?: LoadPayload);
|
|
5
|
-
protected GetUrl(): string;
|
|
6
|
-
}
|
|
7
|
-
export default NetworkObservableFetch;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { NetworkObservableBase } from './NetworkObservableBase';
|
|
2
|
-
import { LoadPayload } from './util';
|
|
3
|
-
declare class NetworkObservableFetchExternal extends NetworkObservableBase<Response> {
|
|
4
|
-
protected External: string;
|
|
5
|
-
constructor(path: string, external: string, action?: LoadPayload);
|
|
6
|
-
protected GetUrl(): string;
|
|
7
|
-
}
|
|
8
|
-
export default NetworkObservableFetchExternal;
|