@workday/canvas-system-icons-web 3.0.3 → 3.0.5
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/filterChecked.d.ts +3 -0
- package/dist/commonjs/filterChecked.js +12 -0
- package/dist/commonjs/index.d.ts +2 -1
- package/dist/commonjs/index.js +4 -1
- package/dist/es6/filterChecked.d.ts +3 -0
- package/dist/es6/filterChecked.js +10 -0
- package/dist/es6/index.d.ts +3 -1
- package/dist/es6/index.js +3 -1
- package/dist/sprite/wd-system-icon-sprite.svg +1 -1
- package/dist/svg/wd-icon-filter-checked.svg +6 -0
- package/dist/ts/filterChecked.ts +10 -0
- package/dist/ts/index.ts +3 -0
- package/package.json +5 -5
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-filter-checked wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24">
|
|
2
|
+
<g class="wd-icon-container">
|
|
3
|
+
<path d="M2 5.505C2 5.226 2.225 5 2.494 5h19.012c.273 0 .494.214.494.505v.99a.502.502 0 0 1-.494.505H2.494A.492.492 0 0 1 2 6.495v-.99zM7 13.505c0-.279.228-.505.51-.505H12v2H7.51a.5.5 0 0 1-.51-.505v-.99zM12 17H9.491a.503.503 0 0 0-.491.505v.99c0 .291.22.505.491.505H12v-2zM18.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.505h13.004z" class="wd-icon-fill"/>
|
|
4
|
+
<path fill-rule="evenodd" d="M17.049 16.353l-1.486-1.486a.499.499 0 0 0-.71.004l-.7.7a.495.495 0 0 0-.005.71l2.174 2.174a.495.495 0 0 0 .034.03l.337.338a.5.5 0 0 0 .715 0l4.258-4.258a.498.498 0 0 0 0-.715l-.7-.7a.5.5 0 0 0-.715 0l-3.202 3.203z" class="wd-icon-accent" clip-rule="evenodd"/>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CanvasSystemIcon, CanvasIconTypes } from '@workday/design-assets-types'
|
|
2
|
+
const icon: CanvasSystemIcon = {
|
|
3
|
+
name: 'filterChecked',
|
|
4
|
+
type: CanvasIconTypes.System,
|
|
5
|
+
svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-filter-checked wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24"><g class="wd-icon-container"><path d="M2 5.505C2 5.226 2.225 5 2.494 5h19.012c.273 0 .494.214.494.505v.99a.502.502 0 0 1-.494.505H2.494A.492.492 0 0 1 2 6.495v-.99zM7 13.505c0-.279.228-.505.51-.505H12v2H7.51a.5.5 0 0 1-.51-.505v-.99zM12 17H9.491a.503.503 0 0 0-.491.505v.99c0 .291.22.505.491.505H12v-2zM18.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.505h13.004z" class="wd-icon-fill"/><path fill-rule="evenodd" d="M17.049 16.353l-1.486-1.486a.499.499 0 0 0-.71.004l-.7.7a.495.495 0 0 0-.005.71l2.174 2.174a.495.495 0 0 0 .034.03l.337.338a.5.5 0 0 0 .715 0l4.258-4.258a.498.498 0 0 0 0-.715l-.7-.7a.5.5 0 0 0-.715 0l-3.202 3.203z" class="wd-icon-accent" clip-rule="evenodd"/></g></svg>',
|
|
6
|
+
filename: 'wd-icon-filter-checked.svg',
|
|
7
|
+
category: 'Core',
|
|
8
|
+
tags: ['funnel','faceted','refine','search','table','grid','data','checked','applied'],
|
|
9
|
+
}
|
|
10
|
+
export default icon
|
package/dist/ts/index.ts
CHANGED
|
@@ -236,6 +236,7 @@ import faceVeryHappyIcon from './faceVeryHappy'
|
|
|
236
236
|
import fastForward15Icon from './fastForward15'
|
|
237
237
|
import fetchDataIcon from './fetchData'
|
|
238
238
|
import fileIcon from './file'
|
|
239
|
+
import filterCheckedIcon from './filterChecked'
|
|
239
240
|
import filterIcon from './filter'
|
|
240
241
|
import fingerprintAndroidIcon from './fingerprintAndroid'
|
|
241
242
|
import flagIcon from './flag'
|
|
@@ -793,6 +794,7 @@ export {
|
|
|
793
794
|
fastForward15Icon,
|
|
794
795
|
fetchDataIcon,
|
|
795
796
|
fileIcon,
|
|
797
|
+
filterCheckedIcon,
|
|
796
798
|
filterIcon,
|
|
797
799
|
fingerprintAndroidIcon,
|
|
798
800
|
flagIcon,
|
|
@@ -1350,6 +1352,7 @@ export enum CanvasSystemIcons {
|
|
|
1350
1352
|
FastForward15 = 'fastForward15',
|
|
1351
1353
|
FetchData = 'fetchData',
|
|
1352
1354
|
File = 'file',
|
|
1355
|
+
FilterChecked = 'filterChecked',
|
|
1353
1356
|
Filter = 'filter',
|
|
1354
1357
|
FingerprintAndroid = 'fingerprintAndroid',
|
|
1355
1358
|
Flag = 'flag',
|
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.5",
|
|
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)",
|
|
@@ -29,17 +29,17 @@
|
|
|
29
29
|
"test": "jest"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@workday/design-assets-types": "0.2.
|
|
32
|
+
"@workday/design-assets-types": "0.2.10"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@workday/canvas-colors-web": "2.0.0",
|
|
36
|
-
"@workday/canvas-system-icons": "3.
|
|
37
|
-
"@workday/icon-utils": "1.0.
|
|
36
|
+
"@workday/canvas-system-icons": "3.5.0",
|
|
37
|
+
"@workday/icon-utils": "1.0.3",
|
|
38
38
|
"svg-sprite": "^1.3.7"
|
|
39
39
|
},
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public",
|
|
42
42
|
"registry": "https://registry.npmjs.org"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "2238092ec83687f72eee39b874867db9f6a38b72"
|
|
45
45
|
}
|