@koobiq/icons 10.3.0 → 10.5.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.
- package/CHANGELOG.md +12 -0
- package/fonts/kbq-icons.css +14 -2
- package/fonts/kbq-icons.html +6 -0
- package/fonts/kbq-icons.scss +14 -2
- package/fonts/kbq-icons.ttf +0 -0
- package/fonts/kbq-icons.woff +0 -0
- package/info/kbq-icons-info.json +1 -1
- package/package.json +1 -1
- package/svg/.anomaly-square_16.svg +1 -0
- package/svg/replace_24.svg +1 -0
- package/symbol/sprite.scss +5 -0
- package/symbol/sprite.symbol.html +11 -1
- package/symbol/svg/sprite.symbol.svg +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# 10.5.0 (2025-07-21)
|
|
2
|
+
|
|
3
|
+
### Icons
|
|
4
|
+
|
|
5
|
+
* feature added anomaly-square_16 ([#DS-4005](https://github.com/koobiq/icons/issues/issue/DS-4005)) ([#49](https://github.com/koobiq/icons/issues/49)) 3ca0c3f
|
|
6
|
+
|
|
7
|
+
# 10.4.0 (2025-06-27)
|
|
8
|
+
|
|
9
|
+
### Icons
|
|
10
|
+
|
|
11
|
+
* feature add replace_24 ([#DS-3900](https://github.com/koobiq/icons/issues/issue/DS-3900)) ([#44](https://github.com/koobiq/icons/issues/44)) dbc6d25
|
|
12
|
+
|
|
1
13
|
# 10.3.0 (2025-06-24)
|
|
2
14
|
|
|
3
15
|
### Icons
|
package/fonts/kbq-icons.css
CHANGED
|
@@ -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?
|
|
6
|
-
url("./kbq-icons.woff?
|
|
5
|
+
src: url("./kbq-icons.ttf?67cf659264dc0af56e5f728a158972ec") format("truetype"),
|
|
6
|
+
url("./kbq-icons.woff?67cf659264dc0af56e5f728a158972ec") format("woff");
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
.kbq {
|
|
@@ -3956,3 +3956,15 @@ transform:rotate(0.001deg);
|
|
|
3956
3956
|
.kbq-aurora-os_16:before {
|
|
3957
3957
|
content: "\f821";
|
|
3958
3958
|
}
|
|
3959
|
+
.kbq-replace_24 {
|
|
3960
|
+
font-size: 24px;
|
|
3961
|
+
}
|
|
3962
|
+
.kbq-replace_24:before {
|
|
3963
|
+
content: "\f822";
|
|
3964
|
+
}
|
|
3965
|
+
.kbq-anomaly-square_16 {
|
|
3966
|
+
font-size: 16px;
|
|
3967
|
+
}
|
|
3968
|
+
.kbq-anomaly-square_16:before {
|
|
3969
|
+
content: "\f823";
|
|
3970
|
+
}
|
package/fonts/kbq-icons.html
CHANGED
|
@@ -815,6 +815,12 @@
|
|
|
815
815
|
<span class='label'>robot_16</span>
|
|
816
816
|
</span>
|
|
817
817
|
</div>
|
|
818
|
+
<div class="icon" data-name="replace_24" title="replace_24">
|
|
819
|
+
<span class="inner">
|
|
820
|
+
<i class="kbq kbq-replace_24" aria-hidden="true"></i>
|
|
821
|
+
<span class='label'>replace_24</span>
|
|
822
|
+
</span>
|
|
823
|
+
</div>
|
|
818
824
|
<div class="icon" data-name="replace_16" title="replace_16">
|
|
819
825
|
<span class="inner">
|
|
820
826
|
<i class="kbq kbq-replace_16" aria-hidden="true"></i>
|
package/fonts/kbq-icons.scss
CHANGED
|
@@ -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?
|
|
6
|
-
url("./kbq-icons.woff?
|
|
5
|
+
src: url("./kbq-icons.ttf?67cf659264dc0af56e5f728a158972ec") format("truetype"),
|
|
6
|
+
url("./kbq-icons.woff?67cf659264dc0af56e5f728a158972ec") format("woff");
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
.kbq {
|
|
@@ -3956,3 +3956,15 @@ transform:rotate(0.001deg);
|
|
|
3956
3956
|
content: "\f821";
|
|
3957
3957
|
}
|
|
3958
3958
|
}
|
|
3959
|
+
.kbq-replace_24 {
|
|
3960
|
+
font-size: 24px;
|
|
3961
|
+
&:before {
|
|
3962
|
+
content: "\f822";
|
|
3963
|
+
}
|
|
3964
|
+
}
|
|
3965
|
+
.kbq-anomaly-square_16 {
|
|
3966
|
+
font-size: 16px;
|
|
3967
|
+
&:before {
|
|
3968
|
+
content: "\f823";
|
|
3969
|
+
}
|
|
3970
|
+
}
|
package/fonts/kbq-icons.ttf
CHANGED
|
Binary file
|
package/fonts/kbq-icons.woff
CHANGED
|
Binary file
|