iv-npm 1.1.10 → 1.1.14
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/ui/dist/business-ui/component/IVMrpUserSelector.d.ts +22 -0
- package/packages/ui/dist/business-ui/index.d.ts +2 -1
- package/packages/ui/dist/index.cjs.css +17 -0
- package/packages/ui/dist/index.cjs.js +623 -90
- package/packages/ui/dist/index.d.ts +2 -2
- package/packages/ui/dist/index.esm.css +17 -0
- package/packages/ui/dist/index.esm.js +616 -84
- package/packages/ui/dist/index.umd.css +17 -0
- package/packages/ui/dist/index.umd.js +623 -90
- package/packages/ui/dist/index.umd.js.map +1 -1
package/package.json
CHANGED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 组件定义-------------------------------------
|
|
3
|
+
* */
|
|
4
|
+
declare const _default: import("vue").DefineComponent<{
|
|
5
|
+
show: {
|
|
6
|
+
type: BooleanConstructor;
|
|
7
|
+
required: true;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
10
|
+
}, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
11
|
+
[key: string]: any;
|
|
12
|
+
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:show" | "getItem")[], "update:show" | "getItem", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
13
|
+
show: {
|
|
14
|
+
type: BooleanConstructor;
|
|
15
|
+
required: true;
|
|
16
|
+
default: boolean;
|
|
17
|
+
};
|
|
18
|
+
}>> & {
|
|
19
|
+
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
20
|
+
onGetItem?: ((...args: any[]) => any) | undefined;
|
|
21
|
+
}, {}>;
|
|
22
|
+
export default _default;
|
|
@@ -3,4 +3,5 @@ import IVMrpProdBaseDropdown from "./component/IVMrpProdBaseDropdown.vue";
|
|
|
3
3
|
import IVMrpLineDropdown from "./component/IVMrpLineDropdown.vue";
|
|
4
4
|
import IVMrpSetofbookDropdown from "./component/IVMrpSetofbookDropdown.vue";
|
|
5
5
|
import IVMrpPostDropdown from "./component/IVMrpPostDropdown.vue";
|
|
6
|
-
|
|
6
|
+
import IVMrpUserSelector from "./component/IVMrpUserSelector.vue";
|
|
7
|
+
export { IVMrpOrgDropdown, IVMrpProdBaseDropdown, IVMrpLineDropdown, IVMrpSetofbookDropdown, IVMrpPostDropdown, IVMrpUserSelector, };
|
|
@@ -93,6 +93,23 @@ table[data-v-2dfcb17e] {
|
|
|
93
93
|
.tableControl[data-v-4b5cf48c] .anticon[data-v-4b5cf48c] {
|
|
94
94
|
margin-right: 6px;
|
|
95
95
|
}
|
|
96
|
+
[data-v-15a6b582] .pagination {
|
|
97
|
+
position: static;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
[data-v-15a6b582] .ant-btn {
|
|
101
|
+
height: 35px;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
[data-v-15a6b582] button {
|
|
105
|
+
border-color: #006ab2;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.button-color-sunset[data-v-15a6b582] {
|
|
109
|
+
border-radius: 4px;
|
|
110
|
+
border-color: #006ab2 !important;
|
|
111
|
+
margin-right: 15px;
|
|
112
|
+
}
|
|
96
113
|
/* 模态框 */
|
|
97
114
|
body .detail-class {
|
|
98
115
|
top: -50px;
|