@rotki/ui-library 2.14.0 → 2.15.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/components/logos/RuiLogo.vue.js +90 -52
- package/dist/components/logos/RuiLogo.vue.js.map +1 -1
- package/dist/components/logos/use-logo-sources.d.ts +20 -1
- package/dist/components/logos/use-logo-sources.js +47 -2
- package/dist/components/logos/use-logo-sources.js.map +1 -1
- package/dist/icons/icons_1.js +1 -1
- package/dist/icons/icons_1.js.map +1 -1
- package/dist/style.css +3 -3
- package/dist/web-types.json +1 -1
- package/package.json +3 -6
package/dist/style.css
CHANGED
|
@@ -850,6 +850,9 @@ html[data-theme="dark"], html.dark {
|
|
|
850
850
|
.sticky {
|
|
851
851
|
position: sticky;
|
|
852
852
|
}
|
|
853
|
+
.inset-0 {
|
|
854
|
+
inset: 0px;
|
|
855
|
+
}
|
|
853
856
|
.inset-y-0 {
|
|
854
857
|
top: 0px;
|
|
855
858
|
bottom: 0px;
|
|
@@ -2410,9 +2413,6 @@ html[data-theme="dark"], html.dark {
|
|
|
2410
2413
|
.delay-0 {
|
|
2411
2414
|
transition-delay: 0s;
|
|
2412
2415
|
}
|
|
2413
|
-
.delay-100 {
|
|
2414
|
-
transition-delay: 100ms;
|
|
2415
|
-
}
|
|
2416
2416
|
.delay-200 {
|
|
2417
2417
|
transition-delay: 200ms;
|
|
2418
2418
|
}
|
package/dist/web-types.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rotki/ui-library",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.15.0",
|
|
4
4
|
"description": "A vue design system and component library for rotki",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -77,14 +77,14 @@
|
|
|
77
77
|
}
|
|
78
78
|
},
|
|
79
79
|
"peerDependencies": {
|
|
80
|
-
"@vueuse/core": ">13.0.0",
|
|
81
|
-
"@vueuse/shared": ">13.0.0",
|
|
82
80
|
"dayjs": ">=1.11.13 <12",
|
|
83
81
|
"vue": ">=3.5.0"
|
|
84
82
|
},
|
|
85
83
|
"web-types": "dist/web-types.json",
|
|
86
84
|
"dependencies": {
|
|
87
85
|
"@popperjs/core": "2.11.8",
|
|
86
|
+
"@vueuse/core": "14.2.1",
|
|
87
|
+
"@vueuse/shared": "14.2.1",
|
|
88
88
|
"scule": "1.3.0",
|
|
89
89
|
"tinycolor2": "1.6.0"
|
|
90
90
|
},
|
|
@@ -107,9 +107,6 @@
|
|
|
107
107
|
"@vitest/ui": "4.1.0",
|
|
108
108
|
"@vue/test-utils": "2.4.6",
|
|
109
109
|
"@vue/tsconfig": "0.9.0",
|
|
110
|
-
"@vueuse/core": "14.2.1",
|
|
111
|
-
"@vueuse/math": "14.2.1",
|
|
112
|
-
"@vueuse/shared": "14.2.1",
|
|
113
110
|
"autoprefixer": "10.4.27",
|
|
114
111
|
"cac": "7.0.0",
|
|
115
112
|
"consola": "3.4.2",
|