@skbkontur/icons 1.11.0 → 1.11.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,28 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.11.2](https://git.skbkontur.ru/ui/ui-parking/compare/@skbkontur/icons@1.11.1...@skbkontur/icons@1.11.2) (2024-08-26)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * imports of icons ([e0bcca0](https://git.skbkontur.ru/ui/ui-parking/commits/e0bcca012208aaaff0625cfc5f3b9b04ba730ad7))
12
+
13
+
14
+
15
+
16
+
17
+ ## [1.11.1](https://git.skbkontur.ru/ui/ui-parking/compare/@skbkontur/icons@1.11.0...@skbkontur/icons@1.11.1) (2024-08-21)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * update support channel ([05cb2fb](https://git.skbkontur.ru/ui/ui-parking/commits/05cb2fb534fdd364c5f0a7da89e4a7fbc045c303))
23
+
24
+
25
+
26
+
27
+
6
28
  # [1.11.0](https://git.skbkontur.ru/ui/ui-parking/compare/@skbkontur/icons@1.10.0...@skbkontur/icons@1.11.0) (2024-08-21)
7
29
 
8
30
 
package/README.md CHANGED
@@ -72,7 +72,7 @@ import { MathDeltaIcon20Light } from '@skbkontur/icons/MathDeltaIcon20Light'; //
72
72
  import { ArchiveBoxIcon24Solid } from '@skbkontur/icons/ArchiveBoxIcon24Solid'; // ✅
73
73
  ```
74
74
 
75
- Импорт из корня может привезти к нехватки памяти во время билдинга проекта, т.к. будут импортированны сразу все файлы
75
+ Импорт из корня может привести к нехватке памяти во время билдинга проекта, т.к. будут импортированны сразу все файлы
76
76
 
77
77
  ```ts
78
78
  import { AnimalPawIcon, ArchiveBoxIcon24Solid } from '@skbkontur/icons'; // ⛔
@@ -162,14 +162,6 @@ const Icon = allIcons[currentIcon];
162
162
  </div>;
163
163
  ```
164
164
 
165
- Соотнесение названий старых и новых иконок
166
-
167
- ```jsx
168
- import { OldNewIconsCorrelation } from './__stories__/OldNewIconsCorrelation';
169
-
170
- <OldNewIconsCorrelation />;
171
- ```
172
-
173
165
  Шоу-кейс всех иконок
174
166
 
175
167
  ```jsx
@@ -430,3 +422,11 @@ const [color, setColor] = React.useState('');
430
422
  </div>
431
423
  </div>;
432
424
  ```
425
+
426
+ Соотнесение названий старых и новых иконок
427
+
428
+ ```jsx
429
+ import { OldNewIconsCorrelation } from './__stories__/OldNewIconsCorrelation';
430
+
431
+ <OldNewIconsCorrelation />;
432
+ ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@skbkontur/icons",
3
3
  "description": "react-ui-icons",
4
- "version": "1.11.0",
4
+ "version": "1.11.2",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
7
7
  },