plain-design 1.0.0-beta.44 → 1.0.0-beta.45
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/dist/plain-design.commonjs.min.js +2 -2
- package/dist/plain-design.min.js +2 -2
- package/dist/report.html +2 -2
- package/package.json +1 -1
- package/src/packages/components/Form/layout/useFormLayout.tsx +1 -1
- package/src/packages/components/Icon/index.tsx +1 -1
- package/src/packages/components/Table/standard/PlcOperation/PlcOperation.tsx +1 -1
package/package.json
CHANGED
@@ -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:
|
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 +
|
186
|
+
return prev + 2 * 14 + 13;
|
187
187
|
}, 0) + 24;
|
188
188
|
});
|
189
189
|
|