plain-design 1.0.0-beta.44 → 1.0.0-beta.45

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "plain-design",
3
- "version": "1.0.0-beta.44",
3
+ "version": "1.0.0-beta.45",
4
4
  "description": "",
5
5
  "main": "dist/plain-design.min.js",
6
6
  "module": "dist/plain-design.commonjs.min.js",
@@ -290,7 +290,7 @@ const FormSizeRowsGutter: Record<typeof ThemeSize.TYPE, number> = {
290
290
  large: 32,
291
291
  normal: 24,
292
292
  small: 16,
293
- mini: 12,
293
+ mini: 14,
294
294
  };
295
295
 
296
296
  export const FormValidateMessagePosition = createEnum([
@@ -14,7 +14,7 @@ export const Icon = designComponent({
14
14
  inheritPropsType: iHTMLElement,
15
15
  props: {
16
16
  icon: { type: String },
17
- strokeWidth: { type: Number, default: 2 },
17
+ strokeWidth: { type: Number, default: 4 },
18
18
  strokeLinecap: { type: String as PropType<tStrokeLinecap>, default: "butt", },
19
19
  strokeLinejoin: { type: String as PropType<tStrokeLinejoin>, default: "miter", },
20
20
 
@@ -183,7 +183,7 @@ export const PlcOperation = designComponent({
183
183
  const predicateWidth = computed((): number => {
184
184
  if (innerOperationConfigs.value.length === 0) {return 0;}
185
185
  return innerOperationConfigs.value.reduce((prev) => {
186
- return prev + 2 * 14 + 12;
186
+ return prev + 2 * 14 + 13;
187
187
  }, 0) + 24;
188
188
  });
189
189