sun-biz 0.0.4-beta.4 → 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 +391 -34
- package/dist/components/static/css/index.css +3 -3
- package/dist/hooks/use-fetch-dataset/use-fetch-time.d.ts +4 -0
- package/dist/index.d.ts +24 -23
- package/dist/index.js +403 -34
- package/dist/static/css/index.css +3 -3
- package/package.json +1 -1
|
@@ -6,15 +6,15 @@
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
[data-v-
|
|
9
|
+
[data-v-d83c7b5e] .el-menu-item {
|
|
10
10
|
height: 48px;
|
|
11
11
|
line-height: 48px;
|
|
12
12
|
}
|
|
13
|
-
[data-v-
|
|
13
|
+
[data-v-d83c7b5e] .el-sub-menu__title {
|
|
14
14
|
height: 48px;
|
|
15
15
|
line-height: 48px;
|
|
16
16
|
}
|
|
17
|
-
[data-v-
|
|
17
|
+
[data-v-d83c7b5e] .el-menu-item.is-active {
|
|
18
18
|
color: inherit !important;
|
|
19
19
|
background-color: #0000 !important;
|
|
20
20
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,25 +1,26 @@
|
|
|
1
1
|
/** components **/
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
5
|
-
export * from
|
|
6
|
-
export * from
|
|
7
|
-
export { Title } from
|
|
8
|
-
export { DictSelect, FlagSelect, HospitalSelect, } from
|
|
9
|
-
export { CopyTextWithTooltip } from
|
|
10
|
-
export { FormDesignRender } from
|
|
11
|
-
export { ProDialog } from
|
|
12
|
-
export { AccessInfo } from
|
|
13
|
-
export { ProForm, FormUnit, convertToWbNo, convertToSpellNo, type FormDescItem, } from
|
|
14
|
-
export { DmlButton } from
|
|
2
|
+
export * from "./components/pro-table";
|
|
3
|
+
export * from "./components/pro-table-v2";
|
|
4
|
+
export * from "./components/patient-access/index.ts";
|
|
5
|
+
export * from "./components/print/index.ts";
|
|
6
|
+
export * from "./components/invoice/index.ts";
|
|
7
|
+
export { Title } from "./components/title";
|
|
8
|
+
export { DictSelect, FlagSelect, HospitalSelect, TagSelect, } from "./components/biz-select";
|
|
9
|
+
export { CopyTextWithTooltip } from "./components/copy-text-with-tooltip";
|
|
10
|
+
export { FormDesignRender } from "./components/form-design-render";
|
|
11
|
+
export { ProDialog } from "./components/pro-dialog";
|
|
12
|
+
export { AccessInfo } from "./components/access-info";
|
|
13
|
+
export { ProForm, FormUnit, convertToWbNo, convertToSpellNo, type FormDescItem, } from "./components/pro-form";
|
|
14
|
+
export { DmlButton } from "./components/dml-button/index.ts";
|
|
15
15
|
/** hooks ** */
|
|
16
|
-
export { default as useRequest } from
|
|
17
|
-
export { default as useAppConfigData, MAIN_APP_CONFIG, } from
|
|
18
|
-
export type { PreferenceData } from
|
|
19
|
-
export { default as useDirectionSelect } from
|
|
20
|
-
export { default as useFetchDataset, queryDataSetByCodeSystemCodes, type CodeSystem } from
|
|
21
|
-
export {
|
|
22
|
-
export
|
|
23
|
-
export {
|
|
24
|
-
export {
|
|
25
|
-
export {
|
|
16
|
+
export { default as useRequest } from "./hooks/use-request";
|
|
17
|
+
export { default as useAppConfigData, MAIN_APP_CONFIG, } from "./hooks/use-app-config";
|
|
18
|
+
export type { PreferenceData } from "./hooks/use-app-config";
|
|
19
|
+
export { default as useDirectionSelect } from "./hooks/use-direction-select";
|
|
20
|
+
export { default as useFetchDataset, queryDataSetByCodeSystemCodes, type CodeSystem, } from "./hooks/use-fetch-dataset";
|
|
21
|
+
export { getSystemTime, useFetchSystemTiem, } from "./hooks/use-fetch-dataset/use-fetch-time";
|
|
22
|
+
export { useEditableTable } from "./hooks/use-editable-table";
|
|
23
|
+
export type { TableRef } from "./hooks/use-editable-table";
|
|
24
|
+
export { useColumnConfig, useFormConfig } from "./hooks/use-column&form-config";
|
|
25
|
+
export { useDataChangeDetector } from "./hooks/use-data-change-detector";
|
|
26
|
+
export { debounce, isNumber, decimalCount, formatDecimalNumber } from "./utils";
|