@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-sdk",
3
- "version": "23.12.80",
3
+ "version": "23.12.82",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vite",
@@ -41,6 +41,7 @@ export default {
41
41
  max-width: 100%;
42
42
  padding: var(--page-wrapper-padding);
43
43
  gap: var(--page-wrapper-section-gap);
44
+ background: var(--wt-page-wrapper-background-color);
44
45
  }
45
46
 
46
47
  .wt-page-wrapper__header,
@@ -30,7 +30,7 @@
30
30
  --dp-1-surface-color: hsl(225, 20%, 77%);
31
31
 
32
32
  // content wrapper
33
- --content-wrapper-color: var(--dp-22-surface-color);
33
+ --content-wrapper-color: var(--dp-20-surface-color);
34
34
 
35
35
  // success colors
36
36
  --success-color: var(--green-darken-4);
@@ -104,7 +104,7 @@ const isResult = computed(() => !isEmpty(props.result));
104
104
  }
105
105
 
106
106
  &--filled {
107
- background: var(--secondary-color-50);
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(--false-color);
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(--text-link-color);
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(--main-color);
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-50);
125
+ background: var(--secondary-color);
126
126
  &:hover,
127
127
  &:focus-within {
128
128
  border-color: transparent;