@bit-sun/business-component 4.0.2 → 4.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Solution/RuleSetter/function.d.ts +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.esm.js +820 -864
- package/dist/index.js +822 -864
- package/dist/utils/TreeUtils.d.ts +1 -0
- package/dist/utils/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/components/Business/BsSulaQueryTable/utils.tsx +2 -4
- package/src/components/Business/DetailPageWrapper/index.less +11 -6
- package/src/components/Business/DetailPageWrapper/index.tsx +14 -14
- package/src/components/Business/HomePageWrapper/index.less +10 -4
- package/src/components/Business/HomePageWrapper/index.tsx +11 -11
- package/src/components/Business/SearchSelect/BusinessUtils.tsx +17 -0
- package/src/components/Business/SearchSelect/utils.ts +1 -1
- package/src/components/Business/columnSettingTable/utils.tsx +1 -2
- package/src/components/Solution/RuleComponent/index.js +2 -13
- package/src/components/Solution/RuleSetter/baseRule.tsx +4 -2
- package/src/components/Solution/RuleSetter/function.ts +31 -3
- package/src/index.ts +1 -0
- package/src/utils/TableUtils.tsx +3 -6
- package/src/utils/TreeUtils.ts +12 -0
- package/src/utils/index.ts +2 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export declare const formatOperationList: (data: any) => any;
|
|
2
2
|
export declare const formatRegularList: (data: any) => any;
|
|
3
3
|
export declare const handleRuleShowBack: (data: any, functionRuleList: any, ruleReturnList: any) => any;
|
|
4
|
-
export declare const handleRuleRequireCheck: (saveData: any, ruleActionData: any, ruleReturnConfig: any) => {
|
|
4
|
+
export declare const handleRuleRequireCheck: (saveData: any, ruleActionData: any, ruleReturnConfig: any, isInstance?: boolean, regularDataList?: any) => {
|
|
5
5
|
checkResult: boolean;
|
|
6
6
|
checkInfo: any;
|
|
7
7
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ export { default as MoreTreeTable } from './components/Business/moreTreeTable';
|
|
|
25
25
|
export { default as JsonQueryTable } from './components/Business/JsonQueryTable';
|
|
26
26
|
export { default as TableColumnSetting } from './plugin/TableColumnSetting';
|
|
27
27
|
export { default as AuthButton } from './components/Functional/AuthButton';
|
|
28
|
+
export { default as CustomSelector } from './components/Solution/RuleComponent/CustomPlugin/CustomSelector';
|
|
28
29
|
export { default as EllipsisTooltip } from './components/Functional/EllipsisTooltip';
|
|
29
30
|
export * from './components/Functional/BsAntdSula/index';
|
|
30
31
|
export { default as RuleComponent } from './components/Solution/RuleComponent';
|