monkey-style-guide-v2 0.0.96 → 0.0.98
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/assets/scss/directives/_styles.scss +5 -5
- package/fesm2022/monkey-style-guide-v2.mjs +2 -2
- package/fesm2022/monkey-style-guide-v2.mjs.map +1 -1
- package/lib/components/tabs/tab-link.directive.d.ts +1 -1
- package/monkey-style-guide-v2-0.0.98.tgz +0 -0
- package/package.json +1 -1
- package/monkey-style-guide-v2-0.0.96.tgz +0 -0
|
@@ -10,7 +10,7 @@ monkey-label {
|
|
|
10
10
|
font-style: normal;
|
|
11
11
|
font-weight: 400;
|
|
12
12
|
line-height: 16px;
|
|
13
|
-
letter-spacing: 0.
|
|
13
|
+
letter-spacing: 0.14px;
|
|
14
14
|
|
|
15
15
|
.mecx-disabled & {
|
|
16
16
|
color: var(--mecx-color-gray-400);
|
|
@@ -24,7 +24,7 @@ monkey-helper {
|
|
|
24
24
|
font-style: normal;
|
|
25
25
|
font-weight: 400;
|
|
26
26
|
line-height: 16px;
|
|
27
|
-
letter-spacing: 0.
|
|
27
|
+
letter-spacing: 0.14px;
|
|
28
28
|
|
|
29
29
|
.mecx-disabled & {
|
|
30
30
|
color: var(--mecx-color-gray-400);
|
|
@@ -68,7 +68,7 @@ monkey-info {
|
|
|
68
68
|
font-style: normal;
|
|
69
69
|
font-weight: 400;
|
|
70
70
|
line-height: 16px;
|
|
71
|
-
letter-spacing: 0.
|
|
71
|
+
letter-spacing: 0.14px;
|
|
72
72
|
display: flex;
|
|
73
73
|
|
|
74
74
|
.mecx-disabled & {
|
|
@@ -88,11 +88,11 @@ monkey-error {
|
|
|
88
88
|
gap: 2px;
|
|
89
89
|
align-items: center;
|
|
90
90
|
transform: translateY(-9px);
|
|
91
|
-
animation:
|
|
91
|
+
animation: slide-down 150ms ease-out forwards;
|
|
92
92
|
transition: 2s cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
93
93
|
}
|
|
94
94
|
|
|
95
|
-
@keyframes
|
|
95
|
+
@keyframes slide-down {
|
|
96
96
|
to {
|
|
97
97
|
opacity: 1;
|
|
98
98
|
transform: translateY(0);
|
|
@@ -4535,7 +4535,7 @@ class MonkeyDownloadButtonComponent {
|
|
|
4535
4535
|
[color]="color"
|
|
4536
4536
|
[size]="size"
|
|
4537
4537
|
[class.has-progress]="hasProgress"
|
|
4538
|
-
[disabled]="hasProgress"
|
|
4538
|
+
[disabled]="disabled || hasProgress"
|
|
4539
4539
|
(click)="onDownload()"
|
|
4540
4540
|
class="w-100"
|
|
4541
4541
|
>
|
|
@@ -4563,7 +4563,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
4563
4563
|
[color]="color"
|
|
4564
4564
|
[size]="size"
|
|
4565
4565
|
[class.has-progress]="hasProgress"
|
|
4566
|
-
[disabled]="hasProgress"
|
|
4566
|
+
[disabled]="disabled || hasProgress"
|
|
4567
4567
|
(click)="onDownload()"
|
|
4568
4568
|
class="w-100"
|
|
4569
4569
|
>
|