@kong/icons 1.7.9-pr.132.05fa190.0 → 1.8.0
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 +3 -2
- package/dist/kong-icons.es.js +1079 -776
- package/dist/kong-icons.es.js.map +1 -1
- package/dist/kong-icons.umd.js +1 -1
- package/dist/kong-icons.umd.js.map +1 -1
- package/dist/types/components/flags/index.d.ts +1 -1
- package/dist/types/components/index.d.ts +1 -1
- package/dist/types/components/multi-color/index.d.ts +1 -1
- package/dist/types/components/solid/BarChartHorizontalIcon.vue.d.ts +85 -0
- package/dist/types/components/solid/ChartAreaIcon.vue.d.ts +85 -0
- package/dist/types/components/solid/ChartLinesIcon.vue.d.ts +85 -0
- package/dist/types/components/solid/index.d.ts +4 -1
- package/package.json +6 -6
package/README.md
CHANGED
@@ -10,7 +10,7 @@ Kong's open-source, Vue icon component library, partially sourced from [Google's
|
|
10
10
|
- [Component Props](#component-props)
|
11
11
|
- [Contributing \& Local Development](#contributing--local-development)
|
12
12
|
- [SVG file requirements](#svg-file-requirements)
|
13
|
-
- [
|
13
|
+
- [Adding a new icon](#adding-a-new-icon)
|
14
14
|
- [Development Sandbox](#development-sandbox)
|
15
15
|
- [Lint and fix](#lint-and-fix)
|
16
16
|
- [Testing](#testing)
|
@@ -133,11 +133,12 @@ Source SVG files **must**:
|
|
133
133
|
- have a default size of `24px` when they are exported
|
134
134
|
- be sourced from and approved of by Kong's Design team
|
135
135
|
|
136
|
-
###
|
136
|
+
### Adding a new icon
|
137
137
|
|
138
138
|
To add a new SVG:
|
139
139
|
|
140
140
|
1. Ensure the SVG has been exported from the Design team (do **not** create custom SVG files)
|
141
|
+
1. Icons **must** follow the viewbox and color guidelines to match the standard of existing icons. New icons can be requested on Slack in `#ask-kong-design-system`
|
141
142
|
2. Ensure the filename is lowercase and kebab-case
|
142
143
|
3. Place the SVG file into the corresponding `/svg/*` subdirectory.
|
143
144
|
4. Locally, run `yarn generate` to create the corresponding Vue component
|