@workday/canvas-system-icons-web 3.0.18 → 3.0.19
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 +8 -0
- package/dist/asset-list/wd-system-icons-list.json +1 -1
- package/dist/commonjs/index.d.ts +2 -1
- package/dist/commonjs/index.js +4 -1
- package/dist/commonjs/sparkle.d.ts +3 -0
- package/dist/commonjs/sparkle.js +12 -0
- package/dist/es6/index.d.ts +3 -1
- package/dist/es6/index.js +3 -1
- package/dist/es6/sparkle.d.ts +3 -0
- package/dist/es6/sparkle.js +10 -0
- package/dist/sprite/wd-system-icon-sprite.svg +1 -1
- package/dist/svg/wd-icon-sparkle.svg +5 -0
- package/dist/ts/index.ts +3 -0
- package/dist/ts/sparkle.ts +10 -0
- package/package.json +3 -3
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-sparkle wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24">
|
|
2
|
+
<g class="wd-icon-container">
|
|
3
|
+
<path fill-rule="evenodd" d="M13.5 2c.226 0 .486.137.542.436.376 2.002 1.185 3.697 2.428 4.985 1.242 1.287 2.928 2.178 5.078 2.555a.53.53 0 0 1 0 1.048c-2.15.377-3.836 1.268-5.078 2.555-1.243 1.288-2.052 2.983-2.428 4.984A.538.538 0 0 1 13.5 19a.538.538 0 0 1-.542-.436c-.376-2.002-1.185-3.697-2.428-4.985-1.242-1.287-2.928-2.178-5.078-2.555-.603-.105-.602-.943 0-1.048 2.15-.377 3.836-1.268 5.078-2.555 1.243-1.288 2.053-2.983 2.428-4.984A.538.538 0 0 1 13.5 2zM5.5 15c.14 0 .317.088.354.289.144.768.453 1.41.922 1.896.467.484 1.104.823 1.928.968.395.069.394.626 0 .695-.824.144-1.461.483-1.928.967-.469.485-.778 1.128-.922 1.896A.355.355 0 0 1 5.5 22a.355.355 0 0 1-.354-.289c-.144-.768-.453-1.41-.922-1.896-.467-.484-1.104-.823-1.928-.968-.395-.069-.394-.626 0-.695.824-.144 1.461-.483 1.928-.967.469-.485.778-1.128.922-1.896A.355.355 0 0 1 5.5 15z" class="wd-icon-fill" clip-rule="evenodd"/>
|
|
4
|
+
</g>
|
|
5
|
+
</svg>
|
package/dist/ts/index.ts
CHANGED
|
@@ -474,6 +474,7 @@ import sortDownIcon from './sortDown'
|
|
|
474
474
|
import sortUpIcon from './sortUp'
|
|
475
475
|
import sortZAIcon from './sortZA'
|
|
476
476
|
import sortIcon from './sort'
|
|
477
|
+
import sparkleIcon from './sparkle'
|
|
477
478
|
import speechBubbleIcon from './speechBubble'
|
|
478
479
|
import speechExclamationIcon from './speechExclamation'
|
|
479
480
|
import splitSmallIcon from './splitSmall'
|
|
@@ -1041,6 +1042,7 @@ export {
|
|
|
1041
1042
|
sortUpIcon,
|
|
1042
1043
|
sortZAIcon,
|
|
1043
1044
|
sortIcon,
|
|
1045
|
+
sparkleIcon,
|
|
1044
1046
|
speechBubbleIcon,
|
|
1045
1047
|
speechExclamationIcon,
|
|
1046
1048
|
splitSmallIcon,
|
|
@@ -1608,6 +1610,7 @@ export enum CanvasSystemIcons {
|
|
|
1608
1610
|
SortUp = 'sortUp',
|
|
1609
1611
|
SortZA = 'sortZA',
|
|
1610
1612
|
Sort = 'sort',
|
|
1613
|
+
Sparkle = 'sparkle',
|
|
1611
1614
|
SpeechBubble = 'speechBubble',
|
|
1612
1615
|
SpeechExclamation = 'speechExclamation',
|
|
1613
1616
|
SplitSmall = 'splitSmall',
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CanvasSystemIcon, CanvasIconTypes } from '@workday/design-assets-types'
|
|
2
|
+
const icon: CanvasSystemIcon = {
|
|
3
|
+
name: 'sparkle',
|
|
4
|
+
type: CanvasIconTypes.System,
|
|
5
|
+
svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-sparkle wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24"><g class="wd-icon-container"><path fill-rule="evenodd" d="M13.5 2c.226 0 .486.137.542.436.376 2.002 1.185 3.697 2.428 4.985 1.242 1.287 2.928 2.178 5.078 2.555a.53.53 0 0 1 0 1.048c-2.15.377-3.836 1.268-5.078 2.555-1.243 1.288-2.052 2.983-2.428 4.984A.538.538 0 0 1 13.5 19a.538.538 0 0 1-.542-.436c-.376-2.002-1.185-3.697-2.428-4.985-1.242-1.287-2.928-2.178-5.078-2.555-.603-.105-.602-.943 0-1.048 2.15-.377 3.836-1.268 5.078-2.555 1.243-1.288 2.053-2.983 2.428-4.984A.538.538 0 0 1 13.5 2zM5.5 15c.14 0 .317.088.354.289.144.768.453 1.41.922 1.896.467.484 1.104.823 1.928.968.395.069.394.626 0 .695-.824.144-1.461.483-1.928.967-.469.485-.778 1.128-.922 1.896A.355.355 0 0 1 5.5 22a.355.355 0 0 1-.354-.289c-.144-.768-.453-1.41-.922-1.896-.467-.484-1.104-.823-1.928-.968-.395-.069-.394-.626 0-.695.824-.144 1.461-.483 1.928-.967.469-.485.778-1.128.922-1.896A.355.355 0 0 1 5.5 15z" class="wd-icon-fill" clip-rule="evenodd"/></g></svg>',
|
|
6
|
+
filename: 'wd-icon-sparkle.svg',
|
|
7
|
+
category: 'Core',
|
|
8
|
+
tags: ['ai','star','twinkle','shine','magic'],
|
|
9
|
+
}
|
|
10
|
+
export default icon
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@workday/canvas-system-icons-web",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.19",
|
|
4
4
|
"description": "Workday system icons for web",
|
|
5
5
|
"license": "CC-BY-ND-4.0",
|
|
6
6
|
"author": "Workday, Inc. (https://www.workday.com)",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@workday/canvas-colors-web": "2.0.0",
|
|
36
|
-
"@workday/canvas-system-icons": "3.
|
|
36
|
+
"@workday/canvas-system-icons": "3.14.0",
|
|
37
37
|
"@workday/icon-utils": "1.0.4",
|
|
38
38
|
"svg-sprite": "^1.3.7"
|
|
39
39
|
},
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"access": "public",
|
|
42
42
|
"registry": "https://registry.npmjs.org"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "5c5d8cb0eae289a75e6dfeef8cb7248ec67ea7c7"
|
|
45
45
|
}
|