@proprioo/salatim 28.3.1 → 28.3.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/CHANGELOG.md +4 -0
- package/lib/index.js +6 -2
- package/lib/index.js.map +1 -1
- package/lib/ui/src/tag/Tag.styles.js +6 -2
- package/lib/ui/src/tag/Tag.styles.js.map +1 -1
- package/package.json +3 -4
package/CHANGELOG.md
CHANGED
package/lib/index.js
CHANGED
|
@@ -2585,16 +2585,20 @@ object-assign
|
|
|
2585
2585
|
width: ${w(12)};
|
|
2586
2586
|
height: ${w(12)};
|
|
2587
2587
|
margin-left: ${w(8)};
|
|
2588
|
+
cursor: pointer;
|
|
2588
2589
|
|
|
2589
2590
|
${({appearance:e})=>e===exports.TagAppearance.CUSTOMER&&n.css`
|
|
2590
2591
|
margin-right: ${w(8)};
|
|
2591
2592
|
`}
|
|
2592
2593
|
|
|
2593
|
-
cursor: pointer;
|
|
2594
|
-
|
|
2595
2594
|
> svg {
|
|
2596
2595
|
width: 100%;
|
|
2597
2596
|
height: 100%;
|
|
2597
|
+
transition: opacity 0.2s ease;
|
|
2598
|
+
|
|
2599
|
+
:hover {
|
|
2600
|
+
opacity: 0.7;
|
|
2601
|
+
}
|
|
2598
2602
|
}
|
|
2599
2603
|
`,iI=f.default.li`
|
|
2600
2604
|
white-space: nowrap;
|