dcp-design-react 1.8.8 → 1.8.10
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/lib/antd/index.d.ts +2 -0
- package/lib/guide-tracker/src/guideTracker.d.ts +3 -1
- package/lib/index.esm.js +1 -1
- package/lib/index.full.js +1 -1
- package/lib/index.js +1 -1
- package/lib/search-tree/src/search-tree.d.ts +2 -2
- package/lib/style/compact.css +2 -2
- package/lib/style/compact.min.css +1 -1
- package/lib/style/index.css +2 -2
- package/lib/style/index.min.css +1 -1
- package/lib/table/src/table/props.d.ts +1 -0
- package/lib/table/src/table/types.d.ts +1 -0
- package/package.json +2 -2
|
@@ -2,7 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import type { CSSProperties, ComponentSize } from '../../_utils/types';
|
|
3
3
|
import type { IFetch, IRecord, ICheckStrategy } from '../../table/src/table/types';
|
|
4
4
|
import type { TreeProps } from '../../antd';
|
|
5
|
-
type IProps = TreeProps & {
|
|
5
|
+
type IProps = TreeProps<IRecord> & {
|
|
6
6
|
size?: ComponentSize;
|
|
7
7
|
filterable?: boolean;
|
|
8
8
|
multiple?: boolean;
|
|
@@ -33,7 +33,7 @@ type SearchTreeRef = {
|
|
|
33
33
|
UPDATE_RECORD: (key: React.Key, record: IRecord) => void;
|
|
34
34
|
};
|
|
35
35
|
export type SearchTreeProps = IProps;
|
|
36
|
-
declare const SearchTree: React.ForwardRefExoticComponent<TreeProps<
|
|
36
|
+
declare const SearchTree: React.ForwardRefExoticComponent<TreeProps<IRecord<any>> & {
|
|
37
37
|
size?: ComponentSize | undefined;
|
|
38
38
|
filterable?: boolean | undefined;
|
|
39
39
|
multiple?: boolean | undefined;
|
package/lib/style/compact.css
CHANGED
|
@@ -5788,7 +5788,7 @@ a.ant-btn-sm {
|
|
|
5788
5788
|
margin-left: 0;
|
|
5789
5789
|
}
|
|
5790
5790
|
.ant-picker-status-error.ant-picker,
|
|
5791
|
-
.ant-picker-status-error.ant-picker:not(
|
|
5791
|
+
.ant-picker-status-error.ant-picker:not(.ant-picker-disabled):hover {
|
|
5792
5792
|
background-color: #fff;
|
|
5793
5793
|
border-color: #ff4d4f;
|
|
5794
5794
|
}
|
|
@@ -5803,7 +5803,7 @@ a.ant-btn-sm {
|
|
|
5803
5803
|
background: #ff7875;
|
|
5804
5804
|
}
|
|
5805
5805
|
.ant-picker-status-warning.ant-picker,
|
|
5806
|
-
.ant-picker-status-warning.ant-picker:not(
|
|
5806
|
+
.ant-picker-status-warning.ant-picker:not(.ant-picker-disabled):hover {
|
|
5807
5807
|
background-color: #fff;
|
|
5808
5808
|
border-color: #faad14;
|
|
5809
5809
|
}
|