@workday/canvas-system-icons-web 3.0.29 → 3.0.31
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 +16 -0
- package/dist/asset-list/wd-system-icons-list.json +1 -1
- package/dist/commonjs/accounts.js +1 -1
- package/dist/commonjs/antiJoinLeft.d.ts +3 -0
- package/dist/commonjs/antiJoinLeft.js +12 -0
- package/dist/commonjs/antiJoinRight.d.ts +3 -0
- package/dist/commonjs/antiJoinRight.js +12 -0
- package/dist/commonjs/bookOpen.js +1 -1
- package/dist/commonjs/canvas.d.ts +3 -0
- package/dist/commonjs/canvas.js +12 -0
- package/dist/commonjs/cart.js +1 -1
- package/dist/commonjs/componentEdit.js +1 -1
- package/dist/commonjs/documentStar.js +1 -1
- package/dist/commonjs/filterX.d.ts +3 -0
- package/dist/commonjs/filterX.js +12 -0
- package/dist/commonjs/findInventory.js +1 -1
- package/dist/commonjs/index.d.ts +6 -1
- package/dist/commonjs/index.js +16 -1
- package/dist/commonjs/peopleRecruiting.js +1 -1
- package/dist/commonjs/pinSlash.d.ts +3 -0
- package/dist/commonjs/pinSlash.js +12 -0
- package/dist/commonjs/taskPay.js +1 -1
- package/dist/es6/accounts.js +1 -1
- package/dist/es6/antiJoinLeft.d.ts +3 -0
- package/dist/es6/antiJoinLeft.js +10 -0
- package/dist/es6/antiJoinRight.d.ts +3 -0
- package/dist/es6/antiJoinRight.js +10 -0
- package/dist/es6/bookOpen.js +1 -1
- package/dist/es6/canvas.d.ts +3 -0
- package/dist/es6/canvas.js +10 -0
- package/dist/es6/cart.js +1 -1
- package/dist/es6/componentEdit.js +1 -1
- package/dist/es6/documentStar.js +1 -1
- package/dist/es6/filterX.d.ts +3 -0
- package/dist/es6/filterX.js +10 -0
- package/dist/es6/findInventory.js +1 -1
- package/dist/es6/index.d.ts +11 -1
- package/dist/es6/index.js +11 -1
- package/dist/es6/peopleRecruiting.js +1 -1
- package/dist/es6/pinSlash.d.ts +3 -0
- package/dist/es6/pinSlash.js +10 -0
- package/dist/es6/taskPay.js +1 -1
- package/dist/sprite/wd-system-icon-sprite.svg +1 -1
- package/dist/svg/wd-icon-accounts.svg +7 -4
- package/dist/svg/wd-icon-anti-join-left.svg +7 -0
- package/dist/svg/wd-icon-anti-join-right.svg +7 -0
- package/dist/svg/wd-icon-book-open.svg +4 -1
- package/dist/svg/wd-icon-canvas.svg +7 -0
- package/dist/svg/wd-icon-cart.svg +7 -4
- package/dist/svg/wd-icon-component-edit.svg +9 -2
- package/dist/svg/wd-icon-document-star.svg +1 -0
- package/dist/svg/wd-icon-filter-x.svg +11 -0
- package/dist/svg/wd-icon-find-inventory.svg +5 -2
- package/dist/svg/wd-icon-people-recruiting.svg +5 -3
- package/dist/svg/wd-icon-pin-slash.svg +12 -0
- package/dist/svg/wd-icon-task-pay.svg +13 -3
- package/dist/ts/accounts.ts +1 -1
- package/dist/ts/antiJoinLeft.ts +10 -0
- package/dist/ts/antiJoinRight.ts +10 -0
- package/dist/ts/bookOpen.ts +1 -1
- package/dist/ts/canvas.ts +10 -0
- package/dist/ts/cart.ts +1 -1
- package/dist/ts/componentEdit.ts +1 -1
- package/dist/ts/documentStar.ts +1 -1
- package/dist/ts/filterX.ts +10 -0
- package/dist/ts/findInventory.ts +1 -1
- package/dist/ts/index.ts +15 -0
- package/dist/ts/peopleRecruiting.ts +1 -1
- package/dist/ts/pinSlash.ts +10 -0
- package/dist/ts/taskPay.ts +1 -1
- package/package.json +3 -3
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CanvasIconTypes } from '@workday/design-assets-types';
|
|
2
|
+
var icon = {
|
|
3
|
+
name: 'antiJoinLeft',
|
|
4
|
+
type: CanvasIconTypes.System,
|
|
5
|
+
svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-anti-join-left wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24"><g class="wd-icon-container"><g class="wd-icon-container"><path fill-rule="evenodd" d="M12 16.472a6 6 0 1 0 0-8.944 6 6 0 1 0 0 8.944Zm-1.25-7.378A6 6 0 0 0 10 12c0 1.054.272 2.045.75 2.906A4 4 0 0 0 12 12c0-1.144-.48-2.176-1.25-2.906Zm2.5 0c.478.861.75 1.852.75 2.906a6 6 0 0 1-.75 2.906 4 4 0 1 0 0-5.811Z" class="wd-icon-fill" clip-rule="evenodd"/></g></g></svg>',
|
|
6
|
+
filename: 'wd-icon-anti-join-left.svg',
|
|
7
|
+
category: 'Core',
|
|
8
|
+
tags: ['combine', 'reverse', 'opposite', 'boolean', 'end'],
|
|
9
|
+
};
|
|
10
|
+
export default icon;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CanvasIconTypes } from '@workday/design-assets-types';
|
|
2
|
+
var icon = {
|
|
3
|
+
name: 'antiJoinRight',
|
|
4
|
+
type: CanvasIconTypes.System,
|
|
5
|
+
svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-anti-join-right wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24"><g class="wd-icon-container"><g class="wd-icon-container"><path fill-rule="evenodd" d="M12 16.472a6 6 0 1 1 0-8.944 6 6 0 1 1 0 8.944Zm1.25-7.378c.478.861.75 1.852.75 2.906a6 6 0 0 1-.75 2.906A4 4 0 0 1 12 12c0-1.144.48-2.176 1.25-2.906Zm-2.5 0A6 6 0 0 0 10 12c0 1.054.272 2.045.75 2.906a4 4 0 1 1 0-5.811Z" class="wd-icon-fill" clip-rule="evenodd"/></g></g></svg>',
|
|
6
|
+
filename: 'wd-icon-anti-join-right.svg',
|
|
7
|
+
category: 'Core',
|
|
8
|
+
tags: ['combine', 'reverse', 'opposite', 'boolean', 'start'],
|
|
9
|
+
};
|
|
10
|
+
export default icon;
|
package/dist/es6/bookOpen.js
CHANGED
|
@@ -2,7 +2,7 @@ import { CanvasIconTypes } from '@workday/design-assets-types';
|
|
|
2
2
|
var icon = {
|
|
3
3
|
name: 'bookOpen',
|
|
4
4
|
type: CanvasIconTypes.System,
|
|
5
|
-
svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-book-open wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24"><g class="wd-icon-container"><path fill-rule="evenodd" d="M3 5.429a.48.48 0 0 1 .225-.411C6.197 3.199 10.05 4.18 12 5.162c1.95-.981 5.803-1.963 8.775-.144a.48.48 0 0 1 .225.41v12.856c0 .372-.397.622-.751.51-2.067-.656-5.349-.491-7.967 1.125a.54.54 0 0 1-.564 0c-2.618-1.616-5.9-1.781-7.967-1.126-.354.113-.751-.137-.751-.51zm8 1.47a9.6 9.6 0 0 0-3.182-.867c-1-.089-1.965.002-2.818.332v10.14c1.842-.203 3.99.023 6 .826zm2 10.43a12.7 12.7 0 0 1 6-.824V6.364c-.853-.33-1.818-.421-2.818-.332A9.6 9.6 0 0 0 13 6.899z" class="wd-icon-fill" clip-rule="evenodd"/></g></svg>',
|
|
5
|
+
svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-book-open wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24"><g class="wd-icon-container"><g class="wd-icon-container"><path d="M3 5.429a.48.48 0 0 1 .225-.411C6.197 3.199 10.05 4.18 12 5.162c1.95-.981 5.803-1.963 8.775-.144a.48.48 0 0 1 .225.41v12.856c0 .372-.397.622-.751.51-2.067-.656-5.349-.491-7.967 1.125a.54.54 0 0 1-.564 0c-2.618-1.616-5.9-1.781-7.967-1.126-.354.113-.751-.137-.751-.51z" class="wd-icon-background"/><path fill-rule="evenodd" d="M3 5.429a.48.48 0 0 1 .225-.411C6.197 3.199 10.05 4.18 12 5.162c1.95-.981 5.803-1.963 8.775-.144a.48.48 0 0 1 .225.41v12.856c0 .372-.397.622-.751.51-2.067-.656-5.349-.491-7.967 1.125a.54.54 0 0 1-.564 0c-2.618-1.616-5.9-1.781-7.967-1.126-.354.113-.751-.137-.751-.51zm8 1.47a9.6 9.6 0 0 0-3.182-.867c-1-.089-1.965.002-2.818.332v10.14c1.842-.203 3.99.023 6 .826zm2 10.43a12.7 12.7 0 0 1 6-.824V6.364c-.853-.33-1.818-.421-2.818-.332A9.6 9.6 0 0 0 13 6.899z" class="wd-icon-fill" clip-rule="evenodd"/></g></g></svg>',
|
|
6
6
|
filename: 'wd-icon-book-open.svg',
|
|
7
7
|
category: 'Objects',
|
|
8
8
|
tags: ['read', 'text', 'document', 'file', 'report'],
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CanvasIconTypes } from '@workday/design-assets-types';
|
|
2
|
+
var icon = {
|
|
3
|
+
name: 'canvas',
|
|
4
|
+
type: CanvasIconTypes.System,
|
|
5
|
+
svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-canvas wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24"><g class="wd-icon-container"><g class="wd-icon-container"><path d="M5.858 18.987a9.92 9.92 0 0 1-2.855-7.23 9.92 9.92 0 0 1 2.99-6.864 10.04 10.04 0 0 1 6.932-2.892 9.97 9.97 0 0 1 7.282 2.995 2.748 2.748 0 0 1-.405 4.199 2.76 2.76 0 0 1-3.533-.336 4.5 4.5 0 0 0-3.228-1.35c-1.239 0-2.393.487-3.25 1.377a4.45 4.45 0 0 0-1.257 3.295c.09 2.325 1.989 4.221 4.323 4.315a4.53 4.53 0 0 0 3.457-1.395.503.503 0 0 1 .705-.018.494.494 0 0 1 .018.702 5.53 5.53 0 0 1-4.225 1.704c-2.846-.117-5.167-2.433-5.275-5.276a5.44 5.44 0 0 1 1.536-4.02 5.48 5.48 0 0 1 3.973-1.681c1.495 0 2.896.586 3.942 1.65a1.76 1.76 0 0 0 2.253.21 1.759 1.759 0 0 0 .256-2.683 8.98 8.98 0 0 0-6.559-2.691 9.02 9.02 0 0 0-6.24 2.606 8.92 8.92 0 0 0-2.694 6.18 8.9 8.9 0 0 0 2.572 6.51 9 9 0 0 0 6.47 2.713c2.505 0 4.83-.997 6.555-2.803a.503.503 0 0 1 .704-.018.494.494 0 0 1 .018.702A9.98 9.98 0 0 1 13.041 22a9.98 9.98 0 0 1-7.183-3.014Zm12.638-3.801a1.75 1.75 0 0 0-.75-1.239c-.731-.5-1.724-.402-2.303.229a3.24 3.24 0 0 1-2.397 1.06 3.28 3.28 0 0 1-2.37-1.02 3.2 3.2 0 0 1-.872-2.424 3.25 3.25 0 0 1 2.977-3.013 3.26 3.26 0 0 1 2.559.939.5.5 0 0 1 0 .702.503.503 0 0 1-.705 0 2.251 2.251 0 0 0-3.834 1.44c-.04.626.175 1.225.606 1.68a2.24 2.24 0 0 0 1.639.707c.633 0 1.239-.268 1.665-.733.912-1.002 2.465-1.163 3.606-.38a2.73 2.73 0 0 1 1.171 1.945 2.7 2.7 0 0 1-.687 2.132 7.79 7.79 0 0 1-5.764 2.54c-.077 0-.148 0-.225-.004a7.76 7.76 0 0 1-5.302-2.308 7.7 7.7 0 0 1-2.249-5.311A7.7 7.7 0 0 1 7.497 6.57a7.74 7.74 0 0 1 5.54-2.311c2.043 0 3.969.782 5.428 2.2a.494.494 0 0 1 .009.701.5.5 0 0 1-.705.01 6.75 6.75 0 0 0-4.732-1.919 6.74 6.74 0 0 0-4.83 2.017 6.7 6.7 0 0 0-1.95 4.842 6.7 6.7 0 0 0 1.963 4.628 6.777 6.777 0 0 0 9.837-.201c.34-.367.497-.86.44-1.351Z" class="wd-icon-fill"/></g></g></svg>',
|
|
6
|
+
filename: 'wd-icon-canvas.svg',
|
|
7
|
+
category: 'Core',
|
|
8
|
+
tags: ['brand', 'workday', 'design', 'system', 'kit', 'components', 'tokens', 'patterns'],
|
|
9
|
+
};
|
|
10
|
+
export default icon;
|
package/dist/es6/cart.js
CHANGED
|
@@ -2,7 +2,7 @@ import { CanvasIconTypes } from '@workday/design-assets-types';
|
|
|
2
2
|
var icon = {
|
|
3
3
|
name: 'cart',
|
|
4
4
|
type: CanvasIconTypes.System,
|
|
5
|
-
svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-cart wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24"><g class="wd-icon-container"><g><path fill-rule="evenodd" d="M2.5 4h1.732l3.9 14.629a.5.5 0 0 0 .484.371H18.5a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5H9.768l-.8-3h10.456a.5.5 0 0 0 .493-.418l1.166-7A.5.5 0 0 0 20.59 6H6.835l-.968-3.629A.5.5 0 0 0 5.384 2H2.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5Zm4.868 4 1.067 4h9.718l.667-4z" class="wd-icon-fill" clip-rule="evenodd"/><path d="M20 21a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" class="wd-icon-fill"/><path d="M8 22a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" class="wd-icon-fill"/></g></g></svg>',
|
|
5
|
+
svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-cart wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24"><g class="wd-icon-container"><g class="wd-icon-container"><path fill-rule="evenodd" d="M2.5 4h1.732l3.9 14.629a.5.5 0 0 0 .484.371H18.5a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5H9.768l-.8-3h10.456a.5.5 0 0 0 .493-.418l1.166-7A.5.5 0 0 0 20.59 6H6.835l-.968-3.629A.5.5 0 0 0 5.384 2H2.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5Z" class="wd-icon-background" clip-rule="evenodd"/><g><path fill-rule="evenodd" d="M2.5 4h1.732l3.9 14.629a.5.5 0 0 0 .484.371H18.5a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5H9.768l-.8-3h10.456a.5.5 0 0 0 .493-.418l1.166-7A.5.5 0 0 0 20.59 6H6.835l-.968-3.629A.5.5 0 0 0 5.384 2H2.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5Zm4.868 4 1.067 4h9.718l.667-4z" class="wd-icon-fill" clip-rule="evenodd"/><path d="M20 21a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" class="wd-icon-fill"/><path d="M8 22a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" class="wd-icon-fill"/></g></g></g></svg>',
|
|
6
6
|
filename: 'wd-icon-cart.svg',
|
|
7
7
|
category: 'FIN',
|
|
8
8
|
tags: ['dolly', 'ecommerce', 'shopping', 'buy', 'purchase'],
|
|
@@ -2,7 +2,7 @@ import { CanvasIconTypes } from '@workday/design-assets-types';
|
|
|
2
2
|
var icon = {
|
|
3
3
|
name: 'componentEdit',
|
|
4
4
|
type: CanvasIconTypes.System,
|
|
5
|
-
svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-component-edit wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24"><g class="wd-icon-container"><path fill-rule="evenodd" d="
|
|
5
|
+
svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-component-edit wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24"><g class="wd-icon-container"><g class="wd-icon-container"><g><path d="M11.984 2a.5.5 0 0 0-.35.144L7.876 5.902a.497.497 0 0 0 0 .7l3.758 3.758a.497.497 0 0 0 .7 0l3.758-3.757a.497.497 0 0 0 0-.7l-3.758-3.759a.5.5 0 0 0-.35-.144Z" class="wd-icon-background"/><path d="M6.253 7.732a.5.5 0 0 0-.35.144l-3.759 3.758a.497.497 0 0 0 0 .7l3.758 3.758a.497.497 0 0 0 .7 0l3.758-3.758a.497.497 0 0 0 0-.7L6.603 7.876a.5.5 0 0 0-.35-.144Z" class="wd-icon-background"/><path d="M8.072 17.19c-.158.156-.29.47-.29.696l-.014 2.713c-.002.23.186.419.418.418l2.713-.014c.222-.001.537-.131.696-.29l9.365-9.365a.413.413 0 0 0 .005-.582L18.02 7.819a.416.416 0 0 0-.582.005z" class="wd-icon-background"/></g><path fill-rule="evenodd" d="M11.634 2.144a.497.497 0 0 1 .7 0l3.758 3.76a.497.497 0 0 1 0 .7l-3.758 3.756a.497.497 0 0 1-.7 0L7.876 6.602a.497.497 0 0 1 0-.7zm.35 2.198-1.91 1.91 1.91 1.91 1.91-1.91zm-6.08 3.534a.497.497 0 0 1 .7 0l3.756 3.758a.497.497 0 0 1 0 .7l-3.758 3.758a.497.497 0 0 1-.7 0l-3.758-3.758a.497.497 0 0 1 0-.7zm.35 2.197L4.34 11.984l1.91 1.91 1.911-1.91-1.91-1.91z" class="wd-icon-fill" clip-rule="evenodd"/><path fill-rule="evenodd" d="M7.781 17.886c.001-.226.133-.54.29-.697l9.366-9.365a.416.416 0 0 1 .582-.005l2.946 2.947c.16.16.155.422-.005.582l-9.365 9.364c-.16.16-.475.29-.697.291l-2.712.014a.417.417 0 0 1-.418-.418zm7.6-5.657L9.37 18.24l.001 1.174h1.173l6.012-6.01zm1.175-1.175 1.174 1.175 1.175-1.175L17.73 9.88z" class="wd-icon-accent" clip-rule="evenodd"/></g></g></svg>',
|
|
6
6
|
filename: 'wd-icon-component-edit.svg',
|
|
7
7
|
category: 'Objects',
|
|
8
8
|
tags: ['code', 'pencil', 'menu', 'extend', 'developer', 'console', 'tooling', 'diff', 'file-extensions', 'sidebar'],
|
package/dist/es6/documentStar.js
CHANGED
|
@@ -2,7 +2,7 @@ import { CanvasIconTypes } from '@workday/design-assets-types';
|
|
|
2
2
|
var icon = {
|
|
3
3
|
name: 'documentStar',
|
|
4
4
|
type: CanvasIconTypes.System,
|
|
5
|
-
svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-document-star wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24"><g class="wd-icon-container"><path fill-rule="evenodd" d="M4 2.494C4 2.221 4.226 2 4.496 2h15.008c.274 0 .496.225.496.494v19.012a.5.5 0 0 1-.496.494H4.496A.497.497 0 0 1 4 21.506zM6 4h12v16H6z" class="wd-icon-fill" clip-rule="evenodd"/><g><path d="m12 9.949 1.537 1.014c.166.11.377-.043.334-.24l-.424-1.919 1.48-1.37c.143-.133.063-.377-.13-.394l-1.927-.167-.665-1.73a.218.218 0 0 0-.41 0l-.665 1.73-1.928.167c-.192.017-.272.261-.129.394l1.48 1.37-.424 1.919c-.043.197.168.35.334.24z" class="wd-icon-accent"/><path d="M8 13.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5z" class="wd-icon-accent"/><path d="M8.5 16a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z" class="wd-icon-accent"/></g></g></svg>',
|
|
5
|
+
svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-document-star wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24"><g class="wd-icon-container"><polygon points="19 21 19 3 5 3 5 21" class="wd-icon-background"/><path fill-rule="evenodd" d="M4 2.494C4 2.221 4.226 2 4.496 2h15.008c.274 0 .496.225.496.494v19.012a.5.5 0 0 1-.496.494H4.496A.497.497 0 0 1 4 21.506zM6 4h12v16H6z" class="wd-icon-fill" clip-rule="evenodd"/><g><path d="m12 9.949 1.537 1.014c.166.11.377-.043.334-.24l-.424-1.919 1.48-1.37c.143-.133.063-.377-.13-.394l-1.927-.167-.665-1.73a.218.218 0 0 0-.41 0l-.665 1.73-1.928.167c-.192.017-.272.261-.129.394l1.48 1.37-.424 1.919c-.043.197.168.35.334.24z" class="wd-icon-accent"/><path d="M8 13.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5z" class="wd-icon-accent"/><path d="M8.5 16a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z" class="wd-icon-accent"/></g></g></svg>',
|
|
6
6
|
filename: 'wd-icon-document-star.svg',
|
|
7
7
|
category: 'Files & Docs',
|
|
8
8
|
tags: ['document', 'paper', 'record', 'report', 'file', 'scout'],
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CanvasIconTypes } from '@workday/design-assets-types';
|
|
2
|
+
var icon = {
|
|
3
|
+
name: 'filterX',
|
|
4
|
+
type: CanvasIconTypes.System,
|
|
5
|
+
svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-filter-x wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24"><g class="wd-icon-container"><g><path d="M2 5.505C2 5.226 2.225 5 2.494 5h19.012c.273 0 .494.214.494.505v.99a.5.5 0 0 1-.494.505H2.494A.49.49 0 0 1 2 6.495z" class="wd-icon-fill"/><path d="M7 13.505c0-.279.228-.505.51-.505H12v2H7.51a.5.5 0 0 1-.51-.505z" class="wd-icon-fill"/><path d="M12 17H9.491a.503.503 0 0 0-.491.505v.99c0 .291.22.505.491.505H12z" class="wd-icon-fill"/><path d="M18.502 11a.5.5 0 0 0 .498-.505v-.99A.494.494 0 0 0 18.502 9H5.498A.5.5 0 0 0 5 9.505v.99c0 .291.223.505.498.505z" class="wd-icon-fill"/></g><path d="M18.426 13.148a.504.504 0 0 1 .713 0l.713.713a.504.504 0 0 1 0 .713L18.426 16l1.426 1.426a.504.504 0 0 1 0 .713l-.713.713a.504.504 0 0 1-.713 0L17 17.426l-1.426 1.426a.504.504 0 0 1-.713 0l-.713-.713a.504.504 0 0 1 0-.713L15.574 16l-1.426-1.426a.504.504 0 0 1 0-.713l.713-.713a.504.504 0 0 1 .713 0L17 14.574z" class="wd-icon-accent"/></g></svg>',
|
|
6
|
+
filename: 'wd-icon-filter-x.svg',
|
|
7
|
+
category: 'Core',
|
|
8
|
+
tags: ['funnel', 'faceted', 'refine', 'search', 'table', 'grid', 'data', 'remove', 'cancel', 'close', 'exit'],
|
|
9
|
+
};
|
|
10
|
+
export default icon;
|
|
@@ -2,7 +2,7 @@ import { CanvasIconTypes } from '@workday/design-assets-types';
|
|
|
2
2
|
var icon = {
|
|
3
3
|
name: 'findInventory',
|
|
4
4
|
type: CanvasIconTypes.System,
|
|
5
|
-
svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-find-inventory wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24"><g class="wd-icon-container"><path fill-rule="evenodd" d="M19.5 7c.3 0 .5.2.5.5v3c0 .3-.2.5-.5.5h-1c-.3 0-.5-.2-.5-.
|
|
5
|
+
svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-find-inventory wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24"><g class="wd-icon-container"><g class="wd-icon-container"><path d="M4.5 7a.5.5 0 0 0-.5.5v12a.5.5 0 0 0 .5.5h6a.5.5 0 0 0 .5-.5v-8a.5.5 0 0 1 .5-.5h8a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5z" class="wd-icon-background"/><path fill-rule="evenodd" d="M19.5 7c.3 0 .5.2.5.5v3c0 .3-.2.5-.5.5h-1c-.3 0-.5-.2-.5-.5V9H6v9h4.5c.3 0 .5.2.5.5v1c0 .3-.2.5-.5.5h-6c-.3 0-.5-.2-.5-.5v-12c0-.3.2-.5.5-.5zM4.7 6c-.3 0-.4-.2-.2-.4l1.9-2.2c.4-.4.5-.4.8-.4h10c.3 0 .4 0 .8.4l1.9 2.2c.1.2 0 .4-.2.4z" class="wd-icon-fill" clip-rule="evenodd"/><path fill-rule="evenodd" d="M17.9 19.21a3.78 3.78 0 0 1-2.06.608c-2.12 0-3.84-1.75-3.84-3.909S13.72 12 15.84 12c2.122 0 3.842 1.75 3.842 3.91 0 .678-.17 1.316-.469 1.872l2.443 2.485a.5.5 0 0 1 0 .701l-.657.669a.5.5 0 0 1-.714 0zm-.139-3.3c0 1.079-.86 1.954-1.92 1.954s-1.92-.875-1.92-1.955.86-1.954 1.92-1.954 1.92.875 1.92 1.954Z" class="wd-icon-accent" clip-rule="evenodd"/></g></g></svg>',
|
|
6
6
|
filename: 'wd-icon-find-inventory.svg',
|
|
7
7
|
category: 'Inventory',
|
|
8
8
|
tags: ['box', 'package', 'search', 'find', 'inventory'],
|
package/dist/es6/index.d.ts
CHANGED
|
@@ -22,6 +22,8 @@ import alignMiddleIcon from './alignMiddle';
|
|
|
22
22
|
import alignRightIcon from './alignRight';
|
|
23
23
|
import alignTopIcon from './alignTop';
|
|
24
24
|
import anomalyDetectionIcon from './anomalyDetection';
|
|
25
|
+
import antiJoinLeftIcon from './antiJoinLeft';
|
|
26
|
+
import antiJoinRightIcon from './antiJoinRight';
|
|
25
27
|
import arrayIcon from './array';
|
|
26
28
|
import arrowArcIcon from './arrowArc';
|
|
27
29
|
import arrowCircleIcon from './arrowCircle';
|
|
@@ -99,6 +101,7 @@ import calendarUserSolidIcon from './calendarUserSolid';
|
|
|
99
101
|
import calendarIcon from './calendar';
|
|
100
102
|
import cameraPlusIcon from './cameraPlus';
|
|
101
103
|
import cameraIcon from './camera';
|
|
104
|
+
import canvasIcon from './canvas';
|
|
102
105
|
import captureDeliveryIcon from './captureDelivery';
|
|
103
106
|
import cardViewIcon from './cardView';
|
|
104
107
|
import cardIcon from './card';
|
|
@@ -248,6 +251,7 @@ import fetchDataIcon from './fetchData';
|
|
|
248
251
|
import fileIcon from './file';
|
|
249
252
|
import filterCheckedIcon from './filterChecked';
|
|
250
253
|
import filterExclamationIcon from './filterExclamation';
|
|
254
|
+
import filterXIcon from './filterX';
|
|
251
255
|
import filterIcon from './filter';
|
|
252
256
|
import findInventoryIcon from './findInventory';
|
|
253
257
|
import findTransactionsIcon from './findTransactions';
|
|
@@ -407,6 +411,7 @@ import piIcon from './pi';
|
|
|
407
411
|
import pickedShortIcon from './pickedShort';
|
|
408
412
|
import pieChartIcon from './pieChart';
|
|
409
413
|
import pillIcon from './pill';
|
|
414
|
+
import pinSlashIcon from './pinSlash';
|
|
410
415
|
import pinIcon from './pin';
|
|
411
416
|
import pivotTableIcon from './pivotTable';
|
|
412
417
|
import pivotIcon from './pivot';
|
|
@@ -593,7 +598,7 @@ import xoInstanceListIcon from './xoInstanceList';
|
|
|
593
598
|
import zoomAreaIcon from './zoomArea';
|
|
594
599
|
import zoominIcon from './zoomin';
|
|
595
600
|
import zoomoutIcon from './zoomout';
|
|
596
|
-
export { academicAppointmentTitleIcon, accessibilityIcon, accountsIcon, activityStreamIcon, actualsLockedIcon, actualsIcon, adHocDeliveryIcon, addAboveIcon, addBelowIcon, addFooterWsIcon, addLeftIcon, addRightIcon, addSplitRowIcon, addZeroIcon, adjustInventoryIcon, alarmClockPlusIcon, alarmClockIcon, alignBottomIcon, alignCenterIcon, alignLeftIcon, alignMiddleIcon, alignRightIcon, alignTopIcon, anomalyDetectionIcon, arrayIcon, arrowArcIcon, arrowCircleIcon, arrowDiagonalSmallIcon, arrowDownIcon, arrowLeftSmallIcon, arrowLeftIcon, arrowRightSmallIcon, arrowRightIcon, arrowUpIcon, articleStackedIcon, asAppliedIcon, assistantIcon, atTagMentionIcon, attributeIcon, audioMaxIcon, audioMinIcon, audioMuteIcon, audioNoneIcon, audioIcon, authenticationTagIcon, autosumIcon, avatarIcon, barcodeScannerIcon, benefitsIcon, bgColorIcon, bidIcon, birthdayIcon, boldIcon, boltFillIcon, boltIcon, bookOpenIcon, booleanIcon, borderAllIcon, borderBottomIcon, borderBtm2Icon, borderCenterIcon, borderColorIcon, borderDblIcon, borderLeftIcon, borderNoneIcon, borderOutsideIcon, borderRightIcon, borderTopIcon, boxPlusIcon, boxTextCheckIcon, boxTextPlusIcon, boxTextSearchIcon, boxTextUserSolidIcon, boxTextXIcon, boxTextIcon, businessIntelligenceIcon, buttonIcon, cArea100Icon, cAreaLayeredIcon, cAreaStackedIcon, cBar100Icon, cBarClusteredIcon, cBarStackedIcon, cBubbleIcon, cColumn100Icon, cColumnClusteredIcon, cColumnLineIcon, cColumnStackedIcon, cDualLineIcon, cLineIcon, cPieIcon, cScatterIcon, cWaterfallIcon, calculatorLockedIcon, calculatorRefreshIcon, calculatorIcon, calendarAltIcon, calendarUserSolidIcon, calendarIcon, cameraPlusIcon, cameraIcon, captureDeliveryIcon, cardViewIcon, cardIcon, caretBottomSmallIcon, caretBottomIcon, caretDownSmallIcon, caretDownIcon, caretLeftSmallIcon, caretRightSmallIcon, caretTopSmallIcon, caretTopIcon, caretUpSmallIcon, caretUpIcon, cartIcon, cellFilterIcon, cellGearIcon, cellResetIcon, cellRowIcon, cellSearchIcon, cellSwapAxisIcon, cellTemplateIcon, chartConfigIcon, chartVisualsFanIcon, chartIcon, checkCircleIcon, checkInIcon, checkSmallIcon, checkIcon, checkboxIcon, checkboxesIcon, chevron2xDownSmallIcon, chevron2xLeftSmallIcon, chevron2xRightSmallIcon, chevron2xUpSmallIcon, chevron2xleftIcon, chevron2xrightIcon, chevronDownSmallIcon, chevronDownIcon, chevronHierarchyClosedIcon, chevronHierarchyOpenIcon, chevronLeftSmallIcon, chevronLeftIcon, chevronRightSmallIcon, chevronRightIcon, chevronUpSmallIcon, chevronUpIcon, chipIcon, clipboardBlankCheckIcon, clipboardCheckIcon, clipboardPlusIcon, clipboardRemoveIcon, clipboardSearchIcon, clipboardIcon, clockCheckIcon, clockExclamationIcon, clockMinusIcon, clockPauseIcon, clockPlusIcon, clockXIcon, clockIcon, closeIcon, closedcaptionIcon, cloudLockIcon, clusterIcon, codeIcon, coffeeIcon, commaWsIcon, commentActiveIcon, commentPlusIcon, compareFilesIcon, compassIcon, componentEditIcon, componentIcon, conclusionPopupIcon, conclusionIcon, configureIcon, contactCardCostCenterIcon, contactCardDeskIcon, contactCardIdIcon, contactCardJobProfileIcon, contactCardMatrixManagerIcon, convertInventoryIcon, copyIcon, courseIcon, creditCardIcon, cubeIcon, cutIcon, dashboardExpensesIcon, dashboardWorkforceIcon, dashboardIcon, dataComplexIcon, dataInputIcon, dataSourceIcon, deltaIcon, deviceDesktopIcon, devicePhoneIcon, deviceTabletIcon, discoveryBoardIcon, docIcon, documentAltIcon, documentCandidateActionRequiredIcon, documentCandidateInactiveIcon, documentCandidateSearchIcon, documentCsvIcon, documentDownloadIcon, documentHtmlIcon, documentLockedIcon, documentSparkleIcon, documentStarIcon, documentTsvIcon, documentIcon, documentsCheckIcon, dollarSignIcon, dollarIcon, dotIcon, downloadIcon, draggableVerticalIcon, draggableIcon, drillDownIcon, dropdownButtonIcon, dropdownIcon, editButtonBarIcon, editButtonIcon, editSparkleIcon, editIcon, emptyAppIcon, endpointsIcon, eraserCellIcon, eraserFontIcon, eraserIcon, esignatureIcon, excelIcon, exclamationCircleIcon, exclamationTriangleIcon, exclamationIcon, expandTableIcon, exportIcon, extLinkIcon, faceHappyIcon, faceIdIcon, faceNeutralIcon, faceUnhappyIcon, faceVeryHappyIcon, fanChartIcon, fastForward15Icon, fetchDataIcon, fileIcon, filterCheckedIcon, filterExclamationIcon, filterIcon, findInventoryIcon, findTransactionsIcon, fingerprintAndroidIcon, flagIcon, flashAutoIcon, flowIcon, folderCloseIcon, folderMinusIcon, folderMoveIcon, folderOpenIcon, folderPlusIcon, fontFaceIcon, fontSizeIcon, footerIcon, forkKnifeIcon, formattingIcon, formulaClipboardIcon, formulaEditIcon, freezeHeaderIcon, fullscreenIcon, funnelIcon, fxBracketsIcon, fxLoopIcon, fxWritebackIcon, fxIcon, gearIcon, globeIcon, gridViewIcon, gridIcon, growIcon, hashMarkIcon, headingIcon, heatmapIcon, hideColIcon, hierarchyChildIcon, hierarchyChildrenIcon, hierarchyDiagonalParentChildChildIcon, hierarchyDiagonalParentChildIcon, hierarchyDiagonalParentIcon, hierarchyFullIcon, hierarchyParentChildIcon, hierarchyParentIcon, hierarchyPartialIcon, hierarchyRightFullIcon, hierarchyIcon, highlightIcon, homeBuildingIcon, homeIcon, hourGlassIcon, imageIcon, inboxFillIcon, inboxLargeIcon, inboxIcon, indentIcon, infoSparkleIcon, infoIcon, insertColumnAfterIcon, insertColumnBeforeIcon, insertRowAfterIcon, insertRowBeforeIcon, instanceMappingIcon, instanceIcon, interactiongroupIcon, inventoryCountIcon, inventorySearchIcon, invisibleIcon, italicsIcon, itemizeIcon, jobInfoIcon, joinFullIcon, joinInnerIcon, joinLeftIcon, joinRightIcon, justifyIcon, keyboardIcon, kpiIcon, labeledImageIcon, laptopIcon, laurelWreathIcon, leftSidebarIcon, legalIcon, legendIcon, letterAIcon, lightbulbIcon, linkIcon, listDetailIcon, listViewIcon, liveDataIcon, livepagesIcon, locationIcon, lockKeyholeIcon, lockPlusIcon, lockIcon, loopIcon, mailLetterIcon, mailIcon, manageDeliveryIcon, mapIcon, markerIcon, medalIcon, mediaClassroomIcon, mediaErrorIcon, mediaMylearningIcon, mediaPauseIcon, mediaPlayIcon, mediaQuizIcon, mediaSurveyIcon, mediaTopicsIcon, megaphoneIcon, menuGroupIcon, mergeSmallIcon, mergeTagIcon, mergeIcon, messagingIcon, microphoneIcon, minusCircleIcon, minusIcon, mobileNotificationsIcon, moonIcon, moveInventoryIcon, multiInstanceIcon, myLearningIcon, myReferralsIcon, nboxIcon, nearbyIcon, noBidIcon, noConnectionCloudIcon, noteIcon, notificationsLargeIcon, notificationsIcon, numberInputIcon, numbersIcon, objectIcon, onboardingHomeIcon, oneColumnIcon, openresponseIcon, operatorIcon, opportunityGraphIcon, orderedListIcon, orgChartPeopleIcon, orgChartIcon, packageArrowDownIcon, packageArrowUpIcon, panelListIcon, paragraphIcon, passwordIcon, pasteIcon, patternIcon, pdfIcon, peopleRecruitingIcon, percentageIcon, perspectiveIcon, phoneUnlockIcon, phoneIcon, piIcon, pickedShortIcon, pieChartIcon, pillIcon, pinIcon, pivotTableIcon, pivotIcon, placeholderIcon, platformCartIcon, playCircleIcon, playbookIcon, plusCircleIcon, plusSmallIcon, plusIcon, powerOfOneIcon, powerpointIcon, previousIcon, printIcon, prismIcon, progressCircleIcon, projectsIcon, promptsIcon, proofOfDeliveryIcon, proxyUserIcon, puzzleIcon, pyramidIcon, qrCodeIcon, questionFillIcon, questionOutlineIcon, questionIcon, radioMobileSelectedIcon, radioMobileIcon, radioIcon, rangePeriodIcon, rankingIcon, receiptsIcon, referenceLineIcon, regionIcon, relatedActionsVerticalIcon, relatedActionsIcon, removeColumnAfterIcon, removeIndentIcon, removeRowAfterIcon, removeSplitRowIcon, removeZeroIcon, renameSplitRowIcon, renameIcon, reorderV2Icon, reorderIcon, replayIcon, reportParameterIcon, resetIcon, resizableIcon, restoreIcon, rewind30Icon, ribbonIcon, rightSidebarIcon, rocketIcon, rotateIcon, rowsCheckIcon, rowsPlusIcon, rpmIcon, rteEmphasisIcon, rteListIcon, saveAsIcon, saveIcon, screenMagnificationIcon, screenReaderIcon, searchSparkleIcon, searchUserIcon, searchIcon, selectIcon, sendIcon, setupIcon, shapesIcon, shareIcon, showColIcon, shrinkIcon, signalFourIcon, signalOneIcon, signalThreeIcon, signalTwoIcon, signoutIcon, skillsIcon, skipIcon, sliderIcon, soccerBallIcon, socialMediaIcon, sortAZIcon, sortDownIcon, sortUpIcon, sortZAIcon, sortIcon, sparkleSingleSmallIcon, sparkleIcon, speechBubbleIcon, speechExclamationIcon, splitSmallIcon, splitIcon, squareIcon, starHalfIcon, starIcon, strikethroughIcon, suborgIcon, substituteIcon, switchIcon, systemNotificationIcon, tableIcon, tagIcon, taskAcademicIcon, taskBenefitsIcon, taskCareerIcon, taskCompanyPropertyIcon, taskCompensationIcon, taskContactIcon, taskJobIcon, taskOverviewIcon, taskPayIcon, taskPerformanceIcon, taskTimeoffIcon, textAreaIcon, textColorIcon, textEditIcon, textInputIcon, textWrapIcon, textIcon, threeColumnIcon, thumbsDownFilledIcon, thumbsDownOutlinedIcon, thumbsUpFilledIcon, thumbsUpOutlinedIcon, timeOffBalanceIcon, timeIcon, timelineAllIcon, timelineMilestoneIcon, timelinePerformanceInputIcon, toggleIcon, tokensIcon, toolsIcon, touchIdIcon, transcriptionIcon, transformationGroupbyIcon, transformationImportIcon, transformationJoinIcon, transformationUnionIcon, translatedActualsIcon, translationIcon, trashIcon, travelIcon, trophyIcon, twoColumnIcon, underlineIcon, undoLIcon, undoRIcon, unfreezeIcon, unknownIcon, unlinkIcon, unlockedIcon, unorderedListIcon, unpivotIcon, unsortIcon, uploadClipIcon, uploadCloudIcon, uploadIcon, userCheckIcon, userForwardIcon, userLockedIcon, userPlusIcon, userRemoveIcon, userIcon, versionsIcon, videoIcon, viewTeamIcon, viewsiteIcon, virtualVersionLockedIcon, virtualVersionIcon, visibleIcon, webinarIcon, webpageIcon, wizardIcon, wordIcon, workbookIcon, worksheetsIcon, xCircleIcon, xSmallIcon, xIcon, xoInstanceListIcon, zoomAreaIcon, zoominIcon, zoomoutIcon, };
|
|
601
|
+
export { academicAppointmentTitleIcon, accessibilityIcon, accountsIcon, activityStreamIcon, actualsLockedIcon, actualsIcon, adHocDeliveryIcon, addAboveIcon, addBelowIcon, addFooterWsIcon, addLeftIcon, addRightIcon, addSplitRowIcon, addZeroIcon, adjustInventoryIcon, alarmClockPlusIcon, alarmClockIcon, alignBottomIcon, alignCenterIcon, alignLeftIcon, alignMiddleIcon, alignRightIcon, alignTopIcon, anomalyDetectionIcon, antiJoinLeftIcon, antiJoinRightIcon, arrayIcon, arrowArcIcon, arrowCircleIcon, arrowDiagonalSmallIcon, arrowDownIcon, arrowLeftSmallIcon, arrowLeftIcon, arrowRightSmallIcon, arrowRightIcon, arrowUpIcon, articleStackedIcon, asAppliedIcon, assistantIcon, atTagMentionIcon, attributeIcon, audioMaxIcon, audioMinIcon, audioMuteIcon, audioNoneIcon, audioIcon, authenticationTagIcon, autosumIcon, avatarIcon, barcodeScannerIcon, benefitsIcon, bgColorIcon, bidIcon, birthdayIcon, boldIcon, boltFillIcon, boltIcon, bookOpenIcon, booleanIcon, borderAllIcon, borderBottomIcon, borderBtm2Icon, borderCenterIcon, borderColorIcon, borderDblIcon, borderLeftIcon, borderNoneIcon, borderOutsideIcon, borderRightIcon, borderTopIcon, boxPlusIcon, boxTextCheckIcon, boxTextPlusIcon, boxTextSearchIcon, boxTextUserSolidIcon, boxTextXIcon, boxTextIcon, businessIntelligenceIcon, buttonIcon, cArea100Icon, cAreaLayeredIcon, cAreaStackedIcon, cBar100Icon, cBarClusteredIcon, cBarStackedIcon, cBubbleIcon, cColumn100Icon, cColumnClusteredIcon, cColumnLineIcon, cColumnStackedIcon, cDualLineIcon, cLineIcon, cPieIcon, cScatterIcon, cWaterfallIcon, calculatorLockedIcon, calculatorRefreshIcon, calculatorIcon, calendarAltIcon, calendarUserSolidIcon, calendarIcon, cameraPlusIcon, cameraIcon, canvasIcon, captureDeliveryIcon, cardViewIcon, cardIcon, caretBottomSmallIcon, caretBottomIcon, caretDownSmallIcon, caretDownIcon, caretLeftSmallIcon, caretRightSmallIcon, caretTopSmallIcon, caretTopIcon, caretUpSmallIcon, caretUpIcon, cartIcon, cellFilterIcon, cellGearIcon, cellResetIcon, cellRowIcon, cellSearchIcon, cellSwapAxisIcon, cellTemplateIcon, chartConfigIcon, chartVisualsFanIcon, chartIcon, checkCircleIcon, checkInIcon, checkSmallIcon, checkIcon, checkboxIcon, checkboxesIcon, chevron2xDownSmallIcon, chevron2xLeftSmallIcon, chevron2xRightSmallIcon, chevron2xUpSmallIcon, chevron2xleftIcon, chevron2xrightIcon, chevronDownSmallIcon, chevronDownIcon, chevronHierarchyClosedIcon, chevronHierarchyOpenIcon, chevronLeftSmallIcon, chevronLeftIcon, chevronRightSmallIcon, chevronRightIcon, chevronUpSmallIcon, chevronUpIcon, chipIcon, clipboardBlankCheckIcon, clipboardCheckIcon, clipboardPlusIcon, clipboardRemoveIcon, clipboardSearchIcon, clipboardIcon, clockCheckIcon, clockExclamationIcon, clockMinusIcon, clockPauseIcon, clockPlusIcon, clockXIcon, clockIcon, closeIcon, closedcaptionIcon, cloudLockIcon, clusterIcon, codeIcon, coffeeIcon, commaWsIcon, commentActiveIcon, commentPlusIcon, compareFilesIcon, compassIcon, componentEditIcon, componentIcon, conclusionPopupIcon, conclusionIcon, configureIcon, contactCardCostCenterIcon, contactCardDeskIcon, contactCardIdIcon, contactCardJobProfileIcon, contactCardMatrixManagerIcon, convertInventoryIcon, copyIcon, courseIcon, creditCardIcon, cubeIcon, cutIcon, dashboardExpensesIcon, dashboardWorkforceIcon, dashboardIcon, dataComplexIcon, dataInputIcon, dataSourceIcon, deltaIcon, deviceDesktopIcon, devicePhoneIcon, deviceTabletIcon, discoveryBoardIcon, docIcon, documentAltIcon, documentCandidateActionRequiredIcon, documentCandidateInactiveIcon, documentCandidateSearchIcon, documentCsvIcon, documentDownloadIcon, documentHtmlIcon, documentLockedIcon, documentSparkleIcon, documentStarIcon, documentTsvIcon, documentIcon, documentsCheckIcon, dollarSignIcon, dollarIcon, dotIcon, downloadIcon, draggableVerticalIcon, draggableIcon, drillDownIcon, dropdownButtonIcon, dropdownIcon, editButtonBarIcon, editButtonIcon, editSparkleIcon, editIcon, emptyAppIcon, endpointsIcon, eraserCellIcon, eraserFontIcon, eraserIcon, esignatureIcon, excelIcon, exclamationCircleIcon, exclamationTriangleIcon, exclamationIcon, expandTableIcon, exportIcon, extLinkIcon, faceHappyIcon, faceIdIcon, faceNeutralIcon, faceUnhappyIcon, faceVeryHappyIcon, fanChartIcon, fastForward15Icon, fetchDataIcon, fileIcon, filterCheckedIcon, filterExclamationIcon, filterXIcon, filterIcon, findInventoryIcon, findTransactionsIcon, fingerprintAndroidIcon, flagIcon, flashAutoIcon, flowIcon, folderCloseIcon, folderMinusIcon, folderMoveIcon, folderOpenIcon, folderPlusIcon, fontFaceIcon, fontSizeIcon, footerIcon, forkKnifeIcon, formattingIcon, formulaClipboardIcon, formulaEditIcon, freezeHeaderIcon, fullscreenIcon, funnelIcon, fxBracketsIcon, fxLoopIcon, fxWritebackIcon, fxIcon, gearIcon, globeIcon, gridViewIcon, gridIcon, growIcon, hashMarkIcon, headingIcon, heatmapIcon, hideColIcon, hierarchyChildIcon, hierarchyChildrenIcon, hierarchyDiagonalParentChildChildIcon, hierarchyDiagonalParentChildIcon, hierarchyDiagonalParentIcon, hierarchyFullIcon, hierarchyParentChildIcon, hierarchyParentIcon, hierarchyPartialIcon, hierarchyRightFullIcon, hierarchyIcon, highlightIcon, homeBuildingIcon, homeIcon, hourGlassIcon, imageIcon, inboxFillIcon, inboxLargeIcon, inboxIcon, indentIcon, infoSparkleIcon, infoIcon, insertColumnAfterIcon, insertColumnBeforeIcon, insertRowAfterIcon, insertRowBeforeIcon, instanceMappingIcon, instanceIcon, interactiongroupIcon, inventoryCountIcon, inventorySearchIcon, invisibleIcon, italicsIcon, itemizeIcon, jobInfoIcon, joinFullIcon, joinInnerIcon, joinLeftIcon, joinRightIcon, justifyIcon, keyboardIcon, kpiIcon, labeledImageIcon, laptopIcon, laurelWreathIcon, leftSidebarIcon, legalIcon, legendIcon, letterAIcon, lightbulbIcon, linkIcon, listDetailIcon, listViewIcon, liveDataIcon, livepagesIcon, locationIcon, lockKeyholeIcon, lockPlusIcon, lockIcon, loopIcon, mailLetterIcon, mailIcon, manageDeliveryIcon, mapIcon, markerIcon, medalIcon, mediaClassroomIcon, mediaErrorIcon, mediaMylearningIcon, mediaPauseIcon, mediaPlayIcon, mediaQuizIcon, mediaSurveyIcon, mediaTopicsIcon, megaphoneIcon, menuGroupIcon, mergeSmallIcon, mergeTagIcon, mergeIcon, messagingIcon, microphoneIcon, minusCircleIcon, minusIcon, mobileNotificationsIcon, moonIcon, moveInventoryIcon, multiInstanceIcon, myLearningIcon, myReferralsIcon, nboxIcon, nearbyIcon, noBidIcon, noConnectionCloudIcon, noteIcon, notificationsLargeIcon, notificationsIcon, numberInputIcon, numbersIcon, objectIcon, onboardingHomeIcon, oneColumnIcon, openresponseIcon, operatorIcon, opportunityGraphIcon, orderedListIcon, orgChartPeopleIcon, orgChartIcon, packageArrowDownIcon, packageArrowUpIcon, panelListIcon, paragraphIcon, passwordIcon, pasteIcon, patternIcon, pdfIcon, peopleRecruitingIcon, percentageIcon, perspectiveIcon, phoneUnlockIcon, phoneIcon, piIcon, pickedShortIcon, pieChartIcon, pillIcon, pinSlashIcon, pinIcon, pivotTableIcon, pivotIcon, placeholderIcon, platformCartIcon, playCircleIcon, playbookIcon, plusCircleIcon, plusSmallIcon, plusIcon, powerOfOneIcon, powerpointIcon, previousIcon, printIcon, prismIcon, progressCircleIcon, projectsIcon, promptsIcon, proofOfDeliveryIcon, proxyUserIcon, puzzleIcon, pyramidIcon, qrCodeIcon, questionFillIcon, questionOutlineIcon, questionIcon, radioMobileSelectedIcon, radioMobileIcon, radioIcon, rangePeriodIcon, rankingIcon, receiptsIcon, referenceLineIcon, regionIcon, relatedActionsVerticalIcon, relatedActionsIcon, removeColumnAfterIcon, removeIndentIcon, removeRowAfterIcon, removeSplitRowIcon, removeZeroIcon, renameSplitRowIcon, renameIcon, reorderV2Icon, reorderIcon, replayIcon, reportParameterIcon, resetIcon, resizableIcon, restoreIcon, rewind30Icon, ribbonIcon, rightSidebarIcon, rocketIcon, rotateIcon, rowsCheckIcon, rowsPlusIcon, rpmIcon, rteEmphasisIcon, rteListIcon, saveAsIcon, saveIcon, screenMagnificationIcon, screenReaderIcon, searchSparkleIcon, searchUserIcon, searchIcon, selectIcon, sendIcon, setupIcon, shapesIcon, shareIcon, showColIcon, shrinkIcon, signalFourIcon, signalOneIcon, signalThreeIcon, signalTwoIcon, signoutIcon, skillsIcon, skipIcon, sliderIcon, soccerBallIcon, socialMediaIcon, sortAZIcon, sortDownIcon, sortUpIcon, sortZAIcon, sortIcon, sparkleSingleSmallIcon, sparkleIcon, speechBubbleIcon, speechExclamationIcon, splitSmallIcon, splitIcon, squareIcon, starHalfIcon, starIcon, strikethroughIcon, suborgIcon, substituteIcon, switchIcon, systemNotificationIcon, tableIcon, tagIcon, taskAcademicIcon, taskBenefitsIcon, taskCareerIcon, taskCompanyPropertyIcon, taskCompensationIcon, taskContactIcon, taskJobIcon, taskOverviewIcon, taskPayIcon, taskPerformanceIcon, taskTimeoffIcon, textAreaIcon, textColorIcon, textEditIcon, textInputIcon, textWrapIcon, textIcon, threeColumnIcon, thumbsDownFilledIcon, thumbsDownOutlinedIcon, thumbsUpFilledIcon, thumbsUpOutlinedIcon, timeOffBalanceIcon, timeIcon, timelineAllIcon, timelineMilestoneIcon, timelinePerformanceInputIcon, toggleIcon, tokensIcon, toolsIcon, touchIdIcon, transcriptionIcon, transformationGroupbyIcon, transformationImportIcon, transformationJoinIcon, transformationUnionIcon, translatedActualsIcon, translationIcon, trashIcon, travelIcon, trophyIcon, twoColumnIcon, underlineIcon, undoLIcon, undoRIcon, unfreezeIcon, unknownIcon, unlinkIcon, unlockedIcon, unorderedListIcon, unpivotIcon, unsortIcon, uploadClipIcon, uploadCloudIcon, uploadIcon, userCheckIcon, userForwardIcon, userLockedIcon, userPlusIcon, userRemoveIcon, userIcon, versionsIcon, videoIcon, viewTeamIcon, viewsiteIcon, virtualVersionLockedIcon, virtualVersionIcon, visibleIcon, webinarIcon, webpageIcon, wizardIcon, wordIcon, workbookIcon, worksheetsIcon, xCircleIcon, xSmallIcon, xIcon, xoInstanceListIcon, zoomAreaIcon, zoominIcon, zoomoutIcon, };
|
|
597
602
|
|
|
598
603
|
export declare enum CanvasSystemIcons {
|
|
599
604
|
AcademicAppointmentTitle = 'academicAppointmentTitle',
|
|
@@ -620,6 +625,8 @@ export declare enum CanvasSystemIcons {
|
|
|
620
625
|
AlignRight = 'alignRight',
|
|
621
626
|
AlignTop = 'alignTop',
|
|
622
627
|
AnomalyDetection = 'anomalyDetection',
|
|
628
|
+
AntiJoinLeft = 'antiJoinLeft',
|
|
629
|
+
AntiJoinRight = 'antiJoinRight',
|
|
623
630
|
Array = 'array',
|
|
624
631
|
ArrowArc = 'arrowArc',
|
|
625
632
|
ArrowCircle = 'arrowCircle',
|
|
@@ -697,6 +704,7 @@ export declare enum CanvasSystemIcons {
|
|
|
697
704
|
Calendar = 'calendar',
|
|
698
705
|
CameraPlus = 'cameraPlus',
|
|
699
706
|
Camera = 'camera',
|
|
707
|
+
Canvas = 'canvas',
|
|
700
708
|
CaptureDelivery = 'captureDelivery',
|
|
701
709
|
CardView = 'cardView',
|
|
702
710
|
Card = 'card',
|
|
@@ -846,6 +854,7 @@ export declare enum CanvasSystemIcons {
|
|
|
846
854
|
File = 'file',
|
|
847
855
|
FilterChecked = 'filterChecked',
|
|
848
856
|
FilterExclamation = 'filterExclamation',
|
|
857
|
+
FilterX = 'filterX',
|
|
849
858
|
Filter = 'filter',
|
|
850
859
|
FindInventory = 'findInventory',
|
|
851
860
|
FindTransactions = 'findTransactions',
|
|
@@ -1005,6 +1014,7 @@ export declare enum CanvasSystemIcons {
|
|
|
1005
1014
|
PickedShort = 'pickedShort',
|
|
1006
1015
|
PieChart = 'pieChart',
|
|
1007
1016
|
Pill = 'pill',
|
|
1017
|
+
PinSlash = 'pinSlash',
|
|
1008
1018
|
Pin = 'pin',
|
|
1009
1019
|
PivotTable = 'pivotTable',
|
|
1010
1020
|
Pivot = 'pivot',
|
package/dist/es6/index.js
CHANGED
|
@@ -22,6 +22,8 @@ import alignMiddleIcon from './alignMiddle';
|
|
|
22
22
|
import alignRightIcon from './alignRight';
|
|
23
23
|
import alignTopIcon from './alignTop';
|
|
24
24
|
import anomalyDetectionIcon from './anomalyDetection';
|
|
25
|
+
import antiJoinLeftIcon from './antiJoinLeft';
|
|
26
|
+
import antiJoinRightIcon from './antiJoinRight';
|
|
25
27
|
import arrayIcon from './array';
|
|
26
28
|
import arrowArcIcon from './arrowArc';
|
|
27
29
|
import arrowCircleIcon from './arrowCircle';
|
|
@@ -99,6 +101,7 @@ import calendarUserSolidIcon from './calendarUserSolid';
|
|
|
99
101
|
import calendarIcon from './calendar';
|
|
100
102
|
import cameraPlusIcon from './cameraPlus';
|
|
101
103
|
import cameraIcon from './camera';
|
|
104
|
+
import canvasIcon from './canvas';
|
|
102
105
|
import captureDeliveryIcon from './captureDelivery';
|
|
103
106
|
import cardViewIcon from './cardView';
|
|
104
107
|
import cardIcon from './card';
|
|
@@ -248,6 +251,7 @@ import fetchDataIcon from './fetchData';
|
|
|
248
251
|
import fileIcon from './file';
|
|
249
252
|
import filterCheckedIcon from './filterChecked';
|
|
250
253
|
import filterExclamationIcon from './filterExclamation';
|
|
254
|
+
import filterXIcon from './filterX';
|
|
251
255
|
import filterIcon from './filter';
|
|
252
256
|
import findInventoryIcon from './findInventory';
|
|
253
257
|
import findTransactionsIcon from './findTransactions';
|
|
@@ -407,6 +411,7 @@ import piIcon from './pi';
|
|
|
407
411
|
import pickedShortIcon from './pickedShort';
|
|
408
412
|
import pieChartIcon from './pieChart';
|
|
409
413
|
import pillIcon from './pill';
|
|
414
|
+
import pinSlashIcon from './pinSlash';
|
|
410
415
|
import pinIcon from './pin';
|
|
411
416
|
import pivotTableIcon from './pivotTable';
|
|
412
417
|
import pivotIcon from './pivot';
|
|
@@ -593,7 +598,7 @@ import xoInstanceListIcon from './xoInstanceList';
|
|
|
593
598
|
import zoomAreaIcon from './zoomArea';
|
|
594
599
|
import zoominIcon from './zoomin';
|
|
595
600
|
import zoomoutIcon from './zoomout';
|
|
596
|
-
export { academicAppointmentTitleIcon, accessibilityIcon, accountsIcon, activityStreamIcon, actualsLockedIcon, actualsIcon, adHocDeliveryIcon, addAboveIcon, addBelowIcon, addFooterWsIcon, addLeftIcon, addRightIcon, addSplitRowIcon, addZeroIcon, adjustInventoryIcon, alarmClockPlusIcon, alarmClockIcon, alignBottomIcon, alignCenterIcon, alignLeftIcon, alignMiddleIcon, alignRightIcon, alignTopIcon, anomalyDetectionIcon, arrayIcon, arrowArcIcon, arrowCircleIcon, arrowDiagonalSmallIcon, arrowDownIcon, arrowLeftSmallIcon, arrowLeftIcon, arrowRightSmallIcon, arrowRightIcon, arrowUpIcon, articleStackedIcon, asAppliedIcon, assistantIcon, atTagMentionIcon, attributeIcon, audioMaxIcon, audioMinIcon, audioMuteIcon, audioNoneIcon, audioIcon, authenticationTagIcon, autosumIcon, avatarIcon, barcodeScannerIcon, benefitsIcon, bgColorIcon, bidIcon, birthdayIcon, boldIcon, boltFillIcon, boltIcon, bookOpenIcon, booleanIcon, borderAllIcon, borderBottomIcon, borderBtm2Icon, borderCenterIcon, borderColorIcon, borderDblIcon, borderLeftIcon, borderNoneIcon, borderOutsideIcon, borderRightIcon, borderTopIcon, boxPlusIcon, boxTextCheckIcon, boxTextPlusIcon, boxTextSearchIcon, boxTextUserSolidIcon, boxTextXIcon, boxTextIcon, businessIntelligenceIcon, buttonIcon, cArea100Icon, cAreaLayeredIcon, cAreaStackedIcon, cBar100Icon, cBarClusteredIcon, cBarStackedIcon, cBubbleIcon, cColumn100Icon, cColumnClusteredIcon, cColumnLineIcon, cColumnStackedIcon, cDualLineIcon, cLineIcon, cPieIcon, cScatterIcon, cWaterfallIcon, calculatorLockedIcon, calculatorRefreshIcon, calculatorIcon, calendarAltIcon, calendarUserSolidIcon, calendarIcon, cameraPlusIcon, cameraIcon, captureDeliveryIcon, cardViewIcon, cardIcon, caretBottomSmallIcon, caretBottomIcon, caretDownSmallIcon, caretDownIcon, caretLeftSmallIcon, caretRightSmallIcon, caretTopSmallIcon, caretTopIcon, caretUpSmallIcon, caretUpIcon, cartIcon, cellFilterIcon, cellGearIcon, cellResetIcon, cellRowIcon, cellSearchIcon, cellSwapAxisIcon, cellTemplateIcon, chartConfigIcon, chartVisualsFanIcon, chartIcon, checkCircleIcon, checkInIcon, checkSmallIcon, checkIcon, checkboxIcon, checkboxesIcon, chevron2xDownSmallIcon, chevron2xLeftSmallIcon, chevron2xRightSmallIcon, chevron2xUpSmallIcon, chevron2xleftIcon, chevron2xrightIcon, chevronDownSmallIcon, chevronDownIcon, chevronHierarchyClosedIcon, chevronHierarchyOpenIcon, chevronLeftSmallIcon, chevronLeftIcon, chevronRightSmallIcon, chevronRightIcon, chevronUpSmallIcon, chevronUpIcon, chipIcon, clipboardBlankCheckIcon, clipboardCheckIcon, clipboardPlusIcon, clipboardRemoveIcon, clipboardSearchIcon, clipboardIcon, clockCheckIcon, clockExclamationIcon, clockMinusIcon, clockPauseIcon, clockPlusIcon, clockXIcon, clockIcon, closeIcon, closedcaptionIcon, cloudLockIcon, clusterIcon, codeIcon, coffeeIcon, commaWsIcon, commentActiveIcon, commentPlusIcon, compareFilesIcon, compassIcon, componentEditIcon, componentIcon, conclusionPopupIcon, conclusionIcon, configureIcon, contactCardCostCenterIcon, contactCardDeskIcon, contactCardIdIcon, contactCardJobProfileIcon, contactCardMatrixManagerIcon, convertInventoryIcon, copyIcon, courseIcon, creditCardIcon, cubeIcon, cutIcon, dashboardExpensesIcon, dashboardWorkforceIcon, dashboardIcon, dataComplexIcon, dataInputIcon, dataSourceIcon, deltaIcon, deviceDesktopIcon, devicePhoneIcon, deviceTabletIcon, discoveryBoardIcon, docIcon, documentAltIcon, documentCandidateActionRequiredIcon, documentCandidateInactiveIcon, documentCandidateSearchIcon, documentCsvIcon, documentDownloadIcon, documentHtmlIcon, documentLockedIcon, documentSparkleIcon, documentStarIcon, documentTsvIcon, documentIcon, documentsCheckIcon, dollarSignIcon, dollarIcon, dotIcon, downloadIcon, draggableVerticalIcon, draggableIcon, drillDownIcon, dropdownButtonIcon, dropdownIcon, editButtonBarIcon, editButtonIcon, editSparkleIcon, editIcon, emptyAppIcon, endpointsIcon, eraserCellIcon, eraserFontIcon, eraserIcon, esignatureIcon, excelIcon, exclamationCircleIcon, exclamationTriangleIcon, exclamationIcon, expandTableIcon, exportIcon, extLinkIcon, faceHappyIcon, faceIdIcon, faceNeutralIcon, faceUnhappyIcon, faceVeryHappyIcon, fanChartIcon, fastForward15Icon, fetchDataIcon, fileIcon, filterCheckedIcon, filterExclamationIcon, filterIcon, findInventoryIcon, findTransactionsIcon, fingerprintAndroidIcon, flagIcon, flashAutoIcon, flowIcon, folderCloseIcon, folderMinusIcon, folderMoveIcon, folderOpenIcon, folderPlusIcon, fontFaceIcon, fontSizeIcon, footerIcon, forkKnifeIcon, formattingIcon, formulaClipboardIcon, formulaEditIcon, freezeHeaderIcon, fullscreenIcon, funnelIcon, fxBracketsIcon, fxLoopIcon, fxWritebackIcon, fxIcon, gearIcon, globeIcon, gridViewIcon, gridIcon, growIcon, hashMarkIcon, headingIcon, heatmapIcon, hideColIcon, hierarchyChildIcon, hierarchyChildrenIcon, hierarchyDiagonalParentChildChildIcon, hierarchyDiagonalParentChildIcon, hierarchyDiagonalParentIcon, hierarchyFullIcon, hierarchyParentChildIcon, hierarchyParentIcon, hierarchyPartialIcon, hierarchyRightFullIcon, hierarchyIcon, highlightIcon, homeBuildingIcon, homeIcon, hourGlassIcon, imageIcon, inboxFillIcon, inboxLargeIcon, inboxIcon, indentIcon, infoSparkleIcon, infoIcon, insertColumnAfterIcon, insertColumnBeforeIcon, insertRowAfterIcon, insertRowBeforeIcon, instanceMappingIcon, instanceIcon, interactiongroupIcon, inventoryCountIcon, inventorySearchIcon, invisibleIcon, italicsIcon, itemizeIcon, jobInfoIcon, joinFullIcon, joinInnerIcon, joinLeftIcon, joinRightIcon, justifyIcon, keyboardIcon, kpiIcon, labeledImageIcon, laptopIcon, laurelWreathIcon, leftSidebarIcon, legalIcon, legendIcon, letterAIcon, lightbulbIcon, linkIcon, listDetailIcon, listViewIcon, liveDataIcon, livepagesIcon, locationIcon, lockKeyholeIcon, lockPlusIcon, lockIcon, loopIcon, mailLetterIcon, mailIcon, manageDeliveryIcon, mapIcon, markerIcon, medalIcon, mediaClassroomIcon, mediaErrorIcon, mediaMylearningIcon, mediaPauseIcon, mediaPlayIcon, mediaQuizIcon, mediaSurveyIcon, mediaTopicsIcon, megaphoneIcon, menuGroupIcon, mergeSmallIcon, mergeTagIcon, mergeIcon, messagingIcon, microphoneIcon, minusCircleIcon, minusIcon, mobileNotificationsIcon, moonIcon, moveInventoryIcon, multiInstanceIcon, myLearningIcon, myReferralsIcon, nboxIcon, nearbyIcon, noBidIcon, noConnectionCloudIcon, noteIcon, notificationsLargeIcon, notificationsIcon, numberInputIcon, numbersIcon, objectIcon, onboardingHomeIcon, oneColumnIcon, openresponseIcon, operatorIcon, opportunityGraphIcon, orderedListIcon, orgChartPeopleIcon, orgChartIcon, packageArrowDownIcon, packageArrowUpIcon, panelListIcon, paragraphIcon, passwordIcon, pasteIcon, patternIcon, pdfIcon, peopleRecruitingIcon, percentageIcon, perspectiveIcon, phoneUnlockIcon, phoneIcon, piIcon, pickedShortIcon, pieChartIcon, pillIcon, pinIcon, pivotTableIcon, pivotIcon, placeholderIcon, platformCartIcon, playCircleIcon, playbookIcon, plusCircleIcon, plusSmallIcon, plusIcon, powerOfOneIcon, powerpointIcon, previousIcon, printIcon, prismIcon, progressCircleIcon, projectsIcon, promptsIcon, proofOfDeliveryIcon, proxyUserIcon, puzzleIcon, pyramidIcon, qrCodeIcon, questionFillIcon, questionOutlineIcon, questionIcon, radioMobileSelectedIcon, radioMobileIcon, radioIcon, rangePeriodIcon, rankingIcon, receiptsIcon, referenceLineIcon, regionIcon, relatedActionsVerticalIcon, relatedActionsIcon, removeColumnAfterIcon, removeIndentIcon, removeRowAfterIcon, removeSplitRowIcon, removeZeroIcon, renameSplitRowIcon, renameIcon, reorderV2Icon, reorderIcon, replayIcon, reportParameterIcon, resetIcon, resizableIcon, restoreIcon, rewind30Icon, ribbonIcon, rightSidebarIcon, rocketIcon, rotateIcon, rowsCheckIcon, rowsPlusIcon, rpmIcon, rteEmphasisIcon, rteListIcon, saveAsIcon, saveIcon, screenMagnificationIcon, screenReaderIcon, searchSparkleIcon, searchUserIcon, searchIcon, selectIcon, sendIcon, setupIcon, shapesIcon, shareIcon, showColIcon, shrinkIcon, signalFourIcon, signalOneIcon, signalThreeIcon, signalTwoIcon, signoutIcon, skillsIcon, skipIcon, sliderIcon, soccerBallIcon, socialMediaIcon, sortAZIcon, sortDownIcon, sortUpIcon, sortZAIcon, sortIcon, sparkleSingleSmallIcon, sparkleIcon, speechBubbleIcon, speechExclamationIcon, splitSmallIcon, splitIcon, squareIcon, starHalfIcon, starIcon, strikethroughIcon, suborgIcon, substituteIcon, switchIcon, systemNotificationIcon, tableIcon, tagIcon, taskAcademicIcon, taskBenefitsIcon, taskCareerIcon, taskCompanyPropertyIcon, taskCompensationIcon, taskContactIcon, taskJobIcon, taskOverviewIcon, taskPayIcon, taskPerformanceIcon, taskTimeoffIcon, textAreaIcon, textColorIcon, textEditIcon, textInputIcon, textWrapIcon, textIcon, threeColumnIcon, thumbsDownFilledIcon, thumbsDownOutlinedIcon, thumbsUpFilledIcon, thumbsUpOutlinedIcon, timeOffBalanceIcon, timeIcon, timelineAllIcon, timelineMilestoneIcon, timelinePerformanceInputIcon, toggleIcon, tokensIcon, toolsIcon, touchIdIcon, transcriptionIcon, transformationGroupbyIcon, transformationImportIcon, transformationJoinIcon, transformationUnionIcon, translatedActualsIcon, translationIcon, trashIcon, travelIcon, trophyIcon, twoColumnIcon, underlineIcon, undoLIcon, undoRIcon, unfreezeIcon, unknownIcon, unlinkIcon, unlockedIcon, unorderedListIcon, unpivotIcon, unsortIcon, uploadClipIcon, uploadCloudIcon, uploadIcon, userCheckIcon, userForwardIcon, userLockedIcon, userPlusIcon, userRemoveIcon, userIcon, versionsIcon, videoIcon, viewTeamIcon, viewsiteIcon, virtualVersionLockedIcon, virtualVersionIcon, visibleIcon, webinarIcon, webpageIcon, wizardIcon, wordIcon, workbookIcon, worksheetsIcon, xCircleIcon, xSmallIcon, xIcon, xoInstanceListIcon, zoomAreaIcon, zoominIcon, zoomoutIcon, };
|
|
601
|
+
export { academicAppointmentTitleIcon, accessibilityIcon, accountsIcon, activityStreamIcon, actualsLockedIcon, actualsIcon, adHocDeliveryIcon, addAboveIcon, addBelowIcon, addFooterWsIcon, addLeftIcon, addRightIcon, addSplitRowIcon, addZeroIcon, adjustInventoryIcon, alarmClockPlusIcon, alarmClockIcon, alignBottomIcon, alignCenterIcon, alignLeftIcon, alignMiddleIcon, alignRightIcon, alignTopIcon, anomalyDetectionIcon, antiJoinLeftIcon, antiJoinRightIcon, arrayIcon, arrowArcIcon, arrowCircleIcon, arrowDiagonalSmallIcon, arrowDownIcon, arrowLeftSmallIcon, arrowLeftIcon, arrowRightSmallIcon, arrowRightIcon, arrowUpIcon, articleStackedIcon, asAppliedIcon, assistantIcon, atTagMentionIcon, attributeIcon, audioMaxIcon, audioMinIcon, audioMuteIcon, audioNoneIcon, audioIcon, authenticationTagIcon, autosumIcon, avatarIcon, barcodeScannerIcon, benefitsIcon, bgColorIcon, bidIcon, birthdayIcon, boldIcon, boltFillIcon, boltIcon, bookOpenIcon, booleanIcon, borderAllIcon, borderBottomIcon, borderBtm2Icon, borderCenterIcon, borderColorIcon, borderDblIcon, borderLeftIcon, borderNoneIcon, borderOutsideIcon, borderRightIcon, borderTopIcon, boxPlusIcon, boxTextCheckIcon, boxTextPlusIcon, boxTextSearchIcon, boxTextUserSolidIcon, boxTextXIcon, boxTextIcon, businessIntelligenceIcon, buttonIcon, cArea100Icon, cAreaLayeredIcon, cAreaStackedIcon, cBar100Icon, cBarClusteredIcon, cBarStackedIcon, cBubbleIcon, cColumn100Icon, cColumnClusteredIcon, cColumnLineIcon, cColumnStackedIcon, cDualLineIcon, cLineIcon, cPieIcon, cScatterIcon, cWaterfallIcon, calculatorLockedIcon, calculatorRefreshIcon, calculatorIcon, calendarAltIcon, calendarUserSolidIcon, calendarIcon, cameraPlusIcon, cameraIcon, canvasIcon, captureDeliveryIcon, cardViewIcon, cardIcon, caretBottomSmallIcon, caretBottomIcon, caretDownSmallIcon, caretDownIcon, caretLeftSmallIcon, caretRightSmallIcon, caretTopSmallIcon, caretTopIcon, caretUpSmallIcon, caretUpIcon, cartIcon, cellFilterIcon, cellGearIcon, cellResetIcon, cellRowIcon, cellSearchIcon, cellSwapAxisIcon, cellTemplateIcon, chartConfigIcon, chartVisualsFanIcon, chartIcon, checkCircleIcon, checkInIcon, checkSmallIcon, checkIcon, checkboxIcon, checkboxesIcon, chevron2xDownSmallIcon, chevron2xLeftSmallIcon, chevron2xRightSmallIcon, chevron2xUpSmallIcon, chevron2xleftIcon, chevron2xrightIcon, chevronDownSmallIcon, chevronDownIcon, chevronHierarchyClosedIcon, chevronHierarchyOpenIcon, chevronLeftSmallIcon, chevronLeftIcon, chevronRightSmallIcon, chevronRightIcon, chevronUpSmallIcon, chevronUpIcon, chipIcon, clipboardBlankCheckIcon, clipboardCheckIcon, clipboardPlusIcon, clipboardRemoveIcon, clipboardSearchIcon, clipboardIcon, clockCheckIcon, clockExclamationIcon, clockMinusIcon, clockPauseIcon, clockPlusIcon, clockXIcon, clockIcon, closeIcon, closedcaptionIcon, cloudLockIcon, clusterIcon, codeIcon, coffeeIcon, commaWsIcon, commentActiveIcon, commentPlusIcon, compareFilesIcon, compassIcon, componentEditIcon, componentIcon, conclusionPopupIcon, conclusionIcon, configureIcon, contactCardCostCenterIcon, contactCardDeskIcon, contactCardIdIcon, contactCardJobProfileIcon, contactCardMatrixManagerIcon, convertInventoryIcon, copyIcon, courseIcon, creditCardIcon, cubeIcon, cutIcon, dashboardExpensesIcon, dashboardWorkforceIcon, dashboardIcon, dataComplexIcon, dataInputIcon, dataSourceIcon, deltaIcon, deviceDesktopIcon, devicePhoneIcon, deviceTabletIcon, discoveryBoardIcon, docIcon, documentAltIcon, documentCandidateActionRequiredIcon, documentCandidateInactiveIcon, documentCandidateSearchIcon, documentCsvIcon, documentDownloadIcon, documentHtmlIcon, documentLockedIcon, documentSparkleIcon, documentStarIcon, documentTsvIcon, documentIcon, documentsCheckIcon, dollarSignIcon, dollarIcon, dotIcon, downloadIcon, draggableVerticalIcon, draggableIcon, drillDownIcon, dropdownButtonIcon, dropdownIcon, editButtonBarIcon, editButtonIcon, editSparkleIcon, editIcon, emptyAppIcon, endpointsIcon, eraserCellIcon, eraserFontIcon, eraserIcon, esignatureIcon, excelIcon, exclamationCircleIcon, exclamationTriangleIcon, exclamationIcon, expandTableIcon, exportIcon, extLinkIcon, faceHappyIcon, faceIdIcon, faceNeutralIcon, faceUnhappyIcon, faceVeryHappyIcon, fanChartIcon, fastForward15Icon, fetchDataIcon, fileIcon, filterCheckedIcon, filterExclamationIcon, filterXIcon, filterIcon, findInventoryIcon, findTransactionsIcon, fingerprintAndroidIcon, flagIcon, flashAutoIcon, flowIcon, folderCloseIcon, folderMinusIcon, folderMoveIcon, folderOpenIcon, folderPlusIcon, fontFaceIcon, fontSizeIcon, footerIcon, forkKnifeIcon, formattingIcon, formulaClipboardIcon, formulaEditIcon, freezeHeaderIcon, fullscreenIcon, funnelIcon, fxBracketsIcon, fxLoopIcon, fxWritebackIcon, fxIcon, gearIcon, globeIcon, gridViewIcon, gridIcon, growIcon, hashMarkIcon, headingIcon, heatmapIcon, hideColIcon, hierarchyChildIcon, hierarchyChildrenIcon, hierarchyDiagonalParentChildChildIcon, hierarchyDiagonalParentChildIcon, hierarchyDiagonalParentIcon, hierarchyFullIcon, hierarchyParentChildIcon, hierarchyParentIcon, hierarchyPartialIcon, hierarchyRightFullIcon, hierarchyIcon, highlightIcon, homeBuildingIcon, homeIcon, hourGlassIcon, imageIcon, inboxFillIcon, inboxLargeIcon, inboxIcon, indentIcon, infoSparkleIcon, infoIcon, insertColumnAfterIcon, insertColumnBeforeIcon, insertRowAfterIcon, insertRowBeforeIcon, instanceMappingIcon, instanceIcon, interactiongroupIcon, inventoryCountIcon, inventorySearchIcon, invisibleIcon, italicsIcon, itemizeIcon, jobInfoIcon, joinFullIcon, joinInnerIcon, joinLeftIcon, joinRightIcon, justifyIcon, keyboardIcon, kpiIcon, labeledImageIcon, laptopIcon, laurelWreathIcon, leftSidebarIcon, legalIcon, legendIcon, letterAIcon, lightbulbIcon, linkIcon, listDetailIcon, listViewIcon, liveDataIcon, livepagesIcon, locationIcon, lockKeyholeIcon, lockPlusIcon, lockIcon, loopIcon, mailLetterIcon, mailIcon, manageDeliveryIcon, mapIcon, markerIcon, medalIcon, mediaClassroomIcon, mediaErrorIcon, mediaMylearningIcon, mediaPauseIcon, mediaPlayIcon, mediaQuizIcon, mediaSurveyIcon, mediaTopicsIcon, megaphoneIcon, menuGroupIcon, mergeSmallIcon, mergeTagIcon, mergeIcon, messagingIcon, microphoneIcon, minusCircleIcon, minusIcon, mobileNotificationsIcon, moonIcon, moveInventoryIcon, multiInstanceIcon, myLearningIcon, myReferralsIcon, nboxIcon, nearbyIcon, noBidIcon, noConnectionCloudIcon, noteIcon, notificationsLargeIcon, notificationsIcon, numberInputIcon, numbersIcon, objectIcon, onboardingHomeIcon, oneColumnIcon, openresponseIcon, operatorIcon, opportunityGraphIcon, orderedListIcon, orgChartPeopleIcon, orgChartIcon, packageArrowDownIcon, packageArrowUpIcon, panelListIcon, paragraphIcon, passwordIcon, pasteIcon, patternIcon, pdfIcon, peopleRecruitingIcon, percentageIcon, perspectiveIcon, phoneUnlockIcon, phoneIcon, piIcon, pickedShortIcon, pieChartIcon, pillIcon, pinSlashIcon, pinIcon, pivotTableIcon, pivotIcon, placeholderIcon, platformCartIcon, playCircleIcon, playbookIcon, plusCircleIcon, plusSmallIcon, plusIcon, powerOfOneIcon, powerpointIcon, previousIcon, printIcon, prismIcon, progressCircleIcon, projectsIcon, promptsIcon, proofOfDeliveryIcon, proxyUserIcon, puzzleIcon, pyramidIcon, qrCodeIcon, questionFillIcon, questionOutlineIcon, questionIcon, radioMobileSelectedIcon, radioMobileIcon, radioIcon, rangePeriodIcon, rankingIcon, receiptsIcon, referenceLineIcon, regionIcon, relatedActionsVerticalIcon, relatedActionsIcon, removeColumnAfterIcon, removeIndentIcon, removeRowAfterIcon, removeSplitRowIcon, removeZeroIcon, renameSplitRowIcon, renameIcon, reorderV2Icon, reorderIcon, replayIcon, reportParameterIcon, resetIcon, resizableIcon, restoreIcon, rewind30Icon, ribbonIcon, rightSidebarIcon, rocketIcon, rotateIcon, rowsCheckIcon, rowsPlusIcon, rpmIcon, rteEmphasisIcon, rteListIcon, saveAsIcon, saveIcon, screenMagnificationIcon, screenReaderIcon, searchSparkleIcon, searchUserIcon, searchIcon, selectIcon, sendIcon, setupIcon, shapesIcon, shareIcon, showColIcon, shrinkIcon, signalFourIcon, signalOneIcon, signalThreeIcon, signalTwoIcon, signoutIcon, skillsIcon, skipIcon, sliderIcon, soccerBallIcon, socialMediaIcon, sortAZIcon, sortDownIcon, sortUpIcon, sortZAIcon, sortIcon, sparkleSingleSmallIcon, sparkleIcon, speechBubbleIcon, speechExclamationIcon, splitSmallIcon, splitIcon, squareIcon, starHalfIcon, starIcon, strikethroughIcon, suborgIcon, substituteIcon, switchIcon, systemNotificationIcon, tableIcon, tagIcon, taskAcademicIcon, taskBenefitsIcon, taskCareerIcon, taskCompanyPropertyIcon, taskCompensationIcon, taskContactIcon, taskJobIcon, taskOverviewIcon, taskPayIcon, taskPerformanceIcon, taskTimeoffIcon, textAreaIcon, textColorIcon, textEditIcon, textInputIcon, textWrapIcon, textIcon, threeColumnIcon, thumbsDownFilledIcon, thumbsDownOutlinedIcon, thumbsUpFilledIcon, thumbsUpOutlinedIcon, timeOffBalanceIcon, timeIcon, timelineAllIcon, timelineMilestoneIcon, timelinePerformanceInputIcon, toggleIcon, tokensIcon, toolsIcon, touchIdIcon, transcriptionIcon, transformationGroupbyIcon, transformationImportIcon, transformationJoinIcon, transformationUnionIcon, translatedActualsIcon, translationIcon, trashIcon, travelIcon, trophyIcon, twoColumnIcon, underlineIcon, undoLIcon, undoRIcon, unfreezeIcon, unknownIcon, unlinkIcon, unlockedIcon, unorderedListIcon, unpivotIcon, unsortIcon, uploadClipIcon, uploadCloudIcon, uploadIcon, userCheckIcon, userForwardIcon, userLockedIcon, userPlusIcon, userRemoveIcon, userIcon, versionsIcon, videoIcon, viewTeamIcon, viewsiteIcon, virtualVersionLockedIcon, virtualVersionIcon, visibleIcon, webinarIcon, webpageIcon, wizardIcon, wordIcon, workbookIcon, worksheetsIcon, xCircleIcon, xSmallIcon, xIcon, xoInstanceListIcon, zoomAreaIcon, zoominIcon, zoomoutIcon, };
|
|
597
602
|
|
|
598
603
|
export const CanvasSystemIcons = {
|
|
599
604
|
AcademicAppointmentTitle: 'academicAppointmentTitle',
|
|
@@ -620,6 +625,8 @@ export const CanvasSystemIcons = {
|
|
|
620
625
|
AlignRight: 'alignRight',
|
|
621
626
|
AlignTop: 'alignTop',
|
|
622
627
|
AnomalyDetection: 'anomalyDetection',
|
|
628
|
+
AntiJoinLeft: 'antiJoinLeft',
|
|
629
|
+
AntiJoinRight: 'antiJoinRight',
|
|
623
630
|
Array: 'array',
|
|
624
631
|
ArrowArc: 'arrowArc',
|
|
625
632
|
ArrowCircle: 'arrowCircle',
|
|
@@ -697,6 +704,7 @@ export const CanvasSystemIcons = {
|
|
|
697
704
|
Calendar: 'calendar',
|
|
698
705
|
CameraPlus: 'cameraPlus',
|
|
699
706
|
Camera: 'camera',
|
|
707
|
+
Canvas: 'canvas',
|
|
700
708
|
CaptureDelivery: 'captureDelivery',
|
|
701
709
|
CardView: 'cardView',
|
|
702
710
|
Card: 'card',
|
|
@@ -846,6 +854,7 @@ export const CanvasSystemIcons = {
|
|
|
846
854
|
File: 'file',
|
|
847
855
|
FilterChecked: 'filterChecked',
|
|
848
856
|
FilterExclamation: 'filterExclamation',
|
|
857
|
+
FilterX: 'filterX',
|
|
849
858
|
Filter: 'filter',
|
|
850
859
|
FindInventory: 'findInventory',
|
|
851
860
|
FindTransactions: 'findTransactions',
|
|
@@ -1005,6 +1014,7 @@ export const CanvasSystemIcons = {
|
|
|
1005
1014
|
PickedShort: 'pickedShort',
|
|
1006
1015
|
PieChart: 'pieChart',
|
|
1007
1016
|
Pill: 'pill',
|
|
1017
|
+
PinSlash: 'pinSlash',
|
|
1008
1018
|
Pin: 'pin',
|
|
1009
1019
|
PivotTable: 'pivotTable',
|
|
1010
1020
|
Pivot: 'pivot',
|
|
@@ -2,7 +2,7 @@ import { CanvasIconTypes } from '@workday/design-assets-types';
|
|
|
2
2
|
var icon = {
|
|
3
3
|
name: 'peopleRecruiting',
|
|
4
4
|
type: CanvasIconTypes.System,
|
|
5
|
-
svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-people-recruiting wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24"><g class="wd-icon-container"><path d="M13.5 21a.5.5 0 0 0 .5-.
|
|
5
|
+
svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-people-recruiting wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24"><g class="wd-icon-container"><g class="wd-icon-container"><path d="M13.5 21a.5.5 0 0 0 .5-.5v-5.25a.25.25 0 0 1 .25-.25h1.11c.428 0 .644-.491.322-.774a9.6 9.6 0 0 0-2.437-1.542C14.32 11.676 15 10.175 15 8.5 15 5.462 12.761 3 10 3S5 5.462 5 8.5c0 1.676.682 3.177 1.756 4.186C4.246 13.802 2 16.003 2 19v1.437c0 .311.256.563.571.563z" class="wd-icon-background"/><path fill-rule="evenodd" d="M13.5 21a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5H4.083C4 16.003 6.5 14 10 14c1.422 0 2.678.33 3.67.924a.5.5 0 0 0 .269.076h1.42c.429 0 .645-.491.323-.774a9.6 9.6 0 0 0-2.437-1.542C14.32 11.676 15 10.175 15 8.5 15 5.462 12.761 3 10 3S5 5.462 5 8.5c0 1.676.682 3.177 1.756 4.186C4.246 13.802 2 16.003 2 19v1.437c0 .311.256.563.571.563zM10 12c1.657 0 3-1.567 3-3.5S11.657 5 10 5 7 6.567 7 8.5 8.343 12 10 12Zm10.864 2.235c.303.29.082.765-.337.765h-1.899a.52.52 0 0 1-.393-.185c-.778-.91-1.77-1.626-2.812-2.126.994-1.009 1.625-2.509 1.625-4.184 0-2.378-1.27-4.403-3.048-5.17A4 4 0 0 1 15.593 3c2.557 0 4.63 2.462 4.63 5.5 0 1.675-.631 3.176-1.626 4.184.812.39 1.593.91 2.267 1.551Z" class="wd-icon-fill" clip-rule="evenodd"/><path fill-rule="evenodd" d="M18 19v-1.5c0-.3.2-.5.5-.5h1c.3 0 .5.2.5.5V19h1.5c.3 0 .5.2.5.5v1c0 .3-.2.5-.5.5H20v1.5c0 .3-.2.5-.5.5h-1c-.3 0-.5-.2-.5-.5V21h-1.5c-.3 0-.5-.2-.5-.5v-1c0-.3.2-.5.5-.5z" class="wd-icon-accent" clip-rule="evenodd"/></g></g></svg>',
|
|
6
6
|
filename: 'wd-icon-people-recruiting',
|
|
7
7
|
category: 'Recruiting',
|
|
8
8
|
tags: ['people', 'recruiting', 'users', 'add', 'groups', 'team', 'plus'],
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CanvasIconTypes } from '@workday/design-assets-types';
|
|
2
|
+
var icon = {
|
|
3
|
+
name: 'pinSlash',
|
|
4
|
+
type: CanvasIconTypes.System,
|
|
5
|
+
svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-pin-slash wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24"><g class="wd-icon-container"><g class="wd-icon-container"><g><path d="M9 2.253C9 2.114 9.112 2 9.25 2h5.5c.138 0 .25.114.25.253 0 .74-.402 1.395-1 1.747v6.004a3.85 3.85 0 0 1 3 3.755.24.24 0 0 1-.232.24L10 7.233V4a2.03 2.03 0 0 1-1-1.747Z" class="wd-icon-fill"/><path d="M7.806 11.402A3.83 3.83 0 0 0 7 13.76c0 .133.108.241.24.241h3.164z" class="wd-icon-fill"/><path d="M11.404 15h-.154a.25.25 0 0 0-.25.25v4.913l.772 1.714a.25.25 0 0 0 .456 0L13 20.163v-3.567z" class="wd-icon-fill"/></g><path d="M18.646 17.646a.5.5 0 0 1 0 .708l-.707.707a.5.5 0 0 1-.707 0L5.212 7.04a.5.5 0 0 1 0-.707l.706-.707a.5.5 0 0 1 .708 0z" class="wd-icon-accent"/></g></g></svg>',
|
|
6
|
+
filename: 'wd-icon-pin-slash.svg',
|
|
7
|
+
category: 'Objects',
|
|
8
|
+
tags: ['unpin', 'remove', 'thumbtack', 'location', 'important', 'planning'],
|
|
9
|
+
};
|
|
10
|
+
export default icon;
|
package/dist/es6/taskPay.js
CHANGED
|
@@ -2,7 +2,7 @@ import { CanvasIconTypes } from '@workday/design-assets-types';
|
|
|
2
2
|
var icon = {
|
|
3
3
|
name: 'taskPay',
|
|
4
4
|
type: CanvasIconTypes.System,
|
|
5
|
-
svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-task-pay wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24"><g
|
|
5
|
+
svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-task-pay wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24"><g class="wd-icon-container"><g class="wd-icon-container"><g><path d="M16 5h-6v2h6z" class="wd-icon-background"/><path d="M20 12.5h-5v3h5z" class="wd-icon-background"/><path d="M19 10.5V9H4v10h15v-1.5h-5.49a.51.51 0 0 1-.51-.503v-5.994c0-.278.223-.503.51-.503z" class="wd-icon-background"/><path d="M8 6H6v1h2z" class="wd-icon-background"/></g><g><path d="M16.5 13a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z" class="wd-icon-fill"/><path fill-rule="evenodd" d="M21 20.502V17.5h.49c.288 0 .51-.225.51-.503v-5.994a.51.51 0 0 0-.51-.503H21V7.498A.5.5 0 0 0 20.492 7H18V3.5c0-.271-.228-.5-.51-.5H8.51a.505.505 0 0 0-.51.5V4H4.5c-.27 0-.5.224-.5.5V7H2.508A.503.503 0 0 0 2 7.498v13.004c0 .278.228.498.508.498h17.984a.503.503 0 0 0 .508-.498ZM16 5h-6v2h6zM6 6h2v1H6zm13 3v1.5h-5.49a.503.503 0 0 0-.51.503v5.994c0 .27.228.503.51.503H19V19H4V9zm-4 3.5h5v3h-5z" class="wd-icon-fill" clip-rule="evenodd"/></g></g></g></svg>',
|
|
6
6
|
filename: 'wd-icon-task-pay.svg',
|
|
7
7
|
category: 'Profile',
|
|
8
8
|
tags: ['wallet', 'income', 'compensation', 'salary', 'wage', 'profit'],
|