@cloud-ru/uikit-product-calculator 0.33.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 +1508 -0
- package/LICENSE +201 -0
- package/README.md +85 -0
- package/package.json +75 -0
- package/src/components/Calculator/Calculator.tsx +79 -0
- package/src/components/Calculator/index.ts +1 -0
- package/src/components/CalculatorContent/CalculatorContent.tsx +38 -0
- package/src/components/CalculatorContent/index.ts +1 -0
- package/src/components/CalculatorContent/styles.module.scss +79 -0
- package/src/components/Catalog/Catalog.tsx +225 -0
- package/src/components/Catalog/components/PrivateCardHeader.tsx +63 -0
- package/src/components/Catalog/components/index.ts +1 -0
- package/src/components/Catalog/components/styles.module.scss +35 -0
- package/src/components/Catalog/index.ts +1 -0
- package/src/components/Catalog/styles.module.scss +104 -0
- package/src/components/Controls/AlertControl/AlertControl.tsx +44 -0
- package/src/components/Controls/AlertControl/index.ts +1 -0
- package/src/components/Controls/ArrayControl/ArrayControl.tsx +105 -0
- package/src/components/Controls/ArrayControl/index.ts +1 -0
- package/src/components/Controls/ArrayControl/styles.module.scss +33 -0
- package/src/components/Controls/CarouselControl/CarouselControl.tsx +173 -0
- package/src/components/Controls/CarouselControl/index.ts +1 -0
- package/src/components/Controls/CarouselControl/styles.module.scss +32 -0
- package/src/components/Controls/Control/Control.tsx +205 -0
- package/src/components/Controls/Control/index.ts +1 -0
- package/src/components/Controls/ObjectControl/ObjectControl.tsx +150 -0
- package/src/components/Controls/ObjectControl/index.ts +1 -0
- package/src/components/Controls/ObjectControl/styles.module.scss +18 -0
- package/src/components/Controls/ObjectDecorator/ObjectDecorator.tsx +23 -0
- package/src/components/Controls/ObjectDecorator/index.ts +1 -0
- package/src/components/Controls/ObjectDecorator/styles.module.scss +15 -0
- package/src/components/Controls/SegmentedControl/SegmentedControl.tsx +79 -0
- package/src/components/Controls/SegmentedControl/SegmentedControlCard.tsx +38 -0
- package/src/components/Controls/SegmentedControl/index.ts +1 -0
- package/src/components/Controls/SegmentedControl/styles.module.scss +8 -0
- package/src/components/Controls/SelectControl/SelectControl.tsx +172 -0
- package/src/components/Controls/SelectControl/index.ts +1 -0
- package/src/components/Controls/SelectControl/styles.module.scss +5 -0
- package/src/components/Controls/SliderControl/SliderControl.tsx +92 -0
- package/src/components/Controls/SliderControl/index.ts +1 -0
- package/src/components/Controls/StepperControl/StepperControl.tsx +160 -0
- package/src/components/Controls/StepperControl/index.ts +1 -0
- package/src/components/Controls/StepperControl/styles.module.scss +16 -0
- package/src/components/Controls/TableControl/TableControl.tsx +162 -0
- package/src/components/Controls/TableControl/helperComponents/StepperWithAllowedValues.tsx +50 -0
- package/src/components/Controls/TableControl/helperComponents/index.ts +1 -0
- package/src/components/Controls/TableControl/helperComponents/styles.module.scss +53 -0
- package/src/components/Controls/TableControl/index.ts +1 -0
- package/src/components/Controls/TableControl/styles.module.scss +104 -0
- package/src/components/Controls/ToggleCard/ToggleCard.tsx +46 -0
- package/src/components/Controls/ToggleCard/index.ts +1 -0
- package/src/components/Controls/ToggleCard/styles.module.scss +11 -0
- package/src/components/Controls/ToggleCardsControl/ToggleCardsControl.tsx +93 -0
- package/src/components/Controls/ToggleCardsControl/index.ts +1 -0
- package/src/components/Controls/ToggleCardsControl/styles.module.scss +40 -0
- package/src/components/Controls/ToggleControl/ToggleControl.tsx +59 -0
- package/src/components/Controls/ToggleControl/components/SwitchRow.tsx +98 -0
- package/src/components/Controls/ToggleControl/components/index.ts +1 -0
- package/src/components/Controls/ToggleControl/components/styles.module.scss +110 -0
- package/src/components/Controls/ToggleControl/index.ts +1 -0
- package/src/components/Controls/ToggleObjectControl/ToggleObjectControl.tsx +111 -0
- package/src/components/Controls/ToggleObjectControl/index.ts +1 -0
- package/src/components/Controls/ToggleObjectControl/styles.module.scss +13 -0
- package/src/components/Controls/constants.ts +16 -0
- package/src/components/Controls/index.tsx +26 -0
- package/src/components/Controls/types.ts +181 -0
- package/src/components/Controls/utils.ts +49 -0
- package/src/components/Disclaimer/Disclaimer.tsx +33 -0
- package/src/components/Disclaimer/index.ts +1 -0
- package/src/components/Disclaimer/styles.module.scss +14 -0
- package/src/components/HeaderContainer/index.tsx +32 -0
- package/src/components/HeaderContainer/styles.module.scss +24 -0
- package/src/components/PriceSummary/PriceSummary.tsx +158 -0
- package/src/components/PriceSummary/components/PricePeriodSelect/PricePeriodSelect.tsx +81 -0
- package/src/components/PriceSummary/components/PricePeriodSelect/index.ts +1 -0
- package/src/components/PriceSummary/components/ProductCard/ProductCard.tsx +85 -0
- package/src/components/PriceSummary/components/ProductCard/index.ts +1 -0
- package/src/components/PriceSummary/components/ProductCard/styles.module.scss +7 -0
- package/src/components/PriceSummary/components/ProductListActions/ProductListActions.tsx +118 -0
- package/src/components/PriceSummary/components/ProductListActions/index.ts +1 -0
- package/src/components/PriceSummary/components/ProductListActions/styles.module.scss +38 -0
- package/src/components/PriceSummary/components/index.ts +3 -0
- package/src/components/PriceSummary/hooks.ts +36 -0
- package/src/components/PriceSummary/index.ts +1 -0
- package/src/components/PriceSummary/styles.module.scss +110 -0
- package/src/components/PriceSummary/utils/getTotalPrice.ts +19 -0
- package/src/components/PriceSummary/utils/index.ts +2 -0
- package/src/components/PriceSummary/utils/transformToProductCardData.ts +36 -0
- package/src/components/ProductHeadline/ProductPageHeadline.tsx +134 -0
- package/src/components/ProductHeadline/components/PriceCount.tsx +93 -0
- package/src/components/ProductHeadline/components/index.ts +1 -0
- package/src/components/ProductHeadline/components/styles.module.scss +52 -0
- package/src/components/ProductHeadline/index.ts +1 -0
- package/src/components/ProductHeadline/styles.module.scss +32 -0
- package/src/components/ProductPage/ProductPage.tsx +105 -0
- package/src/components/ProductPage/index.ts +1 -0
- package/src/components/ProductPage/styles.module.scss +13 -0
- package/src/components/Welcome/Welcome.tsx +138 -0
- package/src/components/Welcome/index.ts +1 -0
- package/src/components/Welcome/styles.module.scss +155 -0
- package/src/components/index.ts +3 -0
- package/src/config/config.tsx +27 -0
- package/src/config/index.ts +2 -0
- package/src/config/platforms/advanced/catalog.ts +82 -0
- package/src/config/platforms/advanced/constants.ts +23 -0
- package/src/config/platforms/advanced/index.ts +5 -0
- package/src/config/platforms/advanced/platform.tsx +13 -0
- package/src/config/platforms/advanced/product-config/AdvancedCloudBackup.ts +76 -0
- package/src/config/platforms/advanced/product-config/AdvancedCloudContainerEngine.tsx +260 -0
- package/src/config/platforms/advanced/product-config/AdvancedCloudServer.tsx +526 -0
- package/src/config/platforms/advanced/product-config/AdvancedDataAsYouUse.ts +159 -0
- package/src/config/platforms/advanced/product-config/AdvancedDataLakeInsight.ts +134 -0
- package/src/config/platforms/advanced/product-config/AdvancedDataWarehouseService.ts +94 -0
- package/src/config/platforms/advanced/product-config/AdvancedDcsMemcached.ts +69 -0
- package/src/config/platforms/advanced/product-config/AdvancedDcsRedis.ts +220 -0
- package/src/config/platforms/advanced/product-config/AdvancedDmsKafka.tsx +186 -0
- package/src/config/platforms/advanced/product-config/AdvancedDmsRabbitMq.ts +202 -0
- package/src/config/platforms/advanced/product-config/AdvancedDocumentDatabase.tsx +323 -0
- package/src/config/platforms/advanced/product-config/AdvancedElasticLoadBalance.tsx +252 -0
- package/src/config/platforms/advanced/product-config/AdvancedElasticSearch.ts +365 -0
- package/src/config/platforms/advanced/product-config/AdvancedFunctionGraph.tsx +65 -0
- package/src/config/platforms/advanced/product-config/AdvancedMapReduce.tsx +394 -0
- package/src/config/platforms/advanced/product-config/AdvancedMySqlDataBase.ts +417 -0
- package/src/config/platforms/advanced/product-config/AdvancedNetwork.ts +146 -0
- package/src/config/platforms/advanced/product-config/AdvancedObjectStorage.ts +232 -0
- package/src/config/platforms/advanced/product-config/AdvancedPostgreSqlDatabase.ts +402 -0
- package/src/config/platforms/advanced/product-config/AdvancedScalableFile.tsx +161 -0
- package/src/config/platforms/advanced/product-config/AdvancedSqlDatabase.ts +380 -0
- package/src/config/platforms/advanced/product-config/index.ts +21 -0
- package/src/config/platforms/advanced/products.ts +267 -0
- package/src/config/platforms/evolution/catalog.tsx +107 -0
- package/src/config/platforms/evolution/constants.ts +80 -0
- package/src/config/platforms/evolution/index.ts +5 -0
- package/src/config/platforms/evolution/platform.tsx +13 -0
- package/src/config/platforms/evolution/product-config/EvolutionArenadataDb.ts +151 -0
- package/src/config/platforms/evolution/product-config/EvolutionArtifactRegistry.ts +57 -0
- package/src/config/platforms/evolution/product-config/EvolutionBareMetal.tsx +172 -0
- package/src/config/platforms/evolution/product-config/EvolutionCloudServer.tsx +407 -0
- package/src/config/platforms/evolution/product-config/EvolutionCloudServerFreeTier.tsx +185 -0
- package/src/config/platforms/evolution/product-config/EvolutionCloudServerGpu.tsx +301 -0
- package/src/config/platforms/evolution/product-config/EvolutionContainerApps.ts +84 -0
- package/src/config/platforms/evolution/product-config/EvolutionContainerAppsFreeTier.ts +29 -0
- package/src/config/platforms/evolution/product-config/EvolutionKubernetes.ts +388 -0
- package/src/config/platforms/evolution/product-config/EvolutionManagedMetastore.ts +38 -0
- package/src/config/platforms/evolution/product-config/EvolutionManagedRedis.ts +161 -0
- package/src/config/platforms/evolution/product-config/EvolutionManagedSpark.ts +360 -0
- package/src/config/platforms/evolution/product-config/EvolutionManagedTrino.ts +53 -0
- package/src/config/platforms/evolution/product-config/EvolutionMlInference.tsx +703 -0
- package/src/config/platforms/evolution/product-config/EvolutionPostgreSql.ts +217 -0
- package/src/config/platforms/evolution/product-config/EvolutionPublicIp.ts +39 -0
- package/src/config/platforms/evolution/product-config/EvolutionSnatGateway.ts +22 -0
- package/src/config/platforms/evolution/product-config/EvolutionStorageS3.ts +223 -0
- package/src/config/platforms/evolution/product-config/EvolutionStorageS3FreeTier.ts +97 -0
- package/src/config/platforms/evolution/product-config/index.ts +17 -0
- package/src/config/platforms/evolution/products.ts +260 -0
- package/src/config/platforms/index.ts +3 -0
- package/src/config/platforms/vmware/catalog.ts +19 -0
- package/src/config/platforms/vmware/constants.ts +6 -0
- package/src/config/platforms/vmware/index.ts +5 -0
- package/src/config/platforms/vmware/platform.tsx +13 -0
- package/src/config/platforms/vmware/product-config/VmWareCloudBackup.ts +56 -0
- package/src/config/platforms/vmware/product-config/VmWareVirtualDataCenter.ts +309 -0
- package/src/config/platforms/vmware/product-config/VmWareVirtualMachinesBackup.ts +58 -0
- package/src/config/platforms/vmware/product-config/VmWareVirtualWorkspaces.tsx +210 -0
- package/src/config/platforms/vmware/product-config/index.ts +4 -0
- package/src/config/platforms/vmware/products.ts +63 -0
- package/src/config/styles.module.scss +9 -0
- package/src/config/utils/disk.ts +94 -0
- package/src/config/utils/diskPostgreSqlMySQL.ts +94 -0
- package/src/config/utils/eip.ts +104 -0
- package/src/config/utils/index.ts +52 -0
- package/src/config/utils/obs.ts +100 -0
- package/src/constants.ts +56 -0
- package/src/contexts/CalculatorContext.tsx +193 -0
- package/src/contexts/ProductContext.ts +25 -0
- package/src/contexts/index.ts +2 -0
- package/src/hooks/index.ts +6 -0
- package/src/hooks/useAdaptive.ts +20 -0
- package/src/hooks/useCatalogCardClick.ts +37 -0
- package/src/hooks/useProductClick.ts +14 -0
- package/src/hooks/useProductDelete.ts +46 -0
- package/src/index.ts +6 -0
- package/src/services/constants.ts +5 -0
- package/src/services/getFetcherFn.ts +57 -0
- package/src/services/getInitPrice.ts +64 -0
- package/src/services/getOnDownloadFileClick.ts +37 -0
- package/src/services/getOnShareClick.ts +56 -0
- package/src/services/index.ts +4 -0
- package/src/types/CalculatorType.ts +16 -0
- package/src/types/CatalogConfig.ts +13 -0
- package/src/types/Category.ts +14 -0
- package/src/types/FetcherFn.ts +26 -0
- package/src/types/FormValues.ts +4 -0
- package/src/types/Platform.ts +24 -0
- package/src/types/Price.ts +18 -0
- package/src/types/Product.ts +39 -0
- package/src/types/ProductState.ts +11 -0
- package/src/types/State.ts +7 -0
- package/src/types/index.ts +10 -0
- package/src/utils/filterNonEmptyArrays.ts +13 -0
- package/src/utils/formatNumber.ts +5 -0
- package/src/utils/getPrice.ts +38 -0
- package/src/utils/index.ts +5 -0
- package/src/utils/parseKeyToDataTest.ts +14 -0
- package/src/utils/value.ts +11 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,1508 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
## 0.33.3 (2025-11-12)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **PD-3377:** updated deps with public scopes ([5c0544a](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/5c0544acf7db65fb6fe1fbde10ac21721d9046fb))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## 0.33.2 (2025-11-12)
|
|
18
|
+
|
|
19
|
+
### Only dependencies have been changed
|
|
20
|
+
* [@cloud-ru/uikit-product-icons@15.1.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
21
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.4.20](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
22
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.9.20](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
23
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.11.23](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
24
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.9.17](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
## 0.33.1 (2025-11-07)
|
|
31
|
+
|
|
32
|
+
### Only dependencies have been changed
|
|
33
|
+
* [@cloud-ru/uikit-product-icons@15.0.5](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
34
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.4.19](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
35
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.9.19](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
36
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.11.22](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
37
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.9.16](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
38
|
+
* [@cloud-ru/uikit-product-utils@6.2.2](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/utils/CHANGELOG.md)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
# 0.33.0 (2025-11-06)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
### Features
|
|
48
|
+
|
|
49
|
+
* **SITE-10152:** update calculator EvolutionCloudServer ([02950fe](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/02950fe7a29317203a4e3240f8897fec5fc03969))
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
# 0.32.0 (2025-11-06)
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
### Features
|
|
59
|
+
|
|
60
|
+
* **SITE-10168:** update href clear .html calculator ([2320288](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/2320288e40de54899b7ec51c231b4d71d50de745))
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
# 0.31.0 (2025-10-31)
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
### Features
|
|
70
|
+
|
|
71
|
+
* **SITE-10045:** update calculator EvolutionCloudServer and VmWareVirtualDataCenter ([e0ce8a4](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/e0ce8a4bd4b8a8a20596100d7033611f45a1c4c1))
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
## 0.30.1 (2025-10-20)
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
### Bug Fixes
|
|
81
|
+
|
|
82
|
+
* **SITE-10071:** fix analytics calculator ([f6ab725](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/f6ab7258da24afd4303cb8198c2f9e5108024ae3))
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
# 0.30.0 (2025-10-09)
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
### Features
|
|
92
|
+
|
|
93
|
+
* **SITE-9728:** update calculator analytic ([8162843](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/8162843ec50b05212d5a00d9a04745c49f26fd72))
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
# 0.29.0 (2025-10-06)
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
### Features
|
|
103
|
+
|
|
104
|
+
* **SITE-9784:** update calculators ([09d8ead](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/09d8ead56a7d21b61c7274c294cede585c95c409))
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
## 0.28.6 (2025-10-06)
|
|
111
|
+
|
|
112
|
+
### Only dependencies have been changed
|
|
113
|
+
* [@cloud-ru/uikit-product-icons@15.0.4](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
114
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.4.18](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
115
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.9.18](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
116
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.11.21](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
117
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.9.15](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
## 0.28.5 (2025-10-06)
|
|
124
|
+
|
|
125
|
+
### Only dependencies have been changed
|
|
126
|
+
* [@cloud-ru/uikit-product-icons@15.0.3](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
127
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.4.17](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
128
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.9.17](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
129
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.11.20](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
130
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.9.14](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
## 0.28.4 (2025-10-03)
|
|
137
|
+
|
|
138
|
+
### Only dependencies have been changed
|
|
139
|
+
* [@cloud-ru/uikit-product-icons@15.0.2](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
140
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.4.16](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
141
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.9.16](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
142
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.11.19](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
143
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.9.13](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
## 0.28.3 (2025-09-30)
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
### Bug Fixes
|
|
153
|
+
|
|
154
|
+
* **FF-6758:** typescript issues ([520f8f0](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/520f8f0c18ce3c5e74d6e05e6b7b72afa7a69771))
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
## 0.28.2 (2025-09-26)
|
|
161
|
+
|
|
162
|
+
### Only dependencies have been changed
|
|
163
|
+
* [@cloud-ru/uikit-product-icons@15.0.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
164
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.4.14](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
165
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.9.14](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
166
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.11.17](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
167
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.9.11](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
## 0.28.1 (2025-09-25)
|
|
174
|
+
|
|
175
|
+
### Only dependencies have been changed
|
|
176
|
+
* [@cloud-ru/uikit-product-icons@14.6.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
177
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.4.13](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
178
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.9.13](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
179
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.11.16](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
180
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.9.10](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
# 0.28.0 (2025-09-22)
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
### Features
|
|
190
|
+
|
|
191
|
+
* **SITE-9111:** update title calculator ([99edca2](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/99edca2e97a47a5442606d6ce8194c76be4c1480))
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
## 0.27.3 (2025-09-19)
|
|
198
|
+
|
|
199
|
+
### Only dependencies have been changed
|
|
200
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.4.12](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
## 0.27.2 (2025-09-18)
|
|
207
|
+
|
|
208
|
+
### Only dependencies have been changed
|
|
209
|
+
* [@cloud-ru/uikit-product-icons@14.5.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
210
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.4.11](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
211
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.9.12](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
212
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.11.15](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
213
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.9.9](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
## 0.27.1 (2025-09-17)
|
|
220
|
+
|
|
221
|
+
### Only dependencies have been changed
|
|
222
|
+
* [@cloud-ru/uikit-product-icons@14.4.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
223
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.4.10](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
224
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.9.11](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
225
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.11.14](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
226
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.9.8](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
227
|
+
* [@cloud-ru/uikit-product-utils@6.2.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/utils/CHANGELOG.md)
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
# 0.27.0 (2025-09-16)
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
### Features
|
|
237
|
+
|
|
238
|
+
* **DOCDEV-1330:** added erid right section props for BannerTertiary ([bd3ca8e](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/bd3ca8e7a3ee6a374e16d01abf75a05e7bced683))
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
# 0.26.0 (2025-09-12)
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
### Bug Fixes
|
|
248
|
+
|
|
249
|
+
* **SITE-9911:** fix calculator spark ([608844f](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/608844f99b7d0103166e0aab43c059c6c9095a42))
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
### Features
|
|
253
|
+
|
|
254
|
+
* **SITE-9757:** add new calculator ([9d640a2](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/9d640a2d2cfcf089d0b11d088b1a5af328667bde))
|
|
255
|
+
* **SITE-9757:** add new calculator ([0009025](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/0009025c70305fe90b4200777f05cd553109f38d))
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
## 0.25.14 (2025-09-11)
|
|
262
|
+
|
|
263
|
+
### Only dependencies have been changed
|
|
264
|
+
* [@cloud-ru/uikit-product-icons@14.3.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
265
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.4.9](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
266
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.9.10](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
267
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.11.13](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
268
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.9.7](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
## 0.25.13 (2025-09-05)
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
### Dependencies
|
|
278
|
+
|
|
279
|
+
* **FF-7117:** up snack field deps ([465eb49](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/465eb49b46a72ebb8a43d851f101cb7c0827e151))
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
## 0.25.12 (2025-09-02)
|
|
286
|
+
|
|
287
|
+
### Only dependencies have been changed
|
|
288
|
+
* [@cloud-ru/uikit-product-icons@14.3.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
289
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.4.8](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
290
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.9.9](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
291
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.11.11](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
292
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.9.6](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
## 0.25.11 (2025-09-01)
|
|
299
|
+
|
|
300
|
+
### Only dependencies have been changed
|
|
301
|
+
* [@cloud-ru/uikit-product-icons@14.2.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
302
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.4.7](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
303
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.9.8](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
304
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.11.10](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
305
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.9.5](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
## 0.25.10 (2025-08-29)
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
### Bug Fixes
|
|
315
|
+
|
|
316
|
+
* **SITE-9760:** update calculator Artifact Registry ([5e2a511](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/5e2a511c5195219d1bee28739c128e5de1cbad66))
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
## 0.25.9 (2025-08-27)
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
### Bug Fixes
|
|
326
|
+
|
|
327
|
+
* **SITE-9760:** update calculator ([947662a](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/947662ad87aad401fafa2dc10f98c18038d47c91))
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
## 0.25.8 (2025-08-21)
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
### Bug Fixes
|
|
337
|
+
|
|
338
|
+
* **SITE-9684:** update icons ([fff9d35](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/fff9d35b0eb758d4d1d7b869a53e5f71c3f9026a))
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
## 0.25.7 (2025-08-20)
|
|
345
|
+
|
|
346
|
+
### Only dependencies have been changed
|
|
347
|
+
* [@cloud-ru/uikit-product-icons@14.1.2](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
348
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.4.6](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
349
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.9.7](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
350
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.11.9](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
351
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.9.4](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
## 0.25.6 (2025-08-19)
|
|
358
|
+
|
|
359
|
+
### Only dependencies have been changed
|
|
360
|
+
* [@cloud-ru/uikit-product-icons@14.1.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
361
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.4.5](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
362
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.9.6](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
363
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.11.8](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
364
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.9.3](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
365
|
+
* [@cloud-ru/uikit-product-utils@6.1.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/utils/CHANGELOG.md)
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
## 0.25.5 (2025-08-15)
|
|
372
|
+
|
|
373
|
+
### Only dependencies have been changed
|
|
374
|
+
* [@cloud-ru/uikit-product-icons@14.1.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
375
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.4.4](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
376
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.9.5](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
377
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.11.7](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
378
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.9.2](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
## 0.25.4 (2025-08-14)
|
|
385
|
+
|
|
386
|
+
### Only dependencies have been changed
|
|
387
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.4.3](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
388
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.9.4](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
389
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.11.6](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
390
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.9.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
## 0.25.3 (2025-08-07)
|
|
397
|
+
|
|
398
|
+
### Only dependencies have been changed
|
|
399
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.9.3](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
400
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.11.5](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
401
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.9.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
## 0.25.2 (2025-08-04)
|
|
408
|
+
|
|
409
|
+
### Only dependencies have been changed
|
|
410
|
+
* [@cloud-ru/uikit-product-icons@14.0.2](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
411
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.4.2](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
412
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.9.2](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
413
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.11.4](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
414
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.8.7](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
415
|
+
* [@cloud-ru/uikit-product-utils@6.0.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/utils/CHANGELOG.md)
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
## 0.25.1 (2025-08-04)
|
|
422
|
+
|
|
423
|
+
### Only dependencies have been changed
|
|
424
|
+
* [@cloud-ru/uikit-product-icons@14.0.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
425
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.4.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
426
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.9.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
427
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.11.3](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
428
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.8.6](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
429
|
+
* [@cloud-ru/uikit-product-utils@6.0.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/utils/CHANGELOG.md)
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
# 0.25.0 (2025-08-01)
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
### Features
|
|
439
|
+
|
|
440
|
+
* **SITE-9691:** update vmWareVirtualMachinesBackup calculator ([285dac5](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/285dac552f9ecf6a92ad2b859c2e97a96235c010))
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
## 0.24.2 (2025-07-28)
|
|
447
|
+
|
|
448
|
+
### Only dependencies have been changed
|
|
449
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.4.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
450
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.9.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
451
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.11.2](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
## 0.24.1 (2025-07-25)
|
|
458
|
+
|
|
459
|
+
### Only dependencies have been changed
|
|
460
|
+
* [@cloud-ru/uikit-product-icons@14.0.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
461
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.46](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
462
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.8.5](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
463
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.11.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
464
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.8.5](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
# 0.24.0 (2025-07-24)
|
|
471
|
+
|
|
472
|
+
|
|
473
|
+
### Features
|
|
474
|
+
|
|
475
|
+
* **SITE-9532:** add new calculator redis ([e0b9dae](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/e0b9daed88474faa390a03c6509604138598f7da))
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
|
|
479
|
+
|
|
480
|
+
|
|
481
|
+
## 0.23.5 (2025-07-18)
|
|
482
|
+
|
|
483
|
+
### Only dependencies have been changed
|
|
484
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.10.7](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
485
|
+
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
## 0.23.4 (2025-07-17)
|
|
491
|
+
|
|
492
|
+
### Only dependencies have been changed
|
|
493
|
+
* [@cloud-ru/uikit-product-icons@13.0.6](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
494
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.45](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
495
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.8.4](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
496
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.10.6](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
497
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.8.4](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
498
|
+
* [@cloud-ru/uikit-product-utils@5.0.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/utils/CHANGELOG.md)
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
|
|
504
|
+
## 0.23.3 (2025-07-17)
|
|
505
|
+
|
|
506
|
+
### Only dependencies have been changed
|
|
507
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.8.3](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
508
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.10.5](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
509
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.8.3](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
## 0.23.2 (2025-07-16)
|
|
516
|
+
|
|
517
|
+
### Only dependencies have been changed
|
|
518
|
+
* [@cloud-ru/uikit-product-icons@13.0.5](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
519
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.44](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
520
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.8.2](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
521
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.10.4](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
522
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.8.2](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
523
|
+
* [@cloud-ru/uikit-product-utils@5.0.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/utils/CHANGELOG.md)
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
|
|
527
|
+
|
|
528
|
+
|
|
529
|
+
## 0.23.1 (2025-07-15)
|
|
530
|
+
|
|
531
|
+
### Only dependencies have been changed
|
|
532
|
+
* [@cloud-ru/uikit-product-icons@13.0.4](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
533
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.43](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
534
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.8.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
535
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.10.3](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
536
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.8.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
537
|
+
|
|
538
|
+
|
|
539
|
+
|
|
540
|
+
|
|
541
|
+
|
|
542
|
+
# 0.23.0 (2025-07-10)
|
|
543
|
+
|
|
544
|
+
|
|
545
|
+
### Features
|
|
546
|
+
|
|
547
|
+
* **SITE-9523:** add new calculator metastore ([3428da0](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/3428da0ec6ae339d800bbf954568b5d45ee60ac4))
|
|
548
|
+
|
|
549
|
+
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
|
|
553
|
+
# 0.22.0 (2025-07-10)
|
|
554
|
+
|
|
555
|
+
|
|
556
|
+
### Features
|
|
557
|
+
|
|
558
|
+
* **SITE-9519:** add new calculator evo trino ([0f0e45c](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/0f0e45cbd0400208ffba7e8dba515452a0c43ce7))
|
|
559
|
+
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
## 0.21.17 (2025-07-08)
|
|
565
|
+
|
|
566
|
+
|
|
567
|
+
### Dependencies
|
|
568
|
+
|
|
569
|
+
* **FF-6881:** up carousel ([8b15ad2](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/8b15ad20732fa5ed739ed28eeeca6a088386d810))
|
|
570
|
+
|
|
571
|
+
|
|
572
|
+
|
|
573
|
+
|
|
574
|
+
|
|
575
|
+
## 0.21.16 (2025-07-07)
|
|
576
|
+
|
|
577
|
+
|
|
578
|
+
### Dependencies
|
|
579
|
+
|
|
580
|
+
* **PDS-2556:** update @snack-uikit/fields ([21e360e](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/21e360e7dc269fa59369bd21640d4ee4a46d8a6e))
|
|
581
|
+
|
|
582
|
+
|
|
583
|
+
|
|
584
|
+
|
|
585
|
+
|
|
586
|
+
## 0.21.15 (2025-07-01)
|
|
587
|
+
|
|
588
|
+
### Only dependencies have been changed
|
|
589
|
+
* [@cloud-ru/uikit-product-icons@13.0.3](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
590
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.42](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
591
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.7.9](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
592
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.10.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
593
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.48](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
594
|
+
|
|
595
|
+
|
|
596
|
+
|
|
597
|
+
|
|
598
|
+
|
|
599
|
+
## 0.21.14 (2025-06-30)
|
|
600
|
+
|
|
601
|
+
### Only dependencies have been changed
|
|
602
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.10.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
## 0.21.13 (2025-06-27)
|
|
609
|
+
|
|
610
|
+
### Only dependencies have been changed
|
|
611
|
+
* [@cloud-ru/uikit-product-icons@13.0.2](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
612
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.41](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
613
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.7.8](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
614
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.9.6](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
615
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.47](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
616
|
+
|
|
617
|
+
|
|
618
|
+
|
|
619
|
+
|
|
620
|
+
|
|
621
|
+
## 0.21.12 (2025-06-27)
|
|
622
|
+
|
|
623
|
+
### Only dependencies have been changed
|
|
624
|
+
* [@cloud-ru/uikit-product-icons@13.0.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
625
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.40](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
626
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.7.7](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
627
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.9.5](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
628
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.46](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
629
|
+
* [@cloud-ru/uikit-product-utils@4.0.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/utils/CHANGELOG.md)
|
|
630
|
+
|
|
631
|
+
|
|
632
|
+
|
|
633
|
+
|
|
634
|
+
|
|
635
|
+
## 0.21.11 (2025-06-24)
|
|
636
|
+
|
|
637
|
+
### Only dependencies have been changed
|
|
638
|
+
* [@cloud-ru/uikit-product-icons@13.0.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
639
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.39](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
640
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.7.6](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
641
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.9.4](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
642
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.45](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
643
|
+
|
|
644
|
+
|
|
645
|
+
|
|
646
|
+
|
|
647
|
+
|
|
648
|
+
## 0.21.10 (2025-06-20)
|
|
649
|
+
|
|
650
|
+
### Only dependencies have been changed
|
|
651
|
+
* [@cloud-ru/uikit-product-icons@12.1.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
652
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.38](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
653
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.7.5](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
654
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.9.3](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
655
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.44](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
656
|
+
|
|
657
|
+
|
|
658
|
+
|
|
659
|
+
|
|
660
|
+
|
|
661
|
+
## 0.21.9 (2025-06-20)
|
|
662
|
+
|
|
663
|
+
### Only dependencies have been changed
|
|
664
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.37](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
665
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.7.4](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
666
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.9.2](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
667
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.43](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
668
|
+
|
|
669
|
+
|
|
670
|
+
|
|
671
|
+
|
|
672
|
+
|
|
673
|
+
## 0.21.8 (2025-06-20)
|
|
674
|
+
|
|
675
|
+
### Only dependencies have been changed
|
|
676
|
+
* [@cloud-ru/uikit-product-icons@12.0.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
677
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.36](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
678
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.7.3](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
679
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.9.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
680
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.42](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
681
|
+
|
|
682
|
+
|
|
683
|
+
|
|
684
|
+
|
|
685
|
+
|
|
686
|
+
## 0.21.7 (2025-06-16)
|
|
687
|
+
|
|
688
|
+
### Only dependencies have been changed
|
|
689
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.9.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
690
|
+
|
|
691
|
+
|
|
692
|
+
|
|
693
|
+
|
|
694
|
+
|
|
695
|
+
## 0.21.6 (2025-06-09)
|
|
696
|
+
|
|
697
|
+
|
|
698
|
+
### Dependencies
|
|
699
|
+
|
|
700
|
+
* **PDS-2368:** up @snack-uikit/fields ([36e12c6](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/36e12c6e4af4810efea97171006c08cb2c4d1a7d))
|
|
701
|
+
|
|
702
|
+
|
|
703
|
+
|
|
704
|
+
|
|
705
|
+
|
|
706
|
+
## 0.21.5 (2025-06-09)
|
|
707
|
+
|
|
708
|
+
### Only dependencies have been changed
|
|
709
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.8.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
710
|
+
|
|
711
|
+
|
|
712
|
+
|
|
713
|
+
|
|
714
|
+
|
|
715
|
+
## 0.21.4 (2025-06-06)
|
|
716
|
+
|
|
717
|
+
### Only dependencies have been changed
|
|
718
|
+
* [@cloud-ru/uikit-product-icons@11.9.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
719
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.35](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
720
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.7.2](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
721
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.7.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
722
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.41](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
723
|
+
|
|
724
|
+
|
|
725
|
+
|
|
726
|
+
|
|
727
|
+
|
|
728
|
+
## 0.21.3 (2025-06-05)
|
|
729
|
+
|
|
730
|
+
### Only dependencies have been changed
|
|
731
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.7.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
732
|
+
|
|
733
|
+
|
|
734
|
+
|
|
735
|
+
|
|
736
|
+
|
|
737
|
+
## 0.21.2 (2025-05-28)
|
|
738
|
+
|
|
739
|
+
### Only dependencies have been changed
|
|
740
|
+
* [@cloud-ru/uikit-product-icons@11.8.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
741
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.34](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
742
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.7.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
743
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.6.44](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
744
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.40](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
745
|
+
|
|
746
|
+
|
|
747
|
+
|
|
748
|
+
|
|
749
|
+
|
|
750
|
+
## 0.21.1 (2025-05-27)
|
|
751
|
+
|
|
752
|
+
### Only dependencies have been changed
|
|
753
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.7.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
754
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.6.43](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
755
|
+
|
|
756
|
+
|
|
757
|
+
|
|
758
|
+
|
|
759
|
+
|
|
760
|
+
# 0.21.0 (2025-05-20)
|
|
761
|
+
|
|
762
|
+
|
|
763
|
+
### Features
|
|
764
|
+
|
|
765
|
+
* **FF-6484:** add custom headers to calculator getFetcherFn ([9c00800](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/9c00800bc85cdb16dd850d10aeb622c5ea131337))
|
|
766
|
+
|
|
767
|
+
|
|
768
|
+
|
|
769
|
+
|
|
770
|
+
|
|
771
|
+
## 0.20.5 (2025-05-16)
|
|
772
|
+
|
|
773
|
+
### Only dependencies have been changed
|
|
774
|
+
* [@cloud-ru/uikit-product-icons@11.7.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
775
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.33](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
776
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.6.41](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
777
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.6.42](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
778
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.39](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
779
|
+
|
|
780
|
+
|
|
781
|
+
|
|
782
|
+
|
|
783
|
+
|
|
784
|
+
## 0.20.4 (2025-05-14)
|
|
785
|
+
|
|
786
|
+
### Only dependencies have been changed
|
|
787
|
+
* [@cloud-ru/uikit-product-icons@11.6.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
788
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.32](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
789
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.6.40](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
790
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.6.41](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
791
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.38](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
792
|
+
|
|
793
|
+
|
|
794
|
+
|
|
795
|
+
|
|
796
|
+
|
|
797
|
+
## 0.20.3 (2025-05-05)
|
|
798
|
+
|
|
799
|
+
|
|
800
|
+
### Bug Fixes
|
|
801
|
+
|
|
802
|
+
* **ONB-3904:** postgres config fix ([9d18f10](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/9d18f10586fa4d580ab231b8f96543eaf5e101b8))
|
|
803
|
+
|
|
804
|
+
|
|
805
|
+
|
|
806
|
+
|
|
807
|
+
|
|
808
|
+
## 0.20.2 (2025-04-30)
|
|
809
|
+
|
|
810
|
+
### Only dependencies have been changed
|
|
811
|
+
* [@cloud-ru/uikit-product-icons@11.5.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
812
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.31](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
813
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.6.39](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
814
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.6.40](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
815
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.37](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
816
|
+
|
|
817
|
+
|
|
818
|
+
|
|
819
|
+
|
|
820
|
+
|
|
821
|
+
## 0.20.1 (2025-04-24)
|
|
822
|
+
|
|
823
|
+
### Only dependencies have been changed
|
|
824
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.6.38](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
825
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.6.39](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
826
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.36](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
827
|
+
|
|
828
|
+
|
|
829
|
+
|
|
830
|
+
|
|
831
|
+
|
|
832
|
+
# 0.20.0 (2025-04-23)
|
|
833
|
+
|
|
834
|
+
|
|
835
|
+
### Features
|
|
836
|
+
|
|
837
|
+
* **ONB-3854:** calculator welcome screen small desktop media queries ([ac6b85d](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/ac6b85ddded104965e88c1250cd814b3811d0992))
|
|
838
|
+
|
|
839
|
+
|
|
840
|
+
|
|
841
|
+
|
|
842
|
+
|
|
843
|
+
# 0.19.0 (2025-04-21)
|
|
844
|
+
|
|
845
|
+
|
|
846
|
+
### Features
|
|
847
|
+
|
|
848
|
+
* **ONB-3694:** articfact registry calc ([a9a4cc9](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/a9a4cc97e8b8716e41e047e18436ca88157bfc4f))
|
|
849
|
+
* **ONB-3760:** new calculators snat and publicIp ([4b1b393](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/4b1b393f177a8a911f01dc54446adbf90d12a99f))
|
|
850
|
+
|
|
851
|
+
|
|
852
|
+
|
|
853
|
+
|
|
854
|
+
|
|
855
|
+
# 0.18.0 (2025-04-15)
|
|
856
|
+
|
|
857
|
+
|
|
858
|
+
### Features
|
|
859
|
+
|
|
860
|
+
* **ONB-3282:** add network disk to evo bare metal ([1e584f8](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/1e584f85dcea879cf6b45d1575e9235f958b5291))
|
|
861
|
+
|
|
862
|
+
|
|
863
|
+
|
|
864
|
+
|
|
865
|
+
|
|
866
|
+
## 0.17.2 (2025-04-15)
|
|
867
|
+
|
|
868
|
+
### Only dependencies have been changed
|
|
869
|
+
* [@cloud-ru/uikit-product-icons@11.4.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
870
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.30](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
871
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.6.37](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
872
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.6.38](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
873
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.35](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
874
|
+
|
|
875
|
+
|
|
876
|
+
|
|
877
|
+
|
|
878
|
+
|
|
879
|
+
## 0.17.1 (2025-04-09)
|
|
880
|
+
|
|
881
|
+
### Only dependencies have been changed
|
|
882
|
+
* [@cloud-ru/uikit-product-icons@11.3.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
883
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.29](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
884
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.6.36](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
885
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.6.37](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
886
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.34](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
887
|
+
|
|
888
|
+
|
|
889
|
+
|
|
890
|
+
|
|
891
|
+
|
|
892
|
+
# 0.17.0 (2025-04-09)
|
|
893
|
+
|
|
894
|
+
|
|
895
|
+
### Features
|
|
896
|
+
|
|
897
|
+
* **ONB-3764:** calc ml inference ([dac517b](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/dac517b88696acad3ccc70326bceb1126c44495b))
|
|
898
|
+
|
|
899
|
+
|
|
900
|
+
|
|
901
|
+
|
|
902
|
+
|
|
903
|
+
## 0.16.2 (2025-04-04)
|
|
904
|
+
|
|
905
|
+
|
|
906
|
+
### Bug Fixes
|
|
907
|
+
|
|
908
|
+
* **ONB-3656:** arenadata link fix ([4e5ebde](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/4e5ebde96c05c7e3229bb9aac0d09cda588898a9))
|
|
909
|
+
|
|
910
|
+
|
|
911
|
+
|
|
912
|
+
|
|
913
|
+
|
|
914
|
+
## 0.16.1 (2025-04-04)
|
|
915
|
+
|
|
916
|
+
|
|
917
|
+
### Bug Fixes
|
|
918
|
+
|
|
919
|
+
* **ONB-3564:** change button color ([9fc9941](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/9fc9941f276c6b8a8c46b46181a144d9ace7dee1))
|
|
920
|
+
|
|
921
|
+
|
|
922
|
+
|
|
923
|
+
|
|
924
|
+
|
|
925
|
+
# 0.16.0 (2025-04-03)
|
|
926
|
+
|
|
927
|
+
|
|
928
|
+
### Features
|
|
929
|
+
|
|
930
|
+
* **ONB-3742:** new product vdi ([20c6f79](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/20c6f79e58c0bd1f6b06045f1697bebb644f370f))
|
|
931
|
+
|
|
932
|
+
|
|
933
|
+
|
|
934
|
+
|
|
935
|
+
|
|
936
|
+
# 0.15.0 (2025-04-03)
|
|
937
|
+
|
|
938
|
+
|
|
939
|
+
### Features
|
|
940
|
+
|
|
941
|
+
* **ONB-3656:** new product arenadata evl ([d00afeb](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/d00afebcb3591a0ef46b817b34f3643756656e21))
|
|
942
|
+
|
|
943
|
+
|
|
944
|
+
|
|
945
|
+
|
|
946
|
+
|
|
947
|
+
# 0.14.0 (2025-04-02)
|
|
948
|
+
|
|
949
|
+
|
|
950
|
+
### Features
|
|
951
|
+
|
|
952
|
+
* **ONB-3495:** add ability to connect evo cloud server gpu to console ([4ef98d7](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/4ef98d77c17ae28ad40a7a30726ec4f2332b697e))
|
|
953
|
+
|
|
954
|
+
|
|
955
|
+
|
|
956
|
+
|
|
957
|
+
|
|
958
|
+
# 0.13.0 (2025-04-02)
|
|
959
|
+
|
|
960
|
+
|
|
961
|
+
### Features
|
|
962
|
+
|
|
963
|
+
* **ONB-2882:** add ability to connect evo container apps to console ([5c7d87b](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/5c7d87bd666ec762acf4eba25b2477c7d406d7ee))
|
|
964
|
+
|
|
965
|
+
|
|
966
|
+
|
|
967
|
+
|
|
968
|
+
|
|
969
|
+
# 0.12.0 (2025-04-02)
|
|
970
|
+
|
|
971
|
+
|
|
972
|
+
### Features
|
|
973
|
+
|
|
974
|
+
* **ONB-3307:** add truncated title of product ([68f0476](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/68f0476a41309ab2e9343ad3ff6314d380be7bdf))
|
|
975
|
+
|
|
976
|
+
|
|
977
|
+
|
|
978
|
+
|
|
979
|
+
|
|
980
|
+
## 0.11.1 (2025-04-01)
|
|
981
|
+
|
|
982
|
+
### Only dependencies have been changed
|
|
983
|
+
* [@cloud-ru/uikit-product-icons@11.2.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
984
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.28](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
985
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.6.35](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
986
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.6.36](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
987
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.33](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
988
|
+
|
|
989
|
+
|
|
990
|
+
|
|
991
|
+
|
|
992
|
+
|
|
993
|
+
# 0.11.0 (2025-04-01)
|
|
994
|
+
|
|
995
|
+
|
|
996
|
+
### Features
|
|
997
|
+
|
|
998
|
+
* **ONB-0000:** fix types ([afc489c](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/afc489c0e8e8765d64115a1ec43880df2dffb70d))
|
|
999
|
+
|
|
1000
|
+
|
|
1001
|
+
|
|
1002
|
+
|
|
1003
|
+
|
|
1004
|
+
## 0.10.5 (2025-03-27)
|
|
1005
|
+
|
|
1006
|
+
### Only dependencies have been changed
|
|
1007
|
+
* [@cloud-ru/uikit-product-icons@11.1.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
1008
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.27](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
1009
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.6.34](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
1010
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.6.35](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
1011
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.32](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
1012
|
+
|
|
1013
|
+
|
|
1014
|
+
|
|
1015
|
+
|
|
1016
|
+
|
|
1017
|
+
## 0.10.4 (2025-03-21)
|
|
1018
|
+
|
|
1019
|
+
### Only dependencies have been changed
|
|
1020
|
+
* [@cloud-ru/uikit-product-icons@11.0.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
1021
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.26](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
1022
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.6.33](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
1023
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.6.34](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
1024
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.31](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
1025
|
+
|
|
1026
|
+
|
|
1027
|
+
|
|
1028
|
+
|
|
1029
|
+
|
|
1030
|
+
## 0.10.3 (2025-03-20)
|
|
1031
|
+
|
|
1032
|
+
### Only dependencies have been changed
|
|
1033
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.6.33](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
1034
|
+
|
|
1035
|
+
|
|
1036
|
+
|
|
1037
|
+
|
|
1038
|
+
|
|
1039
|
+
## 0.10.2 (2025-03-20)
|
|
1040
|
+
|
|
1041
|
+
### Only dependencies have been changed
|
|
1042
|
+
* [@cloud-ru/uikit-product-icons@11.0.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
1043
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.25](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
1044
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.6.32](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
1045
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.6.32](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
1046
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.30](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
1047
|
+
|
|
1048
|
+
|
|
1049
|
+
|
|
1050
|
+
|
|
1051
|
+
|
|
1052
|
+
## 0.10.1 (2025-03-18)
|
|
1053
|
+
|
|
1054
|
+
### Only dependencies have been changed
|
|
1055
|
+
* [@cloud-ru/uikit-product-icons@10.7.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
1056
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.24](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
1057
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.6.31](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
1058
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.6.31](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
1059
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.29](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
1060
|
+
|
|
1061
|
+
|
|
1062
|
+
|
|
1063
|
+
|
|
1064
|
+
|
|
1065
|
+
# 0.10.0 (2025-03-17)
|
|
1066
|
+
|
|
1067
|
+
|
|
1068
|
+
### Features
|
|
1069
|
+
|
|
1070
|
+
* **ONB-3437:** fix price summary block ([e4474b7](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/e4474b7696c99c17d221795c00e4fa87577360ec))
|
|
1071
|
+
|
|
1072
|
+
|
|
1073
|
+
|
|
1074
|
+
|
|
1075
|
+
|
|
1076
|
+
## 0.9.2 (2025-03-14)
|
|
1077
|
+
|
|
1078
|
+
### Only dependencies have been changed
|
|
1079
|
+
* [@cloud-ru/uikit-product-icons@10.6.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
1080
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.23](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
1081
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.6.30](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
1082
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.6.30](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
1083
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.28](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
1084
|
+
|
|
1085
|
+
|
|
1086
|
+
|
|
1087
|
+
|
|
1088
|
+
|
|
1089
|
+
## 0.9.1 (2025-03-14)
|
|
1090
|
+
|
|
1091
|
+
|
|
1092
|
+
### Bug Fixes
|
|
1093
|
+
|
|
1094
|
+
* **ONB-3437:** pass analytic props to welcome page ([830547e](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/830547e553c283b6492fc6138db145c5e6be5dd3))
|
|
1095
|
+
|
|
1096
|
+
|
|
1097
|
+
|
|
1098
|
+
|
|
1099
|
+
|
|
1100
|
+
# 0.9.0 (2025-03-13)
|
|
1101
|
+
|
|
1102
|
+
|
|
1103
|
+
### Features
|
|
1104
|
+
|
|
1105
|
+
* **ONB-3437:** new welcome page calculator ([2fd0e6c](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/2fd0e6c36c5dfb7955b5a87b8fa0cfd95526a25d))
|
|
1106
|
+
|
|
1107
|
+
|
|
1108
|
+
|
|
1109
|
+
|
|
1110
|
+
|
|
1111
|
+
## 0.8.4 (2025-03-13)
|
|
1112
|
+
|
|
1113
|
+
### Only dependencies have been changed
|
|
1114
|
+
* [@cloud-ru/uikit-product-icons@10.5.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
1115
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.22](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
1116
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.6.29](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
1117
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.6.29](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
1118
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.27](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
1119
|
+
|
|
1120
|
+
|
|
1121
|
+
|
|
1122
|
+
|
|
1123
|
+
|
|
1124
|
+
## 0.8.3 (2025-03-13)
|
|
1125
|
+
|
|
1126
|
+
|
|
1127
|
+
### Bug Fixes
|
|
1128
|
+
|
|
1129
|
+
* **ONB-3458:** delete unused tabs ([331fb13](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/331fb13e439d211dbec731b45d25c0a54340e06e))
|
|
1130
|
+
|
|
1131
|
+
|
|
1132
|
+
|
|
1133
|
+
|
|
1134
|
+
|
|
1135
|
+
## 0.8.2 (2025-03-05)
|
|
1136
|
+
|
|
1137
|
+
### Only dependencies have been changed
|
|
1138
|
+
* [@cloud-ru/uikit-product-icons@10.5.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
1139
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.21](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
1140
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.6.28](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
1141
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.6.28](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
1142
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.26](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
1143
|
+
|
|
1144
|
+
|
|
1145
|
+
|
|
1146
|
+
|
|
1147
|
+
|
|
1148
|
+
## 0.8.1 (2025-03-04)
|
|
1149
|
+
|
|
1150
|
+
### Only dependencies have been changed
|
|
1151
|
+
* [@cloud-ru/uikit-product-icons@10.4.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
1152
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.20](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
1153
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.6.27](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
1154
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.6.27](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
1155
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.25](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
1156
|
+
|
|
1157
|
+
|
|
1158
|
+
|
|
1159
|
+
|
|
1160
|
+
|
|
1161
|
+
# 0.8.0 (2025-03-03)
|
|
1162
|
+
|
|
1163
|
+
|
|
1164
|
+
### Features
|
|
1165
|
+
|
|
1166
|
+
* **ONB-3579:** change dms kafka product ([d1df06b](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/d1df06bef6d25836a40e4d7f36d534c2cb199bac))
|
|
1167
|
+
|
|
1168
|
+
|
|
1169
|
+
|
|
1170
|
+
|
|
1171
|
+
|
|
1172
|
+
# 0.7.0 (2025-02-28)
|
|
1173
|
+
|
|
1174
|
+
|
|
1175
|
+
### Features
|
|
1176
|
+
|
|
1177
|
+
* **ONB-3309:** data-test-id for calculator ([265ecf9](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/265ecf9ead1c0632d95137387998aa7d017602a7))
|
|
1178
|
+
|
|
1179
|
+
|
|
1180
|
+
|
|
1181
|
+
|
|
1182
|
+
|
|
1183
|
+
## 0.6.2 (2025-02-28)
|
|
1184
|
+
|
|
1185
|
+
### Only dependencies have been changed
|
|
1186
|
+
* [@cloud-ru/uikit-product-icons@10.3.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
1187
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.19](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
1188
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.6.26](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
1189
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.6.26](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
1190
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.24](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
1191
|
+
|
|
1192
|
+
|
|
1193
|
+
|
|
1194
|
+
|
|
1195
|
+
|
|
1196
|
+
## 0.6.1 (2025-02-27)
|
|
1197
|
+
|
|
1198
|
+
### Only dependencies have been changed
|
|
1199
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.6.25](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
1200
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.6.25](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
1201
|
+
|
|
1202
|
+
|
|
1203
|
+
|
|
1204
|
+
|
|
1205
|
+
|
|
1206
|
+
# 0.6.0 (2025-02-26)
|
|
1207
|
+
|
|
1208
|
+
|
|
1209
|
+
### Features
|
|
1210
|
+
|
|
1211
|
+
* **ONB-3612:** remove disclaimer ([59e9366](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/59e936673b4ae147b897cc5bab60b6b3307c1a9b))
|
|
1212
|
+
|
|
1213
|
+
|
|
1214
|
+
|
|
1215
|
+
|
|
1216
|
+
|
|
1217
|
+
# 0.5.0 (2025-02-25)
|
|
1218
|
+
|
|
1219
|
+
|
|
1220
|
+
### Features
|
|
1221
|
+
|
|
1222
|
+
* **ONB-3453:** evo postgre sql new flavors ([6d4c773](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/6d4c77344f214c3d768fb735899a365e4505cc1c))
|
|
1223
|
+
|
|
1224
|
+
|
|
1225
|
+
|
|
1226
|
+
|
|
1227
|
+
|
|
1228
|
+
# 0.4.0 (2025-02-24)
|
|
1229
|
+
|
|
1230
|
+
|
|
1231
|
+
### Features
|
|
1232
|
+
|
|
1233
|
+
* **ONB-3566:** remove os in virtual data center ([1af927a](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/1af927ad7a166a89eb5cbf9b5484efd1ef4c3b56))
|
|
1234
|
+
|
|
1235
|
+
|
|
1236
|
+
|
|
1237
|
+
|
|
1238
|
+
|
|
1239
|
+
# 0.3.0 (2025-02-24)
|
|
1240
|
+
|
|
1241
|
+
|
|
1242
|
+
### Features
|
|
1243
|
+
|
|
1244
|
+
* **ONB-3408:** add evolution container apps calc ([430d7c6](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/430d7c6104bf08cd7ba14263cb0473d968d976ce))
|
|
1245
|
+
|
|
1246
|
+
|
|
1247
|
+
|
|
1248
|
+
|
|
1249
|
+
|
|
1250
|
+
# 0.2.0 (2025-02-18)
|
|
1251
|
+
|
|
1252
|
+
|
|
1253
|
+
### Features
|
|
1254
|
+
|
|
1255
|
+
* **ONB-0000:** add evo cloud server gpu ([eda5c5d](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/eda5c5d83be704a10292fbc0590a149d9ad12f28))
|
|
1256
|
+
|
|
1257
|
+
|
|
1258
|
+
|
|
1259
|
+
|
|
1260
|
+
|
|
1261
|
+
## 0.1.1 (2025-02-17)
|
|
1262
|
+
|
|
1263
|
+
|
|
1264
|
+
### Bug Fixes
|
|
1265
|
+
|
|
1266
|
+
* **ONB-3344:** changed icon for postgre ([09831e6](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/09831e6346afd798377ffbbe78d1f2d15ee93479))
|
|
1267
|
+
|
|
1268
|
+
|
|
1269
|
+
|
|
1270
|
+
|
|
1271
|
+
|
|
1272
|
+
# 0.1.0 (2025-02-14)
|
|
1273
|
+
|
|
1274
|
+
|
|
1275
|
+
### Features
|
|
1276
|
+
|
|
1277
|
+
* **ONB-3529:** change block`s label, add tooltip ([b6c4c77](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/b6c4c77af89e500f666fb9d9e79a502ad804e0b0))
|
|
1278
|
+
|
|
1279
|
+
|
|
1280
|
+
|
|
1281
|
+
|
|
1282
|
+
|
|
1283
|
+
## 0.0.21 (2025-02-14)
|
|
1284
|
+
|
|
1285
|
+
|
|
1286
|
+
### Bug Fixes
|
|
1287
|
+
|
|
1288
|
+
* **ONB-3344:** change input tabs to slider for vcpu ([cf22878](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/cf22878ae051143d90452a84f3cf04212d47d1bb))
|
|
1289
|
+
|
|
1290
|
+
|
|
1291
|
+
|
|
1292
|
+
|
|
1293
|
+
|
|
1294
|
+
## 0.0.20 (2025-02-11)
|
|
1295
|
+
|
|
1296
|
+
|
|
1297
|
+
### Bug Fixes
|
|
1298
|
+
|
|
1299
|
+
* **ONB-3531:** changed category naming in catalog ([4467d05](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/4467d05d81ae4c6d6e7b1d7f11d3204540c4c426))
|
|
1300
|
+
|
|
1301
|
+
|
|
1302
|
+
|
|
1303
|
+
|
|
1304
|
+
|
|
1305
|
+
## 0.0.19 (2025-02-10)
|
|
1306
|
+
|
|
1307
|
+
|
|
1308
|
+
### Dependencies
|
|
1309
|
+
|
|
1310
|
+
* **FF-4704:** up deps ([7da95ef](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/7da95ef6551ced9a63c75970f43b047cc564cedc))
|
|
1311
|
+
|
|
1312
|
+
|
|
1313
|
+
|
|
1314
|
+
|
|
1315
|
+
|
|
1316
|
+
## <small>0.0.18 (2025-02-08)</small>
|
|
1317
|
+
|
|
1318
|
+
* feat(ONB-3344): slider component for calculator ([e3cf426](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/e3cf426))
|
|
1319
|
+
|
|
1320
|
+
|
|
1321
|
+
|
|
1322
|
+
|
|
1323
|
+
|
|
1324
|
+
## <small>0.0.17 (2025-02-07)</small>
|
|
1325
|
+
|
|
1326
|
+
* feat(ONB-3543): migrate calc configs to uikit ([6d7488f](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/6d7488f))
|
|
1327
|
+
|
|
1328
|
+
|
|
1329
|
+
|
|
1330
|
+
|
|
1331
|
+
|
|
1332
|
+
## <small>0.0.16 (2025-02-05)</small>
|
|
1333
|
+
|
|
1334
|
+
### Only dependencies have been changed
|
|
1335
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.6.23](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
1336
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.6.23](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
1337
|
+
|
|
1338
|
+
|
|
1339
|
+
|
|
1340
|
+
|
|
1341
|
+
|
|
1342
|
+
## <small>0.0.15 (2025-02-05)</small>
|
|
1343
|
+
|
|
1344
|
+
### Only dependencies have been changed
|
|
1345
|
+
* [@cloud-ru/uikit-product-icons@10.2.14](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
1346
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.17](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
1347
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.6.22](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
1348
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.6.22](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
1349
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.22](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
1350
|
+
* [@cloud-ru/uikit-product-utils@3.8.8](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/utils/CHANGELOG.md)
|
|
1351
|
+
|
|
1352
|
+
|
|
1353
|
+
|
|
1354
|
+
|
|
1355
|
+
|
|
1356
|
+
## <small>0.0.14 (2025-02-05)</small>
|
|
1357
|
+
|
|
1358
|
+
* fix(PDS-1286): calculator icon update ([35cb3b0](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/35cb3b0))
|
|
1359
|
+
|
|
1360
|
+
|
|
1361
|
+
|
|
1362
|
+
|
|
1363
|
+
|
|
1364
|
+
## <small>0.0.13 (2025-01-22)</small>
|
|
1365
|
+
|
|
1366
|
+
* fix(ONB-3308): scroll to top of calculator while product change ([93c3e65](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/93c3e65))
|
|
1367
|
+
|
|
1368
|
+
|
|
1369
|
+
|
|
1370
|
+
|
|
1371
|
+
|
|
1372
|
+
## <small>0.0.12 (2025-01-09)</small>
|
|
1373
|
+
|
|
1374
|
+
### Only dependencies have been changed
|
|
1375
|
+
* [@cloud-ru/uikit-product-icons@10.2.12](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
1376
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.15](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
1377
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.6.20](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
1378
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.6.20](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
1379
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.20](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
1380
|
+
|
|
1381
|
+
|
|
1382
|
+
|
|
1383
|
+
|
|
1384
|
+
|
|
1385
|
+
## <small>0.0.11 (2024-12-27)</small>
|
|
1386
|
+
|
|
1387
|
+
### Only dependencies have been changed
|
|
1388
|
+
* [@cloud-ru/uikit-product-icons@10.2.11](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
1389
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.14](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
1390
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.6.19](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
1391
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.6.19](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
1392
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.19](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
1393
|
+
|
|
1394
|
+
|
|
1395
|
+
|
|
1396
|
+
|
|
1397
|
+
|
|
1398
|
+
## <small>0.0.10 (2024-12-26)</small>
|
|
1399
|
+
|
|
1400
|
+
* fix(FF-5734): eslint fixes ([4ba62cc](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/4ba62cc))
|
|
1401
|
+
|
|
1402
|
+
|
|
1403
|
+
|
|
1404
|
+
|
|
1405
|
+
|
|
1406
|
+
## <small>0.0.9 (2024-12-26)</small>
|
|
1407
|
+
|
|
1408
|
+
* chore(PDS-1090): calculator readme update ([718b302](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/718b302))
|
|
1409
|
+
|
|
1410
|
+
|
|
1411
|
+
|
|
1412
|
+
|
|
1413
|
+
|
|
1414
|
+
## <small>0.0.8 (2024-12-17)</small>
|
|
1415
|
+
|
|
1416
|
+
### Only dependencies have been changed
|
|
1417
|
+
* [@cloud-ru/uikit-product-icons@10.2.8](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
1418
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.11](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
1419
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.6.16](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
1420
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.6.16](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
1421
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.16](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
1422
|
+
* [@cloud-ru/uikit-product-utils@3.8.5](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/utils/CHANGELOG.md)
|
|
1423
|
+
|
|
1424
|
+
|
|
1425
|
+
|
|
1426
|
+
|
|
1427
|
+
|
|
1428
|
+
## <small>0.0.7 (2024-12-16)</small>
|
|
1429
|
+
|
|
1430
|
+
### Only dependencies have been changed
|
|
1431
|
+
* [@cloud-ru/uikit-product-icons@10.2.7](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
1432
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.10](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
1433
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.6.15](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
1434
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.6.15](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
1435
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.15](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
1436
|
+
* [@cloud-ru/uikit-product-utils@3.8.4](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/utils/CHANGELOG.md)
|
|
1437
|
+
|
|
1438
|
+
|
|
1439
|
+
|
|
1440
|
+
|
|
1441
|
+
|
|
1442
|
+
## <small>0.0.6 (2024-12-16)</small>
|
|
1443
|
+
|
|
1444
|
+
### Only dependencies have been changed
|
|
1445
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.6.14](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
1446
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.6.14](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
1447
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.14](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
1448
|
+
|
|
1449
|
+
|
|
1450
|
+
|
|
1451
|
+
|
|
1452
|
+
|
|
1453
|
+
## <small>0.0.5 (2024-12-12)</small>
|
|
1454
|
+
|
|
1455
|
+
### Only dependencies have been changed
|
|
1456
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.6.13](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
1457
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.6.13](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
1458
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.13](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
1459
|
+
|
|
1460
|
+
|
|
1461
|
+
|
|
1462
|
+
|
|
1463
|
+
|
|
1464
|
+
## <small>0.0.4 (2024-12-12)</small>
|
|
1465
|
+
|
|
1466
|
+
### Only dependencies have been changed
|
|
1467
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.6.12](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
1468
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.6.12](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
1469
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.12](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
1470
|
+
|
|
1471
|
+
|
|
1472
|
+
|
|
1473
|
+
|
|
1474
|
+
|
|
1475
|
+
## <small>0.0.3 (2024-12-11)</small>
|
|
1476
|
+
|
|
1477
|
+
### Only dependencies have been changed
|
|
1478
|
+
* [@cloud-ru/uikit-product-icons@10.2.6](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
1479
|
+
* [@cloud-ru/uikit-product-mobile-accordion@0.3.9](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-accordion/CHANGELOG.md)
|
|
1480
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.6.11](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
1481
|
+
* [@cloud-ru/uikit-product-mobile-fields@0.6.11](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-fields/CHANGELOG.md)
|
|
1482
|
+
* [@cloud-ru/uikit-product-mobile-modal@0.7.11](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/CHANGELOG.md)
|
|
1483
|
+
|
|
1484
|
+
|
|
1485
|
+
|
|
1486
|
+
|
|
1487
|
+
|
|
1488
|
+
## <small>0.0.2 (2024-12-04)</small>
|
|
1489
|
+
|
|
1490
|
+
* chore(FF-5944): renamed snack uikit category to console ([411a818](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/411a818))
|
|
1491
|
+
|
|
1492
|
+
|
|
1493
|
+
|
|
1494
|
+
|
|
1495
|
+
|
|
1496
|
+
## <small>0.0.1 (2024-11-25)</small>
|
|
1497
|
+
|
|
1498
|
+
* feat(FF-5681): add calclucalor ([007661e](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/007661e))
|
|
1499
|
+
|
|
1500
|
+
|
|
1501
|
+
|
|
1502
|
+
|
|
1503
|
+
|
|
1504
|
+
## CHANGELOG
|
|
1505
|
+
|
|
1506
|
+
### v0.0.0
|
|
1507
|
+
|
|
1508
|
+
- Initial version
|