@platforma-sdk/ui-vue 1.13.15 → 1.13.18
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 +14 -0
- package/dist/lib.js +7087 -6858
- package/dist/lib.umd.cjs +32 -32
- package/dist/style.css +1 -1
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/assets/block.scss +14 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platforma-sdk/ui-vue",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.18",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/lib.umd.cjs",
|
|
6
6
|
"module": "dist/lib.js",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"@ag-grid-community/theming": "^32.3.3",
|
|
38
38
|
"@ag-grid-enterprise/side-bar": "^32.3.3",
|
|
39
39
|
"@ag-grid-enterprise/column-tool-panel": "^32.3.3",
|
|
40
|
-
"@milaboratories/uikit": "^2.2.
|
|
40
|
+
"@milaboratories/uikit": "^2.2.18",
|
|
41
41
|
"@platforma-sdk/model": "^1.13.15"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"vue-tsc": "^2.1.10",
|
|
62
62
|
"zod": "^3.23.8",
|
|
63
63
|
"yarpm": "^1.2.0",
|
|
64
|
-
"@milaboratories/helpers": "^1.6.
|
|
64
|
+
"@milaboratories/helpers": "^1.6.8"
|
|
65
65
|
},
|
|
66
66
|
"scripts": {
|
|
67
67
|
"test": "vitest run --passWithNoTests",
|
package/src/assets/block.scss
CHANGED
|
@@ -79,6 +79,20 @@
|
|
|
79
79
|
width: var(--progress-width);
|
|
80
80
|
background-color: var(--border-color-focus);
|
|
81
81
|
will-change: width;
|
|
82
|
+
background-image: linear-gradient(90deg, #0000 0%, rgba(255, 255, 255, 0.80) 50%, #0000 100%);
|
|
83
|
+
background-position: 0 0;
|
|
84
|
+
background-size: 80px 100%;
|
|
85
|
+
background-repeat: repeat-y;
|
|
86
|
+
animation: shine-animation 1.2s linear infinite;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
@keyframes shine-animation {
|
|
91
|
+
from {
|
|
92
|
+
background-position: -160px 0;
|
|
93
|
+
}
|
|
94
|
+
to {
|
|
95
|
+
background-position: calc(100% + 80px) 0;
|
|
82
96
|
}
|
|
83
97
|
}
|
|
84
98
|
|