@cloud-ru/uikit-product-calculator 1.9.3 → 1.9.5
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 +22 -0
- package/README.md +1 -1
- package/dist/cjs/config/platforms/evolution/constants.js +1 -1
- package/dist/cjs/config/platforms/evolution/product-config/EvolutionCloudServer.js +3 -3
- package/dist/esm/config/platforms/evolution/constants.js +1 -1
- package/dist/esm/config/platforms/evolution/product-config/EvolutionCloudServer.js +3 -3
- package/package.json +2 -2
- package/src/config/platforms/evolution/constants.ts +1 -1
- package/src/config/platforms/evolution/product-config/EvolutionCloudServer.tsx +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
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
|
+
## 1.9.5 (2026-06-08)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **SITE-11329:** fix flavor eco compute ([53e99f8](https://github.com/cloud-ru-tech/uikit-product/commit/53e99f83985a5752cbf67355d86a904acdf1924d))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## 1.9.4 (2026-06-08)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **SITE-11400:** update and delete vcpu evo compute calc ([856c118](https://github.com/cloud-ru-tech/uikit-product/commit/856c11816c41a44bb3f3dfbd243646f564424cdb))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
## 1.9.3 (2026-06-05)
|
|
7
29
|
|
|
8
30
|
### Only dependencies have been changed
|
package/README.md
CHANGED
|
@@ -113,7 +113,7 @@ data-test-id
|
|
|
113
113
|
### Props
|
|
114
114
|
| name | type | default value | description |
|
|
115
115
|
|------|------|---------------|-------------|
|
|
116
|
-
| __@iterator@
|
|
116
|
+
| __@iterator@1096* | `() => StringIterator<string>` | - | Iterator |
|
|
117
117
|
| toWellFormed* | `() => string` | - | Returns a string where all lone or out-of-order surrogates have been replaced by the Unicode replacement character (U+FFFD). |
|
|
118
118
|
| isWellFormed* | `() => boolean` | - | Returns true if all leading surrogates and trailing surrogates appear paired and in order. |
|
|
119
119
|
| at* | `(index: number) => string` | - | Returns a new String consisting of the single UTF-16 code unit located at the specified index. @param index The zero-based index of the desired code unit. A negative index will count back from the last item. |
|
|
@@ -36,7 +36,7 @@ const GuaranteedPartItem = {
|
|
|
36
36
|
exports.guaranteedPartToVCpuMap = {
|
|
37
37
|
[GuaranteedPartItem[10]]: [1, 2, 4, 8],
|
|
38
38
|
[GuaranteedPartItem[30]]: [1, 2, 4, 8, 16, 24, 32],
|
|
39
|
-
[GuaranteedPartItem[100]]: [1, 2, 4, 8, 16, 24, 32
|
|
39
|
+
[GuaranteedPartItem[100]]: [1, 2, 4, 8, 16, 24, 32],
|
|
40
40
|
};
|
|
41
41
|
exports.guaranteedPartVCpuToRamMap = {
|
|
42
42
|
[GuaranteedPartItem[10]]: {
|
|
@@ -108,9 +108,9 @@ const CPU_BY_MODEL_AND_GPU = {
|
|
|
108
108
|
};
|
|
109
109
|
const RAN_BY_MODEL_AND_GPU = {
|
|
110
110
|
[NVIDIA_A100_40GB.value]: {
|
|
111
|
-
'1': [
|
|
112
|
-
'2': [
|
|
113
|
-
'4': [
|
|
111
|
+
'1': [220],
|
|
112
|
+
'2': [440],
|
|
113
|
+
'4': [880],
|
|
114
114
|
},
|
|
115
115
|
[NVIDIA_A100_80GB.value]: {
|
|
116
116
|
'1': [125],
|
|
@@ -33,7 +33,7 @@ const GuaranteedPartItem = {
|
|
|
33
33
|
export const guaranteedPartToVCpuMap = {
|
|
34
34
|
[GuaranteedPartItem[10]]: [1, 2, 4, 8],
|
|
35
35
|
[GuaranteedPartItem[30]]: [1, 2, 4, 8, 16, 24, 32],
|
|
36
|
-
[GuaranteedPartItem[100]]: [1, 2, 4, 8, 16, 24, 32
|
|
36
|
+
[GuaranteedPartItem[100]]: [1, 2, 4, 8, 16, 24, 32],
|
|
37
37
|
};
|
|
38
38
|
export const guaranteedPartVCpuToRamMap = {
|
|
39
39
|
[GuaranteedPartItem[10]]: {
|
|
@@ -105,9 +105,9 @@ const CPU_BY_MODEL_AND_GPU = {
|
|
|
105
105
|
};
|
|
106
106
|
const RAN_BY_MODEL_AND_GPU = {
|
|
107
107
|
[NVIDIA_A100_40GB.value]: {
|
|
108
|
-
'1': [
|
|
109
|
-
'2': [
|
|
110
|
-
'4': [
|
|
108
|
+
'1': [220],
|
|
109
|
+
'2': [440],
|
|
110
|
+
'4': [880],
|
|
111
111
|
},
|
|
112
112
|
[NVIDIA_A100_80GB.value]: {
|
|
113
113
|
'1': [125],
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloud-ru/uikit-product-calculator",
|
|
3
3
|
"title": "Calculator",
|
|
4
|
-
"version": "1.9.
|
|
4
|
+
"version": "1.9.5",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"*.css",
|
|
7
7
|
"*.woff",
|
|
@@ -71,5 +71,5 @@
|
|
|
71
71
|
"devDependencies": {
|
|
72
72
|
"@types/lodash": "4.17.13"
|
|
73
73
|
},
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "8720b9b1fe90fe9474e4ef5fe1015fe957938f09"
|
|
75
75
|
}
|
|
@@ -35,7 +35,7 @@ const GuaranteedPartItem = {
|
|
|
35
35
|
export const guaranteedPartToVCpuMap = {
|
|
36
36
|
[GuaranteedPartItem[10]]: [1, 2, 4, 8],
|
|
37
37
|
[GuaranteedPartItem[30]]: [1, 2, 4, 8, 16, 24, 32],
|
|
38
|
-
[GuaranteedPartItem[100]]: [1, 2, 4, 8, 16, 24, 32
|
|
38
|
+
[GuaranteedPartItem[100]]: [1, 2, 4, 8, 16, 24, 32],
|
|
39
39
|
};
|
|
40
40
|
|
|
41
41
|
export const guaranteedPartVCpuToRamMap: Record<string, Record<string, number[]>> = {
|
|
@@ -115,9 +115,9 @@ const CPU_BY_MODEL_AND_GPU: { [model: string]: { [gpu: string]: number[] } } = {
|
|
|
115
115
|
|
|
116
116
|
const RAN_BY_MODEL_AND_GPU: { [model: string]: { [gpu: string]: number[] } } = {
|
|
117
117
|
[NVIDIA_A100_40GB.value]: {
|
|
118
|
-
'1': [
|
|
119
|
-
'2': [
|
|
120
|
-
'4': [
|
|
118
|
+
'1': [220],
|
|
119
|
+
'2': [440],
|
|
120
|
+
'4': [880],
|
|
121
121
|
},
|
|
122
122
|
[NVIDIA_A100_80GB.value]: {
|
|
123
123
|
'1': [125],
|