@koobiq/icons 9.4.1 → 10.1.0

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.
Files changed (58) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/README.md +12 -12
  3. package/fonts/kbq-icons.css +86 -2
  4. package/fonts/kbq-icons.html +84 -0
  5. package/fonts/kbq-icons.scss +86 -2
  6. package/fonts/kbq-icons.ttf +0 -0
  7. package/fonts/kbq-icons.woff +0 -0
  8. package/info/kbq-icons-info.json +1 -1
  9. package/package.json +1 -1
  10. package/svg/behance_16.svg +1 -0
  11. package/svg/file-multiple-o_16.svg +1 -1
  12. package/svg/file-multiple-o_24.svg +1 -1
  13. package/svg/github-alt_16.svg +1 -0
  14. package/svg/github_16.svg +1 -0
  15. package/svg/gitlab_16.svg +1 -0
  16. package/svg/habr-alt_16.svg +1 -0
  17. package/svg/habr_16.svg +1 -0
  18. package/svg/linkedin-alt_16.svg +1 -0
  19. package/svg/linkedin_16.svg +1 -0
  20. package/svg/magnifying-glass-badge-sparkles_16.svg +1 -1
  21. package/svg/mattermost_16.svg +1 -0
  22. package/svg/robot_16.svg +1 -1
  23. package/svg/shield-user_16.svg +1 -1
  24. package/svg/telegram_16.svg +1 -0
  25. package/svg/thumbs-down_16.svg +1 -1
  26. package/svg/thumbs-up_16.svg +1 -1
  27. package/svg/time-messenger-alt_16.svg +1 -0
  28. package/svg/time-messenger_16.svg +1 -0
  29. package/svg/trash_16.svg +1 -1
  30. package/svg/vk-alt_16.svg +1 -0
  31. package/svg/vk_16.svg +1 -0
  32. package/symbol/sprite.scss +70 -0
  33. package/symbol/sprite.symbol.html +149 -9
  34. package/symbol/svg/sprite.symbol.svg +1 -1
  35. /package/images/dark/{403-dark-192.png → 403_192.png} +0 -0
  36. /package/images/dark/{403-dark-192@2x.png → 403_192@2x.png} +0 -0
  37. /package/images/dark/{404-dark-192.png → 404_192.png} +0 -0
  38. /package/images/dark/{404-dark-192@2x.png → 404_192@2x.png} +0 -0
  39. /package/images/dark/{bad-dark-192.png → bad_192.png} +0 -0
  40. /package/images/dark/{bad-dark-192@2x.png → bad_192@2x.png} +0 -0
  41. /package/images/dark/{empty-dark-192.png → empty_192.png} +0 -0
  42. /package/images/dark/{empty-dark-192@2x.png → empty_192@2x.png} +0 -0
  43. /package/images/dark/{folder-plus-dark-192.png → folder-plus_192.png} +0 -0
  44. /package/images/dark/{folder-plus-dark-192@2x.png → folder-plus_192@2x.png} +0 -0
  45. /package/images/dark/{folder-dark-192.png → folder_192.png} +0 -0
  46. /package/images/dark/{folder-dark-192@2x.png → folder_192@2x.png} +0 -0
  47. /package/images/dark/{language-dark-192.png → language_192.png} +0 -0
  48. /package/images/dark/{language-dark-192@2x.png → language_192@2x.png} +0 -0
  49. /package/images/dark/{lock-bad-dark-192.png → lock-bad_192.png} +0 -0
  50. /package/images/dark/{lock-bad-dark-192@2x.png → lock-bad_192@2x.png} +0 -0
  51. /package/images/dark/{lock-dark-192.png → lock_192.png} +0 -0
  52. /package/images/dark/{lock-dark-192@2x.png → lock_192@2x.png} +0 -0
  53. /package/images/dark/{reload-dark-192.png → reload_192.png} +0 -0
  54. /package/images/dark/{reload-dark-192@2x.png → reload_192@2x.png} +0 -0
  55. /package/images/dark/{upload-settings-dark-192.png → upload-settings_192.png} +0 -0
  56. /package/images/dark/{upload-settings-dark-192@2x.png → upload-settings_192@2x.png} +0 -0
  57. /package/images/dark/{upload-dark-192.png → upload_192.png} +0 -0
  58. /package/images/dark/{upload-dark-192@2x.png → upload_192@2x.png} +0 -0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,18 @@
1
+ # 10.1.0 (2025-06-02)
2
+
3
+ ### Icons
4
+
5
+ * feature sync-may25-icons ([#DS-3797](https://github.com/koobiq/icons/issues/issue/DS-3797)) ([#33](https://github.com/koobiq/icons/issues/33)) db19f19
6
+
7
+ # 10.0.0 (2025-05-12)
8
+
9
+ ### Icons
10
+
11
+ * bug fix rename dark images ([#DS-3413](https://github.com/koobiq/icons/issues/issue/DS-3413)) ([#10](https://github.com/koobiq/icons/issues/10)) 0ae39c8
12
+
13
+ #### BREAKING CHANGES
14
+ * Removed the extra `dark-` in filenames within `images/dark` directory to make paths cleaner. Update any references to these images in your code.
15
+
1
16
  ## 9.4.1 (2025-04-25)
2
17
 
3
18
  ### Icons
package/README.md CHANGED
@@ -37,8 +37,8 @@ yarn run figma:sync
37
37
 
38
38
  Change `mapping.json`:
39
39
 
40
- - Add an entry into `mapping.json` with a new codepoint keys.
41
- - Edit the name of an icon in the `mapping.json` in case of icon rename
40
+ - Add an entry into `mapping.json` with a new codepoint keys.
41
+ - Edit the name of an icon in the `mapping.json` in case of icon rename
42
42
 
43
43
  Commit SVG files `mapping.json` and push all changes to git.
44
44
 
@@ -52,9 +52,9 @@ yarn run stage:commit
52
52
 
53
53
  Use semver for version naming. So increment major (first) version number if any of these changes were made:
54
54
 
55
- - Any icon name was changed (breaking changes for front-end developers)
56
- - Any icon codepoint was changed (breaking changes for tech writers)
57
- - Significant changes in icon metaphor (breaking changes for all)
55
+ - Any icon name was changed (breaking changes for front-end developers)
56
+ - Any icon codepoint was changed (breaking changes for tech writers)
57
+ - Significant changes in icon metaphor (breaking changes for all)
58
58
 
59
59
  # SVG Color Zones Guide
60
60
 
@@ -64,8 +64,8 @@ This guide explains how to structure SVGs for dynamic styling via CSS, allowing
64
64
 
65
65
  ## How It Works
66
66
 
67
- - **Primary Zone**: No `fill` attribute.
68
- - **Secondary Zone(s)**: `fill="currentColor"`.
67
+ - **Primary Zone**: No `fill` attribute.
68
+ - **Secondary Zone(s)**: `fill="currentColor"`.
69
69
 
70
70
  CSS styling:
71
71
 
@@ -82,14 +82,14 @@ For details, see [CSS-Tricks](https://css-tricks.com/lodge/svg/21-get-two-colors
82
82
 
83
83
  To facilitate automated processing during the build phase, we follow these conventions in Figma:
84
84
 
85
- - **Primary Zone**: `#21222C` (black).
86
- - **Secondary Zone(s)**: `#E21D03` (red).
85
+ - **Primary Zone**: `#21222C` (black).
86
+ - **Secondary Zone(s)**: `#E21D03` (red).
87
87
 
88
88
  These colors serve as a contract between the Figma design file and the build system.
89
89
  The build process recognizes these colors and applies the appropriate transformations to ensure the correct fill behavior in the final SVG output.
90
90
 
91
91
  ## Implementation
92
92
 
93
- - Remove `fill` from the primary zone.
94
- - Set secondary zones to `fill="currentColor"`.
95
- - Use CSS for styling.
93
+ - Remove `fill` from the primary zone.
94
+ - Set secondary zones to `fill="currentColor"`.
95
+ - Use CSS for styling.
@@ -2,8 +2,8 @@
2
2
  font-family: "Koobiq Icons";
3
3
  font-weight:normal;
4
4
  font-style:normal;
5
- src: url("./kbq-icons.ttf?df07f3b9e8047df60abc6c20a8e74de3") format("truetype"),
6
- url("./kbq-icons.woff?df07f3b9e8047df60abc6c20a8e74de3") format("woff");
5
+ src: url("./kbq-icons.ttf?a0f4d4404688991e73ce373434df6a5e") format("truetype"),
6
+ url("./kbq-icons.woff?a0f4d4404688991e73ce373434df6a5e") format("woff");
7
7
  }
8
8
 
9
9
  .kbq {
@@ -3854,3 +3854,87 @@ transform:rotate(0.001deg);
3854
3854
  .kbq-desktop-multiple-o_16:before {
3855
3855
  content: "\f810";
3856
3856
  }
3857
+ .kbq-behance_16 {
3858
+ font-size: 16px;
3859
+ }
3860
+ .kbq-behance_16:before {
3861
+ content: "\f811";
3862
+ }
3863
+ .kbq-github_16 {
3864
+ font-size: 16px;
3865
+ }
3866
+ .kbq-github_16:before {
3867
+ content: "\f812";
3868
+ }
3869
+ .kbq-github-alt_16 {
3870
+ font-size: 16px;
3871
+ }
3872
+ .kbq-github-alt_16:before {
3873
+ content: "\f813";
3874
+ }
3875
+ .kbq-gitlab_16 {
3876
+ font-size: 16px;
3877
+ }
3878
+ .kbq-gitlab_16:before {
3879
+ content: "\f814";
3880
+ }
3881
+ .kbq-habr_16 {
3882
+ font-size: 16px;
3883
+ }
3884
+ .kbq-habr_16:before {
3885
+ content: "\f815";
3886
+ }
3887
+ .kbq-habr-alt_16 {
3888
+ font-size: 16px;
3889
+ }
3890
+ .kbq-habr-alt_16:before {
3891
+ content: "\f816";
3892
+ }
3893
+ .kbq-linkedin_16 {
3894
+ font-size: 16px;
3895
+ }
3896
+ .kbq-linkedin_16:before {
3897
+ content: "\f817";
3898
+ }
3899
+ .kbq-linkedin-alt_16 {
3900
+ font-size: 16px;
3901
+ }
3902
+ .kbq-linkedin-alt_16:before {
3903
+ content: "\f818";
3904
+ }
3905
+ .kbq-mattermost_16 {
3906
+ font-size: 16px;
3907
+ }
3908
+ .kbq-mattermost_16:before {
3909
+ content: "\f819";
3910
+ }
3911
+ .kbq-telegram_16 {
3912
+ font-size: 16px;
3913
+ }
3914
+ .kbq-telegram_16:before {
3915
+ content: "\f81a";
3916
+ }
3917
+ .kbq-time-messenger_16 {
3918
+ font-size: 16px;
3919
+ }
3920
+ .kbq-time-messenger_16:before {
3921
+ content: "\f81b";
3922
+ }
3923
+ .kbq-time-messenger-alt_16 {
3924
+ font-size: 16px;
3925
+ }
3926
+ .kbq-time-messenger-alt_16:before {
3927
+ content: "\f81c";
3928
+ }
3929
+ .kbq-vk_16 {
3930
+ font-size: 16px;
3931
+ }
3932
+ .kbq-vk_16:before {
3933
+ content: "\f81d";
3934
+ }
3935
+ .kbq-vk-alt_16 {
3936
+ font-size: 16px;
3937
+ }
3938
+ .kbq-vk-alt_16:before {
3939
+ content: "\f81e";
3940
+ }
@@ -197,6 +197,18 @@
197
197
  <span class='label'>vpn_16</span>
198
198
  </span>
199
199
  </div>
200
+ <div class="icon" data-name="vk_16" title="vk_16">
201
+ <span class="inner">
202
+ <i class="kbq kbq-vk_16" aria-hidden="true"></i>
203
+ <span class='label'>vk_16</span>
204
+ </span>
205
+ </div>
206
+ <div class="icon" data-name="vk-alt_16" title="vk-alt_16">
207
+ <span class="inner">
208
+ <i class="kbq kbq-vk-alt_16" aria-hidden="true"></i>
209
+ <span class='label'>vk-alt_16</span>
210
+ </span>
211
+ </div>
200
212
  <div class="icon" data-name="user_24" title="user_24">
201
213
  <span class="inner">
202
214
  <i class="kbq kbq-user_24" aria-hidden="true"></i>
@@ -347,6 +359,18 @@
347
359
  <span class='label'>topology-lines_16</span>
348
360
  </span>
349
361
  </div>
362
+ <div class="icon" data-name="time-messenger_16" title="time-messenger_16">
363
+ <span class="inner">
364
+ <i class="kbq kbq-time-messenger_16" aria-hidden="true"></i>
365
+ <span class='label'>time-messenger_16</span>
366
+ </span>
367
+ </div>
368
+ <div class="icon" data-name="time-messenger-alt_16" title="time-messenger-alt_16">
369
+ <span class="inner">
370
+ <i class="kbq kbq-time-messenger-alt_16" aria-hidden="true"></i>
371
+ <span class='label'>time-messenger-alt_16</span>
372
+ </span>
373
+ </div>
350
374
  <div class="icon" data-name="thumbs-up_16" title="thumbs-up_16">
351
375
  <span class="inner">
352
376
  <i class="kbq kbq-thumbs-up_16" aria-hidden="true"></i>
@@ -395,6 +419,12 @@
395
419
  <span class='label'>text-bold_16</span>
396
420
  </span>
397
421
  </div>
422
+ <div class="icon" data-name="telegram_16" title="telegram_16">
423
+ <span class="inner">
424
+ <i class="kbq kbq-telegram_16" aria-hidden="true"></i>
425
+ <span class='label'>telegram_16</span>
426
+ </span>
427
+ </div>
398
428
  <div class="icon" data-name="telegram-circle_16" title="telegram-circle_16">
399
429
  <span class="inner">
400
430
  <i class="kbq kbq-telegram-circle_16" aria-hidden="true"></i>
@@ -1283,6 +1313,12 @@
1283
1313
  <span class='label'>message-arrow-right_16</span>
1284
1314
  </span>
1285
1315
  </div>
1316
+ <div class="icon" data-name="mattermost_16" title="mattermost_16">
1317
+ <span class="inner">
1318
+ <i class="kbq kbq-mattermost_16" aria-hidden="true"></i>
1319
+ <span class='label'>mattermost_16</span>
1320
+ </span>
1321
+ </div>
1286
1322
  <div class="icon" data-name="map_24" title="map_24">
1287
1323
  <span class="inner">
1288
1324
  <i class="kbq kbq-map_24" aria-hidden="true"></i>
@@ -1469,6 +1505,18 @@
1469
1505
  <span class='label'>linux_16</span>
1470
1506
  </span>
1471
1507
  </div>
1508
+ <div class="icon" data-name="linkedin_16" title="linkedin_16">
1509
+ <span class="inner">
1510
+ <i class="kbq kbq-linkedin_16" aria-hidden="true"></i>
1511
+ <span class='label'>linkedin_16</span>
1512
+ </span>
1513
+ </div>
1514
+ <div class="icon" data-name="linkedin-alt_16" title="linkedin-alt_16">
1515
+ <span class="inner">
1516
+ <i class="kbq kbq-linkedin-alt_16" aria-hidden="true"></i>
1517
+ <span class='label'>linkedin-alt_16</span>
1518
+ </span>
1519
+ </div>
1472
1520
  <div class="icon" data-name="link_16" title="link_16">
1473
1521
  <span class="inner">
1474
1522
  <i class="kbq kbq-link_16" aria-hidden="true"></i>
@@ -1667,6 +1715,18 @@
1667
1715
  <span class='label'>handcuffs_16</span>
1668
1716
  </span>
1669
1717
  </div>
1718
+ <div class="icon" data-name="habr_16" title="habr_16">
1719
+ <span class="inner">
1720
+ <i class="kbq kbq-habr_16" aria-hidden="true"></i>
1721
+ <span class='label'>habr_16</span>
1722
+ </span>
1723
+ </div>
1724
+ <div class="icon" data-name="habr-alt_16" title="habr-alt_16">
1725
+ <span class="inner">
1726
+ <i class="kbq kbq-habr-alt_16" aria-hidden="true"></i>
1727
+ <span class='label'>habr-alt_16</span>
1728
+ </span>
1729
+ </div>
1670
1730
  <div class="icon" data-name="grip-vertical_16" title="grip-vertical_16">
1671
1731
  <span class="inner">
1672
1732
  <i class="kbq kbq-grip-vertical_16" aria-hidden="true"></i>
@@ -1745,6 +1805,24 @@
1745
1805
  <span class='label'>globe-dot_16</span>
1746
1806
  </span>
1747
1807
  </div>
1808
+ <div class="icon" data-name="gitlab_16" title="gitlab_16">
1809
+ <span class="inner">
1810
+ <i class="kbq kbq-gitlab_16" aria-hidden="true"></i>
1811
+ <span class='label'>gitlab_16</span>
1812
+ </span>
1813
+ </div>
1814
+ <div class="icon" data-name="github_16" title="github_16">
1815
+ <span class="inner">
1816
+ <i class="kbq kbq-github_16" aria-hidden="true"></i>
1817
+ <span class='label'>github_16</span>
1818
+ </span>
1819
+ </div>
1820
+ <div class="icon" data-name="github-alt_16" title="github-alt_16">
1821
+ <span class="inner">
1822
+ <i class="kbq kbq-github-alt_16" aria-hidden="true"></i>
1823
+ <span class='label'>github-alt_16</span>
1824
+ </span>
1825
+ </div>
1748
1826
  <div class="icon" data-name="gear_24" title="gear_24">
1749
1827
  <span class="inner">
1750
1828
  <i class="kbq kbq-gear_24" aria-hidden="true"></i>
@@ -3293,6 +3371,12 @@
3293
3371
  <span class='label'>bell-slash_16</span>
3294
3372
  </span>
3295
3373
  </div>
3374
+ <div class="icon" data-name="behance_16" title="behance_16">
3375
+ <span class="inner">
3376
+ <i class="kbq kbq-behance_16" aria-hidden="true"></i>
3377
+ <span class='label'>behance_16</span>
3378
+ </span>
3379
+ </div>
3296
3380
  <div class="icon" data-name="bars-vertical_24" title="bars-vertical_24">
3297
3381
  <span class="inner">
3298
3382
  <i class="kbq kbq-bars-vertical_24" aria-hidden="true"></i>
@@ -2,8 +2,8 @@
2
2
  font-family: "Koobiq Icons";
3
3
  font-weight:normal;
4
4
  font-style:normal;
5
- src: url("./kbq-icons.ttf?df07f3b9e8047df60abc6c20a8e74de3") format("truetype"),
6
- url("./kbq-icons.woff?df07f3b9e8047df60abc6c20a8e74de3") format("woff");
5
+ src: url("./kbq-icons.ttf?a0f4d4404688991e73ce373434df6a5e") format("truetype"),
6
+ url("./kbq-icons.woff?a0f4d4404688991e73ce373434df6a5e") format("woff");
7
7
  }
8
8
 
9
9
  .kbq {
@@ -3854,3 +3854,87 @@ transform:rotate(0.001deg);
3854
3854
  content: "\f810";
3855
3855
  }
3856
3856
  }
3857
+ .kbq-behance_16 {
3858
+ font-size: 16px;
3859
+ &:before {
3860
+ content: "\f811";
3861
+ }
3862
+ }
3863
+ .kbq-github_16 {
3864
+ font-size: 16px;
3865
+ &:before {
3866
+ content: "\f812";
3867
+ }
3868
+ }
3869
+ .kbq-github-alt_16 {
3870
+ font-size: 16px;
3871
+ &:before {
3872
+ content: "\f813";
3873
+ }
3874
+ }
3875
+ .kbq-gitlab_16 {
3876
+ font-size: 16px;
3877
+ &:before {
3878
+ content: "\f814";
3879
+ }
3880
+ }
3881
+ .kbq-habr_16 {
3882
+ font-size: 16px;
3883
+ &:before {
3884
+ content: "\f815";
3885
+ }
3886
+ }
3887
+ .kbq-habr-alt_16 {
3888
+ font-size: 16px;
3889
+ &:before {
3890
+ content: "\f816";
3891
+ }
3892
+ }
3893
+ .kbq-linkedin_16 {
3894
+ font-size: 16px;
3895
+ &:before {
3896
+ content: "\f817";
3897
+ }
3898
+ }
3899
+ .kbq-linkedin-alt_16 {
3900
+ font-size: 16px;
3901
+ &:before {
3902
+ content: "\f818";
3903
+ }
3904
+ }
3905
+ .kbq-mattermost_16 {
3906
+ font-size: 16px;
3907
+ &:before {
3908
+ content: "\f819";
3909
+ }
3910
+ }
3911
+ .kbq-telegram_16 {
3912
+ font-size: 16px;
3913
+ &:before {
3914
+ content: "\f81a";
3915
+ }
3916
+ }
3917
+ .kbq-time-messenger_16 {
3918
+ font-size: 16px;
3919
+ &:before {
3920
+ content: "\f81b";
3921
+ }
3922
+ }
3923
+ .kbq-time-messenger-alt_16 {
3924
+ font-size: 16px;
3925
+ &:before {
3926
+ content: "\f81c";
3927
+ }
3928
+ }
3929
+ .kbq-vk_16 {
3930
+ font-size: 16px;
3931
+ &:before {
3932
+ content: "\f81d";
3933
+ }
3934
+ }
3935
+ .kbq-vk-alt_16 {
3936
+ font-size: 16px;
3937
+ &:before {
3938
+ content: "\f81e";
3939
+ }
3940
+ }
Binary file
Binary file