@milaboratories/uikit 2.2.74 → 2.2.76

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.74",
3
+ "version": "2.2.76",
4
4
  "type": "module",
5
5
  "main": "dist/pl-uikit.umd.js",
6
6
  "module": "dist/pl-uikit.js",
@@ -28,15 +28,15 @@
28
28
  "resize-observer-polyfill": "^1.5.1",
29
29
  "@vitejs/plugin-vue": "^5.2.3",
30
30
  "tsc-alias": "^1.8.11",
31
- "vitest": "^2.1.8",
31
+ "vitest": "^2.1.9",
32
32
  "vite": "^5.4.11",
33
33
  "vue-tsc": "^2.1.10",
34
34
  "yarpm": "^1.2.0",
35
35
  "svgo": "^3.3.2",
36
36
  "@types/d3": "^7.4.3",
37
+ "@milaboratories/helpers": "^1.6.11",
37
38
  "@milaboratories/eslint-config": "^1.0.4",
38
- "@platforma-sdk/model": "^1.30.11",
39
- "@milaboratories/helpers": "^1.6.11"
39
+ "@platforma-sdk/model": "^1.31.16"
40
40
  },
41
41
  "scripts": {
42
42
  "dev": "vite",
@@ -1,11 +1,11 @@
1
1
  @font-face {
2
2
  font-family: "Manrope";
3
3
  src: url("./fonts/Manrope/Manrope-VariableFont_wght.ttf") format("opentype");
4
- font-weight: 125 900;
4
+ font-weight: 200 800;
5
5
  }
6
6
 
7
7
  @font-face {
8
8
  font-family: "Spline Sans Mono";
9
9
  src: url("./fonts/Spline_Sans_Mono/SplineSansMono-VariableFont_wght.ttf") format("opentype");
10
- font-weight: 125 900;
11
- }
10
+ font-weight: 300 700;
11
+ }
@@ -1,5 +1,3 @@
1
- @use "@/assets/mixins" as *;
2
-
3
1
  .pl-checkbox-base {
4
2
  --enabled-unchecked-icon: url('@/assets/images/24_checkbox-light-enabled-unchecked.svg');
5
3
  --enabled-checked-icon: url('@/assets/images/24_checkbox-light-enabled-checked.svg');
@@ -11,23 +9,25 @@
11
9
  cursor: pointer;
12
10
  outline: none;
13
11
  border-radius: 4px;
14
- @include icon(var(--enabled-unchecked-icon), 24px);
12
+ min-block-size: 24px;
13
+ min-inline-size: 24px;
14
+ background: var(--enabled-unchecked-icon) no-repeat center;
15
15
 
16
16
  &.checked {
17
- @include icon(var(--enabled-checked-icon), 24px);
17
+ background-image: var(--enabled-checked-icon);
18
18
  }
19
19
 
20
20
  &.indeterminate {
21
- @include icon(var(--enabled-indeterminate-icon), 24px);
21
+ background-image: var(--enabled-indeterminate-icon);
22
22
  }
23
23
 
24
24
  &.disabled {
25
- @include icon(var(--disabled-unchecked-icon), 24px);
25
+ background-image: var(--disabled-unchecked-icon);
26
26
  pointer-events: none;
27
27
  }
28
28
 
29
29
  &.disabled:is(.checked) {
30
- @include icon(var(--disabled-checked-icon), 24px);
30
+ background-image: var(--disabled-checked-icon);
31
31
  pointer-events: none;
32
32
  }
33
33
 
@@ -48,7 +48,7 @@ const openNativeDialog = async () => {
48
48
  ? [
49
49
  {
50
50
  name: 'All Files',
51
- extensions: props.extensions,
51
+ extensions: [...props.extensions],
52
52
  },
53
53
  ]
54
54
  : [];