@sapphire-ion/framework 1.0.24 → 1.0.25
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/esm2022/lib/components/inputs/input-select/input-select.component.mjs +6 -3
- package/esm2022/lib/components/inputs/input-select/input.select.configuration.mjs +10 -2
- package/fesm2022/sapphire-ion-framework.mjs +14 -3
- package/fesm2022/sapphire-ion-framework.mjs.map +1 -1
- package/lib/components/inputs/input-select/input.select.configuration.d.ts +1 -0
- package/package.json +1 -1
- package/themes/compiled-styles.scss +4 -0
- package/themes/components/inputs/input-select/input-select.component.scss +9 -0
- package/themes/styles/core.styles.scss +3 -3
package/package.json
CHANGED
|
@@ -48,4 +48,13 @@
|
|
|
48
48
|
@apply w-full;
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.error-container{
|
|
54
|
+
@apply absolute bottom-0 left-0 size-full opacity-0 -translate-y-12 flex items-center justify-center z-[200];
|
|
55
|
+
will-change: opacity, auto;
|
|
56
|
+
transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
|
|
57
|
+
&.active{
|
|
58
|
+
@apply opacity-100 translate-y-0 #{!important};
|
|
59
|
+
}
|
|
51
60
|
}
|