sun-biz 0.0.4-beta.5 → 0.0.4-beta.6
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/biz-select/index.d.ts +1 -0
- package/dist/components/biz-select/tag-select/api.d.ts +28 -0
- package/dist/components/index.d.ts +1 -1
- package/dist/components/index.js +382 -27
- package/dist/components/static/css/index.css +3 -3
- package/dist/index.d.ts +1 -1
- package/dist/index.js +382 -27
- package/dist/static/css/index.css +3 -3
- package/package.json +1 -1
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 标签详情
|
|
3
|
+
*/
|
|
4
|
+
interface TagInfo {
|
|
5
|
+
tagId: string;
|
|
6
|
+
tagNameDisplay: string;
|
|
7
|
+
sort: number;
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* 标签分组详情
|
|
11
|
+
*/
|
|
12
|
+
export interface TagGroupInfo {
|
|
13
|
+
tagGroupId: string;
|
|
14
|
+
tagGroupNameDisplay: string;
|
|
15
|
+
enabledFlag: number;
|
|
16
|
+
tagList: TagInfo[];
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* [1-10473-1]根据条件查询标签分组V1(含标签)
|
|
20
|
+
* @param params
|
|
21
|
+
* @returns
|
|
22
|
+
*/
|
|
23
|
+
export declare const queryTagGroupByExampleV1: (params: {
|
|
24
|
+
bizIdTypeCode: string;
|
|
25
|
+
enabledFlag?: number;
|
|
26
|
+
bizId?: string;
|
|
27
|
+
}) => Promise<[import("@sun-toolkit/request").SunApiResultData<null> | undefined, import("@sun-toolkit/request").SunApiResultData<TagGroupInfo[]> | undefined]>;
|
|
28
|
+
export {};
|
|
@@ -9,5 +9,5 @@ export { ProDialog } from './pro-dialog/index.ts';
|
|
|
9
9
|
export { AccessInfo } from './access-info/index.ts';
|
|
10
10
|
export { FormDesignRender } from './form-design-render/index.ts';
|
|
11
11
|
export { CopyTextWithTooltip } from './copy-text-with-tooltip/index.ts';
|
|
12
|
-
export { DictSelect, FlagSelect, HospitalSelect } from './biz-select/index.ts';
|
|
12
|
+
export { DictSelect, FlagSelect, HospitalSelect, TagSelect, } from './biz-select/index.ts';
|
|
13
13
|
export { DmlButton } from './dml-button/index.ts';
|