@webitel/ui-sdk 2.1.2 → 2.1.5

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": "2.1.2",
3
+ "version": "2.1.5",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve-lib": "vue-cli-service serve",
@@ -175,6 +175,11 @@ export default {
175
175
  .wt-tags-input .multiselect ::v-deep {
176
176
  .multiselect__tags {
177
177
  padding-bottom: 0;
178
+ padding-right: calc(
179
+ var(--input-padding)
180
+ + var(--icon-md-size)
181
+ + var(--select-caret-right-pos)
182
+ );
178
183
 
179
184
  .multiselect__tags-wrap {
180
185
  display: flex;
@@ -108,7 +108,7 @@ export default {
108
108
  border: none;
109
109
  }
110
110
 
111
- .wt-select__select {
111
+ .multiselect__select {
112
112
  top: 0;
113
113
  right: 0;
114
114
  }
@@ -131,22 +131,25 @@
131
131
  }
132
132
  }
133
133
 
134
- .wt-select--loading ::v-deep {
135
- .multiselect__content-wrapper {
136
- overflow-y: hidden;
137
- }
134
+ .wt-select--loading,
135
+ .wt-tags-input--loading {
136
+ ::v-deep {
137
+ .multiselect__content-wrapper {
138
+ overflow-y: hidden;
139
+ }
138
140
 
139
- .multiselect__loading-wrapper {
140
- position: sticky;
141
- z-index: 1;
142
- top: 0;
143
- left: 0;
144
- display: flex;
145
- align-items: center;
146
- justify-content: center;
147
- width: 100%;
148
- height: 300px; // max dropdown panel height
149
- backdrop-filter: blur(4px);
141
+ .multiselect__loading-wrapper {
142
+ position: sticky;
143
+ z-index: 1;
144
+ top: 0;
145
+ left: 0;
146
+ display: flex;
147
+ align-items: center;
148
+ justify-content: center;
149
+ width: 100%;
150
+ height: 300px; // max dropdown panel height
151
+ backdrop-filter: blur(4px);
152
+ }
150
153
  }
151
154
  }
152
155