@jesscss/fns 1.0.8-alpha.8 → 2.0.0-alpha.2

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 (625) hide show
  1. package/README.md +15 -5
  2. package/lib/__tests__/color-adjustments.test.d.ts +1 -0
  3. package/lib/__tests__/color-adjustments.test.js +137 -0
  4. package/lib/__tests__/color-adjustments.test.js.map +1 -0
  5. package/lib/__tests__/color-components.test.d.ts +1 -0
  6. package/lib/__tests__/color-components.test.js +76 -0
  7. package/lib/__tests__/color-components.test.js.map +1 -0
  8. package/lib/__tests__/color.test.d.ts +1 -0
  9. package/lib/__tests__/color.test.js +41 -0
  10. package/lib/__tests__/color.test.js.map +1 -0
  11. package/lib/__tests__/floor.test.d.ts +1 -0
  12. package/lib/__tests__/floor.test.js +38 -0
  13. package/lib/__tests__/floor.test.js.map +1 -0
  14. package/lib/__tests__/iif.d.ts +1 -0
  15. package/lib/__tests__/iif.js +38 -0
  16. package/lib/__tests__/iif.test.d.ts +1 -0
  17. package/lib/__tests__/iif.test.js +34 -0
  18. package/lib/__tests__/iif.test.js.map +1 -0
  19. package/lib/__tests__/math.d.ts +1 -0
  20. package/lib/__tests__/math.js +45 -0
  21. package/lib/__tests__/math.test.d.ts +1 -0
  22. package/lib/__tests__/math.test.js +46 -0
  23. package/lib/__tests__/math.test.js.map +1 -0
  24. package/lib/conversions.d.ts +46 -0
  25. package/lib/conversions.js +142 -0
  26. package/lib/conversions.js.map +1 -0
  27. package/lib/index.d.ts +1 -5
  28. package/lib/index.js +3 -17
  29. package/lib/index.js.map +1 -0
  30. package/lib/less/__tests__/advanced-blend-modes.test.d.ts +1 -0
  31. package/lib/less/__tests__/advanced-blend-modes.test.js +29 -0
  32. package/lib/less/__tests__/advanced-blend-modes.test.js.map +1 -0
  33. package/lib/less/__tests__/alpha-adjustments.test.d.ts +1 -0
  34. package/lib/less/__tests__/alpha-adjustments.test.js +36 -0
  35. package/lib/less/__tests__/alpha-adjustments.test.js.map +1 -0
  36. package/lib/less/__tests__/argb.test.d.ts +1 -0
  37. package/lib/less/__tests__/argb.test.js +15 -0
  38. package/lib/less/__tests__/argb.test.js.map +1 -0
  39. package/lib/less/__tests__/blend-modes.test.d.ts +1 -0
  40. package/lib/less/__tests__/blend-modes.test.js +27 -0
  41. package/lib/less/__tests__/blend-modes.test.js.map +1 -0
  42. package/lib/less/__tests__/contrast.test.d.ts +1 -0
  43. package/lib/less/__tests__/contrast.test.js +29 -0
  44. package/lib/less/__tests__/contrast.test.js.map +1 -0
  45. package/lib/less/__tests__/convert.test.d.ts +1 -0
  46. package/lib/less/__tests__/convert.test.js +25 -0
  47. package/lib/less/__tests__/convert.test.js.map +1 -0
  48. package/lib/less/__tests__/e.test.d.ts +1 -0
  49. package/lib/less/__tests__/e.test.js +12 -0
  50. package/lib/less/__tests__/e.test.js.map +1 -0
  51. package/lib/less/__tests__/extract.test.d.ts +1 -0
  52. package/lib/less/__tests__/extract.test.js +32 -0
  53. package/lib/less/__tests__/extract.test.js.map +1 -0
  54. package/lib/less/__tests__/format.test.d.ts +1 -0
  55. package/lib/less/__tests__/format.test.js +20 -0
  56. package/lib/less/__tests__/format.test.js.map +1 -0
  57. package/lib/less/__tests__/get-unit.test.d.ts +1 -0
  58. package/lib/less/__tests__/get-unit.test.js +15 -0
  59. package/lib/less/__tests__/get-unit.test.js.map +1 -0
  60. package/lib/less/__tests__/hsl-branches.test.d.ts +1 -0
  61. package/lib/less/__tests__/hsl-branches.test.js +27 -0
  62. package/lib/less/__tests__/hsl-branches.test.js.map +1 -0
  63. package/lib/less/__tests__/hsl-relative-errors.test.d.ts +1 -0
  64. package/lib/less/__tests__/hsl-relative-errors.test.js +97 -0
  65. package/lib/less/__tests__/hsl-relative-errors.test.js.map +1 -0
  66. package/lib/less/__tests__/hsla-fallback.test.d.ts +1 -0
  67. package/lib/less/__tests__/hsla-fallback.test.js +29 -0
  68. package/lib/less/__tests__/hsla-fallback.test.js.map +1 -0
  69. package/lib/less/__tests__/hsv-family.test.d.ts +1 -0
  70. package/lib/less/__tests__/hsv-family.test.js +43 -0
  71. package/lib/less/__tests__/hsv-family.test.js.map +1 -0
  72. package/lib/less/__tests__/isdefined.test.d.ts +1 -0
  73. package/lib/less/__tests__/isdefined.test.js +18 -0
  74. package/lib/less/__tests__/isdefined.test.js.map +1 -0
  75. package/lib/less/__tests__/isruleset.test.d.ts +1 -0
  76. package/lib/less/__tests__/isruleset.test.js +22 -0
  77. package/lib/less/__tests__/isruleset.test.js.map +1 -0
  78. package/lib/less/__tests__/length.test.d.ts +1 -0
  79. package/lib/less/__tests__/length.test.js +16 -0
  80. package/lib/less/__tests__/length.test.js.map +1 -0
  81. package/lib/less/__tests__/luma-luminance-hsv-channels.test.d.ts +1 -0
  82. package/lib/less/__tests__/luma-luminance-hsv-channels.test.js +35 -0
  83. package/lib/less/__tests__/luma-luminance-hsv-channels.test.js.map +1 -0
  84. package/lib/less/__tests__/max.test.d.ts +1 -0
  85. package/lib/less/__tests__/max.test.js +35 -0
  86. package/lib/less/__tests__/max.test.js.map +1 -0
  87. package/lib/less/__tests__/min.test.d.ts +1 -0
  88. package/lib/less/__tests__/min.test.js +37 -0
  89. package/lib/less/__tests__/min.test.js.map +1 -0
  90. package/lib/less/__tests__/mix.test.d.ts +1 -0
  91. package/lib/less/__tests__/mix.test.js +25 -0
  92. package/lib/less/__tests__/mix.test.js.map +1 -0
  93. package/lib/less/__tests__/mod.test.d.ts +1 -0
  94. package/lib/less/__tests__/mod.test.js +11 -0
  95. package/lib/less/__tests__/mod.test.js.map +1 -0
  96. package/lib/less/__tests__/percentage.test.d.ts +1 -0
  97. package/lib/less/__tests__/percentage.test.js +12 -0
  98. package/lib/less/__tests__/percentage.test.js.map +1 -0
  99. package/lib/less/__tests__/pow.test.d.ts +1 -0
  100. package/lib/less/__tests__/pow.test.js +11 -0
  101. package/lib/less/__tests__/pow.test.js.map +1 -0
  102. package/lib/less/__tests__/reexports-smoke.test.d.ts +1 -0
  103. package/lib/less/__tests__/reexports-smoke.test.js +26 -0
  104. package/lib/less/__tests__/reexports-smoke.test.js.map +1 -0
  105. package/lib/less/__tests__/replace.test.d.ts +1 -0
  106. package/lib/less/__tests__/replace.test.js +22 -0
  107. package/lib/less/__tests__/replace.test.js.map +1 -0
  108. package/lib/less/__tests__/rgb-relative-errors.test.d.ts +1 -0
  109. package/lib/less/__tests__/rgb-relative-errors.test.js +98 -0
  110. package/lib/less/__tests__/rgb-relative-errors.test.js.map +1 -0
  111. package/lib/less/__tests__/rgb-rgba-branches.test.d.ts +1 -0
  112. package/lib/less/__tests__/rgb-rgba-branches.test.js +49 -0
  113. package/lib/less/__tests__/rgb-rgba-branches.test.js.map +1 -0
  114. package/lib/less/__tests__/rgba-fallback.test.d.ts +1 -0
  115. package/lib/less/__tests__/rgba-fallback.test.js +29 -0
  116. package/lib/less/__tests__/rgba-fallback.test.js.map +1 -0
  117. package/lib/less/__tests__/shade.test.d.ts +1 -0
  118. package/lib/less/__tests__/shade.test.js +19 -0
  119. package/lib/less/__tests__/shade.test.js.map +1 -0
  120. package/lib/less/__tests__/spin.test.d.ts +1 -0
  121. package/lib/less/__tests__/spin.test.js +26 -0
  122. package/lib/less/__tests__/spin.test.js.map +1 -0
  123. package/lib/less/__tests__/tint.test.d.ts +1 -0
  124. package/lib/less/__tests__/tint.test.js +19 -0
  125. package/lib/less/__tests__/tint.test.js.map +1 -0
  126. package/lib/less/__tests__/types.test.d.ts +1 -0
  127. package/lib/less/__tests__/types.test.js +28 -0
  128. package/lib/less/__tests__/types.test.js.map +1 -0
  129. package/lib/less/__tests__/unit.test.d.ts +1 -0
  130. package/lib/less/__tests__/unit.test.js +17 -0
  131. package/lib/less/__tests__/unit.test.js.map +1 -0
  132. package/lib/less/abs.d.ts +7 -0
  133. package/lib/less/abs.js +8 -0
  134. package/lib/less/abs.js.map +1 -0
  135. package/lib/less/acos.d.ts +440 -0
  136. package/lib/less/acos.js +3 -0
  137. package/lib/less/acos.js.map +1 -0
  138. package/lib/less/alpha.d.ts +7 -0
  139. package/lib/less/alpha.js +8 -0
  140. package/lib/less/alpha.js.map +1 -0
  141. package/lib/less/argb.d.ts +441 -0
  142. package/lib/less/argb.js +17 -0
  143. package/lib/less/argb.js.map +1 -0
  144. package/lib/less/asin.d.ts +440 -0
  145. package/lib/less/asin.js +3 -0
  146. package/lib/less/asin.js.map +1 -0
  147. package/lib/less/atan.d.ts +440 -0
  148. package/lib/less/atan.js +3 -0
  149. package/lib/less/atan.js.map +1 -0
  150. package/lib/less/average.d.ts +601 -0
  151. package/lib/less/average.js +17 -0
  152. package/lib/less/average.js.map +1 -0
  153. package/lib/less/blue.d.ts +7 -0
  154. package/lib/less/blue.js +8 -0
  155. package/lib/less/blue.js.map +1 -0
  156. package/lib/less/ceil.d.ts +7 -0
  157. package/lib/less/ceil.js +8 -0
  158. package/lib/less/ceil.js.map +1 -0
  159. package/lib/less/color.d.ts +441 -0
  160. package/lib/less/color.js +33 -0
  161. package/lib/less/color.js.map +1 -0
  162. package/lib/less/contrast.d.ts +1427 -0
  163. package/lib/less/contrast.js +57 -0
  164. package/lib/less/contrast.js.map +1 -0
  165. package/lib/less/convert.d.ts +600 -0
  166. package/lib/less/convert.js +45 -0
  167. package/lib/less/convert.js.map +1 -0
  168. package/lib/less/cos.d.ts +440 -0
  169. package/lib/less/cos.js +3 -0
  170. package/lib/less/cos.js.map +1 -0
  171. package/lib/less/darken.d.ts +980 -0
  172. package/lib/less/darken.js +29 -0
  173. package/lib/less/darken.js.map +1 -0
  174. package/lib/less/desaturate.d.ts +980 -0
  175. package/lib/less/desaturate.js +29 -0
  176. package/lib/less/desaturate.js.map +1 -0
  177. package/lib/less/difference.d.ts +601 -0
  178. package/lib/less/difference.js +18 -0
  179. package/lib/less/difference.js.map +1 -0
  180. package/lib/less/e.d.ts +444 -0
  181. package/lib/less/e.js +17 -0
  182. package/lib/less/e.js.map +1 -0
  183. package/lib/less/each.d.ts +615 -0
  184. package/lib/less/each.js +64 -0
  185. package/lib/less/each.js.map +1 -0
  186. package/lib/less/exclusion.d.ts +601 -0
  187. package/lib/less/exclusion.js +18 -0
  188. package/lib/less/exclusion.js.map +1 -0
  189. package/lib/less/extract.d.ts +625 -0
  190. package/lib/less/extract.js +43 -0
  191. package/lib/less/extract.js.map +1 -0
  192. package/lib/less/fade.d.ts +600 -0
  193. package/lib/less/fade.js +28 -0
  194. package/lib/less/fade.js.map +1 -0
  195. package/lib/less/fadein.d.ts +980 -0
  196. package/lib/less/fadein.js +37 -0
  197. package/lib/less/fadein.js.map +1 -0
  198. package/lib/less/fadeout.d.ts +980 -0
  199. package/lib/less/fadeout.js +36 -0
  200. package/lib/less/fadeout.js.map +1 -0
  201. package/lib/less/floor.d.ts +7 -0
  202. package/lib/less/floor.js +8 -0
  203. package/lib/less/floor.js.map +1 -0
  204. package/lib/less/format.d.ts +1821 -0
  205. package/lib/less/format.js +44 -0
  206. package/lib/less/format.js.map +1 -0
  207. package/lib/less/get-unit.d.ts +441 -0
  208. package/lib/less/get-unit.js +11 -0
  209. package/lib/less/get-unit.js.map +1 -0
  210. package/lib/less/green.d.ts +7 -0
  211. package/lib/less/green.js +8 -0
  212. package/lib/less/green.js.map +1 -0
  213. package/lib/less/greyscale.d.ts +441 -0
  214. package/lib/less/greyscale.js +18 -0
  215. package/lib/less/greyscale.js.map +1 -0
  216. package/lib/less/hardlight.d.ts +601 -0
  217. package/lib/less/hardlight.js +19 -0
  218. package/lib/less/hardlight.js.map +1 -0
  219. package/lib/less/hsl.d.ts +1063 -0
  220. package/lib/less/hsl.js +257 -0
  221. package/lib/less/hsl.js.map +1 -0
  222. package/lib/less/hsla.d.ts +354 -0
  223. package/lib/less/hsla.js +31 -0
  224. package/lib/less/hsla.js.map +1 -0
  225. package/lib/less/hsv.d.ts +723 -0
  226. package/lib/less/hsv.js +20 -0
  227. package/lib/less/hsv.js.map +1 -0
  228. package/lib/less/hsva.d.ts +991 -0
  229. package/lib/less/hsva.js +53 -0
  230. package/lib/less/hsva.js.map +1 -0
  231. package/lib/less/hsvhue.d.ts +441 -0
  232. package/lib/less/hsvhue.js +11 -0
  233. package/lib/less/hsvhue.js.map +1 -0
  234. package/lib/less/hsvsaturation.d.ts +441 -0
  235. package/lib/less/hsvsaturation.js +12 -0
  236. package/lib/less/hsvsaturation.js.map +1 -0
  237. package/lib/less/hsvvalue.d.ts +441 -0
  238. package/lib/less/hsvvalue.js +11 -0
  239. package/lib/less/hsvvalue.js.map +1 -0
  240. package/lib/less/hue.d.ts +441 -0
  241. package/lib/less/hue.js +11 -0
  242. package/lib/less/hue.js.map +1 -0
  243. package/lib/less/iif.d.ts +1033 -0
  244. package/lib/less/iif.js +30 -0
  245. package/lib/less/iif.js.map +1 -0
  246. package/lib/less/index.d.ts +75 -0
  247. package/lib/less/index.js +76 -0
  248. package/lib/less/index.js.map +1 -0
  249. package/lib/less/isdefined.d.ts +466 -0
  250. package/lib/less/isdefined.js +21 -0
  251. package/lib/less/isdefined.js.map +1 -0
  252. package/lib/less/isruleset.d.ts +466 -0
  253. package/lib/less/isruleset.js +24 -0
  254. package/lib/less/isruleset.js.map +1 -0
  255. package/lib/less/length.d.ts +441 -0
  256. package/lib/less/length.js +21 -0
  257. package/lib/less/length.js.map +1 -0
  258. package/lib/less/lighten.d.ts +980 -0
  259. package/lib/less/lighten.js +29 -0
  260. package/lib/less/lighten.js.map +1 -0
  261. package/lib/less/lightness.d.ts +441 -0
  262. package/lib/less/lightness.js +11 -0
  263. package/lib/less/lightness.js.map +1 -0
  264. package/lib/less/luma.d.ts +441 -0
  265. package/lib/less/luma.js +14 -0
  266. package/lib/less/luma.js.map +1 -0
  267. package/lib/less/luminance.d.ts +441 -0
  268. package/lib/less/luminance.js +16 -0
  269. package/lib/less/luminance.js.map +1 -0
  270. package/lib/less/math-factory.d.ts +774 -0
  271. package/lib/less/math-factory.js +18 -0
  272. package/lib/less/math-factory.js.map +1 -0
  273. package/lib/less/mathv1.d.ts +0 -0
  274. package/lib/less/mathv1.js +209 -0
  275. package/lib/less/mathv1.js.map +1 -0
  276. package/lib/less/max.d.ts +466 -0
  277. package/lib/less/max.js +85 -0
  278. package/lib/less/max.js.map +1 -0
  279. package/lib/less/min.d.ts +466 -0
  280. package/lib/less/min.js +85 -0
  281. package/lib/less/min.js.map +1 -0
  282. package/lib/less/mix.d.ts +980 -0
  283. package/lib/less/mix.js +39 -0
  284. package/lib/less/mix.js.map +1 -0
  285. package/lib/less/mod.d.ts +600 -0
  286. package/lib/less/mod.js +16 -0
  287. package/lib/less/mod.js.map +1 -0
  288. package/lib/less/multiply.d.ts +601 -0
  289. package/lib/less/multiply.js +18 -0
  290. package/lib/less/multiply.js.map +1 -0
  291. package/lib/less/negation.d.ts +601 -0
  292. package/lib/less/negation.js +18 -0
  293. package/lib/less/negation.js.map +1 -0
  294. package/lib/less/overlay.d.ts +601 -0
  295. package/lib/less/overlay.js +23 -0
  296. package/lib/less/overlay.js.map +1 -0
  297. package/lib/less/percentage.d.ts +441 -0
  298. package/lib/less/percentage.js +11 -0
  299. package/lib/less/percentage.js.map +1 -0
  300. package/lib/less/pi.d.ts +332 -0
  301. package/lib/less/pi.js +3 -0
  302. package/lib/less/pi.js.map +1 -0
  303. package/lib/less/pow.d.ts +600 -0
  304. package/lib/less/pow.js +16 -0
  305. package/lib/less/pow.js.map +1 -0
  306. package/lib/less/range.d.ts +1038 -0
  307. package/lib/less/range.js +40 -0
  308. package/lib/less/range.js.map +1 -0
  309. package/lib/less/red.d.ts +7 -0
  310. package/lib/less/red.js +8 -0
  311. package/lib/less/red.js.map +1 -0
  312. package/lib/less/replace.d.ts +1264 -0
  313. package/lib/less/replace.js +32 -0
  314. package/lib/less/replace.js.map +1 -0
  315. package/lib/less/rgb.d.ts +1063 -0
  316. package/lib/less/rgb.js +266 -0
  317. package/lib/less/rgb.js.map +1 -0
  318. package/lib/less/rgba.d.ts +354 -0
  319. package/lib/less/rgba.js +31 -0
  320. package/lib/less/rgba.js.map +1 -0
  321. package/lib/less/round.d.ts +7 -0
  322. package/lib/less/round.js +8 -0
  323. package/lib/less/round.js.map +1 -0
  324. package/lib/less/saturate.d.ts +980 -0
  325. package/lib/less/saturate.js +29 -0
  326. package/lib/less/saturate.js.map +1 -0
  327. package/lib/less/saturation.d.ts +441 -0
  328. package/lib/less/saturation.js +12 -0
  329. package/lib/less/saturation.js.map +1 -0
  330. package/lib/less/screen.d.ts +601 -0
  331. package/lib/less/screen.js +18 -0
  332. package/lib/less/screen.js.map +1 -0
  333. package/lib/less/shade.d.ts +600 -0
  334. package/lib/less/shade.js +26 -0
  335. package/lib/less/shade.js.map +1 -0
  336. package/lib/less/sin.d.ts +440 -0
  337. package/lib/less/sin.js +3 -0
  338. package/lib/less/sin.js.map +1 -0
  339. package/lib/less/softlight.d.ts +601 -0
  340. package/lib/less/softlight.js +25 -0
  341. package/lib/less/softlight.js.map +1 -0
  342. package/lib/less/spin.d.ts +600 -0
  343. package/lib/less/spin.js +22 -0
  344. package/lib/less/spin.js.map +1 -0
  345. package/lib/less/sqrt.d.ts +440 -0
  346. package/lib/less/sqrt.js +3 -0
  347. package/lib/less/sqrt.js.map +1 -0
  348. package/lib/less/tan.d.ts +440 -0
  349. package/lib/less/tan.js +3 -0
  350. package/lib/less/tan.js.map +1 -0
  351. package/lib/less/tint.d.ts +600 -0
  352. package/lib/less/tint.js +26 -0
  353. package/lib/less/tint.js.map +1 -0
  354. package/lib/less/types.d.ts +4112 -0
  355. package/lib/less/types.js +53 -0
  356. package/lib/less/types.js.map +1 -0
  357. package/lib/less/unit.d.ts +753 -0
  358. package/lib/less/unit.js +20 -0
  359. package/lib/less/unit.js.map +1 -0
  360. package/lib/sass/__tests__/hsl-channels.test.d.ts +1 -0
  361. package/lib/sass/__tests__/hsl-channels.test.js +85 -0
  362. package/lib/sass/__tests__/hsl-channels.test.js.map +1 -0
  363. package/lib/sass/__tests__/list-advanced.test.d.ts +1 -0
  364. package/lib/sass/__tests__/list-advanced.test.js +157 -0
  365. package/lib/sass/__tests__/list-advanced.test.js.map +1 -0
  366. package/lib/sass/__tests__/list-functions.test.d.ts +1 -0
  367. package/lib/sass/__tests__/list-functions.test.js +153 -0
  368. package/lib/sass/__tests__/list-functions.test.js.map +1 -0
  369. package/lib/sass/__tests__/map-functions.test.d.ts +1 -0
  370. package/lib/sass/__tests__/map-functions.test.js +208 -0
  371. package/lib/sass/__tests__/map-functions.test.js.map +1 -0
  372. package/lib/sass/__tests__/math-functions.test.d.ts +1 -0
  373. package/lib/sass/__tests__/math-functions.test.js +73 -0
  374. package/lib/sass/__tests__/math-functions.test.js.map +1 -0
  375. package/lib/sass/__tests__/math-remaining.test.d.ts +1 -0
  376. package/lib/sass/__tests__/math-remaining.test.js +113 -0
  377. package/lib/sass/__tests__/math-remaining.test.js.map +1 -0
  378. package/lib/sass/__tests__/opacity.test.d.ts +1 -0
  379. package/lib/sass/__tests__/opacity.test.js +53 -0
  380. package/lib/sass/__tests__/opacity.test.js.map +1 -0
  381. package/lib/sass/__tests__/string-functions.test.d.ts +1 -0
  382. package/lib/sass/__tests__/string-functions.test.js +109 -0
  383. package/lib/sass/__tests__/string-functions.test.js.map +1 -0
  384. package/lib/sass/__tests__/string-remaining.test.d.ts +1 -0
  385. package/lib/sass/__tests__/string-remaining.test.js +131 -0
  386. package/lib/sass/__tests__/string-remaining.test.js.map +1 -0
  387. package/lib/sass/adjust-hue.d.ts +10 -0
  388. package/lib/sass/adjust-hue.js +11 -0
  389. package/lib/sass/adjust-hue.js.map +1 -0
  390. package/lib/sass/color/index.d.ts +22 -0
  391. package/lib/sass/color/index.js +43 -0
  392. package/lib/sass/color/index.js.map +1 -0
  393. package/lib/sass/color/red.d.ts +7 -0
  394. package/lib/sass/color/red.js +8 -0
  395. package/lib/sass/color/red.js.map +1 -0
  396. package/lib/sass/compatible.d.ts +610 -0
  397. package/lib/sass/compatible.js +62 -0
  398. package/lib/sass/compatible.js.map +1 -0
  399. package/lib/sass/complement.d.ts +450 -0
  400. package/lib/sass/complement.js +28 -0
  401. package/lib/sass/complement.js.map +1 -0
  402. package/lib/sass/fade-in.d.ts +10 -0
  403. package/lib/sass/fade-in.js +11 -0
  404. package/lib/sass/fade-in.js.map +1 -0
  405. package/lib/sass/fade-out.d.ts +10 -0
  406. package/lib/sass/fade-out.js +11 -0
  407. package/lib/sass/fade-out.js.map +1 -0
  408. package/lib/sass/grayscale.d.ts +10 -0
  409. package/lib/sass/grayscale.js +11 -0
  410. package/lib/sass/grayscale.js.map +1 -0
  411. package/lib/sass/hue.d.ts +450 -0
  412. package/lib/sass/hue.js +24 -0
  413. package/lib/sass/hue.js.map +1 -0
  414. package/lib/sass/ie-hex-str.d.ts +10 -0
  415. package/lib/sass/ie-hex-str.js +11 -0
  416. package/lib/sass/ie-hex-str.js.map +1 -0
  417. package/lib/sass/index.d.ts +64 -0
  418. package/lib/sass/index.js +90 -0
  419. package/lib/sass/index.js.map +1 -0
  420. package/lib/sass/invert.d.ts +813 -0
  421. package/lib/sass/invert.js +36 -0
  422. package/lib/sass/invert.js.map +1 -0
  423. package/lib/sass/lightness.d.ts +450 -0
  424. package/lib/sass/lightness.js +24 -0
  425. package/lib/sass/lightness.js.map +1 -0
  426. package/lib/sass/list/append.d.ts +989 -0
  427. package/lib/sass/list/append.js +54 -0
  428. package/lib/sass/list/append.js.map +1 -0
  429. package/lib/sass/list/index.d.ts +21 -0
  430. package/lib/sass/list/index.js +24 -0
  431. package/lib/sass/list/index.js.map +1 -0
  432. package/lib/sass/list/is-bracketed.d.ts +450 -0
  433. package/lib/sass/list/is-bracketed.js +30 -0
  434. package/lib/sass/list/is-bracketed.js.map +1 -0
  435. package/lib/sass/list/join.d.ts +1354 -0
  436. package/lib/sass/list/join.js +66 -0
  437. package/lib/sass/list/join.js.map +1 -0
  438. package/lib/sass/list/length.d.ts +450 -0
  439. package/lib/sass/list/length.js +22 -0
  440. package/lib/sass/list/length.js.map +1 -0
  441. package/lib/sass/list/list-index.d.ts +609 -0
  442. package/lib/sass/list/list-index.js +49 -0
  443. package/lib/sass/list/list-index.js.map +1 -0
  444. package/lib/sass/list/nth.d.ts +634 -0
  445. package/lib/sass/list/nth.js +36 -0
  446. package/lib/sass/list/nth.js.map +1 -0
  447. package/lib/sass/list/separator.d.ts +451 -0
  448. package/lib/sass/list/separator.js +36 -0
  449. package/lib/sass/list/separator.js.map +1 -0
  450. package/lib/sass/list/set-nth.d.ts +756 -0
  451. package/lib/sass/list/set-nth.js +42 -0
  452. package/lib/sass/list/set-nth.js.map +1 -0
  453. package/lib/sass/list/zip.d.ts +474 -0
  454. package/lib/sass/list/zip.js +46 -0
  455. package/lib/sass/list/zip.js.map +1 -0
  456. package/lib/sass/map/get.d.ts +757 -0
  457. package/lib/sass/map/get.js +79 -0
  458. package/lib/sass/map/get.js.map +1 -0
  459. package/lib/sass/map/has-key.d.ts +757 -0
  460. package/lib/sass/map/has-key.js +76 -0
  461. package/lib/sass/map/has-key.js.map +1 -0
  462. package/lib/sass/map/index.d.ts +19 -0
  463. package/lib/sass/map/index.js +23 -0
  464. package/lib/sass/map/index.js.map +1 -0
  465. package/lib/sass/map/keys.d.ts +449 -0
  466. package/lib/sass/map/keys.js +39 -0
  467. package/lib/sass/map/keys.js.map +1 -0
  468. package/lib/sass/map/merge.d.ts +608 -0
  469. package/lib/sass/map/merge.js +54 -0
  470. package/lib/sass/map/merge.js.map +1 -0
  471. package/lib/sass/map/remove.d.ts +633 -0
  472. package/lib/sass/map/remove.js +41 -0
  473. package/lib/sass/map/remove.js.map +1 -0
  474. package/lib/sass/map/set.d.ts +731 -0
  475. package/lib/sass/map/set.js +72 -0
  476. package/lib/sass/map/set.js.map +1 -0
  477. package/lib/sass/map/values.d.ts +449 -0
  478. package/lib/sass/map/values.js +30 -0
  479. package/lib/sass/map/values.js.map +1 -0
  480. package/lib/sass/math/abs.d.ts +7 -0
  481. package/lib/sass/math/abs.js +8 -0
  482. package/lib/sass/math/abs.js.map +1 -0
  483. package/lib/sass/math/index.d.ts +18 -0
  484. package/lib/sass/math/index.js +43 -0
  485. package/lib/sass/math/index.js.map +1 -0
  486. package/lib/sass/opacify.d.ts +11 -0
  487. package/lib/sass/opacify.js +12 -0
  488. package/lib/sass/opacify.js.map +1 -0
  489. package/lib/sass/opacity.d.ts +451 -0
  490. package/lib/sass/opacity.js +33 -0
  491. package/lib/sass/opacity.js.map +1 -0
  492. package/lib/sass/percentage.d.ts +449 -0
  493. package/lib/sass/percentage.js +26 -0
  494. package/lib/sass/percentage.js.map +1 -0
  495. package/lib/sass/quote.d.ts +449 -0
  496. package/lib/sass/quote.js +27 -0
  497. package/lib/sass/quote.js.map +1 -0
  498. package/lib/sass/random.d.ts +534 -0
  499. package/lib/sass/random.js +37 -0
  500. package/lib/sass/random.js.map +1 -0
  501. package/lib/sass/saturation.d.ts +450 -0
  502. package/lib/sass/saturation.js +24 -0
  503. package/lib/sass/saturation.js.map +1 -0
  504. package/lib/sass/str-index.d.ts +609 -0
  505. package/lib/sass/str-index.js +34 -0
  506. package/lib/sass/str-index.js.map +1 -0
  507. package/lib/sass/str-insert.d.ts +756 -0
  508. package/lib/sass/str-insert.js +61 -0
  509. package/lib/sass/str-insert.js.map +1 -0
  510. package/lib/sass/str-slice.d.ts +1039 -0
  511. package/lib/sass/str-slice.js +95 -0
  512. package/lib/sass/str-slice.js.map +1 -0
  513. package/lib/sass/string/index.d.ts +18 -0
  514. package/lib/sass/string/index.js +25 -0
  515. package/lib/sass/string/index.js.map +1 -0
  516. package/lib/sass/string/length.d.ts +450 -0
  517. package/lib/sass/string/length.js +32 -0
  518. package/lib/sass/string/length.js.map +1 -0
  519. package/lib/sass/to-lower-case.d.ts +449 -0
  520. package/lib/sass/to-lower-case.js +23 -0
  521. package/lib/sass/to-lower-case.js.map +1 -0
  522. package/lib/sass/to-upper-case.d.ts +449 -0
  523. package/lib/sass/to-upper-case.js +23 -0
  524. package/lib/sass/to-upper-case.js.map +1 -0
  525. package/lib/sass/transparentize.d.ts +11 -0
  526. package/lib/sass/transparentize.js +12 -0
  527. package/lib/sass/transparentize.js.map +1 -0
  528. package/lib/sass/unique-id.d.ts +341 -0
  529. package/lib/sass/unique-id.js +23 -0
  530. package/lib/sass/unique-id.js.map +1 -0
  531. package/lib/sass/unit.d.ts +762 -0
  532. package/lib/sass/unit.js +37 -0
  533. package/lib/sass/unit.js.map +1 -0
  534. package/lib/sass/unitless.d.ts +450 -0
  535. package/lib/sass/unitless.js +23 -0
  536. package/lib/sass/unitless.js.map +1 -0
  537. package/lib/sass/unquote.d.ts +449 -0
  538. package/lib/sass/unquote.js +27 -0
  539. package/lib/sass/unquote.js.map +1 -0
  540. package/lib/shared/color/alpha.d.ts +441 -0
  541. package/lib/shared/color/alpha.js +10 -0
  542. package/lib/shared/color/alpha.js.map +1 -0
  543. package/lib/shared/color/blue.d.ts +441 -0
  544. package/lib/shared/color/blue.js +10 -0
  545. package/lib/shared/color/blue.js.map +1 -0
  546. package/lib/shared/color/green.d.ts +441 -0
  547. package/lib/shared/color/green.js +10 -0
  548. package/lib/shared/color/green.js.map +1 -0
  549. package/lib/shared/color/red.d.ts +441 -0
  550. package/lib/shared/color/red.js +10 -0
  551. package/lib/shared/color/red.js.map +1 -0
  552. package/lib/shared/index.d.ts +16 -0
  553. package/lib/shared/index.js +19 -0
  554. package/lib/shared/index.js.map +1 -0
  555. package/lib/shared/math/__tests__/max.test.d.ts +1 -0
  556. package/lib/shared/math/__tests__/max.test.js +12 -0
  557. package/lib/shared/math/__tests__/max.test.js.map +1 -0
  558. package/lib/shared/math/__tests__/min.test.d.ts +1 -0
  559. package/lib/shared/math/__tests__/min.test.js +12 -0
  560. package/lib/shared/math/__tests__/min.test.js.map +1 -0
  561. package/lib/shared/math/__tests__/round.test.d.ts +1 -0
  562. package/lib/shared/math/__tests__/round.test.js +10 -0
  563. package/lib/shared/math/__tests__/round.test.js.map +1 -0
  564. package/lib/shared/math/abs.d.ts +441 -0
  565. package/lib/shared/math/abs.js +11 -0
  566. package/lib/shared/math/abs.js.map +1 -0
  567. package/lib/shared/math/ceil.d.ts +441 -0
  568. package/lib/shared/math/ceil.js +11 -0
  569. package/lib/shared/math/ceil.js.map +1 -0
  570. package/lib/shared/math/floor.d.ts +441 -0
  571. package/lib/shared/math/floor.js +11 -0
  572. package/lib/shared/math/floor.js.map +1 -0
  573. package/lib/shared/math/max.d.ts +469 -0
  574. package/lib/shared/math/max.js +22 -0
  575. package/lib/shared/math/max.js.map +1 -0
  576. package/lib/shared/math/min.d.ts +469 -0
  577. package/lib/shared/math/min.js +22 -0
  578. package/lib/shared/math/min.js.map +1 -0
  579. package/lib/shared/math/round.d.ts +778 -0
  580. package/lib/shared/math/round.js +17 -0
  581. package/lib/shared/math/round.js.map +1 -0
  582. package/lib/util/colorHelper.d.ts +2 -0
  583. package/lib/util/colorHelper.js +32 -0
  584. package/lib/util/colorHelper.js.map +1 -0
  585. package/lib/util/get-color-func-values.d.ts +5 -0
  586. package/lib/util/get-color-func-values.js +28 -0
  587. package/lib/util/get-color-func-values.js.map +1 -0
  588. package/lib/util/get-hsla.d.ts +10 -0
  589. package/lib/util/get-hsla.js +38 -0
  590. package/lib/util/get-hsla.js.map +1 -0
  591. package/lib/util/get-luma.d.ts +2 -0
  592. package/lib/util/get-luma.js +10 -0
  593. package/lib/util/get-luma.js.map +1 -0
  594. package/lib/util/index.d.ts +5 -0
  595. package/lib/util/index.js +17 -0
  596. package/lib/util/index.js.map +1 -0
  597. package/lib/util/mathHelper.d.ts +4 -0
  598. package/lib/util/mathHelper.js +45 -0
  599. package/lib/util/mathHelper.js.map +1 -0
  600. package/lib/util/number.d.ts +4 -0
  601. package/lib/util/number.js +23 -0
  602. package/lib/util/number.js.map +1 -0
  603. package/lib/util/relative-color.d.ts +54 -0
  604. package/lib/util/relative-color.js +268 -0
  605. package/lib/util/relative-color.js.map +1 -0
  606. package/lib/util/serialize-node.d.ts +2 -0
  607. package/lib/util/serialize-node.js +8 -0
  608. package/lib/util/serialize-node.js.map +1 -0
  609. package/lib/util/to-hsl.d.ts +7 -0
  610. package/lib/util/to-hsl.js +6 -0
  611. package/lib/util/to-hsl.js.map +1 -0
  612. package/lib/util/to-hsv.d.ts +7 -0
  613. package/lib/util/to-hsv.js +73 -0
  614. package/lib/util/to-hsv.js.map +1 -0
  615. package/package.json +39 -16
  616. package/lib/color-blending.d.ts +0 -9
  617. package/lib/color-blending.js +0 -83
  618. package/lib/color.d.ts +0 -42
  619. package/lib/color.js +0 -407
  620. package/lib/each.d.ts +0 -14
  621. package/lib/each.js +0 -35
  622. package/lib/iif.d.ts +0 -4
  623. package/lib/iif.js +0 -10
  624. package/lib/math.d.ts +0 -13
  625. package/lib/math.js +0 -199
@@ -0,0 +1,756 @@
1
+ /**
2
+ * Sass str-insert() function (deprecated, use string.insert() instead)
3
+ *
4
+ * Inserts a string into another string at a specific index (1-based).
5
+ *
6
+ * @example
7
+ * str-insert("Hello", "X", 3) // "HeXllo"
8
+ */
9
+ import { Quoted, Dimension } from '@jesscss/core';
10
+ declare const strInsert: {
11
+ (args_0: Quoted | (Partial<{} & Omit<import("type-fest").OmitIndexSignature<{
12
+ [x: string]: never;
13
+ readonly string: Dimension | Quoted;
14
+ readonly insert: Dimension | Quoted;
15
+ readonly index: Dimension | Quoted;
16
+ }>, never>> & {} & Omit<import("type-fest").OmitIndexSignature<{
17
+ [x: string]: never;
18
+ readonly string: Dimension | Quoted;
19
+ readonly insert: Dimension | Quoted;
20
+ readonly index: Dimension | Quoted;
21
+ }>, never>), args_1: Quoted | (Partial<{} & Omit<import("type-fest").OmitIndexSignature<{
22
+ [x: string]: never;
23
+ readonly string: Dimension | Quoted;
24
+ readonly insert: Dimension | Quoted;
25
+ readonly index: Dimension | Quoted;
26
+ }>, never>> & {} & Omit<import("type-fest").OmitIndexSignature<{
27
+ [x: string]: never;
28
+ insert: Dimension | Quoted;
29
+ index: Dimension | Quoted;
30
+ }>, never>), args_2: Dimension | (Partial<{} & Omit<import("type-fest").OmitIndexSignature<{
31
+ [x: string]: never;
32
+ readonly string: Dimension | Quoted;
33
+ readonly insert: Dimension | Quoted;
34
+ readonly index: Dimension | Quoted;
35
+ }>, never>> & {} & Omit<import("type-fest").OmitIndexSignature<{
36
+ [x: string]: never;
37
+ index: Dimension;
38
+ }>, never>)): Quoted;
39
+ (record: {} & Omit<import("type-fest").OmitIndexSignature<{
40
+ [x: string]: never;
41
+ readonly string: Dimension | Quoted;
42
+ readonly insert: Dimension | Quoted;
43
+ readonly index: Dimension | Quoted;
44
+ }>, never>): Quoted;
45
+ name: string;
46
+ params: readonly [{
47
+ readonly name: "string";
48
+ readonly type: typeof Quoted;
49
+ }, {
50
+ readonly name: "insert";
51
+ readonly type: typeof Quoted;
52
+ }, {
53
+ readonly name: "index";
54
+ readonly type: typeof Dimension;
55
+ readonly convert: [import("@jesscss/core").ConversionPlugin];
56
+ }];
57
+ } & ((arg1: Quoted | (Partial<{} & Omit<import("type-fest").OmitIndexSignature<{
58
+ [x: string]: never;
59
+ readonly string: Dimension | Quoted;
60
+ readonly insert: Dimension | Quoted;
61
+ readonly index: Dimension | Quoted;
62
+ }>, never>> & {} & Omit<import("type-fest").OmitIndexSignature<{
63
+ [x: string]: never;
64
+ readonly string: Dimension | Quoted;
65
+ readonly insert: Dimension | Quoted;
66
+ readonly index: Dimension | Quoted;
67
+ }>, never>), arg2: Quoted | (Partial<{} & Omit<import("type-fest").OmitIndexSignature<{
68
+ [x: string]: never;
69
+ readonly string: Dimension | Quoted;
70
+ readonly insert: Dimension | Quoted;
71
+ readonly index: Dimension | Quoted;
72
+ }>, never>> & {} & Omit<import("type-fest").OmitIndexSignature<{
73
+ [x: string]: never;
74
+ insert: Dimension | Quoted;
75
+ index: Dimension | Quoted;
76
+ }>, never>), arg3: Dimension | (Partial<{} & Omit<import("type-fest").OmitIndexSignature<{
77
+ [x: string]: never;
78
+ readonly string: Dimension | Quoted;
79
+ readonly insert: Dimension | Quoted;
80
+ readonly index: Dimension | Quoted;
81
+ }>, never>> & {} & Omit<import("type-fest").OmitIndexSignature<{
82
+ [x: string]: never;
83
+ index: Dimension;
84
+ }>, never>)) => Quoted) & {
85
+ call(thisArg: any, ...args: Parameters<{
86
+ (...args: [Quoted | (Partial<{} & Omit<import("type-fest").OmitIndexSignature<{
87
+ [x: string]: never;
88
+ readonly string: Dimension | Quoted;
89
+ readonly insert: Dimension | Quoted;
90
+ readonly index: Dimension | Quoted;
91
+ }>, never>> & {} & Omit<import("type-fest").OmitIndexSignature<{
92
+ [x: string]: never;
93
+ readonly string: Dimension | Quoted;
94
+ readonly insert: Dimension | Quoted;
95
+ readonly index: Dimension | Quoted;
96
+ }>, never>), Quoted | (Partial<{} & Omit<import("type-fest").OmitIndexSignature<{
97
+ [x: string]: never;
98
+ readonly string: Dimension | Quoted;
99
+ readonly insert: Dimension | Quoted;
100
+ readonly index: Dimension | Quoted;
101
+ }>, never>> & {} & Omit<import("type-fest").OmitIndexSignature<{
102
+ [x: string]: never;
103
+ insert: Dimension | Quoted;
104
+ index: Dimension | Quoted;
105
+ }>, never>), Dimension | (Partial<{} & Omit<import("type-fest").OmitIndexSignature<{
106
+ [x: string]: never;
107
+ readonly string: Dimension | Quoted;
108
+ readonly insert: Dimension | Quoted;
109
+ readonly index: Dimension | Quoted;
110
+ }>, never>> & {} & Omit<import("type-fest").OmitIndexSignature<{
111
+ [x: string]: never;
112
+ index: Dimension;
113
+ }>, never>)]): Quoted;
114
+ (record: {} & Omit<import("type-fest").OmitIndexSignature<{
115
+ [x: string]: never;
116
+ readonly string: Dimension | Quoted;
117
+ readonly insert: Dimension | Quoted;
118
+ readonly index: Dimension | Quoted;
119
+ }>, never>): Quoted;
120
+ name: string;
121
+ params: readonly [{
122
+ readonly name: "string";
123
+ readonly type: typeof Quoted;
124
+ }, {
125
+ readonly name: "insert";
126
+ readonly type: typeof Quoted;
127
+ }, {
128
+ readonly name: "index";
129
+ readonly type: typeof Dimension;
130
+ readonly convert: [import("@jesscss/core").ConversionPlugin];
131
+ }];
132
+ } & (readonly [{
133
+ readonly name: "string";
134
+ readonly type: typeof Quoted;
135
+ }, {
136
+ readonly name: "insert";
137
+ readonly type: typeof Quoted;
138
+ }, {
139
+ readonly name: "index";
140
+ readonly type: typeof Dimension;
141
+ readonly convert: [import("@jesscss/core").ConversionPlugin];
142
+ }] extends readonly [{
143
+ name: string;
144
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
145
+ optional: true;
146
+ }] ? {
147
+ (): Quoted;
148
+ (arg1: never): Quoted;
149
+ } : readonly [{
150
+ readonly name: "string";
151
+ readonly type: typeof Quoted;
152
+ }, {
153
+ readonly name: "insert";
154
+ readonly type: typeof Quoted;
155
+ }, {
156
+ readonly name: "index";
157
+ readonly type: typeof Dimension;
158
+ readonly convert: [import("@jesscss/core").ConversionPlugin];
159
+ }] extends readonly [{
160
+ name: string;
161
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
162
+ optional?: boolean;
163
+ }] ? (arg1: never) => Quoted : readonly [{
164
+ readonly name: "string";
165
+ readonly type: typeof Quoted;
166
+ }, {
167
+ readonly name: "insert";
168
+ readonly type: typeof Quoted;
169
+ }, {
170
+ readonly name: "index";
171
+ readonly type: typeof Dimension;
172
+ readonly convert: [import("@jesscss/core").ConversionPlugin];
173
+ }] extends readonly [{
174
+ name: string;
175
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
176
+ optional: true;
177
+ }, {
178
+ name: string;
179
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
180
+ optional: true;
181
+ }] ? {
182
+ (): Quoted;
183
+ (arg1: never): Quoted;
184
+ (arg1: never, arg2: never): Quoted;
185
+ } : readonly [{
186
+ readonly name: "string";
187
+ readonly type: typeof Quoted;
188
+ }, {
189
+ readonly name: "insert";
190
+ readonly type: typeof Quoted;
191
+ }, {
192
+ readonly name: "index";
193
+ readonly type: typeof Dimension;
194
+ readonly convert: [import("@jesscss/core").ConversionPlugin];
195
+ }] extends readonly [{
196
+ name: string;
197
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
198
+ optional?: boolean;
199
+ }, {
200
+ name: string;
201
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
202
+ optional: true;
203
+ }] ? {
204
+ (arg1: never): Quoted;
205
+ (arg1: never, arg2: never): Quoted;
206
+ } : readonly [{
207
+ readonly name: "string";
208
+ readonly type: typeof Quoted;
209
+ }, {
210
+ readonly name: "insert";
211
+ readonly type: typeof Quoted;
212
+ }, {
213
+ readonly name: "index";
214
+ readonly type: typeof Dimension;
215
+ readonly convert: [import("@jesscss/core").ConversionPlugin];
216
+ }] extends readonly [{
217
+ name: string;
218
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
219
+ optional?: boolean;
220
+ }, {
221
+ name: string;
222
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
223
+ optional?: boolean;
224
+ }] ? {
225
+ (arg1: never): Quoted;
226
+ (arg1: never, arg2: never): Quoted;
227
+ } : readonly [{
228
+ readonly name: "string";
229
+ readonly type: typeof Quoted;
230
+ }, {
231
+ readonly name: "insert";
232
+ readonly type: typeof Quoted;
233
+ }, {
234
+ readonly name: "index";
235
+ readonly type: typeof Dimension;
236
+ readonly convert: [import("@jesscss/core").ConversionPlugin];
237
+ }] extends readonly [{
238
+ name: string;
239
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
240
+ optional?: boolean;
241
+ }, {
242
+ name: string;
243
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
244
+ optional?: boolean;
245
+ }, {
246
+ name: string;
247
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
248
+ optional: true;
249
+ }] ? {
250
+ (arg1: undefined, arg2: undefined): Quoted;
251
+ (arg1: undefined, arg2: undefined, arg3: undefined): Quoted;
252
+ } : readonly [{
253
+ readonly name: "string";
254
+ readonly type: typeof Quoted;
255
+ }, {
256
+ readonly name: "insert";
257
+ readonly type: typeof Quoted;
258
+ }, {
259
+ readonly name: "index";
260
+ readonly type: typeof Dimension;
261
+ readonly convert: [import("@jesscss/core").ConversionPlugin];
262
+ }] extends readonly [{
263
+ name: string;
264
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
265
+ optional?: boolean;
266
+ }, {
267
+ name: string;
268
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
269
+ optional?: boolean;
270
+ }, {
271
+ name: string;
272
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
273
+ optional?: boolean;
274
+ }] ? (arg1: Quoted | (Partial<{} & Omit<import("type-fest").OmitIndexSignature<{
275
+ [x: string]: never;
276
+ readonly string: Dimension | Quoted;
277
+ readonly insert: Dimension | Quoted;
278
+ readonly index: Dimension | Quoted;
279
+ }>, never>> & {} & Omit<import("type-fest").OmitIndexSignature<{
280
+ [x: string]: never;
281
+ readonly string: Dimension | Quoted;
282
+ readonly insert: Dimension | Quoted;
283
+ readonly index: Dimension | Quoted;
284
+ }>, never>), arg2: Quoted | (Partial<{} & Omit<import("type-fest").OmitIndexSignature<{
285
+ [x: string]: never;
286
+ readonly string: Dimension | Quoted;
287
+ readonly insert: Dimension | Quoted;
288
+ readonly index: Dimension | Quoted;
289
+ }>, never>> & {} & Omit<import("type-fest").OmitIndexSignature<{
290
+ [x: string]: never;
291
+ insert: Dimension | Quoted;
292
+ index: Dimension | Quoted;
293
+ }>, never>), arg3: Dimension | (Partial<{} & Omit<import("type-fest").OmitIndexSignature<{
294
+ [x: string]: never;
295
+ readonly string: Dimension | Quoted;
296
+ readonly insert: Dimension | Quoted;
297
+ readonly index: Dimension | Quoted;
298
+ }>, never>> & {} & Omit<import("type-fest").OmitIndexSignature<{
299
+ [x: string]: never;
300
+ index: Dimension;
301
+ }>, never>)) => Quoted : readonly [{
302
+ readonly name: "string";
303
+ readonly type: typeof Quoted;
304
+ }, {
305
+ readonly name: "insert";
306
+ readonly type: typeof Quoted;
307
+ }, {
308
+ readonly name: "index";
309
+ readonly type: typeof Dimension;
310
+ readonly convert: [import("@jesscss/core").ConversionPlugin];
311
+ }] extends readonly [{
312
+ name: string;
313
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
314
+ optional?: boolean;
315
+ }, {
316
+ name: string;
317
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
318
+ optional?: boolean;
319
+ }, {
320
+ name: string;
321
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
322
+ optional?: boolean;
323
+ }, {
324
+ name: string;
325
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
326
+ optional: true;
327
+ }] ? {
328
+ (arg1: never, arg2: never, arg3: never): Quoted;
329
+ (arg1: never, arg2: never, arg3: never, arg4: never): Quoted;
330
+ } : readonly [{
331
+ readonly name: "string";
332
+ readonly type: typeof Quoted;
333
+ }, {
334
+ readonly name: "insert";
335
+ readonly type: typeof Quoted;
336
+ }, {
337
+ readonly name: "index";
338
+ readonly type: typeof Dimension;
339
+ readonly convert: [import("@jesscss/core").ConversionPlugin];
340
+ }] extends readonly [{
341
+ name: string;
342
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
343
+ optional?: boolean;
344
+ }, {
345
+ name: string;
346
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
347
+ optional?: boolean;
348
+ }, {
349
+ name: string;
350
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
351
+ optional?: boolean;
352
+ }, {
353
+ name: string;
354
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
355
+ optional?: boolean;
356
+ }] ? (arg1: never, arg2: never, arg3: never, arg4: never) => Quoted : readonly [{
357
+ readonly name: "string";
358
+ readonly type: typeof Quoted;
359
+ }, {
360
+ readonly name: "insert";
361
+ readonly type: typeof Quoted;
362
+ }, {
363
+ readonly name: "index";
364
+ readonly type: typeof Dimension;
365
+ readonly convert: [import("@jesscss/core").ConversionPlugin];
366
+ }] extends readonly [{
367
+ name: string;
368
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
369
+ optional?: boolean;
370
+ }, {
371
+ name: string;
372
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
373
+ optional?: boolean;
374
+ }, {
375
+ name: string;
376
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
377
+ optional?: boolean;
378
+ }, {
379
+ name: string;
380
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
381
+ optional?: boolean;
382
+ }, {
383
+ name: string;
384
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
385
+ optional: true;
386
+ }] ? {
387
+ (arg1: never, arg2: never, arg3: never, arg4: never): Quoted;
388
+ (arg1: never, arg2: never, arg3: never, arg4: never, arg5: never): Quoted;
389
+ } : readonly [{
390
+ readonly name: "string";
391
+ readonly type: typeof Quoted;
392
+ }, {
393
+ readonly name: "insert";
394
+ readonly type: typeof Quoted;
395
+ }, {
396
+ readonly name: "index";
397
+ readonly type: typeof Dimension;
398
+ readonly convert: [import("@jesscss/core").ConversionPlugin];
399
+ }] extends readonly [{
400
+ name: string;
401
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
402
+ optional?: boolean;
403
+ }, {
404
+ name: string;
405
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
406
+ optional?: boolean;
407
+ }, {
408
+ name: string;
409
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
410
+ optional?: boolean;
411
+ }, {
412
+ name: string;
413
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
414
+ optional?: boolean;
415
+ }, {
416
+ name: string;
417
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
418
+ optional?: boolean;
419
+ }] ? (arg1: never, arg2: never, arg3: never, arg4: never, arg5: never) => Quoted : 3 extends number ? 3 extends 0 | 1 | 2 | 3 | 4 | 5 ? {} : (...args: any[]) => Quoted : {}) & any>): Quoted;
420
+ apply(thisArg: any, args: Parameters<{
421
+ (...args: [Quoted | (Partial<{} & Omit<import("type-fest").OmitIndexSignature<{
422
+ [x: string]: never;
423
+ readonly string: Dimension | Quoted;
424
+ readonly insert: Dimension | Quoted;
425
+ readonly index: Dimension | Quoted;
426
+ }>, never>> & {} & Omit<import("type-fest").OmitIndexSignature<{
427
+ [x: string]: never;
428
+ readonly string: Dimension | Quoted;
429
+ readonly insert: Dimension | Quoted;
430
+ readonly index: Dimension | Quoted;
431
+ }>, never>), Quoted | (Partial<{} & Omit<import("type-fest").OmitIndexSignature<{
432
+ [x: string]: never;
433
+ readonly string: Dimension | Quoted;
434
+ readonly insert: Dimension | Quoted;
435
+ readonly index: Dimension | Quoted;
436
+ }>, never>> & {} & Omit<import("type-fest").OmitIndexSignature<{
437
+ [x: string]: never;
438
+ insert: Dimension | Quoted;
439
+ index: Dimension | Quoted;
440
+ }>, never>), Dimension | (Partial<{} & Omit<import("type-fest").OmitIndexSignature<{
441
+ [x: string]: never;
442
+ readonly string: Dimension | Quoted;
443
+ readonly insert: Dimension | Quoted;
444
+ readonly index: Dimension | Quoted;
445
+ }>, never>> & {} & Omit<import("type-fest").OmitIndexSignature<{
446
+ [x: string]: never;
447
+ index: Dimension;
448
+ }>, never>)]): Quoted;
449
+ (record: {} & Omit<import("type-fest").OmitIndexSignature<{
450
+ [x: string]: never;
451
+ readonly string: Dimension | Quoted;
452
+ readonly insert: Dimension | Quoted;
453
+ readonly index: Dimension | Quoted;
454
+ }>, never>): Quoted;
455
+ name: string;
456
+ params: readonly [{
457
+ readonly name: "string";
458
+ readonly type: typeof Quoted;
459
+ }, {
460
+ readonly name: "insert";
461
+ readonly type: typeof Quoted;
462
+ }, {
463
+ readonly name: "index";
464
+ readonly type: typeof Dimension;
465
+ readonly convert: [import("@jesscss/core").ConversionPlugin];
466
+ }];
467
+ } & (readonly [{
468
+ readonly name: "string";
469
+ readonly type: typeof Quoted;
470
+ }, {
471
+ readonly name: "insert";
472
+ readonly type: typeof Quoted;
473
+ }, {
474
+ readonly name: "index";
475
+ readonly type: typeof Dimension;
476
+ readonly convert: [import("@jesscss/core").ConversionPlugin];
477
+ }] extends readonly [{
478
+ name: string;
479
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
480
+ optional: true;
481
+ }] ? {
482
+ (): Quoted;
483
+ (arg1: never): Quoted;
484
+ } : readonly [{
485
+ readonly name: "string";
486
+ readonly type: typeof Quoted;
487
+ }, {
488
+ readonly name: "insert";
489
+ readonly type: typeof Quoted;
490
+ }, {
491
+ readonly name: "index";
492
+ readonly type: typeof Dimension;
493
+ readonly convert: [import("@jesscss/core").ConversionPlugin];
494
+ }] extends readonly [{
495
+ name: string;
496
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
497
+ optional?: boolean;
498
+ }] ? (arg1: never) => Quoted : readonly [{
499
+ readonly name: "string";
500
+ readonly type: typeof Quoted;
501
+ }, {
502
+ readonly name: "insert";
503
+ readonly type: typeof Quoted;
504
+ }, {
505
+ readonly name: "index";
506
+ readonly type: typeof Dimension;
507
+ readonly convert: [import("@jesscss/core").ConversionPlugin];
508
+ }] extends readonly [{
509
+ name: string;
510
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
511
+ optional: true;
512
+ }, {
513
+ name: string;
514
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
515
+ optional: true;
516
+ }] ? {
517
+ (): Quoted;
518
+ (arg1: never): Quoted;
519
+ (arg1: never, arg2: never): Quoted;
520
+ } : readonly [{
521
+ readonly name: "string";
522
+ readonly type: typeof Quoted;
523
+ }, {
524
+ readonly name: "insert";
525
+ readonly type: typeof Quoted;
526
+ }, {
527
+ readonly name: "index";
528
+ readonly type: typeof Dimension;
529
+ readonly convert: [import("@jesscss/core").ConversionPlugin];
530
+ }] extends readonly [{
531
+ name: string;
532
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
533
+ optional?: boolean;
534
+ }, {
535
+ name: string;
536
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
537
+ optional: true;
538
+ }] ? {
539
+ (arg1: never): Quoted;
540
+ (arg1: never, arg2: never): Quoted;
541
+ } : readonly [{
542
+ readonly name: "string";
543
+ readonly type: typeof Quoted;
544
+ }, {
545
+ readonly name: "insert";
546
+ readonly type: typeof Quoted;
547
+ }, {
548
+ readonly name: "index";
549
+ readonly type: typeof Dimension;
550
+ readonly convert: [import("@jesscss/core").ConversionPlugin];
551
+ }] extends readonly [{
552
+ name: string;
553
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
554
+ optional?: boolean;
555
+ }, {
556
+ name: string;
557
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
558
+ optional?: boolean;
559
+ }] ? {
560
+ (arg1: never): Quoted;
561
+ (arg1: never, arg2: never): Quoted;
562
+ } : readonly [{
563
+ readonly name: "string";
564
+ readonly type: typeof Quoted;
565
+ }, {
566
+ readonly name: "insert";
567
+ readonly type: typeof Quoted;
568
+ }, {
569
+ readonly name: "index";
570
+ readonly type: typeof Dimension;
571
+ readonly convert: [import("@jesscss/core").ConversionPlugin];
572
+ }] extends readonly [{
573
+ name: string;
574
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
575
+ optional?: boolean;
576
+ }, {
577
+ name: string;
578
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
579
+ optional?: boolean;
580
+ }, {
581
+ name: string;
582
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
583
+ optional: true;
584
+ }] ? {
585
+ (arg1: undefined, arg2: undefined): Quoted;
586
+ (arg1: undefined, arg2: undefined, arg3: undefined): Quoted;
587
+ } : readonly [{
588
+ readonly name: "string";
589
+ readonly type: typeof Quoted;
590
+ }, {
591
+ readonly name: "insert";
592
+ readonly type: typeof Quoted;
593
+ }, {
594
+ readonly name: "index";
595
+ readonly type: typeof Dimension;
596
+ readonly convert: [import("@jesscss/core").ConversionPlugin];
597
+ }] extends readonly [{
598
+ name: string;
599
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
600
+ optional?: boolean;
601
+ }, {
602
+ name: string;
603
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
604
+ optional?: boolean;
605
+ }, {
606
+ name: string;
607
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
608
+ optional?: boolean;
609
+ }] ? (arg1: Quoted | (Partial<{} & Omit<import("type-fest").OmitIndexSignature<{
610
+ [x: string]: never;
611
+ readonly string: Dimension | Quoted;
612
+ readonly insert: Dimension | Quoted;
613
+ readonly index: Dimension | Quoted;
614
+ }>, never>> & {} & Omit<import("type-fest").OmitIndexSignature<{
615
+ [x: string]: never;
616
+ readonly string: Dimension | Quoted;
617
+ readonly insert: Dimension | Quoted;
618
+ readonly index: Dimension | Quoted;
619
+ }>, never>), arg2: Quoted | (Partial<{} & Omit<import("type-fest").OmitIndexSignature<{
620
+ [x: string]: never;
621
+ readonly string: Dimension | Quoted;
622
+ readonly insert: Dimension | Quoted;
623
+ readonly index: Dimension | Quoted;
624
+ }>, never>> & {} & Omit<import("type-fest").OmitIndexSignature<{
625
+ [x: string]: never;
626
+ insert: Dimension | Quoted;
627
+ index: Dimension | Quoted;
628
+ }>, never>), arg3: Dimension | (Partial<{} & Omit<import("type-fest").OmitIndexSignature<{
629
+ [x: string]: never;
630
+ readonly string: Dimension | Quoted;
631
+ readonly insert: Dimension | Quoted;
632
+ readonly index: Dimension | Quoted;
633
+ }>, never>> & {} & Omit<import("type-fest").OmitIndexSignature<{
634
+ [x: string]: never;
635
+ index: Dimension;
636
+ }>, never>)) => Quoted : readonly [{
637
+ readonly name: "string";
638
+ readonly type: typeof Quoted;
639
+ }, {
640
+ readonly name: "insert";
641
+ readonly type: typeof Quoted;
642
+ }, {
643
+ readonly name: "index";
644
+ readonly type: typeof Dimension;
645
+ readonly convert: [import("@jesscss/core").ConversionPlugin];
646
+ }] extends readonly [{
647
+ name: string;
648
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
649
+ optional?: boolean;
650
+ }, {
651
+ name: string;
652
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
653
+ optional?: boolean;
654
+ }, {
655
+ name: string;
656
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
657
+ optional?: boolean;
658
+ }, {
659
+ name: string;
660
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
661
+ optional: true;
662
+ }] ? {
663
+ (arg1: never, arg2: never, arg3: never): Quoted;
664
+ (arg1: never, arg2: never, arg3: never, arg4: never): Quoted;
665
+ } : readonly [{
666
+ readonly name: "string";
667
+ readonly type: typeof Quoted;
668
+ }, {
669
+ readonly name: "insert";
670
+ readonly type: typeof Quoted;
671
+ }, {
672
+ readonly name: "index";
673
+ readonly type: typeof Dimension;
674
+ readonly convert: [import("@jesscss/core").ConversionPlugin];
675
+ }] extends readonly [{
676
+ name: string;
677
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
678
+ optional?: boolean;
679
+ }, {
680
+ name: string;
681
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
682
+ optional?: boolean;
683
+ }, {
684
+ name: string;
685
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
686
+ optional?: boolean;
687
+ }, {
688
+ name: string;
689
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
690
+ optional?: boolean;
691
+ }] ? (arg1: never, arg2: never, arg3: never, arg4: never) => Quoted : readonly [{
692
+ readonly name: "string";
693
+ readonly type: typeof Quoted;
694
+ }, {
695
+ readonly name: "insert";
696
+ readonly type: typeof Quoted;
697
+ }, {
698
+ readonly name: "index";
699
+ readonly type: typeof Dimension;
700
+ readonly convert: [import("@jesscss/core").ConversionPlugin];
701
+ }] extends readonly [{
702
+ name: string;
703
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
704
+ optional?: boolean;
705
+ }, {
706
+ name: string;
707
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
708
+ optional?: boolean;
709
+ }, {
710
+ name: string;
711
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
712
+ optional?: boolean;
713
+ }, {
714
+ name: string;
715
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
716
+ optional?: boolean;
717
+ }, {
718
+ name: string;
719
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
720
+ optional: true;
721
+ }] ? {
722
+ (arg1: never, arg2: never, arg3: never, arg4: never): Quoted;
723
+ (arg1: never, arg2: never, arg3: never, arg4: never, arg5: never): Quoted;
724
+ } : readonly [{
725
+ readonly name: "string";
726
+ readonly type: typeof Quoted;
727
+ }, {
728
+ readonly name: "insert";
729
+ readonly type: typeof Quoted;
730
+ }, {
731
+ readonly name: "index";
732
+ readonly type: typeof Dimension;
733
+ readonly convert: [import("@jesscss/core").ConversionPlugin];
734
+ }] extends readonly [{
735
+ name: string;
736
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
737
+ optional?: boolean;
738
+ }, {
739
+ name: string;
740
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
741
+ optional?: boolean;
742
+ }, {
743
+ name: string;
744
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
745
+ optional?: boolean;
746
+ }, {
747
+ name: string;
748
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
749
+ optional?: boolean;
750
+ }, {
751
+ name: string;
752
+ type: import("@jesscss/core").ArgType | readonly import("@jesscss/core").ArgType[];
753
+ optional?: boolean;
754
+ }] ? (arg1: never, arg2: never, arg3: never, arg4: never, arg5: never) => Quoted : 3 extends number ? 3 extends 0 | 1 | 2 | 3 | 4 | 5 ? {} : (...args: any[]) => Quoted : {}) & any>): Quoted;
755
+ };
756
+ export default strInsert;