mnfst 0.5.121 → 0.5.122
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/lib/manifest.chart.css +195 -0
- package/lib/manifest.charts.js +593 -0
- package/lib/manifest.checkbox.css +2 -2
- package/lib/manifest.colorpicker.js +198 -41
- package/lib/manifest.css +755 -21
- package/lib/manifest.data.js +35 -7
- package/lib/manifest.datepicker.css +504 -0
- package/lib/manifest.datepicker.js +1208 -0
- package/lib/manifest.dialog.css +7 -4
- package/lib/manifest.dropdown.css +7 -10
- package/lib/manifest.integrity.json +9 -5
- package/lib/manifest.js +18 -4
- package/lib/manifest.localization.js +5 -1
- package/lib/manifest.min.css +1 -1
- package/lib/manifest.payments.js +583 -0
- package/lib/manifest.schema.json +77 -0
- package/lib/manifest.sidebar.css +7 -6
- package/lib/manifest.status.js +680 -0
- package/lib/manifest.theme.css +6 -4
- package/lib/manifest.toast.css +1 -1
- package/lib/manifest.tooltip.css +48 -16
- package/lib/manifest.utilities.css +3 -2
- package/lib/manifest.utilities.js +18 -2
- package/package.json +3 -1
package/lib/manifest.sidebar.css
CHANGED
|
@@ -2,13 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
@layer base {
|
|
4
4
|
|
|
5
|
-
/* Base popover styles: scale-only pop-in, no opacity animation (avoids the
|
|
6
|
-
see-through artifact + Safari bounce). See manifest.dropdown.css. The
|
|
7
|
-
sidebar's own slide-in (translateX) is defined in the components layer
|
|
8
|
-
below, where it opts out of this scale-pop with `animation: none`. */
|
|
9
5
|
@keyframes mnfst-popover-in {
|
|
10
|
-
from {
|
|
11
|
-
|
|
6
|
+
from {
|
|
7
|
+
transform: scale(.9);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
to {
|
|
11
|
+
transform: none;
|
|
12
|
+
}
|
|
12
13
|
}
|
|
13
14
|
|
|
14
15
|
:where([popover]):not(.unstyle) {
|