@koobiq/icons 11.4.0 → 11.7.1

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
@@ -1,3 +1,54 @@
1
+ ## 11.7.1 (2026-06-05)
2
+
3
+ ### 🩹 Fixes
4
+
5
+ - returned images dir to @koobiq/icons dist ([ff31b62](https://github.com/koobiq/icons/commit/ff31b62))
6
+
7
+ ### ❤️ Thank You
8
+
9
+ - Nikita Guryev
10
+
11
+ ## 11.7.0 (2026-06-05)
12
+
13
+ ### 🚀 Features
14
+
15
+ - moved all packages to single release and added single changelog ([590ae8b](https://github.com/koobiq/icons/commit/590ae8b))
16
+
17
+ ### 🩹 Fixes
18
+
19
+ - added required fields for publishing ([679233c](https://github.com/koobiq/icons/commit/679233c))
20
+ - aligned packages.json version for @koobiq/visuals ([23d4791](https://github.com/koobiq/icons/commit/23d4791))
21
+
22
+ ### ❤️ Thank You
23
+
24
+ - Nikita Guryev
25
+
26
+ ## 11.6.2 (2026-06-05)
27
+
28
+ This was a version bump only for @koobiq/icons to align it with other projects, there were no code changes.
29
+
30
+ ## 11.6.1 (2026-06-05)
31
+
32
+ This was a version bump only for @koobiq/icons to align it with other projects, there were no code changes.
33
+
34
+ ## 11.6.0 (2026-06-05)
35
+
36
+ ### 🚀 Features
37
+
38
+ - generate webp images (#DS-3119) ([#116](https://github.com/koobiq/icons/pull/116))
39
+ - init nx workspace (#DS-5071) ([#112](https://github.com/koobiq/icons/pull/112))
40
+
41
+ ### ❤️ Thank You
42
+
43
+ - Nikita Guryev
44
+
45
+ # 11.5.0 (2026-03-31)
46
+
47
+ ### Icons
48
+
49
+ * feature list circle xmark ([#DS-4862](https://github.com/koobiq/icons/issues/issue/DS-4862)) ([#103](https://github.com/koobiq/icons/issues/103)) 376d1af
50
+ * feature added schema for mapping.json ([#DS-4516](https://github.com/koobiq/icons/issues/issue/DS-4516)) ([#104](https://github.com/koobiq/icons/issues/104)) 5fa9f927
51
+
1
52
  # 11.4.0 (2026-03-19)
2
53
 
3
54
  ### Icons
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2024 Koobiq Team
3
+ Copyright (c) 2026 Koobiq Team
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  # How to use package
4
4
 
5
- ```
5
+ ```sh
6
6
  npm i @koobiq/icons
7
7
  ```
8
8
 
@@ -12,7 +12,7 @@ npm i @koobiq/icons
12
12
 
13
13
  Install dependencies by running:
14
14
 
15
- ```
15
+ ```sh
16
16
  yarn install
17
17
  ```
18
18
 
@@ -29,7 +29,7 @@ Create a file with name `.env` and add there your Figma access token.
29
29
 
30
30
  To export your icons (SVG) from Figma run the command:
31
31
 
32
- ```
32
+ ```sh
33
33
  yarn run figma:sync
34
34
  ```
35
35
 
@@ -46,7 +46,7 @@ Commit SVG files `mapping.json` and push all changes to git.
46
46
 
47
47
  Run stage commit script to create a new release tag.
48
48
 
49
- ```
49
+ ```sh
50
50
  yarn run stage:commit
51
51
  ```
52
52
 
@@ -1,15 +1,15 @@
1
1
 
2
2
  @font-face {
3
- font-family: "Koobiq Icons 11.4.0";
3
+ font-family: "Koobiq Icons 11.7.1";
4
4
  font-weight: normal;
5
5
  font-style: normal;
6
- src: url("./kbq-icons-11.4.0.ttf?0787168aaf5b5f435356581106badc5a") format("truetype"),
7
- url("./kbq-icons-11.4.0.woff?0787168aaf5b5f435356581106badc5a") format("woff");
6
+ src: url("./kbq-icons-11.7.1.ttf?98a04539a9edad9585bb4fb6382c7e0a") format("truetype"),
7
+ url("./kbq-icons-11.7.1.woff?98a04539a9edad9585bb4fb6382c7e0a") format("woff");
8
8
  }
9
9
 
10
10
 
11
11
  .kbq {
12
- font-family: "Koobiq Icons 11.4.0";
12
+ font-family: "Koobiq Icons 11.7.1";
13
13
  display:inline-block;
14
14
  vertical-align:middle;
15
15
  line-height:1;
@@ -7006,3 +7006,15 @@ transform:rotate(0.001deg);
7006
7006
  .kbq-arrow-up-to-bracket_24:before {
7007
7007
  content: "\f9c6";
7008
7008
  }
7009
+ .kbq-list-circle-xmark_16 {
7010
+ font-size: 16px;
7011
+ }
7012
+ .kbq-list-circle-xmark_16:before {
7013
+ content: "\f9c7";
7014
+ }
7015
+ .kbq-list-circle-xmark_24 {
7016
+ font-size: 24px;
7017
+ }
7018
+ .kbq-list-circle-xmark_24:before {
7019
+ content: "\f9c8";
7020
+ }
@@ -2,7 +2,7 @@
2
2
  <html lang="en">
3
3
  <head>
4
4
  <meta charset="UTF-8">
5
- <title>kbq-icons-11.4.0</title>
5
+ <title>kbq-icons-11.7.1</title>
6
6
  <style>
7
7
  html {
8
8
  box-sizing: border-box;
@@ -89,10 +89,10 @@
89
89
  }
90
90
  </style>
91
91
 
92
- <link rel="stylesheet" type="text/css" href="kbq-icons-11.4.0.css" />
92
+ <link rel="stylesheet" type="text/css" href="kbq-icons-11.7.1.css" />
93
93
  </head>
94
94
  <body>
95
- <h1>kbq-icons-11.4.0</h1>
95
+ <h1>kbq-icons-11.7.1</h1>
96
96
 
97
97
  <div id="icons">
98
98
  <div class="icon" data-name="xmark_32" title="xmark_32">
@@ -2357,6 +2357,18 @@
2357
2357
  <span class='label'>list-collapse_16</span>
2358
2358
  </span>
2359
2359
  </div>
2360
+ <div class="icon" data-name="list-circle-xmark_24" title="list-circle-xmark_24">
2361
+ <span class="inner">
2362
+ <i class="kbq kbq-list-circle-xmark_24" aria-hidden="true"></i>
2363
+ <span class='label'>list-circle-xmark_24</span>
2364
+ </span>
2365
+ </div>
2366
+ <div class="icon" data-name="list-circle-xmark_16" title="list-circle-xmark_16">
2367
+ <span class="inner">
2368
+ <i class="kbq kbq-list-circle-xmark_16" aria-hidden="true"></i>
2369
+ <span class='label'>list-circle-xmark_16</span>
2370
+ </span>
2371
+ </div>
2360
2372
  <div class="icon" data-name="list-badge-xmark_24" title="list-badge-xmark_24">
2361
2373
  <span class="inner">
2362
2374
  <i class="kbq kbq-list-badge-xmark_24" aria-hidden="true"></i>
@@ -1,15 +1,15 @@
1
1
 
2
2
  @font-face {
3
- font-family: "Koobiq Icons 11.4.0";
3
+ font-family: "Koobiq Icons 11.7.1";
4
4
  font-weight: normal;
5
5
  font-style: normal;
6
- src: url("./kbq-icons-11.4.0.ttf?0787168aaf5b5f435356581106badc5a") format("truetype"),
7
- url("./kbq-icons-11.4.0.woff?0787168aaf5b5f435356581106badc5a") format("woff");
6
+ src: url("./kbq-icons-11.7.1.ttf?98a04539a9edad9585bb4fb6382c7e0a") format("truetype"),
7
+ url("./kbq-icons-11.7.1.woff?98a04539a9edad9585bb4fb6382c7e0a") format("woff");
8
8
  }
9
9
 
10
10
 
11
11
  .kbq {
12
- font-family: "Koobiq Icons 11.4.0";
12
+ font-family: "Koobiq Icons 11.7.1";
13
13
  display:inline-block;
14
14
  vertical-align:middle;
15
15
  line-height:1;
@@ -7006,3 +7006,15 @@ transform:rotate(0.001deg);
7006
7006
  content: "\f9c6";
7007
7007
  }
7008
7008
  }
7009
+ .kbq-list-circle-xmark_16 {
7010
+ font-size: 16px;
7011
+ &:before {
7012
+ content: "\f9c7";
7013
+ }
7014
+ }
7015
+ .kbq-list-circle-xmark_24 {
7016
+ font-size: 24px;
7017
+ &:before {
7018
+ content: "\f9c8";
7019
+ }
7020
+ }
Binary file
@@ -3,8 +3,8 @@
3
3
  font-family: "Koobiq Icons";
4
4
  font-weight: normal;
5
5
  font-style: normal;
6
- src: url("./kbq-icons.ttf?5314fd639bffd6f8587b4cafb738dc29") format("truetype"),
7
- url("./kbq-icons.woff?5314fd639bffd6f8587b4cafb738dc29") format("woff");
6
+ src: url("./kbq-icons.ttf?922382ffa066f48801ea776f0a296327") format("truetype"),
7
+ url("./kbq-icons.woff?922382ffa066f48801ea776f0a296327") format("woff");
8
8
  }
9
9
 
10
10
 
@@ -7006,3 +7006,15 @@ transform:rotate(0.001deg);
7006
7006
  .kbq-arrow-up-to-bracket_24:before {
7007
7007
  content: "\f9c6";
7008
7008
  }
7009
+ .kbq-list-circle-xmark_16 {
7010
+ font-size: 16px;
7011
+ }
7012
+ .kbq-list-circle-xmark_16:before {
7013
+ content: "\f9c7";
7014
+ }
7015
+ .kbq-list-circle-xmark_24 {
7016
+ font-size: 24px;
7017
+ }
7018
+ .kbq-list-circle-xmark_24:before {
7019
+ content: "\f9c8";
7020
+ }
@@ -2357,6 +2357,18 @@
2357
2357
  <span class='label'>list-collapse_16</span>
2358
2358
  </span>
2359
2359
  </div>
2360
+ <div class="icon" data-name="list-circle-xmark_24" title="list-circle-xmark_24">
2361
+ <span class="inner">
2362
+ <i class="kbq kbq-list-circle-xmark_24" aria-hidden="true"></i>
2363
+ <span class='label'>list-circle-xmark_24</span>
2364
+ </span>
2365
+ </div>
2366
+ <div class="icon" data-name="list-circle-xmark_16" title="list-circle-xmark_16">
2367
+ <span class="inner">
2368
+ <i class="kbq kbq-list-circle-xmark_16" aria-hidden="true"></i>
2369
+ <span class='label'>list-circle-xmark_16</span>
2370
+ </span>
2371
+ </div>
2360
2372
  <div class="icon" data-name="list-badge-xmark_24" title="list-badge-xmark_24">
2361
2373
  <span class="inner">
2362
2374
  <i class="kbq kbq-list-badge-xmark_24" aria-hidden="true"></i>
@@ -3,8 +3,8 @@
3
3
  font-family: "Koobiq Icons";
4
4
  font-weight: normal;
5
5
  font-style: normal;
6
- src: url("./kbq-icons.ttf?5314fd639bffd6f8587b4cafb738dc29") format("truetype"),
7
- url("./kbq-icons.woff?5314fd639bffd6f8587b4cafb738dc29") format("woff");
6
+ src: url("./kbq-icons.ttf?922382ffa066f48801ea776f0a296327") format("truetype"),
7
+ url("./kbq-icons.woff?922382ffa066f48801ea776f0a296327") format("woff");
8
8
  }
9
9
 
10
10
 
@@ -7006,3 +7006,15 @@ transform:rotate(0.001deg);
7006
7006
  content: "\f9c6";
7007
7007
  }
7008
7008
  }
7009
+ .kbq-list-circle-xmark_16 {
7010
+ font-size: 16px;
7011
+ &:before {
7012
+ content: "\f9c7";
7013
+ }
7014
+ }
7015
+ .kbq-list-circle-xmark_24 {
7016
+ font-size: 24px;
7017
+ &:before {
7018
+ content: "\f9c8";
7019
+ }
7020
+ }
Binary file
Binary file