iv-npm 1.6.52 → 1.6.54
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/package.json +1 -1
- package/packages/shared/package.json +31 -31
- package/packages/ui/dist/business-ui/component/IVTimeSelector.d.ts +79 -0
- package/packages/ui/dist/index.cjs.css +1 -1
- package/packages/ui/dist/index.cjs.js +22 -12
- package/packages/ui/dist/index.cjs.js.map +1 -1
- package/packages/ui/dist/index.esm.css +1 -1
- package/packages/ui/dist/index.esm.js +27 -17
- package/packages/ui/dist/index.esm.js.map +1 -1
- package/packages/ui/dist/index.umd.css +1 -1
- package/packages/ui/dist/index.umd.js +23 -12
- package/packages/ui/dist/index.umd.js.map +1 -1
- package/packages/ui/package.json +3 -0
- package/pnpm-lock.yaml +323 -29
- package/packages/ui/dist/business-ui/component/IVMrpLineDropdown.d.ts +0 -155
- package/packages/ui/dist/business-ui/component/IVMrpManagDropdown.d.ts +0 -141
- package/packages/ui/dist/business-ui/component/IVMrpMaterialSelector.d.ts +0 -20
- package/packages/ui/dist/business-ui/component/IVMrpMaterialTypeDropdown.d.ts +0 -158
- package/packages/ui/dist/business-ui/component/IVMrpOrgDropdown.d.ts +0 -152
- package/packages/ui/dist/business-ui/component/IVMrpPostDropdown.d.ts +0 -148
- package/packages/ui/dist/business-ui/component/IVMrpProdBaseDropdown.d.ts +0 -154
- package/packages/ui/dist/business-ui/component/IVMrpRateDropdown.d.ts +0 -46
- package/packages/ui/dist/business-ui/component/IVMrpSetofbookDropdown.d.ts +0 -158
- package/packages/ui/dist/business-ui/component/IVMrpUnitDropdown.d.ts +0 -64
- package/packages/ui/dist/business-ui/component/IVMrpUserSelector.d.ts +0 -20
- package/packages/ui/dist/business-ui/component/IVMrpVendorSelector.d.ts +0 -20
- package/packages/ui/dist/function-ui/component/IVMrpModal.d.ts +0 -41
- package/packages/ui/dist/function-ui/component/IVMrpTable.d.ts +0 -79
- package/packages/ui/dist/function-ui/component/IVMrpTableControl.d.ts +0 -17
package/package.json
CHANGED
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@IVNPM/shared",
|
|
3
|
-
"version": "1.0.0",
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "IVNPM/shared",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"prepare": "npm run build",
|
|
8
|
-
"dev": "tsup --watch",
|
|
9
|
-
"build": "tsup"
|
|
10
|
-
},
|
|
11
|
-
"main": "dist/utils/index.mjs",
|
|
12
|
-
"module": "dist/utils/index.mjs",
|
|
13
|
-
"types": "dist/utils/index.d.ts",
|
|
14
|
-
"files": [
|
|
15
|
-
"index.js",
|
|
16
|
-
"dist"
|
|
17
|
-
],
|
|
18
|
-
"author": "Mr.Cong",
|
|
19
|
-
"license": "ISC",
|
|
20
|
-
"devDependencies": {
|
|
21
|
-
"@types/node": "^18.6.4",
|
|
22
|
-
"rollup-plugin-copy": "^3.4.0",
|
|
23
|
-
"tsup": "^6.2.1"
|
|
24
|
-
},
|
|
25
|
-
"peerDependencies": {
|
|
26
|
-
"ant-design-vue": "^3.2.5"
|
|
27
|
-
},
|
|
28
|
-
"dependencies": {
|
|
29
|
-
"nanoid": "^4.0.0"
|
|
30
|
-
}
|
|
31
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@IVNPM/shared",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "IVNPM/shared",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"prepare": "npm run build",
|
|
8
|
+
"dev": "tsup --watch",
|
|
9
|
+
"build": "tsup"
|
|
10
|
+
},
|
|
11
|
+
"main": "dist/utils/index.mjs",
|
|
12
|
+
"module": "dist/utils/index.mjs",
|
|
13
|
+
"types": "dist/utils/index.d.ts",
|
|
14
|
+
"files": [
|
|
15
|
+
"index.js",
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"author": "Mr.Cong",
|
|
19
|
+
"license": "ISC",
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"@types/node": "^18.6.4",
|
|
22
|
+
"rollup-plugin-copy": "^3.4.0",
|
|
23
|
+
"tsup": "^6.2.1"
|
|
24
|
+
},
|
|
25
|
+
"peerDependencies": {
|
|
26
|
+
"ant-design-vue": "^3.2.5"
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"nanoid": "^4.0.0"
|
|
30
|
+
}
|
|
31
|
+
}
|
|
@@ -17,6 +17,85 @@ declare const _default: {
|
|
|
17
17
|
default: string[];
|
|
18
18
|
};
|
|
19
19
|
};
|
|
20
|
+
components: {
|
|
21
|
+
ElConfigProvider: import("element-plus/es/utils").SFCWithInstall<import("vue").DefineComponent<{
|
|
22
|
+
readonly a11y: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
23
|
+
readonly locale: {
|
|
24
|
+
readonly type: import("vue").PropType<import("element-plus/es/locale").Language>;
|
|
25
|
+
readonly required: false;
|
|
26
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
27
|
+
__epPropKey: true;
|
|
28
|
+
};
|
|
29
|
+
readonly size: {
|
|
30
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
|
|
31
|
+
readonly required: false;
|
|
32
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
33
|
+
__epPropKey: true;
|
|
34
|
+
};
|
|
35
|
+
readonly button: {
|
|
36
|
+
readonly type: import("vue").PropType<import("element-plus").ButtonConfigContext>;
|
|
37
|
+
readonly required: false;
|
|
38
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
39
|
+
__epPropKey: true;
|
|
40
|
+
};
|
|
41
|
+
readonly experimentalFeatures: {
|
|
42
|
+
readonly type: import("vue").PropType<import("element-plus").ExperimentalFeatures>;
|
|
43
|
+
readonly required: false;
|
|
44
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
45
|
+
__epPropKey: true;
|
|
46
|
+
};
|
|
47
|
+
readonly keyboardNavigation: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
48
|
+
readonly message: {
|
|
49
|
+
readonly type: import("vue").PropType<import("element-plus").MessageConfigContext>;
|
|
50
|
+
readonly required: false;
|
|
51
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
52
|
+
__epPropKey: true;
|
|
53
|
+
};
|
|
54
|
+
readonly zIndex: NumberConstructor;
|
|
55
|
+
readonly namespace: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "el", boolean>;
|
|
56
|
+
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
57
|
+
[key: string]: any;
|
|
58
|
+
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
59
|
+
readonly a11y: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
60
|
+
readonly locale: {
|
|
61
|
+
readonly type: import("vue").PropType<import("element-plus/es/locale").Language>;
|
|
62
|
+
readonly required: false;
|
|
63
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
64
|
+
__epPropKey: true;
|
|
65
|
+
};
|
|
66
|
+
readonly size: {
|
|
67
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
|
|
68
|
+
readonly required: false;
|
|
69
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
70
|
+
__epPropKey: true;
|
|
71
|
+
};
|
|
72
|
+
readonly button: {
|
|
73
|
+
readonly type: import("vue").PropType<import("element-plus").ButtonConfigContext>;
|
|
74
|
+
readonly required: false;
|
|
75
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
76
|
+
__epPropKey: true;
|
|
77
|
+
};
|
|
78
|
+
readonly experimentalFeatures: {
|
|
79
|
+
readonly type: import("vue").PropType<import("element-plus").ExperimentalFeatures>;
|
|
80
|
+
readonly required: false;
|
|
81
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
82
|
+
__epPropKey: true;
|
|
83
|
+
};
|
|
84
|
+
readonly keyboardNavigation: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
85
|
+
readonly message: {
|
|
86
|
+
readonly type: import("vue").PropType<import("element-plus").MessageConfigContext>;
|
|
87
|
+
readonly required: false;
|
|
88
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
89
|
+
__epPropKey: true;
|
|
90
|
+
};
|
|
91
|
+
readonly zIndex: NumberConstructor;
|
|
92
|
+
readonly namespace: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "el", boolean>;
|
|
93
|
+
}>>, {
|
|
94
|
+
readonly a11y: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
95
|
+
readonly keyboardNavigation: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
96
|
+
readonly namespace: string;
|
|
97
|
+
}>> & Record<string, any>;
|
|
98
|
+
};
|
|
20
99
|
emits: string[];
|
|
21
100
|
setup(props: any, context: any): any;
|
|
22
101
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.tableControl[data-v-c0e90666]{color:#006ab2;position:absolute;right:0;top:-42px}.tableControl[data-v-c0e90666] .setting[data-v-c0e90666]{margin-top:10px}.tableControl[data-v-c0e90666] [data-v-c0e90666] .ant-popover-inner-content{padding:10px}.tableControl[data-v-c0e90666] [data-v-c0e90666] .ant-menu-vertical{border:none}.tableControl[data-v-c0e90666] [data-v-c0e90666] .ant-divider-horizontal{margin:2px}.tableControl[data-v-c0e90666] [data-v-c0e90666] .ant-checkbox-group-item{display:flex}.tableControl[data-v-c0e90666] .anticon[data-v-c0e90666]{margin-right:6px}[data-v-84786bfc] .ant-input-affix-wrapper>input.ant-input{height:25px}.Altimeter[data-v-44290c60]{display:flex;justify-content:center}.Altimeter[data-v-44290c60] .imgBox[data-v-44290c60]{display:flex;flex-direction:column;flex-wrap:wrap;height:80vh}.Altimeter[data-v-44290c60] .imgBox[data-v-44290c60] .imgList[data-v-44290c60]{align-items:center;display:flex;margin-top:10px}.Altimeter[data-v-44290c60] .imgBox[data-v-44290c60] .imgList[data-v-44290c60] span[data-v-44290c60]{margin-left:10px}.ant-upload-select-picture-card i[data-v-3f5c8a23]{color:#999;font-size:32px}.ant-upload-picture-card-wrapper[data-v-3f5c8a23]{display:flex}.ant-upload-select-picture-card .ant-upload-text[data-v-3f5c8a23]{color:#006ab2;margin-top:14px}.upload-list-inline[data-v-3f5c8a23] .ant-upload-list-item{float:left;margin-right:8px;width:100px}.upload-list-inline [class*=-upload-list-rtl][data-v-3f5c8a23] .ant-upload-list-item{float:right}.mini-upload[data-v-3f5c8a23] .ant-upload-list-picture-card-container{height:50px;width:50px}.mini-upload[data-v-3f5c8a23] .ant-upload-list-picture-card-container .ant-upload-list-item[data-v-3f5c8a23]{border:0;height:100%;padding:0;width:100%}.mini-upload[data-v-3f5c8a23] .ant-upload-list-picture-card-container .ant-upload-list-item[data-v-3f5c8a23] .ant-upload-list-item-info[data-v-3f5c8a23]{height:100%;width:100%}.Mrp-time[data-v-5f0fe252] .button[data-v-5f0fe252]{height:30px;width:48px}.Mrp-time[data-v-5f0fe252] .active[data-v-5f0fe252]{background:#bd9e55}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .ant-radio-button-wrapper:first-child{border-radius:4px 0 0 4px}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .ant-radio-button-wrapper:last-child{border-radius:0 4px 4px 0}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .el-range-editor.el-input__inner{height:35px;width:200px}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .el-date-editor .el-range-input{color:#333;font-size:12px}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .ant-radio-button-wrapper{border:1px solid #006ab2;color:#006ab2;font-size:12px;height:35px;line-height:35px;padding:0;text-align:center;width:52px}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .ant-radio-button-wrapper-checked{background:#bd9e55;border:1px solid #bd9e55;color:#fff}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child{border-color:#bd9e55}.Mrp-time[data-v-5f0fe252] .picker[data-v-5f0fe252]{margin-left:10px}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .ant-picker-input>input{font-size:12px}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .ant-picker-range-separator{margin-bottom:5px}.title[data-v-2101ce49]{color:#bd9e55;font-size:14px;margin-left:10px;position:relative}.title[data-v-2101ce49][data-v-2101ce49]:after{background:#bd9e55;bottom:2px;content:"";height:1px;left:0;position:absolute;width:201px}textarea[data-v-2101ce49]{border-color:#e7e7e7;height:100%;resize:none}.mb-14[data-v-2101ce49]{margin-bottom:14px}.pl-20[data-v-2101ce49]{padding-left:20px}.text-14[data-v-2101ce49]{font-size:14px}.text-999[data-v-2101ce49]{color:#999}.text-FF0066[data-v-2101ce49]{color:#f06}.leading-28[data-v-2101ce49]{line-height:28px}.leading-60[data-v-2101ce49]{line-height:60px}.w-120[data-v-2101ce49]{width:120px}.h-60[data-v-2101ce49]{height:60px}.bg-97D2FD[data-v-2101ce49]{background-color:#97d2fd}.border-t-1-f5f5f5[data-v-2101ce49]{border-top:1px solid #f5f5f5}.border-b-1-f5f5f5[data-v-2101ce49],.border-r-1-f5f5f5[data-v-2101ce49]{border-right:1px solid #f5f5f5}.w-1_2[data-v-2101ce49]{width:50%}body #IVModal .detail-class{top:-50px}body #IVModal .module-class .ant-modal-header{padding:0}body #IVModal .module-class .ant-modal-body{padding:100px 0 100px 100px;position:relative}body #IVModal .detail-class .ant-modal-body{overflow:auto;padding:0 0 30px}body #IVModal .module-class.not-padding .ant-modal-body{padding:0;position:relative}body #IVModal .module-class.pwd .ant-modal-body{padding:100px 0;position:relative}body #IVModal .ant-scrolling-effect{width:100%!important}body #IVModal .module-class.modal-components .ant-modal{height:40%;left:0;margin-left:5%;margin-right:5%;top:5%;width:auto!important}body #IVModal .module-class.modal-components .ant-modal .ant-modal-content{height:100%}body #IVModal .module-class .ant-modal-content{border-radius:10px;box-sizing:border-box;overflow:hidden}body #IVModal .module-class.modal-components .ant-modal .ant-modal-content .ant-modal-body{height:100%;overflow-y:auto}body #IVModal .module-class.modal-components .ant-modal .ant-modal-content .ant-modal-body::-webkit-scrollbar{height:20px;width:15px}body #IVModal .module-class.modal-components .ant-modal .ant-modal-content .ant-modal-body::-webkit-scrollbar-track{background:#f7f4ed;border-radius:100vh}body #IVModal .module-class.modal-components .ant-modal .ant-modal-content .ant-modal-body::-webkit-scrollbar-thumb{background:#e0cbcb;border:3px solid #f6f7ed;border-radius:100vh}body #IVModal .module-class.modal-components .ant-modal .ant-modal-content .ant-modal-body::-webkit-scrollbar-thumb:hover{background:#c0a0b9}body #IVUserSelector .pagination{position:static}body #IVUserSelector .ant-btn{height:35px}body #IVUserSelector [type=button],body #IVUserSelector button{border-color:#006ab2}body #IVUserSelector .button-color-sunset{border-color:#006ab2!important;border-radius:4px;margin-right:15px}body #top{position:fixed;top:65px;z-index:999}body #IVTable .active{background-color:#bd9e55;color:#fff;font-size:13px}body #IVTable :deep(.ant-btn-primary){background:#006ab2}body #IVTable :deep(.ant-image){margin:0 2px}body #IVTable .center-center{left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}body #IVTable .table-cell{border:1px solid #d9d9d9;color:#333;font-size:13px;font-weight:400;height:60px;padding:5px;text-align:center;word-break:break-all}body #IVTable .table-footer{border:1px solid #d9d9d9;display:table-footer-group;height:200px;position:relative;width:100%}body #IVTable .table-footer .centent{color:rgba(0,0,0,.25);font-size:14px;left:50%;position:absolute;text-align:center;top:50%;transform:translate(-50%,-50%)}body #IVTable table{border-collapse:collapse}body #IVTable .pagination{background-color:#fff;bottom:-80px;height:45px;position:fixed;z-index:999}body #IVTable .mrpTable{margin-bottom:80px;position:relative}
|
|
1
|
+
.tableControl[data-v-c0e90666]{color:#006ab2;position:absolute;right:0;top:-42px}.tableControl[data-v-c0e90666] .setting[data-v-c0e90666]{margin-top:10px}.tableControl[data-v-c0e90666] [data-v-c0e90666] .ant-popover-inner-content{padding:10px}.tableControl[data-v-c0e90666] [data-v-c0e90666] .ant-menu-vertical{border:none}.tableControl[data-v-c0e90666] [data-v-c0e90666] .ant-divider-horizontal{margin:2px}.tableControl[data-v-c0e90666] [data-v-c0e90666] .ant-checkbox-group-item{display:flex}.tableControl[data-v-c0e90666] .anticon[data-v-c0e90666]{margin-right:6px}[data-v-84786bfc] .ant-input-affix-wrapper>input.ant-input{height:25px}.Altimeter[data-v-44290c60]{display:flex;justify-content:center}.Altimeter[data-v-44290c60] .imgBox[data-v-44290c60]{display:flex;flex-direction:column;flex-wrap:wrap;height:80vh}.Altimeter[data-v-44290c60] .imgBox[data-v-44290c60] .imgList[data-v-44290c60]{align-items:center;display:flex;margin-top:10px}.Altimeter[data-v-44290c60] .imgBox[data-v-44290c60] .imgList[data-v-44290c60] span[data-v-44290c60]{margin-left:10px}.ant-upload-select-picture-card i[data-v-3f5c8a23]{color:#999;font-size:32px}.ant-upload-picture-card-wrapper[data-v-3f5c8a23]{display:flex}.ant-upload-select-picture-card .ant-upload-text[data-v-3f5c8a23]{color:#006ab2;margin-top:14px}.upload-list-inline[data-v-3f5c8a23] .ant-upload-list-item{float:left;margin-right:8px;width:100px}.upload-list-inline [class*=-upload-list-rtl][data-v-3f5c8a23] .ant-upload-list-item{float:right}.mini-upload[data-v-3f5c8a23] .ant-upload-list-picture-card-container{height:50px;width:50px}.mini-upload[data-v-3f5c8a23] .ant-upload-list-picture-card-container .ant-upload-list-item[data-v-3f5c8a23]{border:0;height:100%;padding:0;width:100%}.mini-upload[data-v-3f5c8a23] .ant-upload-list-picture-card-container .ant-upload-list-item[data-v-3f5c8a23] .ant-upload-list-item-info[data-v-3f5c8a23]{height:100%;width:100%}.Mrp-time[data-v-5f0fe252] .button[data-v-5f0fe252]{height:30px;width:48px}.Mrp-time[data-v-5f0fe252] .active[data-v-5f0fe252]{background:#bd9e55}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .ant-radio-button-wrapper:first-child{border-radius:4px 0 0 4px}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .ant-radio-button-wrapper:last-child{border-radius:0 4px 4px 0}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .el-range-editor.el-input__inner{height:35px;width:200px}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .el-date-editor .el-range-input{color:#333;font-size:12px}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .ant-radio-button-wrapper{border:1px solid #006ab2;color:#006ab2;font-size:12px;height:35px;line-height:35px;padding:0;text-align:center;width:52px}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .ant-radio-button-wrapper-checked{background:#bd9e55;border:1px solid #bd9e55;color:#fff}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child{border-color:#bd9e55}.Mrp-time[data-v-5f0fe252] .picker[data-v-5f0fe252]{margin-left:10px}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .ant-picker-input>input{font-size:12px}.Mrp-time[data-v-5f0fe252] [data-v-5f0fe252] .ant-picker-range-separator{margin-bottom:5px}[data-v-5f0fe252] .el-picker-panel__icon-btn{margin-top:0}.title[data-v-2101ce49]{color:#bd9e55;font-size:14px;margin-left:10px;position:relative}.title[data-v-2101ce49][data-v-2101ce49]:after{background:#bd9e55;bottom:2px;content:"";height:1px;left:0;position:absolute;width:201px}textarea[data-v-2101ce49]{border-color:#e7e7e7;height:100%;resize:none}.mb-14[data-v-2101ce49]{margin-bottom:14px}.pl-20[data-v-2101ce49]{padding-left:20px}.text-14[data-v-2101ce49]{font-size:14px}.text-999[data-v-2101ce49]{color:#999}.text-FF0066[data-v-2101ce49]{color:#f06}.leading-28[data-v-2101ce49]{line-height:28px}.leading-60[data-v-2101ce49]{line-height:60px}.w-120[data-v-2101ce49]{width:120px}.h-60[data-v-2101ce49]{height:60px}.bg-97D2FD[data-v-2101ce49]{background-color:#97d2fd}.border-t-1-f5f5f5[data-v-2101ce49]{border-top:1px solid #f5f5f5}.border-b-1-f5f5f5[data-v-2101ce49],.border-r-1-f5f5f5[data-v-2101ce49]{border-right:1px solid #f5f5f5}.w-1_2[data-v-2101ce49]{width:50%}body #IVModal .detail-class{top:-50px}body #IVModal .module-class .ant-modal-header{padding:0}body #IVModal .module-class .ant-modal-body{padding:100px 0 100px 100px;position:relative}body #IVModal .detail-class .ant-modal-body{overflow:auto;padding:0 0 30px}body #IVModal .module-class.not-padding .ant-modal-body{padding:0;position:relative}body #IVModal .module-class.pwd .ant-modal-body{padding:100px 0;position:relative}body #IVModal .ant-scrolling-effect{width:100%!important}body #IVModal .module-class.modal-components .ant-modal{height:40%;left:0;margin-left:5%;margin-right:5%;top:5%;width:auto!important}body #IVModal .module-class.modal-components .ant-modal .ant-modal-content{height:100%}body #IVModal .module-class .ant-modal-content{border-radius:10px;box-sizing:border-box;overflow:hidden}body #IVModal .module-class.modal-components .ant-modal .ant-modal-content .ant-modal-body{height:100%;overflow-y:auto}body #IVModal .module-class.modal-components .ant-modal .ant-modal-content .ant-modal-body::-webkit-scrollbar{height:20px;width:15px}body #IVModal .module-class.modal-components .ant-modal .ant-modal-content .ant-modal-body::-webkit-scrollbar-track{background:#f7f4ed;border-radius:100vh}body #IVModal .module-class.modal-components .ant-modal .ant-modal-content .ant-modal-body::-webkit-scrollbar-thumb{background:#e0cbcb;border:3px solid #f6f7ed;border-radius:100vh}body #IVModal .module-class.modal-components .ant-modal .ant-modal-content .ant-modal-body::-webkit-scrollbar-thumb:hover{background:#c0a0b9}body #IVUserSelector .pagination{position:static}body #IVUserSelector .ant-btn{height:35px}body #IVUserSelector [type=button],body #IVUserSelector button{border-color:#006ab2}body #IVUserSelector .button-color-sunset{border-color:#006ab2!important;border-radius:4px;margin-right:15px}body #top{position:fixed;top:65px;z-index:999}body #IVTable .active{background-color:#bd9e55;color:#fff;font-size:13px}body #IVTable :deep(.ant-btn-primary){background:#006ab2}body #IVTable :deep(.ant-image){margin:0 2px}body #IVTable .center-center{left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}body #IVTable .table-cell{border:1px solid #d9d9d9;color:#333;font-size:13px;font-weight:400;height:60px;padding:5px;text-align:center;word-break:break-all}body #IVTable .table-footer{border:1px solid #d9d9d9;display:table-footer-group;height:200px;position:relative;width:100%}body #IVTable .table-footer .centent{color:rgba(0,0,0,.25);font-size:14px;left:50%;position:absolute;text-align:center;top:50%;transform:translate(-50%,-50%)}body #IVTable table{border-collapse:collapse}body #IVTable .pagination{background-color:#fff;bottom:-80px;height:45px;position:fixed;z-index:999}body #IVTable .mrpTable{margin-bottom:80px;position:relative}
|