@milaboratories/uikit 2.2.86 → 2.2.87
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 +2193 -2181
- package/dist/pl-uikit.js.map +1 -1
- package/dist/src/index.d.ts +1 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/assets/variables.scss +4 -0
- package/src/components/PlLogView/useLogHandle.ts +1 -1
- package/src/index.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@milaboratories/uikit",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.87",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/pl-uikit.js",
|
|
6
6
|
"module": "dist/pl-uikit.js",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@vue/test-utils": "^2.4.6",
|
|
25
|
-
"@vueuse/core": "
|
|
25
|
+
"@vueuse/core": "^13.3.0",
|
|
26
26
|
"jsdom": "^25.0.1",
|
|
27
27
|
"resize-observer-polyfill": "^1.5.1",
|
|
28
28
|
"@vitejs/plugin-vue": "^5.2.3",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"yarpm": "^1.2.0",
|
|
34
34
|
"svgo": "^3.3.2",
|
|
35
35
|
"@types/d3": "^7.4.3",
|
|
36
|
-
"@milaboratories/helpers": "^1.6.12",
|
|
37
36
|
"@milaboratories/eslint-config": "^1.0.4",
|
|
37
|
+
"@milaboratories/helpers": "^1.6.13",
|
|
38
38
|
"@platforma-sdk/model": "^1.34.10"
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|
|
@@ -62,11 +62,14 @@
|
|
|
62
62
|
--gradient-red: linear-gradient(0deg, #ffd5cc 0%, #ff9494 100%);
|
|
63
63
|
--gradient-violet: linear-gradient(180deg, #bca3ff 0%, #e5e5ff 100%);
|
|
64
64
|
--TT-gradient-violet: linear-gradient(180deg, #bca3ff 0%, #e5e5ff 100%);
|
|
65
|
+
--gradient-light-lime: linear-gradient(180deg, #EBFFEB 0%, transparent 100%);
|
|
65
66
|
|
|
66
67
|
// Layout
|
|
67
68
|
--main-spacing: 24px;
|
|
68
69
|
--gap-v: 24px;
|
|
69
70
|
--gap-h: 12px;
|
|
71
|
+
--border-radius: 6px;
|
|
72
|
+
|
|
70
73
|
// @TODO global overlays
|
|
71
74
|
--z-splash: 50;
|
|
72
75
|
--z-slide-shadow: 80;
|
|
@@ -143,4 +146,5 @@
|
|
|
143
146
|
--gradient-rose: linear-gradient(0deg, #478063 0%, #2e4652 45.93%, #24223d 91.63%);
|
|
144
147
|
--gradient-red: linear-gradient(0deg, #478063 0%, #2e4652 45.93%, #24223d 91.63%);
|
|
145
148
|
--gradient-violet: linear-gradient(0deg, #478063 0%, #2e4652 45.93%, #24223d 91.63%);
|
|
149
|
+
|
|
146
150
|
}
|
|
@@ -80,7 +80,7 @@ export function useLogHandle(
|
|
|
80
80
|
});
|
|
81
81
|
|
|
82
82
|
// Only trigger after last fetch is done
|
|
83
|
-
const timeoutPoll = useTimeoutPoll(fetchAndCatch, 1500, { immediate: false });
|
|
83
|
+
const timeoutPoll = useTimeoutPoll(fetchAndCatch, 1500, { immediate: false, immediateCallback: true });
|
|
84
84
|
|
|
85
85
|
whenever(
|
|
86
86
|
() => logState?.value?.finished,
|
package/src/index.ts
CHANGED
|
@@ -9,7 +9,7 @@ import DropdownListItem from './components/DropdownListItem.vue';
|
|
|
9
9
|
// @TODO review
|
|
10
10
|
import ContextProvider from './components/ContextProvider.vue';
|
|
11
11
|
import Slider from './components/Slider.vue';
|
|
12
|
-
import { showContextMenu } from './components/contextMenu
|
|
12
|
+
import { showContextMenu } from './components/contextMenu';
|
|
13
13
|
// for new version
|
|
14
14
|
import LongText from './components/LongText.vue';
|
|
15
15
|
import SliderRangeTriple from './components/SliderRangeTriple.vue';
|