@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@milaboratories/uikit",
3
- "version": "2.2.84",
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
- "@platforma-sdk/model": "^1.34.8",
38
- "@milaboratories/eslint-config": "^1.0.4"
37
+ "@milaboratories/eslint-config": "^1.0.4",
38
+ "@platforma-sdk/model": "^1.34.10"
39
39
  },
40
40
  "scripts": {
41
41
  "dev": "vite",
@@ -194,7 +194,7 @@
194
194
  }
195
195
 
196
196
  .mask-loading {
197
- --icon-color: #07AD3E;
197
+ --icon-color: var(--ic-accent);
198
198
  animation: spin 2.5s linear infinite;
199
199
  }
200
200
  }
@@ -200,7 +200,7 @@
200
200
  }
201
201
 
202
202
  .mask-loading {
203
- --icon-color: var(#07AD3E);
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
- background-color: #07AD3E;
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);