@webitel/ui-sdk 23.12.80 → 23.12.82
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/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.mjs +2 -2
- package/dist/ui-sdk.umd.js +2 -2
- package/package.json +1 -1
- package/src/components/wt-page-wrapper/wt-page-wrapper.vue +1 -0
- package/src/css/styleguide/colors/_colors.scss +1 -1
- package/src/modules/AuditForm/components/audit-form-question-read-wrapper.vue +4 -4
- package/src/modules/AuditForm/components/audit-form-question.vue +2 -2
package/package.json
CHANGED
|
@@ -104,7 +104,7 @@ const isResult = computed(() => !isEmpty(props.result));
|
|
|
104
104
|
}
|
|
105
105
|
|
|
106
106
|
&--filled {
|
|
107
|
-
background: var(--secondary-color
|
|
107
|
+
background: var(--secondary-color);
|
|
108
108
|
}
|
|
109
109
|
}
|
|
110
110
|
|
|
@@ -123,13 +123,13 @@ const isResult = computed(() => !isEmpty(props.result));
|
|
|
123
123
|
&--required {
|
|
124
124
|
&:after {
|
|
125
125
|
content: '*';
|
|
126
|
-
color: var(--
|
|
126
|
+
color: var(--error-color);
|
|
127
127
|
}
|
|
128
128
|
}
|
|
129
129
|
}
|
|
130
130
|
.audit-form-question--clear {
|
|
131
|
-
margin-top: var(--spacing-sm)
|
|
131
|
+
margin-top: var(--spacing-sm);
|
|
132
132
|
cursor: pointer;
|
|
133
|
-
color: var(--
|
|
133
|
+
color: var(--info-color);
|
|
134
134
|
}
|
|
135
135
|
</style>
|
|
@@ -117,12 +117,12 @@ onMounted(() => {
|
|
|
117
117
|
.audit-form-question {
|
|
118
118
|
padding: var(--spacing-sm);
|
|
119
119
|
border-radius: var(--border-radius);
|
|
120
|
-
background: var(--
|
|
120
|
+
background: var(--dp-22-surface-color);
|
|
121
121
|
box-shadow: var(--elevation-1);
|
|
122
122
|
|
|
123
123
|
// override audit-form-question-read-wrapper specificity for hover
|
|
124
124
|
&.audit-form-question--answered {
|
|
125
|
-
background: var(--secondary-color
|
|
125
|
+
background: var(--secondary-color);
|
|
126
126
|
&:hover,
|
|
127
127
|
&:focus-within {
|
|
128
128
|
border-color: transparent;
|