@appartmint/mint 2.9.4 → 2.10.0
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/css/mint.css +33 -1
- package/dist/css/mint.css.map +1 -1
- package/dist/css/mint.min.css +1 -1
- package/dist/css/mint.min.css.map +1 -1
- package/dist/js/imports/util/list.d.ts +1 -1
- package/dist/js/imports/util/list.d.ts.map +1 -1
- package/dist/js/index.js.map +1 -1
- package/dist/js/index.min.js.map +1 -1
- package/package.json +1 -1
- package/src/scss/imports/components/widget/_button.scss +20 -4
- package/src/scss/imports/global/_animations.scss +19 -0
- package/src/scss/imports/util/_vars.scss +3 -4
package/dist/css/mint.css
CHANGED
|
@@ -742,6 +742,15 @@ button i:last-child,
|
|
|
742
742
|
.mint-pill i:last-child {
|
|
743
743
|
margin-left: 0.5em;
|
|
744
744
|
}
|
|
745
|
+
a i:only-child,
|
|
746
|
+
button i:only-child,
|
|
747
|
+
.mint-btn i:only-child,
|
|
748
|
+
:root:root [amplify-button] i:only-child,
|
|
749
|
+
.mint-select i:only-child,
|
|
750
|
+
.mint-btn-icon i:only-child,
|
|
751
|
+
.mint-pill i:only-child {
|
|
752
|
+
margin: 0;
|
|
753
|
+
}
|
|
745
754
|
|
|
746
755
|
.mint-btn, :root:root [amplify-button], .mint-select,
|
|
747
756
|
.mint-btn-group,
|
|
@@ -940,7 +949,7 @@ button i:last-child,
|
|
|
940
949
|
}
|
|
941
950
|
|
|
942
951
|
.mint-btn, :root:root [amplify-button], .mint-select {
|
|
943
|
-
padding: 0.5rem
|
|
952
|
+
padding: 0.5rem 1rem;
|
|
944
953
|
cursor: pointer;
|
|
945
954
|
}
|
|
946
955
|
.mint-btn-icon {
|
|
@@ -1017,6 +1026,12 @@ button i:last-child,
|
|
|
1017
1026
|
.mint-btn-group button.mint-active {
|
|
1018
1027
|
background: var(--mint-brand-5);
|
|
1019
1028
|
}
|
|
1029
|
+
.mint-btn-submit.mint-success[disabled] {
|
|
1030
|
+
filter: none !important;
|
|
1031
|
+
}
|
|
1032
|
+
.mint-btn-submit i.fa-check {
|
|
1033
|
+
animation: submit-success 750ms ease-in-out;
|
|
1034
|
+
}
|
|
1020
1035
|
|
|
1021
1036
|
.mint-pill {
|
|
1022
1037
|
padding: 0 0.75rem;
|
|
@@ -1528,6 +1543,20 @@ app-root {
|
|
|
1528
1543
|
transform: scale(1);
|
|
1529
1544
|
}
|
|
1530
1545
|
}
|
|
1546
|
+
@keyframes mint-stretch-tilt-in {
|
|
1547
|
+
0% {
|
|
1548
|
+
transform: scale(0.5);
|
|
1549
|
+
rotate: -15deg;
|
|
1550
|
+
}
|
|
1551
|
+
90% {
|
|
1552
|
+
transform: scale(1.25);
|
|
1553
|
+
rotate: 5deg;
|
|
1554
|
+
}
|
|
1555
|
+
100% {
|
|
1556
|
+
transform: scale(1);
|
|
1557
|
+
rotate: 0deg;
|
|
1558
|
+
}
|
|
1559
|
+
}
|
|
1531
1560
|
:root {
|
|
1532
1561
|
--mint-delay-instant: 0ms;
|
|
1533
1562
|
--mint-delay-fast: 100ms;
|
|
@@ -1619,6 +1648,9 @@ app-root {
|
|
|
1619
1648
|
.mint-stretch-in {
|
|
1620
1649
|
animation: mint-stretch-out 0.5s ease forwards;
|
|
1621
1650
|
}
|
|
1651
|
+
.mint-stretch-tilt-in {
|
|
1652
|
+
animation: mint-stretch-tilt-in 0.75s ease-in-out forwards;
|
|
1653
|
+
}
|
|
1622
1654
|
|
|
1623
1655
|
.mint-aspect, .mint-16-9 {
|
|
1624
1656
|
position: relative;
|