@bit-sun/business-component 3.0.1-alpha.8 → 3.0.2-alpha.0
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/Business/BsSulaQueryTable/utils.d.ts +1 -1
- package/dist/components/Functional/AccessWrapper/index.d.ts +5 -0
- package/dist/components/Functional/AuthButton/index.d.ts +3 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.esm.js +1753 -1530
- package/dist/index.js +1772 -1546
- package/dist/utils/auth.d.ts +3 -0
- package/dist/utils/businessUtils.d.ts +1 -3
- package/dist/utils/index.d.ts +8 -0
- package/dist/utils/utils.d.ts +1 -1
- package/package.json +9 -4
- package/src/components/Business/AddSelectBusiness/index.md +236 -0
- package/src/components/Business/AddSelectBusiness/index.tsx +333 -296
- package/src/components/Business/BsLayouts/Components/GlobalHeader/index.tsx +0 -1
- package/src/components/Business/BsLayouts/index.tsx +111 -23
- package/src/components/Business/BsLayouts/utils.tsx +2 -0
- package/src/components/Business/BsSulaQueryTable/index.tsx +116 -77
- package/src/components/Business/BsSulaQueryTable/setting.tsx +2 -11
- package/src/components/Business/BsSulaQueryTable/utils.tsx +4 -9
- package/src/components/Business/CommodityEntry/index.md +15 -1
- package/src/components/Business/CommodityEntry/index.tsx +1 -0
- package/src/components/Business/DetailPageWrapper/index.tsx +3 -2
- package/src/components/Business/SearchSelect/index.md +10 -1
- package/src/components/Functional/AccessWrapper/index.tsx +34 -0
- package/src/components/Functional/AddSelect/helps.ts +1 -1
- package/src/components/Functional/AddSelect/index.tsx +63 -215
- package/src/components/Functional/AuthButton/index.tsx +15 -0
- package/src/components/Functional/BillEntry/index.tsx +1 -1
- package/src/components/Functional/DataImport/index.tsx +36 -30
- package/src/components/Functional/DataValidation/index.md +15 -2
- package/src/components/Functional/DataValidation/index.tsx +40 -26
- package/src/components/Functional/SearchSelect/index.tsx +11 -3
- package/src/components/Solution/RuleComponent/InnerSelect.tsx +6 -6
- package/src/components/Solution/RuleComponent/RenderCompItem.tsx +10 -10
- package/src/components/Solution/RuleComponent/index.js +45 -7
- package/src/index.ts +1 -0
- package/src/utils/auth.ts +39 -0
- package/src/utils/businessUtils.ts +0 -40
- package/src/utils/index.ts +10 -0
|
@@ -95,6 +95,6 @@ export declare function queryParams(params: any, flag?: any): any;
|
|
|
95
95
|
* @param code 对应权限值
|
|
96
96
|
* @returns boolean
|
|
97
97
|
*/
|
|
98
|
-
export declare const authFn: (code?: any) =>
|
|
98
|
+
export declare const authFn: (code?: any) => any;
|
|
99
99
|
export declare const renderToString: (render: ReactElement<any, string | JSXElementConstructor<any>> | string) => any;
|
|
100
100
|
export {};
|
package/dist/index.d.ts
CHANGED
|
@@ -24,6 +24,7 @@ export { default as BsLayout } from './components/Business/BsLayouts';
|
|
|
24
24
|
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
|
+
export { default as AuthButton } from './components/Functional/AuthButton';
|
|
27
28
|
export { default as EllipsisTooltip } from './components/Functional/EllipsisTooltip';
|
|
28
29
|
export * from './components/Functional/BsAntdSula/index';
|
|
29
30
|
export { default as RuleComponent } from './components/Solution/RuleComponent';
|