@cloud-ru/uikit-product-utils 7.0.2 → 7.0.3
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 +12 -0
- package/dist/cjs/styles/default.js +4 -4
- package/dist/esm/styles/default.js +1 -1
- package/package.json +4 -4
- package/src/styles/default.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## 7.0.3 (2025-11-13)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **PD-3377:** removed contributors ([121640f](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/121640f7b88b20a728a6ad2c39de8841532bb308))
|
|
12
|
+
* **PD-3377:** replaced tokens import to snack-uikit scoped package ([dd13d3b](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/dd13d3b7134a4b0d4696830dcd78c0e790700d09))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
6
18
|
## 7.0.2 (2025-11-13)
|
|
7
19
|
|
|
8
20
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.SHADOW = exports.ANIMATIONS = exports.DEFAULT_STYLES = void 0;
|
|
4
|
-
const
|
|
4
|
+
const figma_tokens_1 = require("@snack-uikit/figma-tokens");
|
|
5
5
|
function getLoadingWheelAnimationPerChild(quantity, duration) {
|
|
6
6
|
function getLoadingWheelAnimation(child) {
|
|
7
7
|
return `
|
|
@@ -59,7 +59,7 @@ exports.ANIMATIONS = {
|
|
|
59
59
|
`,
|
|
60
60
|
};
|
|
61
61
|
exports.SHADOW = {
|
|
62
|
-
SMALL:
|
|
63
|
-
MEDIUM:
|
|
64
|
-
LARGE:
|
|
62
|
+
SMALL: figma_tokens_1.themeVars.boxShadow.elevation.level1, // old value: '0 2px 12px rgba(0, 0, 0, 0.04)',
|
|
63
|
+
MEDIUM: figma_tokens_1.themeVars.boxShadow.elevation.level3, // old value: '0 4px 20px rgba(0, 0, 0, 0.08)',
|
|
64
|
+
LARGE: figma_tokens_1.themeVars.boxShadow.elevation.level4, // old value: '0 8px 32px rgba(0, 0, 0, 0.08)',
|
|
65
65
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloud-ru/uikit-product-utils",
|
|
3
3
|
"title": "Utils",
|
|
4
|
-
"version": "7.0.
|
|
4
|
+
"version": "7.0.3",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"*.css",
|
|
7
7
|
"*.woff",
|
|
@@ -30,7 +30,6 @@
|
|
|
30
30
|
"name": "Akhremenko Grigorii",
|
|
31
31
|
"url": "https://github.com/AGrigorii"
|
|
32
32
|
},
|
|
33
|
-
"contributors": [],
|
|
34
33
|
"license": "Apache-2.0",
|
|
35
34
|
"publishConfig": {
|
|
36
35
|
"access": "public"
|
|
@@ -49,7 +48,8 @@
|
|
|
49
48
|
"@sbercloud/figma-tokens-cloud-platform": "*",
|
|
50
49
|
"@sbercloud/figma-tokens-giga-id": "*",
|
|
51
50
|
"@sbercloud/figma-tokens-mlspace": "*",
|
|
52
|
-
"@sbercloud/figma-tokens-web": "*"
|
|
51
|
+
"@sbercloud/figma-tokens-web": "*",
|
|
52
|
+
"@snack-uikit/figma-tokens": "*"
|
|
53
53
|
},
|
|
54
54
|
"peerDependenciesMeta": {
|
|
55
55
|
"@sbercloud/figma-tokens-admin": {
|
|
@@ -68,5 +68,5 @@
|
|
|
68
68
|
"optional": true
|
|
69
69
|
}
|
|
70
70
|
},
|
|
71
|
-
"gitHead": "
|
|
71
|
+
"gitHead": "ce69097516055b330a0b05da5e29ac5b66e56284"
|
|
72
72
|
}
|
package/src/styles/default.ts
CHANGED