@cloud-ru/uikit-product-site-selector-platform-drop-list 0.1.4 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## 0.1.5 (2025-11-26)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **SITE-10317:** update icon site-selection-platform-text ([c2968f5](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/c2968f5733823a65facb1e95c9eb1a5d09b5adc8))
12
+
13
+
14
+
15
+
16
+
6
17
  ## 0.1.4 (2025-11-25)
7
18
 
8
19
  **Note:** Version bump only for package @cloud-ru/uikit-product-site-selector-platform-drop-list
@@ -18,7 +18,7 @@ exports.PLATFORMS = {
18
18
  vmware: {
19
19
  id: 'vmware',
20
20
  title: 'Облако VMware',
21
- icon: uikit_product_icons_1.VMwareBackupServerSVG,
21
+ icon: uikit_product_icons_1.VmwareSVG,
22
22
  tooltipText: 'Вендорская платформа, предоставляющая инфраструктуру как услугу, основанную на технологиях VMware — ведущего поставщика решений IaaS.',
23
23
  },
24
24
  all: {
@@ -1,4 +1,4 @@
1
- import { AdvancedSVG, CloudSVG, EvolutionSVG, VMwareBackupServerSVG } from '@cloud-ru/uikit-product-icons';
1
+ import { AdvancedSVG, CloudSVG, EvolutionSVG, VmwareSVG } from '@cloud-ru/uikit-product-icons';
2
2
  export const PLATFORMS = {
3
3
  evolution: {
4
4
  id: 'evolution',
@@ -15,7 +15,7 @@ export const PLATFORMS = {
15
15
  vmware: {
16
16
  id: 'vmware',
17
17
  title: 'Облако VMware',
18
- icon: VMwareBackupServerSVG,
18
+ icon: VmwareSVG,
19
19
  tooltipText: 'Вендорская платформа, предоставляющая инфраструктуру как услугу, основанную на технологиях VMware — ведущего поставщика решений IaaS.',
20
20
  },
21
21
  all: {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cloud-ru/uikit-product-site-selector-platform-drop-list",
3
3
  "title": "Site Selector Platform DropList",
4
- "version": "0.1.4",
4
+ "version": "0.1.5",
5
5
  "sideEffects": [
6
6
  "*.css",
7
7
  "*.woff",
@@ -44,5 +44,5 @@
44
44
  "@snack-uikit/tooltip": "0.18.5",
45
45
  "@snack-uikit/typography": "0.8.11"
46
46
  },
47
- "gitHead": "9d319ea89df880ac5585f1da30140c8e1ed69086"
47
+ "gitHead": "b21abdfaaaa0478f86060ab63690a8d6901c39c1"
48
48
  }
@@ -1,4 +1,4 @@
1
- import { AdvancedSVG, CloudSVG, EvolutionSVG, VMwareBackupServerSVG } from '@cloud-ru/uikit-product-icons';
1
+ import { AdvancedSVG, CloudSVG, EvolutionSVG, VmwareSVG } from '@cloud-ru/uikit-product-icons';
2
2
 
3
3
  import { Item } from '../../types';
4
4
  import { PlatformType } from './SelectorPlatformDropList';
@@ -21,7 +21,7 @@ export const PLATFORMS: { [key in PlatformType]: Item } = {
21
21
  vmware: {
22
22
  id: 'vmware',
23
23
  title: 'Облако VMware',
24
- icon: VMwareBackupServerSVG,
24
+ icon: VmwareSVG,
25
25
  tooltipText:
26
26
  'Вендорская платформа, предоставляющая инфраструктуру как услугу, основанную на технологиях VMware — ведущего поставщика решений IaaS.',
27
27
  },