ele-admin-plus 1.0.0-beta.3 → 1.0.0

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.
@@ -8,10 +8,18 @@
8
8
  width: 100%;
9
9
  box-sizing: border-box;
10
10
 
11
- // 日期选择
12
- &.el-date-editor {
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;
@@ -165,7 +173,7 @@ body .el-popper {
165
173
  line-height: 1.03;
166
174
  }
167
175
 
168
- .el-checkbox__inner::after {
176
+ .el-checkbox__input .el-checkbox__inner::after {
169
177
  top: 50%;
170
178
  left: 23.5%;
171
179
  border-width: 2px;
@@ -179,12 +187,12 @@ body .el-popper {
179
187
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
180
188
  }
181
189
 
182
- &.el-checkbox--large .el-checkbox__inner {
190
+ &.el-checkbox--large .el-checkbox__input .el-checkbox__inner {
183
191
  width: 16px;
184
192
  height: 16px;
185
193
  }
186
194
 
187
- &.el-checkbox--small .el-checkbox__inner {
195
+ &.el-checkbox--small .el-checkbox__input .el-checkbox__inner {
188
196
  width: 13px;
189
197
  height: 13px;
190
198
  }
@@ -11,7 +11,9 @@
11
11
  border-collapse: collapse;
12
12
  table-layout: fixed;
13
13
 
14
- td {
14
+ & > thead > tr > td,
15
+ & > tbody > tr > td,
16
+ & > tfoot > tr > td {
15
17
  padding: 0;
16
18
  border: none;
17
19
  }
@@ -215,7 +215,7 @@ function useMenuScroll(func) {
215
215
  } else {
216
216
  el.scrollIntoView({ behavior: "smooth", block: "center" });
217
217
  }
218
- }, 320);
218
+ }, 380);
219
219
  }
220
220
  }
221
221
  };
@@ -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
- component: { ElIcon },
7
+ components: { ElIcon },
8
8
  props: textProps,
9
9
  setup() {
10
10
  const { authenticated } = useLicense();
@@ -83,6 +83,7 @@
83
83
  transform: translateY(-50%);
84
84
  transform-origin: center !important;
85
85
  box-sizing: border-box;
86
+ max-width: 100%;
86
87
 
87
88
  .el-popper__arrow {
88
89
  display: none;
@@ -8,10 +8,18 @@
8
8
  width: 100%;
9
9
  box-sizing: border-box;
10
10
 
11
- // 日期选择
12
- &.el-date-editor {
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;
@@ -165,7 +173,7 @@ body .el-popper {
165
173
  line-height: 1.03;
166
174
  }
167
175
 
168
- .el-checkbox__inner::after {
176
+ .el-checkbox__input .el-checkbox__inner::after {
169
177
  top: 50%;
170
178
  left: 23.5%;
171
179
  border-width: 2px;
@@ -179,12 +187,12 @@ body .el-popper {
179
187
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
180
188
  }
181
189
 
182
- &.el-checkbox--large .el-checkbox__inner {
190
+ &.el-checkbox--large .el-checkbox__input .el-checkbox__inner {
183
191
  width: 16px;
184
192
  height: 16px;
185
193
  }
186
194
 
187
- &.el-checkbox--small .el-checkbox__inner {
195
+ &.el-checkbox--small .el-checkbox__input .el-checkbox__inner {
188
196
  width: 13px;
189
197
  height: 13px;
190
198
  }
@@ -11,7 +11,9 @@
11
11
  border-collapse: collapse;
12
12
  table-layout: fixed;
13
13
 
14
- td {
14
+ & > thead > tr > td,
15
+ & > tbody > tr > td,
16
+ & > tfoot > tr > td {
15
17
  padding: 0;
16
18
  border: none;
17
19
  }
@@ -217,7 +217,7 @@ function useMenuScroll(func) {
217
217
  } else {
218
218
  el.scrollIntoView({ behavior: "smooth", block: "center" });
219
219
  }
220
- }, 320);
220
+ }, 380);
221
221
  }
222
222
  }
223
223
  };
@@ -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
- component: { ElIcon: elementPlus.ElIcon },
8
+ components: { ElIcon: elementPlus.ElIcon },
9
9
  props: props.textProps,
10
10
  setup() {
11
11
  const { authenticated } = receiver.useLicense();
@@ -83,6 +83,7 @@
83
83
  transform: translateY(-50%);
84
84
  transform-origin: center !important;
85
85
  box-sizing: border-box;
86
+ max-width: 100%;
86
87
 
87
88
  .el-popper__arrow {
88
89
  display: none;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ele-admin-plus",
3
- "version": "1.0.0-beta.3",
3
+ "version": "1.0.0",
4
4
  "description": "EleAdminPlus Library",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",