@koobiq/icons 11.3.0 → 11.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 +13 -0
- package/fonts/{kbq-icons-11.3.0.css → kbq-icons-11.5.0.css} +28 -4
- package/fonts/{kbq-icons-11.3.0.html → kbq-icons-11.5.0.html} +27 -3
- package/fonts/{kbq-icons-11.3.0.scss → kbq-icons-11.5.0.scss} +28 -4
- package/fonts/{kbq-icons-11.3.0.ttf → kbq-icons-11.5.0.ttf} +0 -0
- package/fonts/kbq-icons-11.5.0.woff +0 -0
- package/fonts/kbq-icons.css +26 -2
- package/fonts/kbq-icons.html +24 -0
- package/fonts/kbq-icons.scss +26 -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/arrow-up-to-bracket_16.svg +1 -0
- package/svg/arrow-up-to-bracket_24.svg +1 -0
- package/svg/list-circle-xmark_16.svg +1 -0
- package/svg/list-circle-xmark_24.svg +1 -0
- package/symbol/sprite.scss +20 -0
- package/symbol/sprite.symbol.html +41 -1
- package/symbol/svg/sprite.symbol.svg +1 -1
- package/types/icons.d.ts +27 -0
- package/fonts/kbq-icons-11.3.0.woff +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
# 11.5.0 (2026-03-31)
|
|
2
|
+
|
|
3
|
+
### Icons
|
|
4
|
+
|
|
5
|
+
* feature list circle xmark ([#DS-4862](https://github.com/koobiq/icons/issues/issue/DS-4862)) ([#103](https://github.com/koobiq/icons/issues/103)) 376d1af
|
|
6
|
+
* 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
|
|
7
|
+
|
|
8
|
+
# 11.4.0 (2026-03-19)
|
|
9
|
+
|
|
10
|
+
### Icons
|
|
11
|
+
|
|
12
|
+
* feature arrow up to bracket ([#DS-4785](https://github.com/koobiq/icons/issues/issue/DS-4785)) ([#102](https://github.com/koobiq/icons/issues/102)) c71c8ae
|
|
13
|
+
|
|
1
14
|
# 11.3.0 (2026-03-05)
|
|
2
15
|
|
|
3
16
|
### Icons
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
|
|
2
2
|
@font-face {
|
|
3
|
-
font-family: "Koobiq Icons 11.
|
|
3
|
+
font-family: "Koobiq Icons 11.5.0";
|
|
4
4
|
font-weight: normal;
|
|
5
5
|
font-style: normal;
|
|
6
|
-
src: url("./kbq-icons-11.
|
|
7
|
-
url("./kbq-icons-11.
|
|
6
|
+
src: url("./kbq-icons-11.5.0.ttf?8921da62bd07a2c0311132f940403bc0") format("truetype"),
|
|
7
|
+
url("./kbq-icons-11.5.0.woff?8921da62bd07a2c0311132f940403bc0") format("woff");
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
.kbq {
|
|
12
|
-
font-family: "Koobiq Icons 11.
|
|
12
|
+
font-family: "Koobiq Icons 11.5.0";
|
|
13
13
|
display:inline-block;
|
|
14
14
|
vertical-align:middle;
|
|
15
15
|
line-height:1;
|
|
@@ -6994,3 +6994,27 @@ transform:rotate(0.001deg);
|
|
|
6994
6994
|
.kbq-cloud-half_24:before {
|
|
6995
6995
|
content: "\f9c4";
|
|
6996
6996
|
}
|
|
6997
|
+
.kbq-arrow-up-to-bracket_16 {
|
|
6998
|
+
font-size: 16px;
|
|
6999
|
+
}
|
|
7000
|
+
.kbq-arrow-up-to-bracket_16:before {
|
|
7001
|
+
content: "\f9c5";
|
|
7002
|
+
}
|
|
7003
|
+
.kbq-arrow-up-to-bracket_24 {
|
|
7004
|
+
font-size: 24px;
|
|
7005
|
+
}
|
|
7006
|
+
.kbq-arrow-up-to-bracket_24:before {
|
|
7007
|
+
content: "\f9c6";
|
|
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.
|
|
5
|
+
<title>kbq-icons-11.5.0</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.
|
|
92
|
+
<link rel="stylesheet" type="text/css" href="kbq-icons-11.5.0.css" />
|
|
93
93
|
</head>
|
|
94
94
|
<body>
|
|
95
|
-
<h1>kbq-icons-11.
|
|
95
|
+
<h1>kbq-icons-11.5.0</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>
|
|
@@ -5951,6 +5963,18 @@
|
|
|
5951
5963
|
<span class='label'>arrow-up-xs_16</span>
|
|
5952
5964
|
</span>
|
|
5953
5965
|
</div>
|
|
5966
|
+
<div class="icon" data-name="arrow-up-to-bracket_24" title="arrow-up-to-bracket_24">
|
|
5967
|
+
<span class="inner">
|
|
5968
|
+
<i class="kbq kbq-arrow-up-to-bracket_24" aria-hidden="true"></i>
|
|
5969
|
+
<span class='label'>arrow-up-to-bracket_24</span>
|
|
5970
|
+
</span>
|
|
5971
|
+
</div>
|
|
5972
|
+
<div class="icon" data-name="arrow-up-to-bracket_16" title="arrow-up-to-bracket_16">
|
|
5973
|
+
<span class="inner">
|
|
5974
|
+
<i class="kbq kbq-arrow-up-to-bracket_16" aria-hidden="true"></i>
|
|
5975
|
+
<span class='label'>arrow-up-to-bracket_16</span>
|
|
5976
|
+
</span>
|
|
5977
|
+
</div>
|
|
5954
5978
|
<div class="icon" data-name="arrow-up-s_24" title="arrow-up-s_24">
|
|
5955
5979
|
<span class="inner">
|
|
5956
5980
|
<i class="kbq kbq-arrow-up-s_24" aria-hidden="true"></i>
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
|
|
2
2
|
@font-face {
|
|
3
|
-
font-family: "Koobiq Icons 11.
|
|
3
|
+
font-family: "Koobiq Icons 11.5.0";
|
|
4
4
|
font-weight: normal;
|
|
5
5
|
font-style: normal;
|
|
6
|
-
src: url("./kbq-icons-11.
|
|
7
|
-
url("./kbq-icons-11.
|
|
6
|
+
src: url("./kbq-icons-11.5.0.ttf?8921da62bd07a2c0311132f940403bc0") format("truetype"),
|
|
7
|
+
url("./kbq-icons-11.5.0.woff?8921da62bd07a2c0311132f940403bc0") format("woff");
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
.kbq {
|
|
12
|
-
font-family: "Koobiq Icons 11.
|
|
12
|
+
font-family: "Koobiq Icons 11.5.0";
|
|
13
13
|
display:inline-block;
|
|
14
14
|
vertical-align:middle;
|
|
15
15
|
line-height:1;
|
|
@@ -6994,3 +6994,27 @@ transform:rotate(0.001deg);
|
|
|
6994
6994
|
content: "\f9c4";
|
|
6995
6995
|
}
|
|
6996
6996
|
}
|
|
6997
|
+
.kbq-arrow-up-to-bracket_16 {
|
|
6998
|
+
font-size: 16px;
|
|
6999
|
+
&:before {
|
|
7000
|
+
content: "\f9c5";
|
|
7001
|
+
}
|
|
7002
|
+
}
|
|
7003
|
+
.kbq-arrow-up-to-bracket_24 {
|
|
7004
|
+
font-size: 24px;
|
|
7005
|
+
&:before {
|
|
7006
|
+
content: "\f9c6";
|
|
7007
|
+
}
|
|
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
|
package/fonts/kbq-icons.css
CHANGED
|
@@ -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?
|
|
7
|
-
url("./kbq-icons.woff?
|
|
6
|
+
src: url("./kbq-icons.ttf?922382ffa066f48801ea776f0a296327") format("truetype"),
|
|
7
|
+
url("./kbq-icons.woff?922382ffa066f48801ea776f0a296327") format("woff");
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
|
|
@@ -6994,3 +6994,27 @@ transform:rotate(0.001deg);
|
|
|
6994
6994
|
.kbq-cloud-half_24:before {
|
|
6995
6995
|
content: "\f9c4";
|
|
6996
6996
|
}
|
|
6997
|
+
.kbq-arrow-up-to-bracket_16 {
|
|
6998
|
+
font-size: 16px;
|
|
6999
|
+
}
|
|
7000
|
+
.kbq-arrow-up-to-bracket_16:before {
|
|
7001
|
+
content: "\f9c5";
|
|
7002
|
+
}
|
|
7003
|
+
.kbq-arrow-up-to-bracket_24 {
|
|
7004
|
+
font-size: 24px;
|
|
7005
|
+
}
|
|
7006
|
+
.kbq-arrow-up-to-bracket_24:before {
|
|
7007
|
+
content: "\f9c6";
|
|
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
|
+
}
|
package/fonts/kbq-icons.html
CHANGED
|
@@ -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>
|
|
@@ -5951,6 +5963,18 @@
|
|
|
5951
5963
|
<span class='label'>arrow-up-xs_16</span>
|
|
5952
5964
|
</span>
|
|
5953
5965
|
</div>
|
|
5966
|
+
<div class="icon" data-name="arrow-up-to-bracket_24" title="arrow-up-to-bracket_24">
|
|
5967
|
+
<span class="inner">
|
|
5968
|
+
<i class="kbq kbq-arrow-up-to-bracket_24" aria-hidden="true"></i>
|
|
5969
|
+
<span class='label'>arrow-up-to-bracket_24</span>
|
|
5970
|
+
</span>
|
|
5971
|
+
</div>
|
|
5972
|
+
<div class="icon" data-name="arrow-up-to-bracket_16" title="arrow-up-to-bracket_16">
|
|
5973
|
+
<span class="inner">
|
|
5974
|
+
<i class="kbq kbq-arrow-up-to-bracket_16" aria-hidden="true"></i>
|
|
5975
|
+
<span class='label'>arrow-up-to-bracket_16</span>
|
|
5976
|
+
</span>
|
|
5977
|
+
</div>
|
|
5954
5978
|
<div class="icon" data-name="arrow-up-s_24" title="arrow-up-s_24">
|
|
5955
5979
|
<span class="inner">
|
|
5956
5980
|
<i class="kbq kbq-arrow-up-s_24" aria-hidden="true"></i>
|
package/fonts/kbq-icons.scss
CHANGED
|
@@ -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?
|
|
7
|
-
url("./kbq-icons.woff?
|
|
6
|
+
src: url("./kbq-icons.ttf?922382ffa066f48801ea776f0a296327") format("truetype"),
|
|
7
|
+
url("./kbq-icons.woff?922382ffa066f48801ea776f0a296327") format("woff");
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
|
|
@@ -6994,3 +6994,27 @@ transform:rotate(0.001deg);
|
|
|
6994
6994
|
content: "\f9c4";
|
|
6995
6995
|
}
|
|
6996
6996
|
}
|
|
6997
|
+
.kbq-arrow-up-to-bracket_16 {
|
|
6998
|
+
font-size: 16px;
|
|
6999
|
+
&:before {
|
|
7000
|
+
content: "\f9c5";
|
|
7001
|
+
}
|
|
7002
|
+
}
|
|
7003
|
+
.kbq-arrow-up-to-bracket_24 {
|
|
7004
|
+
font-size: 24px;
|
|
7005
|
+
&:before {
|
|
7006
|
+
content: "\f9c6";
|
|
7007
|
+
}
|
|
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
|
+
}
|
package/fonts/kbq-icons.ttf
CHANGED
|
Binary file
|
package/fonts/kbq-icons.woff
CHANGED
|
Binary file
|