@digigov/react-icons 2.0.0-rc.28 → 2.0.0-rc.29

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 (456) hide show
  1. package/.prettierrc.js +1 -0
  2. package/CHANGELOG.json +161 -0
  3. package/dist/CHANGELOG.md +52 -0
  4. package/dist/README.md +0 -0
  5. package/{cjs → dist/cjs}/registry.js.map +2 -2
  6. package/{index.js → dist/index.js} +1 -1
  7. package/dist/package.json +17 -0
  8. package/dist/src/AccessibilityIcon/__snapshots__/index.test.tsx.snap +325 -0
  9. package/dist/src/AccessibilityIcon/config.tsx +24 -0
  10. package/dist/src/AccessibilityIcon/index.test.tsx +44 -0
  11. package/dist/src/AccessibilityIcon/index.tsx +10 -0
  12. package/dist/src/ArrowIcon/__snapshots__/index.test.tsx.snap +81 -0
  13. package/dist/src/ArrowIcon/config.tsx +49 -0
  14. package/dist/src/ArrowIcon/index.test.tsx +20 -0
  15. package/dist/src/ArrowIcon/index.tsx +8 -0
  16. package/dist/src/BurgerIcon/__snapshots__/index.test.tsx.snap +247 -0
  17. package/dist/src/BurgerIcon/config.tsx +42 -0
  18. package/dist/src/BurgerIcon/index.test.tsx +30 -0
  19. package/dist/src/BurgerIcon/index.tsx +8 -0
  20. package/dist/src/CancelIcon/__snapshots__/index.test.tsx.snap +141 -0
  21. package/dist/src/CancelIcon/config.tsx +19 -0
  22. package/dist/src/CancelIcon/index.test.tsx +30 -0
  23. package/dist/src/CancelIcon/index.tsx +8 -0
  24. package/dist/src/CaretIcon/__snapshots__/index.test.tsx.snap +81 -0
  25. package/dist/src/CaretIcon/config.tsx +29 -0
  26. package/dist/src/CaretIcon/index.test.tsx +20 -0
  27. package/dist/src/CaretIcon/index.tsx +8 -0
  28. package/dist/src/ChatIcon/__snapshots__/index.test.tsx.snap +161 -0
  29. package/dist/src/ChatIcon/config.tsx +32 -0
  30. package/dist/src/ChatIcon/index.test.tsx +33 -0
  31. package/dist/src/ChatIcon/index.tsx +8 -0
  32. package/dist/src/CheckIcon/__snapshots__/index.test.tsx.snap +161 -0
  33. package/dist/src/CheckIcon/config.tsx +19 -0
  34. package/dist/src/CheckIcon/index.test.tsx +33 -0
  35. package/dist/src/CheckIcon/index.tsx +8 -0
  36. package/dist/src/ChevronIcon/__snapshots__/index.test.tsx.snap +81 -0
  37. package/dist/src/ChevronIcon/config.tsx +50 -0
  38. package/dist/src/ChevronIcon/index.test.tsx +24 -0
  39. package/dist/src/ChevronIcon/index.tsx +8 -0
  40. package/dist/src/CloseIcon/__snapshots__/index.test.tsx.snap +21 -0
  41. package/dist/src/CloseIcon/config.tsx +19 -0
  42. package/dist/src/CloseIcon/index.test.tsx +8 -0
  43. package/dist/src/CloseIcon/index.tsx +8 -0
  44. package/dist/src/DownloadIcon/__snapshots__/index.test.tsx.snap +232 -0
  45. package/dist/src/DownloadIcon/config.tsx +20 -0
  46. package/dist/src/DownloadIcon/index.test.tsx +32 -0
  47. package/dist/src/DownloadIcon/index.tsx +8 -0
  48. package/dist/src/ExclamationIcon/__snapshots__/index.test.tsx.snap +190 -0
  49. package/dist/src/ExclamationIcon/config.tsx +20 -0
  50. package/dist/src/ExclamationIcon/index.test.tsx +34 -0
  51. package/dist/src/ExclamationIcon/index.tsx +8 -0
  52. package/dist/src/GlobeIcon/__snapshots__/index.test.tsx.snap +81 -0
  53. package/dist/src/GlobeIcon/config.tsx +19 -0
  54. package/dist/src/GlobeIcon/index.test.tsx +21 -0
  55. package/dist/src/GlobeIcon/index.tsx +8 -0
  56. package/dist/src/Icon/__snapshots__/index.test.tsx.snap +238 -0
  57. package/dist/src/Icon/index.test.tsx +38 -0
  58. package/dist/src/Icon/index.tsx +63 -0
  59. package/dist/src/IconBase/index.tsx +258 -0
  60. package/dist/src/LockIcon/__snapshots__/index.test.tsx.snap +141 -0
  61. package/dist/src/LockIcon/config.tsx +19 -0
  62. package/dist/src/LockIcon/index.test.tsx +30 -0
  63. package/dist/src/LockIcon/index.tsx +8 -0
  64. package/dist/src/LoginIcon/__snapshots__/index.test.tsx.snap +176 -0
  65. package/dist/src/LoginIcon/config.tsx +23 -0
  66. package/dist/src/LoginIcon/index.test.tsx +30 -0
  67. package/dist/src/LoginIcon/index.tsx +8 -0
  68. package/dist/src/MinusIcon/__snapshots__/index.test.tsx.snap +162 -0
  69. package/dist/src/MinusIcon/config.tsx +16 -0
  70. package/dist/src/MinusIcon/index.test.tsx +30 -0
  71. package/dist/src/MinusIcon/index.tsx +8 -0
  72. package/dist/src/MoreVertIcon/__snapshots__/index.test.tsx.snap +325 -0
  73. package/dist/src/MoreVertIcon/config.tsx +18 -0
  74. package/dist/src/MoreVertIcon/index.test.tsx +40 -0
  75. package/dist/src/MoreVertIcon/index.tsx +8 -0
  76. package/dist/src/PdfFileIcon/__snapshots__/index.test.tsx.snap +316 -0
  77. package/dist/src/PdfFileIcon/config.tsx +30 -0
  78. package/dist/src/PdfFileIcon/index.test.tsx +30 -0
  79. package/dist/src/PdfFileIcon/index.tsx +8 -0
  80. package/dist/src/PlusIcon/__snapshots__/index.test.tsx.snap +141 -0
  81. package/dist/src/PlusIcon/config.tsx +19 -0
  82. package/dist/src/PlusIcon/index.test.tsx +30 -0
  83. package/dist/src/PlusIcon/index.tsx +8 -0
  84. package/dist/src/PrintIcon/__snapshots__/index.test.tsx.snap +197 -0
  85. package/dist/src/PrintIcon/config.tsx +20 -0
  86. package/dist/src/PrintIcon/index.test.tsx +30 -0
  87. package/dist/src/PrintIcon/index.tsx +8 -0
  88. package/dist/src/ReplyIcon/__snapshots__/index.test.tsx.snap +141 -0
  89. package/dist/src/ReplyIcon/config.tsx +19 -0
  90. package/dist/src/ReplyIcon/index.test.tsx +30 -0
  91. package/dist/src/ReplyIcon/index.tsx +8 -0
  92. package/dist/src/RestoreIcon/__snapshots__/index.test.tsx.snap +225 -0
  93. package/dist/src/RestoreIcon/config.tsx +21 -0
  94. package/dist/src/RestoreIcon/index.test.tsx +30 -0
  95. package/dist/src/RestoreIcon/index.tsx +8 -0
  96. package/dist/src/SearchIcon/__snapshots__/index.test.tsx.snap +21 -0
  97. package/dist/src/SearchIcon/config.tsx +19 -0
  98. package/dist/src/SearchIcon/index.test.tsx +8 -0
  99. package/dist/src/SearchIcon/index.tsx +8 -0
  100. package/dist/src/SvgIcon/__snapshots__/index.test.tsx.snap +271 -0
  101. package/dist/src/SvgIcon/index.test.tsx +96 -0
  102. package/dist/src/SvgIcon/index.tsx +72 -0
  103. package/dist/src/UncheckIcon/__snapshots__/index.test.tsx.snap +181 -0
  104. package/dist/src/UncheckIcon/config.tsx +19 -0
  105. package/dist/src/UncheckIcon/index.test.tsx +36 -0
  106. package/dist/src/UncheckIcon/index.tsx +8 -0
  107. package/dist/src/icons.ts +73 -0
  108. package/dist/src/index.ts +23 -0
  109. package/eslint.config.mjs +3 -0
  110. package/package.json +27 -6
  111. package/react-icons.build.log +9 -0
  112. package/rush-logs/react-icons.build.log +8 -0
  113. package/rush-logs/react-icons.lint.log +9 -0
  114. package/rush-logs/react-icons.publint.log +60 -0
  115. package/rush-logs/react-icons.test.log +37 -0
  116. package/tsconfig.json +39 -0
  117. package/tsconfig.production.json +17 -0
  118. package/{AccessibilityIcon → dist/AccessibilityIcon}/config/index.js +0 -0
  119. package/{AccessibilityIcon → dist/AccessibilityIcon}/config/package.json +0 -0
  120. package/{AccessibilityIcon → dist/AccessibilityIcon}/config.d.ts +0 -0
  121. package/{AccessibilityIcon → dist/AccessibilityIcon}/config.js.map +0 -0
  122. package/{AccessibilityIcon → dist/AccessibilityIcon}/index.d.ts +0 -0
  123. package/{AccessibilityIcon → dist/AccessibilityIcon}/index.js +0 -0
  124. package/{AccessibilityIcon → dist/AccessibilityIcon}/index.js.map +0 -0
  125. package/{AccessibilityIcon → dist/AccessibilityIcon}/index.test.d.ts +0 -0
  126. package/{AccessibilityIcon → dist/AccessibilityIcon}/package.json +0 -0
  127. package/{ArrowIcon → dist/ArrowIcon}/config/index.js +0 -0
  128. package/{ArrowIcon → dist/ArrowIcon}/config/package.json +0 -0
  129. package/{ArrowIcon → dist/ArrowIcon}/config.d.ts +0 -0
  130. package/{ArrowIcon → dist/ArrowIcon}/config.js.map +0 -0
  131. package/{ArrowIcon → dist/ArrowIcon}/index.d.ts +0 -0
  132. package/{ArrowIcon → dist/ArrowIcon}/index.js +0 -0
  133. package/{ArrowIcon → dist/ArrowIcon}/index.js.map +0 -0
  134. package/{ArrowIcon → dist/ArrowIcon}/index.test.d.ts +0 -0
  135. package/{ArrowIcon → dist/ArrowIcon}/package.json +0 -0
  136. package/{BurgerIcon → dist/BurgerIcon}/config/index.js +0 -0
  137. package/{BurgerIcon → dist/BurgerIcon}/config/package.json +0 -0
  138. package/{BurgerIcon → dist/BurgerIcon}/config.d.ts +0 -0
  139. package/{BurgerIcon → dist/BurgerIcon}/config.js.map +0 -0
  140. package/{BurgerIcon → dist/BurgerIcon}/index.d.ts +0 -0
  141. package/{BurgerIcon → dist/BurgerIcon}/index.js +0 -0
  142. package/{BurgerIcon → dist/BurgerIcon}/index.js.map +0 -0
  143. package/{BurgerIcon → dist/BurgerIcon}/index.test.d.ts +0 -0
  144. package/{BurgerIcon → dist/BurgerIcon}/package.json +0 -0
  145. package/{CancelIcon → dist/CancelIcon}/config/index.js +0 -0
  146. package/{CancelIcon → dist/CancelIcon}/config/package.json +0 -0
  147. package/{CancelIcon → dist/CancelIcon}/config.d.ts +0 -0
  148. package/{CancelIcon → dist/CancelIcon}/config.js.map +0 -0
  149. package/{CancelIcon → dist/CancelIcon}/index.d.ts +0 -0
  150. package/{CancelIcon → dist/CancelIcon}/index.js +0 -0
  151. package/{CancelIcon → dist/CancelIcon}/index.js.map +0 -0
  152. package/{CancelIcon → dist/CancelIcon}/index.test.d.ts +0 -0
  153. package/{CancelIcon → dist/CancelIcon}/package.json +0 -0
  154. package/{CaretIcon → dist/CaretIcon}/config/index.js +0 -0
  155. package/{CaretIcon → dist/CaretIcon}/config/package.json +0 -0
  156. package/{CaretIcon → dist/CaretIcon}/config.d.ts +0 -0
  157. package/{CaretIcon → dist/CaretIcon}/config.js.map +0 -0
  158. package/{CaretIcon → dist/CaretIcon}/index.d.ts +0 -0
  159. package/{CaretIcon → dist/CaretIcon}/index.js +0 -0
  160. package/{CaretIcon → dist/CaretIcon}/index.js.map +0 -0
  161. package/{CaretIcon → dist/CaretIcon}/index.test.d.ts +0 -0
  162. package/{CaretIcon → dist/CaretIcon}/package.json +0 -0
  163. package/{ChatIcon → dist/ChatIcon}/config/index.js +0 -0
  164. package/{ChatIcon → dist/ChatIcon}/config/package.json +0 -0
  165. package/{ChatIcon → dist/ChatIcon}/config.d.ts +0 -0
  166. package/{ChatIcon → dist/ChatIcon}/config.js.map +0 -0
  167. package/{ChatIcon → dist/ChatIcon}/index.d.ts +0 -0
  168. package/{ChatIcon → dist/ChatIcon}/index.js +0 -0
  169. package/{ChatIcon → dist/ChatIcon}/index.js.map +0 -0
  170. package/{ChatIcon → dist/ChatIcon}/index.test.d.ts +0 -0
  171. package/{ChatIcon → dist/ChatIcon}/package.json +0 -0
  172. package/{CheckIcon → dist/CheckIcon}/config/index.js +0 -0
  173. package/{CheckIcon → dist/CheckIcon}/config/package.json +0 -0
  174. package/{CheckIcon → dist/CheckIcon}/config.d.ts +0 -0
  175. package/{CheckIcon → dist/CheckIcon}/config.js.map +0 -0
  176. package/{CheckIcon → dist/CheckIcon}/index.d.ts +0 -0
  177. package/{CheckIcon → dist/CheckIcon}/index.js +0 -0
  178. package/{CheckIcon → dist/CheckIcon}/index.js.map +0 -0
  179. package/{CheckIcon → dist/CheckIcon}/index.test.d.ts +0 -0
  180. package/{CheckIcon → dist/CheckIcon}/package.json +0 -0
  181. package/{ChevronIcon → dist/ChevronIcon}/config/index.js +0 -0
  182. package/{ChevronIcon → dist/ChevronIcon}/config/package.json +0 -0
  183. package/{ChevronIcon → dist/ChevronIcon}/config.d.ts +0 -0
  184. package/{ChevronIcon → dist/ChevronIcon}/config.js.map +0 -0
  185. package/{ChevronIcon → dist/ChevronIcon}/index.d.ts +0 -0
  186. package/{ChevronIcon → dist/ChevronIcon}/index.js +0 -0
  187. package/{ChevronIcon → dist/ChevronIcon}/index.js.map +0 -0
  188. package/{ChevronIcon → dist/ChevronIcon}/index.test.d.ts +0 -0
  189. package/{ChevronIcon → dist/ChevronIcon}/package.json +0 -0
  190. package/{CloseIcon → dist/CloseIcon}/config/index.js +0 -0
  191. package/{CloseIcon → dist/CloseIcon}/config/package.json +0 -0
  192. package/{CloseIcon → dist/CloseIcon}/config.d.ts +0 -0
  193. package/{CloseIcon → dist/CloseIcon}/config.js.map +0 -0
  194. package/{CloseIcon → dist/CloseIcon}/index.d.ts +0 -0
  195. package/{CloseIcon → dist/CloseIcon}/index.js +0 -0
  196. package/{CloseIcon → dist/CloseIcon}/index.js.map +0 -0
  197. package/{CloseIcon → dist/CloseIcon}/index.test.d.ts +0 -0
  198. package/{CloseIcon → dist/CloseIcon}/package.json +0 -0
  199. package/{DownloadIcon → dist/DownloadIcon}/config/index.js +0 -0
  200. package/{DownloadIcon → dist/DownloadIcon}/config/package.json +0 -0
  201. package/{DownloadIcon → dist/DownloadIcon}/config.d.ts +0 -0
  202. package/{DownloadIcon → dist/DownloadIcon}/config.js.map +0 -0
  203. package/{DownloadIcon → dist/DownloadIcon}/index.d.ts +0 -0
  204. package/{DownloadIcon → dist/DownloadIcon}/index.js +0 -0
  205. package/{DownloadIcon → dist/DownloadIcon}/index.js.map +0 -0
  206. package/{DownloadIcon → dist/DownloadIcon}/index.test.d.ts +0 -0
  207. package/{DownloadIcon → dist/DownloadIcon}/package.json +0 -0
  208. package/{ExclamationIcon → dist/ExclamationIcon}/config/index.js +0 -0
  209. package/{ExclamationIcon → dist/ExclamationIcon}/config/package.json +0 -0
  210. package/{ExclamationIcon → dist/ExclamationIcon}/config.d.ts +0 -0
  211. package/{ExclamationIcon → dist/ExclamationIcon}/config.js.map +0 -0
  212. package/{ExclamationIcon → dist/ExclamationIcon}/index.d.ts +0 -0
  213. package/{ExclamationIcon → dist/ExclamationIcon}/index.js +0 -0
  214. package/{ExclamationIcon → dist/ExclamationIcon}/index.js.map +0 -0
  215. package/{ExclamationIcon → dist/ExclamationIcon}/index.test.d.ts +0 -0
  216. package/{ExclamationIcon → dist/ExclamationIcon}/package.json +0 -0
  217. package/{GlobeIcon → dist/GlobeIcon}/config/index.js +0 -0
  218. package/{GlobeIcon → dist/GlobeIcon}/config/package.json +0 -0
  219. package/{GlobeIcon → dist/GlobeIcon}/config.d.ts +0 -0
  220. package/{GlobeIcon → dist/GlobeIcon}/config.js.map +0 -0
  221. package/{GlobeIcon → dist/GlobeIcon}/index.d.ts +0 -0
  222. package/{GlobeIcon → dist/GlobeIcon}/index.js +0 -0
  223. package/{GlobeIcon → dist/GlobeIcon}/index.js.map +0 -0
  224. package/{GlobeIcon → dist/GlobeIcon}/index.test.d.ts +0 -0
  225. package/{GlobeIcon → dist/GlobeIcon}/package.json +0 -0
  226. package/{Icon → dist/Icon}/index.d.ts +0 -0
  227. package/{Icon → dist/Icon}/index.js +0 -0
  228. package/{Icon → dist/Icon}/index.js.map +0 -0
  229. package/{Icon → dist/Icon}/index.test.d.ts +0 -0
  230. package/{Icon → dist/Icon}/package.json +0 -0
  231. package/{IconBase → dist/IconBase}/index.d.ts +0 -0
  232. package/{IconBase → dist/IconBase}/index.js +0 -0
  233. package/{IconBase → dist/IconBase}/index.js.map +0 -0
  234. package/{IconBase → dist/IconBase}/package.json +0 -0
  235. package/{LICENSE → dist/LICENSE} +0 -0
  236. package/{LockIcon → dist/LockIcon}/config/index.js +0 -0
  237. package/{LockIcon → dist/LockIcon}/config/package.json +0 -0
  238. package/{LockIcon → dist/LockIcon}/config.d.ts +0 -0
  239. package/{LockIcon → dist/LockIcon}/config.js.map +0 -0
  240. package/{LockIcon → dist/LockIcon}/index.d.ts +0 -0
  241. package/{LockIcon → dist/LockIcon}/index.js +0 -0
  242. package/{LockIcon → dist/LockIcon}/index.js.map +0 -0
  243. package/{LockIcon → dist/LockIcon}/index.test.d.ts +0 -0
  244. package/{LockIcon → dist/LockIcon}/package.json +0 -0
  245. package/{LoginIcon → dist/LoginIcon}/config/index.js +0 -0
  246. package/{LoginIcon → dist/LoginIcon}/config/package.json +0 -0
  247. package/{LoginIcon → dist/LoginIcon}/config.d.ts +0 -0
  248. package/{LoginIcon → dist/LoginIcon}/config.js.map +0 -0
  249. package/{LoginIcon → dist/LoginIcon}/index.d.ts +0 -0
  250. package/{LoginIcon → dist/LoginIcon}/index.js +0 -0
  251. package/{LoginIcon → dist/LoginIcon}/index.js.map +0 -0
  252. package/{LoginIcon → dist/LoginIcon}/index.test.d.ts +0 -0
  253. package/{LoginIcon → dist/LoginIcon}/package.json +0 -0
  254. package/{MinusIcon → dist/MinusIcon}/config/index.js +0 -0
  255. package/{MinusIcon → dist/MinusIcon}/config/package.json +0 -0
  256. package/{MinusIcon → dist/MinusIcon}/config.d.ts +0 -0
  257. package/{MinusIcon → dist/MinusIcon}/config.js.map +0 -0
  258. package/{MinusIcon → dist/MinusIcon}/index.d.ts +0 -0
  259. package/{MinusIcon → dist/MinusIcon}/index.js +0 -0
  260. package/{MinusIcon → dist/MinusIcon}/index.js.map +0 -0
  261. package/{MinusIcon → dist/MinusIcon}/index.test.d.ts +0 -0
  262. package/{MinusIcon → dist/MinusIcon}/package.json +0 -0
  263. package/{MoreVertIcon → dist/MoreVertIcon}/config/index.js +0 -0
  264. package/{MoreVertIcon → dist/MoreVertIcon}/config/package.json +0 -0
  265. package/{MoreVertIcon → dist/MoreVertIcon}/config.d.ts +0 -0
  266. package/{MoreVertIcon → dist/MoreVertIcon}/config.js.map +0 -0
  267. package/{MoreVertIcon → dist/MoreVertIcon}/index.d.ts +0 -0
  268. package/{MoreVertIcon → dist/MoreVertIcon}/index.js +0 -0
  269. package/{MoreVertIcon → dist/MoreVertIcon}/index.js.map +0 -0
  270. package/{MoreVertIcon → dist/MoreVertIcon}/index.test.d.ts +0 -0
  271. package/{MoreVertIcon → dist/MoreVertIcon}/package.json +0 -0
  272. package/{PdfFileIcon → dist/PdfFileIcon}/config/index.js +0 -0
  273. package/{PdfFileIcon → dist/PdfFileIcon}/config/package.json +0 -0
  274. package/{PdfFileIcon → dist/PdfFileIcon}/config.d.ts +0 -0
  275. package/{PdfFileIcon → dist/PdfFileIcon}/config.js.map +0 -0
  276. package/{PdfFileIcon → dist/PdfFileIcon}/index.d.ts +0 -0
  277. package/{PdfFileIcon → dist/PdfFileIcon}/index.js +0 -0
  278. package/{PdfFileIcon → dist/PdfFileIcon}/index.js.map +0 -0
  279. package/{PdfFileIcon → dist/PdfFileIcon}/index.test.d.ts +0 -0
  280. package/{PdfFileIcon → dist/PdfFileIcon}/package.json +0 -0
  281. package/{PlusIcon → dist/PlusIcon}/config/index.js +0 -0
  282. package/{PlusIcon → dist/PlusIcon}/config/package.json +0 -0
  283. package/{PlusIcon → dist/PlusIcon}/config.d.ts +0 -0
  284. package/{PlusIcon → dist/PlusIcon}/config.js.map +0 -0
  285. package/{PlusIcon → dist/PlusIcon}/index.d.ts +0 -0
  286. package/{PlusIcon → dist/PlusIcon}/index.js +0 -0
  287. package/{PlusIcon → dist/PlusIcon}/index.js.map +0 -0
  288. package/{PlusIcon → dist/PlusIcon}/index.test.d.ts +0 -0
  289. package/{PlusIcon → dist/PlusIcon}/package.json +0 -0
  290. package/{PrintIcon → dist/PrintIcon}/config/index.js +0 -0
  291. package/{PrintIcon → dist/PrintIcon}/config/package.json +0 -0
  292. package/{PrintIcon → dist/PrintIcon}/config.d.ts +0 -0
  293. package/{PrintIcon → dist/PrintIcon}/config.js.map +0 -0
  294. package/{PrintIcon → dist/PrintIcon}/index.d.ts +0 -0
  295. package/{PrintIcon → dist/PrintIcon}/index.js +0 -0
  296. package/{PrintIcon → dist/PrintIcon}/index.js.map +0 -0
  297. package/{PrintIcon → dist/PrintIcon}/index.test.d.ts +0 -0
  298. package/{PrintIcon → dist/PrintIcon}/package.json +0 -0
  299. package/{ReplyIcon → dist/ReplyIcon}/config/index.js +0 -0
  300. package/{ReplyIcon → dist/ReplyIcon}/config/package.json +0 -0
  301. package/{ReplyIcon → dist/ReplyIcon}/config.d.ts +0 -0
  302. package/{ReplyIcon → dist/ReplyIcon}/config.js.map +0 -0
  303. package/{ReplyIcon → dist/ReplyIcon}/index.d.ts +0 -0
  304. package/{ReplyIcon → dist/ReplyIcon}/index.js +0 -0
  305. package/{ReplyIcon → dist/ReplyIcon}/index.js.map +0 -0
  306. package/{ReplyIcon → dist/ReplyIcon}/index.test.d.ts +0 -0
  307. package/{ReplyIcon → dist/ReplyIcon}/package.json +0 -0
  308. package/{RestoreIcon → dist/RestoreIcon}/config/index.js +0 -0
  309. package/{RestoreIcon → dist/RestoreIcon}/config/package.json +0 -0
  310. package/{RestoreIcon → dist/RestoreIcon}/config.d.ts +0 -0
  311. package/{RestoreIcon → dist/RestoreIcon}/config.js.map +0 -0
  312. package/{RestoreIcon → dist/RestoreIcon}/index.d.ts +0 -0
  313. package/{RestoreIcon → dist/RestoreIcon}/index.js +0 -0
  314. package/{RestoreIcon → dist/RestoreIcon}/index.js.map +0 -0
  315. package/{RestoreIcon → dist/RestoreIcon}/index.test.d.ts +0 -0
  316. package/{RestoreIcon → dist/RestoreIcon}/package.json +0 -0
  317. package/{SearchIcon → dist/SearchIcon}/config/index.js +0 -0
  318. package/{SearchIcon → dist/SearchIcon}/config/package.json +0 -0
  319. package/{SearchIcon → dist/SearchIcon}/config.d.ts +0 -0
  320. package/{SearchIcon → dist/SearchIcon}/config.js.map +0 -0
  321. package/{SearchIcon → dist/SearchIcon}/index.d.ts +0 -0
  322. package/{SearchIcon → dist/SearchIcon}/index.js +0 -0
  323. package/{SearchIcon → dist/SearchIcon}/index.js.map +0 -0
  324. package/{SearchIcon → dist/SearchIcon}/index.test.d.ts +0 -0
  325. package/{SearchIcon → dist/SearchIcon}/package.json +0 -0
  326. package/{SvgIcon → dist/SvgIcon}/index.d.ts +0 -0
  327. package/{SvgIcon → dist/SvgIcon}/index.js +0 -0
  328. package/{SvgIcon → dist/SvgIcon}/index.js.map +0 -0
  329. package/{SvgIcon → dist/SvgIcon}/index.test.d.ts +0 -0
  330. package/{SvgIcon → dist/SvgIcon}/package.json +0 -0
  331. package/{UncheckIcon → dist/UncheckIcon}/config/index.js +0 -0
  332. package/{UncheckIcon → dist/UncheckIcon}/config/package.json +0 -0
  333. package/{UncheckIcon → dist/UncheckIcon}/config.d.ts +0 -0
  334. package/{UncheckIcon → dist/UncheckIcon}/config.js.map +0 -0
  335. package/{UncheckIcon → dist/UncheckIcon}/index.d.ts +0 -0
  336. package/{UncheckIcon → dist/UncheckIcon}/index.js +0 -0
  337. package/{UncheckIcon → dist/UncheckIcon}/index.js.map +0 -0
  338. package/{UncheckIcon → dist/UncheckIcon}/index.test.d.ts +0 -0
  339. package/{UncheckIcon → dist/UncheckIcon}/package.json +0 -0
  340. package/{cjs → dist/cjs}/AccessibilityIcon/config/index.js +0 -0
  341. package/{cjs → dist/cjs}/AccessibilityIcon/config.js.map +0 -0
  342. package/{cjs → dist/cjs}/AccessibilityIcon/index.js +0 -0
  343. package/{cjs → dist/cjs}/AccessibilityIcon/index.js.map +0 -0
  344. package/{cjs → dist/cjs}/ArrowIcon/config/index.js +0 -0
  345. package/{cjs → dist/cjs}/ArrowIcon/config.js.map +0 -0
  346. package/{cjs → dist/cjs}/ArrowIcon/index.js +0 -0
  347. package/{cjs → dist/cjs}/ArrowIcon/index.js.map +0 -0
  348. package/{cjs → dist/cjs}/BurgerIcon/config/index.js +0 -0
  349. package/{cjs → dist/cjs}/BurgerIcon/config.js.map +0 -0
  350. package/{cjs → dist/cjs}/BurgerIcon/index.js +0 -0
  351. package/{cjs → dist/cjs}/BurgerIcon/index.js.map +0 -0
  352. package/{cjs → dist/cjs}/CancelIcon/config/index.js +0 -0
  353. package/{cjs → dist/cjs}/CancelIcon/config.js.map +0 -0
  354. package/{cjs → dist/cjs}/CancelIcon/index.js +0 -0
  355. package/{cjs → dist/cjs}/CancelIcon/index.js.map +0 -0
  356. package/{cjs → dist/cjs}/CaretIcon/config/index.js +0 -0
  357. package/{cjs → dist/cjs}/CaretIcon/config.js.map +0 -0
  358. package/{cjs → dist/cjs}/CaretIcon/index.js +0 -0
  359. package/{cjs → dist/cjs}/CaretIcon/index.js.map +0 -0
  360. package/{cjs → dist/cjs}/ChatIcon/config/index.js +0 -0
  361. package/{cjs → dist/cjs}/ChatIcon/config.js.map +0 -0
  362. package/{cjs → dist/cjs}/ChatIcon/index.js +0 -0
  363. package/{cjs → dist/cjs}/ChatIcon/index.js.map +0 -0
  364. package/{cjs → dist/cjs}/CheckIcon/config/index.js +0 -0
  365. package/{cjs → dist/cjs}/CheckIcon/config.js.map +0 -0
  366. package/{cjs → dist/cjs}/CheckIcon/index.js +0 -0
  367. package/{cjs → dist/cjs}/CheckIcon/index.js.map +0 -0
  368. package/{cjs → dist/cjs}/ChevronIcon/config/index.js +0 -0
  369. package/{cjs → dist/cjs}/ChevronIcon/config.js.map +0 -0
  370. package/{cjs → dist/cjs}/ChevronIcon/index.js +0 -0
  371. package/{cjs → dist/cjs}/ChevronIcon/index.js.map +0 -0
  372. package/{cjs → dist/cjs}/CloseIcon/config/index.js +0 -0
  373. package/{cjs → dist/cjs}/CloseIcon/config.js.map +0 -0
  374. package/{cjs → dist/cjs}/CloseIcon/index.js +0 -0
  375. package/{cjs → dist/cjs}/CloseIcon/index.js.map +0 -0
  376. package/{cjs → dist/cjs}/DownloadIcon/config/index.js +0 -0
  377. package/{cjs → dist/cjs}/DownloadIcon/config.js.map +0 -0
  378. package/{cjs → dist/cjs}/DownloadIcon/index.js +0 -0
  379. package/{cjs → dist/cjs}/DownloadIcon/index.js.map +0 -0
  380. package/{cjs → dist/cjs}/ExclamationIcon/config/index.js +0 -0
  381. package/{cjs → dist/cjs}/ExclamationIcon/config.js.map +0 -0
  382. package/{cjs → dist/cjs}/ExclamationIcon/index.js +0 -0
  383. package/{cjs → dist/cjs}/ExclamationIcon/index.js.map +0 -0
  384. package/{cjs → dist/cjs}/GlobeIcon/config/index.js +0 -0
  385. package/{cjs → dist/cjs}/GlobeIcon/config.js.map +0 -0
  386. package/{cjs → dist/cjs}/GlobeIcon/index.js +0 -0
  387. package/{cjs → dist/cjs}/GlobeIcon/index.js.map +0 -0
  388. package/{cjs → dist/cjs}/Icon/index.js +0 -0
  389. package/{cjs → dist/cjs}/Icon/index.js.map +0 -0
  390. package/{cjs → dist/cjs}/IconBase/index.js +0 -0
  391. package/{cjs → dist/cjs}/IconBase/index.js.map +0 -0
  392. package/{cjs → dist/cjs}/LockIcon/config/index.js +0 -0
  393. package/{cjs → dist/cjs}/LockIcon/config.js.map +0 -0
  394. package/{cjs → dist/cjs}/LockIcon/index.js +0 -0
  395. package/{cjs → dist/cjs}/LockIcon/index.js.map +0 -0
  396. package/{cjs → dist/cjs}/LoginIcon/config/index.js +0 -0
  397. package/{cjs → dist/cjs}/LoginIcon/config.js.map +0 -0
  398. package/{cjs → dist/cjs}/LoginIcon/index.js +0 -0
  399. package/{cjs → dist/cjs}/LoginIcon/index.js.map +0 -0
  400. package/{cjs → dist/cjs}/MinusIcon/config/index.js +0 -0
  401. package/{cjs → dist/cjs}/MinusIcon/config.js.map +0 -0
  402. package/{cjs → dist/cjs}/MinusIcon/index.js +0 -0
  403. package/{cjs → dist/cjs}/MinusIcon/index.js.map +0 -0
  404. package/{cjs → dist/cjs}/MoreVertIcon/config/index.js +0 -0
  405. package/{cjs → dist/cjs}/MoreVertIcon/config.js.map +0 -0
  406. package/{cjs → dist/cjs}/MoreVertIcon/index.js +0 -0
  407. package/{cjs → dist/cjs}/MoreVertIcon/index.js.map +0 -0
  408. package/{cjs → dist/cjs}/PdfFileIcon/config/index.js +0 -0
  409. package/{cjs → dist/cjs}/PdfFileIcon/config.js.map +0 -0
  410. package/{cjs → dist/cjs}/PdfFileIcon/index.js +0 -0
  411. package/{cjs → dist/cjs}/PdfFileIcon/index.js.map +0 -0
  412. package/{cjs → dist/cjs}/PlusIcon/config/index.js +0 -0
  413. package/{cjs → dist/cjs}/PlusIcon/config.js.map +0 -0
  414. package/{cjs → dist/cjs}/PlusIcon/index.js +0 -0
  415. package/{cjs → dist/cjs}/PlusIcon/index.js.map +0 -0
  416. package/{cjs → dist/cjs}/PrintIcon/config/index.js +0 -0
  417. package/{cjs → dist/cjs}/PrintIcon/config.js.map +0 -0
  418. package/{cjs → dist/cjs}/PrintIcon/index.js +0 -0
  419. package/{cjs → dist/cjs}/PrintIcon/index.js.map +0 -0
  420. package/{cjs → dist/cjs}/ReplyIcon/config/index.js +0 -0
  421. package/{cjs → dist/cjs}/ReplyIcon/config.js.map +0 -0
  422. package/{cjs → dist/cjs}/ReplyIcon/index.js +0 -0
  423. package/{cjs → dist/cjs}/ReplyIcon/index.js.map +0 -0
  424. package/{cjs → dist/cjs}/RestoreIcon/config/index.js +0 -0
  425. package/{cjs → dist/cjs}/RestoreIcon/config.js.map +0 -0
  426. package/{cjs → dist/cjs}/RestoreIcon/index.js +0 -0
  427. package/{cjs → dist/cjs}/RestoreIcon/index.js.map +0 -0
  428. package/{cjs → dist/cjs}/SearchIcon/config/index.js +0 -0
  429. package/{cjs → dist/cjs}/SearchIcon/config.js.map +0 -0
  430. package/{cjs → dist/cjs}/SearchIcon/index.js +0 -0
  431. package/{cjs → dist/cjs}/SearchIcon/index.js.map +0 -0
  432. package/{cjs → dist/cjs}/SvgIcon/index.js +0 -0
  433. package/{cjs → dist/cjs}/SvgIcon/index.js.map +0 -0
  434. package/{cjs → dist/cjs}/UncheckIcon/config/index.js +0 -0
  435. package/{cjs → dist/cjs}/UncheckIcon/config.js.map +0 -0
  436. package/{cjs → dist/cjs}/UncheckIcon/index.js +0 -0
  437. package/{cjs → dist/cjs}/UncheckIcon/index.js.map +0 -0
  438. package/{cjs → dist/cjs}/icons/index.js +0 -0
  439. package/{cjs → dist/cjs}/icons.js.map +0 -0
  440. package/{cjs → dist/cjs}/index.js +0 -0
  441. package/{cjs → dist/cjs}/index.js.map +0 -0
  442. package/{cjs → dist/cjs}/lazy/index.js +0 -0
  443. package/{cjs → dist/cjs}/lazy.js.map +0 -0
  444. package/{cjs → dist/cjs}/registry/index.js +20 -20
  445. package/{icons → dist/icons}/index.js +0 -0
  446. package/{icons → dist/icons}/package.json +0 -0
  447. package/{icons.d.ts → dist/icons.d.ts} +0 -0
  448. package/{icons.js.map → dist/icons.js.map} +0 -0
  449. package/{index.d.ts → dist/index.d.ts} +0 -0
  450. package/{index.js.map → dist/index.js.map} +0 -0
  451. package/{lazy → dist/lazy}/index.js +0 -0
  452. package/{lazy → dist/lazy}/package.json +0 -0
  453. package/{registry → dist/registry}/index.js +20 -20
  454. package/{registry → dist/registry}/package.json +0 -0
  455. package/{src → dist/src}/lazy.js +0 -0
  456. package/{src → dist/src}/registry.js +20 -20
@@ -0,0 +1,181 @@
1
+ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
2
+
3
+ exports[`renders the UncheckIcon with no props 1`] = `
4
+ <body>
5
+ <div>
6
+ <svg
7
+ aria-hidden="true"
8
+ as="svg"
9
+ class="ds-svg-icon--uncheck ds-svg-icon"
10
+ focusable="false"
11
+ viewBox="0 0 24 24"
12
+ >
13
+ <polygon
14
+ as="polygon"
15
+ class=""
16
+ points="20.59 5.74 18.26 3.41 12 9.67 5.742 3.41 3.41 5.74 9.67 12 3.41 18.26 5.74 20.6 12 14.33 18.26 20.59 20.59 18.26 14.33 12 20.59 5.74"
17
+ />
18
+ </svg>
19
+ </div>
20
+ </body>
21
+ `;
22
+
23
+ exports[`renders the UncheckIcon with prop color=dark 1`] = `
24
+ <body>
25
+ <div>
26
+ <svg
27
+ aria-hidden="true"
28
+ as="svg"
29
+ class="ds-svg-icon--uncheck ds-svg-icon ds-svg-icon--dark"
30
+ focusable="false"
31
+ viewBox="0 0 24 24"
32
+ >
33
+ <polygon
34
+ as="polygon"
35
+ class=""
36
+ points="20.59 5.74 18.26 3.41 12 9.67 5.742 3.41 3.41 5.74 9.67 12 3.41 18.26 5.74 20.6 12 14.33 18.26 20.59 20.59 18.26 14.33 12 20.59 5.74"
37
+ />
38
+ </svg>
39
+ </div>
40
+ </body>
41
+ `;
42
+
43
+ exports[`renders the UncheckIcon with prop color=error and size= xl 1`] = `
44
+ <body>
45
+ <div>
46
+ <svg
47
+ aria-hidden="true"
48
+ as="svg"
49
+ class="ds-svg-icon--uncheck ds-svg-icon ds-svg-icon--warning ds-svg-icon--xl"
50
+ focusable="false"
51
+ viewBox="0 0 24 24"
52
+ >
53
+ <polygon
54
+ as="polygon"
55
+ class=""
56
+ points="20.59 5.74 18.26 3.41 12 9.67 5.742 3.41 3.41 5.74 9.67 12 3.41 18.26 5.74 20.6 12 14.33 18.26 20.59 20.59 18.26 14.33 12 20.59 5.74"
57
+ />
58
+ </svg>
59
+ </div>
60
+ </body>
61
+ `;
62
+
63
+ exports[`renders the UncheckIcon with prop color=gray 1`] = `
64
+ <body>
65
+ <div>
66
+ <svg
67
+ aria-hidden="true"
68
+ as="svg"
69
+ class="ds-svg-icon--uncheck ds-svg-icon ds-svg-icon--gray"
70
+ focusable="false"
71
+ viewBox="0 0 24 24"
72
+ >
73
+ <polygon
74
+ as="polygon"
75
+ class=""
76
+ points="20.59 5.74 18.26 3.41 12 9.67 5.742 3.41 3.41 5.74 9.67 12 3.41 18.26 5.74 20.6 12 14.33 18.26 20.59 20.59 18.26 14.33 12 20.59 5.74"
77
+ />
78
+ </svg>
79
+ </div>
80
+ </body>
81
+ `;
82
+
83
+ exports[`renders the UncheckIcon with prop color=primary 1`] = `
84
+ <body>
85
+ <div>
86
+ <svg
87
+ aria-hidden="true"
88
+ as="svg"
89
+ class="ds-svg-icon--uncheck ds-svg-icon ds-svg-icon--primary"
90
+ focusable="false"
91
+ viewBox="0 0 24 24"
92
+ >
93
+ <polygon
94
+ as="polygon"
95
+ class=""
96
+ points="20.59 5.74 18.26 3.41 12 9.67 5.742 3.41 3.41 5.74 9.67 12 3.41 18.26 5.74 20.6 12 14.33 18.26 20.59 20.59 18.26 14.33 12 20.59 5.74"
97
+ />
98
+ </svg>
99
+ </div>
100
+ </body>
101
+ `;
102
+
103
+ exports[`renders the UncheckIcon with prop color=warning and size=s 1`] = `
104
+ <body>
105
+ <div>
106
+ <svg
107
+ aria-hidden="true"
108
+ as="svg"
109
+ class="ds-svg-icon--uncheck ds-svg-icon ds-svg-icon--warning ds-svg-icon--sm"
110
+ focusable="false"
111
+ viewBox="0 0 24 24"
112
+ >
113
+ <polygon
114
+ as="polygon"
115
+ class=""
116
+ points="20.59 5.74 18.26 3.41 12 9.67 5.742 3.41 3.41 5.74 9.67 12 3.41 18.26 5.74 20.6 12 14.33 18.26 20.59 20.59 18.26 14.33 12 20.59 5.74"
117
+ />
118
+ </svg>
119
+ </div>
120
+ </body>
121
+ `;
122
+
123
+ exports[`renders the UncheckIcon with prop color=white 1`] = `
124
+ <body>
125
+ <div>
126
+ <svg
127
+ aria-hidden="true"
128
+ as="svg"
129
+ class="ds-svg-icon--uncheck ds-svg-icon ds-svg-icon--white"
130
+ focusable="false"
131
+ viewBox="0 0 24 24"
132
+ >
133
+ <polygon
134
+ as="polygon"
135
+ class=""
136
+ points="20.59 5.74 18.26 3.41 12 9.67 5.742 3.41 3.41 5.74 9.67 12 3.41 18.26 5.74 20.6 12 14.33 18.26 20.59 20.59 18.26 14.33 12 20.59 5.74"
137
+ />
138
+ </svg>
139
+ </div>
140
+ </body>
141
+ `;
142
+
143
+ exports[`renders the UncheckIcon with prop size=l 1`] = `
144
+ <body>
145
+ <div>
146
+ <svg
147
+ aria-hidden="true"
148
+ as="svg"
149
+ class="ds-svg-icon--uncheck ds-svg-icon ds-svg-icon--lg"
150
+ focusable="false"
151
+ viewBox="0 0 24 24"
152
+ >
153
+ <polygon
154
+ as="polygon"
155
+ class=""
156
+ points="20.59 5.74 18.26 3.41 12 9.67 5.742 3.41 3.41 5.74 9.67 12 3.41 18.26 5.74 20.6 12 14.33 18.26 20.59 20.59 18.26 14.33 12 20.59 5.74"
157
+ />
158
+ </svg>
159
+ </div>
160
+ </body>
161
+ `;
162
+
163
+ exports[`renders the UncheckIcon with prop size=m 1`] = `
164
+ <body>
165
+ <div>
166
+ <svg
167
+ aria-hidden="true"
168
+ as="svg"
169
+ class="ds-svg-icon--uncheck ds-svg-icon ds-svg-icon--md"
170
+ focusable="false"
171
+ viewBox="0 0 24 24"
172
+ >
173
+ <polygon
174
+ as="polygon"
175
+ class=""
176
+ points="20.59 5.74 18.26 3.41 12 9.67 5.742 3.41 3.41 5.74 9.67 12 3.41 18.26 5.74 20.6 12 14.33 18.26 20.59 20.59 18.26 14.33 12 20.59 5.74"
177
+ />
178
+ </svg>
179
+ </div>
180
+ </body>
181
+ `;
@@ -0,0 +1,19 @@
1
+ import React from 'react';
2
+ import IconBase from '@digigov/react-icons/IconBase';
3
+
4
+ export interface UncheckType {}
5
+
6
+ export function uncheck(): React.ReactElement {
7
+ return (
8
+ <>
9
+ <IconBase
10
+ as="polygon"
11
+ points="20.59 5.74 18.26 3.41 12 9.67 5.742 3.41 3.41 5.74 9.67 12 3.41 18.26 5.74 20.6 12 14.33 18.26 20.59 20.59 18.26 14.33 12 20.59 5.74"
12
+ />
13
+ </>
14
+ );
15
+ }
16
+
17
+ uncheck.props = [];
18
+
19
+ export default uncheck;
@@ -0,0 +1,36 @@
1
+ import React from 'react';
2
+ import { render } from '@testing-library/react';
3
+
4
+ import UncheckIcon from '@digigov/react-icons/UncheckIcon';
5
+
6
+ it('renders the UncheckIcon with no props', () => {
7
+ expect(render(<UncheckIcon />).baseElement).toMatchSnapshot();
8
+ });
9
+ it('renders the UncheckIcon with prop size=m', () => {
10
+ expect(render(<UncheckIcon size="md" />).baseElement).toMatchSnapshot();
11
+ });
12
+ it('renders the UncheckIcon with prop size=l', () => {
13
+ expect(render(<UncheckIcon size="lg" />).baseElement).toMatchSnapshot();
14
+ });
15
+ it('renders the UncheckIcon with prop color=dark', () => {
16
+ expect(render(<UncheckIcon color="dark" />).baseElement).toMatchSnapshot();
17
+ });
18
+ it('renders the UncheckIcon with prop color=white', () => {
19
+ expect(render(<UncheckIcon color="white" />).baseElement).toMatchSnapshot();
20
+ });
21
+ it('renders the UncheckIcon with prop color=gray', () => {
22
+ expect(render(<UncheckIcon color="gray" />).baseElement).toMatchSnapshot();
23
+ });
24
+ it('renders the UncheckIcon with prop color=primary', () => {
25
+ expect(render(<UncheckIcon color="primary" />).baseElement).toMatchSnapshot();
26
+ });
27
+ it('renders the UncheckIcon with prop color=warning and size=s', () => {
28
+ expect(
29
+ render(<UncheckIcon color="warning" size="sm" />).baseElement
30
+ ).toMatchSnapshot();
31
+ });
32
+ it('renders the UncheckIcon with prop color=error and size= xl', () => {
33
+ expect(
34
+ render(<UncheckIcon color="warning" size="xl" />).baseElement
35
+ ).toMatchSnapshot();
36
+ });
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import Icon, { IconProps } from '@digigov/react-icons/Icon';
3
+
4
+ export const UncheckIcon: React.FC<IconProps<'uncheck'>> = (props) => {
5
+ return <Icon {...props} icon="uncheck"></Icon>;
6
+ };
7
+
8
+ export default UncheckIcon;
@@ -0,0 +1,73 @@
1
+ import type { AccessibilityType } from '@digigov/react-icons/AccessibilityIcon/config';
2
+ import type { ArrowType } from '@digigov/react-icons/ArrowIcon/config';
3
+ import type { BurgerType } from '@digigov/react-icons/BurgerIcon/config';
4
+ import type { CancelType } from '@digigov/react-icons/CancelIcon/config';
5
+ import type { CaretType } from '@digigov/react-icons/CaretIcon/config';
6
+ import type { ChatType } from '@digigov/react-icons/ChatIcon/config';
7
+ import type { CheckType } from '@digigov/react-icons/CheckIcon/config';
8
+ import type { ChevronType } from '@digigov/react-icons/ChevronIcon/config';
9
+ import type { CloseType } from '@digigov/react-icons/CloseIcon/config';
10
+ import type { DownloadType } from '@digigov/react-icons/DownloadIcon/config';
11
+ import type { ExclamationType } from '@digigov/react-icons/ExclamationIcon/config';
12
+ import type { GlobeType } from '@digigov/react-icons/GlobeIcon/config';
13
+ import type { LockType } from '@digigov/react-icons/LockIcon/config';
14
+ import type { LoginType } from '@digigov/react-icons/LoginIcon/config';
15
+ import type { MinusType } from '@digigov/react-icons/MinusIcon/config';
16
+ import type { MoreVertType } from '@digigov/react-icons/MoreVertIcon/config';
17
+ import type { PdfFileType } from '@digigov/react-icons/PdfFileIcon/config';
18
+ import type { PlusType } from '@digigov/react-icons/PlusIcon/config';
19
+ import type { PrintType } from '@digigov/react-icons/PrintIcon/config';
20
+ import type { ReplyType } from '@digigov/react-icons/ReplyIcon/config';
21
+ import type { RestoreType } from '@digigov/react-icons/RestoreIcon/config';
22
+ import type { SearchType } from '@digigov/react-icons/SearchIcon/config';
23
+ import type { UncheckType } from '@digigov/react-icons/UncheckIcon/config';
24
+
25
+ export * from '@digigov/react-icons/AccessibilityIcon/config';
26
+ export * from '@digigov/react-icons/ArrowIcon/config';
27
+ export * from '@digigov/react-icons/BurgerIcon/config';
28
+ export * from '@digigov/react-icons/CaretIcon/config';
29
+ export * from '@digigov/react-icons/ChevronIcon/config';
30
+ export * from '@digigov/react-icons/CloseIcon/config';
31
+ export * from '@digigov/react-icons/CheckIcon/config';
32
+ export * from '@digigov/react-icons/GlobeIcon/config';
33
+ export * from '@digigov/react-icons/MoreVertIcon/config';
34
+ export * from '@digigov/react-icons/UncheckIcon/config';
35
+ export * from '@digigov/react-icons/SearchIcon/config';
36
+ export * from '@digigov/react-icons/LockIcon/config';
37
+ export * from '@digigov/react-icons/DownloadIcon/config';
38
+ export * from '@digigov/react-icons/PdfFileIcon/config';
39
+ export * from '@digigov/react-icons/CancelIcon/config';
40
+ export * from '@digigov/react-icons/PlusIcon/config';
41
+ export * from '@digigov/react-icons/MinusIcon/config';
42
+ export * from '@digigov/react-icons/LoginIcon/config';
43
+ export * from '@digigov/react-icons/RestoreIcon/config';
44
+ export * from '@digigov/react-icons/ReplyIcon/config';
45
+ export * from '@digigov/react-icons/ChatIcon/config';
46
+ export * from '@digigov/react-icons/ExclamationIcon/config';
47
+ export * from '@digigov/react-icons/PrintIcon/config';
48
+
49
+ export interface IconTypes {
50
+ accessibility: AccessibilityType;
51
+ arrow: ArrowType;
52
+ burger: BurgerType;
53
+ caret: CaretType;
54
+ close: CloseType;
55
+ check: CheckType;
56
+ globe: GlobeType;
57
+ moreVert: MoreVertType;
58
+ uncheck: UncheckType;
59
+ search: SearchType;
60
+ chevron: ChevronType;
61
+ lock: LockType;
62
+ download: DownloadType;
63
+ pdfFile: PdfFileType;
64
+ cancel: CancelType;
65
+ plus: PlusType;
66
+ minus: MinusType;
67
+ login: LoginType;
68
+ restore: RestoreType;
69
+ reply: ReplyType;
70
+ chat: ChatType;
71
+ exclamation: ExclamationType;
72
+ print: PrintType;
73
+ }
@@ -0,0 +1,23 @@
1
+ export * from '@digigov/react-icons/AccessibilityIcon';
2
+ export * from '@digigov/react-icons/ArrowIcon';
3
+ export * from '@digigov/react-icons/BurgerIcon';
4
+ export * from '@digigov/react-icons/CaretIcon';
5
+ export * from '@digigov/react-icons/CheckIcon';
6
+ export * from '@digigov/react-icons/ChevronIcon';
7
+ export * from '@digigov/react-icons/UncheckIcon';
8
+ export * from '@digigov/react-icons/CloseIcon';
9
+ export * from '@digigov/react-icons/GlobeIcon';
10
+ export * from '@digigov/react-icons/MoreVertIcon';
11
+ export * from '@digigov/react-icons/SearchIcon';
12
+ export * from '@digigov/react-icons/CancelIcon';
13
+ export * from '@digigov/react-icons/LockIcon';
14
+ export * from '@digigov/react-icons/DownloadIcon';
15
+ export * from '@digigov/react-icons/PdfFileIcon';
16
+ export * from '@digigov/react-icons/PlusIcon';
17
+ export * from '@digigov/react-icons/MinusIcon';
18
+ export * from '@digigov/react-icons/LoginIcon';
19
+ export * from '@digigov/react-icons/RestoreIcon';
20
+ export * from '@digigov/react-icons/ReplyIcon';
21
+ export * from '@digigov/react-icons/ChatIcon';
22
+ export * from '@digigov/react-icons/ExclamationIcon';
23
+ export * from '@digigov/react-icons/PrintIcon';
@@ -0,0 +1,3 @@
1
+ import config from '@digigov/cli-lint/eslint.config';
2
+
3
+ export default [...config];
package/package.json CHANGED
@@ -1,17 +1,38 @@
1
1
  {
2
2
  "name": "@digigov/react-icons",
3
- "version": "2.0.0-rc.28",
3
+ "version": "2.0.0-rc.29",
4
4
  "description": "@digigov react icons",
5
5
  "author": "GRNET Developers <devs@lists.grnet.gr>",
6
6
  "license": "BSD-2-Clause",
7
- "main": "./cjs/index.js",
8
- "module": "./index.js",
7
+ "main": "dist/index.js",
8
+ "module": "index.js",
9
9
  "peerDependencies": {
10
- "@digigov/css": "2.0.0-rc.28",
10
+ "@digigov/css": "2.0.0-rc.29",
11
11
  "clsx": "1.1.1",
12
12
  "react": ">=16.8.0 <19.0.0",
13
13
  "react-dom": ">=16.8.0 <19.0.0"
14
14
  },
15
- "private": false,
16
- "typings": "./index.d.ts"
15
+ "devDependencies": {
16
+ "@digigov/cli": "2.0.0-rc.29",
17
+ "@digigov/cli-lint": "2.0.0-rc.29",
18
+ "@digigov/cli-build": "2.0.0-rc.29",
19
+ "@digigov/cli-test": "2.0.0-rc.29",
20
+ "typescript": "5.6.2",
21
+ "@types/node": "18.19.0",
22
+ "@types/react": "18.3.3",
23
+ "@types/react-dom": "18.3.0",
24
+ "eslint": "9.16.0",
25
+ "prettier": "3.4.2",
26
+ "publint": "0.1.8",
27
+ "vitest": "2.1.3",
28
+ "@testing-library/dom": "10.4.0",
29
+ "@testing-library/react": "16.0.1"
30
+ },
31
+ "scripts": {
32
+ "publint": "publint dist",
33
+ "lint": "digigov lint",
34
+ "test": "digigov test",
35
+ "build": "digigov build --generate-registry",
36
+ "prepublish": "digigov build --generate-registry"
37
+ }
17
38
  }
@@ -0,0 +1,9 @@
1
+ Invoking: digigov build
2
+ Running /Users/dimitristsironis/grnet/digigov-sdk/tooling/cli-build/node_modules/.bin/rimraf dist
3
+ Running /Users/dimitristsironis/grnet/digigov-sdk/libs-ui/react-icons/node_modules/.bin/tsc --emitDeclarationOnly --outDir dist --project /Users/dimitristsironis/grnet/digigov-sdk/libs-ui/react-icons/tsconfig.production.json
4
+ Created package.json in /Users/dimitristsironis/grnet/digigov-sdk/libs-ui/react-icons/dist/package.json
5
+ Copied /Users/dimitristsironis/grnet/digigov-sdk/libs-ui/react-icons/README.md to /Users/dimitristsironis/grnet/digigov-sdk/libs-ui/react-icons/dist/README.md
6
+ Copied /Users/dimitristsironis/grnet/digigov-sdk/LICENSE to /Users/dimitristsironis/grnet/digigov-sdk/libs-ui/react-icons/dist/LICENSE
7
+ Copied /Users/dimitristsironis/grnet/digigov-sdk/libs-ui/react-icons/CHANGELOG.md to /Users/dimitristsironis/grnet/digigov-sdk/libs-ui/react-icons/dist/CHANGELOG.md
8
+ Copied /Users/dimitristsironis/grnet/digigov-sdk/libs-ui/react-icons/src to /Users/dimitristsironis/grnet/digigov-sdk/libs-ui/react-icons/dist/src
9
+ Skipped license for ./index.mjs
@@ -0,0 +1,8 @@
1
+ Invoking: digigov build --generate-registry
2
+ LOG Running: rimraf dist
3
+ LOG Running: tsc --emitDeclarationOnly --outDir dist --project /Users/dimitristsironis/grnet/digigov-sdk/libs-ui/react-icons/tsconfig.production.json
4
+ LOG Running: esbuild for CJS format
5
+ LOG Running: esbuild for ESM format
6
+ LOG Running: esbuild for CJS format
7
+ LOG Generated registry files
8
+ ⏱️ "build" execution time: 4.040s
@@ -0,0 +1,9 @@
1
+ Invoking: digigov lint
2
+ LOG Running: eslint --no-error-on-unmatched-pattern
3
+
4
+ /Users/dimitristsironis/grnet/digigov-sdk/libs-ui/react-icons/src/IconBase/index.tsx
5
+ 21:50 warning Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
6
+
7
+ ✖ 1 problem (0 errors, 1 warning)
8
+
9
+ ⏱️ "lint" execution time: 3.349s
@@ -0,0 +1,60 @@
1
+ Invoking: publint dist
2
+ @digigov/react-icons lint results:
3
+ Suggestions:
4
+ 1. pkg.module is used to output ESM, but pkg.exports is not defined. As NodeJS doesn't read pkg.module, the ESM output may be skipped. Consider adding pkg.exports to export the ESM output. pkg.module can usually be removed alongside too. (This will be a breaking change)
5
+ Warnings:
6
+ 1. /AccessibilityIcon/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /AccessibilityIcon/index.mjs
7
+ 2. /Base/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /Base/index.mjs
8
+ 3. /AccessibilityIcon/config/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /AccessibilityIcon/config/index.mjs
9
+ 4. /BurgerIcon/config/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /BurgerIcon/config/index.mjs
10
+ 5. /ArrowIcon/config/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /ArrowIcon/config/index.mjs
11
+ 6. /BurgerIcon/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /BurgerIcon/index.mjs
12
+ 7. /ArrowIcon/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /ArrowIcon/index.mjs
13
+ 8. /CancelIcon/config/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /CancelIcon/config/index.mjs
14
+ 9. /CaretIcon/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /CaretIcon/index.mjs
15
+ 10. /ChatIcon/config/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /ChatIcon/config/index.mjs
16
+ 11. /CaretIcon/config/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /CaretIcon/config/index.mjs
17
+ 12. /CancelIcon/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /CancelIcon/index.mjs
18
+ 13. /ChatIcon/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /ChatIcon/index.mjs
19
+ 14. /CheckIcon/config/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /CheckIcon/config/index.mjs
20
+ 15. /CheckIcon/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /CheckIcon/index.mjs
21
+ 16. /ChevronIcon/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /ChevronIcon/index.mjs
22
+ 17. /ChevronIcon/config/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /ChevronIcon/config/index.mjs
23
+ 18. /CloseIcon/config/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /CloseIcon/config/index.mjs
24
+ 19. /CloseIcon/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /CloseIcon/index.mjs
25
+ 20. /DownloadIcon/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /DownloadIcon/index.mjs
26
+ 21. /DownloadIcon/config/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /DownloadIcon/config/index.mjs
27
+ 22. /ExclamationIcon/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /ExclamationIcon/index.mjs
28
+ 23. /ExclamationIcon/config/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /ExclamationIcon/config/index.mjs
29
+ 24. /LockIcon/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /LockIcon/index.mjs
30
+ 25. /GlobeIcon/config/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /GlobeIcon/config/index.mjs
31
+ 26. /Icon/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /Icon/index.mjs
32
+ 27. /LockIcon/config/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /LockIcon/config/index.mjs
33
+ 28. /MinusIcon/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /MinusIcon/index.mjs
34
+ 29. /GlobeIcon/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /GlobeIcon/index.mjs
35
+ 30. /MinusIcon/config/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /MinusIcon/config/index.mjs
36
+ 31. /LoginIcon/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /LoginIcon/index.mjs
37
+ 32. /PdfFileIcon/config/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /PdfFileIcon/config/index.mjs
38
+ 33. /MoreVertIcon/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /MoreVertIcon/index.mjs
39
+ 34. /PlusIcon/config/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /PlusIcon/config/index.mjs
40
+ 35. /PrintIcon/config/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /PrintIcon/config/index.mjs
41
+ 36. /PlusIcon/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /PlusIcon/index.mjs
42
+ 37. /PrintIcon/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /PrintIcon/index.mjs
43
+ 38. /ReplyIcon/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /ReplyIcon/index.mjs
44
+ 39. /RestoreIcon/config/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /RestoreIcon/config/index.mjs
45
+ 40. /MoreVertIcon/config/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /MoreVertIcon/config/index.mjs
46
+ 41. /PdfFileIcon/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /PdfFileIcon/index.mjs
47
+ 42. /RestoreIcon/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /RestoreIcon/index.mjs
48
+ 43. /SvgIcon/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /SvgIcon/index.mjs
49
+ 44. /SearchIcon/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /SearchIcon/index.mjs
50
+ 45. /LoginIcon/config/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /LoginIcon/config/index.mjs
51
+ 46. /ReplyIcon/config/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /ReplyIcon/config/index.mjs
52
+ 47. /SearchIcon/config/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /SearchIcon/config/index.mjs
53
+ 48. /UncheckIcon/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /UncheckIcon/index.mjs
54
+ 49. /UncheckIcon/config/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /UncheckIcon/config/index.mjs
55
+ 50. /index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /index.mjs
56
+ 51. /icons/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /icons/index.mjs
57
+ 52. /lazy/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /lazy/index.mjs
58
+ 53. /registry/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /registry/index.mjs
59
+ 54. /src/registry.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /src/registry.mjs
60
+ 55. /src/lazy.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /src/lazy.mjs
@@ -0,0 +1,37 @@
1
+ Invoking: digigov test
2
+ LOG Running: vitest --config /Users/dimitristsironis/grnet/digigov-sdk/tooling/cli-test/vitest.config.js
3
+
4
+ RUN v2.1.3 /Users/dimitristsironis/grnet/digigov-sdk/libs-ui/react-icons
5
+
6
+ ✓ src/SvgIcon/index.test.tsx (17 tests) 36ms
7
+ ✓ src/CheckIcon/index.test.tsx (8 tests) 22ms
8
+ ✓ src/ExclamationIcon/index.test.tsx (7 tests) 23ms
9
+ ✓ src/UncheckIcon/index.test.tsx (9 tests) 24ms
10
+ ✓ src/ChatIcon/index.test.tsx (8 tests) 22ms
11
+ ✓ src/DownloadIcon/index.test.tsx (7 tests) 26ms
12
+ ✓ src/AccessibilityIcon/index.test.tsx (9 tests) 29ms
13
+ ✓ src/MoreVertIcon/index.test.tsx (9 tests) 26ms
14
+ ✓ src/Icon/index.test.tsx (10 tests) 26ms
15
+ ✓ src/PdfFileIcon/index.test.tsx (7 tests) 25ms
16
+ ✓ src/RestoreIcon/index.test.tsx (7 tests) 24ms
17
+ ✓ src/LoginIcon/index.test.tsx (7 tests) 32ms
18
+ ✓ src/ReplyIcon/index.test.tsx (7 tests) 23ms
19
+ ✓ src/CancelIcon/index.test.tsx (7 tests) 25ms
20
+ ✓ src/MinusIcon/index.test.tsx (7 tests) 22ms
21
+ ✓ src/PrintIcon/index.test.tsx (7 tests) 23ms
22
+ ✓ src/LockIcon/index.test.tsx (7 tests) 30ms
23
+ ✓ src/PlusIcon/index.test.tsx (7 tests) 31ms
24
+ ✓ src/ChevronIcon/index.test.tsx (4 tests) 17ms
25
+ ✓ src/BurgerIcon/index.test.tsx (6 tests) 22ms
26
+ ✓ src/ArrowIcon/index.test.tsx (4 tests) 17ms
27
+ ✓ src/CaretIcon/index.test.tsx (4 tests) 17ms
28
+ ✓ src/GlobeIcon/index.test.tsx (4 tests) 18ms
29
+ ✓ src/CloseIcon/index.test.tsx (1 test) 14ms
30
+ ✓ src/SearchIcon/index.test.tsx (1 test) 12ms
31
+
32
+ Test Files 25 passed (25)
33
+ Tests 171 passed (171)
34
+ Start at 11:58:51
35
+ Duration 3.05s (transform 376ms, setup 3.05s, collect 3.35s, tests 587ms, environment 9.09s, prepare 2.95s)
36
+
37
+ ⏱️ "test" execution time: 4.998s
package/tsconfig.json ADDED
@@ -0,0 +1,39 @@
1
+ {
2
+ "extends": "@digigov/cli-build/tsconfig.base",
3
+ "compilerOptions": {
4
+ "outDir": "dist",
5
+ "types": [
6
+ "node",
7
+ "vitest/globals",
8
+ "react"
9
+ ],
10
+ "paths": {
11
+ "@digigov/css": [
12
+ "node_modules/@digigov/css/src"
13
+ ],
14
+ "@digigov/css/": [
15
+ "node_modules/@digigov/css/src/"
16
+ ],
17
+ "@digigov/css/*": [
18
+ "node_modules/@digigov/css/src/*"
19
+ ],
20
+ "@digigov/react-icons": [
21
+ "./src"
22
+ ],
23
+ "@digigov/react-icons/": [
24
+ "./src/"
25
+ ],
26
+ "@digigov/react-icons/*": [
27
+ "./src/*"
28
+ ]
29
+ },
30
+ "baseUrl": "./"
31
+ },
32
+ "include": [
33
+ "src"
34
+ ],
35
+ "exclude": [
36
+ "node_modules",
37
+ "dist"
38
+ ]
39
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "extends": "@digigov/cli-build/tsconfig.common",
3
+ "compilerOptions": {
4
+ "skipLibCheck": true,
5
+ "moduleResolution": "node",
6
+ "outDir": "dist",
7
+ "types": ["node", "vitest/globals", "react"],
8
+ "baseUrl": "./",
9
+ "paths": {
10
+ "@digigov/react-icons/*": ["./src/*"],
11
+ "@digigov/react-icons": ["./src/"]
12
+ }
13
+ },
14
+ "include": ["src", "src/custom.d.ts"],
15
+ "exclude": ["node_modules", "dist"]
16
+ }
17
+
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes