nexaas-ui-components 1.0.95 → 1.0.96
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/index.cjs +4 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -3258,7 +3258,10 @@ var customStyles = {
|
|
|
3258
3258
|
return {
|
|
3259
3259
|
...provided,
|
|
3260
3260
|
color: state.isDisabled ? "var(--input-icon-disabled)" : "var(--paragraph)",
|
|
3261
|
-
|
|
3261
|
+
// translateY antes do rotate: transform e aplicado da esquerda pra direita, entao
|
|
3262
|
+
// invertendo a ordem o deslocamento acontece no eixo ja girado e a seta desce 2px em vez
|
|
3263
|
+
// de subir. -2px corrige o desalinhamento otico da seta com o texto do campo.
|
|
3264
|
+
transform: ((_a = state == null ? void 0 : state.selectProps) == null ? void 0 : _a.menuIsOpen) ? "translateY(-2px) rotate(180deg)" : "translateY(-2px) rotate(0)",
|
|
3262
3265
|
":hover": {
|
|
3263
3266
|
color: state.isDisabled ? "var(--input-icon-disabled)" : "var(--paragraph)"
|
|
3264
3267
|
}
|