@iconify/tools 4.2.0 → 5.0.0-beta.1

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 (530) hide show
  1. package/lib/colors/attribs.d.ts +2 -4
  2. package/lib/colors/attribs.js +33 -0
  3. package/lib/colors/detect.d.ts +2 -10
  4. package/lib/colors/detect.js +36 -0
  5. package/lib/colors/parse.d.ts +12 -19
  6. package/lib/colors/parse.js +241 -0
  7. package/lib/colors/validate.d.ts +3 -13
  8. package/lib/colors/validate.js +31 -0
  9. package/lib/css/parse.d.ts +1 -2
  10. package/lib/css/parse.js +18 -0
  11. package/lib/css/parser/error.d.ts +6 -7
  12. package/lib/css/parser/error.js +24 -0
  13. package/lib/css/parser/export.d.ts +2 -4
  14. package/lib/css/parser/export.js +34 -0
  15. package/lib/css/parser/strings.d.ts +2 -4
  16. package/lib/css/parser/strings.js +66 -0
  17. package/lib/css/parser/text.d.ts +2 -4
  18. package/lib/css/parser/text.js +103 -0
  19. package/lib/css/parser/tokens.d.ts +3 -5
  20. package/lib/css/parser/tokens.js +169 -0
  21. package/lib/css/parser/tree.d.ts +2 -4
  22. package/lib/css/parser/tree.js +35 -0
  23. package/lib/css/parser/types.d.ts +21 -22
  24. package/lib/css/parser/types.js +1 -0
  25. package/lib/download/api/cache.d.ts +2 -4
  26. package/lib/download/api/cache.js +84 -0
  27. package/lib/download/api/config.d.ts +6 -8
  28. package/lib/download/api/config.js +10 -0
  29. package/lib/download/api/download.d.ts +2 -4
  30. package/lib/download/api/download.js +26 -0
  31. package/lib/download/api/fetch.d.ts +1 -2
  32. package/lib/download/api/fetch.js +15 -0
  33. package/lib/download/api/index.d.ts +2 -4
  34. package/lib/download/api/index.js +50 -0
  35. package/lib/download/api/queue.d.ts +9 -10
  36. package/lib/download/api/queue.js +94 -0
  37. package/lib/download/api/types.d.ts +6 -7
  38. package/lib/download/api/types.js +1 -0
  39. package/lib/download/git/branch.d.ts +2 -4
  40. package/lib/download/git/branch.js +15 -0
  41. package/lib/download/git/hash.d.ts +2 -4
  42. package/lib/download/git/hash.js +10 -0
  43. package/lib/download/git/index.d.ts +10 -12
  44. package/lib/download/git/index.js +39 -0
  45. package/lib/download/git/reset.d.ts +1 -2
  46. package/lib/download/git/reset.js +12 -0
  47. package/lib/download/github/hash.d.ts +2 -4
  48. package/lib/download/github/hash.js +20 -0
  49. package/lib/download/github/index.d.ts +12 -14
  50. package/lib/download/github/index.js +66 -0
  51. package/lib/download/github/types.d.ts +5 -6
  52. package/lib/download/github/types.js +1 -0
  53. package/lib/download/gitlab/hash.d.ts +2 -4
  54. package/lib/download/gitlab/hash.js +19 -0
  55. package/lib/download/gitlab/index.d.ts +12 -14
  56. package/lib/download/gitlab/index.js +64 -0
  57. package/lib/download/gitlab/types.d.ts +5 -6
  58. package/lib/download/gitlab/types.js +6 -0
  59. package/lib/download/helpers/untar.d.ts +1 -2
  60. package/lib/download/helpers/untar.js +13 -0
  61. package/lib/download/helpers/unzip.d.ts +1 -2
  62. package/lib/download/helpers/unzip.js +39 -0
  63. package/lib/download/index.d.ts +15 -20
  64. package/lib/download/index.js +19 -0
  65. package/lib/download/npm/index.d.ts +11 -13
  66. package/lib/download/npm/index.js +51 -0
  67. package/lib/download/npm/types.d.ts +3 -4
  68. package/lib/download/npm/types.js +1 -0
  69. package/lib/download/npm/version.d.ts +4 -6
  70. package/lib/download/npm/version.js +23 -0
  71. package/lib/download/types/modified.d.ts +1 -2
  72. package/lib/download/types/modified.js +1 -0
  73. package/lib/download/types/sources.d.ts +2 -3
  74. package/lib/download/types/sources.js +1 -0
  75. package/lib/export/directory.d.ts +7 -15
  76. package/lib/export/directory.js +37 -0
  77. package/lib/export/helpers/custom-files.d.ts +2 -3
  78. package/lib/export/helpers/custom-files.js +23 -0
  79. package/lib/export/helpers/prepare.d.ts +3 -4
  80. package/lib/export/helpers/prepare.js +31 -0
  81. package/lib/export/helpers/types-version.d.ts +1 -2
  82. package/lib/export/helpers/types-version.js +19 -0
  83. package/lib/export/icon-package.d.ts +8 -15
  84. package/lib/export/icon-package.js +55 -0
  85. package/lib/export/json-package.d.ts +7 -14
  86. package/lib/export/json-package.js +129 -0
  87. package/lib/icon-set/index.d.ts +144 -147
  88. package/lib/icon-set/index.js +595 -0
  89. package/lib/icon-set/match.d.ts +3 -11
  90. package/lib/icon-set/match.js +45 -0
  91. package/lib/icon-set/merge.d.ts +2 -10
  92. package/lib/icon-set/merge.js +68 -0
  93. package/lib/icon-set/modified.d.ts +2 -10
  94. package/lib/icon-set/modified.js +20 -0
  95. package/lib/icon-set/props.d.ts +2 -5
  96. package/lib/icon-set/props.js +19 -0
  97. package/lib/icon-set/tags.d.ts +7 -15
  98. package/lib/icon-set/tags.js +53 -0
  99. package/lib/icon-set/types.d.ts +16 -21
  100. package/lib/icon-set/types.js +1 -0
  101. package/lib/import/directory.d.ts +11 -20
  102. package/lib/import/directory.js +101 -0
  103. package/lib/import/figma/index.d.ts +4 -15
  104. package/lib/import/figma/index.js +61 -0
  105. package/lib/import/figma/nodes.d.ts +4 -14
  106. package/lib/import/figma/nodes.js +80 -0
  107. package/lib/import/figma/query.d.ts +9 -19
  108. package/lib/import/figma/query.js +183 -0
  109. package/lib/import/figma/types/api.d.ts +23 -35
  110. package/lib/import/figma/types/nodes.d.ts +12 -21
  111. package/lib/import/figma/types/options.d.ts +23 -32
  112. package/lib/import/figma/types/result.d.ts +16 -24
  113. package/lib/index.d.ts +55 -80
  114. package/lib/index.js +56 -0
  115. package/lib/misc/bump-version.d.ts +1 -2
  116. package/lib/misc/bump-version.js +13 -0
  117. package/lib/misc/compare-dirs.d.ts +4 -5
  118. package/lib/misc/compare-dirs.js +65 -0
  119. package/lib/misc/exec.d.ts +4 -6
  120. package/lib/misc/exec.js +23 -0
  121. package/lib/misc/keyword.d.ts +1 -2
  122. package/lib/misc/keyword.js +12 -0
  123. package/lib/misc/scan.d.ts +2 -4
  124. package/lib/misc/scan.js +87 -0
  125. package/lib/misc/write-json.d.ts +1 -2
  126. package/lib/misc/write-json.js +10 -0
  127. package/lib/optimise/figma.d.ts +2 -7
  128. package/lib/optimise/figma.js +189 -0
  129. package/lib/optimise/flags.d.ts +2 -7
  130. package/lib/optimise/flags.js +231 -0
  131. package/lib/optimise/global-style.d.ts +2 -7
  132. package/lib/optimise/global-style.js +114 -0
  133. package/lib/optimise/mask.d.ts +9 -14
  134. package/lib/optimise/mask.js +83 -0
  135. package/lib/optimise/origin.d.ts +2 -7
  136. package/lib/optimise/origin.js +22 -0
  137. package/lib/optimise/scale.d.ts +2 -7
  138. package/lib/optimise/scale.js +24 -0
  139. package/lib/optimise/svgo.d.ts +10 -15
  140. package/lib/optimise/svgo.js +90 -0
  141. package/lib/optimise/unwrap.d.ts +2 -7
  142. package/lib/optimise/unwrap.js +25 -0
  143. package/lib/svg/analyse/error.d.ts +2 -7
  144. package/lib/svg/analyse/error.js +12 -0
  145. package/lib/svg/analyse/types.d.ts +31 -35
  146. package/lib/svg/analyse/types.js +1 -0
  147. package/lib/svg/analyse.d.ts +3 -10
  148. package/lib/svg/analyse.js +256 -0
  149. package/lib/svg/cleanup/attribs.d.ts +2 -7
  150. package/lib/svg/cleanup/attribs.js +37 -0
  151. package/lib/svg/cleanup/bad-tags.d.ts +3 -8
  152. package/lib/svg/cleanup/bad-tags.js +57 -0
  153. package/lib/svg/cleanup/inline-style.d.ts +2 -7
  154. package/lib/svg/cleanup/inline-style.js +80 -0
  155. package/lib/svg/cleanup/root-style.d.ts +4 -9
  156. package/lib/svg/cleanup/root-style.js +27 -0
  157. package/lib/svg/cleanup/root-svg.d.ts +2 -7
  158. package/lib/svg/cleanup/root-svg.js +73 -0
  159. package/lib/svg/cleanup/svgo-style.d.ts +2 -7
  160. package/lib/svg/cleanup/svgo-style.js +24 -0
  161. package/lib/svg/cleanup.d.ts +3 -8
  162. package/lib/svg/cleanup.js +20 -0
  163. package/lib/svg/data/attributes.d.ts +1 -2
  164. package/lib/svg/data/attributes.js +451 -0
  165. package/lib/svg/data/tags.d.ts +1 -2
  166. package/lib/svg/data/tags.js +182 -0
  167. package/lib/svg/index.d.ts +38 -47
  168. package/lib/svg/index.js +117 -0
  169. package/lib/svg/parse-style.d.ts +21 -28
  170. package/lib/svg/parse-style.js +199 -0
  171. package/lib/svg/parse.d.ts +8 -16
  172. package/lib/svg/parse.js +32 -0
  173. package/package.json +116 -222
  174. package/lib/colors/attribs.cjs +0 -33
  175. package/lib/colors/attribs.d.cts +0 -27
  176. package/lib/colors/attribs.d.mts +0 -27
  177. package/lib/colors/attribs.mjs +0 -26
  178. package/lib/colors/detect.cjs +0 -66
  179. package/lib/colors/detect.d.cts +0 -16
  180. package/lib/colors/detect.d.mts +0 -16
  181. package/lib/colors/detect.mjs +0 -64
  182. package/lib/colors/parse.cjs +0 -300
  183. package/lib/colors/parse.d.cts +0 -61
  184. package/lib/colors/parse.d.mts +0 -61
  185. package/lib/colors/parse.mjs +0 -297
  186. package/lib/colors/validate.cjs +0 -56
  187. package/lib/colors/validate.d.cts +0 -21
  188. package/lib/colors/validate.d.mts +0 -21
  189. package/lib/colors/validate.mjs +0 -54
  190. package/lib/css/parse.cjs +0 -24
  191. package/lib/css/parse.d.cts +0 -6
  192. package/lib/css/parse.d.mts +0 -6
  193. package/lib/css/parse.mjs +0 -22
  194. package/lib/css/parser/error.cjs +0 -23
  195. package/lib/css/parser/error.d.cts +0 -13
  196. package/lib/css/parser/error.d.mts +0 -13
  197. package/lib/css/parser/error.mjs +0 -21
  198. package/lib/css/parser/export.cjs +0 -37
  199. package/lib/css/parser/export.d.cts +0 -8
  200. package/lib/css/parser/export.d.mts +0 -8
  201. package/lib/css/parser/export.mjs +0 -35
  202. package/lib/css/parser/strings.cjs +0 -83
  203. package/lib/css/parser/strings.d.cts +0 -16
  204. package/lib/css/parser/strings.d.mts +0 -16
  205. package/lib/css/parser/strings.mjs +0 -80
  206. package/lib/css/parser/text.cjs +0 -114
  207. package/lib/css/parser/text.d.cts +0 -20
  208. package/lib/css/parser/text.d.mts +0 -20
  209. package/lib/css/parser/text.mjs +0 -109
  210. package/lib/css/parser/tokens.cjs +0 -206
  211. package/lib/css/parser/tokens.d.cts +0 -9
  212. package/lib/css/parser/tokens.d.mts +0 -9
  213. package/lib/css/parser/tokens.mjs +0 -204
  214. package/lib/css/parser/tree.cjs +0 -40
  215. package/lib/css/parser/tree.d.cts +0 -8
  216. package/lib/css/parser/tree.d.mts +0 -8
  217. package/lib/css/parser/tree.mjs +0 -38
  218. package/lib/css/parser/types.cjs +0 -2
  219. package/lib/css/parser/types.d.cts +0 -52
  220. package/lib/css/parser/types.d.mts +0 -52
  221. package/lib/css/parser/types.mjs +0 -1
  222. package/lib/download/api/cache.cjs +0 -91
  223. package/lib/download/api/cache.d.cts +0 -20
  224. package/lib/download/api/cache.d.mts +0 -20
  225. package/lib/download/api/cache.mjs +0 -86
  226. package/lib/download/api/config.cjs +0 -11
  227. package/lib/download/api/config.d.cts +0 -18
  228. package/lib/download/api/config.d.mts +0 -18
  229. package/lib/download/api/config.mjs +0 -8
  230. package/lib/download/api/download.cjs +0 -26
  231. package/lib/download/api/download.d.cts +0 -8
  232. package/lib/download/api/download.d.mts +0 -8
  233. package/lib/download/api/download.mjs +0 -24
  234. package/lib/download/api/fetch.cjs +0 -12
  235. package/lib/download/api/fetch.d.cts +0 -10
  236. package/lib/download/api/fetch.d.mts +0 -10
  237. package/lib/download/api/fetch.mjs +0 -9
  238. package/lib/download/api/index.cjs +0 -57
  239. package/lib/download/api/index.d.cts +0 -8
  240. package/lib/download/api/index.d.mts +0 -8
  241. package/lib/download/api/index.mjs +0 -55
  242. package/lib/download/api/queue.cjs +0 -104
  243. package/lib/download/api/queue.d.cts +0 -32
  244. package/lib/download/api/queue.d.mts +0 -32
  245. package/lib/download/api/queue.mjs +0 -101
  246. package/lib/download/api/types.cjs +0 -2
  247. package/lib/download/api/types.d.cts +0 -17
  248. package/lib/download/api/types.d.mts +0 -17
  249. package/lib/download/api/types.mjs +0 -1
  250. package/lib/download/git/branch.cjs +0 -19
  251. package/lib/download/git/branch.d.cts +0 -8
  252. package/lib/download/git/branch.d.mts +0 -8
  253. package/lib/download/git/branch.mjs +0 -17
  254. package/lib/download/git/hash.cjs +0 -14
  255. package/lib/download/git/hash.d.cts +0 -8
  256. package/lib/download/git/hash.d.mts +0 -8
  257. package/lib/download/git/hash.mjs +0 -12
  258. package/lib/download/git/index.cjs +0 -76
  259. package/lib/download/git/index.d.cts +0 -29
  260. package/lib/download/git/index.d.mts +0 -29
  261. package/lib/download/git/index.mjs +0 -74
  262. package/lib/download/git/reset.cjs +0 -36
  263. package/lib/download/git/reset.d.cts +0 -6
  264. package/lib/download/git/reset.d.mts +0 -6
  265. package/lib/download/git/reset.mjs +0 -34
  266. package/lib/download/github/hash.cjs +0 -31
  267. package/lib/download/github/hash.d.cts +0 -8
  268. package/lib/download/github/hash.d.mts +0 -8
  269. package/lib/download/github/hash.mjs +0 -29
  270. package/lib/download/github/index.cjs +0 -105
  271. package/lib/download/github/index.d.cts +0 -31
  272. package/lib/download/github/index.d.mts +0 -31
  273. package/lib/download/github/index.mjs +0 -103
  274. package/lib/download/github/types.cjs +0 -2
  275. package/lib/download/github/types.d.cts +0 -11
  276. package/lib/download/github/types.d.mts +0 -11
  277. package/lib/download/github/types.mjs +0 -1
  278. package/lib/download/gitlab/hash.cjs +0 -33
  279. package/lib/download/gitlab/hash.d.cts +0 -8
  280. package/lib/download/gitlab/hash.d.mts +0 -8
  281. package/lib/download/gitlab/hash.mjs +0 -31
  282. package/lib/download/gitlab/index.cjs +0 -105
  283. package/lib/download/gitlab/index.d.cts +0 -31
  284. package/lib/download/gitlab/index.d.mts +0 -31
  285. package/lib/download/gitlab/index.mjs +0 -103
  286. package/lib/download/gitlab/types.cjs +0 -5
  287. package/lib/download/gitlab/types.d.cts +0 -15
  288. package/lib/download/gitlab/types.d.mts +0 -15
  289. package/lib/download/gitlab/types.mjs +0 -3
  290. package/lib/download/helpers/untar.cjs +0 -12
  291. package/lib/download/helpers/untar.d.cts +0 -6
  292. package/lib/download/helpers/untar.d.mts +0 -6
  293. package/lib/download/helpers/untar.mjs +0 -10
  294. package/lib/download/helpers/unzip.cjs +0 -17
  295. package/lib/download/helpers/unzip.d.cts +0 -6
  296. package/lib/download/helpers/unzip.d.mts +0 -6
  297. package/lib/download/helpers/unzip.mjs +0 -11
  298. package/lib/download/index.cjs +0 -64
  299. package/lib/download/index.d.cts +0 -48
  300. package/lib/download/index.d.mts +0 -48
  301. package/lib/download/index.mjs +0 -62
  302. package/lib/download/npm/index.cjs +0 -85
  303. package/lib/download/npm/index.d.cts +0 -30
  304. package/lib/download/npm/index.d.mts +0 -30
  305. package/lib/download/npm/index.mjs +0 -83
  306. package/lib/download/npm/types.cjs +0 -2
  307. package/lib/download/npm/types.d.cts +0 -9
  308. package/lib/download/npm/types.d.mts +0 -9
  309. package/lib/download/npm/types.mjs +0 -1
  310. package/lib/download/npm/version.cjs +0 -29
  311. package/lib/download/npm/version.d.cts +0 -16
  312. package/lib/download/npm/version.d.mts +0 -16
  313. package/lib/download/npm/version.mjs +0 -26
  314. package/lib/download/types/modified.cjs +0 -2
  315. package/lib/download/types/modified.d.cts +0 -6
  316. package/lib/download/types/modified.d.mts +0 -6
  317. package/lib/download/types/modified.mjs +0 -1
  318. package/lib/download/types/sources.cjs +0 -2
  319. package/lib/download/types/sources.d.cts +0 -12
  320. package/lib/download/types/sources.d.mts +0 -12
  321. package/lib/download/types/sources.mjs +0 -1
  322. package/lib/export/directory.cjs +0 -43
  323. package/lib/export/directory.d.cts +0 -26
  324. package/lib/export/directory.d.mts +0 -26
  325. package/lib/export/directory.mjs +0 -41
  326. package/lib/export/helpers/custom-files.cjs +0 -26
  327. package/lib/export/helpers/custom-files.d.cts +0 -12
  328. package/lib/export/helpers/custom-files.d.mts +0 -12
  329. package/lib/export/helpers/custom-files.mjs +0 -24
  330. package/lib/export/helpers/prepare.cjs +0 -34
  331. package/lib/export/helpers/prepare.d.cts +0 -19
  332. package/lib/export/helpers/prepare.d.mts +0 -19
  333. package/lib/export/helpers/prepare.mjs +0 -31
  334. package/lib/export/helpers/types-version.cjs +0 -12
  335. package/lib/export/helpers/types-version.d.cts +0 -6
  336. package/lib/export/helpers/types-version.d.mts +0 -6
  337. package/lib/export/helpers/types-version.mjs +0 -10
  338. package/lib/export/icon-package.cjs +0 -56
  339. package/lib/export/icon-package.d.cts +0 -26
  340. package/lib/export/icon-package.d.mts +0 -26
  341. package/lib/export/icon-package.mjs +0 -54
  342. package/lib/export/json-package.cjs +0 -144
  343. package/lib/export/json-package.d.cts +0 -25
  344. package/lib/export/json-package.d.mts +0 -25
  345. package/lib/export/json-package.mjs +0 -142
  346. package/lib/icon-set/index.cjs +0 -720
  347. package/lib/icon-set/index.d.cts +0 -162
  348. package/lib/icon-set/index.d.mts +0 -162
  349. package/lib/icon-set/index.mjs +0 -716
  350. package/lib/icon-set/match.cjs +0 -56
  351. package/lib/icon-set/match.d.cts +0 -15
  352. package/lib/icon-set/match.d.mts +0 -15
  353. package/lib/icon-set/match.mjs +0 -54
  354. package/lib/icon-set/merge.cjs +0 -87
  355. package/lib/icon-set/merge.d.cts +0 -14
  356. package/lib/icon-set/merge.d.mts +0 -14
  357. package/lib/icon-set/merge.mjs +0 -85
  358. package/lib/icon-set/modified.cjs +0 -25
  359. package/lib/icon-set/modified.d.cts +0 -16
  360. package/lib/icon-set/modified.d.mts +0 -16
  361. package/lib/icon-set/modified.mjs +0 -23
  362. package/lib/icon-set/props.cjs +0 -16
  363. package/lib/icon-set/props.d.cts +0 -13
  364. package/lib/icon-set/props.d.mts +0 -13
  365. package/lib/icon-set/props.mjs +0 -13
  366. package/lib/icon-set/tags.cjs +0 -95
  367. package/lib/icon-set/tags.d.cts +0 -25
  368. package/lib/icon-set/tags.d.mts +0 -25
  369. package/lib/icon-set/tags.mjs +0 -91
  370. package/lib/icon-set/types.cjs +0 -2
  371. package/lib/icon-set/types.d.cts +0 -75
  372. package/lib/icon-set/types.d.mts +0 -75
  373. package/lib/icon-set/types.mjs +0 -1
  374. package/lib/import/directory.cjs +0 -169
  375. package/lib/import/directory.d.cts +0 -52
  376. package/lib/import/directory.d.mts +0 -52
  377. package/lib/import/directory.mjs +0 -166
  378. package/lib/import/figma/index.cjs +0 -115
  379. package/lib/import/figma/index.d.cts +0 -20
  380. package/lib/import/figma/index.d.mts +0 -20
  381. package/lib/import/figma/index.mjs +0 -113
  382. package/lib/import/figma/nodes.cjs +0 -90
  383. package/lib/import/figma/nodes.d.cts +0 -18
  384. package/lib/import/figma/nodes.d.mts +0 -18
  385. package/lib/import/figma/nodes.mjs +0 -88
  386. package/lib/import/figma/query.cjs +0 -260
  387. package/lib/import/figma/query.d.cts +0 -42
  388. package/lib/import/figma/query.d.mts +0 -42
  389. package/lib/import/figma/query.mjs +0 -256
  390. package/lib/import/figma/types/api.cjs +0 -2
  391. package/lib/import/figma/types/api.d.cts +0 -53
  392. package/lib/import/figma/types/api.d.mts +0 -53
  393. package/lib/import/figma/types/api.mjs +0 -1
  394. package/lib/import/figma/types/nodes.cjs +0 -2
  395. package/lib/import/figma/types/nodes.d.cts +0 -44
  396. package/lib/import/figma/types/nodes.d.mts +0 -44
  397. package/lib/import/figma/types/nodes.mjs +0 -1
  398. package/lib/import/figma/types/options.cjs +0 -2
  399. package/lib/import/figma/types/options.d.cts +0 -59
  400. package/lib/import/figma/types/options.d.mts +0 -59
  401. package/lib/import/figma/types/options.mjs +0 -1
  402. package/lib/import/figma/types/result.cjs +0 -2
  403. package/lib/import/figma/types/result.d.cts +0 -44
  404. package/lib/import/figma/types/result.d.mts +0 -44
  405. package/lib/import/figma/types/result.mjs +0 -1
  406. package/lib/index.cjs +0 -157
  407. package/lib/index.d.cts +0 -80
  408. package/lib/index.d.mts +0 -80
  409. package/lib/index.mjs +0 -91
  410. package/lib/misc/bump-version.cjs +0 -15
  411. package/lib/misc/bump-version.d.cts +0 -6
  412. package/lib/misc/bump-version.d.mts +0 -6
  413. package/lib/misc/bump-version.mjs +0 -13
  414. package/lib/misc/cheerio.cjs +0 -2
  415. package/lib/misc/cheerio.d.cts +0 -10
  416. package/lib/misc/cheerio.d.mts +0 -10
  417. package/lib/misc/cheerio.d.ts +0 -10
  418. package/lib/misc/cheerio.mjs +0 -1
  419. package/lib/misc/compare-dirs.cjs +0 -75
  420. package/lib/misc/compare-dirs.d.cts +0 -11
  421. package/lib/misc/compare-dirs.d.mts +0 -11
  422. package/lib/misc/compare-dirs.mjs +0 -73
  423. package/lib/misc/exec.cjs +0 -27
  424. package/lib/misc/exec.d.cts +0 -12
  425. package/lib/misc/exec.d.mts +0 -12
  426. package/lib/misc/exec.mjs +0 -25
  427. package/lib/misc/keyword.cjs +0 -20
  428. package/lib/misc/keyword.d.cts +0 -6
  429. package/lib/misc/keyword.d.mts +0 -6
  430. package/lib/misc/keyword.mjs +0 -18
  431. package/lib/misc/scan.cjs +0 -114
  432. package/lib/misc/scan.d.cts +0 -33
  433. package/lib/misc/scan.d.mts +0 -33
  434. package/lib/misc/scan.mjs +0 -111
  435. package/lib/misc/write-json.cjs +0 -9
  436. package/lib/misc/write-json.d.cts +0 -6
  437. package/lib/misc/write-json.d.mts +0 -6
  438. package/lib/misc/write-json.mjs +0 -7
  439. package/lib/optimise/figma.cjs +0 -232
  440. package/lib/optimise/figma.d.cts +0 -14
  441. package/lib/optimise/figma.d.mts +0 -14
  442. package/lib/optimise/figma.mjs +0 -230
  443. package/lib/optimise/flags.cjs +0 -256
  444. package/lib/optimise/flags.d.cts +0 -11
  445. package/lib/optimise/flags.d.mts +0 -11
  446. package/lib/optimise/flags.mjs +0 -254
  447. package/lib/optimise/global-style.cjs +0 -158
  448. package/lib/optimise/global-style.d.cts +0 -11
  449. package/lib/optimise/global-style.d.mts +0 -11
  450. package/lib/optimise/global-style.mjs +0 -156
  451. package/lib/optimise/mask.cjs +0 -110
  452. package/lib/optimise/mask.d.cts +0 -24
  453. package/lib/optimise/mask.d.mts +0 -24
  454. package/lib/optimise/mask.mjs +0 -108
  455. package/lib/optimise/origin.cjs +0 -23
  456. package/lib/optimise/origin.d.cts +0 -11
  457. package/lib/optimise/origin.d.mts +0 -11
  458. package/lib/optimise/origin.mjs +0 -21
  459. package/lib/optimise/scale.cjs +0 -27
  460. package/lib/optimise/scale.d.cts +0 -11
  461. package/lib/optimise/scale.d.mts +0 -11
  462. package/lib/optimise/scale.mjs +0 -25
  463. package/lib/optimise/svgo.cjs +0 -107
  464. package/lib/optimise/svgo.d.cts +0 -37
  465. package/lib/optimise/svgo.d.mts +0 -37
  466. package/lib/optimise/svgo.mjs +0 -104
  467. package/lib/optimise/unwrap.cjs +0 -31
  468. package/lib/optimise/unwrap.d.cts +0 -11
  469. package/lib/optimise/unwrap.d.mts +0 -11
  470. package/lib/optimise/unwrap.mjs +0 -29
  471. package/lib/svg/analyse/error.cjs +0 -16
  472. package/lib/svg/analyse/error.d.cts +0 -11
  473. package/lib/svg/analyse/error.d.mts +0 -11
  474. package/lib/svg/analyse/error.mjs +0 -14
  475. package/lib/svg/analyse/types.cjs +0 -2
  476. package/lib/svg/analyse/types.d.cts +0 -93
  477. package/lib/svg/analyse/types.d.mts +0 -93
  478. package/lib/svg/analyse/types.mjs +0 -1
  479. package/lib/svg/analyse.cjs +0 -303
  480. package/lib/svg/analyse.d.cts +0 -16
  481. package/lib/svg/analyse.d.mts +0 -16
  482. package/lib/svg/analyse.mjs +0 -301
  483. package/lib/svg/cleanup/attribs.cjs +0 -39
  484. package/lib/svg/cleanup/attribs.d.cts +0 -11
  485. package/lib/svg/cleanup/attribs.d.mts +0 -11
  486. package/lib/svg/cleanup/attribs.mjs +0 -37
  487. package/lib/svg/cleanup/bad-tags.cjs +0 -69
  488. package/lib/svg/cleanup/bad-tags.d.cts +0 -17
  489. package/lib/svg/cleanup/bad-tags.d.mts +0 -17
  490. package/lib/svg/cleanup/bad-tags.mjs +0 -67
  491. package/lib/svg/cleanup/inline-style.cjs +0 -97
  492. package/lib/svg/cleanup/inline-style.d.cts +0 -11
  493. package/lib/svg/cleanup/inline-style.d.mts +0 -11
  494. package/lib/svg/cleanup/inline-style.mjs +0 -95
  495. package/lib/svg/cleanup/root-style.cjs +0 -34
  496. package/lib/svg/cleanup/root-style.d.cts +0 -17
  497. package/lib/svg/cleanup/root-style.d.mts +0 -17
  498. package/lib/svg/cleanup/root-style.mjs +0 -32
  499. package/lib/svg/cleanup/root-svg.cjs +0 -84
  500. package/lib/svg/cleanup/root-svg.d.cts +0 -11
  501. package/lib/svg/cleanup/root-svg.d.mts +0 -11
  502. package/lib/svg/cleanup/root-svg.mjs +0 -82
  503. package/lib/svg/cleanup/svgo-style.cjs +0 -43
  504. package/lib/svg/cleanup/svgo-style.d.cts +0 -11
  505. package/lib/svg/cleanup/svgo-style.d.mts +0 -11
  506. package/lib/svg/cleanup/svgo-style.mjs +0 -41
  507. package/lib/svg/cleanup.cjs +0 -33
  508. package/lib/svg/cleanup.d.cts +0 -16
  509. package/lib/svg/cleanup.d.mts +0 -16
  510. package/lib/svg/cleanup.mjs +0 -31
  511. package/lib/svg/data/attributes.cjs +0 -373
  512. package/lib/svg/data/attributes.d.cts +0 -77
  513. package/lib/svg/data/attributes.d.mts +0 -77
  514. package/lib/svg/data/attributes.mjs +0 -346
  515. package/lib/svg/data/tags.cjs +0 -141
  516. package/lib/svg/data/tags.d.cts +0 -95
  517. package/lib/svg/data/tags.d.mts +0 -95
  518. package/lib/svg/data/tags.mjs +0 -117
  519. package/lib/svg/index.cjs +0 -178
  520. package/lib/svg/index.d.cts +0 -52
  521. package/lib/svg/index.d.mts +0 -52
  522. package/lib/svg/index.mjs +0 -162
  523. package/lib/svg/parse-style.cjs +0 -243
  524. package/lib/svg/parse-style.d.cts +0 -59
  525. package/lib/svg/parse-style.d.mts +0 -59
  526. package/lib/svg/parse-style.mjs +0 -241
  527. package/lib/svg/parse.cjs +0 -46
  528. package/lib/svg/parse.d.cts +0 -31
  529. package/lib/svg/parse.d.mts +0 -31
  530. package/lib/svg/parse.mjs +0 -44
@@ -1 +0,0 @@
1
-
@@ -1,2 +0,0 @@
1
- 'use strict';
2
-
@@ -1,44 +0,0 @@
1
- import { IconFigmaNode, FigmaDocument } from './api.cjs';
2
- import { FigmaNodesImportResult, FigmaIconNode } from './result.cjs';
3
- import '../../../icon-set/index.cjs';
4
- import '@iconify/types';
5
- import '@iconify/utils/lib/customisations/defaults';
6
- import '../../../icon-set/types.cjs';
7
- import '../../../svg/index.cjs';
8
- import 'cheerio';
9
- import '@iconify/utils/lib/icon-set/tree';
10
-
11
- type FigmaImportParentNodeType = 'CANVAS' | 'FRAME' | 'GROUP' | 'SECTION' | 'COMPONENT_SET';
12
- type FigmaImportIconNodeType = IconFigmaNode['type'];
13
- /**
14
- * Node information passed to callback
15
- */
16
- interface FigmaParentNodeData {
17
- id: string;
18
- type: FigmaImportParentNodeType;
19
- name: string;
20
- }
21
- interface FigmaImportNodeData {
22
- id: string;
23
- type: FigmaImportIconNodeType;
24
- name: string;
25
- width: number;
26
- height: number;
27
- parents: FigmaParentNodeData[];
28
- }
29
- /**
30
- * Callback to check if node needs to be checked for icons
31
- *
32
- * Used to speed up processing by eleminating pages, frames and groups that do not need processing
33
- */
34
- type FigmaImportParentNodeFilter = (node: FigmaParentNodeData[], document: FigmaDocument) => boolean;
35
- /**
36
- * Check if node is an icon.
37
- *
38
- * Returns icon name on success, null or undefined if not should be ignored.
39
- * Function can also return FigmaIconNode object, where it can put extra properties that can be used later
40
- */
41
- type FigmaIconNodeWithKeyword = Partial<FigmaIconNode> & Pick<FigmaIconNode, 'keyword'>;
42
- type FigmaImportNodeFilter = (node: FigmaImportNodeData, nodes: FigmaNodesImportResult, document: FigmaDocument) => string | FigmaIconNodeWithKeyword | null | undefined;
43
-
44
- export type { FigmaImportIconNodeType, FigmaImportNodeData, FigmaImportNodeFilter, FigmaImportParentNodeFilter, FigmaImportParentNodeType, FigmaParentNodeData };
@@ -1,44 +0,0 @@
1
- import { IconFigmaNode, FigmaDocument } from './api.mjs';
2
- import { FigmaNodesImportResult, FigmaIconNode } from './result.mjs';
3
- import '../../../icon-set/index.mjs';
4
- import '@iconify/types';
5
- import '@iconify/utils/lib/customisations/defaults';
6
- import '../../../icon-set/types.mjs';
7
- import '../../../svg/index.mjs';
8
- import 'cheerio';
9
- import '@iconify/utils/lib/icon-set/tree';
10
-
11
- type FigmaImportParentNodeType = 'CANVAS' | 'FRAME' | 'GROUP' | 'SECTION' | 'COMPONENT_SET';
12
- type FigmaImportIconNodeType = IconFigmaNode['type'];
13
- /**
14
- * Node information passed to callback
15
- */
16
- interface FigmaParentNodeData {
17
- id: string;
18
- type: FigmaImportParentNodeType;
19
- name: string;
20
- }
21
- interface FigmaImportNodeData {
22
- id: string;
23
- type: FigmaImportIconNodeType;
24
- name: string;
25
- width: number;
26
- height: number;
27
- parents: FigmaParentNodeData[];
28
- }
29
- /**
30
- * Callback to check if node needs to be checked for icons
31
- *
32
- * Used to speed up processing by eleminating pages, frames and groups that do not need processing
33
- */
34
- type FigmaImportParentNodeFilter = (node: FigmaParentNodeData[], document: FigmaDocument) => boolean;
35
- /**
36
- * Check if node is an icon.
37
- *
38
- * Returns icon name on success, null or undefined if not should be ignored.
39
- * Function can also return FigmaIconNode object, where it can put extra properties that can be used later
40
- */
41
- type FigmaIconNodeWithKeyword = Partial<FigmaIconNode> & Pick<FigmaIconNode, 'keyword'>;
42
- type FigmaImportNodeFilter = (node: FigmaImportNodeData, nodes: FigmaNodesImportResult, document: FigmaDocument) => string | FigmaIconNodeWithKeyword | null | undefined;
43
-
44
- export type { FigmaImportIconNodeType, FigmaImportNodeData, FigmaImportNodeFilter, FigmaImportParentNodeFilter, FigmaImportParentNodeType, FigmaParentNodeData };
@@ -1 +0,0 @@
1
-
@@ -1,2 +0,0 @@
1
- 'use strict';
2
-
@@ -1,59 +0,0 @@
1
- import { IconSet } from '../../../icon-set/index.cjs';
2
- import { FigmaImportParentNodeFilter, FigmaImportNodeFilter } from './nodes.cjs';
3
- import { FigmaIconNode } from './result.cjs';
4
- import '@iconify/types';
5
- import '@iconify/utils/lib/customisations/defaults';
6
- import '../../../icon-set/types.cjs';
7
- import '../../../svg/index.cjs';
8
- import 'cheerio';
9
- import '@iconify/utils/lib/icon-set/tree';
10
- import './api.cjs';
11
-
12
- /**
13
- * Options for importing SVG
14
- */
15
- interface FigmaImportSVGOptions {
16
- includeID?: boolean;
17
- simplifyStroke?: boolean;
18
- useAbsoluteBounds?: boolean;
19
- }
20
- /**
21
- * Options
22
- */
23
- interface FigmaImportCommonOptions {
24
- token: string;
25
- file: string;
26
- version?: string;
27
- }
28
- interface FigmaIfModifiedSinceOption {
29
- ifModifiedSince: string | Date | true;
30
- }
31
- interface FigmaFilesQueryOptions extends FigmaImportCommonOptions, Partial<FigmaIfModifiedSinceOption> {
32
- ids?: string[];
33
- depth?: number;
34
- }
35
- interface FigmaImagesQueryOptions extends FigmaImportCommonOptions {
36
- svgOptions?: FigmaImportSVGOptions;
37
- }
38
- interface FigmaGetIconNodesOptions {
39
- pages?: string[];
40
- filterParentNode?: FigmaImportParentNodeFilter;
41
- iconNameForNode: FigmaImportNodeFilter;
42
- }
43
- /**
44
- * Callback to call before or after importing icon
45
- */
46
- type FigmaImportedIconCallback = (node: FigmaIconNode, iconSet: IconSet) => void | Promise<void>;
47
- /**
48
- * Options for main import function
49
- */
50
- interface FigmaImportOptions extends FigmaFilesQueryOptions, FigmaImagesQueryOptions, FigmaGetIconNodesOptions {
51
- prefix: string;
52
- cacheDir?: string;
53
- cacheAPITTL?: number;
54
- cacheSVGTTL?: number;
55
- beforeImportingIcon?: FigmaImportedIconCallback;
56
- afterImportingIcon?: FigmaImportedIconCallback;
57
- }
58
-
59
- export type { FigmaFilesQueryOptions, FigmaGetIconNodesOptions, FigmaIfModifiedSinceOption, FigmaImagesQueryOptions, FigmaImportOptions, FigmaImportSVGOptions };
@@ -1,59 +0,0 @@
1
- import { IconSet } from '../../../icon-set/index.mjs';
2
- import { FigmaImportParentNodeFilter, FigmaImportNodeFilter } from './nodes.mjs';
3
- import { FigmaIconNode } from './result.mjs';
4
- import '@iconify/types';
5
- import '@iconify/utils/lib/customisations/defaults';
6
- import '../../../icon-set/types.mjs';
7
- import '../../../svg/index.mjs';
8
- import 'cheerio';
9
- import '@iconify/utils/lib/icon-set/tree';
10
- import './api.mjs';
11
-
12
- /**
13
- * Options for importing SVG
14
- */
15
- interface FigmaImportSVGOptions {
16
- includeID?: boolean;
17
- simplifyStroke?: boolean;
18
- useAbsoluteBounds?: boolean;
19
- }
20
- /**
21
- * Options
22
- */
23
- interface FigmaImportCommonOptions {
24
- token: string;
25
- file: string;
26
- version?: string;
27
- }
28
- interface FigmaIfModifiedSinceOption {
29
- ifModifiedSince: string | Date | true;
30
- }
31
- interface FigmaFilesQueryOptions extends FigmaImportCommonOptions, Partial<FigmaIfModifiedSinceOption> {
32
- ids?: string[];
33
- depth?: number;
34
- }
35
- interface FigmaImagesQueryOptions extends FigmaImportCommonOptions {
36
- svgOptions?: FigmaImportSVGOptions;
37
- }
38
- interface FigmaGetIconNodesOptions {
39
- pages?: string[];
40
- filterParentNode?: FigmaImportParentNodeFilter;
41
- iconNameForNode: FigmaImportNodeFilter;
42
- }
43
- /**
44
- * Callback to call before or after importing icon
45
- */
46
- type FigmaImportedIconCallback = (node: FigmaIconNode, iconSet: IconSet) => void | Promise<void>;
47
- /**
48
- * Options for main import function
49
- */
50
- interface FigmaImportOptions extends FigmaFilesQueryOptions, FigmaImagesQueryOptions, FigmaGetIconNodesOptions {
51
- prefix: string;
52
- cacheDir?: string;
53
- cacheAPITTL?: number;
54
- cacheSVGTTL?: number;
55
- beforeImportingIcon?: FigmaImportedIconCallback;
56
- afterImportingIcon?: FigmaImportedIconCallback;
57
- }
58
-
59
- export type { FigmaFilesQueryOptions, FigmaGetIconNodesOptions, FigmaIfModifiedSinceOption, FigmaImagesQueryOptions, FigmaImportOptions, FigmaImportSVGOptions };
@@ -1 +0,0 @@
1
-
@@ -1,2 +0,0 @@
1
- 'use strict';
2
-
@@ -1,44 +0,0 @@
1
- import { IconSet } from '../../../icon-set/index.cjs';
2
- import '@iconify/types';
3
- import '@iconify/utils/lib/customisations/defaults';
4
- import '../../../icon-set/types.cjs';
5
- import '../../../svg/index.cjs';
6
- import 'cheerio';
7
- import '@iconify/utils/lib/icon-set/tree';
8
-
9
- /**
10
- * Result for found icons
11
- */
12
- interface FigmaIconNode {
13
- id: string;
14
- name: string;
15
- keyword: string;
16
- url?: string;
17
- content?: string;
18
- }
19
- /**
20
- * Nodes count
21
- */
22
- interface FigmaNodesCount {
23
- nodesCount: number;
24
- generatedIconsCount: number;
25
- downloadedIconsCount: number;
26
- }
27
- /**
28
- * Import result for icons
29
- */
30
- interface FigmaNodesImportResult extends Partial<FigmaNodesCount> {
31
- icons: Record<string, FigmaIconNode>;
32
- }
33
- /**
34
- * Import result
35
- */
36
- interface FigmaImportResult extends FigmaNodesCount {
37
- name: string;
38
- version: string;
39
- lastModified: string;
40
- iconSet: IconSet;
41
- missing: FigmaIconNode[];
42
- }
43
-
44
- export type { FigmaIconNode, FigmaImportResult, FigmaNodesCount, FigmaNodesImportResult };
@@ -1,44 +0,0 @@
1
- import { IconSet } from '../../../icon-set/index.mjs';
2
- import '@iconify/types';
3
- import '@iconify/utils/lib/customisations/defaults';
4
- import '../../../icon-set/types.mjs';
5
- import '../../../svg/index.mjs';
6
- import 'cheerio';
7
- import '@iconify/utils/lib/icon-set/tree';
8
-
9
- /**
10
- * Result for found icons
11
- */
12
- interface FigmaIconNode {
13
- id: string;
14
- name: string;
15
- keyword: string;
16
- url?: string;
17
- content?: string;
18
- }
19
- /**
20
- * Nodes count
21
- */
22
- interface FigmaNodesCount {
23
- nodesCount: number;
24
- generatedIconsCount: number;
25
- downloadedIconsCount: number;
26
- }
27
- /**
28
- * Import result for icons
29
- */
30
- interface FigmaNodesImportResult extends Partial<FigmaNodesCount> {
31
- icons: Record<string, FigmaIconNode>;
32
- }
33
- /**
34
- * Import result
35
- */
36
- interface FigmaImportResult extends FigmaNodesCount {
37
- name: string;
38
- version: string;
39
- lastModified: string;
40
- iconSet: IconSet;
41
- missing: FigmaIconNode[];
42
- }
43
-
44
- export type { FigmaIconNode, FigmaImportResult, FigmaNodesCount, FigmaNodesImportResult };
@@ -1 +0,0 @@
1
-
package/lib/index.cjs DELETED
@@ -1,157 +0,0 @@
1
- 'use strict';
2
-
3
- const svg_index = require('./svg/index.cjs');
4
- const svg_parse = require('./svg/parse.cjs');
5
- const svg_parseStyle = require('./svg/parse-style.cjs');
6
- const svg_analyse = require('./svg/analyse.cjs');
7
- const svg_cleanup = require('./svg/cleanup.cjs');
8
- const svg_cleanup_attribs = require('./svg/cleanup/attribs.cjs');
9
- const svg_cleanup_badTags = require('./svg/cleanup/bad-tags.cjs');
10
- const svg_cleanup_rootStyle = require('./svg/cleanup/root-style.cjs');
11
- const svg_cleanup_inlineStyle = require('./svg/cleanup/inline-style.cjs');
12
- const svg_cleanup_rootSvg = require('./svg/cleanup/root-svg.cjs');
13
- const svg_cleanup_svgoStyle = require('./svg/cleanup/svgo-style.cjs');
14
- const iconSet_index = require('./icon-set/index.cjs');
15
- const iconSet_merge = require('./icon-set/merge.cjs');
16
- const iconSet_tags = require('./icon-set/tags.cjs');
17
- const import_figma_index = require('./import/figma/index.cjs');
18
- const import_directory = require('./import/directory.cjs');
19
- const download_git_index = require('./download/git/index.cjs');
20
- const download_git_hash = require('./download/git/hash.cjs');
21
- const download_git_branch = require('./download/git/branch.cjs');
22
- const download_git_reset = require('./download/git/reset.cjs');
23
- const download_github_index = require('./download/github/index.cjs');
24
- const download_github_hash = require('./download/github/hash.cjs');
25
- const download_gitlab_index = require('./download/gitlab/index.cjs');
26
- const download_gitlab_hash = require('./download/gitlab/hash.cjs');
27
- const download_npm_index = require('./download/npm/index.cjs');
28
- const download_npm_version = require('./download/npm/version.cjs');
29
- const download_index = require('./download/index.cjs');
30
- const download_api_download = require('./download/api/download.cjs');
31
- const colors_parse = require('./colors/parse.cjs');
32
- const colors_validate = require('./colors/validate.cjs');
33
- const colors_detect = require('./colors/detect.cjs');
34
- const optimise_svgo = require('./optimise/svgo.cjs');
35
- const optimise_figma = require('./optimise/figma.cjs');
36
- const optimise_flags = require('./optimise/flags.cjs');
37
- const optimise_origin = require('./optimise/origin.cjs');
38
- const optimise_mask = require('./optimise/mask.cjs');
39
- const optimise_scale = require('./optimise/scale.cjs');
40
- const optimise_globalStyle = require('./optimise/global-style.cjs');
41
- const export_directory = require('./export/directory.cjs');
42
- const export_jsonPackage = require('./export/json-package.cjs');
43
- const export_iconPackage = require('./export/icon-package.cjs');
44
- const misc_writeJson = require('./misc/write-json.cjs');
45
- const export_helpers_prepare = require('./export/helpers/prepare.cjs');
46
- const misc_scan = require('./misc/scan.cjs');
47
- const misc_compareDirs = require('./misc/compare-dirs.cjs');
48
- const download_helpers_unzip = require('./download/helpers/unzip.cjs');
49
- const download_helpers_untar = require('./download/helpers/untar.cjs');
50
- const misc_exec = require('./misc/exec.cjs');
51
- const misc_keyword = require('./misc/keyword.cjs');
52
- const misc_bumpVersion = require('./misc/bump-version.cjs');
53
- const download_api_config = require('./download/api/config.cjs');
54
- const download_api_fetch = require('./download/api/fetch.cjs');
55
- const download_api_index = require('./download/api/index.cjs');
56
- const download_api_queue = require('./download/api/queue.cjs');
57
- require('cheerio');
58
- require('@iconify/utils');
59
- require('./css/parse.cjs');
60
- require('./css/parser/tokens.cjs');
61
- require('./css/parser/error.cjs');
62
- require('./css/parser/strings.cjs');
63
- require('./css/parser/text.cjs');
64
- require('./css/parser/export.cjs');
65
- require('./css/parser/tree.cjs');
66
- require('./svg/data/attributes.cjs');
67
- require('./svg/data/tags.cjs');
68
- require('./svg/analyse/error.cjs');
69
- require('@iconify/utils/lib/icon/defaults');
70
- require('@iconify/utils/lib/svg/build');
71
- require('@iconify/utils/lib/icon-set/minify');
72
- require('@iconify/utils/lib/icon-set/convert-info');
73
- require('./icon-set/props.cjs');
74
- require('@iconify/utils/lib/misc/objects');
75
- require('./icon-set/match.cjs');
76
- require('./icon-set/modified.cjs');
77
- require('./import/figma/nodes.cjs');
78
- require('./import/figma/query.cjs');
79
- require('./download/api/cache.cjs');
80
- require('fs');
81
- require('crypto');
82
- require('svgo');
83
- require('@iconify/utils/lib/svg/id');
84
- require('@iconify/utils/lib/colors');
85
- require('pathe');
86
- require('fs/promises');
87
- require('extract-zip');
88
- require('tar');
89
- require('./download/gitlab/types.cjs');
90
- require('./colors/attribs.cjs');
91
- require('./optimise/unwrap.cjs');
92
- require('./export/helpers/custom-files.cjs');
93
- require('child_process');
94
-
95
-
96
-
97
- exports.SVG = svg_index.SVG;
98
- exports.parseSVG = svg_parse.parseSVG;
99
- exports.parseSVGStyle = svg_parseStyle.parseSVGStyle;
100
- exports.analyseSVGStructure = svg_analyse.analyseSVGStructure;
101
- exports.cleanupSVG = svg_cleanup.cleanupSVG;
102
- exports.removeBadAttributes = svg_cleanup_attribs.removeBadAttributes;
103
- exports.checkBadTags = svg_cleanup_badTags.checkBadTags;
104
- exports.cleanupRootStyle = svg_cleanup_rootStyle.cleanupRootStyle;
105
- exports.cleanupInlineStyle = svg_cleanup_inlineStyle.cleanupInlineStyle;
106
- exports.cleanupSVGRoot = svg_cleanup_rootSvg.cleanupSVGRoot;
107
- exports.convertStyleToAttrs = svg_cleanup_svgoStyle.convertStyleToAttrs;
108
- exports.IconSet = iconSet_index.IconSet;
109
- exports.blankIconSet = iconSet_index.blankIconSet;
110
- exports.mergeIconSets = iconSet_merge.mergeIconSets;
111
- exports.addTagsToIconSet = iconSet_tags.addTagsToIconSet;
112
- exports.importFromFigma = import_figma_index.importFromFigma;
113
- exports.importDirectory = import_directory.importDirectory;
114
- exports.importDirectorySync = import_directory.importDirectorySync;
115
- exports.downloadGitRepo = download_git_index.downloadGitRepo;
116
- exports.getGitRepoHash = download_git_hash.getGitRepoHash;
117
- exports.getGitRepoBranch = download_git_branch.getGitRepoBranch;
118
- exports.resetGitRepoContents = download_git_reset.resetGitRepoContents;
119
- exports.downloadGitHubRepo = download_github_index.downloadGitHubRepo;
120
- exports.getGitHubRepoHash = download_github_hash.getGitHubRepoHash;
121
- exports.downloadGitLabRepo = download_gitlab_index.downloadGitLabRepo;
122
- exports.getGitLabRepoHash = download_gitlab_hash.getGitLabRepoHash;
123
- exports.downloadNPMPackage = download_npm_index.downloadNPMPackage;
124
- exports.getNPMVersion = download_npm_version.getNPMVersion;
125
- exports.getPackageVersion = download_npm_version.getPackageVersion;
126
- exports.downloadPackage = download_index.downloadPackage;
127
- exports.downloadFile = download_api_download.downloadFile;
128
- exports.isEmptyColor = colors_parse.isEmptyColor;
129
- exports.parseColors = colors_parse.parseColors;
130
- exports.validateColors = colors_validate.validateColors;
131
- exports.detectIconSetPalette = colors_detect.detectIconSetPalette;
132
- exports.runSVGO = optimise_svgo.runSVGO;
133
- exports.removeFigmaClipPathFromSVG = optimise_figma.removeFigmaClipPathFromSVG;
134
- exports.deOptimisePaths = optimise_flags.deOptimisePaths;
135
- exports.resetSVGOrigin = optimise_origin.resetSVGOrigin;
136
- exports.convertSVGToMask = optimise_mask.convertSVGToMask;
137
- exports.scaleSVG = optimise_scale.scaleSVG;
138
- exports.cleanupGlobalStyle = optimise_globalStyle.cleanupGlobalStyle;
139
- exports.exportToDirectory = export_directory.exportToDirectory;
140
- exports.exportJSONPackage = export_jsonPackage.exportJSONPackage;
141
- exports.exportIconPackage = export_iconPackage.exportIconPackage;
142
- exports.writeJSONFile = misc_writeJson.writeJSONFile;
143
- exports.prepareDirectoryForExport = export_helpers_prepare.prepareDirectoryForExport;
144
- exports.scanDirectory = misc_scan.scanDirectory;
145
- exports.scanDirectorySync = misc_scan.scanDirectorySync;
146
- exports.compareDirectories = misc_compareDirs.compareDirectories;
147
- exports.unzip = download_helpers_unzip.unzip;
148
- exports.untar = download_helpers_untar.untar;
149
- exports.execAsync = misc_exec.execAsync;
150
- exports.cleanupIconKeyword = misc_keyword.cleanupIconKeyword;
151
- exports.bumpVersion = misc_bumpVersion.bumpVersion;
152
- exports.axiosConfig = download_api_config.axiosConfig;
153
- exports.fetchCallbacks = download_api_config.fetchCallbacks;
154
- exports.setFetch = download_api_fetch.setFetch;
155
- exports.sendAPIQuery = download_api_index.sendAPIQuery;
156
- exports.defaultQueueParams = download_api_queue.defaultQueueParams;
157
- exports.runConcurrentQueries = download_api_queue.runConcurrentQueries;
package/lib/index.d.cts DELETED
@@ -1,80 +0,0 @@
1
- export { SVG } from './svg/index.cjs';
2
- export { parseSVG } from './svg/parse.cjs';
3
- export { parseSVGStyle } from './svg/parse-style.cjs';
4
- export { analyseSVGStructure } from './svg/analyse.cjs';
5
- export { cleanupSVG } from './svg/cleanup.cjs';
6
- export { removeBadAttributes } from './svg/cleanup/attribs.cjs';
7
- export { checkBadTags } from './svg/cleanup/bad-tags.cjs';
8
- export { cleanupRootStyle } from './svg/cleanup/root-style.cjs';
9
- export { cleanupInlineStyle } from './svg/cleanup/inline-style.cjs';
10
- export { cleanupSVGRoot } from './svg/cleanup/root-svg.cjs';
11
- export { convertStyleToAttrs } from './svg/cleanup/svgo-style.cjs';
12
- export { IconSet, blankIconSet } from './icon-set/index.cjs';
13
- export { mergeIconSets } from './icon-set/merge.cjs';
14
- export { addTagsToIconSet } from './icon-set/tags.cjs';
15
- export { importFromFigma } from './import/figma/index.cjs';
16
- export { importDirectory, importDirectorySync } from './import/directory.cjs';
17
- export { downloadGitRepo } from './download/git/index.cjs';
18
- export { getGitRepoHash } from './download/git/hash.cjs';
19
- export { getGitRepoBranch } from './download/git/branch.cjs';
20
- export { resetGitRepoContents } from './download/git/reset.cjs';
21
- export { downloadGitHubRepo } from './download/github/index.cjs';
22
- export { getGitHubRepoHash } from './download/github/hash.cjs';
23
- export { downloadGitLabRepo } from './download/gitlab/index.cjs';
24
- export { getGitLabRepoHash } from './download/gitlab/hash.cjs';
25
- export { downloadNPMPackage } from './download/npm/index.cjs';
26
- export { getNPMVersion, getPackageVersion } from './download/npm/version.cjs';
27
- export { downloadPackage } from './download/index.cjs';
28
- export { downloadFile } from './download/api/download.cjs';
29
- export { isEmptyColor, parseColors } from './colors/parse.cjs';
30
- export { validateColors } from './colors/validate.cjs';
31
- export { detectIconSetPalette } from './colors/detect.cjs';
32
- export { runSVGO } from './optimise/svgo.cjs';
33
- export { removeFigmaClipPathFromSVG } from './optimise/figma.cjs';
34
- export { deOptimisePaths } from './optimise/flags.cjs';
35
- export { resetSVGOrigin } from './optimise/origin.cjs';
36
- export { convertSVGToMask } from './optimise/mask.cjs';
37
- export { scaleSVG } from './optimise/scale.cjs';
38
- export { cleanupGlobalStyle } from './optimise/global-style.cjs';
39
- export { exportToDirectory } from './export/directory.cjs';
40
- export { exportJSONPackage } from './export/json-package.cjs';
41
- export { exportIconPackage } from './export/icon-package.cjs';
42
- export { writeJSONFile } from './misc/write-json.cjs';
43
- export { prepareDirectoryForExport } from './export/helpers/prepare.cjs';
44
- export { scanDirectory, scanDirectorySync } from './misc/scan.cjs';
45
- export { compareDirectories } from './misc/compare-dirs.cjs';
46
- export { unzip } from './download/helpers/unzip.cjs';
47
- export { untar } from './download/helpers/untar.cjs';
48
- export { execAsync } from './misc/exec.cjs';
49
- export { cleanupIconKeyword } from './misc/keyword.cjs';
50
- export { bumpVersion } from './misc/bump-version.cjs';
51
- export { axiosConfig, fetchCallbacks } from './download/api/config.cjs';
52
- export { setFetch } from './download/api/fetch.cjs';
53
- export { sendAPIQuery } from './download/api/index.cjs';
54
- export { defaultQueueParams, runConcurrentQueries } from './download/api/queue.cjs';
55
- import 'cheerio';
56
- import '@iconify/types';
57
- import '@iconify/utils/lib/customisations/defaults';
58
- import './misc/cheerio.cjs';
59
- import 'domhandler';
60
- import './css/parser/types.cjs';
61
- import './svg/analyse/types.cjs';
62
- import './icon-set/types.cjs';
63
- import '@iconify/utils/lib/icon-set/tree';
64
- import './download/types/modified.cjs';
65
- import './import/figma/types/options.cjs';
66
- import './import/figma/types/nodes.cjs';
67
- import './import/figma/types/api.cjs';
68
- import './import/figma/types/result.cjs';
69
- import './download/types/sources.cjs';
70
- import './download/github/types.cjs';
71
- import './download/gitlab/types.cjs';
72
- import './download/npm/types.cjs';
73
- import './download/api/types.cjs';
74
- import '@iconify/utils/lib/colors/types';
75
- import './colors/attribs.cjs';
76
- import 'svgo';
77
- import './export/helpers/custom-files.cjs';
78
- import 'fs';
79
- import 'child_process';
80
- import 'node:http';
package/lib/index.d.mts DELETED
@@ -1,80 +0,0 @@
1
- export { SVG } from './svg/index.mjs';
2
- export { parseSVG } from './svg/parse.mjs';
3
- export { parseSVGStyle } from './svg/parse-style.mjs';
4
- export { analyseSVGStructure } from './svg/analyse.mjs';
5
- export { cleanupSVG } from './svg/cleanup.mjs';
6
- export { removeBadAttributes } from './svg/cleanup/attribs.mjs';
7
- export { checkBadTags } from './svg/cleanup/bad-tags.mjs';
8
- export { cleanupRootStyle } from './svg/cleanup/root-style.mjs';
9
- export { cleanupInlineStyle } from './svg/cleanup/inline-style.mjs';
10
- export { cleanupSVGRoot } from './svg/cleanup/root-svg.mjs';
11
- export { convertStyleToAttrs } from './svg/cleanup/svgo-style.mjs';
12
- export { IconSet, blankIconSet } from './icon-set/index.mjs';
13
- export { mergeIconSets } from './icon-set/merge.mjs';
14
- export { addTagsToIconSet } from './icon-set/tags.mjs';
15
- export { importFromFigma } from './import/figma/index.mjs';
16
- export { importDirectory, importDirectorySync } from './import/directory.mjs';
17
- export { downloadGitRepo } from './download/git/index.mjs';
18
- export { getGitRepoHash } from './download/git/hash.mjs';
19
- export { getGitRepoBranch } from './download/git/branch.mjs';
20
- export { resetGitRepoContents } from './download/git/reset.mjs';
21
- export { downloadGitHubRepo } from './download/github/index.mjs';
22
- export { getGitHubRepoHash } from './download/github/hash.mjs';
23
- export { downloadGitLabRepo } from './download/gitlab/index.mjs';
24
- export { getGitLabRepoHash } from './download/gitlab/hash.mjs';
25
- export { downloadNPMPackage } from './download/npm/index.mjs';
26
- export { getNPMVersion, getPackageVersion } from './download/npm/version.mjs';
27
- export { downloadPackage } from './download/index.mjs';
28
- export { downloadFile } from './download/api/download.mjs';
29
- export { isEmptyColor, parseColors } from './colors/parse.mjs';
30
- export { validateColors } from './colors/validate.mjs';
31
- export { detectIconSetPalette } from './colors/detect.mjs';
32
- export { runSVGO } from './optimise/svgo.mjs';
33
- export { removeFigmaClipPathFromSVG } from './optimise/figma.mjs';
34
- export { deOptimisePaths } from './optimise/flags.mjs';
35
- export { resetSVGOrigin } from './optimise/origin.mjs';
36
- export { convertSVGToMask } from './optimise/mask.mjs';
37
- export { scaleSVG } from './optimise/scale.mjs';
38
- export { cleanupGlobalStyle } from './optimise/global-style.mjs';
39
- export { exportToDirectory } from './export/directory.mjs';
40
- export { exportJSONPackage } from './export/json-package.mjs';
41
- export { exportIconPackage } from './export/icon-package.mjs';
42
- export { writeJSONFile } from './misc/write-json.mjs';
43
- export { prepareDirectoryForExport } from './export/helpers/prepare.mjs';
44
- export { scanDirectory, scanDirectorySync } from './misc/scan.mjs';
45
- export { compareDirectories } from './misc/compare-dirs.mjs';
46
- export { unzip } from './download/helpers/unzip.mjs';
47
- export { untar } from './download/helpers/untar.mjs';
48
- export { execAsync } from './misc/exec.mjs';
49
- export { cleanupIconKeyword } from './misc/keyword.mjs';
50
- export { bumpVersion } from './misc/bump-version.mjs';
51
- export { axiosConfig, fetchCallbacks } from './download/api/config.mjs';
52
- export { setFetch } from './download/api/fetch.mjs';
53
- export { sendAPIQuery } from './download/api/index.mjs';
54
- export { defaultQueueParams, runConcurrentQueries } from './download/api/queue.mjs';
55
- import 'cheerio';
56
- import '@iconify/types';
57
- import '@iconify/utils/lib/customisations/defaults';
58
- import './misc/cheerio.mjs';
59
- import 'domhandler';
60
- import './css/parser/types.mjs';
61
- import './svg/analyse/types.mjs';
62
- import './icon-set/types.mjs';
63
- import '@iconify/utils/lib/icon-set/tree';
64
- import './download/types/modified.mjs';
65
- import './import/figma/types/options.mjs';
66
- import './import/figma/types/nodes.mjs';
67
- import './import/figma/types/api.mjs';
68
- import './import/figma/types/result.mjs';
69
- import './download/types/sources.mjs';
70
- import './download/github/types.mjs';
71
- import './download/gitlab/types.mjs';
72
- import './download/npm/types.mjs';
73
- import './download/api/types.mjs';
74
- import '@iconify/utils/lib/colors/types';
75
- import './colors/attribs.mjs';
76
- import 'svgo';
77
- import './export/helpers/custom-files.mjs';
78
- import 'fs';
79
- import 'child_process';
80
- import 'node:http';