neo-cmp-cli 1.12.8 → 1.12.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/README.md +204 -6
- package/dist/index2.js +1 -1
- package/dist/module/neoInitByCopy.js +1 -1
- package/dist/neo/env.js +1 -1
- package/dist/package.json.js +1 -1
- package/package.json +4 -1
- package/template/antd-custom-cmp-template/package.json +1 -1
- package/template/asset-manage-template/README.md +154 -0
- package/template/asset-manage-template/docs/README.md +244 -0
- package/template/asset-manage-template/neo.config.js +60 -0
- package/template/asset-manage-template/package.json +74 -0
- package/template/asset-manage-template/src/assets/img/chart.svg +1 -0
- package/template/asset-manage-template/src/components/README.md +3 -0
- package/template/asset-manage-template/src/components/assetManage__c/assetApi.ts +70 -0
- package/template/asset-manage-template/src/components/assetManage__c/cmps/AssetCreateModal.tsx +260 -0
- package/template/asset-manage-template/src/components/assetManage__c/cmps/AssetGrid.tsx +48 -0
- package/template/asset-manage-template/src/components/assetManage__c/cmps/AssetSidebar.tsx +74 -0
- package/template/asset-manage-template/src/components/assetManage__c/cmps/AssetToolbar.tsx +79 -0
- package/template/asset-manage-template/src/components/assetManage__c/cmps/assetDisplay.tsx +72 -0
- package/template/asset-manage-template/src/components/assetManage__c/constants.ts +28 -0
- package/template/asset-manage-template/src/components/assetManage__c/index.tsx +258 -0
- package/template/asset-manage-template/src/components/assetManage__c/model.ts +75 -0
- package/template/asset-manage-template/src/components/assetManage__c/style.scss +425 -0
- package/template/asset-manage-template/src/components/assetManage__c/types.ts +60 -0
- package/template/asset-manage-template/src/components/bidList__c/cmps/BidCard.tsx +47 -0
- package/template/asset-manage-template/src/components/bidList__c/constants.ts +6 -0
- package/template/asset-manage-template/src/components/bidList__c/formatUtils.ts +14 -0
- package/template/asset-manage-template/src/components/bidList__c/index.tsx +194 -0
- package/template/asset-manage-template/src/components/bidList__c/model.ts +57 -0
- package/template/asset-manage-template/src/components/bidList__c/style.scss +179 -0
- package/template/asset-manage-template/src/components/bidList__c/types.ts +10 -0
- package/template/asset-manage-template/src/components/bidPackage__c/cmps/BidPackageHeader.tsx +140 -0
- package/template/asset-manage-template/src/components/bidPackage__c/cmps/PackageItemTable.tsx +148 -0
- package/template/asset-manage-template/src/components/bidPackage__c/index.tsx +394 -0
- package/template/asset-manage-template/src/components/bidPackage__c/mainTableColumns.tsx +57 -0
- package/template/asset-manage-template/src/components/bidPackage__c/model.ts +86 -0
- package/template/asset-manage-template/src/components/bidPackage__c/style.scss +256 -0
- package/template/asset-manage-template/src/components/bidPackage__c/types.ts +35 -0
- package/template/asset-manage-template/src/components/bidPackage__c/utils.ts +19 -0
- package/template/{neo-bi-cmps → asset-manage-template}/src/utils/axiosFetcher.ts +0 -0
- package/template/{neo-bi-cmps → asset-manage-template}/src/utils/queryObjectData.ts +36 -0
- package/template/asset-manage-template/src/utils/url.ts +82 -0
- package/template/{neo-bi-cmps → asset-manage-template}/src/utils/xobjects.ts +0 -0
- package/template/asset-manage-template/tsconfig.json +40 -0
- package/template/echarts-custom-cmp-template/package.json +1 -1
- package/template/empty-custom-cmp-template/package.json +2 -2
- package/template/neo-custom-cmp-template/package.json +5 -2
- package/template/neo-custom-cmp-template/src/components/entityTable__c/index.tsx +62 -6
- package/template/neo-custom-cmp-template/src/utils/queryObjectData.ts +36 -0
- package/template/neo-custom-cmp-template/tsconfig.json +1 -2
- package/template/neo-h5-cmps/neo.config.js +1 -6
- package/template/neo-h5-cmps/package.json +7 -4
- package/template/neo-h5-cmps/src/utils/queryObjectData.ts +36 -0
- package/template/neo-h5-cmps/tsconfig.json +3 -4
- package/template/neo-order-cmps/package.json +2 -2
- package/template/neo-order-cmps/src/utils/queryObjectData.ts +36 -0
- package/template/neo-web-cmps/@types/neo-ui-common.d.ts +36 -0
- package/template/neo-web-cmps/neo.config.js +53 -0
- package/template/{neo-bi-cmps → neo-web-cmps}/package.json +10 -7
- package/template/neo-web-cmps/src/assets/img/AIBtn.gif +0 -0
- package/template/neo-web-cmps/src/assets/img/aiLogo.png +0 -0
- package/template/neo-web-cmps/src/assets/img/card-list.svg +1 -0
- package/template/neo-web-cmps/src/assets/img/contact-form.svg +1 -0
- package/template/neo-web-cmps/src/assets/img/custom-form.svg +1 -0
- package/template/neo-web-cmps/src/assets/img/data-list.svg +1 -0
- package/template/neo-web-cmps/src/assets/img/detail.svg +1 -0
- package/template/neo-web-cmps/src/assets/img/map.svg +1 -0
- package/template/neo-web-cmps/src/assets/img/search.svg +1 -0
- package/template/neo-web-cmps/src/components/entityGrid2__c/index.tsx +72 -0
- package/template/neo-web-cmps/src/components/entityGrid2__c/model.ts +195 -0
- package/template/neo-web-cmps/src/components/entityGrid2__c/style.scss +13 -0
- package/template/neo-web-cmps/src/components/entityGrid__c/index.tsx +52 -0
- package/template/neo-web-cmps/src/components/entityGrid__c/model.ts +195 -0
- package/template/neo-web-cmps/src/components/entityGrid__c/style.scss +13 -0
- package/template/neo-web-cmps/src/utils/axiosFetcher.ts +37 -0
- package/template/neo-web-cmps/src/utils/queryObjectData.ts +112 -0
- package/template/{develop/neo-custom-cmp-template → neo-web-cmps}/src/utils/xobjects.ts +28 -64
- package/template/{neo-bi-cmps → neo-web-cmps}/tsconfig.json +2 -3
- package/template/react-custom-cmp-template/package.json +1 -1
- package/template/react-ts-custom-cmp-template/package.json +1 -1
- package/template/vue2-custom-cmp-template/package.json +1 -1
- package/template/develop/BI /351/241/271/347/233/256/345/210/206/346/236/220/346/212/245/345/221/212.md" +0 -562
- package/template/develop/ChatPage /347/273/204/344/273/266/344/275/277/347/224/250/350/257/264/346/230/216/346/226/207/346/241/243.md" +0 -507
- package/template/develop/EntityGrid Web /347/273/204/344/273/266/347/232/204/350/257/246/347/273/206/345/210/206/346/236/220/346/226/207/346/241/243.md" +0 -868
- package/template/develop/EntityList H5 /347/273/204/344/273/266/347/232/204/350/257/246/347/273/206/345/210/206/346/236/220/346/226/207/346/241/243.md" +0 -1386
- package/template/develop/GlobalSearch/347/273/204/344/273/266/345/257/271/346/257/224/345/210/206/346/236/220.md +0 -866
- package/template/develop/Neo /344/270/255/345/217/257/347/224/250 amis /347/273/204/344/273/266.md" +0 -1490
- package/template/develop/cmpEventFunctions.ts +0 -257
- package/template/develop/cmpEvents.ts +0 -864
- package/template/develop/comTree/347/224/237/346/210/220/350/277/207/347/250/213/345/210/206/346/236/220.md +0 -469
- package/template/develop/commonModules.js +0 -55
- package/template/develop/components-table.md +0 -50
- package/template/develop/neo-custom-cmp-template/README.md +0 -48
- package/template/develop/neo-custom-cmp-template/docs/README.md +0 -13
- package/template/develop/neo-custom-cmp-template/neo.config.js +0 -121
- package/template/develop/neo-custom-cmp-template/package.json +0 -63
- package/template/develop/neo-custom-cmp-template/src/components/contactCardList/README.md +0 -65
- package/template/develop/neo-custom-cmp-template/src/components/contactCardList/index.tsx +0 -180
- package/template/develop/neo-custom-cmp-template/src/components/contactCardList/model.ts +0 -50
- package/template/develop/neo-custom-cmp-template/src/components/contactCardList/style.scss +0 -260
- package/template/develop/neo-custom-cmp-template/src/components/contactForm/README.md +0 -94
- package/template/develop/neo-custom-cmp-template/src/components/contactForm/index.tsx +0 -252
- package/template/develop/neo-custom-cmp-template/src/components/contactForm/model.ts +0 -56
- package/template/develop/neo-custom-cmp-template/src/components/contactForm/style.scss +0 -120
- package/template/develop/neo-custom-cmp-template/src/components/neoEntityGrid/README.md +0 -115
- package/template/develop/neo-custom-cmp-template/src/components/neoEntityGrid/index.tsx +0 -304
- package/template/develop/neo-custom-cmp-template/src/components/neoEntityGrid/model.ts +0 -87
- package/template/develop/neo-custom-cmp-template/src/components/neoEntityGrid/style.scss +0 -127
- package/template/develop/neo-custom-cmp-template/src/utils/axiosFetcher.ts +0 -29
- package/template/develop/neo-custom-cmp-template/src/utils/queryObjectData.ts +0 -39
- package/template/develop/neo-custom-cmp-template/tsconfig.json +0 -68
- package/template/develop/neo-ui-component-h5.md +0 -105
- package/template/develop/neo-ui-component-web-xregister.md +0 -31
- package/template/develop/neo-ui-component-web.md +0 -292
- package/template/develop/neoCmps.ts +0 -7508
- package/template/develop/neoGlobalSearchInput /347/273/204/344/273/266/347/232/204/350/257/246/347/273/206/345/210/206/346/236/220/346/226/207/346/241/243.md" +0 -497
- package/template/develop/pageSchema1.json +0 -744
- package/template/develop//344/272/213/344/273/266/345/212/250/344/275/234/344/277/235/345/255/230/346/265/201/347/250/213/345/210/206/346/236/220.md +0 -390
- package/template/develop//345/215/225/345/205/203/346/265/213/350/257/225/344/275/277/347/224/250/350/257/264/346/230/216.md +0 -1139
- package/template/develop//345/261/236/346/200/247/351/205/215/347/275/256/351/241/271/347/261/273/345/236/213/346/261/207/346/200/273.md +0 -558
- package/template/neo-bi-cmps/neo.config.js +0 -124
- package/template/neo-bi-cmps/src/components/targetNumber__c/README.md +0 -100
- package/template/neo-bi-cmps/src/components/targetNumber__c/customStyleConfig/configSchema.ts +0 -253
- package/template/neo-bi-cmps/src/components/targetNumber__c/customStyleConfig/index.scss +0 -76
- package/template/neo-bi-cmps/src/components/targetNumber__c/customStyleConfig/index.tsx +0 -148
- package/template/neo-bi-cmps/src/components/targetNumber__c/index.tsx +0 -440
- package/template/neo-bi-cmps/src/components/targetNumber__c/model.ts +0 -128
- package/template/neo-bi-cmps/src/components/targetNumber__c/style.scss +0 -173
- /package/template/{develop/neo-custom-cmp-template → asset-manage-template}/.prettierrc.js +0 -0
- /package/template/{neo-bi-cmps → asset-manage-template}/@types/neo-ui-common.d.ts +0 -0
- /package/template/{develop/neo-custom-cmp-template → asset-manage-template}/commitlint.config.js +0 -0
- /package/template/{develop/neo-custom-cmp-template → asset-manage-template}/public/css/base.css +0 -0
- /package/template/{develop/neo-custom-cmp-template → asset-manage-template}/public/scripts/app/bluebird.js +0 -0
- /package/template/{develop/neo-custom-cmp-template → asset-manage-template}/public/template.html +0 -0
- /package/template/{develop/neo-custom-cmp-template → asset-manage-template}/src/assets/css/common.scss +0 -0
- /package/template/{develop/neo-custom-cmp-template → asset-manage-template}/src/assets/css/mixin.scss +0 -0
- /package/template/{neo-bi-cmps → asset-manage-template}/src/assets/img/AIBtn.gif +0 -0
- /package/template/{develop/neo-custom-cmp-template → asset-manage-template}/src/assets/img/NeoCRM.jpg +0 -0
- /package/template/{neo-bi-cmps → asset-manage-template}/src/assets/img/aiLogo.png +0 -0
- /package/template/{neo-bi-cmps → asset-manage-template}/src/assets/img/card-list.svg +0 -0
- /package/template/{neo-bi-cmps → asset-manage-template}/src/assets/img/contact-form.svg +0 -0
- /package/template/{neo-bi-cmps → asset-manage-template}/src/assets/img/custom-form.svg +0 -0
- /package/template/{develop/neo-custom-cmp-template → asset-manage-template}/src/assets/img/custom-widget.svg +0 -0
- /package/template/{neo-bi-cmps → asset-manage-template}/src/assets/img/data-list.svg +0 -0
- /package/template/{neo-bi-cmps → asset-manage-template}/src/assets/img/detail.svg +0 -0
- /package/template/{develop/neo-custom-cmp-template → asset-manage-template}/src/assets/img/favicon.png +0 -0
- /package/template/{neo-bi-cmps → asset-manage-template}/src/assets/img/map.svg +0 -0
- /package/template/{neo-bi-cmps → asset-manage-template}/src/assets/img/search.svg +0 -0
- /package/template/{develop/neo-custom-cmp-template → asset-manage-template}/src/assets/img/table.svg +0 -0
- /package/template/{neo-bi-cmps → neo-web-cmps}/.prettierrc.js +0 -0
- /package/template/{neo-bi-cmps → neo-web-cmps}/README.md +0 -0
- /package/template/{neo-bi-cmps → neo-web-cmps}/commitlint.config.js +0 -0
- /package/template/{neo-bi-cmps → neo-web-cmps}/public/css/base.css +0 -0
- /package/template/{neo-bi-cmps → neo-web-cmps}/public/scripts/app/bluebird.js +0 -0
- /package/template/{neo-bi-cmps → neo-web-cmps}/public/template.html +0 -0
- /package/template/{neo-bi-cmps → neo-web-cmps}/src/assets/css/common.scss +0 -0
- /package/template/{neo-bi-cmps → neo-web-cmps}/src/assets/css/mixin.scss +0 -0
- /package/template/{neo-bi-cmps → neo-web-cmps}/src/assets/img/NeoCRM.jpg +0 -0
- /package/template/{neo-bi-cmps → neo-web-cmps}/src/assets/img/custom-widget.svg +0 -0
- /package/template/{neo-bi-cmps → neo-web-cmps}/src/assets/img/favicon.png +0 -0
- /package/template/{neo-bi-cmps → neo-web-cmps}/src/assets/img/table.svg +0 -0
|
@@ -1,127 +0,0 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
--padding-bottom: 12px;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
.neo-entity-grid-container {
|
|
6
|
-
position: relative;
|
|
7
|
-
box-sizing: border-box;
|
|
8
|
-
height: 100%;
|
|
9
|
-
display: flex;
|
|
10
|
-
flex-direction: column;
|
|
11
|
-
|
|
12
|
-
/* border-bottom: 1px solid #ececec; */
|
|
13
|
-
margin: 6px 12px;
|
|
14
|
-
padding: 6px var(--padding-bottom);
|
|
15
|
-
background-color: #fff;
|
|
16
|
-
|
|
17
|
-
.news-title {
|
|
18
|
-
padding: 6px 0;
|
|
19
|
-
font-family: PingFangSC-Regular;
|
|
20
|
-
font-size: 16px;
|
|
21
|
-
line-height: 22px;
|
|
22
|
-
color: #5f5e5e;
|
|
23
|
-
flex-shrink: 0;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
// EntityGrid 容器样式
|
|
27
|
-
.entity-grid-wrapper {
|
|
28
|
-
flex: 1;
|
|
29
|
-
min-height: 400px;
|
|
30
|
-
overflow: hidden;
|
|
31
|
-
|
|
32
|
-
// 确保表格能正确显示
|
|
33
|
-
.neo-entity-view {
|
|
34
|
-
height: 100%;
|
|
35
|
-
|
|
36
|
-
.entity-grid {
|
|
37
|
-
height: 100%;
|
|
38
|
-
display: flex;
|
|
39
|
-
flex-direction: column;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.item-imgbox {
|
|
45
|
-
position: relative;
|
|
46
|
-
height: 395px;
|
|
47
|
-
background: #f0f0f0;
|
|
48
|
-
cursor: pointer;
|
|
49
|
-
box-sizing: border-box;
|
|
50
|
-
text-align: center;
|
|
51
|
-
overflow: hidden;
|
|
52
|
-
|
|
53
|
-
.news-img {
|
|
54
|
-
width: 100%;
|
|
55
|
-
height: 100%;
|
|
56
|
-
box-sizing: border-box;
|
|
57
|
-
background-size: contain;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.img-count {
|
|
61
|
-
position: absolute;
|
|
62
|
-
top: 0;
|
|
63
|
-
right: 0;
|
|
64
|
-
padding: 6px 8px;
|
|
65
|
-
color: #fff;
|
|
66
|
-
min-width: 60px;
|
|
67
|
-
text-align: center;
|
|
68
|
-
line-height: 1.2;
|
|
69
|
-
background: rgb(0 0 0 / 40%);
|
|
70
|
-
font-size: 25px;
|
|
71
|
-
box-sizing: border-box;
|
|
72
|
-
overflow: hidden;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
.user-info-box {
|
|
76
|
-
position: absolute;
|
|
77
|
-
top: 10px;
|
|
78
|
-
left: 10px;
|
|
79
|
-
width: 100px;
|
|
80
|
-
min-height: 100px;
|
|
81
|
-
padding: 6px 8px;
|
|
82
|
-
color: #fff;
|
|
83
|
-
min-width: 60px;
|
|
84
|
-
text-align: center;
|
|
85
|
-
line-height: 1.2;
|
|
86
|
-
background: rgb(0 0 0 / 40%);
|
|
87
|
-
font-size: 25px;
|
|
88
|
-
box-sizing: border-box;
|
|
89
|
-
overflow: hidden;
|
|
90
|
-
display: flex;
|
|
91
|
-
flex-direction: column;
|
|
92
|
-
align-items: center;
|
|
93
|
-
justify-content: center;
|
|
94
|
-
|
|
95
|
-
.user-icon {
|
|
96
|
-
width: 64px;
|
|
97
|
-
height: 64px;
|
|
98
|
-
border-radius: 50%;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
.user-name {
|
|
102
|
-
font-size: 16px;
|
|
103
|
-
font-weight: 600;
|
|
104
|
-
margin-top: 10px;
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
.news-info {
|
|
110
|
-
font-family: PingFangSC-Light;
|
|
111
|
-
height: 28px;
|
|
112
|
-
box-sizing: border-box;
|
|
113
|
-
display: flex;
|
|
114
|
-
justify-content: space-between;
|
|
115
|
-
align-items: center;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
.media-mark,
|
|
119
|
-
.cmt-num {
|
|
120
|
-
display: inline-block;
|
|
121
|
-
height: 28px;
|
|
122
|
-
line-height: 28px;
|
|
123
|
-
font-family: PingFangSC-Light;
|
|
124
|
-
font-size: 18px;
|
|
125
|
-
color: #828282;
|
|
126
|
-
}
|
|
127
|
-
}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import axios from 'axios';
|
|
2
|
-
|
|
3
|
-
// 创建基于 axios 的 fetcher 函数
|
|
4
|
-
const axiosFetcher = async (options: any) => {
|
|
5
|
-
try {
|
|
6
|
-
const config = {
|
|
7
|
-
...options,
|
|
8
|
-
method: options?.method || 'GET',
|
|
9
|
-
data: options?.data || {},
|
|
10
|
-
headers: {
|
|
11
|
-
'Content-Type': 'application/json',
|
|
12
|
-
...options?.headers,
|
|
13
|
-
},
|
|
14
|
-
timeout: options?.timeout || 10000,
|
|
15
|
-
};
|
|
16
|
-
|
|
17
|
-
if (config?.method === 'GET') {
|
|
18
|
-
config.params = options?.data || {};
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
const response = await axios(config);
|
|
22
|
-
return response;
|
|
23
|
-
} catch (error) {
|
|
24
|
-
console.error('接口请求报错:', error, ',请求参数:', options);
|
|
25
|
-
throw error;
|
|
26
|
-
}
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export default axiosFetcher;
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import { message } from 'antd';
|
|
2
|
-
import axiosFetcher from './axiosFetcher';
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* 这里存放通用查询类 Open API
|
|
6
|
-
*/
|
|
7
|
-
|
|
8
|
-
// 获取业务对象数据列表
|
|
9
|
-
export const queryXObjectData = async (options?: any) => {
|
|
10
|
-
const apiUrl = '/rest/data/v2/query';
|
|
11
|
-
const curOptions = options || {};
|
|
12
|
-
const xObjectApiKey = curOptions.xObjectApiKey || '';
|
|
13
|
-
const fields = curOptions.fields || [];
|
|
14
|
-
|
|
15
|
-
const querySql = `select ${fields.join(',')} from ${xObjectApiKey}`;
|
|
16
|
-
try {
|
|
17
|
-
const config = {
|
|
18
|
-
url: apiUrl,
|
|
19
|
-
method: 'GET',
|
|
20
|
-
headers: {
|
|
21
|
-
'Content-Type': 'application/json',
|
|
22
|
-
...curOptions.headers,
|
|
23
|
-
},
|
|
24
|
-
data: {
|
|
25
|
-
q: querySql,
|
|
26
|
-
},
|
|
27
|
-
timeout: curOptions.timeout || 10000,
|
|
28
|
-
};
|
|
29
|
-
|
|
30
|
-
const response = await axiosFetcher(config);
|
|
31
|
-
return response?.data;
|
|
32
|
-
} catch (error) {
|
|
33
|
-
console.error('获取业务类型失败:', error);
|
|
34
|
-
message.error('获取业务类型失败。');
|
|
35
|
-
return {};
|
|
36
|
-
}
|
|
37
|
-
};
|
|
38
|
-
|
|
39
|
-
export default queryXObjectData;
|
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"experimentalDecorators": true,
|
|
4
|
-
/* Basic Options */
|
|
5
|
-
"target": "esnext",
|
|
6
|
-
/* 指定编译之后的版本: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */
|
|
7
|
-
"module": "esnext" /* 指定要使用的模板标准: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */,
|
|
8
|
-
// "lib": [], /* Specify library files to be included in the compilation. */
|
|
9
|
-
"allowJs": false /* 指定是否允许编译JS文件,默认false,即不编译JS文件. */,
|
|
10
|
-
// "checkJs": true, /* 指定是否检查和报告JS文件中的错误,默认false */
|
|
11
|
-
"jsx": "react" /* 指定jsx代码用于的开发环境:'preserve','react-native', or 'react'. */,
|
|
12
|
-
"declaration": false /* 指定是否在编译的时候生成相的d.ts声明文件 */,
|
|
13
|
-
// "declarationMap": true, /* 指定编译时是否生成.map文件 */
|
|
14
|
-
// "sourceMap": true, /* 指定编译时是否生成.map文件 */
|
|
15
|
-
// "outFile": "./", /* 指定输出文件合并为一个文件 */
|
|
16
|
-
// "outDir": "dist", /* 指定输出文件夹,值为一个文件夹路径字符串,输出的文件都将放置在这个文件夹*/
|
|
17
|
-
// "rootDir": "src", /* 指定编译文件的根目录,编译器会在根目录查找入口文件 */
|
|
18
|
-
// "composite": true, /* 是否编译构建引用项目 */
|
|
19
|
-
// "removeComments": true, /* 指定是否将编译后的文件注释删掉,设为true的话即删除注释,默认为false */
|
|
20
|
-
"noEmit": false /* 不生成编译文件 */,
|
|
21
|
-
"importHelpers": true /* 指定是否引入tslib里的复制工具函数,默认为false */,
|
|
22
|
-
// "downlevelIteration": true, /* 当target为"ES5"或"ES3"时,为"for-of" "spread"和"destructuring"中的迭代器提供完全支持 */
|
|
23
|
-
"isolatedModules": false /* 指定是否将每个文件作为单独的模块,默认为true */,
|
|
24
|
-
|
|
25
|
-
/* Strict Type-Checking Options */
|
|
26
|
-
"strict": false /* 指定是否启动所有类型检查 */,
|
|
27
|
-
"noImplicitAny": true /* Raise error on expressions and declarations with an implied 'any' type. */,
|
|
28
|
-
"strictNullChecks": true /* Enable strict null checks. */,
|
|
29
|
-
// "strictFunctionTypes": true, /* Enable strict checking of function types. */
|
|
30
|
-
// "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */
|
|
31
|
-
"noImplicitThis": true /* Raise error on 'this' expressions with an implied 'any' type. */,
|
|
32
|
-
// "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */
|
|
33
|
-
|
|
34
|
-
/* Additional Checks */
|
|
35
|
-
"noUnusedLocals": false /* Report errors on unused locals. */,
|
|
36
|
-
// "noUnusedParameters": true, /* Report errors on unused parameters. */
|
|
37
|
-
"noImplicitReturns": true /* Report error when not all code paths in function return a value. */,
|
|
38
|
-
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
|
|
39
|
-
|
|
40
|
-
/* Module Resolution Options */
|
|
41
|
-
"moduleResolution": "node" /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */,
|
|
42
|
-
"baseUrl": "./" /* Base directory to resolve non-absolute module names. */,
|
|
43
|
-
"paths": {
|
|
44
|
-
"@": ["./src"]
|
|
45
|
-
} /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */,
|
|
46
|
-
// "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
|
|
47
|
-
/* 指定声明文件或文件夹的路径列表,如果指定了此项,则只有在这里列出的声明文件才会被加载 */
|
|
48
|
-
"typeRoots": ["./@types", "./node_modules/@types"],
|
|
49
|
-
// "types": [], /* 指定需要包含的模块,只有在这里列出的模块的声明文件才会被加载 */
|
|
50
|
-
"allowSyntheticDefaultImports": true /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */,
|
|
51
|
-
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */,
|
|
52
|
-
// "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
|
|
53
|
-
|
|
54
|
-
/* Source Map Options */
|
|
55
|
-
// "sourceRoot": "./", /* Specify the location where debugger should locate TypeScript files instead of source locations. */
|
|
56
|
-
// "mapRoot": "./", /* Specify the location where debugger should locate map files instead of generated locations. */
|
|
57
|
-
// "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */
|
|
58
|
-
// "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */
|
|
59
|
-
|
|
60
|
-
/* Experimental Options */
|
|
61
|
-
// "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
|
|
62
|
-
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
|
|
63
|
-
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
|
|
64
|
-
// "suppressImplicitAnyIndexErrors": true /* Suppress --noImplicitAny errors for indexing objects lacking index signatures. See issue #1232 for more details. */
|
|
65
|
-
},
|
|
66
|
-
"include": ["src", "test"],
|
|
67
|
-
"exclude": ["node_modules"]
|
|
68
|
-
}
|
|
@@ -1,105 +0,0 @@
|
|
|
1
|
-
# Neo UI Component H5 组件注册汇总
|
|
2
|
-
|
|
3
|
-
生成时间: 2026/1/23 15:36:17
|
|
4
|
-
|
|
5
|
-
## 组件列表
|
|
6
|
-
|
|
7
|
-
| 组件名称 | 目录类型 | 组件路径 | Props配置 |
|
|
8
|
-
|---------|---------|---------|----------|
|
|
9
|
-
| antdListView | baseUIElement | baseUIElement/antdlistview | **dataSource**: `any`<br>**initialListSize**?: `: number`<br>**onEndReached**?: `: (e?: any) => void`<br>**onEndReachedThreshold**?: `: number`<br>**pageSize**?: `: number`<br>**renderHeader**?: `: () => React.ReactElement<any>`<br>**renderFooter**?: `: () => React.ReactElement<any>`<br>**renderRow**: `(`<br>**rowData**: `any,`<br>**sectionID**: `string | number,`<br>**rowID**: `string | number,`<br>**highlightRow**?: `: boolean`<br>**renderScrollComponent**?: `: (p: any) => React.ReactElement<any>`<br>**renderSectionHeader**?: `: (sectionData: any, sectionId: string | number) => React.ReactElement<any>`<br>**renderSeparator**?: `: (`<br>**adjacentRowHighlighted**?: `: boolean`<br>**scrollRenderAheadDistance**?: `: number`<br>**horizontal**?: `: boolean`<br>**onContentSizeChange**?: `: (w: number, h: number) => void`<br>**onScroll**?: `: (e?: any) => void`<br>**scrollEventThrottle**?: `: number`<br>**onLayout**?: `: (event: any) => void`<br>**style**?: `: React.CSSProperties`<br>**dataSource**: `any`<br>**initialListSize**?: `: number`<br>**onEndReached**?: `: (e?: any) => void`<br>**onEndReachedThreshold**?: `: number`<br>**pageSize**?: `: number`<br>**renderHeader**?: `: () => React.ReactElement<any>`<br>**renderFooter**?: `: () => React.ReactElement<any>`<br>**renderRow**: `(`<br>**rowData**: `any,`<br>**sectionID**: `string | number,`<br>**rowID**: `string | number,`<br>**highlightRow**?: `: boolean`<br>**renderScrollComponent**?: `: (p: any) => React.ReactElement<any>`<br>**renderSectionHeader**?: `: (sectionData: any, sectionId: string | number) => React.ReactElement<any>`<br>**renderSeparator**?: `: (`<br>**adjacentRowHighlighted**?: `: boolean`<br>**scrollRenderAheadDistance**?: `: number`<br>**horizontal**?: `: boolean`<br>**onContentSizeChange**?: `: (w: number, h: number) => void`<br>**onScroll**?: `: (e?: any) => void`<br>**scrollEventThrottle**?: `: number`<br>**onLayout**?: `: (event: any) => void`<br>**style**?: `: React.CSSProperties` |
|
|
10
|
-
| EmailPop | baseUIElement | baseUIElement/emailPop | 无 |
|
|
11
|
-
| neoAccordion | baseUIElement | baseUIElement/accordion | **activeKey**?: `: Array<string> | string`<br>**defaultActiveKey**?: `: string` (默认: "0")<br>**accordionOnChange**?: `: (key: string) => void`<br>**accordion**?: `: boolean` (默认: false)<br>**openAnimation**?: `:object`<br>**accordionDatas**?: `:Array<AccordionData>`<br>**activeKey**?: `: Array<string> | string` (默认: 无,accordion模式下默认第一个元素)<br>**defaultActiveKey**?: `: string` (默认: 无)<br>**accordionOnChange**?: `: (key: string) => void` (默认: noop)<br>**accordion**?: `: boolean` (默认: false)<br>**openAnimation**?: `:object` (默认: 参考 rc-collapse/lib/openAnimationFactory.js 文件)<br>**accordionDatas**?: `:Array<AccordionData>` |
|
|
12
|
-
| neoActionSheet | baseUIElement | baseUIElement/actionSheet | **actions**: `Array<any>`<br>**onAction**: `Function`<br>**actions**: `Array<any>`<br>**onAction**: `Function` |
|
|
13
|
-
| neoArrow | baseUIElement | baseUIElement/arrow | 无 |
|
|
14
|
-
| neoBadge | baseUIElement | baseUIElement/badge | **size**?: `: 'large' | 'small'` (默认: small)<br>**overflowCount**?: `: number` (默认: 99)<br>**corner**?: `: boolean` (默认: false)<br>**dot**?: `: boolean` (默认: false)<br>**text**?: `: any` (默认: -)<br>**hot**?: `: boolean` (默认: false)<br>**size**?: `: 'large' | 'small'` (默认: small)<br>**overflowCount**?: `: number` (默认: 99)<br>**corner**?: `: boolean` (默认: false)<br>**dot**?: `: boolean` (默认: false)<br>**text**?: `: any` (默认: -)<br>**hot**?: `: boolean` (默认: false) |
|
|
15
|
-
| neoBannerCard | baseUIElement | baseUIElement/bannerCard | **carouselChildren**?: `: Array<SchemaNode>` (默认: 无)<br>**style**?: `: object` (默认: 无)<br>**selectedIndex**?: `: number` (默认: 0)<br>**dots**?: `: boolean` (默认: true)<br>**vertical**?: `: boolean` (默认: false)<br>**autoplay**?: `: boolean` (默认: false)<br>**autoplayInterval**?: `: number` (默认: 3000)<br>**infinite**?: `: boolean` (默认: false)<br>**afterChange**?: `: (current: number) => void` (默认: 无)<br>**dotStyle**?: `: object` (默认: 无)<br>**dotActiveStyle**?: `: object` (默认: 无)<br>**frameOverflow**?: `: string` (默认: hidden)<br>**cellSpacing**?: `: number` (默认: -)<br>**slideWidth**?: `: string | number` (默认: -)<br>**easing**?: `: Function` (默认: easeOutCirc)<br>**swipeSpeed**?: `: number` (默认: 12)<br>**beforeChange**?: `: (from: number, to: number) => void` (默认: 无)<br>**themeTokens**?: `: object`<br>**carouselChildren**?: `: Array<SchemaNode>` (默认: 无)<br>**style**?: `: object` (默认: 无)<br>**selectedIndex**?: `: number` (默认: 0)<br>**dots**?: `: boolean` (默认: true)<br>**vertical**?: `: boolean` (默认: false)<br>**autoplay**?: `: boolean` (默认: false)<br>**autoplayInterval**?: `: number` (默认: 3000)<br>**infinite**?: `: boolean` (默认: false)<br>**afterChange**?: `: (current: number) => void` (默认: 无)<br>**dotStyle**?: `: object` (默认: 无)<br>**dotActiveStyle**?: `: object` (默认: 无)<br>**frameOverflow**?: `: string` (默认: hidden)<br>**cellSpacing**?: `: number` (默认: -)<br>**slideWidth**?: `: string | number` (默认: -)<br>**easing**?: `: Function` (默认: easeOutCirc)<br>**swipeSpeed**?: `: number` (默认: 12)<br>**beforeChange**?: `: (from: number, to: number) => void` (默认: 无)<br>**themeTokens**?: `: object` |
|
|
16
|
-
| neoBaseDatePicker | baseUIElement | baseUIElement/datePicker | **mode**?: `: 'datetime' | 'date' | 'year' | 'month' | 'time'` (默认: 'date'')<br>**value**?: `: Date` (默认: 无)<br>**minDate**?: `: Date` (默认: 2000-1-1)<br>**maxDate**?: `: Date` (默认: 2030-1-1)<br>**use12Hours**?: `: boolean` (默认: false)<br>**minuteStep**?: `: number` (默认: 1)<br>**locale**?: `: {`<br>**okText**: `string`<br>**dismissText**: `string`<br>**extra**: `string`<br>**DatePickerLocale**: `{`<br>**year**: `string`<br>**month**: `string`<br>**day**: `string`<br>**hour**: `string`<br>**minute**: `string`<br>**am**?: `: string`<br>**pm**?: `: string`<br>**disabled**?: `: boolean` (默认: false)<br>**onChange**?: `: (date: Object) => void`<br>**onValueChange**?: `: (vals: any, index: number) => void`<br>**format**?: `: string | ((value: Date) => string)`<br>**title**?: `: string`<br>**prefixCls**?: `: string`<br>**className**?: `: string`<br>**onOk**?: `: (vals: any) => void`<br>**onDismiss**?: `: () => void`<br>**pickerChildren**?: `: Array<object>`<br>**themeTokens**?: `: object`<br>**mode**?: `: 'datetime' | 'date' | 'year' | 'month' | 'time'` (默认: 'date')<br>**value**?: `: Date`<br>**minDate**?: `: Date` (默认: 无)<br>**maxDate**?: `: Date` (默认: 2000-1-1)<br>**use12Hours**?: `: boolean` (默认: 2030-1-1)<br>**minuteStep**?: `: number`<br>**locale**?: `: {`<br>**okText**: `string`<br>**dismissText**: `string`<br>**extra**: `string`<br>**DatePickerLocale**: `{`<br>**year**: `string`<br>**month**: `string`<br>**day**: `string`<br>**hour**: `string`<br>**minute**: `string`<br>**am**?: `: string`<br>**pm**?: `: string`<br>**disabled**?: `: boolean` (默认: false)<br>**onChange**?: `: (date: Object) => void`<br>**onValueChange**?: `: (vals: any, index: number) => void`<br>**format**?: `: string | ((value: Date) => string)`<br>**title**?: `: string`<br>**prefixCls**?: `: string`<br>**className**?: `: string`<br>**onOk**?: `: (vals: any) => void`<br>**onDismiss**?: `: () => void`<br>**pickerChildren**?: `: Array<object>`<br>**themeTokens**?: `: object` |
|
|
17
|
-
| neoBaseItem | baseUIElement | baseUIElement/baseItem | **isRefresh**?: `: boolean // 是否包含刷新按钮`<br>**onClick**?: `: Function // 刷新按钮点击事件`<br>**style**?: `: any // 自定义样式` |
|
|
18
|
-
| neoBreadcrumb | baseUIElement | baseUIElement/breadcrumb | **align**?: `: 'top' | 'middle' | 'bottom'` (默认: 请选择)<br>**disabled**?: `: boolean` (默认: 请选择)<br>**multipleLine**?: `: boolean` (默认: 请选择)<br>**thumb**?: `: React.ReactNode | null` (默认: 请选择)<br>**extra**?: `: SchemaNode` (默认: 请选择)<br>**arrow**?: `: 'horizontal' | 'down' | 'up' | 'empty' | ''` (默认: 请选择)<br>**wrap**?: `: boolean` (默认: 请选择)<br>**activeStyle**?: `: React.CSSProperties` (默认: 请选择)<br>**error**?: `: boolean` (默认: 请选择)<br>**platform**?: `: 'android' | 'ios'` (默认: 请选择)<br>**onClick**?: `: React.MouseEventHandler<HTMLDivElement>` (默认: 请选择) |
|
|
19
|
-
| neoCalendar | baseUIElement | baseUIElement/calendar | **enterDirection**?: `: 'horizontal' | 'vertical'` (默认: vertical)<br>**calendarLocale**?: `: 'zh_CN' | 'en_US'`<br>**pickTime**?: `: boolean` (默认: false)<br>**prefixCls**?: `: string` (默认: rmc-calendar)<br>**showShortcut**?: `: boolean` (默认: false)<br>**title**?: `: string` (默认: {locale.title})<br>**selectType**?: `: 'one' | 'range'` (默认: range)<br>**visible**?: `: boolean` (默认: false)<br>**defaultDate**?: `: Date` (默认: today)<br>**infiniteOpt**?: `: boolean` (默认: false)<br>**initalMonths**?: `: number` (默认: 6)<br>**maxDate**?: `: Date`<br>**minDate**?: `: Date`<br>**rowSize**?: `: 'normal' | 'xl'`<br>**defaultValue**?: `: SelectDateType`<br>**defaultTimeValue**?: `: any`<br>**onCancel**?: `: () => void`<br>**onConfirm**?: `: (startDateTime?: Date, endDateTime?: Date) => void`<br>**renderShortcut**?: `: (select: (startDate?: Date, endDate?: Date) => void) => React.ReactNode`<br>**renderHeader**?: `: () => React.ReactNode`<br>**onSelect**?: `: (date: Date, state?: [Date | undefined, Date | undefined]) => SelectDateType | void` (默认: undefined, Date)<br>**onSelectHasDisableDate**?: `: (date: Date[]) => void`<br>**getDateExtra**?: `: (date: Date) => any`<br>**enterDirection**?: `: 'horizontal' | 'vertical'` (默认: vertical)<br>**calendarLocale**?: `: 'zh_CN' | 'en_US'`<br>**pickTime**?: `: boolean` (默认: false)<br>**prefixCls**?: `: string` (默认: rmc-calendar)<br>**showShortcut**?: `: boolean` (默认: false)<br>**title**?: `: string` (默认: {locale.title})<br>**selectType**?: `: 'one' | 'range'` (默认: range)<br>**visible**?: `: boolean` (默认: false)<br>**defaultDate**?: `: Date` (默认: today)<br>**infiniteOpt**?: `: boolean` (默认: false)<br>**initalMonths**?: `: number` (默认: 6)<br>**maxDate**?: `: Date`<br>**minDate**?: `: Date`<br>**rowSize**?: `: 'normal' | 'xl'`<br>**defaultValue**?: `: SelectDateType`<br>**defaultTimeValue**?: `: any`<br>**onCancel**?: `: () => void`<br>**onConfirm**?: `: (startDateTime?: Date, endDateTime?: Date) => void`<br>**renderShortcut**?: `: (select: (startDate?: Date, endDate?: Date) => void) => React.ReactNode`<br>**renderHeader**?: `: () => React.ReactNode`<br>**onSelect**?: `: (date: Date, state?: [Date | undefined, Date | undefined]) => SelectDateType | void` (默认: undefined, Date)<br>**onSelectHasDisableDate**?: `: (date: Date[]) => void`<br>**getDateExtra**?: `: (date: Date) => any` |
|
|
20
|
-
| neoCard | baseUIElement | baseUIElement/card | **full**?: `: boolean` (默认: false)<br>**className**?: `: string` (默认: "")<br>**cardHeader**?: `: any` (默认: {})<br>**cardBody**?: `: any` (默认: {})<br>**cardFooter**?: `: any` (默认: {})<br>**cardClick**?: `: () => void` (默认: {})<br>**full**?: `: boolean` (默认: false)<br>**cardHeader**?: `: CardHeaderPropsType` (默认: {})<br>**cardBody**?: `: CardBodyPropsType` (默认: {})<br>**cardFooter**?: `: CardFooterPropsType` (默认: {})<br>**title**?: `: SchemaNode | string`<br>**thumb**?: `: SchemaNode | string`<br>**thumbStyle**?: `: Object` (默认: {})<br>**extra**?: `: SchemaNode | string`<br>**themeTokens**?: `: object`<br>**headerChildren**?: `: any[]`<br>**title**?: `: SchemaNode | string`<br>**thumb**?: `: SchemaNode | string`<br>**thumbStyle**?: `: object` (默认: {})<br>**extra**?: `: SchemaNode | string`<br>**themeTokens**?: `: object`<br>**headerChildren**?: `: any[]`<br>**bodyChildren**?: `: any[]` (默认: 无)<br>**bodyChildren**?: `: any[]` (默认: 无)<br>**content**?: `: SchemaNode | string`<br>**extra**?: `: SchemaNode | string`<br>**themeTokens**?: `: object`<br>**footerChildren**?: `: any[]`<br>**content**?: `: SchemaNode | string`<br>**extra**?: `: SchemaNode | string`<br>**themeTokens**?: `: object`<br>**footerChildren**?: `: any[]` |
|
|
21
|
-
| neoCarousel | baseUIElement | baseUIElement/carousel | **carouselChildren**?: `: Array<SchemaNode>` (默认: 无)<br>**style**?: `: object` (默认: 无)<br>**selectedIndex**?: `: number` (默认: 0)<br>**dots**?: `: boolean` (默认: true)<br>**vertical**?: `: boolean` (默认: false)<br>**autoplay**?: `: boolean` (默认: false)<br>**autoplayInterval**?: `: number` (默认: 3000)<br>**infinite**?: `: boolean` (默认: false)<br>**afterChange**?: `: (current: number) => void` (默认: 无)<br>**dotStyle**?: `: object` (默认: 无)<br>**dotActiveStyle**?: `: object` (默认: 无)<br>**frameOverflow**?: `: string` (默认: hidden)<br>**cellSpacing**?: `: number` (默认: -)<br>**slideWidth**?: `: string | number` (默认: -)<br>**easing**?: `: Function` (默认: easeOutCirc)<br>**swipeSpeed**?: `: number` (默认: 12)<br>**beforeChange**?: `: (from: number, to: number) => void` (默认: 无)<br>**themeTokens**?: `: object`<br>**carouselChildren**?: `: Array<SchemaNode>` (默认: 无)<br>**style**?: `: object` (默认: 无)<br>**selectedIndex**?: `: number` (默认: 0)<br>**dots**?: `: boolean` (默认: true)<br>**vertical**?: `: boolean` (默认: false)<br>**autoplay**?: `: boolean` (默认: false)<br>**autoplayInterval**?: `: number` (默认: 3000)<br>**infinite**?: `: boolean` (默认: false)<br>**afterChange**?: `: (current: number) => void` (默认: 无)<br>**dotStyle**?: `: object` (默认: 无)<br>**dotActiveStyle**?: `: object` (默认: 无)<br>**frameOverflow**?: `: string` (默认: hidden)<br>**cellSpacing**?: `: number` (默认: -)<br>**slideWidth**?: `: string | number` (默认: -)<br>**easing**?: `: Function` (默认: easeOutCirc)<br>**swipeSpeed**?: `: number` (默认: 12)<br>**beforeChange**?: `: (from: number, to: number) => void` (默认: 无)<br>**themeTokens**?: `: object` |
|
|
22
|
-
| neoCheckbox | baseUIElement | baseUIElement/checkbox | **value**?: `: object`<br>**defaultChecked**?: `: boolean` (默认: false)<br>**checked**?: `: boolean` (默认: false)<br>**disabled**?: `: boolean` (默认: false)<br>**onChange**?: `: (params: OnChangeParams) => void`<br>**themeTokens**?: `: object`<br>**value**?: `: object`<br>**defaultChecked**?: `: boolean` (默认: false)<br>**checked**?: `: boolean` (默认: false)<br>**disabled**?: `: boolean` (默认: false)<br>**onChange**?: `: (date?: CascaderValue) => void`<br>**themeTokens**?: `: object` |
|
|
23
|
-
| neoContactInfo | baseUIElement | baseUIElement/contactInfo | 无 |
|
|
24
|
-
| neoCustomTag | baseUIElement | baseUIElement/customTag | **title**?: `: string` (默认: 无)<br>**disabled**?: `: boolean` (默认: false)<br>**closable**?: `: boolean` (默认: false)<br>**selected**?: `: boolean` (默认: false)<br>**afterSelect**?: `: (title) => void` (默认: 无)<br>**afterClose**?: `: (title) => void` (默认: 无)<br>**title**?: `: string` (默认: 无)<br>**disabled**?: `: boolean` (默认: false)<br>**closable**?: `: boolean` (默认: false)<br>**selected**?: `: boolean` (默认: false)<br>**afterClose**?: `: (title) => void` (默认: 无) |
|
|
25
|
-
| neoDangerousText | baseUIElement | baseUIElement/neoDangerousText | 无 |
|
|
26
|
-
| neoDatePickerView | baseUIElement | baseUIElement/datePickerView | **mode**?: `: 'datetime' | 'date' | 'year' | 'month' | 'time'` (默认: 'date'')<br>**value**?: `: Date` (默认: 无)<br>**minDate**?: `: Date` (默认: 2000-1-1)<br>**maxDate**?: `: Date` (默认: 2030-1-1)<br>**use12Hours**?: `: boolean` (默认: false)<br>**minuteStep**?: `: number` (默认: 1)<br>**locale**?: `: {`<br>**okText**: `string`<br>**dismissText**: `string`<br>**extra**: `string`<br>**DatePickerLocale**: `{`<br>**year**: `string`<br>**month**: `string`<br>**day**: `string`<br>**hour**: `string`<br>**minute**: `string`<br>**am**?: `: string`<br>**pm**?: `: string`<br>**disabled**?: `: boolean` (默认: false)<br>**onChange**?: `: (date: Object) => void`<br>**onValueChange**?: `: (vals: any, index: number) => void`<br>**mode**?: `: 'datetime' | 'date' | 'year' | 'month' | 'time'` (默认: 'date')<br>**value**?: `: Date`<br>**minDate**?: `: Date` (默认: 无)<br>**maxDate**?: `: Date` (默认: 2000-1-1)<br>**use12Hours**?: `: boolean` (默认: 2030-1-1)<br>**minuteStep**?: `: number`<br>**locale**?: `: {`<br>**okText**: `string`<br>**dismissText**: `string`<br>**extra**: `string`<br>**DatePickerLocale**: `{`<br>**year**: `string`<br>**month**: `string`<br>**day**: `string`<br>**hour**: `string`<br>**minute**: `string`<br>**am**?: `: string`<br>**pm**?: `: string`<br>**disabled**?: `: boolean` (默认: false)<br>**onChange**?: `: (date: Object) => void`<br>**onValueChange**?: `: (vals: any, index: number) => void` |
|
|
27
|
-
| neoEmpty | baseUIElement | baseUIElement/empty | **isRefresh**?: `: boolean // 是否包含刷新按钮`<br>**onClick**?: `: Function // 刷新按钮点击事件`<br>**style**?: `: any // 自定义样式`<br>**imgSrc**?: `: string // 自定义图` |
|
|
28
|
-
| neoFile | baseUIElement | baseUIElement/file | **file**: `FileInfo` (默认: true)<br>**valueStyle**?: `: any`<br>**isTypeIcon**?: `: boolean` (默认: true)<br>**fileIndex**?: `: Number`<br>**isDeleteButton**?: `: boolean` (默认: true)<br>**isPreview**?: `: boolean` (默认: true)<br>**fileDeleteClick**?: `: (file: FileInfo, fileIndex) => void` (默认: -)<br>**tryAgainClick**?: `: (file: FileInfo, fileIndex) => void` (默认: -)<br>**themeTokens**?: `: FileThemeTokens` (默认: null)<br>**deleteDisable**?: `: boolean`<br>**file**: `FileInfo` (默认: true)<br>**isTypeIcon**?: `: boolean` (默认: true)<br>**isDeleteButton**?: `: boolean` (默认: true)<br>**isPreview**?: `: boolean` (默认: true)<br>**fileIndex**?: `: Number`<br>**fileDeleteClick**?: `: (file: FileInfo) => void` (默认: -)<br>**tryAgainClick**?: `: (file: FileInfo, fileIndex) => void` (默认: -)<br>**themeTokens**?: `: FileThemeTokens` (默认: null) |
|
|
29
|
-
| neoGrid | baseUIElement | baseUIElement/grid | **dataArray**?: `: Array<{ icon; text }>` (默认: [])<br>**onClick**?: `: (el: Object, index: number) => void` (默认: -)<br>**columnNum**?: `: number` (默认: 4)<br>**hasLine**?: `: boolean` (默认: true)<br>**isCarousel**?: `: boolean` (默认: false)<br>**carouselMaxRow**?: `: number` (默认: 2)<br>**renderItem**?: `: (el, index) => ReactElement` (默认: -)<br>**square**?: `: boolean` (默认: true)<br>**activeStyle**?: `: object | false` (默认: {})<br>**activeClassName**?: `: string` (默认: 无)<br>**itemStyle**?: `: object` (默认: {})<br>**themeTokens**?: `: object`<br>**dataArray**?: `: Array<{ icon; text }>` (默认: [])<br>**onClick**?: `: (el: Object, index: number) => void` (默认: -)<br>**columnNum**?: `: number` (默认: 4)<br>**hasLine**?: `: boolean` (默认: true)<br>**isCarousel**?: `: boolean` (默认: false)<br>**carouselMaxRow**?: `: number` (默认: 2)<br>**renderItem**?: `: (el, index) => ReactElement` (默认: -)<br>**square**?: `: boolean` (默认: true)<br>**activeStyle**?: `: object | false` (默认: {})<br>**activeClassName**?: `: string` (默认: 无)<br>**itemStyle**?: `: object` (默认: {})<br>**themeTokens**?: `: object` |
|
|
30
|
-
| neoH5Title | baseUIElement | baseUIElement/neoH5Title | **cancelLabel**?: `: string`<br>**cancelOnClick**?: `: Function`<br>**confirmLabel**?: `: string`<br>**confirmOnClick**: `Function` |
|
|
31
|
-
| neoHBox | baseUIElement | baseUIElement/hBox | **body**?: `: SchemaCollection`<br>**body**?: `: SchemaCollection` |
|
|
32
|
-
| neoIcon | baseUIElement | baseUIElement/neoIcon | **isGradually**?: `: boolean` (默认: false)<br>**svgId**: `string`<br>**name**: `string`<br>**className**: `string`<br>**style**: `Function`<br>**size**: `string`<br>**backgroundColor**: `string`<br>**bodyClassName**: `string`<br>**iconTheme**: `string`<br>**isGradually**?: `: boolean` (默认: false)<br>**svgId**: `string`<br>**name**: `string`<br>**className**: `string`<br>**style**: `Function`<br>**size**: `string`<br>**backgroundColor**: `string`<br>**bodyClassName**: `string`<br>**iconTheme**: `string` |
|
|
33
|
-
| neoIconBtn | baseUIElement | baseUIElement/iconButton | **name**?: `: any`<br>**className**?: `: string`<br>**label**?: `: string`<br>**iconName**?: `: any`<br>**themeTokens**?: `: ThemeTokensProps`<br>**onBtnClick**?: `: Function`<br>**btnType**?: `: 'iconAndWord' | 'word' | 'icon'` (默认: iconAndWord)<br>**onReady**?: `: Function`<br>**setValue**: `(value) => void`<br>**env**: `any`<br>**name**?: `: any`<br>**className**?: `: string` |
|
|
34
|
-
| neoIconModal | baseUIElement | baseUIElement/iconModal | **className**: `object`<br>**style**: `object`<br>**message**: `string`<br>**title**: `string`<br>**icon**: `object`<br>**render**: `any` |
|
|
35
|
-
| neoIframe | baseUIElement | baseUIElement/iframe | **src**: `string` (默认: true)<br>**allow**?: `: string | undefined` (默认: -)<br>**src**: `string` (默认: true)<br>**allow**?: `: string | undefined` (默认: -) |
|
|
36
|
-
| neoImage | baseUIElement | baseUIElement/neoImage | 无 |
|
|
37
|
-
| neoImagePicker | baseUIElement | baseUIElement/ImagePicker | **files**?: `: Array<any>`<br>**onChange**?: `: (files: Object, operationType: string, index: number) => void` (默认: false)<br>**onImageClick**?: `: (index: number, files: Object) => void`<br>**onAddImageClick**?: `: () => void`<br>**onFail**?: `: (msg: string) => void`<br>**selectable**?: `: boolean` (默认: true)<br>**multiple**?: `: boolean` (默认: false)<br>**accept**?: `: string` (默认: false)<br>**length**?: `: 4` (默认: false)<br>**capture**?: `: 4` (默认: false)<br>**disableDelete**?: `: boolean` (默认: false)<br>**files**?: `: Array<any>`<br>**onChange**?: `: (files: Object, operationType: string, index: number) => void` (默认: false)<br>**onImageClick**?: `: (index: number, files: Object) => void`<br>**onAddImageClick**?: `: () => void`<br>**onFail**?: `: (msg: string) => void`<br>**selectable**?: `: boolean` (默认: true)<br>**multiple**?: `: boolean` (默认: false)<br>**accept**?: `: string` (默认: false)<br>**length**?: `: 4` (默认: false)<br>**capture**?: `: 4` (默认: false)<br>**disableDelete**?: `: boolean` (默认: false) |
|
|
38
|
-
| neoImagePreview | baseUIElement | baseUIElement/imagePreview | **images**: `Img[]`<br>**toolbarRender**: `() => any`<br>**index**: `number`<br>**onClose**: `() => void`<br>**onIndexChange**: `() => void` |
|
|
39
|
-
| neoIndexedList | baseUIElement | baseUIElement/IndexedList | **initialListSize**?: `: number`<br>**onEndReached**?: `: (e?: any) => void`<br>**onEndReachedThreshold**?: `: number`<br>**pageSize**?: `: number`<br>**renderRow**: `(`<br>**rowData**: `any,`<br>**sectionID**: `string | number,`<br>**rowID**: `string | number,`<br>**highlightRow**?: `: boolean`<br>**renderScrollComponent**?: `: (p: any) => React.ReactElement<any>`<br>**renderSectionHeader**?: `: (sectionData: any, sectionId: string | number) => React.ReactElement<any>`<br>**renderSeparator**?: `: (`<br>**adjacentRowHighlighted**?: `: boolean`<br>**scrollRenderAheadDistance**?: `: number`<br>**horizontal**?: `: boolean`<br>**onContentSizeChange**?: `: (w: number, h: number) => void`<br>**onScroll**?: `: (e?: any) => void`<br>**scrollEventThrottle**?: `: number`<br>**onLayout**?: `: (event: any) => void`<br>**style**?: `: React.CSSProperties` |
|
|
40
|
-
| neoInputItem | baseUIElement | baseUIElement/inputItem | **moneyKeyboardAlign**?: `: string` (默认: right)<br>**moneyKeyboardWrapProps**?: `: object` (默认: {})<br>**moneyKeyboardHeader**?: `: React.ReactNode` (默认: null)<br>**inputType**?: `: 'text' | 'bankCard' | 'phone' | 'password' | 'number' | 'digit' | 'money'` (默认: text)<br>**editable**?: `: boolean` (默认: true)<br>**disabled**?: `: boolean` (默认: true)<br>**value**?: `: string`<br>**defaultValue**?: `: string` (默认: -)<br>**placeholder**?: `: string` (默认: '')<br>**clear**?: `: boolean` (默认: false)<br>**maxLength**?: `: number` (默认: false)<br>**extra**?: `: React.ReactNode` (默认: '')<br>**error**?: `: boolean` (默认: false)<br>**labelNumber**?: `: number` (默认: 5)<br>**labelPosition**?: `: 'left' | 'top'` (默认: 5)<br>**textAlign**?: `: 'left' | 'center'` (默认: center)<br>**updatePlaceholder**?: `: boolean` (默认: false)<br>**locale**?: `: object` (默认: false)<br>**onChange**?: `: (value: string) => void` (默认: -)<br>**onFocus**?: `: InputEventHandler` (默认: -)<br>**onBlur**?: `: InputEventHandler` (默认: -)<br>**onVirtualKeyboardConfirm**?: `: InputEventHandler` (默认: -)<br>**disabledKeys**?: `: Array<InputKey> | null | undefined` (默认: null)<br>**themeTokens**?: `: InputItemThemeTokens` (默认: null)<br>**moneyKeyboardAlign**?: `: string` (默认: right)<br>**moneyKeyboardWrapProps**?: `: object` (默认: {})<br>**moneyKeyboardHeader**?: `: React.ReactNode` (默认: null)<br>**inputType**?: `: 'text' | 'bankCard' | 'phone' | 'password' | 'number' | 'digit' | 'money'` (默认: text)<br>**editable**?: `: boolean` (默认: true)<br>**disabled**?: `: boolean` (默认: true)<br>**value**?: `: string`<br>**defaultValue**?: `: string` (默认: -)<br>**placeholder**?: `: string` (默认: '')<br>**clear**?: `: boolean` (默认: false)<br>**maxLength**?: `: number` (默认: false)<br>**extra**?: `: React.ReactNode` (默认: '')<br>**error**?: `: boolean` (默认: false)<br>**labelNumber**?: `: number` (默认: 5)<br>**labelPosition**?: `: 'left' | 'top'` (默认: 5)<br>**textAlign**?: `: 'left' | 'center'` (默认: center)<br>**updatePlaceholder**?: `: boolean` (默认: false)<br>**locale**?: `: object` (默认: false)<br>**onChange**?: `: (value: string) => void` (默认: -)<br>**onFocus**?: `: InputEventHandler` (默认: -)<br>**onBlur**?: `: InputEventHandler` (默认: -)<br>**onVirtualKeyboardConfirm**?: `: InputEventHandler` (默认: -)<br>**disabledKeys**?: `: Array<InputKey> | null | undefined` (默认: null)<br>**themeTokens**?: `: InputItemThemeTokens` (默认: null) |
|
|
41
|
-
| neoLayoutError | baseUIElement | baseUIElement/layoutError | **retryClick**: `() => void`<br>**noHeader**?: `: boolean` (默认: false)<br>**retryClick**: `() => void`<br>**noHeader**?: `: boolean` (默认: false) |
|
|
42
|
-
| neoListItem | baseUIElement | baseUIElement/listItem | **align**?: `: 'top' | 'middle' | 'bottom'` (默认: 请选择)<br>**disabled**?: `: boolean` (默认: 请选择)<br>**multipleLine**?: `: boolean` (默认: 请选择)<br>**thumb**?: `: React.ReactNode | null` (默认: 请选择)<br>**extra**?: `: SchemaNode` (默认: 请选择)<br>**arrow**?: `: 'horizontal' | 'down' | 'up' | 'empty' | ''` (默认: 请选择)<br>**wrap**?: `: boolean` (默认: 请选择)<br>**activeStyle**?: `: React.CSSProperties` (默认: 请选择)<br>**error**?: `: boolean` (默认: 请选择)<br>**platform**?: `: 'android' | 'ios'` (默认: 请选择)<br>**onClick**?: `: React.MouseEventHandler<HTMLDivElement>` (默认: 请选择) |
|
|
43
|
-
| neoListSelect | baseUIElement | baseUIElement/listSelect | **navTitle**?: `: string` (默认: 无)<br>**enableActiveDesc**?: `: string` (默认: false)<br>**isNavTitle**?: `: boolean` (默认: true)<br>**multiple**?: `: boolean` (默认: true)<br>**iconPosition**?: `: 'left' | 'right'` (默认: right)<br>**pickOption**?: `: any` (默认: [])<br>**onClose**?: `: any` (默认: [])<br>**onConfirm**?: `: any` (默认: [])<br>**themeTokens**?: `: ListSelectThemeTokens` (默认: null)<br>**navTitle**?: `: string` (默认: 无)<br>**isNavTitle**?: `: boolean` (默认: true)<br>**multiple**?: `: boolean` (默认: true)<br>**pickOption**?: `: any` (默认: [])<br>**onClose**?: `: any` (默认: [])<br>**onConfirm**?: `: any` (默认: [])<br>**themeTokens**?: `: ListSelectThemeTokens` (默认: null) |
|
|
44
|
-
| neoListView | baseUIElement | baseUIElement/listview | **listData**: `any[]`<br>**entity**?: `: any // 实体信息`<br>**viewStatue**?: `: number`<br>**onItemClick**?: `: (rowData, entity: any, index) => void`<br>**compareUpdate**?: `: (nextProps, props) => boolean`<br>**headerSchema**?: `: any`<br>**renderHeader**?: `: () => React.ReactElement<any>`<br>**footerSchema**?: `: any`<br>**renderFooter**?: `: () => React.ReactElement<any>`<br>**itemStatusChange**?: `: (selectDatas) => void`<br>**multiseriate**?: `: boolean`<br>**ItemViewClassName**?: `: string`<br>**model**?: `: 'card' | 'fence'`<br>**interceptRowClick**?: `: (rowData, info) => boolean`<br>**isOpenHold**?: `: boolean // 是否启用长按`<br>**popContainer**?: `: any // 长按弹框的内容`<br>**disableFooter**?: `: boolean // 禁用footer`<br>**showBlankPage**?: `: boolean //是否开启空白页展示`<br>**initialListSize**?: `:boolean //指定在组件刚挂载的时候渲染多少行数据,用这个属性来确保首屏显示合适数量的数据` |
|
|
45
|
-
| neoLoadView | baseUIElement | baseUIElement/loading | **className**?: `: string`<br>**loadingClassName**?: `: string` |
|
|
46
|
-
| neoMenu | baseUIElement | baseUIElement/menu | **visible**?: `: boolean` (默认: false)<br>**childrenData**?: `: DataItem[]` (默认: [])<br>**value**?: `: ValueType` (默认: 2)<br>**onChange**?: `: (value?: ValueType) => void`<br>**onOk**?: `: (value?: ValueType) => void`<br>**onCancel**?: `: () => void`<br>**level**?: `: 1 | 2` (默认: 2)<br>**height**?: `: number` (默认: document.documentElement.clientHeight / 2)<br>**multiSelect**?: `: boolean` (默认: false)<br>**visible**?: `: boolean` (默认: false)<br>**childrenData**?: `: DataItem[]` (默认: [])<br>**value**?: `: ValueType` (默认: 2)<br>**onChange**?: `: (value?: ValueType) => void`<br>**onOk**?: `: (value?: ValueType) => void`<br>**onCancel**?: `: () => void`<br>**level**?: `: 1 | 2` (默认: 2)<br>**height**?: `: number` (默认: document.documentElement.clientHeight / 2)<br>**multiSelect**?: `: boolean` (默认: false) |
|
|
47
|
-
| neoMenuGroup | baseUIElement | baseUIElement/neoMenuGroup | **groupTitle**: `string`<br>**remarks**: `string`<br>**isGroup**: `boolean` (默认: true)<br>**dataSource**: `Array<MenuItem>` (默认: [])<br>**onItemClick**: `Function`<br>**onModelChanged**: `Function`<br>**themeTokens**: `object`<br>**groupTitle**: `string`<br>**remarks**: `string`<br>**isGroup**: `boolean` (默认: true)<br>**menuArray**: `Array<object>`<br>**onItemClick**: `Function`<br>**themeTokens**: `object` |
|
|
48
|
-
| neoMenuPop | baseUIElement | baseUIElement/menuPop | **dataArray**?: `: Array<{ icon; text }>` (默认: [])<br>**onClick**?: `: (el: Object, index: number) => void` (默认: -)<br>**columnNum**?: `: number` (默认: 4)<br>**hasLine**?: `: boolean` (默认: true)<br>**isCarousel**?: `: boolean` (默认: false)<br>**carouselMaxRow**?: `: number` (默认: 2)<br>**renderItem**?: `: (el, index) => ReactElement` (默认: -)<br>**square**?: `: boolean` (默认: true)<br>**activeStyle**?: `: object | false` (默认: {})<br>**activeClassName**?: `: string` (默认: 无)<br>**itemStyle**?: `: object` (默认: {})<br>**themeTokens**?: `: object` |
|
|
49
|
-
| neoModalView | baseUIElement | baseUIElement/modalView | **modalBody**: `any` (默认: '')<br>**visibleCallback**: `Function` (默认: '')<br>**title**?: `: React.ReactNode` (默认: '')<br>**modalVisible**: `boolean` (默认: false)<br>**maskClosable**?: `: boolean` (默认: true)<br>**maskStyle**?: `: React.CSSProperties`<br>**modalHeight**?: `: number` (默认: 100)<br>**closable**?: `: boolean` (默认: false)<br>**onClose**?: `: () => void` (默认: false)<br>**transparent**?: `: boolean` (默认: false)<br>**popup**?: `: boolean` (默认: false)<br>**animationType**?: `: any` (默认: '')<br>**onAnimationEnd**?: `: (visible: boolean) => void`<br>**transitionName**?: `: string`<br>**maskTransitionName**?: `: string`<br>**className**?: `: string`<br>**wrapClassName**?: `: string`<br>**platform**?: `: string`<br>**style**?: `: React.CSSProperties`<br>**bodyStyle**?: `: React.CSSProperties` |
|
|
50
|
-
| neoNavBar | baseUIElement | baseUIElement/navBar | **mode**: `'dark' | 'light'` (默认: 'dark' enum{'dark', 'light'})<br>**icon**: `string` (默认: ReactNode)<br>**leftContent**: `any`<br>**rightContent**: `any`<br>**onLeftClick**: `(e?: Object) => void`<br>**title**: `string`<br>**mode**: `'dark' | 'light'` (默认: 'dark' enum{'dark', 'light'})<br>**icon**: `string` (默认: ReactNode)<br>**leftContent**: `any`<br>**rightContent**: `any`<br>**onLeftClick**: `(e?: Object) => void`<br>**title**: `string`<br>**themeTokens**?: `: object`<br>**centerBody**?: `: object` |
|
|
51
|
-
| neoNoticeBar | baseUIElement | baseUIElement/noticebar | **mode**?: `: 'closable' | 'link'`<br>**onClick**?: `: () => void`<br>**icon**?: `: React.ReactElement<any> | null`<br>**action**?: `: React.ReactElement<any>`<br>**marqueeProps**?: `: object` (默认: {loop: false, leading: 500, trailing: 800, fps: 40, style: {}})<br>**mode**?: `: 'closable' | 'link'`<br>**onClick**?: `: () => void`<br>**icon**?: `: React.ReactElement<any> | null`<br>**action**?: `: React.ReactElement<any>`<br>**marqueeProps**?: `: object` (默认: {loop: false, leading: 500, trailing: 800, fps: 40, style: {}})<br>**themeTokens**?: `: object` |
|
|
52
|
-
| neoPageLoading | baseUIElement | baseUIElement/pageLoading | **animating**?: `: boolean` (默认: true)<br>**size**?: `: string` (默认: large)<br>**toast**?: `: boolean` (默认: false)<br>**text**?: `: string` (默认: false)<br>**animating**?: `: boolean` (默认: true)<br>**size**?: `: string` (默认: small)<br>**toast**?: `: boolean` (默认: false)<br>**text**?: `: string` (默认: false) |
|
|
53
|
-
| neoPagination | baseUIElement | baseUIElement/pagination | **mode**: `string` (默认: button)<br>**current**: `number` (默认: 1)<br>**total**: `number` (默认: 0)<br>**simple**: `boolean` (默认: false)<br>**disabled**: `boolean` (默认: false)<br>**custom_locale**?: `: Object`<br>**onChange**?: `: (e: object) => void`<br>**themeTokens**?: `: object`<br>**mode**: `string` (默认: button)<br>**current**: `number` (默认: 1)<br>**total**: `number` (默认: 0)<br>**simple**: `boolean` (默认: false)<br>**disabled**: `boolean` (默认: false)<br>**custom_locale**?: `: Object`<br>**onChange**?: `: (e: object) => void` (默认: 中文:上一页、下一页)<br>**themeTokens**?: `: object` |
|
|
54
|
-
| neoPicker | baseUIElement | baseUIElement/picker | **optionData**: `any`<br>**value**?: `: Array<any>`<br>**disabled**?: `: boolean` (默认: 请选择)<br>**defaultChecked**?: `: boolean` (默认: 请选择)<br>**checked**?: `: boolean` (默认: 请选择)<br>**cols**?: `: number`<br>**onChange**?: `: (date?: CascaderValue) => void`<br>**themeTokens**?: `: object`<br>**optionData**: `any`<br>**value**?: `: Array<any>`<br>**format**?: `: (values: React.ReactNode[]) => string | React.ReactNode[]`<br>**cols**?: `: number`<br>**onChange**?: `: (date?: CascaderValue) => void`<br>**onPickerChange**?: `: (value: CascaderValue) => void`<br>**onVisibleChange**?: `: (visible: boolean) => void`<br>**itemStyle**?: `: object`<br>**indicatorStyle**?: `: object`<br>**pickerChildren**?: `: SchemaNode`<br>**okText**?: `: string` (默认: 确认)<br>**dismissText**?: `: string` (默认: 取消)<br>**onOk**?: `: (value?: any) => void` (默认: 取消)<br>**onDismiss**?: `: () => void` (默认: 取消)<br>**title**?: `: string`<br>**extra**?: `: string` (默认: 请选择)<br>**disabled**?: `: boolean` (默认: 请选择)<br>**cascade**?: `: boolean` (默认: 请选择)<br>**themeTokens**?: `: object` |
|
|
55
|
-
| neoPickerView | baseUIElement | baseUIElement/pickerView | **value**?: `: any[]`<br>**cols**?: `: number`<br>**onChange**?: `: (value?: any) => void`<br>**itemStyle**?: `: object`<br>**indicatorStyle**?: `: object`<br>**cascade**?: `: boolean` (默认: 请选择)<br>**prefixCls**?: `: string` (默认: 请选择)<br>**pickerPrefixCls**?: `: string` (默认: 请选择)<br>**options**?: `: PickerData[] | PickerData[][]` (默认: 请选择)<br>**onScrollChange**?: `: (value?: any) => void` (默认: 请选择)<br>**value**?: `: any[]`<br>**cols**?: `: number`<br>**onChange**?: `: (value?: any) => void`<br>**itemStyle**?: `: object`<br>**indicatorStyle**?: `: object`<br>**cascade**?: `: boolean` (默认: 请选择)<br>**prefixCls**?: `: string` (默认: 请选择)<br>**pickerPrefixCls**?: `: string` (默认: 请选择)<br>**pickerData**?: `: PickerData[] | PickerData[][]` (默认: 请选择)<br>**onScrollChange**?: `: (value?: any) => void` (默认: 请选择) |
|
|
56
|
-
| neoPopover | baseUIElement | baseUIElement/popover | **visible**: `boolean` (默认: false)<br>**onVisibleChange**: `(visible: boolean) => void` (默认: false)<br>**placement**: `any`<br>**mask**: `boolean` (默认: false)<br>**overlay**: `any`<br>**onSelect**: `(node: any, index?: number) => void`<br>**showContent**: `any`<br>**visible**: `boolean` (默认: false)<br>**onVisibleChange**: `(visible: boolean) => void` (默认: false)<br>**placement**: `any`<br>**mask**: `boolean` (默认: false)<br>**overlay**: `any`<br>**onSelect**: `(node: any, index?: number) => void`<br>**showContent**: `any` |
|
|
57
|
-
| neoPopUp | baseUIElement | baseUIElement/popUp | **modalBody**: `any` (默认: '')<br>**isRender**: `boolean` (默认: true)<br>**position**: `'top' | 'bottom'` (默认: 'top')<br>**visibleCallback**: `Function` (默认: '')<br>**title**?: `: React.ReactNode` (默认: '')<br>**modalVisible**: `boolean` (默认: false)<br>**maskClosable**?: `: boolean` (默认: true)<br>**maskStyle**?: `: React.CSSProperties`<br>**modalBodyStyle**?: `: React.CSSProperties`<br>**modalHeight**?: `: number` (默认: 100)<br>**closable**?: `: boolean` (默认: false)<br>**onClose**?: `: () => void` (默认: false)<br>**transparent**?: `: boolean` (默认: false)<br>**popup**?: `: boolean` (默认: false)<br>**animationType**?: `: any` (默认: '')<br>**onAnimationEnd**?: `: (visible: boolean) => void`<br>**transitionName**?: `: string`<br>**maskTransitionName**?: `: string`<br>**className**?: `: string`<br>**wrapClassName**?: `: string`<br>**platform**?: `: string`<br>**style**?: `: React.CSSProperties`<br>**bodyStyle**?: `: React.CSSProperties` |
|
|
58
|
-
| neoRadio | baseUIElement | baseUIElement/radio | **name**: `string`<br>**defaultChecked**?: `: boolean`<br>**checked**?: `: boolean`<br>**disabled**?: `: boolean`<br>**onChange**?: `: (e: object) => void`<br>**itemType**?: `: string`<br>**extra**?: `: string`<br>**themeTokens**?: `: object`<br>**name**: `string`<br>**defaultChecked**?: `: boolean` (默认: false)<br>**checked**?: `: boolean` (默认: false)<br>**disabled**?: `: boolean` (默认: fasle)<br>**onChange**?: `: (e: object) => void`<br>**itemType**?: `: string` (默认: item)<br>**extra**?: `: string`<br>**themeTokens**?: `: object` |
|
|
59
|
-
| neoRange | baseUIElement | baseUIElement/range | **onChange**?: `: (value?: number) => void`<br>**onAfterChange**?: `: (value?: number) => void`<br>**defaultValue**?: `: any` (默认: 0, 0)<br>**tipFormatter**?: `: ((value?: number) => React.ReactNode)`<br>**value**?: `: number` (默认: 0,0)<br>**min**?: `: number` (默认: 0)<br>**max**?: `: number` (默认: 100)<br>**step**?: `: number` (默认: 1)<br>**disabled**?: `: boolean` (默认: false)<br>**marks**?: `: any` (默认: {})<br>**dots**?: `: boolean` (默认: false)<br>**included**?: `: boolean` (默认: true)<br>**count**?: `: number` (默认: 1)<br>**allowCross**?: `: boolean` (默认: true)<br>**pushable**?: `: boolean | number` (默认: true)<br>**handleStyle**?: `: any`<br>**trackStyle**?: `: any`<br>**railStyle**?: `: any`<br>**onChange**?: `: (value?: number) => void`<br>**onAfterChange**?: `: (value?: number) => void`<br>**defaultValue**?: `: any` (默认: 0, 0)<br>**tipFormatter**?: `: ((value?: number) => React.ReactNode)`<br>**value**?: `: number` (默认: 0,0)<br>**min**?: `: number` (默认: 0)<br>**max**?: `: number` (默认: 100)<br>**step**?: `: number` (默认: 1)<br>**disabled**?: `: boolean` (默认: false)<br>**marks**?: `: any` (默认: {})<br>**dots**?: `: boolean` (默认: false)<br>**included**?: `: boolean` (默认: true)<br>**count**?: `: number` (默认: 1)<br>**allowCross**?: `: boolean` (默认: true)<br>**pushable**?: `: boolean | number` (默认: true)<br>**handleStyle**?: `: any`<br>**trackStyle**?: `: any`<br>**railStyle**?: `: any` |
|
|
60
|
-
| neoSearch | baseUIElement | baseUIElement/neoSearch | **label**?: `: string //标题`<br>**onClick**?: `: Function //点击事件`<br>**icon**?: `: string | number //图标`<br>**iconStyle**?: `: object //图标样式` |
|
|
61
|
-
| neoSearchBar | baseUIElement | baseUIElement/neoSearchBar | **defaultValue**: `string`<br>**value**?: `: string`<br>**placeholder**?: `: string`<br>**onSubmit**?: `: (val?: string) => void`<br>**onChange**?: `: (val?: string) => void`<br>**onFocus**?: `: () => void`<br>**onBlur**?: `: () => void`<br>**onCancel**?: `: (val?: string) => void`<br>**showCancelButton**?: `: boolean` (默认: false)<br>**inputBackgroundColor**?: `: string` (默认: '#f9f9f9')<br>**cancelText**?: `: string` (默认: 取消)<br>**disabled**?: `: boolean` (默认: false)<br>**onClear**?: `: (val?: string) => void`<br>**maxLength**?: `: number`<br>**autoFocus**?: `: boolean` (默认: false)<br>**themeTokens**?: `: object`<br>**defaultValue**: `string`<br>**value**?: `: string`<br>**placeholder**?: `: string`<br>**onSubmit**?: `: (val?: string) => void`<br>**onChange**?: `: (val?: string) => void`<br>**onFocus**?: `: () => void`<br>**onBlur**?: `: () => void`<br>**onCancel**?: `: (val?: string) => void`<br>**showCancelButton**?: `: boolean` (默认: false)<br>**cancelText**?: `: string` (默认: 取消)<br>**disabled**?: `: boolean` (默认: false)<br>**onClear**?: `: (val?: string) => void`<br>**maxLength**?: `: number`<br>**autoFocus**?: `: boolean` (默认: false)<br>**themeTokens**?: `: object` |
|
|
62
|
-
| neoSearchUI | baseUIElement | baseUIElement/searchUI | 无 |
|
|
63
|
-
| neoSegmentedControl | baseUIElement | baseUIElement/segmentedControl | **prefixCls**?: `: string` (默认: am-segment)<br>**className**?: `: string`<br>**tintColor**?: `: string` (默认: #2DB7F5)<br>**disabled**?: `: boolean` (默认: false)<br>**selectedIndex**?: `: number` (默认: 0)<br>**values**?: `: string[]`<br>**onChange**?: `: (e: any) => void`<br>**onValueChange**?: `: (value: string) => void`<br>**style**?: `: any`<br>**themeTokens**?: `: object`<br>**prefixCls**?: `: string` (默认: am-segment)<br>**className**?: `: string`<br>**tintColor**?: `: string` (默认: #2DB7F5)<br>**disabled**?: `: boolean` (默认: false)<br>**selectedIndex**?: `: number` (默认: 0)<br>**values**?: `: string[]`<br>**onChange**?: `: (e: any) => void`<br>**onValueChange**?: `: (value: string) => void`<br>**style**?: `: any`<br>**themeTokens**?: `: object` |
|
|
64
|
-
| neoSegmentedTitle | baseUIElement | baseUIElement/segmentedTitle | **className**?: `: string`<br>**tintColor**?: `: string` (默认: #2DB7F5)<br>**disabled**?: `: boolean` (默认: false)<br>**initIndex**?: `: number` (默认: 0)<br>**titlesArray**?: `: string[]`<br>**onTitleChange**?: `: (e: any) => void`<br>**style**?: `: any`<br>**themeTokens**?: `: object` |
|
|
65
|
-
| neoSlider | baseUIElement | baseUIElement/slider | **min**: `number` (默认: 0)<br>**max**?: `: number` (默认: 100)<br>**step**?: `: number | null`<br>**value**?: `: number`<br>**defaultValue**?: `: number` (默认: 0)<br>**disabled**?: `: boolean` (默认: false)<br>**onChange**?: `: (value?: number) => void`<br>**onAfterChange**?: `: (value?: number) => void`<br>**marks**?: `: object`<br>**dots**?: `: Boolean` (默认: false)<br>**included**?: `: Boolean` (默认: true)<br>**maximumTrackStyle**?: `: Object`<br>**minimumTrackStyle**?: `: Object`<br>**handleStyle**?: `: Object`<br>**trackStyle**?: `: Object`<br>**railStyle**?: `: Object`<br>**min**: `number` (默认: 0)<br>**max**?: `: number` (默认: 100)<br>**step**?: `: number | null`<br>**value**?: `: number`<br>**defaultValue**?: `: number` (默认: 0)<br>**disabled**?: `: boolean` (默认: false)<br>**onChange**?: `: (value?: number) => void`<br>**onAfterChange**?: `: (value?: number) => void`<br>**marks**?: `: object`<br>**dots**?: `: Boolean` (默认: false)<br>**included**?: `: Boolean` (默认: true)<br>**maximumTrackStyle**?: `: Object`<br>**minimumTrackStyle**?: `: Object`<br>**handleStyle**?: `: Object`<br>**trackStyle**?: `: Object`<br>**railStyle**?: `: Object` |
|
|
66
|
-
| neoStepper | baseUIElement | baseUIElement/stepper | **min**?: `: number` (默认: 无)<br>**max**?: `: number` (默认: 无)<br>**step**?: `: number | string` (默认: 无)<br>**readOnly**?: `: boolean` (默认: 无)<br>**disabled**?: `: boolean` (默认: 无)<br>**autoFocus**?: `: boolean` (默认: 无)<br>**value**?: `: number` (默认: 无)<br>**defaultValue**?: `: number` (默认: 无)<br>**onChange**?: `: (value: any) => void` (默认: 无)<br>**style**?: `: {}` (默认: 无)<br>**upStyle**?: `: {}` (默认: 无)<br>**downStyle**?: `: {}` (默认: 无)<br>**inputStyle**?: `: {}` (默认: 无)<br>**name**?: `: string` (默认: 无)<br>**showNumber**?: `: boolean` (默认: 无)<br>**themeTokens**?: `: object`<br>**min**?: `: number` (默认: 无)<br>**max**?: `: number` (默认: 无)<br>**step**?: `: number | string` (默认: 无)<br>**readOnly**?: `: boolean` (默认: 无)<br>**disabled**?: `: boolean` (默认: 无)<br>**autoFocus**?: `: boolean` (默认: 无)<br>**value**?: `: number` (默认: 无)<br>**defaultValue**?: `: number` (默认: 无)<br>**onChange**?: `: (value: any) => void` (默认: 无)<br>**style**?: `: {}` (默认: 无)<br>**upStyle**?: `: {}` (默认: 无)<br>**downStyle**?: `: {}` (默认: 无)<br>**inputStyle**?: `: {}` (默认: 无)<br>**name**?: `: string` (默认: 无)<br>**showNumber**?: `: boolean` (默认: 无)<br>**themeTokens**?: `: object` |
|
|
67
|
-
| neoSteps | baseUIElement | baseUIElement/steps | **stepsChildrenItems**?: `: StepPropsType[]` (默认: 无)<br>**current**?: `: number` (默认: 0)<br>**size**?: `: string` (默认: -)<br>**status**?: `: string` (默认: process)<br>**direction**?: `: "vertical" | "horizontal"` (默认: vertical)<br>**current**?: `: number` (默认: 0)<br>**size**?: `: string` (默认: -)<br>**status**?: `: string` (默认: process)<br>**direction**?: `: "vertical" | "horizontal"` (默认: vertical)<br>**status**?: `: "wait" | "process" | "finish" | "error"` (默认: wait)<br>**title**?: `: SchemaNode | string` (默认: -)<br>**description**?: `: SchemaNode | string` (默认: -)<br>**icon**?: `: SchemaNode | string` (默认: -)<br>**themeTokens**?: `: object`<br>**status**?: `: "wait" | "process" | "finish" | "error"` (默认: wait)<br>**title**?: `: SchemaNode | string` (默认: -)<br>**description**?: `: SchemaNode | string` (默认: -)<br>**icon**?: `: SchemaNode | string` (默认: -)<br>**themeTokens**?: `: object` |
|
|
68
|
-
| neoStyleIcon | baseUIElement | baseUIElement/neoStyleIcon | **name**: `string`<br>**className**: `string`<br>**style**: `Function`<br>**name**: `string`<br>**className**: `string`<br>**style**: `Function` |
|
|
69
|
-
| neoSwipeAction | baseUIElement | baseUIElement/swipeAction | **autoClose**?: `: boolean`<br>**disabled**?: `: boolean`<br>**content**?: `: ReactElement`<br>**neoContent**?: `: object`<br>**leftActions**?: `: Array<{`<br>**text**: `string`<br>**onPress**?: `: () => void`<br>**style**?: `: ReactElement`<br>**className**?: `: string`<br>**rightActions**?: `: Array<{`<br>**onOpen**?: `: () => void`<br>**onClose**?: `: () => void`<br>**headerTitle**?: `: string`<br>**autoSwipe**?: `: boolean`<br>**isInDialog**?: `: boolean`<br>**autoClose**?: `: boolean` (默认: true)<br>**disabled**?: `: boolean` (默认: true)<br>**content**?: `: ReactElement`<br>**neoContent**?: `: object`<br>**leftActions**?: `: Array<{`<br>**text**: `string`<br>**onPress**?: `: () => void`<br>**style**?: `: ReactElement`<br>**className**?: `: string`<br>**rightActions**?: `: Array<{`<br>**onOpen**?: `: () => void`<br>**onClose**?: `: () => void`<br>**headerTitle**?: `: string`<br>**autoSwipe**?: `: boolean`<br>**isInDialog**?: `: boolean` (默认: false) |
|
|
70
|
-
| neoSwitch | baseUIElement | baseUIElement/switch | **checked**?: `: boolean` (默认: false)<br>**disabled**?: `: boolean` (默认: false)<br>**onChange**?: `: (checked: boolean) => void`<br>**color**?: `: string` (默认: #4dd865)<br>**name**?: `: string`<br>**platform**?: `: string` (默认: `ios`)<br>**onClick**?: `: (checked?: boolean) => void`<br>**style**?: `: any`<br>**checked**?: `: boolean` (默认: false)<br>**disabled**?: `: boolean` (默认: false)<br>**onChange**?: `: (checked: boolean) => void`<br>**color**?: `: string` (默认: #4dd865)<br>**name**?: `: string`<br>**platform**?: `: string` (默认: `ios`)<br>**onClick**?: `: (checked?: boolean) => void` |
|
|
71
|
-
| neoTabBarPage | baseUIElement | baseUIElement/tabbar | **prefixCls**?: `: string` (默认: am-tab-bar)<br>**className**?: `: string`<br>**hidden**?: `: boolean` (默认: false)<br>**placeholder**?: `: React.ReactNode` (默认: false)<br>**noRenderContent**?: `: boolean` (默认: false)<br>**prerenderingSiblingsNumber**?: `: number` (默认: 1)<br>**barTintColor**?: `: string` (默认: white)<br>**tintColor**?: `: string` (默认: #108ee9)<br>**unselectedTintColor**?: `: string` (默认: #888)<br>**tabBarPosition**?: `: 'top' | 'bottom'` (默认: bottom)<br>**animated**: `boolean` (默认: false)<br>**swipeable**?: `: boolean` (默认: false)<br>**prefixCls**?: `: string` (默认: am-tab-bar)<br>**className**?: `: string`<br>**hidden**?: `: boolean` (默认: false)<br>**placeholder**?: `: React.ReactNode` (默认: false)<br>**noRenderContent**?: `: boolean` (默认: false)<br>**prerenderingSiblingsNumber**?: `: number` (默认: 1)<br>**barTintColor**?: `: string` (默认: white)<br>**tintColor**?: `: string` (默认: #108ee9)<br>**unselectedTintColor**?: `: string` (默认: #888)<br>**tabBarPosition**?: `: 'top' | 'bottom'` (默认: bottom)<br>**animated**: `boolean` (默认: false)<br>**swipeable**?: `: boolean` (默认: false) |
|
|
72
|
-
| neoTableView | baseUIElement | baseUIElement/tableView | **dataArr**?: `: any` (默认: 无)<br>**currentApiKey**?: `: string` (默认: '')<br>**modalType**: `string` (默认: 'smart')<br>**sortType**: `boolean` (默认: true)<br>**selectDataCallBack**: `Function` (默认: true)<br>**themeTokens**?: `: TableViewThemeTokens` (默认: null)<br>**hiddenSmartCount**: `boolean` (默认: false)<br>**indent**?: `: boolean` (默认: 无)<br>**dataArr**?: `: any` (默认: 无)<br>**currentApiKey**?: `: string` (默认: '')<br>**modalType**: `string` (默认: 'smart')<br>**sortType**: `boolean` (默认: true)<br>**selectDataCallBack**: `Function` (默认: true)<br>**themeTokens**?: `: TableViewThemeTokens` (默认: null) |
|
|
73
|
-
| neoTag | baseUIElement | baseUIElement/tag | **title**?: `: string` (默认: 无)<br>**small**?: `: boolean` (默认: false)<br>**disabled**?: `: boolean` (默认: false)<br>**closable**?: `: boolean` (默认: false)<br>**selected**?: `: boolean` (默认: false)<br>**onChange**?: `: (selected: boolean) => void` (默认: 无)<br>**onClose**?: `: () => void` (默认: 无)<br>**afterClose**?: `: () => void` (默认: 无)<br>**themeTokens**?: `: object`<br>**textColor**?: `: string`<br>**backgroundColor**?: `: string`<br>**title**?: `: string` (默认: 无)<br>**small**?: `: boolean` (默认: false)<br>**disabled**?: `: boolean` (默认: false)<br>**closable**?: `: boolean` (默认: false)<br>**selected**?: `: boolean` (默认: false)<br>**onChange**?: `: (selected: boolean) => void` (默认: 无)<br>**onClose**?: `: () => void` (默认: 无)<br>**afterClose**?: `: () => void` (默认: 无)<br>**themeTokens**?: `: object` |
|
|
74
|
-
| neoTextareaItem | baseUIElement | baseUIElement/textareaItem | **editable**?: `: boolean` (默认: true)<br>**disabled**?: `: boolean` (默认: true)<br>**value**?: `: string`<br>**defaultValue**?: `: string` (默认: -)<br>**placeholder**?: `: string` (默认: '')<br>**clear**?: `: boolean` (默认: false)<br>**maxLength**?: `: number` (默认: false)<br>**error**?: `: boolean` (默认: false)<br>**labelNumber**?: `: number` (默认: 5)<br>**onChange**?: `: (value: string) => void` (默认: -)<br>**onFocus**?: `: TextAreaEventHandle` (默认: -)<br>**onBlur**?: `: TextAreaEventHandle` (默认: -)<br>**title**?: `: React.ReactNode` (默认: -)<br>**rows**?: `: number` (默认: 1)<br>**count**?: `: number` (默认: -)<br>**onErrorClick**?: `: () => void` (默认: (): void)<br>**autoHeight**?: `: boolean` (默认: false)<br>**themeTokens**?: `: InputItemThemeTokens` (默认: null)<br>**autoFocus**?: `: boolean` (默认: false)<br>**setInputRef**?: `: any`<br>**editable**?: `: boolean` (默认: true)<br>**disabled**?: `: boolean` (默认: true)<br>**value**?: `: string`<br>**defaultValue**?: `: string` (默认: -)<br>**placeholder**?: `: string` (默认: '')<br>**clear**?: `: boolean` (默认: false)<br>**maxLength**?: `: number` (默认: false)<br>**error**?: `: boolean` (默认: false)<br>**labelNumber**?: `: number` (默认: 5)<br>**onChange**?: `: (value: string) => void` (默认: -)<br>**onFocus**?: `: TextAreaEventHandle` (默认: -)<br>**onBlur**?: `: TextAreaEventHandle` (默认: -)<br>**title**?: `: React.ReactNode` (默认: -)<br>**rows**?: `: number` (默认: 1)<br>**count**?: `: number` (默认: -)<br>**onErrorClick**?: `: () => void` (默认: (): void)<br>**autoHeight**?: `: boolean` (默认: false)<br>**themeTokens**?: `: InputItemThemeTokens` (默认: null) |
|
|
75
|
-
| neoToTop | baseUIElement | baseUIElement/toTop | **isShow**?: `: boolean // 是否显示` |
|
|
76
|
-
| neoUserInfo | baseUIElement | baseUIElement/userInfo | **userInfo**: `object`<br>**miniLabel**?: `: number`<br>**label**?: `: string`<br>**rightActions**?: `: Array<object>`<br>**divderLine**?: `: 'long' | 'short'`<br>**canNotClick**?: `: boolean`<br>**userInfo**: `object`<br>**miniLabel**?: `: number` (默认: 0)<br>**label**?: `: string`<br>**rightActions**?: `: Array<object>`<br>**divderLine**?: `: 'long' | 'short'` (默认: 'long')<br>**canNotClick**?: `: boolean` (默认: false) |
|
|
77
|
-
| neoUserItem | baseUIElement | baseUIElement/neoUserItem | **userInfo**: `UserInfo`<br>**onClickAction**: `Function`<br>**itemHeader**?: `: ReactElement`<br>**userInfo**: `UserInfo`<br>**onClickAction**: `Function`<br>**itemHeader**: `ReactElement` |
|
|
78
|
-
| neoWhiteSpace | baseUIElement | baseUIElement/whiteSpace | **size**?: `: 'xs' | 'sm' | 'md' | 'lg' | 'xl'` (默认: lg)<br>**className**?: `: string`<br>**style**?: `: any`<br>**size**?: `: 'xs' | 'sm' | 'md' | 'lg' | 'xl'` (默认: lg)<br>**className**?: `: string`<br>**style**?: `: any` |
|
|
79
|
-
| neoWingBlank | baseUIElement | baseUIElement/wingBlank | **size**?: `: 'sm' | 'md' | 'lg'` (默认: lg)<br>**className**?: `: string`<br>**style**?: `: any`<br>**size**?: `: 'sm' | 'md' | 'lg'` (默认: lg)<br>**className**?: `: string`<br>**style**?: `: any` |
|
|
80
|
-
| neoClickContainer | layoutElement | layoutElement/neoClickContainer | **onClick**: `Function`<br>**onClick**: `Function` |
|
|
81
|
-
| neoCustomView | layoutElement | layoutElement/neoCustomView | **type**: `'page'`<br>**title**?: `: string`<br>**commonBody**?: `: any`<br>**bodyClassName**?: `: SchemaClassName`<br>**className**?: `: SchemaClassName`<br>**topBody**?: `: any`<br>**headerClassName**?: `: SchemaClassName`<br>**name**?: `: SchemaName`<br>**addOn**?: `: any` |
|
|
82
|
-
| neoElement | layoutElement | layoutElement/neoElement | **type**: `'page'`<br>**title**?: `: string`<br>**commonBody**?: `: any`<br>**bodyClassName**?: `: SchemaClassName`<br>**className**?: `: SchemaClassName`<br>**topBody**?: `: any`<br>**headerClassName**?: `: SchemaClassName`<br>**name**?: `: SchemaName`<br>**addOn**?: `: any` |
|
|
83
|
-
| neoFlex | layoutElement | layoutElement/neoFlex | **className**?: `: string`<br>**justify**?: `: JUSTIFY`<br>**alignItems**?: `: ALIGN`<br>**style**?: `: object`<br>**direction**?: `: string`<br>**items**: `SchemaNode[]`<br>**render**: `(tag?: string, component?: any) => any` |
|
|
84
|
-
| neoLayoutContainer | layoutElement | layoutElement/neoContainer | **type**: `'neoContainer'`<br>**containerBody**?: `: any`<br>**bodyClassName**?: `: SchemaClassName`<br>**className**?: `: SchemaClassName`<br>**name**?: `: SchemaName`<br>**addOn**?: `: any` |
|
|
85
|
-
| neoLayoutGrid | layoutElement | layoutElement/neoLayoutGrid | **themeTokens**: `any`<br>**gridClassName**: `string`<br>**gap**: `number | string` (默认: 0)<br>**cols**: `number` (默认: 12)<br>**rowHeight**: `number` (默认: 50)<br>**rowGap**: `number | string`<br>**grids**: `Array<GRID_ITEM>`<br>**renderItem**: `Function`<br>**header**: `Function`<br>**footer**: `Function`<br>**themeTokens**: `any`<br>**gridClassName**: `string`<br>**gap**: `number | string` (默认: 0)<br>**cols**: `number` (默认: 12)<br>**rowHeight**: `number` (默认: 50)<br>**rowGap**: `number | string`<br>**grids**: `Array<GRID_ITEM>`<br>**renderItem**: `Function`<br>**header**: `Function`<br>**footer**: `Function` |
|
|
86
|
-
| neoPage | layoutElement | layoutElement/neoPage | **noTitle**?: `: boolean`<br>**pageData**: `any`<br>**titleStrings**?: `: string | Array<string>`<br>**topLeft**?: `: string` (默认: '')<br>**topRight**?: `: string` (默认: '')<br>**leftBtnAppend**?: `: any` (默认: {})<br>**rightBtnAppend**?: `: any` (默认: {})<br>**noLeftBtn**: `boolean`<br>**noRightBtn**: `boolean`<br>**isShowBtn**?: `: boolean`<br>**type**: `'neoPage'`<br>**titleConfig**?: `: ITitleConfigProps`<br>**commonBody**?: `: any`<br>**containerBody**?: `: any`<br>**suspensionBody**?: `: Array<SchemaName>`<br>**globalWidgets**?: `: Array<SchemaName>`<br>**bodyClassName**?: `: SchemaClassName`<br>**suspensionClassName**?: `: SchemaClassName`<br>**className**?: `: SchemaClassName`<br>**topBody**?: `: any`<br>**footerBody**?: `: any`<br>**headerClassName**?: `: SchemaClassName`<br>**footerClassName**?: `: SchemaClassName`<br>**name**?: `: SchemaName` |
|
|
87
|
-
| neoViewContainer | layoutElement | layoutElement/neoViewContainer | **type**: `'neoViewContainer'`<br>**childrenSchema**?: `: Array<any>`<br>**bodyClassName**?: `: SchemaClassName`<br>**className**?: `: SchemaClassName`<br>**hiddenTabBar**?: `: boolean` (默认: false)<br>**tagContainerIndex**?: `: number` (默认: 0)<br>**name**?: `: SchemaName` |
|
|
88
|
-
| neoViewPage | layoutElement | layoutElement/neoViewPage | **type**: `'page'`<br>**title**?: `: string`<br>**commonBody**?: `: any`<br>**bodyClassName**?: `: SchemaClassName`<br>**className**?: `: SchemaClassName`<br>**topBody**?: `: any`<br>**headerClassName**?: `: SchemaClassName`<br>**name**?: `: SchemaName`<br>**addOn**?: `: any` |
|
|
89
|
-
|
|
90
|
-
## 统计信息
|
|
91
|
-
|
|
92
|
-
- 总组件数: 80
|
|
93
|
-
- 按目录分类统计:
|
|
94
|
-
- baseUIElement: 71 个
|
|
95
|
-
- layoutElement: 9 个
|
|
96
|
-
|
|
97
|
-
## Props 配置说明
|
|
98
|
-
|
|
99
|
-
### Props 字段说明
|
|
100
|
-
|
|
101
|
-
- **name**: 属性名称
|
|
102
|
-
- **type**: 属性类型
|
|
103
|
-
- **?**: 可选属性标记
|
|
104
|
-
- **description**: 属性描述(从注释中提取)
|
|
105
|
-
- **default**: 默认值(从注释中提取)
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
# Neo UI Component Web 组件注册汇总 (XRegister.CmpDefine)
|
|
2
|
-
|
|
3
|
-
生成时间: 2026/1/23 15:45:42
|
|
4
|
-
|
|
5
|
-
## 组件列表
|
|
6
|
-
|
|
7
|
-
| 组件类型 (cmpType) | 目录类型 | 组件路径 | Props配置 |
|
|
8
|
-
|---------|---------|---------|----------|
|
|
9
|
-
| listCmp | baseElement | todosPage/cmps/listCmp | **data**: `ListData`<br>**loading**?: `: boolean` |
|
|
10
|
-
| neoIFrame | baseElement | components/GenBizComp/NeoIframe | **render**?: `: any`<br>**urlConfig**: `{`<br>**sourceType**: `string` - 页面内容来源 (默认: 'pageCode')<br>**url**: `string` - 页面Url (默认: '')<br>**pageItem**: `string` - 入口页面的配置信息 (默认: {})<br>**parameters**: `any[]` - 参数 (默认: [])<br>**heightConfig**: `{`<br>**heightType**: `string` - 高度类型 (默认: 'heightFixed')<br>**height**: `number` - 指定高度的值 (默认: 200) |
|
|
11
|
-
| pieCmp | baseElement | todosPage/cmps/pieCmp | **pieData**: `PieChartData`<br>**loading**?: `: boolean` |
|
|
12
|
-
| todosCmp | baseElement | todosPage/cmps/todoCmp | **todo**: `Todo`<br>**onToggle**: `(id: string) => void`<br>**onDelete**: `(id: string) => void`<br>**onEdit**: `(id: string, text: string) => void`<br>**onAdd**?: `: (text: string) => void`<br>**onItemChange**?: `: (snapshot: TodosSnapshot) => void`<br>**todos**?: `: Todo[]`<br>**filter**?: `: TodoFilter`<br>**onToggle**?: `: (id: string) => void`<br>**onDelete**?: `: (id: string) => void`<br>**onEdit**?: `: (id: string, text: string) => void`<br>**onItemChange**?: `: (snapshot: TodosSnapshot) => void` |
|
|
13
|
-
| myEntityGridCmp | layoutElement | neoPage/commonPage/cmps/entityGrid | **__com__**?: `: Com`<br>**objectApiKey**: `string` |
|
|
14
|
-
| objectSelectMenuCmp | layoutElement | neoPage/commonPage/cmps/objectSelect | **activeObjectApiKey**: `string`<br>**setActiveObjectApiKey**: `(apiKey: string) => void` |
|
|
15
|
-
|
|
16
|
-
## 统计信息
|
|
17
|
-
|
|
18
|
-
- 总组件数: 6
|
|
19
|
-
- 按目录分类统计:
|
|
20
|
-
- baseElement: 4 个
|
|
21
|
-
- layoutElement: 2 个
|
|
22
|
-
|
|
23
|
-
## Props 配置说明
|
|
24
|
-
|
|
25
|
-
### Props 字段说明
|
|
26
|
-
|
|
27
|
-
- **name**: 属性名称
|
|
28
|
-
- **type**: 属性类型
|
|
29
|
-
- **?**: 可选属性标记
|
|
30
|
-
- **description**: 属性描述(从注释中提取)
|
|
31
|
-
- **default**: 默认值(从注释中提取)
|