@d-mok/quasar-app-extension-quasar-axe 2.1.34 → 2.1.36
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/package.json
CHANGED
|
@@ -82,11 +82,11 @@ function afterRemoveRow() {
|
|
|
82
82
|
async function afterCopy(data: (string | number | boolean)[][], coords: any) {
|
|
83
83
|
// fix pasting space as non break space problem
|
|
84
84
|
let text = data.map(r => r.join('\t')).join('\n')
|
|
85
|
-
//
|
|
86
|
-
let col = columns()
|
|
87
|
-
if (coords[0].startCol === 0 && coords[0].endCol === col.length - 1) {
|
|
88
|
-
|
|
89
|
-
}
|
|
85
|
+
// // if all cols are copied, add header
|
|
86
|
+
// let col = columns()
|
|
87
|
+
// if (coords[0].startCol === 0 && coords[0].endCol === col.length - 1) {
|
|
88
|
+
// text = col.map($ => $.data).join('\t') + '\n' + text
|
|
89
|
+
// }
|
|
90
90
|
await navigator.clipboard.writeText(text)
|
|
91
91
|
}
|
|
92
92
|
|