@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.
Files changed (81) hide show
  1. package/README.md +23 -0
  2. package/icons.config.yaml +32 -0
  3. package/index.js +1229 -69
  4. package/index.js.map +1 -1
  5. package/package.json +1 -1
  6. package/react/Code/index.d.ts +4 -0
  7. package/react/Code/index.js +209 -0
  8. package/react/Code/index.js.map +1 -0
  9. package/react/EpilotIcon.d.ts +16 -0
  10. package/react/EpilotIcon.js +2946 -2058
  11. package/react/EpilotIcon.js.map +1 -1
  12. package/react/FormatBold/index.d.ts +4 -0
  13. package/react/FormatBold/index.js +209 -0
  14. package/react/FormatBold/index.js.map +1 -0
  15. package/react/FormatItalic/index.d.ts +4 -0
  16. package/react/FormatItalic/index.js +209 -0
  17. package/react/FormatItalic/index.js.map +1 -0
  18. package/react/FormatListBulleted/index.d.ts +4 -0
  19. package/react/FormatListBulleted/index.js +209 -0
  20. package/react/FormatListBulleted/index.js.map +1 -0
  21. package/react/FormatListNumbered/index.d.ts +4 -0
  22. package/react/FormatListNumbered/index.js +209 -0
  23. package/react/FormatListNumbered/index.js.map +1 -0
  24. package/react/FormatStrikethrough/index.d.ts +4 -0
  25. package/react/FormatStrikethrough/index.js +209 -0
  26. package/react/FormatStrikethrough/index.js.map +1 -0
  27. package/react/FormatUnderlined/index.d.ts +4 -0
  28. package/react/FormatUnderlined/index.js +209 -0
  29. package/react/FormatUnderlined/index.js.map +1 -0
  30. package/react/Heading/index.d.ts +4 -0
  31. package/react/Heading/index.js +209 -0
  32. package/react/Heading/index.js.map +1 -0
  33. package/react/index.d.ts +8 -0
  34. package/react/index.js +1513 -601
  35. package/react/index.js.map +1 -1
  36. package/svg/Code/icon-fill.svg +1 -0
  37. package/svg/Code/icon.svg +1 -0
  38. package/svg/Code/index.d.ts +3 -0
  39. package/svg/Code/index.js +159 -0
  40. package/svg/Code/index.js.map +1 -0
  41. package/svg/FormatBold/icon-fill.svg +1 -0
  42. package/svg/FormatBold/icon.svg +1 -0
  43. package/svg/FormatBold/index.d.ts +3 -0
  44. package/svg/FormatBold/index.js +159 -0
  45. package/svg/FormatBold/index.js.map +1 -0
  46. package/svg/FormatItalic/icon-fill.svg +1 -0
  47. package/svg/FormatItalic/icon.svg +1 -0
  48. package/svg/FormatItalic/index.d.ts +3 -0
  49. package/svg/FormatItalic/index.js +159 -0
  50. package/svg/FormatItalic/index.js.map +1 -0
  51. package/svg/FormatListBulleted/icon-fill.svg +1 -0
  52. package/svg/FormatListBulleted/icon.svg +1 -0
  53. package/svg/FormatListBulleted/index.d.ts +3 -0
  54. package/svg/FormatListBulleted/index.js +159 -0
  55. package/svg/FormatListBulleted/index.js.map +1 -0
  56. package/svg/FormatListNumbered/icon-fill.svg +1 -0
  57. package/svg/FormatListNumbered/icon.svg +1 -0
  58. package/svg/FormatListNumbered/index.d.ts +3 -0
  59. package/svg/FormatListNumbered/index.js +159 -0
  60. package/svg/FormatListNumbered/index.js.map +1 -0
  61. package/svg/FormatStrikethrough/icon-fill.svg +1 -0
  62. package/svg/FormatStrikethrough/icon.svg +1 -0
  63. package/svg/FormatStrikethrough/index.d.ts +3 -0
  64. package/svg/FormatStrikethrough/index.js +159 -0
  65. package/svg/FormatStrikethrough/index.js.map +1 -0
  66. package/svg/FormatUnderlined/icon-fill.svg +1 -0
  67. package/svg/FormatUnderlined/icon.svg +1 -0
  68. package/svg/FormatUnderlined/index.d.ts +3 -0
  69. package/svg/FormatUnderlined/index.js +159 -0
  70. package/svg/FormatUnderlined/index.js.map +1 -0
  71. package/svg/Heading/icon-fill.svg +1 -0
  72. package/svg/Heading/icon.svg +1 -0
  73. package/svg/Heading/index.d.ts +3 -0
  74. package/svg/Heading/index.js +159 -0
  75. package/svg/Heading/index.js.map +1 -0
  76. package/svg/index.d.ts +8 -0
  77. package/svg/index.js +714 -66
  78. package/svg/index.js.map +1 -1
  79. package/svg/svgIcon.d.ts +8 -0
  80. package/svg/svgIcon.js +692 -68
  81. 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"