srcdev-nuxt-components 6.3.0 → 7.0.0
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.
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
ref="promptElementRef"
|
|
7
7
|
tabindex="0"
|
|
8
8
|
>
|
|
9
|
-
<div class="display-prompt-wrapper" :class="[
|
|
9
|
+
<div class="display-prompt-wrapper" :data-theme="theme" :class="[elementClasses]" data-test-id="display-prompt">
|
|
10
10
|
<div class="display-prompt-inner">
|
|
11
11
|
<div class="display-prompt-icon" data-test-id="prompt-icon" aria-hidden="true">
|
|
12
12
|
<slot name="customDecoratorIcon">
|
|
@@ -197,9 +197,7 @@ onMounted(async () => {
|
|
|
197
197
|
border-radius: 50%;
|
|
198
198
|
outline: 1px solid var(--colour-theme-3);
|
|
199
199
|
|
|
200
|
-
transition:
|
|
201
|
-
border 200ms ease-in-out,
|
|
202
|
-
outline 200ms ease-in-out;
|
|
200
|
+
transition: border 200ms ease-in-out, outline 200ms ease-in-out;
|
|
203
201
|
|
|
204
202
|
&:hover {
|
|
205
203
|
cursor: pointer;
|