@alfresco/adf-core 8.4.0-18643957360 → 8.4.0-18675629211
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.
|
@@ -285,10 +285,11 @@
|
|
|
285
285
|
"EDIT_ASPECTS": "Edit Aspect"
|
|
286
286
|
},
|
|
287
287
|
"ACCESSIBILITY": {
|
|
288
|
-
"EDIT": "Edit
|
|
288
|
+
"EDIT": "Edit {{ sectionName }}",
|
|
289
289
|
"DATEPICKER": "Use the arrow keys to navigate between dates. Up and down move to the next or previous week but on the same day. Left and right move to the next or previous day. Press Enter or Return to select a date.",
|
|
290
290
|
"COPY_TO_CLIPBOARD_MESSAGE": "Value copied to clipboard",
|
|
291
|
-
"EDIT_ASPECTS": "Edit Aspect"
|
|
291
|
+
"EDIT_ASPECTS": "Edit Aspect",
|
|
292
|
+
"SECTION": "{{ sectionName }} section"
|
|
292
293
|
}
|
|
293
294
|
},
|
|
294
295
|
"SEARCH": {
|
package/fesm2022/adf-core.mjs
CHANGED
|
@@ -13607,8 +13607,6 @@ class ClipboardService {
|
|
|
13607
13607
|
copyToClipboard(target, message) {
|
|
13608
13608
|
if (this.isTargetValid(target)) {
|
|
13609
13609
|
try {
|
|
13610
|
-
target.select();
|
|
13611
|
-
target.setSelectionRange(0, target.value.length);
|
|
13612
13610
|
if (navigator.clipboard) {
|
|
13613
13611
|
navigator.clipboard.writeText(target.value);
|
|
13614
13612
|
}
|