@workday/canvas-system-icons-web 3.0.35 → 3.0.36
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/arrowCornerDownLeft.d.ts +3 -0
- package/dist/commonjs/arrowCornerDownLeft.js +12 -0
- package/dist/commonjs/arrowCornerDownRight.d.ts +3 -0
- package/dist/commonjs/arrowCornerDownRight.js +12 -0
- package/dist/commonjs/arrowCornerUpLeft.d.ts +3 -0
- package/dist/commonjs/arrowCornerUpLeft.js +12 -0
- package/dist/commonjs/arrowCornerUpRight.d.ts +3 -0
- package/dist/commonjs/arrowCornerUpRight.js +12 -0
- package/dist/commonjs/index.d.ts +5 -1
- package/dist/commonjs/index.js +13 -1
- package/dist/es6/arrowCornerDownLeft.d.ts +3 -0
- package/dist/es6/arrowCornerDownLeft.js +10 -0
- package/dist/es6/arrowCornerDownRight.d.ts +3 -0
- package/dist/es6/arrowCornerDownRight.js +10 -0
- package/dist/es6/arrowCornerUpLeft.d.ts +3 -0
- package/dist/es6/arrowCornerUpLeft.js +10 -0
- package/dist/es6/arrowCornerUpRight.d.ts +3 -0
- package/dist/es6/arrowCornerUpRight.js +10 -0
- package/dist/es6/index.d.ts +9 -1
- package/dist/es6/index.js +9 -1
- package/dist/sprite/wd-system-icon-sprite.svg +1 -1
- package/dist/svg/wd-icon-arrow-corner-down-left.svg +5 -0
- package/dist/svg/wd-icon-arrow-corner-down-right.svg +5 -0
- package/dist/svg/wd-icon-arrow-corner-up-left.svg +5 -0
- package/dist/svg/wd-icon-arrow-corner-up-right.svg +5 -0
- package/dist/ts/arrowCornerDownLeft.ts +10 -0
- package/dist/ts/arrowCornerDownRight.ts +10 -0
- package/dist/ts/arrowCornerUpLeft.ts +10 -0
- package/dist/ts/arrowCornerUpRight.ts +10 -0
- package/dist/ts/index.ts +12 -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-arrow-corner-down-left wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24">
|
|
2
|
+
<g class="wd-icon-container">
|
|
3
|
+
<path d="M19 4.499A.5.5 0 0 1 19.5 4h1a.5.5 0 0 1 .5.499V8.99a5.994 5.994 0 0 1-5.999 5.988h-8.4l3.47 3.465a.5.5 0 0 1 0 .705l-.707.706a.5.5 0 0 1-.707 0l-5.511-5.502A.5.5 0 0 1 3 13.995c0-.128.047-.257.146-.355l5.511-5.502a.5.5 0 0 1 .707 0l.707.706a.5.5 0 0 1 0 .705l-3.439 3.433h8.369c2.209 0 4-1.787 4-3.992z" class="wd-icon-fill"/>
|
|
4
|
+
</g>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-arrow-corner-down-right wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24">
|
|
2
|
+
<g class="wd-icon-container">
|
|
3
|
+
<path d="M4.5 4a.5.5 0 0 1 .5.499V8.99a3.996 3.996 0 0 0 3.999 3.992h8.369l-3.44-3.433a.5.5 0 0 1 0-.705l.708-.706a.5.5 0 0 1 .707 0l5.512 5.502a.5.5 0 0 1 .145.355.5.5 0 0 1-.145.357l-5.512 5.502a.5.5 0 0 1-.707 0l-.707-.706a.5.5 0 0 1 0-.705l3.47-3.465h-8.4A5.993 5.993 0 0 1 3 8.99V4.499A.5.5 0 0 1 3.5 4z" class="wd-icon-fill"/>
|
|
4
|
+
</g>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-arrow-corner-up-left wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24">
|
|
2
|
+
<g class="wd-icon-container">
|
|
3
|
+
<path d="M19.5 20a.5.5 0 0 1-.5-.499V15.01a3.996 3.996 0 0 0-3.999-3.992H6.632l3.44 3.433a.5.5 0 0 1 0 .705l-.708.706a.5.5 0 0 1-.707 0L3.146 10.36A.5.5 0 0 1 3 10.005a.5.5 0 0 1 .146-.357l5.511-5.502a.5.5 0 0 1 .707 0l.707.706a.5.5 0 0 1 0 .705l-3.47 3.465h8.4A5.994 5.994 0 0 1 21 15.01v4.491a.5.5 0 0 1-.5.499z" class="wd-icon-fill"/>
|
|
4
|
+
</g>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-arrow-corner-up-right wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24">
|
|
2
|
+
<g class="wd-icon-container">
|
|
3
|
+
<path d="M4.5 20a.5.5 0 0 0 .5-.499V15.01a3.996 3.996 0 0 1 3.999-3.992h8.369l-3.44 3.433a.5.5 0 0 0 0 .705l.708.706a.5.5 0 0 0 .707 0l5.512-5.502a.5.5 0 0 0 .145-.355.5.5 0 0 0-.145-.357l-5.512-5.502a.5.5 0 0 0-.707 0l-.707.706a.5.5 0 0 0 0 .705l3.47 3.465h-8.4A5.994 5.994 0 0 0 3 15.01v4.491a.5.5 0 0 0 .5.499z" class="wd-icon-fill"/>
|
|
4
|
+
</g>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CanvasSystemIcon, CanvasIconTypes } from '@workday/design-assets-types'
|
|
2
|
+
const icon: CanvasSystemIcon = {
|
|
3
|
+
name: 'arrowCornerDownLeft',
|
|
4
|
+
type: CanvasIconTypes.System,
|
|
5
|
+
svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-arrow-corner-down-left wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24"><g class="wd-icon-container"><path d="M19 4.499A.5.5 0 0 1 19.5 4h1a.5.5 0 0 1 .5.499V8.99a5.994 5.994 0 0 1-5.999 5.988h-8.4l3.47 3.465a.5.5 0 0 1 0 .705l-.707.706a.5.5 0 0 1-.707 0l-5.511-5.502A.5.5 0 0 1 3 13.995c0-.128.047-.257.146-.355l5.511-5.502a.5.5 0 0 1 .707 0l.707.706a.5.5 0 0 1 0 .705l-3.439 3.433h8.369c2.209 0 4-1.787 4-3.992z" class="wd-icon-fill"/></g></svg>',
|
|
6
|
+
filename: 'wd-icon-arrow-corner-down-left.svg',
|
|
7
|
+
category: 'Navigation',
|
|
8
|
+
tags: ['bottom','left','return','enter','conversation','prompt','ai','chat','agent'],
|
|
9
|
+
}
|
|
10
|
+
export default icon
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CanvasSystemIcon, CanvasIconTypes } from '@workday/design-assets-types'
|
|
2
|
+
const icon: CanvasSystemIcon = {
|
|
3
|
+
name: 'arrowCornerDownRight',
|
|
4
|
+
type: CanvasIconTypes.System,
|
|
5
|
+
svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-arrow-corner-down-right wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24"><g class="wd-icon-container"><path d="M4.5 4a.5.5 0 0 1 .5.499V8.99a3.996 3.996 0 0 0 3.999 3.992h8.369l-3.44-3.433a.5.5 0 0 1 0-.705l.708-.706a.5.5 0 0 1 .707 0l5.512 5.502a.5.5 0 0 1 .145.355.5.5 0 0 1-.145.357l-5.512 5.502a.5.5 0 0 1-.707 0l-.707-.706a.5.5 0 0 1 0-.705l3.47-3.465h-8.4A5.993 5.993 0 0 1 3 8.99V4.499A.5.5 0 0 1 3.5 4z" class="wd-icon-fill"/></g></svg>',
|
|
6
|
+
filename: 'wd-icon-arrow-corner-down-right.svg',
|
|
7
|
+
category: 'Navigation',
|
|
8
|
+
tags: ['bottom','right','ai','chat','conversation','assistant','suggested','prompt'],
|
|
9
|
+
}
|
|
10
|
+
export default icon
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CanvasSystemIcon, CanvasIconTypes } from '@workday/design-assets-types'
|
|
2
|
+
const icon: CanvasSystemIcon = {
|
|
3
|
+
name: 'arrowCornerUpLeft',
|
|
4
|
+
type: CanvasIconTypes.System,
|
|
5
|
+
svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-arrow-corner-up-left wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24"><g class="wd-icon-container"><path d="M19.5 20a.5.5 0 0 1-.5-.499V15.01a3.996 3.996 0 0 0-3.999-3.992H6.632l3.44 3.433a.5.5 0 0 1 0 .705l-.708.706a.5.5 0 0 1-.707 0L3.146 10.36A.5.5 0 0 1 3 10.005a.5.5 0 0 1 .146-.357l5.511-5.502a.5.5 0 0 1 .707 0l.707.706a.5.5 0 0 1 0 .705l-3.47 3.465h8.4A5.994 5.994 0 0 1 21 15.01v4.491a.5.5 0 0 1-.5.499z" class="wd-icon-fill"/></g></svg>',
|
|
6
|
+
filename: 'wd-icon-arrow-corner-up-left.svg',
|
|
7
|
+
category: 'Navigation',
|
|
8
|
+
tags: ['top','left','ai','chat','conversation','assistant','suggested','prompt'],
|
|
9
|
+
}
|
|
10
|
+
export default icon
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CanvasSystemIcon, CanvasIconTypes } from '@workday/design-assets-types'
|
|
2
|
+
const icon: CanvasSystemIcon = {
|
|
3
|
+
name: 'arrowCornerUpRight',
|
|
4
|
+
type: CanvasIconTypes.System,
|
|
5
|
+
svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-arrow-corner-up-right wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24"><g class="wd-icon-container"><path d="M4.5 20a.5.5 0 0 0 .5-.499V15.01a3.996 3.996 0 0 1 3.999-3.992h8.369l-3.44 3.433a.5.5 0 0 0 0 .705l.708.706a.5.5 0 0 0 .707 0l5.512-5.502a.5.5 0 0 0 .145-.355.5.5 0 0 0-.145-.357l-5.512-5.502a.5.5 0 0 0-.707 0l-.707.706a.5.5 0 0 0 0 .705l3.47 3.465h-8.4A5.994 5.994 0 0 0 3 15.01v4.491a.5.5 0 0 0 .5.499z" class="wd-icon-fill"/></g></svg>',
|
|
6
|
+
filename: 'wd-icon-arrow-corner-up-right.svg',
|
|
7
|
+
category: 'Navigation',
|
|
8
|
+
tags: ['top','right','ai','chat','conversation','assistant','suggested','prompt'],
|
|
9
|
+
}
|
|
10
|
+
export default icon
|
package/dist/ts/index.ts
CHANGED
|
@@ -27,6 +27,10 @@ import antiJoinRightIcon from './antiJoinRight'
|
|
|
27
27
|
import arrayIcon from './array'
|
|
28
28
|
import arrowArcIcon from './arrowArc'
|
|
29
29
|
import arrowCircleIcon from './arrowCircle'
|
|
30
|
+
import arrowCornerDownLeftIcon from './arrowCornerDownLeft'
|
|
31
|
+
import arrowCornerDownRightIcon from './arrowCornerDownRight'
|
|
32
|
+
import arrowCornerUpLeftIcon from './arrowCornerUpLeft'
|
|
33
|
+
import arrowCornerUpRightIcon from './arrowCornerUpRight'
|
|
30
34
|
import arrowDiagonalSmallIcon from './arrowDiagonalSmall'
|
|
31
35
|
import arrowDownIcon from './arrowDown'
|
|
32
36
|
import arrowLeftSmallIcon from './arrowLeftSmall'
|
|
@@ -633,6 +637,10 @@ export {
|
|
|
633
637
|
arrayIcon,
|
|
634
638
|
arrowArcIcon,
|
|
635
639
|
arrowCircleIcon,
|
|
640
|
+
arrowCornerDownLeftIcon,
|
|
641
|
+
arrowCornerDownRightIcon,
|
|
642
|
+
arrowCornerUpLeftIcon,
|
|
643
|
+
arrowCornerUpRightIcon,
|
|
636
644
|
arrowDiagonalSmallIcon,
|
|
637
645
|
arrowDownIcon,
|
|
638
646
|
arrowLeftSmallIcon,
|
|
@@ -1239,6 +1247,10 @@ export enum CanvasSystemIcons {
|
|
|
1239
1247
|
Array = 'array',
|
|
1240
1248
|
ArrowArc = 'arrowArc',
|
|
1241
1249
|
ArrowCircle = 'arrowCircle',
|
|
1250
|
+
ArrowCornerDownLeft = 'arrowCornerDownLeft',
|
|
1251
|
+
ArrowCornerDownRight = 'arrowCornerDownRight',
|
|
1252
|
+
ArrowCornerUpLeft = 'arrowCornerUpLeft',
|
|
1253
|
+
ArrowCornerUpRight = 'arrowCornerUpRight',
|
|
1242
1254
|
ArrowDiagonalSmall = 'arrowDiagonalSmall',
|
|
1243
1255
|
ArrowDown = 'arrowDown',
|
|
1244
1256
|
ArrowLeftSmall = 'arrowLeftSmall',
|
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.36",
|
|
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)",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@workday/canvas-colors-web": "2.0.1",
|
|
35
|
-
"@workday/canvas-system-icons": "3.
|
|
35
|
+
"@workday/canvas-system-icons": "3.23.0",
|
|
36
36
|
"@workday/icon-utils": "1.0.7",
|
|
37
37
|
"svg-sprite": "^2.0.4"
|
|
38
38
|
},
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"access": "public",
|
|
41
41
|
"registry": "https://registry.npmjs.org"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "9ce1bdbf38be775c0ae21cf2564fb2b22e47bb5d"
|
|
44
44
|
}
|