@pinnacle0/web-ui 0.3.19 → 0.3.20
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/admin/AdminApp/Menu.d.ts +1 -1
- package/admin/AdminApp/Navigator.d.ts +1 -1
- package/core/Card.d.ts +1 -1
- package/core/Checkbox/index.d.ts +1 -1
- package/core/Collapse.d.ts +1 -1
- package/core/DarkOverlay/index.d.ts +1 -1
- package/core/FlatList/VirtualFlatList/Item.d.ts +0 -1
- package/core/FlatList/VirtualFlatList/index.d.ts +0 -1
- package/core/FlatList/index.d.ts +0 -1
- package/core/FlatList/shared/Footer/index.d.ts +0 -1
- package/core/FlatList/shared/Spinner/index.d.ts +0 -1
- package/core/FlatList/shared/Wrapper/Loading.d.ts +0 -1
- package/core/Grid.d.ts +0 -1
- package/core/Input/index.d.ts +1 -1
- package/core/Radio/index.d.ts +2 -2
- package/core/VirtualTable/TableRow.d.ts +0 -1
- package/core/VirtualTable/index.d.ts +0 -1
- package/package.json +7 -7
package/admin/AdminApp/Menu.d.ts
CHANGED
|
@@ -40,5 +40,5 @@ declare class RouterAwareMenu extends React.PureComponent<Props, State> {
|
|
|
40
40
|
renderMenuGroup: (groupItem: NavigationGroupItem<any, any>) => JSX.Element;
|
|
41
41
|
render(): JSX.Element;
|
|
42
42
|
}
|
|
43
|
-
export declare const Menu:
|
|
43
|
+
export declare const Menu: import("react").ComponentClass<Pick<Props, "siteName" | "navigationService" | "menuExpanded" | "badges">, any> & import("react-router").WithRouterStatics<typeof RouterAwareMenu>;
|
|
44
44
|
export {};
|
|
@@ -26,5 +26,5 @@ declare class RouterAwareNavigator extends React.PureComponent<Props, State> {
|
|
|
26
26
|
onTabChange: (url: string) => void;
|
|
27
27
|
render(): JSX.Element;
|
|
28
28
|
}
|
|
29
|
-
export declare const Navigator:
|
|
29
|
+
export declare const Navigator: import("react").ComponentClass<Pick<Props, "navigationService">, any> & import("react-router").WithRouterStatics<typeof RouterAwareNavigator>;
|
|
30
30
|
export {};
|
package/core/Card.d.ts
CHANGED
|
@@ -5,6 +5,6 @@ export interface Props extends CardProps {
|
|
|
5
5
|
}
|
|
6
6
|
export declare class Card extends React.PureComponent<Props> {
|
|
7
7
|
static displayName: string;
|
|
8
|
-
static Grid:
|
|
8
|
+
static Grid: import("react").FC<import("antd/lib/card").CardGridProps>;
|
|
9
9
|
render(): JSX.Element;
|
|
10
10
|
}
|
package/core/Checkbox/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export interface Props extends Omit<CheckboxProps, "value" | "onChange" | "check
|
|
|
8
8
|
}
|
|
9
9
|
export declare class Checkbox extends React.PureComponent<Props> {
|
|
10
10
|
static displayName: string;
|
|
11
|
-
static Group:
|
|
11
|
+
static Group: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<import("antd/lib/checkbox").CheckboxGroupProps & import("react").RefAttributes<HTMLDivElement>>>;
|
|
12
12
|
onChange: (e: CheckboxChangeEvent) => void;
|
|
13
13
|
render(): JSX.Element;
|
|
14
14
|
}
|
package/core/Collapse.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export interface Props extends CollapseProps {
|
|
|
6
6
|
}
|
|
7
7
|
export declare class Collapse extends React.PureComponent<Props> {
|
|
8
8
|
static displayName: string;
|
|
9
|
-
static Panel:
|
|
9
|
+
static Panel: import("react").FC<CollapsePanelProps>;
|
|
10
10
|
render(): JSX.Element;
|
|
11
11
|
}
|
|
12
12
|
export declare type PanelProps = CollapsePanelProps;
|
package/core/FlatList/index.d.ts
CHANGED
package/core/Grid.d.ts
CHANGED
package/core/Input/index.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ export interface Props extends Omit<InputProps, ExcludedAntInputKeys>, Controlle
|
|
|
22
22
|
}
|
|
23
23
|
export declare class Input extends React.PureComponent<Props> {
|
|
24
24
|
static displayName: string;
|
|
25
|
-
static Group:
|
|
25
|
+
static Group: import("react").FC<import("antd/lib/input").GroupProps>;
|
|
26
26
|
static Readonly: (props: InputReadonlyProps) => JSX.Element;
|
|
27
27
|
static Search: ({ onChange, ...rest }: InputSearchProps) => JSX.Element;
|
|
28
28
|
static TextArea: ({ onChange, ...rest }: InputTextAreaProps) => JSX.Element;
|
package/core/Radio/index.d.ts
CHANGED
|
@@ -6,8 +6,8 @@ export interface Props extends RadioProps {
|
|
|
6
6
|
}
|
|
7
7
|
export declare class Radio extends React.PureComponent<Props> {
|
|
8
8
|
static displayName: string;
|
|
9
|
-
static Button:
|
|
10
|
-
static Group:
|
|
9
|
+
static Button: import("react").ForwardRefExoticComponent<import("antd/lib/radio/radioButton").RadioButtonProps & import("react").RefAttributes<any>>;
|
|
10
|
+
static Group: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<import("antd/lib/radio").RadioGroupProps & import("react").RefAttributes<HTMLDivElement>>>;
|
|
11
11
|
render(): JSX.Element;
|
|
12
12
|
}
|
|
13
13
|
export type { RadioChangeEvent };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pinnacle0/web-ui",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.20",
|
|
4
4
|
"author": "Pinnacle",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"sideEffects": [
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@ant-design/icons": "4.7.0",
|
|
28
|
-
"antd": "4.20.
|
|
28
|
+
"antd": "4.20.5",
|
|
29
29
|
"braft-editor": "2.3.9",
|
|
30
30
|
"classnames": "2.3.1",
|
|
31
31
|
"moment": "2.29.3",
|
|
@@ -38,16 +38,16 @@
|
|
|
38
38
|
"react-router-dom": ">=5.2.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@babel/core": "7.17.
|
|
41
|
+
"@babel/core": "7.17.10",
|
|
42
42
|
"@babel/runtime": "7.17.9",
|
|
43
43
|
"@testing-library/dom": "8.13.0",
|
|
44
44
|
"@testing-library/jest-dom": "5.16.4",
|
|
45
|
-
"@testing-library/react": "13.
|
|
46
|
-
"@testing-library/user-event": "14.
|
|
45
|
+
"@testing-library/react": "13.2.0",
|
|
46
|
+
"@testing-library/user-event": "14.2.0",
|
|
47
47
|
"@types/draft-js": "0.11.9",
|
|
48
48
|
"@types/history": "4.7.11",
|
|
49
|
-
"@types/react": "18.0.
|
|
50
|
-
"@types/react-dom": "
|
|
49
|
+
"@types/react": "18.0.9",
|
|
50
|
+
"@types/react-dom": "18.0.4",
|
|
51
51
|
"@types/react-router-dom": "5.3.2",
|
|
52
52
|
"@types/react-virtualized-auto-sizer": "^1.0.1",
|
|
53
53
|
"@types/react-window": "1.8.5",
|