linkmore-design 1.0.72 → 1.0.73
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/Approval/index.d.ts +1 -0
- package/dist/Approval/type.d.ts +1 -1
- package/dist/CardTable/utils.d.ts +1 -1
- package/dist/Row/index.d.ts +1 -1
- package/dist/index.d.ts +21 -2
- package/dist/index.umd.js +945 -73
- package/dist/index.umd.min.js +6 -6
- package/es/Approval/index.d.ts +1 -0
- package/es/Row/index.d.ts +1 -1
- package/es/index.d.ts +21 -2
- package/es/index.js +11 -2
- package/lib/Approval/index.d.ts +1 -0
- package/lib/Row/index.d.ts +1 -1
- package/lib/index.d.ts +21 -2
- package/lib/index.js +75 -3
- package/package.json +1 -1
package/dist/Approval/index.d.ts
CHANGED
package/dist/Approval/type.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ export declare namespace ApprovalType {
|
|
|
18
18
|
function isCC(type: ApprovalType): boolean;
|
|
19
19
|
function isOnlyComment(type: ApprovalType): boolean;
|
|
20
20
|
function isApproval(type: ApprovalType): boolean;
|
|
21
|
-
function toText(type: ApprovalType, status: StatusType): "" | "
|
|
21
|
+
function toText(type: ApprovalType, status: StatusType): "审核中" | "未通过" | "已审核" | "仅评论" | "";
|
|
22
22
|
}
|
|
23
23
|
export interface IApprovalItemProps {
|
|
24
24
|
avator?: string;
|
package/dist/Row/index.d.ts
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -34,7 +34,6 @@ export { default as Radio } from './Radio';
|
|
|
34
34
|
export { default as Select } from './Select';
|
|
35
35
|
export { default as Space } from './Space';
|
|
36
36
|
export { default as TableRender } from './TableRender';
|
|
37
|
-
export { default as Tree } from './Tree';
|
|
38
37
|
export { default as UploadOss } from './UploadOss';
|
|
39
38
|
export { default as VirtualList } from './VirtualList';
|
|
40
39
|
export { default as Tag } from './Tag';
|
|
@@ -66,7 +65,7 @@ export { default as Grid } from './Grid';
|
|
|
66
65
|
export { default as Row } from './Row';
|
|
67
66
|
export type { RowProps } from './Row';
|
|
68
67
|
export { default as Col } from './Col';
|
|
69
|
-
export type { ColProps } from './Col';
|
|
68
|
+
export type { ColProps, ColSize } from './Col';
|
|
70
69
|
export { default as Layout } from './Layout';
|
|
71
70
|
export type { LayoutProps, SiderProps } from './Layout';
|
|
72
71
|
export { default as Steps } from './Steps';
|
|
@@ -86,3 +85,23 @@ export { default as Carousel } from './Carousel';
|
|
|
86
85
|
export type { CarouselProps } from './Carousel';
|
|
87
86
|
export { default as Alert } from './Alert';
|
|
88
87
|
export type { AlertProps } from './Alert';
|
|
88
|
+
export { default as Segmented } from './Segmented';
|
|
89
|
+
export type { SegmentedProps } from './Segmented';
|
|
90
|
+
export { default as Approval } from './Approval';
|
|
91
|
+
export type { ApprovalType, StatusType, IApprovalItemProps, IApprovalProps } from './Approval';
|
|
92
|
+
export { default as TimePicker } from './TimePicker';
|
|
93
|
+
export type { TimeRangePickerProps, TimePickerProps } from './TimePicker';
|
|
94
|
+
export { default as Collapse } from './Collapse';
|
|
95
|
+
export type { CollapseProps } from './Collapse';
|
|
96
|
+
export { default as Comment } from './Comment';
|
|
97
|
+
export type { CommentProps } from './Comment';
|
|
98
|
+
export { default as Statistic } from './Statistic';
|
|
99
|
+
export type { StatisticProps } from './Statistic';
|
|
100
|
+
export { default as Timeline } from './Timeline';
|
|
101
|
+
export type { TimelineProps } from './Timeline';
|
|
102
|
+
export { default as Tree } from './Tree';
|
|
103
|
+
export type { ITreeProps } from './Tree';
|
|
104
|
+
export { default as Popconfirm } from './Popconfirm';
|
|
105
|
+
export type { PopconfirmProps } from './Popconfirm';
|
|
106
|
+
export { default as Progress } from './Progress';
|
|
107
|
+
export type { ProgressProps } from './Progress';
|