ele-admin-plus 1.0.0-beta.3 → 1.0.0-beta.4
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/es/ele-app/style/common.scss +10 -2
- package/es/ele-printer/style/index.scss +3 -1
- package/es/ele-pro-layout/util.js +1 -1
- package/es/ele-text/index.js +1 -1
- package/es/ele-tour/style/index.scss +1 -0
- package/lib/ele-app/style/common.scss +10 -2
- package/lib/ele-printer/style/index.scss +3 -1
- package/lib/ele-pro-layout/util.js +1 -1
- package/lib/ele-text/index.js +1 -1
- package/lib/ele-tour/style/index.scss +1 -0
- package/package.json +1 -1
|
@@ -8,10 +8,18 @@
|
|
|
8
8
|
width: 100%;
|
|
9
9
|
box-sizing: border-box;
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
&.el-
|
|
11
|
+
&.el-select,
|
|
12
|
+
&.el-input-number,
|
|
13
|
+
&.el-date-editor,
|
|
14
|
+
&.el-date-editor.el-input,
|
|
15
|
+
&.el-date-editor.el-input__wrapper,
|
|
16
|
+
&.el-date-editor > .el-input__wrapper {
|
|
13
17
|
width: 100%;
|
|
18
|
+
box-sizing: border-box;
|
|
19
|
+
}
|
|
14
20
|
|
|
21
|
+
// 日期选择
|
|
22
|
+
&.el-date-editor {
|
|
15
23
|
&.el-input__wrapper {
|
|
16
24
|
width: 100%;
|
|
17
25
|
box-sizing: border-box;
|
package/es/ele-text/index.js
CHANGED
|
@@ -4,7 +4,7 @@ import { useLicense } from "../ele-config-provider/receiver";
|
|
|
4
4
|
import { textProps } from "./props";
|
|
5
5
|
const _sfc_main = defineComponent({
|
|
6
6
|
name: "EleText",
|
|
7
|
-
|
|
7
|
+
components: { ElIcon },
|
|
8
8
|
props: textProps,
|
|
9
9
|
setup() {
|
|
10
10
|
const { authenticated } = useLicense();
|
|
@@ -8,10 +8,18 @@
|
|
|
8
8
|
width: 100%;
|
|
9
9
|
box-sizing: border-box;
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
&.el-
|
|
11
|
+
&.el-select,
|
|
12
|
+
&.el-input-number,
|
|
13
|
+
&.el-date-editor,
|
|
14
|
+
&.el-date-editor.el-input,
|
|
15
|
+
&.el-date-editor.el-input__wrapper,
|
|
16
|
+
&.el-date-editor > .el-input__wrapper {
|
|
13
17
|
width: 100%;
|
|
18
|
+
box-sizing: border-box;
|
|
19
|
+
}
|
|
14
20
|
|
|
21
|
+
// 日期选择
|
|
22
|
+
&.el-date-editor {
|
|
15
23
|
&.el-input__wrapper {
|
|
16
24
|
width: 100%;
|
|
17
25
|
box-sizing: border-box;
|
package/lib/ele-text/index.js
CHANGED
|
@@ -5,7 +5,7 @@ const receiver = require("../ele-config-provider/receiver");
|
|
|
5
5
|
const props = require("./props");
|
|
6
6
|
const _sfc_main = vue.defineComponent({
|
|
7
7
|
name: "EleText",
|
|
8
|
-
|
|
8
|
+
components: { ElIcon: elementPlus.ElIcon },
|
|
9
9
|
props: props.textProps,
|
|
10
10
|
setup() {
|
|
11
11
|
const { authenticated } = receiver.useLicense();
|