@skbkontur/icons 1.11.1 → 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 +11 -0
- package/README.md +8 -8
- package/package.json +1 -1
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
|
+
## [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
|
+
|
|
6
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)
|
|
7
18
|
|
|
8
19
|
|
package/README.md
CHANGED
|
@@ -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
|
+
```
|