@teamix/pro 1.5.16 → 1.5.18-beta
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/fonts/txddinmedium.woff +0 -0
- package/dist/pro.all.min.css +1 -0
- package/dist/pro.css +1 -0
- package/dist/pro.js +114772 -0
- package/dist/pro.min.css +1 -0
- package/dist/pro.min.js +2 -0
- package/dist/pro.min.js.LICENSE.txt +47 -0
- package/dist/pro.xconsole.min.css +1 -0
- package/es/actions/dialog-component.js +1 -4
- package/es/actions/dialog-form.js +4 -3
- package/es/actions/dialog.js +2 -1
- package/es/actions/index.js +35 -22
- package/es/actions/quick.js +1 -4
- package/es/card/card-container.js +12 -5
- package/es/card/divider.js +2 -4
- package/es/card/index.js +18 -7
- package/es/card/selectable.js +2 -4
- package/es/card/tab.js +2 -4
- package/es/form/Components/Editable/index.js +1 -1
- package/es/form/Components/FormGroup/index.js +4 -3
- package/es/form/Components/LightFilter/index.js +11 -2
- package/es/form/Components/ProField/index.js +2 -4
- package/es/form/Components/Text/index.js +2 -4
- package/es/form/Filter/AdvancedFilter.js +16 -14
- package/es/form/Filter/LightFilter.js +13 -9
- package/es/form/Filter/SimpleFilter.js +8 -5
- package/es/form/Filter/index.js +24 -7
- package/es/form/Filter/index.scss +1 -0
- package/es/form/Filter/index2.js +22 -17
- package/es/form/Filter/index2.scss +1 -0
- package/es/form/Filter/useBindUrl.js +3 -0
- package/es/form/Filter/useSpecialProps.js +1 -0
- package/es/form/ProForm/index.js +5 -2
- package/es/form/ProForm/useAutoLayout.js +4 -0
- package/es/form/ProForm/useFormDisplayValues.js +1 -0
- package/es/form/SchemaForm/adapterComponent.js +1 -0
- package/es/form/SchemaForm/adapterDecorator.js +1 -0
- package/es/form/SchemaForm/adapterType.js +1 -0
- package/es/form/SchemaForm/index.js +13 -0
- package/es/form/SchemaForm/initializeFormButton.js +2 -0
- package/es/form/SchemaForm/initializeReactions.js +1 -0
- package/es/form/SchemaForm/initializeSelectTable.js +1 -0
- package/es/form/SchemaForm/reactions.js +5 -0
- package/es/form/index.js +4 -0
- package/es/form/utils.js +12 -0
- package/es/form/warning.js +2 -0
- package/es/index.js +3 -1
- package/es/info/components/InfoGroup/index.js +2 -4
- package/es/info/components/InfoValueItem/index.js +32 -20
- package/es/info/components/ProInfoItem/index.js +1 -0
- package/es/info/components/baseInfo/index.js +3 -0
- package/es/info/components/tableInfo/index.js +6 -4
- package/es/info/index.js +11 -5
- package/es/info/utils/index.js +3 -0
- package/es/layout/index.js +2 -0
- package/es/nocode/index.js +2 -0
- package/es/nocode/pages/index.js +3 -0
- package/es/nocode/pages/playground.js +3 -5
- package/es/nocode/pages/renderer.js +4 -6
- package/es/nocode/playground.js +2 -4
- package/es/page-header/index.js +12 -7
- package/es/sidebar/components/sidebar-container/index.js +10 -7
- package/es/sidebar/components/tree/index.js +22 -4
- package/es/sidebar/components/tree-node/components/HoverTooltip/index.js +3 -4
- package/es/sidebar/components/tree-node/components/IconAction/index.js +4 -2
- package/es/sidebar/components/tree-node/components/IconSwitch/index.js +1 -0
- package/es/sidebar/components/tree-node/index.js +29 -16
- package/es/sidebar/index.js +15 -4
- package/es/sidebar/utils/index.js +19 -11
- package/es/table/components/CardView/index.js +29 -13
- package/es/table/components/Filter/index.js +11 -0
- package/es/table/components/Layout/index.js +13 -8
- package/es/table/components/LoadMore/index.js +3 -0
- package/es/table/components/Pagination/index.js +12 -10
- package/es/table/components/QuickAction/index.js +3 -2
- package/es/table/components/ToolBar/CardSwitch.js +2 -0
- package/es/table/components/ToolBar/DensityIcon.js +7 -2
- package/es/table/components/ToolBar/FilterColumnIcon.js +9 -0
- package/es/table/components/ToolBar/FullScreenIcon.js +1 -0
- package/es/table/components/ToolBar/Fullscreen.js +3 -0
- package/es/table/components/ToolBar/RefreshIcon.js +11 -0
- package/es/table/components/ToolBar/index.js +13 -10
- package/es/table/index.js +138 -51
- package/es/table/index.scss +26 -0
- package/es/table/utils/columnRender.js +78 -27
- package/es/table/utils/genAutoWidthColumns.js +340 -0
- package/es/table/utils/index.js +6 -0
- package/es/table/utils/pureColumnRender.js +9 -1
- package/es/templates/List/index.js +4 -6
- package/es/templates/index.js +2 -1
- package/es/timeline/ProTimeLineItem/index.js +8 -4
- package/es/timeline/index.js +5 -5
- package/es/utils/message.js +3 -5
- package/es/xconsole.scss +23 -0
- package/lib/form/Filter/index.scss +1 -0
- package/lib/form/Filter/index2.scss +1 -0
- package/lib/index.d.ts +1 -1
- package/lib/index.js +1 -1
- package/lib/table/components/CardView/index.js +5 -10
- package/lib/table/components/ToolBar/index.js +10 -7
- package/lib/table/index.js +72 -25
- package/lib/table/index.scss +26 -0
- package/lib/table/typing.d.ts +11 -1
- package/lib/table/utils/columnRender.d.ts +1 -0
- package/lib/table/utils/columnRender.js +51 -4
- package/lib/table/utils/genAutoWidthColumns.d.ts +35 -0
- package/lib/table/utils/genAutoWidthColumns.js +345 -0
- package/lib/xconsole.scss +23 -0
- package/package.json +1 -1
- package/es/actions/base.d.ts +0 -24
- package/es/actions/confirm.d.ts +0 -7
- package/es/actions/danger-confirm.d.ts +0 -7
- package/es/actions/danger-pop-confirm.d.ts +0 -5
- package/es/actions/dialog-component.d.ts +0 -10
- package/es/actions/dialog-form.d.ts +0 -29
- package/es/actions/dialog-info.d.ts +0 -9
- package/es/actions/dialog-table.d.ts +0 -9
- package/es/actions/dialog.d.ts +0 -40
- package/es/actions/drawer-form.d.ts +0 -6
- package/es/actions/drawer-info.d.ts +0 -6
- package/es/actions/drawer-table.d.ts +0 -6
- package/es/actions/drawer.d.ts +0 -6
- package/es/actions/error.d.ts +0 -7
- package/es/actions/index.d.ts +0 -114
- package/es/actions/link.d.ts +0 -8
- package/es/actions/notice.d.ts +0 -7
- package/es/actions/pop-confirm.d.ts +0 -9
- package/es/actions/quick.d.ts +0 -2
- package/es/actions/request.d.ts +0 -9
- package/es/actions/utils.d.ts +0 -1
- package/es/card/card-container.d.ts +0 -18
- package/es/card/divider.d.ts +0 -6
- package/es/card/index.d.ts +0 -109
- package/es/card/selectable.d.ts +0 -13
- package/es/card/tab.d.ts +0 -6
- package/es/card/utils.d.ts +0 -9
- package/es/field/index.d.ts +0 -3
- package/es/form/Components/Editable/index.d.ts +0 -20
- package/es/form/Components/FormGroup/index.d.ts +0 -14
- package/es/form/Components/LightFilter/componentMap.d.ts +0 -3
- package/es/form/Components/LightFilter/index.d.ts +0 -17
- package/es/form/Components/ProField/index.d.ts +0 -2
- package/es/form/Components/ProField/mapDateFormat.d.ts +0 -3
- package/es/form/Components/Text/index.d.ts +0 -8
- package/es/form/Filter/AdvancedFilter.d.ts +0 -7
- package/es/form/Filter/Layout.d.ts +0 -5
- package/es/form/Filter/LightFilter.d.ts +0 -7
- package/es/form/Filter/SimpleFilter.d.ts +0 -7
- package/es/form/Filter/index.d.ts +0 -9
- package/es/form/Filter/index2.d.ts +0 -13
- package/es/form/Filter/useBindUrl.d.ts +0 -2
- package/es/form/Filter/useSpecialProps.d.ts +0 -6
- package/es/form/ProForm/addCascadeEffect.d.ts +0 -2
- package/es/form/ProForm/customComponent.d.ts +0 -3
- package/es/form/ProForm/index.d.ts +0 -5
- package/es/form/ProForm/useAutoLayout.d.ts +0 -9
- package/es/form/ProForm/useAutoSubmit.d.ts +0 -6
- package/es/form/ProForm/useFieldRequest.d.ts +0 -5
- package/es/form/ProForm/useFormDisplayValues.d.ts +0 -4
- package/es/form/ProForm/useInitialRequest.d.ts +0 -6
- package/es/form/SchemaForm/adapterComponent.d.ts +0 -5
- package/es/form/SchemaForm/adapterDecorator.d.ts +0 -6
- package/es/form/SchemaForm/adapterType.d.ts +0 -5
- package/es/form/SchemaForm/index.d.ts +0 -4
- package/es/form/SchemaForm/initializeArrayCards.d.ts +0 -3
- package/es/form/SchemaForm/initializeArrayCollapse.d.ts +0 -3
- package/es/form/SchemaForm/initializeArrayItems.d.ts +0 -3
- package/es/form/SchemaForm/initializeArrayTable.d.ts +0 -3
- package/es/form/SchemaForm/initializeDataSource.d.ts +0 -15
- package/es/form/SchemaForm/initializeFormButton.d.ts +0 -3
- package/es/form/SchemaForm/initializeFormCollapse.d.ts +0 -3
- package/es/form/SchemaForm/initializeFormGroup.d.ts +0 -3
- package/es/form/SchemaForm/initializeFormStep.d.ts +0 -5
- package/es/form/SchemaForm/initializeFormTab.d.ts +0 -3
- package/es/form/SchemaForm/initializeReactions.d.ts +0 -2
- package/es/form/SchemaForm/initializeRequest.d.ts +0 -11
- package/es/form/SchemaForm/initializeRules.d.ts +0 -11
- package/es/form/SchemaForm/initializeSelectTable.d.ts +0 -3
- package/es/form/SchemaForm/reactions.d.ts +0 -6
- package/es/form/docs/ActionResponse.d.ts +0 -8
- package/es/form/fieldTypeMap.d.ts +0 -7
- package/es/form/index.d.ts +0 -125
- package/es/form/locales/validate.d.ts +0 -159
- package/es/form/schemaNameMap.d.ts +0 -5
- package/es/form/typing.d.ts +0 -194
- package/es/form/utils.d.ts +0 -55
- package/es/form/warning.d.ts +0 -3
- package/es/hooks/index.d.ts +0 -2
- package/es/index-without-icon.d.ts +0 -32
- package/es/index.d.ts +0 -32
- package/es/info/components/InfoGroup/index.d.ts +0 -5
- package/es/info/components/InfoValueItem/index.d.ts +0 -5
- package/es/info/components/ProInfoItem/index.d.ts +0 -5
- package/es/info/components/baseInfo/index.d.ts +0 -8
- package/es/info/components/headerInfo/index.d.ts +0 -8
- package/es/info/components/tableInfo/index.d.ts +0 -7
- package/es/info/index.d.ts +0 -10
- package/es/info/typing.d.ts +0 -220
- package/es/info/utils/index.d.ts +0 -20
- package/es/info/utils/layout.d.ts +0 -2
- package/es/info/utils/utils.d.ts +0 -1
- package/es/layout/index.d.ts +0 -2
- package/es/nocode/configurators/Card.d.ts +0 -3
- package/es/nocode/configurators/PageHeader.d.ts +0 -3
- package/es/nocode/configurators/ProTable.d.ts +0 -3
- package/es/nocode/configurators/common.d.ts +0 -280
- package/es/nocode/configurators/index.d.ts +0 -15
- package/es/nocode/configurators/map.d.ts +0 -2
- package/es/nocode/index.d.ts +0 -8
- package/es/nocode/pages/editor.d.ts +0 -12
- package/es/nocode/pages/index.d.ts +0 -14
- package/es/nocode/pages/playground.d.ts +0 -11
- package/es/nocode/pages/renderer.d.ts +0 -10
- package/es/nocode/playground.d.ts +0 -14
- package/es/page-container/index.d.ts +0 -3
- package/es/page-header/index.d.ts +0 -74
- package/es/sidebar/components/sidebar-container/index.d.ts +0 -5
- package/es/sidebar/components/tree/index.d.ts +0 -6
- package/es/sidebar/components/tree-node/components/HoverTooltip/index.d.ts +0 -15
- package/es/sidebar/components/tree-node/components/IconAction/index.d.ts +0 -12
- package/es/sidebar/components/tree-node/components/IconSwitch/index.d.ts +0 -23
- package/es/sidebar/components/tree-node/index.d.ts +0 -7
- package/es/sidebar/index.d.ts +0 -9
- package/es/sidebar/typing.d.ts +0 -141
- package/es/sidebar/utils/action-ref.d.ts +0 -3
- package/es/sidebar/utils/index.d.ts +0 -364
- package/es/skeleton/index.d.ts +0 -3
- package/es/table/components/CardView/index.d.ts +0 -5
- package/es/table/components/EmptyContent/index.d.ts +0 -2
- package/es/table/components/Filter/index.d.ts +0 -12
- package/es/table/components/Layout/index.d.ts +0 -5
- package/es/table/components/LoadMore/index.d.ts +0 -20
- package/es/table/components/Pagination/index.d.ts +0 -7
- package/es/table/components/QuickAction/index.d.ts +0 -11
- package/es/table/components/ToolBar/CardSwitch.d.ts +0 -8
- package/es/table/components/ToolBar/DensityIcon.d.ts +0 -4
- package/es/table/components/ToolBar/FilterColumnIcon.d.ts +0 -4
- package/es/table/components/ToolBar/FullScreenIcon.d.ts +0 -4
- package/es/table/components/ToolBar/Fullscreen.d.ts +0 -10
- package/es/table/components/ToolBar/RefreshIcon.d.ts +0 -4
- package/es/table/components/ToolBar/index.d.ts +0 -5
- package/es/table/index.d.ts +0 -5
- package/es/table/typing.d.ts +0 -418
- package/es/table/utils/columnRender.d.ts +0 -13
- package/es/table/utils/genProColumnToColumn.d.ts +0 -13
- package/es/table/utils/getTableProps.d.ts +0 -2
- package/es/table/utils/getTableSortIcons.d.ts +0 -3
- package/es/table/utils/index.d.ts +0 -19
- package/es/table/utils/pureColumnRender.d.ts +0 -9
- package/es/table/utils/pureGenProColumnToColumn.d.ts +0 -7
- package/es/table/utils/useTableSelection.d.ts +0 -3
- package/es/table/utils/util.d.ts +0 -5
- package/es/templates/Detail/index.d.ts +0 -2
- package/es/templates/Form/index.d.ts +0 -2
- package/es/templates/List/index.d.ts +0 -9
- package/es/templates/index.d.ts +0 -3
- package/es/timeline/ProTimeLineItem/index.d.ts +0 -5
- package/es/timeline/index.d.ts +0 -10
- package/es/timeline/typing.d.ts +0 -107
- package/es/utils/index.d.ts +0 -3
- package/es/utils/message.d.ts +0 -3
package/es/index.d.ts
DELETED
@@ -1,32 +0,0 @@
|
|
1
|
-
import ProAction from './actions';
|
2
|
-
import ProCard from './card';
|
3
|
-
import ProField from './field';
|
4
|
-
import ProForm from './form';
|
5
|
-
import hooks from './hooks';
|
6
|
-
import ProInfo from './info';
|
7
|
-
import ProPageContainer from './page-container';
|
8
|
-
import ProPageHeader from './page-header';
|
9
|
-
import ProTable from './table';
|
10
|
-
import ProSkeleton from './skeleton';
|
11
|
-
import utils from './utils';
|
12
|
-
import ProSidebar from './sidebar';
|
13
|
-
import { ProTimeline } from './timeline';
|
14
|
-
import * as nocode from './nocode';
|
15
|
-
import * as templates from './templates';
|
16
|
-
import TeamixIcon from '@teamix/icon';
|
17
|
-
import './global.scss';
|
18
|
-
export * from './actions';
|
19
|
-
export * from './card';
|
20
|
-
export * from './field';
|
21
|
-
export * from './form';
|
22
|
-
export * from './info';
|
23
|
-
export * from './nocode';
|
24
|
-
export * from './page-container';
|
25
|
-
export * from './page-header';
|
26
|
-
export * from './skeleton';
|
27
|
-
export * from './table';
|
28
|
-
export * from './sidebar';
|
29
|
-
export * from './utils';
|
30
|
-
export * from './timeline';
|
31
|
-
declare const version = "1.5.16";
|
32
|
-
export { version, ProAction, ProCard, ProField, ProForm, ProInfo, ProPageContainer, ProPageHeader, ProSkeleton, ProTable, ProSidebar, ProTimeline, TeamixIcon, hooks, nocode, templates, utils, };
|
@@ -1,8 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import { ProInfoBaseProps, ProInfoTransparentBase, ProInfoTransRequestResult } from '../../typing';
|
3
|
-
import './index.scss';
|
4
|
-
declare type ProBaseInfoProps = ProInfoBaseProps & ProInfoTransRequestResult & ProInfoTransparentBase & {
|
5
|
-
size?: any;
|
6
|
-
};
|
7
|
-
declare const ProBaseInfo: React.FC<ProBaseInfoProps>;
|
8
|
-
export default ProBaseInfo;
|
@@ -1,8 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import { IProHeaderInfo, ProInfoTransparentBase, ProInfoTransRequestResult } from '../../typing';
|
3
|
-
import './index.scss';
|
4
|
-
declare type ProHeaderInfoProps = IProHeaderInfo & ProInfoTransRequestResult & ProInfoTransparentBase & {
|
5
|
-
size?: any;
|
6
|
-
};
|
7
|
-
declare const ProHeaderInfo: React.FC<ProHeaderInfoProps>;
|
8
|
-
export default ProHeaderInfo;
|
@@ -1,7 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import './index.scss';
|
3
|
-
import { IProTableInfo, ProInfoTransparentBase, ProInfoTransRequestResult } from '../../typing';
|
4
|
-
import './index.scss';
|
5
|
-
declare type ProTableInfoProps = IProTableInfo & ProInfoTransRequestResult & ProInfoTransparentBase;
|
6
|
-
declare const ProTableInfo: React.FC<ProTableInfoProps>;
|
7
|
-
export default ProTableInfo;
|
package/es/info/index.d.ts
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import './index.scss';
|
3
|
-
import { ProInfoProps } from './typing';
|
4
|
-
export * from './typing';
|
5
|
-
declare const ProInfo: {
|
6
|
-
(props: ProInfoProps): JSX.Element;
|
7
|
-
Group: React.FC<import("./typing").ProInfoGroupProps>;
|
8
|
-
ProInfoGroup: React.FC<import("./typing").ProInfoGroupProps>;
|
9
|
-
};
|
10
|
-
export default ProInfo;
|
package/es/info/typing.d.ts
DELETED
@@ -1,220 +0,0 @@
|
|
1
|
-
import { ProFieldRenderProps, ProFieldDataSourceItem, ProFieldProps, ProFieldType } from '../field';
|
2
|
-
import { ActionGroupProps, ProActionButtonProps } from '../actions';
|
3
|
-
import { Method } from 'axios';
|
4
|
-
import React from 'react';
|
5
|
-
import { CommonRequestConfig } from '@teamix/utils';
|
6
|
-
import { ProCardProps } from '../card';
|
7
|
-
import { ProFormProps } from '../form';
|
8
|
-
/** 列record函数 */
|
9
|
-
declare type ProInfoCellFunProp = (value: any, record: any) => any;
|
10
|
-
declare type FieldRenderProps = keyof ProFieldRenderProps;
|
11
|
-
declare type ProInfoCellRender = {
|
12
|
-
[key in FieldRenderProps]?: ProFieldRenderProps[key] | ProInfoCellFunProp;
|
13
|
-
} | ((...other: any) => React.ReactNode);
|
14
|
-
export declare type PropInfoRequestProps = {
|
15
|
-
/** 请求地址 */
|
16
|
-
url?: string;
|
17
|
-
/** 请求方法 */
|
18
|
-
method?: Method;
|
19
|
-
/** 请求参数 */
|
20
|
-
params?: object;
|
21
|
-
/** 对返回值的 data 进行映射处理 */
|
22
|
-
formatResult?: {
|
23
|
-
[key: string]: any;
|
24
|
-
} | ((res: any) => {
|
25
|
-
[key: string]: any;
|
26
|
-
});
|
27
|
-
/** 请求成功后经过 formatResult 转换后的回调 */
|
28
|
-
onFormatResult?: (data: any[]) => void;
|
29
|
-
/** 内部请求每次成功后的回调 */
|
30
|
-
onSuccess?: (res: any) => void;
|
31
|
-
/** 内部请求失败时的回调 */
|
32
|
-
onError?: (error: Error) => void;
|
33
|
-
};
|
34
|
-
export interface ProInfoRequestProps extends Partial<CommonRequestConfig> {
|
35
|
-
}
|
36
|
-
/** ProInfoBaseProps info 基础定义 */
|
37
|
-
export declare type ProInfoBaseProps = {
|
38
|
-
/** ProColums 定义,取代 Table 的 columns */
|
39
|
-
columns: ProInfoColumnsProps[];
|
40
|
-
/** ProInfo action 的引用,便于手动触发一些方法 */
|
41
|
-
actionRef?: React.MutableRefObject<ProInfoActionType | undefined>;
|
42
|
-
/** 标题区 推荐将header中的内容平铺到ProCard中。即将不支持此写法 */
|
43
|
-
header?: ProInfoHeaderProps;
|
44
|
-
/** info 数据源 */
|
45
|
-
dataSource?: {
|
46
|
-
[key: string]: any;
|
47
|
-
};
|
48
|
-
/** 布局值 */
|
49
|
-
layout?: ProBaseInfoLayoutProps;
|
50
|
-
/** 加载动画 */
|
51
|
-
loading?: boolean;
|
52
|
-
/** 上下文传递 */
|
53
|
-
context?: object;
|
54
|
-
/** 是否在获取宽度之后才渲染Info 是否忽略首次响应式计算 **/
|
55
|
-
disabledAutoSize?: boolean;
|
56
|
-
} & ProInfoHeaderProps & ProInfoRequestProps;
|
57
|
-
/** ProInfoColumnsProps info 单元格 定义 */
|
58
|
-
export declare type ProInfoItemProps = ProInfoColumnsProps;
|
59
|
-
export interface ProInfoColumnsProps {
|
60
|
-
/** 标题 */
|
61
|
-
title: string;
|
62
|
-
/** 列表项展示的Tooltip */
|
63
|
-
tooltip?: string;
|
64
|
-
/**
|
65
|
-
* title 之后展示一个 icon 设置,可传 TeamixIcon 对应的 type,也可以是自定义 Icon
|
66
|
-
*/
|
67
|
-
tooltipIcon?: React.ReactNode;
|
68
|
-
/** 对应 ProField 里面的 type */
|
69
|
-
valueType?: ProFieldType;
|
70
|
-
/** 渲染单元格内容字段 */
|
71
|
-
render?: ProInfoCellRender;
|
72
|
-
/** 枚举值 */
|
73
|
-
dataSource?: ProFieldDataSourceItem[] | ProInfoCellFunProp;
|
74
|
-
/** 表头的筛选菜单项,当值为 true 时,自动使用 dataSource 生成 */
|
75
|
-
filters?: boolean;
|
76
|
-
/** 操作组配置 */
|
77
|
-
actionSchema?: ActionGroupProps;
|
78
|
-
/** 指定列对应的字段,支持`a.b`形式的快速取值 和 数组取值 */
|
79
|
-
dataIndex?: string | string[];
|
80
|
-
/** 合并行 */
|
81
|
-
colSpan?: number;
|
82
|
-
/** 是否可被编辑 */
|
83
|
-
isEdit?: boolean | ProInfoCellFunProp;
|
84
|
-
/** 点击确定的回调函数 */
|
85
|
-
editOnOk?: (form: any, e: React.MouseEvent) => void | Promise<any>;
|
86
|
-
/** 点击取消的回调函数 */
|
87
|
-
editOnCancel?: (form: any, e: React.MouseEvent) => void | Promise<any>;
|
88
|
-
/** 请求地址 */
|
89
|
-
editUrl?: string;
|
90
|
-
/** 请求方法 */
|
91
|
-
editMethod?: Method;
|
92
|
-
/** 如需自定义调用参数格式,则可以设定此值在请求前对 params 进行自定义,如果返回false则可以阻止请求 */
|
93
|
-
editFormatParams?: (params: any, record: any) => typeof params;
|
94
|
-
/** edit ProForm 配置 */
|
95
|
-
editProFormProps?: ProFormProps | ProInfoCellFunProp;
|
96
|
-
/** 编辑请求成功提示文案 */
|
97
|
-
successMessage?: string;
|
98
|
-
/** 列 actions 配置 */
|
99
|
-
actions?: ProActionButtonProps[];
|
100
|
-
/** 追加在列后 */
|
101
|
-
extra?: React.ReactNode;
|
102
|
-
/** 其他 ProField 配置 */
|
103
|
-
props?: any;
|
104
|
-
/** 对齐方式 **/
|
105
|
-
alignItems?: 'center' | 'flex-start' | 'flex-end' | string;
|
106
|
-
/** 是否隐藏 **/
|
107
|
-
hidden?: boolean | ProInfoCellFunProp | string;
|
108
|
-
}
|
109
|
-
export declare type ProInfoActionType = {
|
110
|
-
/** 刷新Info */
|
111
|
-
refresh?: (params?: any) => void;
|
112
|
-
};
|
113
|
-
/** FormItem 定义 */
|
114
|
-
export declare type IProProInfoItem = {
|
115
|
-
/** label */
|
116
|
-
label: React.ReactNode;
|
117
|
-
/** 值 */
|
118
|
-
value: React.ReactNode;
|
119
|
-
/** 基础详情布局值 */
|
120
|
-
baseInfoLayout?: ProBaseInfoLayoutProps;
|
121
|
-
/** 头部详情布局值 */
|
122
|
-
headerInfoLayout?: ProHeaderInfoLayoutProps;
|
123
|
-
/** loading 状态 */
|
124
|
-
loading?: boolean;
|
125
|
-
} & Pick<ProInfoColumnsProps, 'tooltip' | 'tooltipIcon' | 'render' | 'valueType' | 'alignItems'>;
|
126
|
-
/** header info 定义 */
|
127
|
-
export declare type IProHeaderInfo = {
|
128
|
-
/** 布局值 */
|
129
|
-
layout?: ProHeaderInfoLayoutProps;
|
130
|
-
} & Omit<ProInfoBaseProps, 'layout'>;
|
131
|
-
/** table info 定义 */
|
132
|
-
export declare type IProTableInfo = {
|
133
|
-
/** 布局值 */
|
134
|
-
layout?: TableInfoLayoutProps;
|
135
|
-
} & Omit<ProInfoBaseProps, 'layout'>;
|
136
|
-
declare type ProInfoBasePropsOmitLayout = Omit<ProInfoBaseProps, 'layout'>;
|
137
|
-
/** ProInfo */
|
138
|
-
export declare type ProInfoProps = {
|
139
|
-
/** 布局值 */
|
140
|
-
layout?: TableInfoLayoutProps | ProHeaderInfoLayoutProps | ProBaseInfoLayoutProps;
|
141
|
-
/** 类型 */
|
142
|
-
type?: 'base' | 'header' | 'table';
|
143
|
-
} & ProInfoBasePropsOmitLayout & ProInfoTransparentBase;
|
144
|
-
export declare type IProHeaderInfoItem = {};
|
145
|
-
export declare type BaseInfoLayoutProps = ProBaseInfoLayoutProps;
|
146
|
-
export declare type ProBaseInfoLayoutProps = {
|
147
|
-
span?: number;
|
148
|
-
labelCol?: {
|
149
|
-
span: number;
|
150
|
-
};
|
151
|
-
wrapperCol?: {
|
152
|
-
span: number;
|
153
|
-
};
|
154
|
-
};
|
155
|
-
export declare type headerInfoLayout = ProHeaderInfoLayoutProps;
|
156
|
-
export declare type ProHeaderInfoLayoutProps = {
|
157
|
-
/** label 间隔 */
|
158
|
-
labelGutter?: number | string;
|
159
|
-
/** 列数 宽度 */
|
160
|
-
colNum?: number;
|
161
|
-
};
|
162
|
-
/** infoGroup */
|
163
|
-
export declare type ProInfoGroupProps = {
|
164
|
-
children?: React.ReactNode[] | React.ReactNode | ProInfoBaseProps[];
|
165
|
-
/** 是否有有分割线 */
|
166
|
-
divider?: boolean;
|
167
|
-
/** 是否是紧凑模式 */
|
168
|
-
compacted?: ProCardProps['compacted'];
|
169
|
-
/** 背景颜色 */
|
170
|
-
backgroundColor?: ProCardProps['backgroundColor'];
|
171
|
-
/** 上下文 */
|
172
|
-
context?: object;
|
173
|
-
} & ProInfoRequestProps & React.HTMLAttributes<HTMLElement>;
|
174
|
-
export declare type TableInfoLayoutProps = {} & ProHeaderInfoLayoutProps;
|
175
|
-
export declare type InfoValueItemProps = {
|
176
|
-
infoItem: ProInfoColumnsProps;
|
177
|
-
record: any;
|
178
|
-
actionRef?: React.MutableRefObject<ProInfoActionType | undefined>;
|
179
|
-
render?: ProInfoCellRender;
|
180
|
-
dataSource?: ProFieldDataSourceItem[] | ProInfoCellFunProp;
|
181
|
-
context?: object;
|
182
|
-
props?: any;
|
183
|
-
} & Omit<ProFieldProps, 'render' | 'dataSource'>;
|
184
|
-
export declare type ProInfoHeaderProps = Omit<ProCardProps, 'loading'>;
|
185
|
-
/** ProInfoGroupContextProps */
|
186
|
-
export declare type ProInfoGroupContextProps = {
|
187
|
-
/** 因为其他数据都为异步。visible 只用作标识 */
|
188
|
-
visible?: boolean;
|
189
|
-
layout?: ProInfoBaseProps['layout'];
|
190
|
-
size?: {
|
191
|
-
width?: number;
|
192
|
-
height?: number;
|
193
|
-
};
|
194
|
-
context?: object;
|
195
|
-
} & ProInfoRequestProps;
|
196
|
-
/** 基本透传类型 */
|
197
|
-
export declare type ProInfoTransparentBase = {
|
198
|
-
/**
|
199
|
-
* 键盘按下
|
200
|
-
*/
|
201
|
-
onKeyDown?: (e: React.KeyboardEvent<HTMLInputElement>) => void;
|
202
|
-
/**
|
203
|
-
* 焦点获得
|
204
|
-
*/
|
205
|
-
onFocus?: (e: React.FocusEvent<HTMLInputElement>) => void;
|
206
|
-
/**
|
207
|
-
* 焦点失去
|
208
|
-
*/
|
209
|
-
onBlur?: (e: React.FocusEvent<HTMLInputElement>) => void;
|
210
|
-
/** class name */
|
211
|
-
className?: string;
|
212
|
-
/** style */
|
213
|
-
style?: React.CSSProperties;
|
214
|
-
};
|
215
|
-
export declare type ProInfoTransRequestResult = {
|
216
|
-
loading: boolean;
|
217
|
-
result: any;
|
218
|
-
refresh?: () => void;
|
219
|
-
};
|
220
|
-
export {};
|
package/es/info/utils/index.d.ts
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import { ProInfoActionType, ProInfoGroupContextProps, ProInfoColumnsProps } from '../typing';
|
3
|
-
export declare function useActionType<T>(ref: React.MutableRefObject<ProInfoActionType | undefined>, action: ProInfoActionType): void;
|
4
|
-
/** ProInfoGroupContext */
|
5
|
-
export declare const ProInfoGroupContext: React.Context<ProInfoGroupContextProps>;
|
6
|
-
/**
|
7
|
-
* 获取 dataIndex 值
|
8
|
-
* @param dataIndex
|
9
|
-
* @param dataSource
|
10
|
-
* @returns
|
11
|
-
*/
|
12
|
-
export declare function getDataIndexValue(dataIndex: ProInfoColumnsProps['dataIndex'], dataSource: object): any;
|
13
|
-
/**
|
14
|
-
* 判断是否隐藏
|
15
|
-
* @param hidden
|
16
|
-
* @param value
|
17
|
-
* @param record
|
18
|
-
* @param context
|
19
|
-
*/
|
20
|
-
export declare function isHidden(hidden: ProInfoColumnsProps['hidden'], value: any, record: any, context: any): any;
|
package/es/info/utils/utils.d.ts
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
export declare function getLayout(width: number): "xs" | "xl" | "l" | "s" | "m";
|
package/es/layout/index.d.ts
DELETED
@@ -1,280 +0,0 @@
|
|
1
|
-
export declare function array(title: string, name: string, fields: any[], main?: string, arrayTitle?: string): {
|
2
|
-
title: string;
|
3
|
-
children: {
|
4
|
-
name: string;
|
5
|
-
title: string | undefined;
|
6
|
-
component: string;
|
7
|
-
items: {
|
8
|
-
type: string;
|
9
|
-
decorator: string;
|
10
|
-
children: ({
|
11
|
-
component: string;
|
12
|
-
children: {
|
13
|
-
component: string;
|
14
|
-
}[];
|
15
|
-
name?: undefined;
|
16
|
-
type?: undefined;
|
17
|
-
title?: undefined;
|
18
|
-
reactions?: undefined;
|
19
|
-
} | {
|
20
|
-
name: string;
|
21
|
-
component: string;
|
22
|
-
type: string;
|
23
|
-
title: string;
|
24
|
-
reactions: {
|
25
|
-
dependencies: string[];
|
26
|
-
fulfill: {
|
27
|
-
schema: {
|
28
|
-
title: string;
|
29
|
-
};
|
30
|
-
};
|
31
|
-
};
|
32
|
-
children: {
|
33
|
-
name: string;
|
34
|
-
component: string;
|
35
|
-
props: {
|
36
|
-
layout: string;
|
37
|
-
labelAlign: string;
|
38
|
-
colon: boolean;
|
39
|
-
labelCol: number;
|
40
|
-
wrapperCol: number;
|
41
|
-
};
|
42
|
-
children: any[];
|
43
|
-
}[];
|
44
|
-
} | {
|
45
|
-
component: string;
|
46
|
-
children?: undefined;
|
47
|
-
name?: undefined;
|
48
|
-
type?: undefined;
|
49
|
-
title?: undefined;
|
50
|
-
reactions?: undefined;
|
51
|
-
})[];
|
52
|
-
};
|
53
|
-
children: {
|
54
|
-
component: string;
|
55
|
-
props: {
|
56
|
-
title: string;
|
57
|
-
};
|
58
|
-
}[];
|
59
|
-
}[];
|
60
|
-
};
|
61
|
-
export declare function actions(props?: {
|
62
|
-
title?: string;
|
63
|
-
name?: string;
|
64
|
-
arrayTitle?: string;
|
65
|
-
}): {
|
66
|
-
title: string;
|
67
|
-
children: {
|
68
|
-
name: string;
|
69
|
-
title: string | undefined;
|
70
|
-
component: string;
|
71
|
-
items: {
|
72
|
-
type: string;
|
73
|
-
decorator: string;
|
74
|
-
children: ({
|
75
|
-
component: string;
|
76
|
-
children: {
|
77
|
-
component: string;
|
78
|
-
}[];
|
79
|
-
name?: undefined;
|
80
|
-
type?: undefined;
|
81
|
-
title?: undefined;
|
82
|
-
reactions?: undefined;
|
83
|
-
} | {
|
84
|
-
name: string;
|
85
|
-
component: string;
|
86
|
-
type: string;
|
87
|
-
title: string;
|
88
|
-
reactions: {
|
89
|
-
dependencies: string[];
|
90
|
-
fulfill: {
|
91
|
-
schema: {
|
92
|
-
title: string;
|
93
|
-
};
|
94
|
-
};
|
95
|
-
};
|
96
|
-
children: {
|
97
|
-
name: string;
|
98
|
-
component: string;
|
99
|
-
props: {
|
100
|
-
layout: string;
|
101
|
-
labelAlign: string;
|
102
|
-
colon: boolean;
|
103
|
-
labelCol: number;
|
104
|
-
wrapperCol: number;
|
105
|
-
};
|
106
|
-
children: any[];
|
107
|
-
}[];
|
108
|
-
} | {
|
109
|
-
component: string;
|
110
|
-
children?: undefined;
|
111
|
-
name?: undefined;
|
112
|
-
type?: undefined;
|
113
|
-
title?: undefined;
|
114
|
-
reactions?: undefined;
|
115
|
-
})[];
|
116
|
-
};
|
117
|
-
children: {
|
118
|
-
component: string;
|
119
|
-
props: {
|
120
|
-
title: string;
|
121
|
-
};
|
122
|
-
}[];
|
123
|
-
}[];
|
124
|
-
};
|
125
|
-
export declare function actionGroup(title: string, name: string): {
|
126
|
-
title: string;
|
127
|
-
name: string;
|
128
|
-
type: string;
|
129
|
-
children: {
|
130
|
-
component: string;
|
131
|
-
children: ({
|
132
|
-
title: string;
|
133
|
-
children: {
|
134
|
-
name: string;
|
135
|
-
title: string | undefined;
|
136
|
-
component: string;
|
137
|
-
items: {
|
138
|
-
type: string;
|
139
|
-
decorator: string;
|
140
|
-
children: ({
|
141
|
-
component: string;
|
142
|
-
children: {
|
143
|
-
component: string;
|
144
|
-
}[];
|
145
|
-
name?: undefined;
|
146
|
-
type?: undefined;
|
147
|
-
title?: undefined;
|
148
|
-
reactions?: undefined;
|
149
|
-
} | {
|
150
|
-
name: string;
|
151
|
-
component: string;
|
152
|
-
type: string;
|
153
|
-
title: string;
|
154
|
-
reactions: {
|
155
|
-
dependencies: string[];
|
156
|
-
fulfill: {
|
157
|
-
schema: {
|
158
|
-
title: string;
|
159
|
-
};
|
160
|
-
};
|
161
|
-
};
|
162
|
-
children: {
|
163
|
-
name: string;
|
164
|
-
component: string;
|
165
|
-
props: {
|
166
|
-
layout: string;
|
167
|
-
labelAlign: string;
|
168
|
-
colon: boolean;
|
169
|
-
labelCol: number;
|
170
|
-
wrapperCol: number;
|
171
|
-
};
|
172
|
-
children: any[];
|
173
|
-
}[];
|
174
|
-
} | {
|
175
|
-
component: string;
|
176
|
-
children?: undefined;
|
177
|
-
name?: undefined;
|
178
|
-
type?: undefined;
|
179
|
-
title?: undefined;
|
180
|
-
reactions?: undefined;
|
181
|
-
})[];
|
182
|
-
};
|
183
|
-
children: {
|
184
|
-
component: string;
|
185
|
-
props: {
|
186
|
-
title: string;
|
187
|
-
};
|
188
|
-
}[];
|
189
|
-
}[];
|
190
|
-
} | {
|
191
|
-
title: string;
|
192
|
-
children: ({
|
193
|
-
name: string;
|
194
|
-
title: string;
|
195
|
-
component: string;
|
196
|
-
dataSource: {
|
197
|
-
label: string;
|
198
|
-
value: string;
|
199
|
-
}[];
|
200
|
-
default: string;
|
201
|
-
} | {
|
202
|
-
name: string;
|
203
|
-
title: string;
|
204
|
-
component: string;
|
205
|
-
default: number;
|
206
|
-
dataSource?: undefined;
|
207
|
-
} | {
|
208
|
-
name: string;
|
209
|
-
title: string;
|
210
|
-
component: string;
|
211
|
-
default: string;
|
212
|
-
dataSource?: undefined;
|
213
|
-
})[];
|
214
|
-
})[];
|
215
|
-
}[];
|
216
|
-
};
|
217
|
-
export declare function filter(name: string): {
|
218
|
-
name: string;
|
219
|
-
type: string;
|
220
|
-
children: {
|
221
|
-
title: string;
|
222
|
-
children: {
|
223
|
-
name: string;
|
224
|
-
title: string | undefined;
|
225
|
-
component: string;
|
226
|
-
items: {
|
227
|
-
type: string;
|
228
|
-
decorator: string;
|
229
|
-
children: ({
|
230
|
-
component: string;
|
231
|
-
children: {
|
232
|
-
component: string;
|
233
|
-
}[];
|
234
|
-
name?: undefined;
|
235
|
-
type?: undefined;
|
236
|
-
title?: undefined;
|
237
|
-
reactions?: undefined;
|
238
|
-
} | {
|
239
|
-
name: string;
|
240
|
-
component: string;
|
241
|
-
type: string;
|
242
|
-
title: string;
|
243
|
-
reactions: {
|
244
|
-
dependencies: string[];
|
245
|
-
fulfill: {
|
246
|
-
schema: {
|
247
|
-
title: string;
|
248
|
-
};
|
249
|
-
};
|
250
|
-
};
|
251
|
-
children: {
|
252
|
-
name: string;
|
253
|
-
component: string;
|
254
|
-
props: {
|
255
|
-
layout: string;
|
256
|
-
labelAlign: string;
|
257
|
-
colon: boolean;
|
258
|
-
labelCol: number;
|
259
|
-
wrapperCol: number;
|
260
|
-
};
|
261
|
-
children: any[];
|
262
|
-
}[];
|
263
|
-
} | {
|
264
|
-
component: string;
|
265
|
-
children?: undefined;
|
266
|
-
name?: undefined;
|
267
|
-
type?: undefined;
|
268
|
-
title?: undefined;
|
269
|
-
reactions?: undefined;
|
270
|
-
})[];
|
271
|
-
};
|
272
|
-
children: {
|
273
|
-
component: string;
|
274
|
-
props: {
|
275
|
-
title: string;
|
276
|
-
};
|
277
|
-
}[];
|
278
|
-
}[];
|
279
|
-
}[];
|
280
|
-
};
|
@@ -1,15 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
export declare type ConfiguratorSchema = any[];
|
3
|
-
export interface Configurator<T = any> {
|
4
|
-
schema: ConfiguratorSchema;
|
5
|
-
initialValues?: T;
|
6
|
-
defaultValues?: T;
|
7
|
-
}
|
8
|
-
export declare type ConfiguratorMap = {
|
9
|
-
[key: string]: Configurator;
|
10
|
-
};
|
11
|
-
export interface ConfiguratorProps<T = any> {
|
12
|
-
initialValues?: T;
|
13
|
-
onValuesChange?: (values: T) => void;
|
14
|
-
}
|
15
|
-
export declare const initConfigurator: <T>(schema: ConfiguratorSchema, defaultInitialValues?: T, defaultValues?: T) => React.FC<ConfiguratorProps<T>>;
|
package/es/nocode/index.d.ts
DELETED
@@ -1,8 +0,0 @@
|
|
1
|
-
import './index.scss';
|
2
|
-
import PageContainer from '../page-container';
|
3
|
-
export { PageContainer };
|
4
|
-
export type { PageProps } from '../page-container';
|
5
|
-
export * from './configurators';
|
6
|
-
export * from './configurators/map';
|
7
|
-
export * from './pages';
|
8
|
-
export * from './playground';
|
@@ -1,12 +0,0 @@
|
|
1
|
-
import { Field } from '@alicloudfe/components';
|
2
|
-
import { ConfiguratorMap } from '../configurators';
|
3
|
-
import { PageMap, PageType, PageDefaultInitialValues } from '.';
|
4
|
-
export interface PageEditorProps {
|
5
|
-
type: PageType;
|
6
|
-
initialValues?: any;
|
7
|
-
field?: Field;
|
8
|
-
configuratorMap?: ConfiguratorMap;
|
9
|
-
pageMap?: PageMap;
|
10
|
-
pageDefaultInitialValues?: PageDefaultInitialValues;
|
11
|
-
}
|
12
|
-
export declare const PageEditor: (props: PageEditorProps) => JSX.Element;
|