profinansy-ui-lib 3.1.2 → 3.1.3
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/index.js +3 -3
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -339,6 +339,7 @@
|
|
|
339
339
|
margin-right: 16px;
|
|
340
340
|
min-width: 24px;
|
|
341
341
|
width: 24px;
|
|
342
|
+
transition: opacity .3s cubic-bezier(0.05, 0, 0, 1);
|
|
342
343
|
@media (max-width: 360px) {
|
|
343
344
|
display: none;
|
|
344
345
|
}
|
|
@@ -346,9 +347,7 @@
|
|
|
346
347
|
fill: ${e=>e.theme.icons.contrastThemed};
|
|
347
348
|
}
|
|
348
349
|
&:hover {
|
|
349
|
-
|
|
350
|
-
fill: ${e=>e.theme.icons.accentSecondary};
|
|
351
|
-
}
|
|
350
|
+
opacity: 0.6;
|
|
352
351
|
},
|
|
353
352
|
${e=>e.isActive&&o.css`
|
|
354
353
|
& path {
|
|
@@ -514,6 +513,7 @@
|
|
|
514
513
|
text-decoration: underline;
|
|
515
514
|
color: #ffffff;
|
|
516
515
|
white-space: nowrap;
|
|
516
|
+
transition: color 0.3s cubic-bezier(0.05, 0, 0, 1);
|
|
517
517
|
&:hover {
|
|
518
518
|
color: ${e=>e.theme.text.accentSecondary};
|
|
519
519
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "profinansy-ui-lib",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.3",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"devDependencies": {
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"build-storybook": "storybook build",
|
|
54
54
|
"icons:story": "node \\generateIconsStories.ts",
|
|
55
55
|
"prepare": "husky install",
|
|
56
|
-
"checks:pre-commit": "yarn lint",
|
|
56
|
+
"checks:pre-commit": "yarn lint && yarn types",
|
|
57
57
|
"chromatic": "npx chromatic --project-token=chpt_d128c44de33605c --auto-accept-changes"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|