@teamix/pro 1.2.4 → 1.2.8
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/212.js +1 -1
- package/dist/pro.css +1 -1
- package/dist/pro.js +1182 -512
- package/dist/pro.min.css +1 -1
- package/dist/pro.min.js +1 -1
- package/es/actions/dialog-component.js +2 -1
- package/es/actions/dialog-form.js +2 -1
- package/es/actions/dialog.js +2 -1
- package/es/actions/index.js +3 -2
- package/es/actions/index.scss +3 -0
- package/es/actions/utils.d.ts +1 -0
- package/es/actions/utils.js +27 -0
- package/es/card/card-container.d.ts +18 -0
- package/es/card/card-container.js +24 -0
- package/es/card/divider.d.ts +6 -0
- package/es/card/divider.js +16 -0
- package/es/card/index.d.ts +68 -32
- package/es/card/index.js +194 -107
- package/es/card/index.scss +174 -9
- package/es/card/selectable.d.ts +13 -0
- package/es/card/selectable.js +45 -0
- package/es/card/utils.d.ts +9 -0
- package/es/card/utils.js +30 -0
- package/es/form/Components/ProField/index.js +2 -7
- package/es/form/Filter/index.js +5 -5
- package/es/form/ProForm/index.js +43 -17
- package/es/form/ProForm/index.scss +0 -1
- package/es/form/ProForm/useAutoSubmit.d.ts +1 -1
- package/es/form/ProForm/useAutoSubmit.js +3 -3
- package/es/form/ProForm/useInitialRequest.d.ts +1 -1
- package/es/form/ProForm/useInitialRequest.js +2 -2
- package/es/form/SchemaForm/initializeDataSource.js +1 -1
- package/es/form/SchemaForm/initializeFormButton.js +3 -2
- package/es/form/SchemaForm/initializeRequest.js +6 -3
- package/es/form/SchemaForm/initializeRules.js +1 -1
- package/es/form/SchemaForm/reactions.d.ts +5 -4
- package/es/form/SchemaForm/reactions.js +20 -11
- package/es/form/locales/validate.d.ts +159 -0
- package/es/form/locales/validate.js +158 -0
- package/es/form/typing.d.ts +4 -3
- package/es/index.d.ts +1 -1
- package/es/index.js +7 -4
- package/es/info/components/InfoGroup/index.js +5 -2
- package/es/info/components/InfoValueItem/index.js +4 -6
- package/es/info/components/baseInfo/index.js +4 -2
- package/es/info/components/tableInfo/index.js +10 -6
- package/es/info/index.js +25 -11
- package/es/info/typing.d.ts +6 -0
- package/es/nocode/configurators/Card.js +39 -12
- package/es/sidebar/components/sidebar-container/index.d.ts +5 -0
- package/es/sidebar/components/sidebar-container/index.js +77 -0
- package/es/sidebar/components/sidebar-container/index.scss +18 -0
- package/es/sidebar/components/tree/index.d.ts +4 -0
- package/es/sidebar/components/tree/index.js +95 -0
- package/es/sidebar/index.d.ts +5 -0
- package/es/sidebar/index.js +66 -0
- package/es/sidebar/index.scss +3 -0
- package/es/sidebar/typing.d.ts +51 -0
- package/es/sidebar/typing.js +1 -0
- package/es/table/components/Layout/index.js +1 -1
- package/es/table/components/ToolBar/FilterColumnIcon.js +2 -24
- package/es/table/components/ToolBar/index.scss +0 -3
- package/es/table/index.js +26 -9
- package/es/table/index.scss +1 -0
- package/es/table/typing.d.ts +6 -4
- package/lib/actions/dialog-component.js +3 -1
- package/lib/actions/dialog-form.js +3 -1
- package/lib/actions/dialog.js +3 -1
- package/lib/actions/index.js +3 -2
- package/lib/actions/index.scss +3 -0
- package/lib/actions/utils.d.ts +1 -0
- package/lib/actions/utils.js +33 -0
- package/lib/card/card-container.d.ts +18 -0
- package/lib/card/card-container.js +37 -0
- package/lib/card/divider.d.ts +6 -0
- package/lib/card/divider.js +26 -0
- package/lib/card/index.d.ts +68 -32
- package/lib/card/index.js +215 -110
- package/lib/card/index.scss +174 -9
- package/lib/card/selectable.d.ts +13 -0
- package/lib/card/selectable.js +60 -0
- package/lib/card/utils.d.ts +9 -0
- package/lib/card/utils.js +41 -0
- package/lib/form/Components/ProField/index.js +1 -6
- package/lib/form/Filter/index.js +5 -6
- package/lib/form/ProForm/index.js +41 -14
- package/lib/form/ProForm/index.scss +0 -1
- package/lib/form/ProForm/useAutoSubmit.d.ts +1 -1
- package/lib/form/ProForm/useAutoSubmit.js +3 -3
- package/lib/form/ProForm/useInitialRequest.d.ts +1 -1
- package/lib/form/ProForm/useInitialRequest.js +2 -2
- package/lib/form/SchemaForm/initializeDataSource.js +1 -1
- package/lib/form/SchemaForm/initializeFormButton.js +5 -2
- package/lib/form/SchemaForm/initializeRequest.js +5 -2
- package/lib/form/SchemaForm/initializeRules.js +1 -1
- package/lib/form/SchemaForm/reactions.d.ts +5 -4
- package/lib/form/SchemaForm/reactions.js +23 -12
- package/lib/form/locales/validate.d.ts +159 -0
- package/lib/form/locales/validate.js +165 -0
- package/lib/form/typing.d.ts +4 -3
- package/lib/index.d.ts +1 -1
- package/lib/index.js +3 -1
- package/lib/info/components/InfoGroup/index.js +5 -2
- package/lib/info/components/InfoValueItem/index.js +4 -6
- package/lib/info/components/baseInfo/index.js +4 -2
- package/lib/info/components/tableInfo/index.js +10 -6
- package/lib/info/index.js +24 -10
- package/lib/info/typing.d.ts +6 -0
- package/lib/nocode/configurators/Card.js +39 -12
- package/lib/sidebar/components/sidebar-container/index.d.ts +5 -0
- package/lib/sidebar/components/sidebar-container/index.js +93 -0
- package/lib/sidebar/components/sidebar-container/index.scss +18 -0
- package/lib/sidebar/components/tree/index.d.ts +4 -0
- package/lib/sidebar/components/tree/index.js +112 -0
- package/lib/sidebar/index.d.ts +5 -0
- package/lib/sidebar/index.js +87 -0
- package/lib/sidebar/index.scss +3 -0
- package/lib/sidebar/typing.d.ts +51 -0
- package/lib/sidebar/typing.js +5 -0
- package/lib/table/components/Layout/index.js +1 -1
- package/lib/table/components/ToolBar/FilterColumnIcon.js +2 -24
- package/lib/table/components/ToolBar/index.scss +0 -3
- package/lib/table/index.js +27 -9
- package/lib/table/index.scss +1 -0
- package/lib/table/typing.d.ts +6 -4
- package/package.json +4 -4
@@ -12,13 +12,14 @@ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) r
|
|
12
12
|
|
13
13
|
import React from 'react';
|
14
14
|
import useDialogAction from './dialog';
|
15
|
+
import { addContext } from './utils';
|
15
16
|
export function useDialogComponentAction(action, context) {
|
16
17
|
var schema = action.schema,
|
17
18
|
Component = action.component,
|
18
19
|
others = _objectWithoutProperties(action, _excluded);
|
19
20
|
|
20
21
|
return useDialogAction(Object.assign({
|
21
|
-
content: /*#__PURE__*/React.createElement(Component, _objectSpread({}, schema)),
|
22
|
+
content: /*#__PURE__*/React.createElement(Component, _objectSpread({}, addContext(schema, context))),
|
22
23
|
closeable: true
|
23
24
|
}, others), context);
|
24
25
|
}
|
@@ -30,6 +30,7 @@ import ProForm, { createForm } from '../form';
|
|
30
30
|
import { getTargetValue } from '@teamix/utils';
|
31
31
|
import { doRequest } from './request';
|
32
32
|
import useDialogAction from './dialog';
|
33
|
+
import { addContext } from './utils';
|
33
34
|
|
34
35
|
function getDefaultFormPropsByDialogSize(size) {
|
35
36
|
if (size === 'small') {
|
@@ -119,7 +120,7 @@ var DialogForm = function DialogForm(props) {
|
|
119
120
|
}, /*#__PURE__*/React.createElement(ProForm, _objectSpread(_objectSpread({
|
120
121
|
form: form,
|
121
122
|
schema: getTargetValue(formSchema, context)
|
122
|
-
}, getDefaultFormPropsByDialogSize(size)), getTargetValue(others, context))));
|
123
|
+
}, getDefaultFormPropsByDialogSize(size)), addContext(getTargetValue(others, context), context))));
|
123
124
|
};
|
124
125
|
|
125
126
|
export function useDialogFormAction(action, context) {
|
package/es/actions/dialog.js
CHANGED
@@ -37,6 +37,7 @@ import ProForm, { createForm } from '../form';
|
|
37
37
|
import { renderProMessage } from '../utils/message';
|
38
38
|
import { eventHandler } from './base';
|
39
39
|
import { doRequest } from './request';
|
40
|
+
import { addContext } from './utils';
|
40
41
|
|
41
42
|
function addContextForReactNode(content, context) {
|
42
43
|
if (typeof content === 'function' && context) {
|
@@ -223,7 +224,7 @@ export function useDialogAction(action, context) {
|
|
223
224
|
});
|
224
225
|
var dialogContent = Component ? /*#__PURE__*/React.createElement(Component, _objectSpread({
|
225
226
|
key: uuid()
|
226
|
-
}, componentProps)) : addContextForReactNode(content, dialogContext);
|
227
|
+
}, addContext(componentProps, dialogContext))) : addContextForReactNode(content, dialogContext);
|
227
228
|
|
228
229
|
var quickShowProps = _objectSpread(_objectSpread({
|
229
230
|
// @ts-ignore
|
package/es/actions/index.js
CHANGED
@@ -222,13 +222,14 @@ export var ProActionMenuButton = function ProActionMenuButton(props) {
|
|
222
222
|
others = _objectWithoutProperties(props, _excluded4);
|
223
223
|
|
224
224
|
return /*#__PURE__*/React.createElement(MenuButton, _objectSpread({
|
225
|
-
popupTriggerType: "
|
225
|
+
popupTriggerType: "click",
|
226
|
+
autoWidth: false,
|
226
227
|
menuProps: {
|
227
228
|
mode: 'popup',
|
228
229
|
triggerType: 'hover'
|
229
230
|
},
|
230
231
|
popupProps: {
|
231
|
-
|
232
|
+
v2: true
|
232
233
|
},
|
233
234
|
type: type,
|
234
235
|
label: buttonContent(label || children, icon, iconSize, context)
|
package/es/actions/index.scss
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
export declare function addContext(props?: any, context?: any): any;
|
@@ -0,0 +1,27 @@
|
|
1
|
+
var _excluded = ["context"];
|
2
|
+
|
3
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
4
|
+
|
5
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
6
|
+
|
7
|
+
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
8
|
+
|
9
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
10
|
+
|
11
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
12
|
+
|
13
|
+
export function addContext(props, context) {
|
14
|
+
if (!props) {
|
15
|
+
return {
|
16
|
+
context: context
|
17
|
+
};
|
18
|
+
}
|
19
|
+
|
20
|
+
var propsContext = props.context,
|
21
|
+
others = _objectWithoutProperties(props, _excluded);
|
22
|
+
|
23
|
+
var mergedContext = Object.assign({}, propsContext, context);
|
24
|
+
return _objectSpread({
|
25
|
+
context: mergedContext
|
26
|
+
}, others);
|
27
|
+
}
|
@@ -0,0 +1,18 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { ProCardProps } from './index';
|
3
|
+
/**
|
4
|
+
* @deprecated 建议使用 ProCardProps 代替
|
5
|
+
*/
|
6
|
+
export declare type ProCardContainerProps = ProCardProps;
|
7
|
+
/**
|
8
|
+
* @deprecated 建议使用 ProCard 代替
|
9
|
+
*/
|
10
|
+
export declare const ProCardContainer: React.FC<ProCardContainerProps>;
|
11
|
+
/**
|
12
|
+
* @deprecated 建议使用 ProCardContainer 代替
|
13
|
+
*/
|
14
|
+
export declare const CardContainer: React.FC<ProCardProps>;
|
15
|
+
/**
|
16
|
+
* @deprecated 建议使用 ProCardContainerProps 代替
|
17
|
+
*/
|
18
|
+
export declare type CardContainerProps = ProCardContainerProps;
|
@@ -0,0 +1,24 @@
|
|
1
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
2
|
+
|
3
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
4
|
+
|
5
|
+
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
6
|
+
|
7
|
+
import React from 'react';
|
8
|
+
import { ProCard } from './index';
|
9
|
+
/**
|
10
|
+
* @deprecated 建议使用 ProCard 代替
|
11
|
+
*/
|
12
|
+
|
13
|
+
export var ProCardContainer = function ProCardContainer(props) {
|
14
|
+
return /*#__PURE__*/React.createElement(ProCard, _objectSpread({}, props));
|
15
|
+
};
|
16
|
+
ProCardContainer.defaultProps = {
|
17
|
+
compacted: true,
|
18
|
+
direction: 'column'
|
19
|
+
};
|
20
|
+
/**
|
21
|
+
* @deprecated 建议使用 ProCardContainer 代替
|
22
|
+
*/
|
23
|
+
|
24
|
+
export var CardContainer = ProCardContainer;
|
@@ -0,0 +1,16 @@
|
|
1
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
2
|
+
|
3
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
4
|
+
|
5
|
+
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
6
|
+
|
7
|
+
import React from 'react';
|
8
|
+
|
9
|
+
var ProCardDivider = function ProCardDivider(props) {
|
10
|
+
return /*#__PURE__*/React.createElement("div", _objectSpread({
|
11
|
+
className: "teamix-pro-card-divider"
|
12
|
+
}, props));
|
13
|
+
};
|
14
|
+
|
15
|
+
ProCardDivider.isProCardDivider = true;
|
16
|
+
export default ProCardDivider;
|
package/es/card/index.d.ts
CHANGED
@@ -1,59 +1,95 @@
|
|
1
1
|
import React from 'react';
|
2
|
-
import {
|
2
|
+
import { ProActionGroupProps } from '../actions';
|
3
3
|
import './index.scss';
|
4
|
-
export
|
5
|
-
|
6
|
-
spacing?: [number, number] | number;
|
7
|
-
wrap?: boolean;
|
8
|
-
} & React.HTMLAttributes<HTMLElement>;
|
9
|
-
export declare const ProCardContainer: React.FC<ProCardContainerProps>;
|
10
|
-
export interface ProCardProps {
|
4
|
+
export * from './card-container';
|
5
|
+
export interface ProCardProps extends Omit<React.HTMLAttributes<HTMLElement>, 'title'> {
|
11
6
|
/** 内容部分 */
|
12
7
|
children?: React.ReactNode;
|
13
8
|
/**卡片标题 */
|
14
9
|
title?: React.ReactNode;
|
15
10
|
/**卡片副标题 */
|
16
11
|
subTitle?: React.ReactNode;
|
17
|
-
|
18
|
-
|
19
|
-
|
12
|
+
/** 标题右侧图标 hover 提示信息 */
|
13
|
+
tooltip?: React.ReactNode;
|
14
|
+
/** 标题右侧图标 */
|
15
|
+
tooltipIcon?: React.ReactNode;
|
16
|
+
/** 标题右侧描述 */
|
17
|
+
description?: React.ReactNode;
|
18
|
+
/** 额外信息区域,位于卡片右上角,可以配置一些常用轻量操作 */
|
19
|
+
extra?: React.ReactNode | ProActionGroupProps;
|
20
|
+
/** 卡片操作区域,位于卡片最下方,可以配置一些常用轻量操作 */
|
21
|
+
actions?: React.ReactNode | ProActionGroupProps;
|
22
|
+
/** 卡片背景图 */
|
20
23
|
image?: string;
|
21
|
-
|
24
|
+
/** 卡片标题下方是否有分割线 */
|
22
25
|
divider?: boolean;
|
23
|
-
|
26
|
+
/**
|
27
|
+
* @deprecated 建议使用 borderColor = 'none' 代替
|
28
|
+
*/
|
24
29
|
bordered?: boolean;
|
25
|
-
|
30
|
+
/** 卡片在 hover 时拥有阴影效果 */
|
26
31
|
hoveredShadow?: boolean;
|
27
|
-
|
32
|
+
/** 卡片是否为紧凑模式,紧凑模式下卡片没有内边距和边框 */
|
28
33
|
compacted?: boolean;
|
29
|
-
|
34
|
+
/** 卡片内容是否居中展示 */
|
30
35
|
centered?: boolean;
|
31
|
-
|
36
|
+
/** 加载中状态 */
|
32
37
|
loading?: boolean;
|
33
|
-
|
38
|
+
/** 边框颜色 */
|
39
|
+
borderColor?: 'blue' | 'green' | 'red' | 'orange' | 'yellow' | 'grey' | 'transparent' | 'none';
|
40
|
+
/** 背景色 */
|
34
41
|
backgroundColor?: 'blue' | 'green' | 'red' | 'orange' | 'yellow' | 'grey' | 'transparent';
|
35
|
-
|
42
|
+
/** 内容区栅格排列 flex 方向,仅仅在卡片嵌套模式下生效 */
|
43
|
+
direction?: 'row' | 'column' | 'row-reverse' | 'column-reverse';
|
44
|
+
/** 内容区栅格的间距,仅仅在卡片嵌套模式下生效 */
|
45
|
+
spacing?: [number, number] | number;
|
46
|
+
/** 内容区栅格超出部分是否换行展示,仅仅在卡片嵌套模式下生效 */
|
47
|
+
wrap?: boolean;
|
48
|
+
/** 卡片嵌套使用的模式下,子卡片分隔 */
|
49
|
+
split?: 'horizontal' | 'vertical';
|
50
|
+
/** 卡片嵌套使用的模式下,卡片占父卡片内容区域的栅格数量 */
|
36
51
|
col?: number | string;
|
37
|
-
|
52
|
+
/** 卡片是否可折叠 */
|
53
|
+
collapsible?: boolean;
|
54
|
+
/** 默认是否折叠,用于非受控模式 */
|
55
|
+
defaultCollapsed?: boolean;
|
56
|
+
/** 是否折叠,受控模式 */
|
57
|
+
collapsed?: boolean;
|
58
|
+
/** 折叠状态改变的回调函数 */
|
59
|
+
onCollapse?: (collapsed: boolean) => void;
|
60
|
+
/** 卡片 class */
|
38
61
|
className?: string;
|
39
|
-
|
62
|
+
/** 卡片样式 */
|
40
63
|
style?: React.CSSProperties;
|
41
|
-
|
64
|
+
/** 卡片内容 class */
|
42
65
|
contentClassName?: string;
|
43
|
-
|
66
|
+
/** 卡片内容样式 */
|
44
67
|
contentStyle?: React.CSSProperties;
|
68
|
+
/** 上下文 */
|
69
|
+
context?: any;
|
45
70
|
}
|
46
|
-
declare const ProCard:
|
71
|
+
export declare const ProCard: {
|
72
|
+
(props: ProCardProps): JSX.Element;
|
73
|
+
defaultProps: {
|
74
|
+
bordered: boolean;
|
75
|
+
spacing: number;
|
76
|
+
direction: string;
|
77
|
+
};
|
78
|
+
Divider: {
|
79
|
+
(props: React.HTMLAttributes<HTMLElement>): JSX.Element;
|
80
|
+
isProCardDivider: boolean;
|
81
|
+
};
|
82
|
+
Selectable: {
|
83
|
+
(props: import("./selectable").ProCardSelectableProps): JSX.Element;
|
84
|
+
defaultProps: {
|
85
|
+
hoveredShadow: boolean;
|
86
|
+
};
|
87
|
+
isProCard: boolean;
|
88
|
+
};
|
89
|
+
isProCard: boolean;
|
90
|
+
};
|
47
91
|
export default ProCard;
|
48
|
-
/**
|
49
|
-
* @deprecated 建议使用 ProCardContainer 代替
|
50
|
-
*/
|
51
|
-
export declare const CardContainer: React.FC<ProCardContainerProps>;
|
52
92
|
/**
|
53
93
|
* @deprecated 建议使用 ProCardProps 代替
|
54
94
|
*/
|
55
95
|
export declare type CardProps = ProCardProps;
|
56
|
-
/**
|
57
|
-
* @deprecated 建议使用 ProCardContainerProps 代替
|
58
|
-
*/
|
59
|
-
export declare type CardContainerProps = ProCardContainerProps;
|