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,292 +0,0 @@
|
|
|
1
|
-
# Neo UI Component 组件注册信息汇总
|
|
2
|
-
|
|
3
|
-
> 生成时间: 2026/1/23 16:04:55
|
|
4
|
-
|
|
5
|
-
> 总计: 282 个组件
|
|
6
|
-
|
|
7
|
-
## 组件列表
|
|
8
|
-
|
|
9
|
-
| 组件名称 | 目录分类 | 组件路径 | Props配置 |
|
|
10
|
-
|---------|---------|---------|----------|
|
|
11
|
-
| autoSyncDisplay | autoDept | autoDept/autoSyncDisplay/index.tsx | 无 |
|
|
12
|
-
| couponsPackage | autoDept | autoDept/couponsPackage/index.tsx | 无 |
|
|
13
|
-
| dimDepartForTextarea | autoDept | autoDept/dimDepartForTextarea/index.tsx | 无 |
|
|
14
|
-
| transactionCategary | autoDept | autoDept/transactionCategary/index.tsx | 无 |
|
|
15
|
-
| ConditionView | baseBusinessElement | baseBusinessElement/ConditionView/index.tsx | **title** (string): 条件视图的标题 (默认: '条件视图')<br>**showTitle** (boolean): 是否显示标题 (默认: true)<br>**conditions** (IConditionItemData[]): 条件配置数据 (默认: [])<br>**readonly** (boolean): 是否只读模式 (默认: false)<br>**metaItems** (IItem[]): 字段元数据 (默认: [])<br>**showAddButton** (boolean): 是否显示添加按钮 (默认: true)<br>**minConditions** (number): 最小条件数量(至少保留多少条,0表示可以全部删除) (默认: 1)<br>**maxConditions** (number): 最大条件数量 (默认: 10)<br>**showAdvFormula** (boolean): 是否显示高级公式 (默认: false)<br>**expression** (string): 表达式 (默认: '')<br>**enableAdvancedInputMode** (boolean): 是否启用高级输入模式(展示右值类型并使用多级选择器) (默认: false)<br>**leftConfig** ({): 左值字段选择器配置<br>**maxLevels** (number): maxLevels<br>**initialOptions** ({): initialOptions<br>**options** (ILevelOptionWithItem[]): options<br>**total** (number): total<br>**requestConfig** (IDataRequest): requestConfig<br>**fetcher** (Fetcher): fetcher<br>**searchConfig** (ISearchConfig): searchConfig<br>**rightConfig** ({): 右值字段选择器配置<br>**maxLevels** (number): maxLevels<br>**initialOptions** ({): initialOptions<br>**options** (ILevelOptionWithItem[]): options<br>**total** (number): total<br>**requestConfig** (IDataRequest): requestConfig<br>**fetcher** (Fetcher): fetcher<br>**searchConfig** (ISearchConfig): searchConfig<br>**rightFieldRequestConfigFactory** ((params: { condition: IConditionItemData): 动态构建右值「字段引用」数据源配置的工厂方法<br>**displaySeparator** (string): MultiLevelSelector 选中值在输入框中的分隔符<br>**operatorConfig** (IOperateOption[]): 自定义操作符列表(完全覆盖默认配置)<br>**fieldTypeOperatorMapping** (Record<number, OperatorType[]>): 自定义字段类型与操作符的映射关系(完全覆盖默认配置)<br>**fieldTypeRightTypeMapping** (Record<number, number[]>): 自定义字段类型与右值类型(值 / 字段引用)的映射关系(完全覆盖默认配置)<br>**rightValueRenderer** ((params: {): 自定义右值渲染函数(可按字段 / 操作符 / 右值类型返回专属的右值输入控件)<br>**condition** (IConditionItemData): 当前整行条件数据<br>**field** (IItem \): null (默认: 当前左值字段元数据(可能来自 metaItems 或 leftItemInfo))<br>**operator** (OperatorType \): string (默认: 当前操作符编码(OperatorType 字符串值))<br>**rightType** (number): 当前右值类型编码:1=值, 2=字段引用, 3=公式 等<br>**onChange** ((value: any) => void): 右值变化回调(需要由自定义右值组件在值变化时显式调用)<br>**fieldOperatorResolver** ((params: {): 按字段粒度自定义可用操作符的解析函数<br>**readOnlyMode** (boolean): 只读模式下, 所有输入框均不可手动输入, 只读展示 (默认: false) |
|
|
16
|
-
| NeoProductPicker | baseBusinessElement | baseBusinessElement/CustomCmp/productPicker/index.tsx | 无 |
|
|
17
|
-
| NeoProductTree | baseBusinessElement | baseBusinessElement/CustomCmp/productTree/index.tsx | 无 |
|
|
18
|
-
| DepartRelation | baseBusinessElement | baseBusinessElement/DepartRelation/index.tsx | 无 |
|
|
19
|
-
| DepartTree | baseBusinessElement | baseBusinessElement/DepartTree/index.tsx | 无 |
|
|
20
|
-
| FieldTypeSelect | baseBusinessElement | baseBusinessElement/FieldTypeSelect/index.tsx | 无 |
|
|
21
|
-
| NeoGridSmartView | baseBusinessElement | baseBusinessElement/NeoGridSmartView/index.tsx | 无 |
|
|
22
|
-
| neoAutoSelect | baseBusinessElement | baseBusinessElement/SearchCondition/NeoAutoSelect/index.tsx | 无 |
|
|
23
|
-
| neoDateRange | baseBusinessElement | baseBusinessElement/SearchCondition/NeoDateRange/index.tsx | 无 |
|
|
24
|
-
| neoTextEntry | baseBusinessElement | baseBusinessElement/SearchCondition/NeoTextEntry/index.tsx | 无 |
|
|
25
|
-
| SearchCondition | baseBusinessElement | baseBusinessElement/SearchCondition/index.tsx | 无 |
|
|
26
|
-
| neoAddressSelector | baseUIElement | baseUIElement/AddressSelector/index.tsx | 无 |
|
|
27
|
-
| neoAffix | baseUIElement | baseUIElement/Affix/index.tsx | 无 |
|
|
28
|
-
| neoGridEditing | baseUIElement | baseUIElement/AggridEditing/index.tsx | 无 |
|
|
29
|
-
| neoAlert | baseUIElement | baseUIElement/Alert/index.tsx | 无 |
|
|
30
|
-
| neoAnchor | baseUIElement | baseUIElement/Anchor/index.tsx | 无 |
|
|
31
|
-
| neoAutoComplete | baseUIElement | baseUIElement/AutoComplete/index.tsx | 无 |
|
|
32
|
-
| neoAvatarGroup | baseUIElement | baseUIElement/AvatarGroup/index.ts | 无 |
|
|
33
|
-
| neoBackTop | baseUIElement | baseUIElement/BackTop/index.tsx | 无 |
|
|
34
|
-
| neoBreadcrumb | baseUIElement | baseUIElement/Breadcrumb/index.tsx | 无 |
|
|
35
|
-
| neoButton | baseUIElement | baseUIElement/Button/index.ts | 无 |
|
|
36
|
-
| neoCalendar | baseUIElement | baseUIElement/Calendar/index.ts | 无 |
|
|
37
|
-
| neoCard | baseUIElement | baseUIElement/Card/index.ts | 无 |
|
|
38
|
-
| neoCarousel | baseUIElement | baseUIElement/Carousel/index.tsx | 无 |
|
|
39
|
-
| neoCascader | baseUIElement | baseUIElement/Cascader/index.tsx | 无 |
|
|
40
|
-
| neoCheckbox | baseUIElement | baseUIElement/Checkbox/index.tsx | 无 |
|
|
41
|
-
| neoCheckboxGroup | baseUIElement | baseUIElement/CheckboxGroup/index.tsx | 无 |
|
|
42
|
-
| neoCollapse | baseUIElement | baseUIElement/Collapse/index.tsx | 无 |
|
|
43
|
-
| neoCountdown | baseUIElement | baseUIElement/Countdown/index.tsx | 无 |
|
|
44
|
-
| neoCustomSelect | baseUIElement | baseUIElement/CustomSelect/index.ts | 无 |
|
|
45
|
-
| neoDivider | baseUIElement | baseUIElement/Divider/index.tsx | 无 |
|
|
46
|
-
| neoDropdown | baseUIElement | baseUIElement/Dropdown/index.tsx | 无 |
|
|
47
|
-
| neoEmpty | baseUIElement | baseUIElement/Empty/index.tsx | 无 |
|
|
48
|
-
| neoFeatrueTip | baseUIElement | baseUIElement/Featrue/index.tsx | 无 |
|
|
49
|
-
| neoLayout | baseUIElement | baseUIElement/Layout/index.tsx | 无 |
|
|
50
|
-
| neoMenu | baseUIElement | baseUIElement/Menu/index.tsx | 无 |
|
|
51
|
-
| menuIcon | baseUIElement | baseUIElement/MenuIcon/index.tsx | 无 |
|
|
52
|
-
| neoMessage | baseUIElement | baseUIElement/Message/index.tsx | 无 |
|
|
53
|
-
| neoModal | baseUIElement | baseUIElement/Modal/index.tsx | 无 |
|
|
54
|
-
| NeoGrid | baseUIElement | baseUIElement/NeoGrid/index.tsx | 无 |
|
|
55
|
-
| neoPopCheck | baseUIElement | baseUIElement/NeoGrid/index.tsx | 无 |
|
|
56
|
-
| CustomNameField | baseUIElement | baseUIElement/NeoGrid/index.tsx | 无 |
|
|
57
|
-
| neoBulkEditDialog | baseUIElement | baseUIElement/NeoGrid/index.tsx | 无 |
|
|
58
|
-
| NeoGridNew | baseUIElement | baseUIElement/NeoGridNew/index.ts | 无 |
|
|
59
|
-
| neoMap | baseUIElement | baseUIElement/NeoMap/index.tsx | 无 |
|
|
60
|
-
| NeoPage | baseUIElement | baseUIElement/NeoPage/index.tsx | 无 |
|
|
61
|
-
| neoSelector | baseUIElement | baseUIElement/NeoSelector/index.tsx | 无 |
|
|
62
|
-
| neoPageHeader | baseUIElement | baseUIElement/PageHeader/index.tsx | 无 |
|
|
63
|
-
| neoPagination | baseUIElement | baseUIElement/Pagination/index.tsx | 无 |
|
|
64
|
-
| neoPopconfirm | baseUIElement | baseUIElement/Popconfirm/index.tsx | 无 |
|
|
65
|
-
| neoPopover | baseUIElement | baseUIElement/Popover/index.tsx | 无 |
|
|
66
|
-
| neoProgress | baseUIElement | baseUIElement/Progress/index.tsx | 无 |
|
|
67
|
-
| neoResult | baseUIElement | baseUIElement/Result/index.tsx | 无 |
|
|
68
|
-
| neoRichText | baseUIElement | baseUIElement/RichText/index.tsx | 无 |
|
|
69
|
-
| neoSearch | baseUIElement | baseUIElement/Search/index.ts | 无 |
|
|
70
|
-
| neoSkeleton | baseUIElement | baseUIElement/Skeleton/index.tsx | 无 |
|
|
71
|
-
| neoSpace | baseUIElement | baseUIElement/Space/index.tsx | 无 |
|
|
72
|
-
| neoSpin | baseUIElement | baseUIElement/Spin/index.tsx | 无 |
|
|
73
|
-
| neoStatistic | baseUIElement | baseUIElement/Statistic/index.tsx | 无 |
|
|
74
|
-
| neoSteps | baseUIElement | baseUIElement/Steps/index.tsx | 无 |
|
|
75
|
-
| neoTable | baseUIElement | baseUIElement/Table/index.tsx | 无 |
|
|
76
|
-
| neoTabs | baseUIElement | baseUIElement/Tabs/index.tsx | 无 |
|
|
77
|
-
| neoTag | baseUIElement | baseUIElement/Tag/index.tsx | 无 |
|
|
78
|
-
| neoTimeline | baseUIElement | baseUIElement/Timeline/index.tsx | 无 |
|
|
79
|
-
| neoTooltip | baseUIElement | baseUIElement/Tooltip/index.tsx | 无 |
|
|
80
|
-
| neoTransfer | baseUIElement | baseUIElement/Transfer/index.tsx | 无 |
|
|
81
|
-
| neoTree | baseUIElement | baseUIElement/Tree/index.tsx | 无 |
|
|
82
|
-
| neoTreeGrid | baseUIElement | baseUIElement/TreeGrid/index.tsx | 无 |
|
|
83
|
-
| neoTreeSelect | baseUIElement | baseUIElement/TreeSelect/index.tsx | 无 |
|
|
84
|
-
| neoAvatar | baseUIElement | baseUIElement/avatar/index.ts | 无 |
|
|
85
|
-
| neoBadge | baseUIElement | baseUIElement/badge/index.ts | 无 |
|
|
86
|
-
| neoContainer | baseUIElement | baseUIElement/container/index.tsx | 无 |
|
|
87
|
-
| neoDatePicker | baseUIElement | baseUIElement/datePicker/index.ts | 无 |
|
|
88
|
-
| neoDescriptions | baseUIElement | baseUIElement/descriptions/index.ts | 无 |
|
|
89
|
-
| neoEditor | baseUIElement | baseUIElement/eitor/index.ts | 无 |
|
|
90
|
-
| neoIconView | baseUIElement | baseUIElement/icons/index.tsx | 无 |
|
|
91
|
-
| neoIframe | baseUIElement | baseUIElement/iframe/index.tsx | 无 |
|
|
92
|
-
| neoInput | baseUIElement | baseUIElement/input/index.ts | 无 |
|
|
93
|
-
| neoInputNumber | baseUIElement | baseUIElement/inputNumber/index.ts | 无 |
|
|
94
|
-
| neoInputTree | baseUIElement | baseUIElement/inputTree/index.tsx | 无 |
|
|
95
|
-
| neoLayoutError | baseUIElement | baseUIElement/layoutError/index.tsx | 无 |
|
|
96
|
-
| neoList | baseUIElement | baseUIElement/list/index.ts | 无 |
|
|
97
|
-
| neoMentions | baseUIElement | baseUIElement/mentions/index.tsx | 无 |
|
|
98
|
-
| menuButton | baseUIElement | baseUIElement/menuButton/index.ts | 无 |
|
|
99
|
-
| neoImage | baseUIElement | baseUIElement/neoImage/index.tsx | 无 |
|
|
100
|
-
| neoRadio | baseUIElement | baseUIElement/radio/index.ts | 无 |
|
|
101
|
-
| neoRate | baseUIElement | baseUIElement/rate/index.tsx | 无 |
|
|
102
|
-
| neo_select | baseUIElement | baseUIElement/select/index.tsx | 无 |
|
|
103
|
-
| neoSlider | baseUIElement | baseUIElement/slider/index.tsx | 无 |
|
|
104
|
-
| neoSwitch | baseUIElement | baseUIElement/switch/index.tsx | 无 |
|
|
105
|
-
| neoTimePicker | baseUIElement | baseUIElement/timePicker/index.tsx | 无 |
|
|
106
|
-
| neoUpload | baseUIElement | baseUIElement/upload/index.ts | 无 |
|
|
107
|
-
| biCustomerAssociatedEntities | bicomponents | bicomponents/biCustomerAssociatedEntities/index.tsx | 无 |
|
|
108
|
-
| AnnualReportDetail | bicomponents | bicomponents/biCustomerDetail/biEnterpriseInfo/biEnterpriseOverview/annualReports/index.tsx | 无 |
|
|
109
|
-
| BiCustomerDetail | bicomponents | bicomponents/biCustomerDetail/index.tsx | 无 |
|
|
110
|
-
| biCustomerMap | bicomponents | bicomponents/biCustomerMap/index.tsx | 无 |
|
|
111
|
-
| BiFavoriteCustomers | bicomponents | bicomponents/biFavoriteCustomers/index.tsx | 无 |
|
|
112
|
-
| FindCustomersAdvancedFilter | bicomponents | bicomponents/biFindCustomers/findCustomersFilter/index.tsx | 无 |
|
|
113
|
-
| biFindCustomers | bicomponents | bicomponents/biFindCustomers/findCustomersHome/index.tsx | 无 |
|
|
114
|
-
| TransitionPage | bicomponents | bicomponents/biFindCustomersCommonWidget/transComponents/index.tsx | 无 |
|
|
115
|
-
| FCErterpriseInfoChange | bicomponents | bicomponents/enterpriseInfoChange/index.tsx | 无 |
|
|
116
|
-
| FCIntelligentRecommend | bicomponents | bicomponents/intelligentRecommend/index.tsx | 无 |
|
|
117
|
-
| FCIRAddSeedCustomersManually | bicomponents | bicomponents/intelligentRecommend/seedCustomers/index.tsx | 无 |
|
|
118
|
-
| OppWinRecommend | bicomponents | bicomponents/oppWinRecommend/index.tsx | 无 |
|
|
119
|
-
| neoBIGridLayout | components | components/BI/BIGridLayout/index.tsx | 无 |
|
|
120
|
-
| neoBIPointView | components | components/BI/BIPointView/index.tsx | 无 |
|
|
121
|
-
| ChildRowEditTitle | components | components/BulkEditsForm/childRowEditTitle/index.tsx | 无 |
|
|
122
|
-
| BulkEditsForm | components | components/BulkEditsForm/index.tsx | 无 |
|
|
123
|
-
| UnconsciousPublishing | components | components/DayoneLayout/UnconsciousPublishing/index.tsx | **pageType** ('button' \): 'layout' \ (默认: 'appDesigner')<br>**initValue** (Record<string, any>): 组件初始化值 (默认: {})<br>**dispatcher** ((methodName: string, ...args: any[]) => void): 组件方法调配器,用于统一管理组件对外暴露的方法 (默认: undefined)<br>**platform** ('admin' \): 'web' (默认: 平台类型) |
|
|
124
|
-
| neoDetailApprovalBar | components | components/EntityDetail/ApprovalBar/index.tsx | 无 |
|
|
125
|
-
| neoDetailApprovalHistory | components | components/EntityDetail/ApprovalFlowBar/component/approvalHistory/index.tsx | 无 |
|
|
126
|
-
| neoDetailApprovalHistoryDialog | components | components/EntityDetail/ApprovalFlowBar/component/approvalHistoryDialog/index.tsx | 无 |
|
|
127
|
-
| neoDetailApprovalOperate | components | components/EntityDetail/ApprovalFlowBar/component/approvalOperate/index.tsx | 无 |
|
|
128
|
-
| neoDetailApprovalFlowBar | components | components/EntityDetail/ApprovalFlowBar/index.tsx | 无 |
|
|
129
|
-
| neoApprovalFlowBar | components | components/EntityDetail/ApprovalFlowBar/index.tsx | 无 |
|
|
130
|
-
| neoDetailActivityRecord | components | components/EntityDetail/CrmActivityRecord/index.tsx | 无 |
|
|
131
|
-
| neoDetailCrmFeed | components | components/EntityDetail/CrmFeed/index.tsx | 无 |
|
|
132
|
-
| neoDetailCrmFeedNew | components | components/EntityDetail/CrmFeedNew/index.tsx | 无 |
|
|
133
|
-
| neoDetailBusinessMap | components | components/EntityDetail/DetailBusinessMap/index.tsx | 无 |
|
|
134
|
-
| neoDetailToolbar | components | components/EntityDetail/DetailHeader/components/index.tsx | 无 |
|
|
135
|
-
| neoInvalidDataView | components | components/EntityDetail/DetailHeader/components/index.tsx | 无 |
|
|
136
|
-
| neoDetailHeader | components | components/EntityDetail/DetailHeader/index.tsx | 无 |
|
|
137
|
-
| neoDetailHierarchy | components | components/EntityDetail/DetailHierarchy/index.tsx | 无 |
|
|
138
|
-
| neoLabelSet | components | components/EntityDetail/DetailLabelSet/index.tsx | **store** (IDetailLabelSetStore): store<br>**objectApiKey** (string): objectApiKey<br>**recordId** (number): recordId<br>**attributes** (any): attributes |
|
|
139
|
-
| neoDetailProgress | components | components/EntityDetail/DetailProgress/index.tsx | 无 |
|
|
140
|
-
| neoDetailRecommend | components | components/EntityDetail/DetailRecommend/index.tsx | 无 |
|
|
141
|
-
| neoDetailRefer | components | components/EntityDetail/DetailRefer/index.tsx | 无 |
|
|
142
|
-
| neoReferContainer | components | components/EntityDetail/DetailReferContainer/index.tsx | 无 |
|
|
143
|
-
| neoDetailReferTags | components | components/EntityDetail/DetailReferTags/index.tsx | 无 |
|
|
144
|
-
| neoDetailRelationMap | components | components/EntityDetail/DetailRelationMap/index.tsx | 无 |
|
|
145
|
-
| neoDetailTabs | components | components/EntityDetail/DetailTabs/index.tsx | 无 |
|
|
146
|
-
| neoDetailGroupMember | components | components/EntityDetail/GroupMember/index.tsx | 无 |
|
|
147
|
-
| neoHomeBanner | components | components/EntityDetail/HomeBanner/index.tsx | 无 |
|
|
148
|
-
| neoHomeIFrame | components | components/EntityDetail/HomeIFrame/index.tsx | **render** (any): render<br>**store** (any): store<br>**url** (string): url<br>**height** (number \): string (默认: height)<br>**attributes** (any): attributes<br>**entityId** (number): entityId<br>**recordId** (number): recordId |
|
|
149
|
-
| neoTeamMemberList | components | components/EntityDetail/TeamMember/amisRegister.tsx | **entityApiKey** (string): entityApiKey<br>**entityTypeApiKey** (string): entityTypeApiKey<br>**entityTypeId** (number): entityTypeId<br>**recordId** (number): recordId<br>**showTabs** (boolean): showTabs<br>**addForRelated** (boolean): addForRelated<br>**dataOwnerId** (number): dataOwnerId<br>**groupId** (number): groupId<br>**belongId** (number): belongId<br>**actionType** (string): actionType |
|
|
150
|
-
| neoTeamMemberHeaderRight | components | components/EntityDetail/TeamMember/amisRegister.tsx | **entityApiKey** (string): entityApiKey<br>**entityTypeApiKey** (string): entityTypeApiKey<br>**entityTypeId** (number): entityTypeId<br>**recordId** (number): recordId<br>**showTabs** (boolean): showTabs<br>**addForRelated** (boolean): addForRelated<br>**dataOwnerId** (number): dataOwnerId<br>**groupId** (number): groupId<br>**belongId** (number): belongId<br>**actionType** (string): actionType |
|
|
151
|
-
| neoTeamMemberHeaderLeft | components | components/EntityDetail/TeamMember/amisRegister.tsx | **entityApiKey** (string): entityApiKey<br>**entityTypeApiKey** (string): entityTypeApiKey<br>**entityTypeId** (number): entityTypeId<br>**recordId** (number): recordId<br>**showTabs** (boolean): showTabs<br>**addForRelated** (boolean): addForRelated<br>**dataOwnerId** (number): dataOwnerId<br>**groupId** (number): groupId<br>**belongId** (number): belongId<br>**actionType** (string): actionType |
|
|
152
|
-
| neoTeamMember | components | components/EntityDetail/TeamMember/index.tsx | **entityApiKey** (string): entityApiKey<br>**entityTypeApiKey** (string): entityTypeApiKey<br>**entityTypeId** (number): entityTypeId<br>**recordId** (number): recordId<br>**showTabs** (boolean): showTabs<br>**addForRelated** (boolean): addForRelated<br>**dataOwnerId** (number): dataOwnerId<br>**groupId** (number): groupId<br>**belongId** (number): belongId<br>**actionType** (string): actionType |
|
|
153
|
-
| neoDetailWorkflowBar | components | components/EntityDetail/WorkFlowBar/index.tsx | 无 |
|
|
154
|
-
| neoDetailWorkFlowForm | components | components/EntityDetail/WorkFlowForm/index.tsx | 无 |
|
|
155
|
-
| neoDetailWorkFlowLane | components | components/EntityDetail/WorkFlowLane/index.tsx | 无 |
|
|
156
|
-
| neoDetailWorkFlowProgress | components | components/EntityDetail/WorkFlowProgress/index.tsx | 无 |
|
|
157
|
-
| EntityDetail | components | components/EntityDetail/index.tsx | 无 |
|
|
158
|
-
| FieldSetTitle | components | components/EntityDetail/information/components/index.tsx | 无 |
|
|
159
|
-
| neoDetailInfo | components | components/EntityDetail/information/index.tsx | 无 |
|
|
160
|
-
| formAddressField | components | components/EntityForm/FormAddress/index.tsx | **fieldInfo** (object): 字段元数据<br>**disableAutoSearch** (boolean): 是否禁用 autoSearch (默认: true)<br>**disableMapPoint** (boolean): 是否禁用 地图选点 (默认: false)<br>**data** (object): 表单数据 |
|
|
161
|
-
| FormCurrency | components | components/EntityForm/FormCurrency/index.tsx | 无 |
|
|
162
|
-
| FormDateTimePicker | components | components/EntityForm/FormDateTimePicker/index.tsx | 无 |
|
|
163
|
-
| FormDocument | components | components/EntityForm/FormDocument/index.tsx | 无 |
|
|
164
|
-
| FormFilePicker | components | components/EntityForm/FormFilePicker/index.tsx | 无 |
|
|
165
|
-
| FormFullScreen | components | components/EntityForm/FormFullScreen/index.tsx | 无 |
|
|
166
|
-
| FormImageUpload | components | components/EntityForm/FormImageUpload/index.ts | 无 |
|
|
167
|
-
| FormInputNumber | components | components/EntityForm/FormInputNumber/index.tsx | 无 |
|
|
168
|
-
| FormLocal | components | components/EntityForm/FormLocal/index.tsx | 无 |
|
|
169
|
-
| FormModalTitle | components | components/EntityForm/FormModalTitle/index.tsx | 无 |
|
|
170
|
-
| DetailMultiRelation | components | components/EntityForm/FormMultiRelation/DetailMultiRelation/index.tsx | 无 |
|
|
171
|
-
| TableMultiRelation | components | components/EntityForm/FormMultiRelation/TableMultiRelation/index.tsx | 无 |
|
|
172
|
-
| MultiRelation | components | components/EntityForm/FormMultiRelation/index.tsx | 无 |
|
|
173
|
-
| FormPercent | components | components/EntityForm/FormPercent/index.tsx | 无 |
|
|
174
|
-
| FormRecordFromInput | components | components/EntityForm/FormRecordFromInput/index.tsx | 无 |
|
|
175
|
-
| masterRelation | components | components/EntityForm/FormRelation/index.tsx | 无 |
|
|
176
|
-
| formRelationField | components | components/EntityForm/FormRelationField/index.tsx | **listHeight** (number): 下拉选项的高度<br>**fieldInfo** (object): 字段元数据<br>**disableAutoSearch** (boolean): 是否禁用 autoSearch<br>**data** (object): 表单数据<br>**searchCustomData** (Function): picker自定义参数 |
|
|
177
|
-
| FormRichText | components | components/EntityForm/FormRichText/index.tsx | 无 |
|
|
178
|
-
| neoSelect | components | components/EntityForm/FormSelect/index.tsx | 无 |
|
|
179
|
-
| FormSwitch | components | components/EntityForm/FormSwitch/index.tsx | 无 |
|
|
180
|
-
| FormTextInput | components | components/EntityForm/FormText/index.tsx | 无 |
|
|
181
|
-
| neoTextArea | components | components/EntityForm/FormTextArea/index.tsx | 无 |
|
|
182
|
-
| FormTimePicker | components | components/EntityForm/FormTimePicker/index.tsx | 无 |
|
|
183
|
-
| FormTreeSelect | components | components/EntityForm/FormTreeSelect/index.tsx | 无 |
|
|
184
|
-
| FormUserAndDepart | components | components/EntityForm/FormUserAndDepart/index.tsx | 无 |
|
|
185
|
-
| GroupMemberManagement | components | components/EntityForm/GroupMember/coms/index.tsx | 无 |
|
|
186
|
-
| GroupMember | components | components/EntityForm/GroupMember/index.tsx | **label** (string): label<br>**value** (string): value<br>**groupMembers** (GroupMemberExtendsMember[]): groupMembers<br>**onChange** (() => {}): onChange<br>**onClick** (() => {}): onClick |
|
|
187
|
-
| draftGridCom | components | components/EntityForm/cmps/DraftGrid/index.tsx | 无 |
|
|
188
|
-
| draftGrid | components | components/EntityForm/cmps/DraftGrid/index.tsx | 无 |
|
|
189
|
-
| EntityFormBottom | components | components/EntityForm/cmps/EntityFormBottom/index.tsx | 无 |
|
|
190
|
-
| EntityFormHead | components | components/EntityForm/cmps/EntityFormHead/index.tsx | 无 |
|
|
191
|
-
| MultiColumnsBtn | components | components/EntityForm/multiColumnsBtn/index.tsx | 无 |
|
|
192
|
-
| EntityForm | components | components/EntityForm/neoForm/index.tsx | 无 |
|
|
193
|
-
| ObjectFormChildren | components | components/EntityFormChildren/index.tsx | 无 |
|
|
194
|
-
| entityGrid | components | components/EntityGrid/index.tsx | 无 |
|
|
195
|
-
| childBatchAdd | components | components/Field/BatchAdd/index.tsx | 无 |
|
|
196
|
-
| FieldCurrency | components | components/Field/Currency/index.tsx | 无 |
|
|
197
|
-
| FieldCurrency20 | components | components/Field/Currency/index.tsx | 无 |
|
|
198
|
-
| FieldDateTimePicker | components | components/Field/DateTimePicker/index.tsx | 无 |
|
|
199
|
-
| FieldDateTimePicker20 | components | components/Field/DateTimePicker/index.tsx | 无 |
|
|
200
|
-
| FieldDimDepartDisplay | components | components/Field/DimDepartDisplay/index.tsx | 无 |
|
|
201
|
-
| FieldDimDepartDisplay20 | components | components/Field/DimDepartDisplay/index.tsx | 无 |
|
|
202
|
-
| FieldInputNumber | components | components/Field/InputNumber/index.tsx | 无 |
|
|
203
|
-
| FieldInputNumber20 | components | components/Field/InputNumber/index.tsx | 无 |
|
|
204
|
-
| multiRelation | components | components/Field/MultiRelation/index.tsx | 无 |
|
|
205
|
-
| FieldPercent | components | components/Field/Percent/index.tsx | 无 |
|
|
206
|
-
| FieldPercent20 | components | components/Field/Percent/index.tsx | 无 |
|
|
207
|
-
| childRelation | components | components/Field/Relation/index.tsx | 无 |
|
|
208
|
-
| childRelation20 | components | components/Field/Relation/index.tsx | 无 |
|
|
209
|
-
| FieldRichText | components | components/Field/RichText/index.tsx | 无 |
|
|
210
|
-
| FieldRichText20 | components | components/Field/RichText/index.tsx | 无 |
|
|
211
|
-
| FieldSelect | components | components/Field/Select/index.tsx | 无 |
|
|
212
|
-
| FieldSelect20 | components | components/Field/Select/index.tsx | 无 |
|
|
213
|
-
| FieldSwitch | components | components/Field/Switch/index.tsx | 无 |
|
|
214
|
-
| FieldSwitch20 | components | components/Field/Switch/index.tsx | 无 |
|
|
215
|
-
| FieldTextArea | components | components/Field/TextArea/index.tsx | 无 |
|
|
216
|
-
| FieldTextArea20 | components | components/Field/TextArea/index.tsx | 无 |
|
|
217
|
-
| FieldTimePicker | components | components/Field/TimePicker/index.tsx | 无 |
|
|
218
|
-
| FieldTimePicker20 | components | components/Field/TimePicker/index.tsx | 无 |
|
|
219
|
-
| FieldTreeSelect | components | components/Field/TreeSelect/index.tsx | 无 |
|
|
220
|
-
| FieldTreeSelect20 | components | components/Field/TreeSelect/index.tsx | 无 |
|
|
221
|
-
| FieldUserAvatar | components | components/Field/UserAvatar/index.tsx | 无 |
|
|
222
|
-
| FieldUserAvatar20 | components | components/Field/UserAvatar/index.tsx | 无 |
|
|
223
|
-
| FieldUserDisplay | components | components/Field/UserDisplay/index.tsx | 无 |
|
|
224
|
-
| FieldUserDisplay20 | components | components/Field/UserDisplay/index.tsx | 无 |
|
|
225
|
-
| neoEntityForm | components | components/GenBizComp/NeoEntityForm/index.tsx | 无 |
|
|
226
|
-
| neoEntityGrid | components | components/GenBizComp/NeoEntityGrid/index.tsx | 无 |
|
|
227
|
-
| neoQuickMenu | components | components/GenBizComp/NeoQuickMenu/index.tsx | 无 |
|
|
228
|
-
| NavGrid | components | components/NavGrid/index.tsx | 无 |
|
|
229
|
-
| ApprovalUserAndDepart | components | components/NeoBpm/ApprovalUserAndDepart/index.tsx | 无 |
|
|
230
|
-
| ApprovalWorkBench | components | components/NeoBpm/approvalWorkBench/index.tsx | 无 |
|
|
231
|
-
| ApprovalWorkBenchSummary | components | components/NeoBpm/approvalWorkBench/index.tsx | 无 |
|
|
232
|
-
| ApprovalForm | components | components/NeoBpm/flow/approvalForm/index.tsx | 无 |
|
|
233
|
-
| ApprovalFlowHistory | components | components/NeoBpm/flow/flowDetail/flowHistory/index.tsx | 无 |
|
|
234
|
-
| ApprovalWorkFlowHistoryDialog | components | components/NeoBpm/flow/flowDetail/flowHistoryDialog/index.tsx | 无 |
|
|
235
|
-
| workFlowOperate | components | components/NeoBpm/flow/flowDetail/flowOperate/index.tsx | 无 |
|
|
236
|
-
| WorkFlowFormFields | components | components/NeoBpm/flow/flowDetail/formFields/index.tsx | 无 |
|
|
237
|
-
| WorkFlowDetail | components | components/NeoBpm/flow/flowDetail/index.tsx | 无 |
|
|
238
|
-
| WorkFlowToolBar | components | components/NeoBpm/flow/flowDetail/toolbar/index.tsx | 无 |
|
|
239
|
-
| WorkFlowProcess | components | components/NeoBpm/flow/flowDetail/workFlowProcess/index.tsx | 无 |
|
|
240
|
-
| IndexApprovalList | components | components/NeoBpm/indexApprovalList/index.tsx | 无 |
|
|
241
|
-
| BulkEditsFormX | components | components/NeoForm/BulkEditsForm/index.tsx | 无 |
|
|
242
|
-
| EntityCompositeForm | components | components/NeoForm/EntityForm/index.tsx | **objectApiKey** (string): 关联实体的ApiKey<br>**busiTypeApiKey** (string): 业务类型apiKey<br>**entityInfo** (IEntity): 实体的详细信息<br>**initData** (object): 表单的默认值 (默认: true)<br>**items** (Array<IEntityItem>): 实体的所有字段项<br>**subCmps** (Array<IComMate>): 该复合组件下面的子组件<br>**defaultColumns** (number): 默认显示列数 (默认: 2)<br>**itemGroupingMode** (string): 字段分组模式<br>**itemDisplayStructure** (itemDisplayStructureType): 字段显示结构 (默认: normal)<br>**includeFormDetail** (boolean): 是否包含子明细组件<br>**body** (any): 子组件的schema<br>**formType** (FormSceneType): 表单类型,创建、编辑、生成、复制等 (默认: create)<br>**recordId** (number): 实体的数据ID 再编辑场景化会使用 (默认: undefined) |
|
|
243
|
-
| FormMaster | components | components/NeoForm/EntityMaster/index.tsx | **objectApiKey** (string): 关联实体的ApiKey<br>**businessType** (string): 关联实体的业务类型ApiKey<br>**busiTypeApiKey** (string): 业务类型apiKey<br>**entityInfo** (IEntity): 实体的详细信息<br>**initData** (object): 表单的默认值 (默认: true)<br>**items** (Array<IEntityItem>): 实体的所有字段项<br>**subCmps** (Array<IComMate>): 该复合组件下面的子组件<br>**defaultColumns** (number): 默认显示列数 (默认: 2)<br>**itemGroupingMode** (string): 字段分组模式<br>**itemDisplayStructure** (itemDisplayStructureType): 字段显示结构 (默认: normal)<br>**itemAlignType** (string): 字段对齐方式<br>**displayReadonlyItem** (string): 是否显示只读字段<br>**formType** (FormSceneType): 表单类型,创建、编辑、生成、复制等 (默认: create)<br>**recordId** (number): 实体的数据ID 再编辑场景化会使用 (默认: undefined)<br>**closeForm** (Function): closeForm<br>**hideParent** (boolean): hideParent<br>**approvalInfo** (any): approvalInfo<br>**container** (string): container<br>**formPageClose** (Function): formPageClose |
|
|
244
|
-
| FormBottom | components | components/NeoForm/FormBottom/index.tsx | **regions** (object): 复合组件的布局排版模板<br>**subCmps** (Array<IComMate>): 底部组件内的子组件<br>**body** ({ columns: Array<{ body: Array<any>, type: string }>, align: string, gap: string...): 复合组件的JsonSchema<br>**formButton** (Array<ButtonProps>): 底部组件按钮组入参 |
|
|
245
|
-
| FormDocumentX | components | components/NeoForm/FormDocument/index.tsx | 无 |
|
|
246
|
-
| EntityFormDetail | components | components/NeoForm/FormEntityChildren/EntityFormDetail/index.tsx | **objectApiKey** (string): 关联实体的ApiKey<br>**formType** (FormSceneType): 表单类型,创建、编辑、生成、复制等 (默认: create)<br>**disabled** (FormSceneType): 禁用整个列表 (默认: create)<br>**allowAddRow** (FormSceneType): 是否允许自动新增空白行 (默认: create)<br>**disabledMutilCreate** (FormSceneType): 是否进行允许批量新建 (默认: create)<br>**defaultFolded** (boolean): defaultFolded (默认: create)<br>**busiTypeApiKey** (string): busiTypeApiKey<br>**tabEnableCreate** (boolean): tabEnableCreate<br>**enableCreate** (boolean): enableCreate |
|
|
247
|
-
| EntityFormDetailTab | components | components/NeoForm/FormEntityChildren/EntityFormDetailTab/index.tsx | **objectApiKey** (string): 关联实体的ApiKey<br>**formType** (FormSceneType): 表单类型,创建、编辑、生成、复制等 (默认: create)<br>**loadAllData** (boolean): 表单类型,创建、编辑、生成、复制等 (默认: false)<br>**body** (any): 表单类型,创建、编辑、生成、复制等 (默认: false)<br>**childrenInfo** (any): 表单类型,创建、编辑、生成、复制等 (默认: false)<br>**currentChildEntity** (any): 表单类型,创建、编辑、生成、复制等 (默认: false) |
|
|
248
|
-
| EntityFormDetailTabs | components | components/NeoForm/FormEntityChildren/EntityFormDetailTabs/index.tsx | **regions** (object): 复合组件的布局排版模板<br>**subCmps** (Array<IComMate>): 底部组件内的子组件<br>**body** ([any]): 复合组件的JsonSchema<br>**childEntities** (Array<FormEntityMeta>): 复合组件的JsonSchema<br>**formType** ('create'\): 'edit'\ (默认: 'copy') |
|
|
249
|
-
| FormHeader | components | components/NeoForm/FormHeader/index.tsx | **objectApiKey** (string): 关联实体的ApiKey<br>**entityInfo** (IEntity): 实体的详细信息<br>**enableFormMulticolumn** (boolean): 是否支持多列切换 (默认: true)<br>**enableFullScreen** (boolean): 是否支持全屏 (默认: true)<br>**closeForm** (Function): closeForm<br>**formPageClose** (Function): formPageClose |
|
|
250
|
-
| EntityFormX | components | components/NeoForm/neoFormX/index.tsx | 无 |
|
|
251
|
-
| EntityFormCom | components | components/NeoForm/neoFormX/index.tsx | 无 |
|
|
252
|
-
| neoGlobalSearch | components | components/NeoGlobalSearch/index.tsx | 无 |
|
|
253
|
-
| neoGlobalSearchResult | components | components/NeoGlobalSearch/index.tsx | 无 |
|
|
254
|
-
| neoHomeQuickEntry | components | components/NeoHome/QuickEntry/index.tsx | 无 |
|
|
255
|
-
| advancedObjectList | components | components/NeoHome/advancedObjectList/index.tsx | **layoutId** (number): layoutId<br>**objectId** (number): objectId<br>**showEmpty** (boolean): showEmpty<br>**uuid** (string): uuid<br>**pid** (string): pid<br>**userPermission** (string): userPermission<br>**componentId** (number): componentId<br>**label** (string): label<br>**attributes** ({): attributes<br>**dataSort** (string): dataSort<br>**dataSortItem** (string \): string[] (默认: dataSortItem)<br>**enablePage** (string): enablePage<br>**entityId** (string): entityId<br>**expandedFlg** (number): expandedFlg<br>**maxCardColCount** (number): maxCardColCount<br>**maxCardRowCount** (number): maxCardRowCount<br>**maxGridColCount** (number): maxGridColCount<br>**maxGridRowCount** (number): maxGridRowCount<br>**modeId** (string): modeId<br>**perPageCount** (string): perPageCount<br>**showMode** (string): showMode<br>**viewApiKey** (string): viewApiKey<br>**viewId** (string): viewId |
|
|
256
|
-
| moreJump | components | components/NeoHome/advancedObjectList/index.tsx | **layoutId** (number): layoutId<br>**objectId** (number): objectId<br>**showEmpty** (boolean): showEmpty<br>**uuid** (string): uuid<br>**pid** (string): pid<br>**userPermission** (string): userPermission<br>**componentId** (number): componentId<br>**label** (string): label<br>**attributes** ({): attributes<br>**dataSort** (string): dataSort<br>**dataSortItem** (string \): string[] (默认: dataSortItem)<br>**enablePage** (string): enablePage<br>**entityId** (string): entityId<br>**expandedFlg** (number): expandedFlg<br>**maxCardColCount** (number): maxCardColCount<br>**maxCardRowCount** (number): maxCardRowCount<br>**maxGridColCount** (number): maxGridColCount<br>**maxGridRowCount** (number): maxGridRowCount<br>**modeId** (string): modeId<br>**perPageCount** (string): perPageCount<br>**showMode** (string): showMode<br>**viewApiKey** (string): viewApiKey<br>**viewId** (string): viewId |
|
|
257
|
-
| neoListCard | components | components/NeoHome/homeObjectList/components/neoListCard/index.tsx | **listCardData** ([any]): listCardData<br>**cardMetaData** ([any]): cardMetaData<br>**mainItem** (string //标题的apikey): mainItem<br>**belongId** (number //实体的belongId): belongId<br>**apiKey** (string //实体的apiKey): apiKey |
|
|
258
|
-
| neoObjectListGrid | components | components/NeoHome/homeObjectList/components/neoObjectListGrid/index.tsx | **listData** ([any]): listData<br>**metaData** ([any]): metaData<br>**belongId** (number //实体的belongId): belongId<br>**apiKey** (string //实体的apiKey): apiKey |
|
|
259
|
-
| neoHomeObjectList | components | components/NeoHome/homeObjectList/index.tsx | 无 |
|
|
260
|
-
| neoInformation | components | components/NeoInformation/index.tsx | 无 |
|
|
261
|
-
| GridLayout | components | components/NeoLayout/GridLayout/index.tsx | **gap** (gapEnum): 水平间距 (默认: none)<br>**valign** (valignEnum): 垂直对齐方式 (默认: middle)<br>**align** (alignEnum): 水平对齐方式 (默认: center)<br>**columns** (Array<any>): 子明细明确 (默认: true) |
|
|
262
|
-
| PropValidator | components | components/PropValidator/index.tsx | **config** (IValidatorConfig): 校验器配置 (默认: {})<br>**targetProps** (any): 目标组件的props对象 (默认: {})<br>**targetComponentName** (string): 目标组件的名称 (默认: '')<br>**errorPanelClassName** (string): 错误面板的样式类名 (默认: '')<br>**showErrorCount** (boolean): 是否显示错误计数 (默认: true)<br>**maxErrorCount** (number): 最大显示错误数量 (默认: 10)<br>**docButtons** (Array<{): 文档按钮配置,当comRules有错误时显示 (默认: [])<br>**label** (string): label<br>**url** (string): url<br>**projectName** (string): 项目名称,用于上报数据标识 (默认: 'neo-ui-component-web') |
|
|
263
|
-
| neoSecondEntityGrid | components | components/SecondEntityGrid/index.tsx | 无 |
|
|
264
|
-
| SysNotification | components | components/SysNotification/index.tsx | **keyIdentifier** (string): 组件的唯一标识符<br>**maxCount** (number): 最大显示数量,默认999表示基本不限制,除非需要强制限制数量才需要传递此参数 (默认: 999)<br>**notifications** (INotification[] \): IRawNotification[] (默认: 通知数据(支持原始接口格式或标准格式))<br>**onNotificationClick** ((params: { cmp: any): 通知点击事件<br>**locationType** ('1' \): '2' (默认: 部署位置(1-admin端首页 2-crm首页))<br>**adminType** ('1' \): '2' (默认: admin端展示类型(1-默认 2-列表形式)) |
|
|
265
|
-
| CmpX | components | components/TestCmp/index.tsx | 无 |
|
|
266
|
-
| neoEdition | components | components/VerModal/index.ts | 无 |
|
|
267
|
-
| DayOneFormContainer | components/SystemComponent | components/SystemComponent/DayoneFormPage/index.tsx | 无 |
|
|
268
|
-
| drawerTabNavigation | components/SystemComponent | components/SystemComponent/DrawerNavigation/index.tsx | 无 |
|
|
269
|
-
| subTabNavigation | components/SystemComponent | components/SystemComponent/SecondaryNavigation/index.tsx | 无 |
|
|
270
|
-
| sysMenuView | components/SystemComponent | components/SystemComponent/SysMenuView/index.tsx | **xxxxx** (string): 关联实体的ApiKey |
|
|
271
|
-
| sysNavigationView | components/SystemComponent | components/SystemComponent/SysNavigationView/index.tsx | **appKey** (string): 当前应用的key |
|
|
272
|
-
| sysTabBarView | components/SystemComponent | components/SystemComponent/SysTabBarView/index.tsx | **appKey** (string): 当前应用的key |
|
|
273
|
-
| neoTransferCom | components/SystemComponent | components/SystemComponent/TransferCom/index.tsx | 无 |
|
|
274
|
-
| neoHomeContent | layoutElement | layoutCmps/neoHomeContent/index.tsx | **gridDatas** (WidgetLayoutProps[][]): gridDatas |
|
|
275
|
-
| homeDemoWidget | layoutElement | layoutCmps/neoHomeContent/neoComs/homeDemoWidget/index.tsx | 无 |
|
|
276
|
-
| neoWidget | layoutElement | layoutCmps/neoHomeContent/neoComs/neoWidget/index.tsx | **isLoadWidget** (boolean): isLoadWidget<br>**widgetParams** (string): widgetParams<br>**widgetVisibleCallback** ((callback: ICallbackObj) => void): widgetVisibleCallback |
|
|
277
|
-
| ForbiddenPopup | oldAdminComponents | oldAdminComponents/ForbiddenPopup/index.tsx | **userIds** (string[]): 需要验证的用户ID (默认: [])<br>**visible** (boolean): 弹窗是否显示 (默认: false)<br>**data** (IValidationData \): null (默认: 验证数据)<br>**width** (number): 弹窗宽度 (默认: 640)<br>**okText** (string): 确定按钮文本 (默认: '确定')<br>**cancelText** (string): 取消按钮文本 (默认: '取消') |
|
|
278
|
-
| ValidationPopup | oldAdminComponents | oldAdminComponents/ValidationPopup/index.tsx | **userIds** (string[]): 需要验证的用户ID (默认: [])<br>**visible** (boolean): 弹窗是否显示 (默认: false)<br>**data** (IValidationData \): null (默认: 验证数据)<br>**width** (number): 弹窗宽度 (默认: 640)<br>**okText** (string): 确定按钮文本 (默认: '确定')<br>**cancelText** (string): 取消按钮文本 (默认: '取消') |
|
|
279
|
-
| NeoSuggestionDialog | sfacomponents | sfacomponents/neoAI/comComponents/neoSuggestionDialog/index.tsx | 无 |
|
|
280
|
-
| SuggestionDialogRecordItem | sfacomponents | sfacomponents/neoAI/comComponents/neoSuggestionDialog/suggestionDialogField/index.tsx | 无 |
|
|
281
|
-
| SuggestionDialogInput | sfacomponents | sfacomponents/neoAI/comComponents/neoSuggestionDialog/suggestionDialogField/index.tsx | 无 |
|
|
282
|
-
| NeoSuggestionGroup | sfacomponents | sfacomponents/neoAI/comComponents/neoSuggestionGroup/index.tsx | 无 |
|
|
283
|
-
| SuggestionFileItem | sfacomponents | sfacomponents/neoAI/comComponents/neoSuggestionItems/suggestionFileItem/index.tsx | 无 |
|
|
284
|
-
| SuggestionFormItem | sfacomponents | sfacomponents/neoAI/comComponents/neoSuggestionItems/suggestionFormItem/index.tsx | 无 |
|
|
285
|
-
| SuggestionGenerateItem | sfacomponents | sfacomponents/neoAI/comComponents/neoSuggestionItems/suggestionGenerateItem/index.tsx | 无 |
|
|
286
|
-
| SuggestionNumberItem | sfacomponents | sfacomponents/neoAI/comComponents/neoSuggestionItems/suggestionNumberItem/index.tsx | 无 |
|
|
287
|
-
| SuggestionNumberItemsEdit | sfacomponents | sfacomponents/neoAI/comComponents/neoSuggestionItems/suggestionNumberItemsEdit/index.tsx | 无 |
|
|
288
|
-
| SuggestionShowItem | sfacomponents | sfacomponents/neoAI/comComponents/neoSuggestionItems/suggestionShowItem/index.tsx | 无 |
|
|
289
|
-
| SuggestionUserItem | sfacomponents | sfacomponents/neoAI/comComponents/neoSuggestionItems/suggestionUserItem/index.tsx | 无 |
|
|
290
|
-
| NeoSuggestionList | sfacomponents | sfacomponents/neoAI/comComponents/neoSuggestionList/index.tsx | 无 |
|
|
291
|
-
| NeoSuggestionTabs | sfacomponents | sfacomponents/neoAI/comComponents/neoSuggestionTabs/index.tsx | 无 |
|
|
292
|
-
| neoSuggestionAI | sfacomponents | sfacomponents/neoAI/components/neoSuggestionAI/index.tsx | 无 |
|