@epilot360/icons 1.17.46 → 1.17.48

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 (89) hide show
  1. package/README.md +23 -0
  2. package/icons.config.yaml +36 -0
  3. package/index.js +2834 -1529
  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 +18 -0
  10. package/react/EpilotIcon.js +3315 -2316
  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/Store/index.d.ts +4 -0
  34. package/react/Store/index.js +209 -0
  35. package/react/Store/index.js.map +1 -0
  36. package/react/index.d.ts +9 -0
  37. package/react/index.js +4110 -3084
  38. package/react/index.js.map +1 -1
  39. package/svg/Code/icon-fill.svg +1 -0
  40. package/svg/Code/icon.svg +1 -0
  41. package/svg/Code/index.d.ts +3 -0
  42. package/svg/Code/index.js +159 -0
  43. package/svg/Code/index.js.map +1 -0
  44. package/svg/FormatBold/icon-fill.svg +1 -0
  45. package/svg/FormatBold/icon.svg +1 -0
  46. package/svg/FormatBold/index.d.ts +3 -0
  47. package/svg/FormatBold/index.js +159 -0
  48. package/svg/FormatBold/index.js.map +1 -0
  49. package/svg/FormatItalic/icon-fill.svg +1 -0
  50. package/svg/FormatItalic/icon.svg +1 -0
  51. package/svg/FormatItalic/index.d.ts +3 -0
  52. package/svg/FormatItalic/index.js +159 -0
  53. package/svg/FormatItalic/index.js.map +1 -0
  54. package/svg/FormatListBulleted/icon-fill.svg +1 -0
  55. package/svg/FormatListBulleted/icon.svg +1 -0
  56. package/svg/FormatListBulleted/index.d.ts +3 -0
  57. package/svg/FormatListBulleted/index.js +159 -0
  58. package/svg/FormatListBulleted/index.js.map +1 -0
  59. package/svg/FormatListNumbered/icon-fill.svg +1 -0
  60. package/svg/FormatListNumbered/icon.svg +1 -0
  61. package/svg/FormatListNumbered/index.d.ts +3 -0
  62. package/svg/FormatListNumbered/index.js +159 -0
  63. package/svg/FormatListNumbered/index.js.map +1 -0
  64. package/svg/FormatStrikethrough/icon-fill.svg +1 -0
  65. package/svg/FormatStrikethrough/icon.svg +1 -0
  66. package/svg/FormatStrikethrough/index.d.ts +3 -0
  67. package/svg/FormatStrikethrough/index.js +159 -0
  68. package/svg/FormatStrikethrough/index.js.map +1 -0
  69. package/svg/FormatUnderlined/icon-fill.svg +1 -0
  70. package/svg/FormatUnderlined/icon.svg +1 -0
  71. package/svg/FormatUnderlined/index.d.ts +3 -0
  72. package/svg/FormatUnderlined/index.js +159 -0
  73. package/svg/FormatUnderlined/index.js.map +1 -0
  74. package/svg/Heading/icon-fill.svg +1 -0
  75. package/svg/Heading/icon.svg +1 -0
  76. package/svg/Heading/index.d.ts +3 -0
  77. package/svg/Heading/index.js +159 -0
  78. package/svg/Heading/index.js.map +1 -0
  79. package/svg/Store/icon-fill.svg +1 -0
  80. package/svg/Store/icon.svg +1 -0
  81. package/svg/Store/index.d.ts +3 -0
  82. package/svg/Store/index.js +159 -0
  83. package/svg/Store/index.js.map +1 -0
  84. package/svg/index.d.ts +9 -0
  85. package/svg/index.js +1279 -550
  86. package/svg/index.js.map +1 -1
  87. package/svg/svgIcon.d.ts +9 -0
  88. package/svg/svgIcon.js +981 -279
  89. 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
@@ -446,6 +446,10 @@ Star:
446
446
  name: star
447
447
  aliases: ["star", "favorite"]
448
448
  svg_import: "@material-symbols/svg-600/rounded/star.svg"
449
+ Store:
450
+ name: store
451
+ aliases: ["store", "marketplace"]
452
+ svg_import: "@material-symbols/svg-600/rounded/store.svg"
449
453
  Exclamation:
450
454
  name: exclamation
451
455
  aliases: ["exclamation", "attention"]
@@ -969,3 +973,35 @@ Labs:
969
973
  name: labs
970
974
  aliases: ["labs", "test", "experiment", "science", "flask"]
971
975
  svg_import: "@material-symbols/svg-600/rounded/labs.svg"
976
+ FormatBold:
977
+ name: format_bold
978
+ aliases: ["format_bold", "bold", "strong"]
979
+ svg_import: "@material-symbols/svg-600/rounded/format_bold.svg"
980
+ FormatItalic:
981
+ name: format_italic
982
+ aliases: ["format_italic", "italic", "emphasis"]
983
+ svg_import: "@material-symbols/svg-600/rounded/format_italic.svg"
984
+ FormatUnderlined:
985
+ name: format_underlined
986
+ aliases: ["format_underlined", "underline", "underlined"]
987
+ svg_import: "@material-symbols/svg-600/rounded/format_underlined.svg"
988
+ FormatStrikethrough:
989
+ name: format_strikethrough
990
+ aliases: ["format_strikethrough", "strikethrough", "strikeout"]
991
+ svg_import: "@material-symbols/svg-600/rounded/format_strikethrough.svg"
992
+ Heading:
993
+ name: heading
994
+ aliases: ["heading", "title", "header", "h1"]
995
+ svg_import: "@material-symbols/svg-600/rounded/title.svg"
996
+ FormatListBulleted:
997
+ name: format_list_bulleted
998
+ aliases: ["format_list_bulleted", "bullet_list", "unordered_list"]
999
+ svg_import: "@material-symbols/svg-600/rounded/format_list_bulleted.svg"
1000
+ FormatListNumbered:
1001
+ name: format_list_numbered
1002
+ aliases: ["format_list_numbered", "numbered_list", "ordered_list"]
1003
+ svg_import: "@material-symbols/svg-600/rounded/format_list_numbered.svg"
1004
+ Code:
1005
+ name: code
1006
+ aliases: ["code", "source", "developer", "programming"]
1007
+ svg_import: "@material-symbols/svg-600/rounded/code.svg"