@webitel/ui-sdk 3.1.76 → 3.1.78
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.common.js +4 -4
- package/dist/ui-sdk.common.js.map +1 -1
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.umd.js +9 -9
- package/dist/ui-sdk.umd.js.map +1 -1
- package/dist/ui-sdk.umd.min.js +1 -1
- package/dist/ui-sdk.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/molecules/wt-datepicker/wt-datepicker.vue +9 -1
- package/src/modules/AuditForm/components/audit-form-question.vue +13 -1
package/package.json
CHANGED
|
@@ -144,7 +144,7 @@ const isDateTime = props.mode === 'datetime';
|
|
|
144
144
|
}
|
|
145
145
|
|
|
146
146
|
.dp__input {
|
|
147
|
-
|
|
147
|
+
@extend %typo-body-1;
|
|
148
148
|
}
|
|
149
149
|
|
|
150
150
|
.dp__arrow_top {
|
|
@@ -219,4 +219,12 @@ const isDateTime = props.mode === 'datetime';
|
|
|
219
219
|
gap: var(--spacing-xs);
|
|
220
220
|
margin: 0 var(--spacing-xs);
|
|
221
221
|
}
|
|
222
|
+
|
|
223
|
+
.wt-datepicker__open-arrow {
|
|
224
|
+
transition: var(--transition);
|
|
225
|
+
|
|
226
|
+
&--opened {
|
|
227
|
+
transform: rotate(180deg);
|
|
228
|
+
}
|
|
229
|
+
}
|
|
222
230
|
</style>
|
|
@@ -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
|
}
|