@webitel/ui-sdk 3.1.76 → 3.1.77

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-sdk",
3
- "version": "3.1.76",
3
+ "version": "3.1.77",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve-lib": "vue-cli-service serve",
@@ -3,7 +3,10 @@
3
3
  :is="component"
4
4
  v-clickaway="saveQuestion"
5
5
  :class="[
6
- `audit-form-question--mode-${mode}`
6
+ `audit-form-question--mode-${mode}`,
7
+ {
8
+ 'audit-form-question--answered': !!result,
9
+ },
7
10
  ]"
8
11
  :disable-dragging="mode === 'fill'"
9
12
  :first="first"
@@ -110,6 +113,15 @@ onMounted(() => {
110
113
  background: var(--main-color);
111
114
  box-shadow: var(--elevation-1);
112
115
 
116
+ // override audit-form-question-read-wrapper specificity for hover
117
+ &.audit-form-question--answered {
118
+ background: var(--secondary-color-50);
119
+ &:hover,
120
+ &:focus-within {
121
+ border-color: transparent;
122
+ }
123
+ }
124
+
113
125
  &--mode-create.audit-form-question-read {
114
126
  cursor: pointer;
115
127
  }