@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 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@1113* | `() => StringIterator<string>` | - | 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, 64],
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': [240],
112
- '2': [480],
113
- '4': [960],
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, 64],
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': [240],
109
- '2': [480],
110
- '4': [960],
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.3",
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": "447f780b5e9b4f1f4c57fdc2eef2a96858754c75"
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, 64],
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': [240],
119
- '2': [480],
120
- '4': [960],
118
+ '1': [220],
119
+ '2': [440],
120
+ '4': [880],
121
121
  },
122
122
  [NVIDIA_A100_80GB.value]: {
123
123
  '1': [125],