@byline/ui 1.10.0 → 1.10.1
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.
|
@@ -371,9 +371,8 @@ function DocumentActions({ publishedVersion, onUnpublish, onDelete, onDuplicate,
|
|
|
371
371
|
style: {
|
|
372
372
|
fontWeight: 500
|
|
373
373
|
},
|
|
374
|
-
children: "From
|
|
374
|
+
children: "From:\xa0"
|
|
375
375
|
}),
|
|
376
|
-
' ',
|
|
377
376
|
/*#__PURE__*/ jsx("span", {
|
|
378
377
|
className: classnames('byline-form-actions-copy-source', document_actions_module["copy-source"]),
|
|
379
378
|
children: sourceLocaleLabel
|
|
@@ -439,6 +438,9 @@ function DocumentActions({ publishedVersion, onUnpublish, onDelete, onDuplicate,
|
|
|
439
438
|
}),
|
|
440
439
|
/*#__PURE__*/ jsx(Button, {
|
|
441
440
|
size: "sm",
|
|
441
|
+
style: {
|
|
442
|
+
minWidth: '80px'
|
|
443
|
+
},
|
|
442
444
|
intent: "noeffect",
|
|
443
445
|
onClick: ()=>{
|
|
444
446
|
if (!copyToLocaleBusy) setShowCopyToLocaleConfirm(false);
|
|
@@ -448,6 +450,9 @@ function DocumentActions({ publishedVersion, onUnpublish, onDelete, onDuplicate,
|
|
|
448
450
|
}),
|
|
449
451
|
/*#__PURE__*/ jsx(Button, {
|
|
450
452
|
size: "sm",
|
|
453
|
+
style: {
|
|
454
|
+
minWidth: '80px'
|
|
455
|
+
},
|
|
451
456
|
intent: "primary",
|
|
452
457
|
onClick: handleOnCopyToLocale,
|
|
453
458
|
disabled: copyToLocaleBusy || !copyTargetLocale,
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"private": false,
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MPL-2.0",
|
|
6
|
-
"version": "1.10.
|
|
6
|
+
"version": "1.10.1",
|
|
7
7
|
"engines": {
|
|
8
8
|
"node": ">=20.9.0"
|
|
9
9
|
},
|
|
@@ -65,9 +65,9 @@
|
|
|
65
65
|
"react-diff-viewer-continued": "^4.2.2",
|
|
66
66
|
"zod": "^4.4.2",
|
|
67
67
|
"zod-form-data": "^3.0.1",
|
|
68
|
-
"@byline/client": "1.10.
|
|
69
|
-
"@byline/core": "1.10.
|
|
70
|
-
"@byline/admin": "1.10.
|
|
68
|
+
"@byline/client": "1.10.1",
|
|
69
|
+
"@byline/core": "1.10.1",
|
|
70
|
+
"@byline/admin": "1.10.1"
|
|
71
71
|
},
|
|
72
72
|
"peerDependencies": {
|
|
73
73
|
"react": "^19.0.0",
|
|
@@ -403,8 +403,8 @@ export function DocumentActions({
|
|
|
403
403
|
className={cx('byline-form-actions-copy-label', styles['copy-label'])}
|
|
404
404
|
style={{ fontWeight: 500 }}
|
|
405
405
|
>
|
|
406
|
-
From
|
|
407
|
-
</span>
|
|
406
|
+
From:
|
|
407
|
+
</span>
|
|
408
408
|
<span className={cx('byline-form-actions-copy-source', styles['copy-source'])}>
|
|
409
409
|
{sourceLocaleLabel}
|
|
410
410
|
</span>
|
|
@@ -461,6 +461,7 @@ export function DocumentActions({
|
|
|
461
461
|
</button>
|
|
462
462
|
<Button
|
|
463
463
|
size="sm"
|
|
464
|
+
style={{ minWidth: '80px' }}
|
|
464
465
|
intent="noeffect"
|
|
465
466
|
onClick={() => {
|
|
466
467
|
if (!copyToLocaleBusy) setShowCopyToLocaleConfirm(false)
|
|
@@ -471,6 +472,7 @@ export function DocumentActions({
|
|
|
471
472
|
</Button>
|
|
472
473
|
<Button
|
|
473
474
|
size="sm"
|
|
475
|
+
style={{ minWidth: '80px' }}
|
|
474
476
|
intent="primary"
|
|
475
477
|
onClick={handleOnCopyToLocale}
|
|
476
478
|
disabled={copyToLocaleBusy || !copyTargetLocale}
|