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="[theme, elementClasses]" data-test-id="display-prompt">
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;
@@ -8,11 +8,11 @@
8
8
  elementClasses,
9
9
  cssStateClass,
10
10
  positionClasses,
11
- theme,
12
11
  {
13
12
  'has-theme': !slots.default,
14
13
  },
15
14
  ]"
15
+ :data-theme="theme"
16
16
  :role="toastRole"
17
17
  :aria-live="ariaLive"
18
18
  :tabindex="slots.default ? undefined : '0'"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "srcdev-nuxt-components",
3
3
  "type": "module",
4
- "version": "6.3.0",
4
+ "version": "7.0.0",
5
5
  "main": "nuxt.config.ts",
6
6
  "types": "types.d.ts",
7
7
  "scripts": {