@hb-hellotech/hb-ui 1.2.5-beta.4 → 1.2.5-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/business_comp/form_comp/hb_tooltip_select/src/type.d.ts +51 -0
- package/dist/components/business_comp/form_comp/hb_tooltip_select/src/type.d.ts.map +1 -0
- package/dist/components/business_comp/form_comp/index.d.ts +3 -0
- package/dist/components/business_comp/form_comp/index.d.ts.map +1 -0
- package/dist/components/business_comp/list_page_comp/hb_form_item_filter_modal/src/type.d.ts.map +1 -1
- package/dist/components/business_comp/list_page_comp/hb_form_select_filter/src/type.d.ts +0 -1
- package/dist/components/business_comp/list_page_comp/hb_form_select_filter/src/type.d.ts.map +1 -1
- package/dist/components/business_comp/list_page_comp/hb_list_btns_act/index.d.ts +0 -36
- package/dist/components/business_comp/list_page_comp/hb_list_btns_act/index.d.ts.map +1 -1
- package/dist/components/business_comp/list_page_comp/hb_list_btns_act/src/HbListBtns.vue.d.ts +0 -22
- package/dist/components/business_comp/list_page_comp/hb_list_btns_act/src/HbListBtns.vue.d.ts.map +1 -1
- package/dist/components/business_comp/list_page_comp/hb_list_btns_act/src/type.d.ts +1 -12
- package/dist/components/business_comp/list_page_comp/hb_list_btns_act/src/type.d.ts.map +1 -1
- package/dist/components/business_comp/list_page_comp/hb_list_form/src/type.d.ts.map +1 -1
- package/dist/components/business_comp/list_page_comp/hb_list_page_act/index.d.ts +5 -71
- package/dist/components/business_comp/list_page_comp/hb_list_page_act/index.d.ts.map +1 -1
- package/dist/components/business_comp/list_page_comp/hb_list_page_act/src/HbListPageAct.vue.d.ts +2 -38
- package/dist/components/business_comp/list_page_comp/hb_list_page_act/src/HbListPageAct.vue.d.ts.map +1 -1
- package/dist/components/business_comp/list_page_comp/hb_list_page_act/src/type.d.ts +1 -17
- package/dist/components/business_comp/list_page_comp/hb_list_page_act/src/type.d.ts.map +1 -1
- package/dist/components/business_comp/list_page_comp/hb_list_table/src/type.d.ts +0 -5
- package/dist/components/business_comp/list_page_comp/hb_list_table/src/type.d.ts.map +1 -1
- package/dist/components/business_comp/list_page_comp/hb_list_table_act/src/type.d.ts.map +1 -1
- package/dist/components/index.d.ts.map +1 -1
- package/dist/hb_component_lib.css +1 -1
- package/dist/hb_component_lib.js +1040 -971
- package/dist/hb_component_lib.umd.cjs +1 -1
- package/package.json +10 -2
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import type { SelectValue } from 'ant-design-vue/es/select';
|
|
2
|
+
export interface TooltipSelectOption {
|
|
3
|
+
/**
|
|
4
|
+
* 选项显示文案
|
|
5
|
+
*/
|
|
6
|
+
label: string;
|
|
7
|
+
/**
|
|
8
|
+
* 选项值
|
|
9
|
+
*/
|
|
10
|
+
value: SelectValue;
|
|
11
|
+
/**
|
|
12
|
+
* 当鼠标 hover 时展示的 tooltip 内容,不传时默认等于 label
|
|
13
|
+
*/
|
|
14
|
+
tooltip?: string;
|
|
15
|
+
/**
|
|
16
|
+
* 是否禁用该选项
|
|
17
|
+
*/
|
|
18
|
+
disabled?: boolean;
|
|
19
|
+
/**
|
|
20
|
+
* 透传给 a-select-option 的其他扩展属性
|
|
21
|
+
*/
|
|
22
|
+
optionProps?: Record<string, any>;
|
|
23
|
+
/**
|
|
24
|
+
* 自定义渲染插槽 key(保留字段)
|
|
25
|
+
*/
|
|
26
|
+
slotName?: string;
|
|
27
|
+
[key: string]: any;
|
|
28
|
+
}
|
|
29
|
+
export interface TooltipSelectProps {
|
|
30
|
+
/**
|
|
31
|
+
* 可选项列表
|
|
32
|
+
*/
|
|
33
|
+
options?: TooltipSelectOption[];
|
|
34
|
+
/**
|
|
35
|
+
* tooltip 位置
|
|
36
|
+
*/
|
|
37
|
+
tooltipPlacement?: 'top' | 'left' | 'right' | 'bottom';
|
|
38
|
+
/**
|
|
39
|
+
* tooltip 最大宽度
|
|
40
|
+
*/
|
|
41
|
+
tooltipMaxWidth?: number | string;
|
|
42
|
+
/**
|
|
43
|
+
* 是否显示 tooltip(有 tooltip 文案的情况下)
|
|
44
|
+
*/
|
|
45
|
+
enableTooltip?: boolean;
|
|
46
|
+
/**
|
|
47
|
+
* 是否对选项 label 做 ellipsis 处理
|
|
48
|
+
*/
|
|
49
|
+
enableEllipsis?: boolean;
|
|
50
|
+
}
|
|
51
|
+
//# sourceMappingURL=type.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["type.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAE5D,MAAM,WAAW,mBAAmB;IAClC;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,KAAK,EAAE,WAAW,CAAC;IACnB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAClC;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACpB;AAED,MAAM,WAAW,kBAAkB;IACjC;;OAEG;IACH,OAAO,CAAC,EAAE,mBAAmB,EAAE,CAAC;IAChC;;OAEG;IACH,gBAAgB,CAAC,EAAE,KAAK,GAAG,MAAM,GAAG,OAAO,GAAG,QAAQ,CAAC;IACvD;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAClC;;OAEG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;OAEG;IACH,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,eAAe,MAAM,qBAAqB,CAAC;AAElD,OAAO,EAAE,eAAe,IAAI,sBAAsB,EAAE,CAAC"}
|
package/dist/components/business_comp/list_page_comp/hb_form_item_filter_modal/src/type.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["type.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AAEtD,MAAM,WAAW,kBAAkB;
|
|
1
|
+
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["type.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AAEtD,MAAM,WAAW,kBAAkB;IAEjC,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf,GAAG,EAAE,MAAM,CAAC;IAEZ,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACpB;AAGD,MAAM,WAAW,eAAgB,SAAQ,kBAAkB;IAEzD,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,eAAO,MAAM,WAAW;;;;;;;sCAQa,GAAG,KAAK,IAAI;;;;;;;;;;;CAWvC,CAAC;AAGX,MAAM,WAAW,gBAAgB;IAC/B,IAAI,EAAE,eAAe,EAAE,CAAC;IACxB,WAAW,CAAC,EAAE,CAAC,GAAG,EAAE,GAAG,KAAK,IAAI,CAAC;IACjC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,MAAM,UAAU,GAAG,gBAAgB,CAAC,OAAO,WAAW,CAAC,CAAC"}
|
package/dist/components/business_comp/list_page_comp/hb_form_select_filter/src/type.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["type.ts"],"names":[],"mappings":"AACA,MAAM,WAAW,mBAAmB;
|
|
1
|
+
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["type.ts"],"names":[],"mappings":"AACA,MAAM,WAAW,mBAAmB;IAElC,KAAK,EAAE,MAAM,CAAC;IAEd,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;IAEvB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAGD,MAAM,WAAW,kBAAkB;IACjC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,mBAAmB,EAAE,CAAC;IAChC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;IAC1B,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,MAAM,WAAW,UAAU;IACzB,cAAc,EAAE,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC,CAAC;IAC3C,oBAAoB,EAAE,CAAC,WAAW,EAAE,MAAM,CAAC,CAAC;IAC5C,MAAM,EAAE,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,EAAE,EAAE,eAAe,EAAE,mBAAmB,EAAE,CAAC,CAAC;IAC3E,OAAO,EAAE,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,EAAE,EAAE,eAAe,EAAE,mBAAmB,EAAE,CAAC,CAAC;IAC5E,MAAM,EAAE,EAAE,CAAC;IACX,MAAM,EAAE,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC;CAC3B"}
|
|
@@ -1,16 +1,6 @@
|
|
|
1
1
|
export * from './src/type';
|
|
2
2
|
declare const HbListBtns: ({
|
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
4
|
-
formItems: {
|
|
5
|
-
type: ArrayConstructor;
|
|
6
|
-
required: true;
|
|
7
|
-
default: () => never[];
|
|
8
|
-
};
|
|
9
|
-
isShowSelfFilter: {
|
|
10
|
-
type: BooleanConstructor;
|
|
11
|
-
required: false;
|
|
12
|
-
default: boolean;
|
|
13
|
-
};
|
|
14
4
|
needReload: {
|
|
15
5
|
type: BooleanConstructor;
|
|
16
6
|
required: false;
|
|
@@ -33,8 +23,6 @@ declare const HbListBtns: ({
|
|
|
33
23
|
readonly UpCircleOutlined: import("@ant-design/icons-vue/lib/icons/UpCircleOutlined").UpCircleOutlinedIconType;
|
|
34
24
|
readonly DownCircleOutlined: import("@ant-design/icons-vue/lib/icons/DownCircleOutlined").DownCircleOutlinedIconType;
|
|
35
25
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("handleOpenOrClose" | "handleReload")[], import("vue").PublicProps, {
|
|
36
|
-
formItems: unknown[];
|
|
37
|
-
isShowSelfFilter: boolean;
|
|
38
26
|
needReload: boolean;
|
|
39
27
|
needOpenOrClose: boolean;
|
|
40
28
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
@@ -45,16 +33,6 @@ declare const HbListBtns: ({
|
|
|
45
33
|
M: {};
|
|
46
34
|
Defaults: {};
|
|
47
35
|
}, Readonly<import("vue").ExtractPropTypes<{
|
|
48
|
-
formItems: {
|
|
49
|
-
type: ArrayConstructor;
|
|
50
|
-
required: true;
|
|
51
|
-
default: () => never[];
|
|
52
|
-
};
|
|
53
|
-
isShowSelfFilter: {
|
|
54
|
-
type: BooleanConstructor;
|
|
55
|
-
required: false;
|
|
56
|
-
default: boolean;
|
|
57
|
-
};
|
|
58
36
|
needReload: {
|
|
59
37
|
type: BooleanConstructor;
|
|
60
38
|
required: false;
|
|
@@ -77,8 +55,6 @@ declare const HbListBtns: ({
|
|
|
77
55
|
readonly UpCircleOutlined: import("@ant-design/icons-vue/lib/icons/UpCircleOutlined").UpCircleOutlinedIconType;
|
|
78
56
|
readonly DownCircleOutlined: import("@ant-design/icons-vue/lib/icons/DownCircleOutlined").DownCircleOutlinedIconType;
|
|
79
57
|
}, {}, {}, {}, {
|
|
80
|
-
formItems: unknown[];
|
|
81
|
-
isShowSelfFilter: boolean;
|
|
82
58
|
needReload: boolean;
|
|
83
59
|
needOpenOrClose: boolean;
|
|
84
60
|
}>;
|
|
@@ -86,16 +62,6 @@ declare const HbListBtns: ({
|
|
|
86
62
|
__isTeleport?: undefined;
|
|
87
63
|
__isSuspense?: undefined;
|
|
88
64
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
89
|
-
formItems: {
|
|
90
|
-
type: ArrayConstructor;
|
|
91
|
-
required: true;
|
|
92
|
-
default: () => never[];
|
|
93
|
-
};
|
|
94
|
-
isShowSelfFilter: {
|
|
95
|
-
type: BooleanConstructor;
|
|
96
|
-
required: false;
|
|
97
|
-
default: boolean;
|
|
98
|
-
};
|
|
99
65
|
needReload: {
|
|
100
66
|
type: BooleanConstructor;
|
|
101
67
|
required: false;
|
|
@@ -118,8 +84,6 @@ declare const HbListBtns: ({
|
|
|
118
84
|
readonly UpCircleOutlined: import("@ant-design/icons-vue/lib/icons/UpCircleOutlined").UpCircleOutlinedIconType;
|
|
119
85
|
readonly DownCircleOutlined: import("@ant-design/icons-vue/lib/icons/DownCircleOutlined").DownCircleOutlinedIconType;
|
|
120
86
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("handleOpenOrClose" | "handleReload")[], "handleOpenOrClose" | "handleReload", {
|
|
121
|
-
formItems: unknown[];
|
|
122
|
-
isShowSelfFilter: boolean;
|
|
123
87
|
needReload: boolean;
|
|
124
88
|
needOpenOrClose: boolean;
|
|
125
89
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin<any[], any[]>) & Record<string, any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAEA,cAAc,YAAY,CAAC;AAC3B,QAAA,MAAM,UAAU
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAEA,cAAc,YAAY,CAAC;AAC3B,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mSAAwB,CAAC;AACzC,eAAe,UAAU,CAAC;AAE1B,MAAM,MAAM,kBAAkB,GAAG,YAAY,CAAC,OAAO,UAAU,CAAC,CAAC"}
|
package/dist/components/business_comp/list_page_comp/hb_list_btns_act/src/HbListBtns.vue.d.ts
CHANGED
|
@@ -1,14 +1,4 @@
|
|
|
1
1
|
declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
-
formItems: {
|
|
3
|
-
type: ArrayConstructor;
|
|
4
|
-
required: true;
|
|
5
|
-
default: () => never[];
|
|
6
|
-
};
|
|
7
|
-
isShowSelfFilter: {
|
|
8
|
-
type: BooleanConstructor;
|
|
9
|
-
required: false;
|
|
10
|
-
default: boolean;
|
|
11
|
-
};
|
|
12
2
|
needReload: {
|
|
13
3
|
type: BooleanConstructor;
|
|
14
4
|
required: false;
|
|
@@ -28,16 +18,6 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
28
18
|
readonly UpCircleOutlined: import("@ant-design/icons-vue/lib/icons/UpCircleOutlined").UpCircleOutlinedIconType;
|
|
29
19
|
readonly DownCircleOutlined: import("@ant-design/icons-vue/lib/icons/DownCircleOutlined").DownCircleOutlinedIconType;
|
|
30
20
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("handleOpenOrClose" | "handleReload")[], "handleOpenOrClose" | "handleReload", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
31
|
-
formItems: {
|
|
32
|
-
type: ArrayConstructor;
|
|
33
|
-
required: true;
|
|
34
|
-
default: () => never[];
|
|
35
|
-
};
|
|
36
|
-
isShowSelfFilter: {
|
|
37
|
-
type: BooleanConstructor;
|
|
38
|
-
required: false;
|
|
39
|
-
default: boolean;
|
|
40
|
-
};
|
|
41
21
|
needReload: {
|
|
42
22
|
type: BooleanConstructor;
|
|
43
23
|
required: false;
|
|
@@ -52,8 +32,6 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
52
32
|
onHandleOpenOrClose?: ((...args: any[]) => any) | undefined;
|
|
53
33
|
onHandleReload?: ((...args: any[]) => any) | undefined;
|
|
54
34
|
}>, {
|
|
55
|
-
formItems: unknown[];
|
|
56
|
-
isShowSelfFilter: boolean;
|
|
57
35
|
needReload: boolean;
|
|
58
36
|
needOpenOrClose: boolean;
|
|
59
37
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
package/dist/components/business_comp/list_page_comp/hb_list_btns_act/src/HbListBtns.vue.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"HbListBtns.vue.d.ts","sourceRoot":"","sources":["HbListBtns.vue.ts"],"names":[],"mappings":"AAKA,QAAA,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"HbListBtns.vue.d.ts","sourceRoot":"","sources":["HbListBtns.vue.ts"],"names":[],"mappings":"AAKA,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAiCb,CAAA;AACF,eAAe,SAAS,CAAA"}
|
|
@@ -1,14 +1,5 @@
|
|
|
1
|
-
import type { ExtractPropTypes
|
|
2
|
-
import type { LocalShowList_intf } from '../../../../../components/business_comp/list_page_comp/hb_form_item_filter_modal/src/type';
|
|
1
|
+
import type { ExtractPropTypes } from 'vue';
|
|
3
2
|
export declare const HbListBtnsProps: {
|
|
4
|
-
readonly formItems: {
|
|
5
|
-
readonly type: PropType<LocalShowList_intf[]>;
|
|
6
|
-
readonly default: () => never[];
|
|
7
|
-
};
|
|
8
|
-
readonly isShowSelfFilter: {
|
|
9
|
-
readonly type: BooleanConstructor;
|
|
10
|
-
readonly default: true;
|
|
11
|
-
};
|
|
12
3
|
readonly needReload: {
|
|
13
4
|
readonly type: BooleanConstructor;
|
|
14
5
|
readonly default: true;
|
|
@@ -19,8 +10,6 @@ export declare const HbListBtnsProps: {
|
|
|
19
10
|
};
|
|
20
11
|
};
|
|
21
12
|
export interface HbListBtnsProps_intf {
|
|
22
|
-
formItems: LocalShowList_intf[];
|
|
23
|
-
isShowSelfFilter?: boolean;
|
|
24
13
|
needReload?: boolean;
|
|
25
14
|
needOpenOrClose?: boolean;
|
|
26
15
|
[key: string]: any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["type.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,
|
|
1
|
+
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["type.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAY,MAAM,KAAK,CAAC;AAGtD,eAAO,MAAM,eAAe;;;;;;;;;CASlB,CAAC;AAEX,MAAM,WAAW,oBAAoB;IACnC,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACpB;AACD,MAAM,MAAM,mBAAmB,GAAG,gBAAgB,CAAC,OAAO,eAAe,CAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["type.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AACtD,OAAO,KAAK,EAAE,SAAS,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAC/D,MAAM,MAAM,QAAQ,GAAG,MAAM,GAAG,OAAO,CAAC;AACxC,MAAM,MAAM,QAAQ,GAAG,OAAO,GAAG,QAAQ,GAAG,UAAU,GAAG,aAAa,GAAG,cAAc,GAAG,OAAO,GAAG,QAAQ,CAAC;AAE7G,MAAM,MAAM,IAAI,GAAG,QAAQ,GAAG,QAAQ,CAAC;AAEvC,MAAM,WAAW,YAAa,SAAQ,OAAO,CAAC,aAAa,CAAC;IAE1D,IAAI,EAAE,IAAI,CAAC;IAEX,IAAI,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["type.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AACtD,OAAO,KAAK,EAAE,SAAS,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAC/D,MAAM,MAAM,QAAQ,GAAG,MAAM,GAAG,OAAO,CAAC;AACxC,MAAM,MAAM,QAAQ,GAAG,OAAO,GAAG,QAAQ,GAAG,UAAU,GAAG,aAAa,GAAG,cAAc,GAAG,OAAO,GAAG,QAAQ,CAAC;AAE7G,MAAM,MAAM,IAAI,GAAG,QAAQ,GAAG,QAAQ,CAAC;AAEvC,MAAM,WAAW,YAAa,SAAQ,OAAO,CAAC,aAAa,CAAC;IAE1D,IAAI,EAAE,IAAI,CAAC;IAEX,IAAI,EAAE,MAAM,CAAC;IAEb,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB,IAAI,CAAC,EAAE,OAAO,CAAC,WAAW,CAAC,CAAC;IAC5B,KAAK,CAAC,EAAE,OAAO,CAAC,WAAW,CAAC,CAAC;IAE7B,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACpB;AAGD,KAAK,8BAA8B,CAAC,CAAC,SAAS,IAAI,IAAI,CAAC,SAAS,QAAQ,GACpE,YAAY,GAAG;IAAE,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;CAAE,GAC/C,YAAY,GAAG;IAAE,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;CAAE,CAAC;AAGrD,MAAM,MAAM,WAAW,GAAG,8BAA8B,CAAC,QAAQ,GAAG,QAAQ,CAAC,CAAC;AAE9E,eAAO,MAAM,WAAW;;;;;;;;;;;iBAYb,OAAO,MAAM,EAAE,GAAG,CAAC;iBACnB,OAAO,MAAM,EAAE,GAAG,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;sCAgCO,IAAI;;;CAG/B,CAAC;AAEX,MAAM,WAAW,gBAAgB;IAC/B,KAAK,EAAE,WAAW,EAAE,CAAC;IACrB,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAC9B,YAAY,CAAC,EAAE;QACb,GAAG,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;QACzB,GAAG,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;KAC1B,CAAC;IACF,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,cAAc,CAAC,EAAE,MAAM,IAAI,CAAC;CAC7B;AAED,MAAM,MAAM,eAAe,GAAG,gBAAgB,CAAC,OAAO,WAAW,CAAC,GAAG,SAAS,CAAC"}
|
|
@@ -1,41 +1,19 @@
|
|
|
1
1
|
export * from './src/type';
|
|
2
2
|
declare const HbListPageAct: ({
|
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
4
|
-
formItems: {
|
|
5
|
-
type: ArrayConstructor;
|
|
6
|
-
required: true;
|
|
7
|
-
};
|
|
8
|
-
isShowSelfFilter: {
|
|
9
|
-
type: BooleanConstructor;
|
|
10
|
-
required: false;
|
|
11
|
-
default: boolean;
|
|
12
|
-
};
|
|
13
|
-
isShowOpenClose: {
|
|
14
|
-
type: BooleanConstructor;
|
|
15
|
-
required: false;
|
|
16
|
-
default: boolean;
|
|
17
|
-
};
|
|
18
4
|
isShowFullScreen: {
|
|
19
5
|
type: BooleanConstructor;
|
|
20
6
|
required: false;
|
|
21
7
|
default: boolean;
|
|
22
8
|
};
|
|
23
|
-
}>> & Readonly<{
|
|
24
|
-
onHandleSearch?: ((...args: any[]) => any) | undefined;
|
|
25
|
-
onHandleReset?: ((...args: any[]) => any) | undefined;
|
|
26
|
-
onHandleSfcmConfirm?: ((...args: any[]) => any) | undefined;
|
|
27
|
-
onHandleOpenOrClose?: ((...args: any[]) => any) | undefined;
|
|
28
|
-
}>, {
|
|
9
|
+
}>> & Readonly<{}>, {
|
|
29
10
|
props: any;
|
|
30
11
|
ListPageBoxObj: any;
|
|
31
12
|
isFullscreen: import("vue").Ref<boolean, boolean>;
|
|
32
13
|
toggle: () => Promise<void>;
|
|
33
|
-
emits: (event: "handleSearch" | "handleReset" | "handleSfcmConfirm" | "handleOpenOrClose", ...args: any[]) => void;
|
|
34
14
|
breadCrumbData: import("vue").Ref<string, string>;
|
|
35
15
|
handleBreadCrumb: () => void;
|
|
36
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
37
|
-
isShowSelfFilter: boolean;
|
|
38
|
-
isShowOpenClose: boolean;
|
|
16
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {
|
|
39
17
|
isShowFullScreen: boolean;
|
|
40
18
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
41
19
|
P: {};
|
|
@@ -45,82 +23,38 @@ declare const HbListPageAct: ({
|
|
|
45
23
|
M: {};
|
|
46
24
|
Defaults: {};
|
|
47
25
|
}, Readonly<import("vue").ExtractPropTypes<{
|
|
48
|
-
formItems: {
|
|
49
|
-
type: ArrayConstructor;
|
|
50
|
-
required: true;
|
|
51
|
-
};
|
|
52
|
-
isShowSelfFilter: {
|
|
53
|
-
type: BooleanConstructor;
|
|
54
|
-
required: false;
|
|
55
|
-
default: boolean;
|
|
56
|
-
};
|
|
57
|
-
isShowOpenClose: {
|
|
58
|
-
type: BooleanConstructor;
|
|
59
|
-
required: false;
|
|
60
|
-
default: boolean;
|
|
61
|
-
};
|
|
62
26
|
isShowFullScreen: {
|
|
63
27
|
type: BooleanConstructor;
|
|
64
28
|
required: false;
|
|
65
29
|
default: boolean;
|
|
66
30
|
};
|
|
67
|
-
}>> & Readonly<{
|
|
68
|
-
onHandleSearch?: ((...args: any[]) => any) | undefined;
|
|
69
|
-
onHandleReset?: ((...args: any[]) => any) | undefined;
|
|
70
|
-
onHandleSfcmConfirm?: ((...args: any[]) => any) | undefined;
|
|
71
|
-
onHandleOpenOrClose?: ((...args: any[]) => any) | undefined;
|
|
72
|
-
}>, {
|
|
31
|
+
}>> & Readonly<{}>, {
|
|
73
32
|
props: any;
|
|
74
33
|
ListPageBoxObj: any;
|
|
75
34
|
isFullscreen: import("vue").Ref<boolean, boolean>;
|
|
76
35
|
toggle: () => Promise<void>;
|
|
77
|
-
emits: (event: "handleSearch" | "handleReset" | "handleSfcmConfirm" | "handleOpenOrClose", ...args: any[]) => void;
|
|
78
36
|
breadCrumbData: import("vue").Ref<string, string>;
|
|
79
37
|
handleBreadCrumb: () => void;
|
|
80
38
|
}, {}, {}, {}, {
|
|
81
|
-
isShowSelfFilter: boolean;
|
|
82
|
-
isShowOpenClose: boolean;
|
|
83
39
|
isShowFullScreen: boolean;
|
|
84
40
|
}>;
|
|
85
41
|
__isFragment?: undefined;
|
|
86
42
|
__isTeleport?: undefined;
|
|
87
43
|
__isSuspense?: undefined;
|
|
88
44
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
89
|
-
formItems: {
|
|
90
|
-
type: ArrayConstructor;
|
|
91
|
-
required: true;
|
|
92
|
-
};
|
|
93
|
-
isShowSelfFilter: {
|
|
94
|
-
type: BooleanConstructor;
|
|
95
|
-
required: false;
|
|
96
|
-
default: boolean;
|
|
97
|
-
};
|
|
98
|
-
isShowOpenClose: {
|
|
99
|
-
type: BooleanConstructor;
|
|
100
|
-
required: false;
|
|
101
|
-
default: boolean;
|
|
102
|
-
};
|
|
103
45
|
isShowFullScreen: {
|
|
104
46
|
type: BooleanConstructor;
|
|
105
47
|
required: false;
|
|
106
48
|
default: boolean;
|
|
107
49
|
};
|
|
108
|
-
}>> & Readonly<{
|
|
109
|
-
onHandleSearch?: ((...args: any[]) => any) | undefined;
|
|
110
|
-
onHandleReset?: ((...args: any[]) => any) | undefined;
|
|
111
|
-
onHandleSfcmConfirm?: ((...args: any[]) => any) | undefined;
|
|
112
|
-
onHandleOpenOrClose?: ((...args: any[]) => any) | undefined;
|
|
113
|
-
}>, {
|
|
50
|
+
}>> & Readonly<{}>, {
|
|
114
51
|
props: any;
|
|
115
52
|
ListPageBoxObj: any;
|
|
116
53
|
isFullscreen: import("vue").Ref<boolean, boolean>;
|
|
117
54
|
toggle: () => Promise<void>;
|
|
118
|
-
emits: (event: "handleSearch" | "handleReset" | "handleSfcmConfirm" | "handleOpenOrClose", ...args: any[]) => void;
|
|
119
55
|
breadCrumbData: import("vue").Ref<string, string>;
|
|
120
56
|
handleBreadCrumb: () => void;
|
|
121
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
122
|
-
isShowSelfFilter: boolean;
|
|
123
|
-
isShowOpenClose: boolean;
|
|
57
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
124
58
|
isShowFullScreen: boolean;
|
|
125
59
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin<any[], any[]>) & Record<string, any>;
|
|
126
60
|
export default HbListPageAct;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAEA,cAAc,YAAY,CAAC;AAC3B,QAAA,MAAM,aAAa
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAEA,cAAc,YAAY,CAAC;AAC3B,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mSAA2B,CAAC;AAC/C,eAAe,aAAa,CAAC;AAE7B,MAAM,MAAM,6BAA6B,GAAG,YAAY,CAAC,OAAO,aAAa,CAAC,CAAC"}
|
package/dist/components/business_comp/list_page_comp/hb_list_page_act/src/HbListPageAct.vue.d.ts
CHANGED
|
@@ -1,18 +1,4 @@
|
|
|
1
1
|
declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
-
formItems: {
|
|
3
|
-
type: ArrayConstructor;
|
|
4
|
-
required: true;
|
|
5
|
-
};
|
|
6
|
-
isShowSelfFilter: {
|
|
7
|
-
type: BooleanConstructor;
|
|
8
|
-
required: false;
|
|
9
|
-
default: boolean;
|
|
10
|
-
};
|
|
11
|
-
isShowOpenClose: {
|
|
12
|
-
type: BooleanConstructor;
|
|
13
|
-
required: false;
|
|
14
|
-
default: boolean;
|
|
15
|
-
};
|
|
16
2
|
isShowFullScreen: {
|
|
17
3
|
type: BooleanConstructor;
|
|
18
4
|
required: false;
|
|
@@ -23,37 +9,15 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
23
9
|
ListPageBoxObj: any;
|
|
24
10
|
isFullscreen: import("vue").Ref<boolean, boolean>;
|
|
25
11
|
toggle: () => Promise<void>;
|
|
26
|
-
emits: (event: "handleSearch" | "handleReset" | "handleSfcmConfirm" | "handleOpenOrClose", ...args: any[]) => void;
|
|
27
12
|
breadCrumbData: import("vue").Ref<string, string>;
|
|
28
13
|
handleBreadCrumb: () => void;
|
|
29
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
30
|
-
formItems: {
|
|
31
|
-
type: ArrayConstructor;
|
|
32
|
-
required: true;
|
|
33
|
-
};
|
|
34
|
-
isShowSelfFilter: {
|
|
35
|
-
type: BooleanConstructor;
|
|
36
|
-
required: false;
|
|
37
|
-
default: boolean;
|
|
38
|
-
};
|
|
39
|
-
isShowOpenClose: {
|
|
40
|
-
type: BooleanConstructor;
|
|
41
|
-
required: false;
|
|
42
|
-
default: boolean;
|
|
43
|
-
};
|
|
14
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
44
15
|
isShowFullScreen: {
|
|
45
16
|
type: BooleanConstructor;
|
|
46
17
|
required: false;
|
|
47
18
|
default: boolean;
|
|
48
19
|
};
|
|
49
|
-
}>> & Readonly<{
|
|
50
|
-
onHandleSearch?: ((...args: any[]) => any) | undefined;
|
|
51
|
-
onHandleReset?: ((...args: any[]) => any) | undefined;
|
|
52
|
-
onHandleSfcmConfirm?: ((...args: any[]) => any) | undefined;
|
|
53
|
-
onHandleOpenOrClose?: ((...args: any[]) => any) | undefined;
|
|
54
|
-
}>, {
|
|
55
|
-
isShowSelfFilter: boolean;
|
|
56
|
-
isShowOpenClose: boolean;
|
|
20
|
+
}>> & Readonly<{}>, {
|
|
57
21
|
isShowFullScreen: boolean;
|
|
58
22
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
59
23
|
export default _sfc_main;
|
package/dist/components/business_comp/list_page_comp/hb_list_page_act/src/HbListPageAct.vue.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"HbListPageAct.vue.d.ts","sourceRoot":"","sources":["HbListPageAct.vue.ts"],"names":[],"mappings":"AAOA,QAAA,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"HbListPageAct.vue.d.ts","sourceRoot":"","sources":["HbListPageAct.vue.ts"],"names":[],"mappings":"AAOA,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;4EAsCb,CAAA;AACF,eAAe,SAAS,CAAA"}
|
|
@@ -1,31 +1,15 @@
|
|
|
1
|
-
import type { ExtractPropTypes
|
|
2
|
-
import type { LocalShowList_intf } from '../../../../../components/business_comp/list_page_comp/hb_form_item_filter_modal/src/type';
|
|
1
|
+
import type { ExtractPropTypes } from 'vue';
|
|
3
2
|
export interface Breadcrumbs_intf {
|
|
4
3
|
label: string;
|
|
5
4
|
value: string;
|
|
6
5
|
}
|
|
7
6
|
export declare const HbListPageActProps: {
|
|
8
|
-
readonly formItems: {
|
|
9
|
-
readonly type: PropType<LocalShowList_intf[]>;
|
|
10
|
-
readonly default: () => never[];
|
|
11
|
-
};
|
|
12
|
-
readonly isShowSelfFilter: {
|
|
13
|
-
readonly type: BooleanConstructor;
|
|
14
|
-
readonly default: true;
|
|
15
|
-
};
|
|
16
|
-
readonly isShowOpenClose: {
|
|
17
|
-
readonly type: BooleanConstructor;
|
|
18
|
-
readonly default: true;
|
|
19
|
-
};
|
|
20
7
|
readonly isShowFullScreen: {
|
|
21
8
|
readonly type: BooleanConstructor;
|
|
22
9
|
readonly default: true;
|
|
23
10
|
};
|
|
24
11
|
};
|
|
25
12
|
export interface HbListPageActProps_Intf {
|
|
26
|
-
formItems: LocalShowList_intf[];
|
|
27
|
-
isShowSelfFilter?: boolean;
|
|
28
|
-
isShowOpenClose?: boolean;
|
|
29
13
|
isShowFullScreen?: boolean;
|
|
30
14
|
}
|
|
31
15
|
export type HbListPageActType = ExtractPropTypes<typeof HbListPageActProps>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["type.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,
|
|
1
|
+
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["type.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAY,MAAM,KAAK,CAAC;AAGtD,MAAM,WAAW,gBAAgB;IAC/B,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;CACf;AAED,eAAO,MAAM,kBAAkB;;;;;CAMrB,CAAC;AAEX,MAAM,WAAW,uBAAuB;IACtC,gBAAgB,CAAC,EAAE,OAAO,CAAC;CAC5B;AAED,MAAM,MAAM,iBAAiB,GAAG,gBAAgB,CAAC,OAAO,kBAAkB,CAAC,CAAC"}
|
|
@@ -19,10 +19,6 @@ export declare const HbTableProps: {
|
|
|
19
19
|
readonly default: () => never[];
|
|
20
20
|
readonly required: true;
|
|
21
21
|
};
|
|
22
|
-
readonly childColumns: {
|
|
23
|
-
readonly type: PropType<ColumnType[]>;
|
|
24
|
-
readonly default: () => never[];
|
|
25
|
-
};
|
|
26
22
|
readonly rowHeight: {
|
|
27
23
|
readonly type: PropType<string | number>;
|
|
28
24
|
};
|
|
@@ -37,7 +33,6 @@ export declare const HbTableProps: {
|
|
|
37
33
|
};
|
|
38
34
|
export interface HbTableProps_Intf {
|
|
39
35
|
columns: ColumnType[];
|
|
40
|
-
childColumns?: ColumnType[];
|
|
41
36
|
rowHeight?: string | number;
|
|
42
37
|
defaultWidth: string | number;
|
|
43
38
|
tooltipPlacement?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["type.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AAEtD,MAAM,WAAW,UAAU;
|
|
1
|
+
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["type.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AAEtD,MAAM,WAAW,UAAU;IAEzB,KAAK,EAAE,MAAM,CAAC;IAEd,SAAS,EAAE,MAAM,CAAC;IAElB,GAAG,EAAE,MAAM,CAAC;IAEZ,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAExB,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB,KAAK,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;IAEzB,WAAW,CAAC,EAAE,OAAO,CAAC;IAEtB,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB,UAAU,CAAC,EAAE,OAAO,CAAC;IAErB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACpB;AACD,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;CAoBf,CAAC;AAEX,MAAM,WAAW,iBAAiB;IAChC,OAAO,EAAE,UAAU,EAAE,CAAC;IACtB,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC5B,YAAY,EAAE,MAAM,GAAG,MAAM,CAAC;IAC9B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CACxB;AACD,MAAM,MAAM,gBAAgB,GAAG,gBAAgB,CAAC,OAAO,YAAY,CAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["type.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,UAAU;
|
|
1
|
+
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["type.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,UAAU;IAEzB,GAAG,EAAE,MAAM,CAAC;IAEZ,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,OAAO,EAAE,QAAQ,CAAC;IAClB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,YAAY,GAAG,OAAO,CAAC;IACrC,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,WAAW,KAAK;IACpB,OAAO,EAAE,UAAU,EAAE,CAAC;IACtB,MAAM,EAAE,GAAG,CAAC;IACZ,sBAAsB,CAAC,EAAE,MAAM,CAAC;CACjC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,KAAK,CAAC;AAM7B,QAAA,IAAI,cAAc,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAIxC,CAAC;AAEF,eAAe,cAAc,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
[data-v-52ee50f2]:root{--hb-theme-color: #ff5000;--hb-title-color: #333;--hb-space: 10px;--hb-h1-font-size: 20px;--hb-h2-font-size: 16px;--hb-text-font-size: 14px;--hb-subtext-font-size: 13px;--hb-subtext-color: #cccc;--hb-f-item-height: 34px;--hb-f-item-content-height: 30px;--hb-tip-font-size: 13px;--hb-border-radius: 6px;--hb-border-color: #d1d5db;--hb-list-button-height: 26px}.hb-sfcm[data-v-52ee50f2] .ant-modal-header{border-bottom:1px solid var(--hb-border-color);margin-bottom:var(--hb-space)}.hb-sfcm__title[data-v-52ee50f2]{font-size:var(--hb-h1-font-size);font-weight:700;color:var(--hb-title-color)}.hb-sfcm__title__tip[data-v-52ee50f2]{margin-right:var(--hb-space);padding-left:var(--hb-space);color:#080808;font-size:16px;font-weight:500;position:relative}.hb-sfcm__title__tip[data-v-52ee50f2]:before{content:"";width:6px;height:14px;background:var(--hb-theme-color);position:absolute;top:50%;left:0;transform:translateY(-50%);border-radius:var(--hb-border-radius)}.hb-sfcm__show__tag[data-v-52ee50f2]{padding-top:var(--hb-space);overflow:hidden}.hb-sfcm__show__tag__item[data-v-52ee50f2]{float:left;margin-right:var(--hb-space);padding:2px 9px;background:var(--hb-theme-color);color:#fff;border:1px solid var(--hb-theme-color);border-radius:var(--hb-border-radius);margin-bottom:var(--hb-space);cursor:move;-webkit-user-select:none;user-select:none;display:flex;align-items:center}.hb-sfcm__show__tag__item.is-linked[data-v-52ee50f2]{background:#ff7875;border-color:#ff7875;cursor:not-allowed}.hb-sfcm__show__tag .is-fixed[data-v-52ee50f2]{background:none;color:#9ca3af;border:1px solid var(--hb-border-color);cursor:not-allowed}.hb-sfcm__show__tag .is-linked[data-v-52ee50f2]{background:#ff7875;border-color:#ff7875;cursor:not-allowed}.hb-sfcm__show__tag .is-linked[data-v-52ee50f2]:hover{background:#ff7875;border-color:#ff7875}.hb-sfcm__unshow__tag[data-v-52ee50f2]{padding-top:var(--hb-space);overflow:hidden}.hb-sfcm__unshow__tag__item[data-v-52ee50f2]{position:relative;float:left;margin-right:var(--hb-space);padding:2px 9px;color:#9ca3af;border:1px solid var(--hb-border-color);border-radius:var(--hb-border-radius);margin-bottom:var(--hb-space);cursor:pointer;-webkit-user-select:none;user-select:none}.hb-sfcm__unshow__tag__item.is-linked[data-v-52ee50f2]{color:#ff7875;border-color:#ff7875}.hb-sfcm__show__tag__item-close[data-v-52ee50f2]{margin-left:6px;cursor:pointer}.hb-sfcm__show__tag__item-close[data-v-52ee50f2]:hover{transform:scale(1.3)}.hb-sfcm__unshow__tag__item-add[data-v-52ee50f2]{position:absolute;width:100%;height:100%;top:0;left:0;background:#1a1818;color:#fff;text-align:center;display:flex;align-items:center;justify-content:center;border-radius:var(--hb-border-radius)}.hb-sfcm__unshow__tag__empty[data-v-52ee50f2]{text-align:center;color:var(--hb-border-color)}[data-v-5df81ec2]:root{--hb-theme-color: #ff5000;--hb-title-color: #333;--hb-space: 10px;--hb-h1-font-size: 20px;--hb-h2-font-size: 16px;--hb-text-font-size: 14px;--hb-subtext-font-size: 13px;--hb-subtext-color: #cccc;--hb-f-item-height: 34px;--hb-f-item-content-height: 30px;--hb-tip-font-size: 13px;--hb-border-radius: 6px;--hb-border-color: #d1d5db;--hb-list-button-height: 26px}.hb-form[data-v-5df81ec2] .ant-form-item{margin-bottom:var(--hb-space)}.hb-form .hb-form__footer[data-v-5df81ec2]{display:flex;justify-content:space-between}.hb-lib-form--container[data-v-5df81ec2]{overflow:hidden;margin:6px}.hide[data-v-5df81ec2]{height:0}.hb-form__form-item-col[data-v-5df81ec2]{flex:0 0 auto;min-width:200px;width:auto;padding-right:var(--hb-space);margin-bottom:16px}.form-footer[data-v-5df81ec2]{display:flex;align-items:center;margin-bottom:10px}.form-collapse-enter-active,.form-collapse-leave-active{transition:height .2s ease;overflow:hidden}.form-collapse-enter-from,.form-collapse-leave-to{height:0}.hb-lib-form-svg{width:16px;height:34px;margin-right:13px;cursor:pointer}.hb-lib-form-svg .icon{width:100%;height:100%}.hb-form-item-ui .ant-form-item.hb-lib-form-item-border--unneed{border:none!important}[data-v-cb524b69]:root{--hb-theme-color: #ff5000;--hb-title-color: #333;--hb-space: 10px;--hb-h1-font-size: 20px;--hb-h2-font-size: 16px;--hb-text-font-size: 14px;--hb-subtext-font-size: 13px;--hb-subtext-color: #cccc;--hb-f-item-height: 34px;--hb-f-item-content-height: 30px;--hb-tip-font-size: 13px;--hb-border-radius: 6px;--hb-border-color: #d1d5db;--hb-list-button-height: 26px}.hb-lib-list-page-act-item[data-v-cb524b69]{margin-right:var(--hb-space)}[data-v-0ab77a2c]:root{--hb-theme-color: #ff5000;--hb-title-color: #333;--hb-space: 10px;--hb-h1-font-size: 20px;--hb-h2-font-size: 16px;--hb-text-font-size: 14px;--hb-subtext-font-size: 13px;--hb-subtext-color: #cccc;--hb-f-item-height: 34px;--hb-f-item-content-height: 30px;--hb-tip-font-size: 13px;--hb-border-radius: 6px;--hb-border-color: #d1d5db;--hb-list-button-height: 26px}.hb-lib-list-btns-box[data-v-0ab77a2c]{display:flex;justify-content:space-between;align-items:center;background:#fff;padding:5px 5px 0;margin-top:5px;border-radius:6px 6px 0 0}.hb-lib-list-btns-box .hb-lib-list-btns-right[data-v-0ab77a2c]{display:flex;align-items:center}.hb-lib-list-btns-act-svg[data-v-0ab77a2c]{cursor:pointer;width:21px;height:21px;display:inline-block}.hb-lib-list-btns-act-svg .icon[data-v-0ab77a2c]{width:100%;height:100%}.hb-lib-list-btns-act-open[data-v-0ab77a2c]{cursor:pointer;width:21px;height:21px;display:flex;justify-content:center;align-items:center}.hb-lib-list-btns-act-open .icon[data-v-0ab77a2c]{width:100%;height:100%}.hb-lib-list-btns-item[data-v-0ab77a2c]:not(:last-child){margin-right:10px}.hb-lib-list-btns-left[data-v-0ab77a2c]{display:flex;align-items:center}.flex-between[data-v-11422adb]{display:flex;justify-content:space-between;align-items:center}.flex-center[data-v-11422adb]{display:flex;align-items:center}.hb-lib-selector-wrapper[data-v-11422adb]{position:relative}.hb-lib-selector-wrapper .ant-input[data-v-11422adb]{cursor:pointer}.has-prefix[data-v-11422adb]:before{content:attr(data-prefix);position:absolute;left:12px;top:50%;transform:translateY(-50%);color:#262626;font-size:14px;white-space:nowrap;pointer-events:none;z-index:1}.has-prefix[data-v-11422adb] .ant-select-selector{padding-left:calc(12px + var(--prefix-width, 0px))}.has-prefix[data-v-11422adb] .ant-select-selection-placeholder{padding-left:var(--prefix-width, 0px)}.hb-lib-selector-dropdown[data-v-11422adb]{padding:8px;min-width:200px}.hb-lib-selector-search[data-v-11422adb]{margin-bottom:8px}.hb-lib-selector-list[data-v-11422adb]{max-height:200px;overflow-y:auto}.hb-lib-selector-list[data-v-11422adb]::-webkit-scrollbar{width:6px}.hb-lib-selector-list[data-v-11422adb]::-webkit-scrollbar-track{background:#f1f1f1;border-radius:3px}.hb-lib-selector-list[data-v-11422adb]::-webkit-scrollbar-thumb{background:#d9d9d9;border-radius:3px}.hb-lib-selector-list[data-v-11422adb]::-webkit-scrollbar-thumb:hover{background:#bfbfbf}.hb-lib-selector-option[data-v-11422adb]{display:flex;align-items:center;padding:8px;cursor:pointer;border-radius:4px;transition:all .2s ease;gap:8px}.hb-lib-selector-option[data-v-11422adb]:hover{background-color:#f5f5f5}.hb-lib-selector-option.selected[data-v-11422adb]{background-color:#e6f7ff}.hb-lib-option-content[data-v-11422adb]{flex:1}.hb-lib-option-label[data-v-11422adb]{font-weight:500;color:#262626}.hb-lib-selector-empty[data-v-11422adb]{text-align:center;color:#bfbfbf;padding:20px 0;font-size:14px}.hb-lib-selector-footer[data-v-11422adb]{border-top:1px solid #f0f0f0;padding-top:8px;margin-top:8px;display:flex;justify-content:space-between;align-items:center}.hb-lib-footer-buttons[data-v-11422adb]{display:flex;gap:8px}.selector-tag[data-v-11422adb]{margin-right:3px;border-radius:4px;border-color:#ff5000;color:#ff5000}.selector-tag .tag-label[data-v-11422adb]{font-weight:500}.selector-tag .tag-description[data-v-11422adb]{margin-left:4px;font-size:12px;opacity:.8}.rotate-180[data-v-11422adb]{transform:rotate(180deg)}.transition-transform[data-v-11422adb]{transition:transform .2s}.hb-lib-search-tag[data-v-11422adb]{margin-right:3px;border-radius:4px;border-color:#ff5000;color:#ff5000}.hb-lib-search-tag__description[data-v-11422adb]{margin-left:4px;font-size:12px;opacity:.8}.hb-lib-multipleSelectModal-modal .ant-table-filter-trigger{font-size:18px!important}.hb-lib-multipleSelectModal-modal .ant-input-group-addon{border:none!important;cursor:pointer}.hb-lib-multipleSelectModal-modal .ant-modal-body{padding:calc(var(--hb-space) / 2)}.hb-lib-multipleSelectModal-modal .ant-table-thead .ant-table-column-title{color:#000;font-weight:bolder;font-size:18px}.hb-lib-multipleSelectModal-modal .ant-table-thead .ant-table-cell{color:#000;font-weight:bolder;font-size:18px;padding:calc(var(--hb-space) / 2)!important}.hb-lib-multipleSelectModal-modal .ant-table-row .ant-table-cell{padding:calc(var(--hb-space) / 2)!important}.hb-lib-multipleSelectModal-modal .ant-table-pagination.ant-pagination{margin:calc(var(--hb-space) / 2) 0!important}.hb-lib-form-item-filter-modal-search{padding:8px}.hb-lib-form-item-filter-modal-search-input{width:188px;margin-bottom:8px;display:block}.hb-lib-form-item-filter-modal-buttons{display:flex;justify-content:space-between;margin-top:10px}.hb-lib-table-act-box[data-v-ecac600b]{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:10px}.hb-lib-table-act-box .hb-lib-table-main-action[data-v-ecac600b],.hb-lib-table-act-box .hb-lib-table-more-action[data-v-ecac600b]{text-decoration:none}.hb-lib-table-act-box .hb-lib-table-more-action[data-v-ecac600b]{display:inline-flex;align-items:center}.hb-lib-table-confirm-modal-content[data-v-ecac600b]{font-size:16px}.hb-lib-table-act-box .ant-divider-vertical{margin:0}.ant-dropdown-menu-title-content>a:hover{color:var(--hb-theme-color)!important}.hb-lib-list-table[data-v-d4abbf25]{background:#fff;padding:0 5px;border-radius:0 0 6px 6px}.hb-lib-list-table[data-v-d4abbf25] .copy-text-eyevue.ab{position:relative!important;right:0!important;top:0!important}.hb-lib-list-table-act[data-v-d4abbf25]{display:flex;justify-content:space-between;align-items:center}.nowrap-table[data-v-d4abbf25] .ant-table-tbody>.ant-table-row>td{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;height:var(--hb-lib-table-td-height)!important;box-sizing:content-box}[data-v-9200ee57]:root{--hb-theme-color: #ff5000;--hb-title-color: #333;--hb-space: 10px;--hb-h1-font-size: 20px;--hb-h2-font-size: 16px;--hb-text-font-size: 14px;--hb-subtext-font-size: 13px;--hb-subtext-color: #cccc;--hb-f-item-height: 34px;--hb-f-item-content-height: 30px;--hb-tip-font-size: 13px;--hb-border-radius: 6px;--hb-border-color: #d1d5db;--hb-list-button-height: 26px}.ant-alert[data-v-9200ee57]{box-sizing:border-box;margin:0;color:#000000a6;font-size:14px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:relative;padding:8px 15px 8px 37px;word-wrap:break-word;border-radius:var(--hb-border-radius);border:1px solid #ffb27a;background-color:#fff2e6}.ant-alert .com-alert[data-v-9200ee57]{display:flex;justify-content:space-between;width:100%;align-items:center}.ant-alert .com-alert a[data-v-9200ee57]{color:#ff5000}.select-all-container[data-v-9200ee57]{padding:8px 0}.hb-lib-table-setting-box[data-v-9200ee57]{display:flex}.hb-lib-table-set-drag[data-v-9200ee57]{max-height:300px;overflow-y:auto}.hb-lib-table-drag-item[data-v-9200ee57]{display:flex;align-items:center;justify-content:space-between;padding:8px 12px;border:1px solid #f0f0f0;margin-bottom:4px;background-color:#fff;border-radius:var(--hb-border-radius);width:280px}.hb-lib-table-drag-item[data-v-9200ee57]:hover{background-color:#f5f5f5}.hb-lib-table-drag-item .drag-handle[data-v-9200ee57]{cursor:move;color:#999;padding:4px;-webkit-user-select:none;user-select:none}.ghost[data-v-9200ee57]{opacity:.5;background:#c8ebfb}.table-setting-checkbox-group[data-v-9200ee57]{display:flex;flex-wrap:wrap}.table-setting-checkbox-group[data-v-9200ee57] .ant-checkbox-group-item{margin-right:0;width:33.33%}.hb-lib-table-set-btn-group[data-v-9200ee57]{margin-top:10px;display:flex;justify-content:end;align-items:center;border-top:1px solid #f0f0f0;padding-top:8px}.drag-hide[data-v-9200ee57]{visibility:hidden}.hb-lib-table-drag-item-act-btn[data-v-9200ee57]{display:inline-block;cursor:pointer;width:14px;height:20px}.hb-lib-table-drag-item-act-btn .icon[data-v-9200ee57]{width:100%;height:100%}.hb-lib-table-col-set[data-v-9200ee57]{display:inline-block;cursor:pointer;width:22px;height:23px}.hb-lib-table-col-set .icon[data-v-9200ee57]{width:100%;height:100%}.hb-lib-table-drag-item-act[data-v-9200ee57]{display:flex;align-items:center;width:40px;justify-content:space-between}.alertInfoContent{width:auto!important}.hb-lib-copy-text-eyevue[data-v-d5ca4420]{font-size:17px;cursor:pointer}.hb-lib-copy-text-eyevue.ab[data-v-d5ca4420]{position:absolute;right:34px;top:50%;transform:translateY(-50%);background:#fff}.hb-lib-copy-text-eyevue.normal[data-v-d5ca4420]{position:relative}.drag-slot-wrapper[data-v-15b227f5]{cursor:move;padding:8px;background-color:#f9f9f9;border:1px solid #eee;margin-bottom:10px}:root{--hb-theme-color: #ff5000;--hb-title-color: #333;--hb-space: 10px;--hb-h1-font-size: 20px;--hb-h2-font-size: 16px;--hb-text-font-size: 14px;--hb-subtext-font-size: 13px;--hb-subtext-color: #cccc;--hb-f-item-height: 34px;--hb-f-item-content-height: 30px;--hb-tip-font-size: 13px;--hb-border-radius: 6px;--hb-border-color: #d1d5db;--hb-list-button-height: 26px}.hb-lib-list-page-container{background:#fff}.hb-lib-list-page-container .hb_list_page_button{height:var(--hb-list-button-height)!important;padding:0 var(--hb-space)!important}.hb-lib-list-page-container .hb_list_page_button:not(:last-child){margin-right:var(--hb-space)}.hb-lib-list-page-container .hb_list_page_button .buttonText{line-height:var(--hb-list-button-height)!important}.hb-lib-list-page-container .ant-table-pagination.ant-pagination{margin:calc(var(--hb-space) / 2) 0}.list-page-box{padding:5px 0 0}.list-page-box .ant-table-row .ant-table-cell,.list-page-box .ant-table-thead .ant-table-cell{padding:calc(var(--hb-space) / 2)!important}.list-page-box .ant-tabs-top>.ant-tabs-nav{margin-bottom:calc(var(--hb-space) / 2)!important}.list-page-box .ant-tabs-nav .ant-tabs-nav-list .ant-tabs-tab{padding:calc(var(--hb-space) / 2) 0!important}.list-page-box .ant-table-body::-webkit-scrollbar-thumb{background:#d9d9d9;border-radius:var(--hb-border-radius)}.list-page-box .ant-table-bordered.ant-table-fixed-header .ant-table-body{height:var(--hb-list-table-height)!important;max-height:none!important}.list-page-box .ant-table-bordered.ant-table-fixed-header .ant-table-body>table{height:var(--hb-list-ttable-height)!important}.hb-lib-list-page-act-box{background:#fff;display:flex;justify-content:space-between;box-shadow:0 4px 3px #f0f0f0cf;padding:calc(var(--hb-space) / 2) var(--hb-space)}.hb-lib-list-page-act{display:flex;align-items:center}.hb-lib-list-page-act .hb-lib-list-page-act-svg{display:inline-block;width:18px;height:18px;cursor:pointer}.hb-lib-list-page-act .hb-lib-list-page-act-svg:not(:last-child){margin-right:calc(var(--hb-space) / 2)}.hb-lib-list-page-act .hb-lib-list-page-act-svg .icon{width:100%;height:100%}.hb-lib-list-page-breadcrumb{font-size:var(--hb-text-font-size);color:#3e3e3e;display:flex;align-items:center}.hb-lib-list-page-form-box{display:flex;justify-content:space-between;background:#fff;border-radius:8px}.hb-form-item-ui{flex:1}.hb-form-item-ui .ant-form-item{border:1px solid #d1d5db!important;border-radius:var(--hb-border-radius)!important;margin-bottom:var(--hb-space)!important;margin-right:var(--hb-space)!important;height:var(--hb-f-item-height);min-width:250px!important}.hb-form-item-ui .ant-input{border:none!important;border-radius:var(--hb-border-radius)!important;padding:4px var(--hb-space) 4px 0px!important}.hb-form-item-ui .ant-input:focus{outline:none!important;box-shadow:none!important}.hb-form-item-ui .ant-form-item-label>label{padding:0 0 0 var(--hb-space)}.hb-form-item-ui .ant-select-selector{border:none!important;border-radius:var(--hb-border-radius)!important;padding:0px var(--hb-space) 0px var(--hb-space)!important;outline:none!important;box-shadow:none!important}.hb-form-item-ui .ant-select-selector:focus{outline:none!important;box-shadow:none!important}.hb-form-item-ui .ant-select:focus{outline:none!important;box-shadow:none!important}.hb-form-item-ui .ant-select-focused{outline:none!important;box-shadow:none!important}.hb-form-item-ui .ant-input-affix-wrapper{height:var(--hb-f-item-content-height)!important;border:none!important;border-radius:var(--hb-border-radius)!important}.hb-form-item-ui .ant-input-affix-wrapper:focus{outline:none!important;box-shadow:none!important}.hb-form-item-ui .ant-picker,.hb-form-item-ui .ant-picker-range{border:none!important;border-radius:var(--hb-border-radius)!important}.hb-form-item-ui .ant-picker-focused{box-shadow:none!important}.hb-form-item-ui .ant-input-affix-wrapper:focus,.hb-form-item-ui .ant-input-affix-wrapper-focused{box-shadow:none!important}.hb-form-item-ui .ant-form-item-control-input-content{display:flex}.hb-form-item-ui .ant-select-selection-item{display:flex;align-items:center}.hb-form-item-ui .ant-select-selection-placeholder{padding-left:var(--hb-space)!important}.hb-form-item-ui .ant-select-selection-overflow{flex-wrap:nowrap;overflow:hidden}.hb-form-item-ui .ant-input-group-addon{border:none!important}body{overflow-x:hidden}.btn_pd{padding-bottom:var(--hb-space)!important}.hb-lib-detail-box .ant-card{margin-bottom:var(--hb-space)!important}.hb-lib-detail-box .ant-card-head{min-height:var(--hb-card-head)!important}.hb-lib-detail-box .ant-card-head .ant-card-head-title{padding:calc(var(--hb-space) / 2) 0!important}.hb-lib-detail-box .ant-card-body{padding:var(--hb-space)!important}.hb-lib-detail-box .ant-table-row .ant-table-cell,.hb-lib-detail-box .ant-table-thead .ant-table-cell{padding:calc(var(--hb-space) / 2)!important}.hb-lib-detail-box .ant-table-pagination.ant-pagination{margin:calc(var(--hb-space) / 2) 0!important}.hb-lib-detail-box .ant-descriptions-row,.hb-lib-detail-box .ant-descriptions-item{padding-bottom:calc(var(--hb-space) / 2)!important}
|
|
1
|
+
[data-v-52ee50f2]:root{--hb-theme-color: #ff5000;--hb-title-color: #333;--hb-space: 10px;--hb-h1-font-size: 20px;--hb-h2-font-size: 16px;--hb-text-font-size: 14px;--hb-subtext-font-size: 13px;--hb-subtext-color: #cccc;--hb-f-item-height: 34px;--hb-f-item-content-height: 30px;--hb-tip-font-size: 13px;--hb-border-radius: 6px;--hb-border-color: #d1d5db;--hb-list-button-height: 26px}.hb-sfcm[data-v-52ee50f2] .ant-modal-header{border-bottom:1px solid var(--hb-border-color);margin-bottom:var(--hb-space)}.hb-sfcm__title[data-v-52ee50f2]{font-size:var(--hb-h1-font-size);font-weight:700;color:var(--hb-title-color)}.hb-sfcm__title__tip[data-v-52ee50f2]{margin-right:var(--hb-space);padding-left:var(--hb-space);color:#080808;font-size:16px;font-weight:500;position:relative}.hb-sfcm__title__tip[data-v-52ee50f2]:before{content:"";width:6px;height:14px;background:var(--hb-theme-color);position:absolute;top:50%;left:0;transform:translateY(-50%);border-radius:var(--hb-border-radius)}.hb-sfcm__show__tag[data-v-52ee50f2]{padding-top:var(--hb-space);overflow:hidden}.hb-sfcm__show__tag__item[data-v-52ee50f2]{float:left;margin-right:var(--hb-space);padding:2px 9px;background:var(--hb-theme-color);color:#fff;border:1px solid var(--hb-theme-color);border-radius:var(--hb-border-radius);margin-bottom:var(--hb-space);cursor:move;-webkit-user-select:none;user-select:none;display:flex;align-items:center}.hb-sfcm__show__tag__item.is-linked[data-v-52ee50f2]{background:#ff7875;border-color:#ff7875;cursor:not-allowed}.hb-sfcm__show__tag .is-fixed[data-v-52ee50f2]{background:none;color:#9ca3af;border:1px solid var(--hb-border-color);cursor:not-allowed}.hb-sfcm__show__tag .is-linked[data-v-52ee50f2]{background:#ff7875;border-color:#ff7875;cursor:not-allowed}.hb-sfcm__show__tag .is-linked[data-v-52ee50f2]:hover{background:#ff7875;border-color:#ff7875}.hb-sfcm__unshow__tag[data-v-52ee50f2]{padding-top:var(--hb-space);overflow:hidden}.hb-sfcm__unshow__tag__item[data-v-52ee50f2]{position:relative;float:left;margin-right:var(--hb-space);padding:2px 9px;color:#9ca3af;border:1px solid var(--hb-border-color);border-radius:var(--hb-border-radius);margin-bottom:var(--hb-space);cursor:pointer;-webkit-user-select:none;user-select:none}.hb-sfcm__unshow__tag__item.is-linked[data-v-52ee50f2]{color:#ff7875;border-color:#ff7875}.hb-sfcm__show__tag__item-close[data-v-52ee50f2]{margin-left:6px;cursor:pointer}.hb-sfcm__show__tag__item-close[data-v-52ee50f2]:hover{transform:scale(1.3)}.hb-sfcm__unshow__tag__item-add[data-v-52ee50f2]{position:absolute;width:100%;height:100%;top:0;left:0;background:#1a1818;color:#fff;text-align:center;display:flex;align-items:center;justify-content:center;border-radius:var(--hb-border-radius)}.hb-sfcm__unshow__tag__empty[data-v-52ee50f2]{text-align:center;color:var(--hb-border-color)}[data-v-203a1bd9]:root{--hb-theme-color: #ff5000;--hb-title-color: #333;--hb-space: 10px;--hb-h1-font-size: 20px;--hb-h2-font-size: 16px;--hb-text-font-size: 14px;--hb-subtext-font-size: 13px;--hb-subtext-color: #cccc;--hb-f-item-height: 34px;--hb-f-item-content-height: 30px;--hb-tip-font-size: 13px;--hb-border-radius: 6px;--hb-border-color: #d1d5db;--hb-list-button-height: 26px}.hb-form[data-v-203a1bd9] .ant-form-item{margin-bottom:var(--hb-space)}.hb-form .hb-form__footer[data-v-203a1bd9]{display:flex;justify-content:space-between}.hb-lib-form--container[data-v-203a1bd9]{overflow:hidden;margin:6px}.hide[data-v-203a1bd9]{height:0}.hb-form__form-item-col[data-v-203a1bd9]{flex:0 0 auto;min-width:200px;width:auto;padding-right:var(--hb-space);margin-bottom:16px}.form-footer[data-v-203a1bd9]{display:flex;align-items:center;margin-bottom:10px}.form-collapse-enter-active,.form-collapse-leave-active{transition:height .2s ease;overflow:hidden}.form-collapse-enter-from,.form-collapse-leave-to{height:0}.hb-lib-form-svg{width:16px;height:34px;margin-right:13px;cursor:pointer}.hb-lib-form-svg .icon{width:100%;height:100%}.hb-form-item-ui .ant-form-item.hb-lib-form-item-border--unneed{border:none!important}[data-v-a7ddfc50]:root{--hb-theme-color: #ff5000;--hb-title-color: #333;--hb-space: 10px;--hb-h1-font-size: 20px;--hb-h2-font-size: 16px;--hb-text-font-size: 14px;--hb-subtext-font-size: 13px;--hb-subtext-color: #cccc;--hb-f-item-height: 34px;--hb-f-item-content-height: 30px;--hb-tip-font-size: 13px;--hb-border-radius: 6px;--hb-border-color: #d1d5db;--hb-list-button-height: 26px}.hb-lib-list-page-act-item[data-v-a7ddfc50]{margin-right:var(--hb-space)}[data-v-da13672b]:root{--hb-theme-color: #ff5000;--hb-title-color: #333;--hb-space: 10px;--hb-h1-font-size: 20px;--hb-h2-font-size: 16px;--hb-text-font-size: 14px;--hb-subtext-font-size: 13px;--hb-subtext-color: #cccc;--hb-f-item-height: 34px;--hb-f-item-content-height: 30px;--hb-tip-font-size: 13px;--hb-border-radius: 6px;--hb-border-color: #d1d5db;--hb-list-button-height: 26px}.hb-lib-list-btns-box[data-v-da13672b]{display:flex;justify-content:space-between;align-items:center;background:#fff;padding:5px 5px 0;margin-top:5px;border-radius:6px 6px 0 0}.hb-lib-list-btns-box .hb-lib-list-btns-right[data-v-da13672b]{display:flex;align-items:center}.hb-lib-list-btns-act-svg[data-v-da13672b]{cursor:pointer;width:21px;height:21px;display:inline-block}.hb-lib-list-btns-act-svg .icon[data-v-da13672b]{width:100%;height:100%}.hb-lib-list-btns-act-open[data-v-da13672b]{cursor:pointer;width:21px;height:21px;display:flex;justify-content:center;align-items:center}.hb-lib-list-btns-act-open .icon[data-v-da13672b]{width:100%;height:100%}.hb-lib-list-btns-item[data-v-da13672b]:not(:last-child){margin-right:10px}.hb-lib-list-btns-left[data-v-da13672b]{display:flex;align-items:center}.flex-between[data-v-87177371]{display:flex;justify-content:space-between;align-items:center}.flex-center[data-v-87177371]{display:flex;align-items:center}.hb-lib-selector-wrapper[data-v-87177371]{position:relative}.hb-lib-selector-wrapper .ant-input[data-v-87177371]{cursor:pointer}.has-prefix[data-v-87177371]:before{content:attr(data-prefix);position:absolute;left:12px;top:50%;transform:translateY(-50%);color:#262626;font-size:14px;white-space:nowrap;pointer-events:none;z-index:1}.has-prefix[data-v-87177371] .ant-select-selector{padding-left:calc(12px + var(--prefix-width, 0px))}.has-prefix[data-v-87177371] .ant-select-selection-placeholder{padding-left:var(--prefix-width, 0px)}.hb-lib-selector-dropdown[data-v-87177371]{padding:8px;min-width:200px}.hb-lib-selector-search[data-v-87177371]{margin-bottom:8px}.hb-lib-selector-list[data-v-87177371]{max-height:200px;overflow-y:auto}.hb-lib-selector-list[data-v-87177371]::-webkit-scrollbar{width:6px}.hb-lib-selector-list[data-v-87177371]::-webkit-scrollbar-track{background:#f1f1f1;border-radius:3px}.hb-lib-selector-list[data-v-87177371]::-webkit-scrollbar-thumb{background:#d9d9d9;border-radius:3px}.hb-lib-selector-list[data-v-87177371]::-webkit-scrollbar-thumb:hover{background:#bfbfbf}.hb-lib-selector-option[data-v-87177371]{display:flex;align-items:center;padding:8px;cursor:pointer;border-radius:4px;transition:all .2s ease;gap:8px}.hb-lib-selector-option[data-v-87177371]:hover{background-color:#f5f5f5}.hb-lib-selector-option.selected[data-v-87177371]{background-color:#e6f7ff}.hb-lib-option-content[data-v-87177371]{flex:1}.hb-lib-option-label[data-v-87177371]{font-weight:500;color:#262626}.hb-lib-selector-empty[data-v-87177371]{text-align:center;color:#bfbfbf;padding:20px 0;font-size:14px}.hb-lib-selector-footer[data-v-87177371]{border-top:1px solid #f0f0f0;padding-top:8px;margin-top:8px;display:flex;justify-content:space-between;align-items:center}.hb-lib-footer-buttons[data-v-87177371]{display:flex;gap:8px}.selector-tag[data-v-87177371]{margin-right:3px;border-radius:4px;border-color:#ff5000;color:#ff5000}.selector-tag .tag-label[data-v-87177371]{font-weight:500}.selector-tag .tag-description[data-v-87177371]{margin-left:4px;font-size:12px;opacity:.8}.rotate-180[data-v-87177371]{transform:rotate(180deg)}.transition-transform[data-v-87177371]{transition:transform .2s}.hb-lib-search-tag[data-v-87177371]{margin-right:3px;border-radius:4px;border-color:#ff5000;color:#ff5000}.hb-lib-search-tag__description[data-v-87177371]{margin-left:4px;font-size:12px;opacity:.8}.hb-lib-multipleSelectModal-modal .ant-table-filter-trigger{font-size:18px!important}.hb-lib-multipleSelectModal-modal .ant-input-group-addon{border:none!important;cursor:pointer}.hb-lib-multipleSelectModal-modal .ant-modal-body{padding:calc(var(--hb-space) / 2)}.hb-lib-multipleSelectModal-modal .ant-table-thead .ant-table-column-title{color:#000;font-weight:bolder;font-size:18px}.hb-lib-multipleSelectModal-modal .ant-table-thead .ant-table-cell{color:#000;font-weight:bolder;font-size:18px;padding:calc(var(--hb-space) / 2)!important}.hb-lib-multipleSelectModal-modal .ant-table-row .ant-table-cell{padding:calc(var(--hb-space) / 2)!important}.hb-lib-multipleSelectModal-modal .ant-table-pagination.ant-pagination{margin:calc(var(--hb-space) / 2) 0!important}.hb-lib-form-item-filter-modal-search{padding:8px}.hb-lib-form-item-filter-modal-search-input{width:188px;margin-bottom:8px;display:block}.hb-lib-form-item-filter-modal-buttons{display:flex;justify-content:space-between;margin-top:10px}.hb-lib-table-act-box[data-v-ecac600b]{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:10px}.hb-lib-table-act-box .hb-lib-table-main-action[data-v-ecac600b],.hb-lib-table-act-box .hb-lib-table-more-action[data-v-ecac600b]{text-decoration:none}.hb-lib-table-act-box .hb-lib-table-more-action[data-v-ecac600b]{display:inline-flex;align-items:center}.hb-lib-table-confirm-modal-content[data-v-ecac600b]{font-size:16px}.hb-lib-table-act-box .ant-divider-vertical{margin:0}.ant-dropdown-menu-title-content>a:hover{color:var(--hb-theme-color)!important}.hb-lib-list-table[data-v-d4abbf25]{background:#fff;padding:0 5px;border-radius:0 0 6px 6px}.hb-lib-list-table[data-v-d4abbf25] .copy-text-eyevue.ab{position:relative!important;right:0!important;top:0!important}.hb-lib-list-table-act[data-v-d4abbf25]{display:flex;justify-content:space-between;align-items:center}.nowrap-table[data-v-d4abbf25] .ant-table-tbody>.ant-table-row>td{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;height:var(--hb-lib-table-td-height)!important;box-sizing:content-box}[data-v-fe93cce7]:root{--hb-theme-color: #ff5000;--hb-title-color: #333;--hb-space: 10px;--hb-h1-font-size: 20px;--hb-h2-font-size: 16px;--hb-text-font-size: 14px;--hb-subtext-font-size: 13px;--hb-subtext-color: #cccc;--hb-f-item-height: 34px;--hb-f-item-content-height: 30px;--hb-tip-font-size: 13px;--hb-border-radius: 6px;--hb-border-color: #d1d5db;--hb-list-button-height: 26px}.ant-alert[data-v-fe93cce7]{box-sizing:border-box;margin:0;color:#000000a6;font-size:14px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:relative;padding:8px 15px 8px 37px;word-wrap:break-word;border-radius:var(--hb-border-radius);border:1px solid #ffb27a;background-color:#fff2e6}.ant-alert .com-alert[data-v-fe93cce7]{display:flex;justify-content:space-between;width:100%;align-items:center}.ant-alert .com-alert a[data-v-fe93cce7]{color:#ff5000}.select-all-container[data-v-fe93cce7]{padding:8px 0}.hb-lib-table-setting-box[data-v-fe93cce7]{display:flex}.hb-lib-table-set-drag[data-v-fe93cce7]{max-height:300px;overflow-y:auto}.hb-lib-table-drag-item[data-v-fe93cce7]{display:flex;align-items:center;justify-content:space-between;padding:8px 12px;border:1px solid #f0f0f0;margin-bottom:4px;background-color:#fff;border-radius:var(--hb-border-radius);width:280px}.hb-lib-table-drag-item[data-v-fe93cce7]:hover{background-color:#f5f5f5}.hb-lib-table-drag-item .drag-handle[data-v-fe93cce7]{cursor:move;color:#999;padding:4px;-webkit-user-select:none;user-select:none}.ghost[data-v-fe93cce7]{opacity:.5;background:#c8ebfb}.table-setting-checkbox-group[data-v-fe93cce7]{display:flex;flex-wrap:wrap}.table-setting-checkbox-group[data-v-fe93cce7] .ant-checkbox-group-item{margin-right:0;width:33.33%}.hb-lib-table-set-btn-group[data-v-fe93cce7]{margin-top:10px;display:flex;justify-content:end;align-items:center;border-top:1px solid #f0f0f0;padding-top:8px}.drag-hide[data-v-fe93cce7]{visibility:hidden}.hb-lib-table-drag-item-act-btn[data-v-fe93cce7]{display:inline-block;cursor:pointer;width:14px;height:20px}.hb-lib-table-drag-item-act-btn .icon[data-v-fe93cce7]{width:100%;height:100%}.hb-lib-table-col-set[data-v-fe93cce7]{display:inline-block;cursor:pointer;width:22px;height:23px}.hb-lib-table-col-set .icon[data-v-fe93cce7]{width:100%;height:100%}.hb-lib-table-drag-item-act[data-v-fe93cce7]{display:flex;align-items:center;width:40px;justify-content:space-between}.alertInfoContent{width:auto!important}.hb-lib-form-tooltip-select[data-v-a7f23469]{width:100%}.hb-lib-form-tooltip-select__option[data-v-a7f23469]{display:inline-flex;align-items:center;gap:4px}.hb-lib-form-tooltip-select__option.is-ellipsis[data-v-a7f23469]{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hb-lib-form-tooltip-select__dropdown .ant-select-item-option-content{display:flex;align-items:center;gap:4px}.hb-lib-copy-text-eyevue[data-v-d5ca4420]{font-size:17px;cursor:pointer}.hb-lib-copy-text-eyevue.ab[data-v-d5ca4420]{position:absolute;right:34px;top:50%;transform:translateY(-50%);background:#fff}.hb-lib-copy-text-eyevue.normal[data-v-d5ca4420]{position:relative}.drag-slot-wrapper[data-v-15b227f5]{cursor:move;padding:8px;background-color:#f9f9f9;border:1px solid #eee;margin-bottom:10px}:root{--hb-theme-color: #ff5000;--hb-title-color: #333;--hb-space: 10px;--hb-h1-font-size: 20px;--hb-h2-font-size: 16px;--hb-text-font-size: 14px;--hb-subtext-font-size: 13px;--hb-subtext-color: #cccc;--hb-f-item-height: 34px;--hb-f-item-content-height: 30px;--hb-tip-font-size: 13px;--hb-border-radius: 6px;--hb-border-color: #d1d5db;--hb-list-button-height: 26px}.hb-lib-list-page-container{background:#fff}.hb-lib-list-page-container .hb_list_page_button{height:var(--hb-list-button-height)!important;padding:0 var(--hb-space)!important}.hb-lib-list-page-container .hb_list_page_button:not(:last-child){margin-right:var(--hb-space)}.hb-lib-list-page-container .hb_list_page_button .buttonText{line-height:var(--hb-list-button-height)!important}.hb-lib-list-page-container .ant-table-pagination.ant-pagination{margin:calc(var(--hb-space) / 2) 0}.list-page-box{padding:5px 0 0}.list-page-box .ant-table-row .ant-table-cell,.list-page-box .ant-table-thead .ant-table-cell{padding:calc(var(--hb-space) / 2)!important}.list-page-box .ant-tabs-top>.ant-tabs-nav{margin-bottom:calc(var(--hb-space) / 2)!important}.list-page-box .ant-tabs-nav .ant-tabs-nav-list .ant-tabs-tab{padding:calc(var(--hb-space) / 2) 0!important}.list-page-box .ant-table-body::-webkit-scrollbar-thumb{background:#d9d9d9;border-radius:var(--hb-border-radius)}.list-page-box .ant-table-bordered.ant-table-fixed-header .ant-table-body{height:var(--hb-list-table-height)!important;max-height:none!important}.hb-lib-list-page-act-box{background:#fff;display:flex;justify-content:space-between;box-shadow:0 4px 3px #f0f0f0cf;padding:calc(var(--hb-space) / 2) var(--hb-space)}.hb-lib-list-page-act{display:flex;align-items:center}.hb-lib-list-page-act .hb-lib-list-page-act-svg{display:inline-block;width:18px;height:18px;cursor:pointer}.hb-lib-list-page-act .hb-lib-list-page-act-svg:not(:last-child){margin-right:calc(var(--hb-space) / 2)}.hb-lib-list-page-act .hb-lib-list-page-act-svg .icon{width:100%;height:100%}.hb-lib-list-page-breadcrumb{font-size:var(--hb-text-font-size);color:#3e3e3e;display:flex;align-items:center}.hb-lib-list-page-form-box{display:flex;justify-content:space-between;background:#fff;border-radius:8px}.hb-form-item-ui{flex:1}.hb-form-item-ui .ant-form-item{border:1px solid #d1d5db!important;border-radius:var(--hb-border-radius)!important;margin-bottom:var(--hb-space)!important;margin-right:var(--hb-space)!important;height:var(--hb-f-item-height);min-width:250px!important}.hb-form-item-ui .ant-input{border:none!important;border-radius:var(--hb-border-radius)!important;padding:4px var(--hb-space) 4px 0px!important}.hb-form-item-ui .ant-input:focus{outline:none!important;box-shadow:none!important}.hb-form-item-ui .ant-form-item-label>label{padding:0 0 0 var(--hb-space)}.hb-form-item-ui .ant-select-selector{border:none!important;border-radius:var(--hb-border-radius)!important;padding:0px var(--hb-space) 0px var(--hb-space)!important;outline:none!important;box-shadow:none!important}.hb-form-item-ui .ant-select-selector:focus{outline:none!important;box-shadow:none!important}.hb-form-item-ui .ant-select:focus{outline:none!important;box-shadow:none!important}.hb-form-item-ui .ant-select-focused{outline:none!important;box-shadow:none!important}.hb-form-item-ui .ant-input-affix-wrapper{height:var(--hb-f-item-content-height)!important;border:none!important;border-radius:var(--hb-border-radius)!important}.hb-form-item-ui .ant-input-affix-wrapper:focus{outline:none!important;box-shadow:none!important}.hb-form-item-ui .ant-picker,.hb-form-item-ui .ant-picker-range{border:none!important;border-radius:var(--hb-border-radius)!important}.hb-form-item-ui .ant-picker-focused{box-shadow:none!important}.hb-form-item-ui .ant-input-affix-wrapper:focus,.hb-form-item-ui .ant-input-affix-wrapper-focused{box-shadow:none!important}.hb-form-item-ui .ant-form-item-control-input-content{display:flex}.hb-form-item-ui .ant-select-selection-item{display:flex;align-items:center}.hb-form-item-ui .ant-select-selection-placeholder{padding-left:var(--hb-space)!important}.hb-form-item-ui .ant-select-selection-overflow{flex-wrap:nowrap;overflow:hidden}.hb-form-item-ui .ant-input-group-addon{border:none!important}body{overflow-x:hidden}.btn_pd{padding-bottom:var(--hb-space)!important}.hb-lib-detail-box .ant-card{margin-bottom:var(--hb-space)!important}.hb-lib-detail-box .ant-card-head{min-height:var(--hb-card-head)!important}.hb-lib-detail-box .ant-card-head .ant-card-head-title{padding:calc(var(--hb-space) / 2) 0!important}.hb-lib-detail-box .ant-card-body{padding:var(--hb-space)!important}.hb-lib-detail-box .ant-table-row .ant-table-cell,.hb-lib-detail-box .ant-table-thead .ant-table-cell{padding:calc(var(--hb-space) / 2)!important}.hb-lib-detail-box .ant-table-pagination.ant-pagination{margin:calc(var(--hb-space) / 2) 0!important}.hb-lib-detail-box .ant-descriptions-row,.hb-lib-detail-box .ant-descriptions-item{padding-bottom:calc(var(--hb-space) / 2)!important}
|