@tagplus/components 4.9.0 → 4.9.2

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
@@ -8,7 +8,7 @@
8
8
  "email": "bruno@tagplus.com.br"
9
9
  }
10
10
  ],
11
- "version": "4.9.0",
11
+ "version": "4.9.2",
12
12
  "main": "./dist/tp.common.js",
13
13
  "directories": {
14
14
  "lib": "src/lib"
@@ -485,6 +485,8 @@ export default {
485
485
  getOption (val) {
486
486
  let value = ''
487
487
  let initialLabel = false
488
+ this.modifiedLabel = false
489
+
488
490
  if (typeof this.value === 'boolean') {
489
491
  value = ''
490
492
  } else if (Array.isArray(val)) {
@@ -183,6 +183,13 @@ $numIcons: 8;
183
183
  right: 0;
184
184
  bottom: 0;
185
185
  z-index: 5000;
186
+ transition: all ease-in-out 300ms;
187
+
188
+ &.hidden {
189
+ opacity: 0;
190
+ z-index: -10;
191
+ display: none;
192
+ }
186
193
 
187
194
  > .overlay {
188
195
  position: absolute;
@@ -193,7 +200,8 @@ $numIcons: 8;
193
200
  left: 0;
194
201
  right: 0;
195
202
  background-color: #fff;
196
- opacity: 1;
203
+ border-radius: 8px 0 0 8px;
204
+ opacity: 0.5;
197
205
  }
198
206
  .wrapper {
199
207
  text-align: center;