@epilot360/icons 1.17.46 → 1.17.47
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 +23 -0
- package/icons.config.yaml +32 -0
- package/index.js +1229 -69
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/react/Code/index.d.ts +4 -0
- package/react/Code/index.js +209 -0
- package/react/Code/index.js.map +1 -0
- package/react/EpilotIcon.d.ts +16 -0
- package/react/EpilotIcon.js +2946 -2058
- package/react/EpilotIcon.js.map +1 -1
- package/react/FormatBold/index.d.ts +4 -0
- package/react/FormatBold/index.js +209 -0
- package/react/FormatBold/index.js.map +1 -0
- package/react/FormatItalic/index.d.ts +4 -0
- package/react/FormatItalic/index.js +209 -0
- package/react/FormatItalic/index.js.map +1 -0
- package/react/FormatListBulleted/index.d.ts +4 -0
- package/react/FormatListBulleted/index.js +209 -0
- package/react/FormatListBulleted/index.js.map +1 -0
- package/react/FormatListNumbered/index.d.ts +4 -0
- package/react/FormatListNumbered/index.js +209 -0
- package/react/FormatListNumbered/index.js.map +1 -0
- package/react/FormatStrikethrough/index.d.ts +4 -0
- package/react/FormatStrikethrough/index.js +209 -0
- package/react/FormatStrikethrough/index.js.map +1 -0
- package/react/FormatUnderlined/index.d.ts +4 -0
- package/react/FormatUnderlined/index.js +209 -0
- package/react/FormatUnderlined/index.js.map +1 -0
- package/react/Heading/index.d.ts +4 -0
- package/react/Heading/index.js +209 -0
- package/react/Heading/index.js.map +1 -0
- package/react/index.d.ts +8 -0
- package/react/index.js +1513 -601
- package/react/index.js.map +1 -1
- package/svg/Code/icon-fill.svg +1 -0
- package/svg/Code/icon.svg +1 -0
- package/svg/Code/index.d.ts +3 -0
- package/svg/Code/index.js +159 -0
- package/svg/Code/index.js.map +1 -0
- package/svg/FormatBold/icon-fill.svg +1 -0
- package/svg/FormatBold/icon.svg +1 -0
- package/svg/FormatBold/index.d.ts +3 -0
- package/svg/FormatBold/index.js +159 -0
- package/svg/FormatBold/index.js.map +1 -0
- package/svg/FormatItalic/icon-fill.svg +1 -0
- package/svg/FormatItalic/icon.svg +1 -0
- package/svg/FormatItalic/index.d.ts +3 -0
- package/svg/FormatItalic/index.js +159 -0
- package/svg/FormatItalic/index.js.map +1 -0
- package/svg/FormatListBulleted/icon-fill.svg +1 -0
- package/svg/FormatListBulleted/icon.svg +1 -0
- package/svg/FormatListBulleted/index.d.ts +3 -0
- package/svg/FormatListBulleted/index.js +159 -0
- package/svg/FormatListBulleted/index.js.map +1 -0
- package/svg/FormatListNumbered/icon-fill.svg +1 -0
- package/svg/FormatListNumbered/icon.svg +1 -0
- package/svg/FormatListNumbered/index.d.ts +3 -0
- package/svg/FormatListNumbered/index.js +159 -0
- package/svg/FormatListNumbered/index.js.map +1 -0
- package/svg/FormatStrikethrough/icon-fill.svg +1 -0
- package/svg/FormatStrikethrough/icon.svg +1 -0
- package/svg/FormatStrikethrough/index.d.ts +3 -0
- package/svg/FormatStrikethrough/index.js +159 -0
- package/svg/FormatStrikethrough/index.js.map +1 -0
- package/svg/FormatUnderlined/icon-fill.svg +1 -0
- package/svg/FormatUnderlined/icon.svg +1 -0
- package/svg/FormatUnderlined/index.d.ts +3 -0
- package/svg/FormatUnderlined/index.js +159 -0
- package/svg/FormatUnderlined/index.js.map +1 -0
- package/svg/Heading/icon-fill.svg +1 -0
- package/svg/Heading/icon.svg +1 -0
- package/svg/Heading/index.d.ts +3 -0
- package/svg/Heading/index.js +159 -0
- package/svg/Heading/index.js.map +1 -0
- package/svg/index.d.ts +8 -0
- package/svg/index.js +714 -66
- package/svg/index.js.map +1 -1
- package/svg/svgIcon.d.ts +8 -0
- package/svg/svgIcon.js +692 -68
- package/svg/svgIcon.js.map +1 -1
package/README.md
CHANGED
|
@@ -78,6 +78,29 @@ yarn codegen
|
|
|
78
78
|
|
|
79
79
|
You should immediately see your new icon.
|
|
80
80
|
|
|
81
|
+
## Releasing
|
|
82
|
+
|
|
83
|
+
After adding new icons:
|
|
84
|
+
|
|
85
|
+
1. Bump the version in both `package.json` and `version.json` (including the timestamp)
|
|
86
|
+
2. Commit your changes and push to a new branch
|
|
87
|
+
3. Create a merge request and get it merged to `main`
|
|
88
|
+
4. After the MR is merged, tag the merge commit on `main`:
|
|
89
|
+
|
|
90
|
+
```sh
|
|
91
|
+
git checkout main
|
|
92
|
+
git pull
|
|
93
|
+
git tag v<version>
|
|
94
|
+
git push origin v<version>
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
For example:
|
|
98
|
+
|
|
99
|
+
```sh
|
|
100
|
+
git tag v1.17.47
|
|
101
|
+
git push origin v1.17.47
|
|
102
|
+
```
|
|
103
|
+
|
|
81
104
|
## Adding custom icons (non Material)
|
|
82
105
|
|
|
83
106
|
First add a custom icon to [`icons.config.yaml`](./icons.config.yaml) without an `svg_import` property. This prevents
|
package/icons.config.yaml
CHANGED
|
@@ -969,3 +969,35 @@ Labs:
|
|
|
969
969
|
name: labs
|
|
970
970
|
aliases: ["labs", "test", "experiment", "science", "flask"]
|
|
971
971
|
svg_import: "@material-symbols/svg-600/rounded/labs.svg"
|
|
972
|
+
FormatBold:
|
|
973
|
+
name: format_bold
|
|
974
|
+
aliases: ["format_bold", "bold", "strong"]
|
|
975
|
+
svg_import: "@material-symbols/svg-600/rounded/format_bold.svg"
|
|
976
|
+
FormatItalic:
|
|
977
|
+
name: format_italic
|
|
978
|
+
aliases: ["format_italic", "italic", "emphasis"]
|
|
979
|
+
svg_import: "@material-symbols/svg-600/rounded/format_italic.svg"
|
|
980
|
+
FormatUnderlined:
|
|
981
|
+
name: format_underlined
|
|
982
|
+
aliases: ["format_underlined", "underline", "underlined"]
|
|
983
|
+
svg_import: "@material-symbols/svg-600/rounded/format_underlined.svg"
|
|
984
|
+
FormatStrikethrough:
|
|
985
|
+
name: format_strikethrough
|
|
986
|
+
aliases: ["format_strikethrough", "strikethrough", "strikeout"]
|
|
987
|
+
svg_import: "@material-symbols/svg-600/rounded/format_strikethrough.svg"
|
|
988
|
+
Heading:
|
|
989
|
+
name: heading
|
|
990
|
+
aliases: ["heading", "title", "header", "h1"]
|
|
991
|
+
svg_import: "@material-symbols/svg-600/rounded/title.svg"
|
|
992
|
+
FormatListBulleted:
|
|
993
|
+
name: format_list_bulleted
|
|
994
|
+
aliases: ["format_list_bulleted", "bullet_list", "unordered_list"]
|
|
995
|
+
svg_import: "@material-symbols/svg-600/rounded/format_list_bulleted.svg"
|
|
996
|
+
FormatListNumbered:
|
|
997
|
+
name: format_list_numbered
|
|
998
|
+
aliases: ["format_list_numbered", "numbered_list", "ordered_list"]
|
|
999
|
+
svg_import: "@material-symbols/svg-600/rounded/format_list_numbered.svg"
|
|
1000
|
+
Code:
|
|
1001
|
+
name: code
|
|
1002
|
+
aliases: ["code", "source", "developer", "programming"]
|
|
1003
|
+
svg_import: "@material-symbols/svg-600/rounded/code.svg"
|