From 5744d6ae21aa58c652ac6465922351662fa53114 Mon Sep 17 00:00:00 2001 From: sunnydanu Date: Sat, 2 Nov 2024 17:40:06 +0530 Subject: [PATCH] fix(aes): missing error message --- components.d.ts | 1 + src/tools/encryption/encryption.vue | 127 +++++++--------------------- 2 files changed, 30 insertions(+), 98 deletions(-) diff --git a/components.d.ts b/components.d.ts index 1ad1112c..8da37178 100644 --- a/components.d.ts +++ b/components.d.ts @@ -176,6 +176,7 @@ declare module '@vue/runtime-core' { NMenu: typeof import('naive-ui')['NMenu'] NProgress: typeof import('naive-ui')['NProgress'] NScrollbar: typeof import('naive-ui')['NScrollbar'] + NSelect: typeof import('naive-ui')['NSelect'] NSlider: typeof import('naive-ui')['NSlider'] NSpace: typeof import('naive-ui')['NSpace'] NStatistic: typeof import('naive-ui')['NStatistic'] diff --git a/src/tools/encryption/encryption.vue b/src/tools/encryption/encryption.vue index 25f6aece..5a587ae7 100644 --- a/src/tools/encryption/encryption.vue +++ b/src/tools/encryption/encryption.vue @@ -1,95 +1,5 @@ - - @@ -130,7 +45,11 @@ const decryptOutput = computed(() => { label="Your text:" placeholder="The string to cypher" rows="4" - multiline raw-text monospace autosize flex-1 + multiline + raw-text + monospace + autosize + flex-1 />
@@ -147,7 +66,11 @@ const decryptOutput = computed(() => { :value="cypherOutput" rows="3" placeholder="Your string hash" - multiline monospace readonly autosize mt-5 + multiline + monospace + readonly + autosize + mt-5 /> @@ -157,7 +80,11 @@ const decryptOutput = computed(() => { label="Your encrypted text:" placeholder="The string to cypher" rows="4" - multiline raw-text monospace autosize flex-1 + multiline + raw-text + monospace + autosize + flex-1 />
@@ -178,7 +105,11 @@ const decryptOutput = computed(() => { :value="decryptOutput" placeholder="Your string hash" rows="3" - multiline monospace readonly autosize mt-5 + multiline + monospace + readonly + autosize + mt-5 />