bkui-vue 1.0.3-beta.3 → 1.0.3-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/lib/form/form.css CHANGED
@@ -59,6 +59,7 @@
59
59
  color: #63656e;
60
60
  text-align: right;
61
61
  vertical-align: middle;
62
+ box-sizing: border-box;
62
63
  }
63
64
  .bk-form-label-description {
64
65
  cursor: pointer;
@@ -24,6 +24,7 @@
24
24
  margin-bottom: 6px;
25
25
  line-height: 20px;
26
26
  text-align: left;
27
+
27
28
  }
28
29
 
29
30
  .@{bk-prefix}-form-content {
@@ -81,7 +82,7 @@
81
82
  text-align: right;
82
83
  text-align: right;
83
84
  vertical-align: middle;
84
- // box-sizing: border-box;
85
+ box-sizing: border-box;
85
86
  }
86
87
  .@{bk-prefix}-form-label-description {
87
88
  cursor: pointer;
@@ -185,6 +185,7 @@
185
185
  color: #63656e;
186
186
  text-align: right;
187
187
  vertical-align: middle;
188
+ box-sizing: border-box;
188
189
  }
189
190
  .bk-form-label-description {
190
191
  cursor: pointer;
@@ -573,7 +573,6 @@ const popover_less_namespaceObject = popover_less_x({ });
573
573
  */
574
574
  var handlePageEditorBlur = function handlePageEditorBlur() {
575
575
  isFocused.value = false;
576
- inputRef.value.textContent = "".concat(inputMemo);
577
576
  if (inputMemo !== localCurrent.value) {
578
577
  localCurrent.value = inputMemo;
579
578
  }
@@ -12,7 +12,9 @@ body {
12
12
  padding: 0;
13
13
  margin: 0;
14
14
  }
15
- * {
15
+ *,
16
+ *::before,
17
+ *::after {
16
18
  box-sizing: border-box;
17
19
  }
18
20
  /**
@@ -19,7 +19,9 @@ body {
19
19
  margin: 0;
20
20
  }
21
21
 
22
- * {
22
+ *,
23
+ *::before,
24
+ *::after {
23
25
  box-sizing: border-box;
24
26
  }
25
27
 
@@ -138,7 +138,9 @@ body {
138
138
  padding: 0;
139
139
  margin: 0;
140
140
  }
141
- * {
141
+ *,
142
+ *::before,
143
+ *::after {
142
144
  box-sizing: border-box;
143
145
  }
144
146
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bkui-vue",
3
- "version": "1.0.3-beta.3",
3
+ "version": "1.0.3-beta.4",
4
4
  "workspaces": {
5
5
  "packages": [
6
6
  "packages/!(**.bak)*",