@milaboratories/uikit 2.2.84 → 2.2.85
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/CHANGELOG.md +6 -0
- package/dist/pl-uikit.css +1 -1
- package/dist/pl-uikit.js +4 -4
- package/dist/pl-uikit.js.map +1 -1
- package/dist/src/components/PlIcon16/PlIcon16.vue.d.ts.map +1 -1
- package/dist/src/components/PlIcon24/PlIcon24.vue.d.ts.map +1 -1
- package/dist/src/components/PlSvg/PlSvg.vue.d.ts.map +1 -1
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/components/PlDropdown/pl-dropdown.scss +1 -1
- package/src/components/PlDropdownMulti/pl-dropdown-multi.scss +2 -2
- package/src/components/PlIcon16/PlIcon16.vue +2 -0
- package/src/components/PlIcon24/PlIcon24.vue +2 -0
- package/src/components/PlSvg/PlSvg.vue +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@milaboratories/uikit",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.85",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/pl-uikit.js",
|
|
6
6
|
"module": "dist/pl-uikit.js",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"svgo": "^3.3.2",
|
|
35
35
|
"@types/d3": "^7.4.3",
|
|
36
36
|
"@milaboratories/helpers": "^1.6.12",
|
|
37
|
-
"@
|
|
38
|
-
"@
|
|
37
|
+
"@milaboratories/eslint-config": "^1.0.4",
|
|
38
|
+
"@platforma-sdk/model": "^1.34.10"
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|
|
41
41
|
"dev": "vite",
|
|
@@ -200,7 +200,7 @@
|
|
|
200
200
|
}
|
|
201
201
|
|
|
202
202
|
.mask-loading {
|
|
203
|
-
--icon-color: var(
|
|
203
|
+
--icon-color: var(--ic-accent);
|
|
204
204
|
animation: spin 2.5s linear infinite;
|
|
205
205
|
}
|
|
206
206
|
}
|
|
@@ -306,7 +306,7 @@
|
|
|
306
306
|
|
|
307
307
|
.mask-loading {
|
|
308
308
|
animation: spin 2.5s linear infinite;
|
|
309
|
-
|
|
309
|
+
--icon-color: var(--ic-accent);
|
|
310
310
|
}
|
|
311
311
|
}
|
|
312
312
|
|
|
@@ -35,6 +35,8 @@ const size = computed(() => {
|
|
|
35
35
|
.icon {
|
|
36
36
|
/* pass color to svg variable */
|
|
37
37
|
--svg-fill-0: var(--icon-color, var(--mask-icon-bg-color));
|
|
38
|
+
--svg-fill-1: var(--icon-color, var(--mask-icon-bg-color));
|
|
39
|
+
--svg-fill-2: var(--icon-color, var(--mask-icon-bg-color));
|
|
38
40
|
display: inline-block;
|
|
39
41
|
}
|
|
40
42
|
</style>
|
|
@@ -35,6 +35,8 @@ const size = computed(() => {
|
|
|
35
35
|
.icon {
|
|
36
36
|
/* pass color to svg variable */
|
|
37
37
|
--svg-fill-0: var(--icon-color, var(--mask-icon-bg-color));
|
|
38
|
+
--svg-fill-1: var(--icon-color, var(--mask-icon-bg-color));
|
|
39
|
+
--svg-fill-2: var(--icon-color, var(--mask-icon-bg-color));
|
|
38
40
|
display: inline-block;
|
|
39
41
|
}
|
|
40
42
|
</style>
|
|
@@ -56,6 +56,8 @@ function getStyleColor(prop: 'fill' | 'stroke', color: undefined | string | stri
|
|
|
56
56
|
--svg-width: unset;
|
|
57
57
|
--svg-height: unset;
|
|
58
58
|
--svg-fill-0: unset; /* can be in any quantity, depends on the icon (--svg-fill-X) */
|
|
59
|
+
--svg-fill-1: unset; /* can be in any quantity, depends on the icon (--svg-fill-X) */
|
|
60
|
+
--svg-fill-2: unset; /* can be in any quantity, depends on the icon (--svg-fill-X) */
|
|
59
61
|
--svg-stroke-0: unset; /* can be in any quantity, depends on the icon (--svg-stroke-X) */
|
|
60
62
|
|
|
61
63
|
width: var(--svg-width);
|