@skyux/icons 8.1.0 → 8.3.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 +14 -0
- package/README.md +54 -33
- package/assets/manifest.json +19 -40
- package/assets/svg/skyux-icons.svg +14 -14
- package/module/__get-icon-manifest.js +1 -1
- package/module/version.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [8.3.0](https://github.com/blackbaud/skyux-icons/compare/8.2.0...8.3.0) (2025-07-07)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add person-money fluent icon ([#191](https://github.com/blackbaud/skyux-icons/issues/191)) ([ececa68](https://github.com/blackbaud/skyux-icons/commit/ececa68b1cbb6e42e61b7d153fdb5165bbfa65ec))
|
|
9
|
+
|
|
10
|
+
## [8.2.0](https://github.com/blackbaud/skyux-icons/compare/8.1.0...8.2.0) (2025-06-16)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* add brands and usage updates ([#187](https://github.com/blackbaud/skyux-icons/issues/187)) ([da967ab](https://github.com/blackbaud/skyux-icons/commit/da967ab14789fddd0c9ea07e947389bacdd21226))
|
|
16
|
+
|
|
3
17
|
## [8.1.0](https://github.com/blackbaud/skyux-icons/compare/8.0.0...8.1.0) (2025-06-04)
|
|
4
18
|
|
|
5
19
|
|
package/README.md
CHANGED
|
@@ -1,63 +1,84 @@
|
|
|
1
1
|
# skyux-icons
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
## Overview
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
SKY UX icons is a package that provides icon assets for the SKY UX framework.
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
The URLs in the examples point to minified files. If you would like to load the non-minified file for debugging, remove the `.min` portion of the file name before the extension.
|
|
10
|
-
|
|
11
|
-
### Importing the stylesheet via HTML
|
|
12
|
-
|
|
13
|
-
`<link rel="stylesheet" href="https://sky.blackbaudcdn.net/static/skyux-icons/<version>/assets/skyux-icons.min.css">`
|
|
14
|
-
|
|
15
|
-
### Importing the stylesheet via CSS `@import`
|
|
7
|
+
## Usage
|
|
16
8
|
|
|
17
|
-
|
|
9
|
+
To use SKY UX icons, use the [SKY UX icon component](https://developer.blackbaud.com/skyux/components/icon).
|
|
18
10
|
|
|
19
|
-
|
|
11
|
+
## Adding new icons
|
|
20
12
|
|
|
21
|
-
|
|
13
|
+
### Adding Fluent icons
|
|
22
14
|
|
|
23
|
-
|
|
15
|
+
1. Add the icon name to the alphabetized list in `src/svg/fluent-icon-list.txt`
|
|
16
|
+
- Do not include any variant or size information
|
|
17
|
+
- Verify the icon name in the [Fluent icon GitHub repo](https://github.com/microsoft/fluentui-system-icons/tree/main/assets)
|
|
18
|
+
2. Release the `skyux-icons` repo following the [release process](#release-process)
|
|
24
19
|
|
|
25
|
-
|
|
20
|
+
### Adding custom icons
|
|
26
21
|
|
|
27
|
-
|
|
22
|
+
#### Single color icons
|
|
28
23
|
|
|
29
|
-
`<
|
|
24
|
+
1. Add SVG files to `src/svg` using file name format: `<name>-<size>-<variant>.svg`
|
|
25
|
+
2. All sizes require both a solid and line variant
|
|
26
|
+
3. SVG files should contain only one path
|
|
27
|
+
4. SVG files must not contain:
|
|
28
|
+
- Classes
|
|
29
|
+
- `<style>` elements
|
|
30
|
+
- Inline styles
|
|
31
|
+
5. Release the `skyux-icons` repo following the [release process](#release-process)
|
|
30
32
|
|
|
31
|
-
|
|
33
|
+
#### Mutli-color icons
|
|
32
34
|
|
|
33
|
-
|
|
35
|
+
SKY UX icons can support 2 colors.
|
|
34
36
|
|
|
35
|
-
|
|
37
|
+
1. Add SVG files to `src/svg` using file name format: `<name>-<size>-<variant>.svg`
|
|
38
|
+
2. All sizes require both a solid and line variant
|
|
39
|
+
3. Use these classes on each path for colors:
|
|
40
|
+
- Primary: `sky-i-path-1`
|
|
41
|
+
- Secondary: `sky-i-path-2`
|
|
42
|
+
4. SVG files must not contain:
|
|
43
|
+
- `<style>` elements
|
|
44
|
+
- Inline styles
|
|
45
|
+
5. Release the `skyux-icons` repo following the [release process](#release-process)
|
|
36
46
|
|
|
37
|
-
|
|
47
|
+
#### Branded icons
|
|
38
48
|
|
|
39
|
-
|
|
49
|
+
Branded icons support maintaining brand color customization.
|
|
40
50
|
|
|
41
|
-
|
|
51
|
+
1. Add SVG files to `src/svg/branded` using file name format: `<name>-<size>-<variant>.svg`
|
|
52
|
+
2. All sizes require both a solid and line variant
|
|
53
|
+
3. SVG files must not contain:
|
|
54
|
+
- `<style>` elements
|
|
55
|
+
- Inline styles
|
|
56
|
+
4. Release the `skyux-icons` repo following the [release process](#release-process)
|
|
42
57
|
|
|
43
|
-
|
|
58
|
+
## Release Process
|
|
44
59
|
|
|
45
|
-
|
|
60
|
+
### Minor Version
|
|
46
61
|
|
|
47
|
-
|
|
62
|
+
1. Release `skyux-icons`
|
|
63
|
+
2. If metadata changes have been made, update the `@skyux/icons` package version in `@skyux/icon` and release the monorepo.
|
|
48
64
|
|
|
49
|
-
|
|
65
|
+
### Major Version
|
|
50
66
|
|
|
51
|
-
|
|
67
|
+
1. Release `skyux-icons`
|
|
68
|
+
2. Update `@skyux/icon` component:
|
|
69
|
+
- `@skyux/icons` package version
|
|
70
|
+
- the major version in the CDN URL in `SkyIconSvgResolverService`
|
|
71
|
+
3. Release the monorepo
|
|
72
|
+
4. Update the docs SPA and omnibar SPA packages
|
|
52
73
|
|
|
53
|
-
|
|
74
|
+
## Maintenance
|
|
54
75
|
|
|
55
|
-
|
|
76
|
+
**Important:** All updates to the `@fluentui/svg-icons` package require a breaking change release due to potential visual changes in any version (major, minor, or patch).
|
|
56
77
|
|
|
57
|
-
|
|
78
|
+
To create a breaking change, add `!` to your commit title, i.e. `feat!: update fluent icon version`
|
|
58
79
|
|
|
59
80
|
## Legal
|
|
60
81
|
|
|
61
|
-
Icons
|
|
82
|
+
Icons that have an `owner` property in the `metadata.json` file are the property of the listed organization.
|
|
62
83
|
|
|
63
84
|
Icons owned by `Webalys, LLC` must only be used within the context of the SKY UX user experience framework.
|
package/assets/manifest.json
CHANGED
|
@@ -265,7 +265,9 @@
|
|
|
265
265
|
{
|
|
266
266
|
"name": "chevron-down",
|
|
267
267
|
"usage": [
|
|
268
|
-
"Expand"
|
|
268
|
+
"Expand",
|
|
269
|
+
"Next (down)",
|
|
270
|
+
"Collapse tree node"
|
|
269
271
|
],
|
|
270
272
|
"faNames": [
|
|
271
273
|
"chevron-down",
|
|
@@ -277,7 +279,8 @@
|
|
|
277
279
|
{
|
|
278
280
|
"name": "chevron-up",
|
|
279
281
|
"usage": [
|
|
280
|
-
"Collapse"
|
|
282
|
+
"Collapse",
|
|
283
|
+
"Previous (up)"
|
|
281
284
|
],
|
|
282
285
|
"faNames": [
|
|
283
286
|
"chevron-up",
|
|
@@ -289,7 +292,8 @@
|
|
|
289
292
|
{
|
|
290
293
|
"name": "chevron-right",
|
|
291
294
|
"usage": [
|
|
292
|
-
"
|
|
295
|
+
"Next",
|
|
296
|
+
"Expand tree node"
|
|
293
297
|
],
|
|
294
298
|
"faNames": [
|
|
295
299
|
"chevron-right",
|
|
@@ -301,7 +305,7 @@
|
|
|
301
305
|
{
|
|
302
306
|
"name": "chevron-left",
|
|
303
307
|
"usage": [
|
|
304
|
-
"
|
|
308
|
+
"Previous"
|
|
305
309
|
],
|
|
306
310
|
"faNames": [
|
|
307
311
|
"chevron-left",
|
|
@@ -313,7 +317,8 @@
|
|
|
313
317
|
{
|
|
314
318
|
"name": "double-chevron-left",
|
|
315
319
|
"usage": [
|
|
316
|
-
"Collapse navigation"
|
|
320
|
+
"Collapse navigation",
|
|
321
|
+
"Collapse field"
|
|
317
322
|
],
|
|
318
323
|
"faNames": [
|
|
319
324
|
"angle-double-left"
|
|
@@ -461,23 +466,23 @@
|
|
|
461
466
|
{
|
|
462
467
|
"name": "help-line",
|
|
463
468
|
"usage": [
|
|
464
|
-
"Help"
|
|
469
|
+
"Help",
|
|
470
|
+
"Information"
|
|
465
471
|
],
|
|
466
472
|
"faNames": [
|
|
467
|
-
"
|
|
468
|
-
"question-circle-o"
|
|
473
|
+
"info-circle"
|
|
469
474
|
],
|
|
470
|
-
"iconName": "
|
|
475
|
+
"iconName": "info",
|
|
471
476
|
"code": 59434
|
|
472
477
|
},
|
|
473
478
|
{
|
|
474
479
|
"name": "help-solid",
|
|
475
480
|
"usage": [
|
|
476
|
-
"Help"
|
|
481
|
+
"Help",
|
|
482
|
+
"Information"
|
|
477
483
|
],
|
|
478
484
|
"faNames": [
|
|
479
|
-
"
|
|
480
|
-
"question-circle-o"
|
|
485
|
+
"info-circle"
|
|
481
486
|
],
|
|
482
487
|
"code": 59399
|
|
483
488
|
},
|
|
@@ -1461,34 +1466,6 @@
|
|
|
1461
1466
|
],
|
|
1462
1467
|
"code": 59529
|
|
1463
1468
|
},
|
|
1464
|
-
{
|
|
1465
|
-
"name": "collapse-2-line",
|
|
1466
|
-
"usage": [
|
|
1467
|
-
"Collapse nav"
|
|
1468
|
-
],
|
|
1469
|
-
"faNames": [
|
|
1470
|
-
"angle-double-left"
|
|
1471
|
-
],
|
|
1472
|
-
"owner": [
|
|
1473
|
-
"Webalys, LLC"
|
|
1474
|
-
],
|
|
1475
|
-
"iconName": "chevron-double-left",
|
|
1476
|
-
"code": 59530
|
|
1477
|
-
},
|
|
1478
|
-
{
|
|
1479
|
-
"name": "expand-2-line",
|
|
1480
|
-
"usage": [
|
|
1481
|
-
"Expand nav"
|
|
1482
|
-
],
|
|
1483
|
-
"faNames": [
|
|
1484
|
-
"angle-double-right"
|
|
1485
|
-
],
|
|
1486
|
-
"owner": [
|
|
1487
|
-
"Webalys, LLC"
|
|
1488
|
-
],
|
|
1489
|
-
"iconName": "chevron-double-right",
|
|
1490
|
-
"code": 59534
|
|
1491
|
-
},
|
|
1492
1469
|
{
|
|
1493
1470
|
"name": "database-2-line",
|
|
1494
1471
|
"usage": [
|
|
@@ -2012,6 +1989,7 @@
|
|
|
2012
1989
|
"person-available",
|
|
2013
1990
|
"person-circle",
|
|
2014
1991
|
"person-lock",
|
|
1992
|
+
"person-money",
|
|
2015
1993
|
"person-note",
|
|
2016
1994
|
"person-support",
|
|
2017
1995
|
"person-tag",
|
|
@@ -2024,6 +2002,7 @@
|
|
|
2024
2002
|
"power",
|
|
2025
2003
|
"puzzle-piece",
|
|
2026
2004
|
"question",
|
|
2005
|
+
"question-circle",
|
|
2027
2006
|
"receipt",
|
|
2028
2007
|
"recycle",
|
|
2029
2008
|
"ribbon",
|