@sapphire-ion/framework 1.0.24 → 1.0.26
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 +8 -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
|
@@ -588,6 +588,10 @@ video {
|
|
|
588
588
|
pointer-events: none;
|
|
589
589
|
}
|
|
590
590
|
|
|
591
|
+
.pointer-events-auto {
|
|
592
|
+
pointer-events: auto;
|
|
593
|
+
}
|
|
594
|
+
|
|
591
595
|
.\!visible {
|
|
592
596
|
visibility: visible !important;
|
|
593
597
|
}
|
|
@@ -812,6 +816,10 @@ video {
|
|
|
812
816
|
z-index: 100;
|
|
813
817
|
}
|
|
814
818
|
|
|
819
|
+
.z-\[200\] {
|
|
820
|
+
z-index: 200;
|
|
821
|
+
}
|
|
822
|
+
|
|
815
823
|
.order-1 {
|
|
816
824
|
order: 1;
|
|
817
825
|
}
|
|
@@ -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 pointer-events-none 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 pointer-events-auto #{!important};
|
|
59
|
+
}
|
|
51
60
|
}
|