@esri/calcite-ui-icons 4.3.0-next.7 → 4.3.0-next.9
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/README.md +2 -2
- package/docs/icons.json +1 -1
- package/docs/keywords.json +5 -0
- package/fonts/calcite-ui-icons-16.ttf +0 -0
- package/fonts/calcite-ui-icons-24.ttf +0 -0
- package/fonts/calcite-ui-icons-32.ttf +0 -0
- package/icons/person-magnifying-glass-16.svg +1 -0
- package/icons/person-magnifying-glass-24.svg +1 -0
- package/icons/person-magnifying-glass-32.svg +1 -0
- package/index.d.ts +3 -0
- package/index.js +3 -0
- package/js/personMagnifyingGlass16.d.ts +1 -0
- package/js/personMagnifyingGlass16.js +1 -0
- package/js/personMagnifyingGlass16.json +1 -0
- package/js/personMagnifyingGlass24.d.ts +1 -0
- package/js/personMagnifyingGlass24.js +1 -0
- package/js/personMagnifyingGlass24.json +1 -0
- package/js/personMagnifyingGlass32.d.ts +1 -0
- package/js/personMagnifyingGlass32.js +1 -0
- package/js/personMagnifyingGlass32.json +1 -0
- package/package.json +6 -6
- package/sprite-16.svg +1 -1
- package/sprite-24.svg +1 -1
- package/sprite-32.svg +1 -1
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ Every concept has 3 sizes:
|
|
|
19
19
|
|
|
20
20
|
### Why 3 Sizes?
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
See the [What Happens When You Scale Vector-Based Icons wiki entry](https://github.com/Esri/calcite-design-system/wiki/What-Happens-When-You-Scale-Vector-Based-Icons) for more info on scaling behavior.
|
|
23
23
|
|
|
24
24
|
### Outline icons are the standard
|
|
25
25
|
|
|
@@ -113,7 +113,7 @@ This will give you an object containing all the icons in the library at all size
|
|
|
113
113
|
}
|
|
114
114
|
```
|
|
115
115
|
|
|
116
|
-
|
|
116
|
+
_Note: path data omitted for brevity._
|
|
117
117
|
|
|
118
118
|
Most icons will have simple strings as path data, but some will be more complex as they need to store not only path, but opacity as well for multiple shapes. Icons of this structure will be annotated with the `multiPath` flag.
|
|
119
119
|
|