smacss.mjs 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399
  1. export const properties = [
  2. "all",
  3. "box-sizing",
  4. "contain",
  5. "contain-intrinsic-height",
  6. "contain-intrinsic-size",
  7. "contain-intrinsic-width",
  8. "container",
  9. "container-name",
  10. "container-type",
  11. "display",
  12. "appearance",
  13. "visibility",
  14. "content-visibility",
  15. "z-index",
  16. "paint-order",
  17. "position",
  18. "top",
  19. "right",
  20. "bottom",
  21. "left",
  22. "offset",
  23. "offset-anchor",
  24. "offset-distance",
  25. "offset-path",
  26. "offset-rotate",
  27. "grid",
  28. "grid-template-rows",
  29. "grid-template-columns",
  30. "grid-template-areas",
  31. "grid-auto-rows",
  32. "grid-auto-columns",
  33. "grid-auto-flow",
  34. "column-gap",
  35. "row-gap",
  36. "grid-area",
  37. "grid-row",
  38. "grid-row-start",
  39. "grid-row-end",
  40. "grid-column",
  41. "grid-column-start",
  42. "grid-column-end",
  43. "grid-template",
  44. "flex",
  45. "flex-grow",
  46. "flex-shrink",
  47. "flex-basis",
  48. "flex-direction",
  49. "flex-flow",
  50. "flex-wrap",
  51. "box-decoration-break",
  52. "place-content",
  53. "place-items",
  54. "place-self",
  55. "align-content",
  56. "align-items",
  57. "align-self",
  58. "justify-content",
  59. "justify-items",
  60. "justify-self",
  61. "order",
  62. "aspect-ratio",
  63. "width",
  64. "min-width",
  65. "max-width",
  66. "height",
  67. "min-height",
  68. "max-height",
  69. "-webkit-line-clamp",
  70. "-webkit-text-fill-color",
  71. "-webkit-text-stroke",
  72. "-webkit-text-stroke-color",
  73. "-webkit-text-stroke-width",
  74. "inline-size",
  75. "min-inline-size",
  76. "max-inline-size",
  77. "block-size",
  78. "min-block-size",
  79. "max-block-size",
  80. "margin",
  81. "margin-top",
  82. "margin-right",
  83. "margin-bottom",
  84. "margin-left",
  85. "margin-inline",
  86. "margin-inline-start",
  87. "margin-inline-end",
  88. "margin-block",
  89. "margin-block-start",
  90. "margin-block-end",
  91. "inset",
  92. "inset-block",
  93. "inset-block-end",
  94. "inset-block-start",
  95. "inset-inline",
  96. "inset-inline-end",
  97. "inset-inline-start",
  98. "padding",
  99. "padding-top",
  100. "padding-right",
  101. "padding-bottom",
  102. "padding-left",
  103. "padding-inline",
  104. "padding-inline-start",
  105. "padding-inline-end",
  106. "padding-block",
  107. "padding-block-start",
  108. "padding-block-end",
  109. "float",
  110. "clear",
  111. "overflow",
  112. "overflow-anchor",
  113. "overflow-block",
  114. "overflow-clip-margin",
  115. "overflow-inline",
  116. "overflow-x",
  117. "overflow-y",
  118. "overscroll-behavior",
  119. "overscroll-behavior-block",
  120. "overscroll-behavior-inline",
  121. "overscroll-behavior-x",
  122. "overscroll-behavior-y",
  123. "orphans",
  124. "gap",
  125. "columns",
  126. "column-fill",
  127. "column-rule",
  128. "column-rule-color",
  129. "column-rule-style",
  130. "column-rule-width",
  131. "column-span",
  132. "column-count",
  133. "column-width",
  134. "object-fit",
  135. "object-position",
  136. "transform",
  137. "transform-box",
  138. "transform-origin",
  139. "transform-style",
  140. "translate",
  141. "rotate",
  142. "scale",
  143. "border",
  144. "border-top",
  145. "border-right",
  146. "border-bottom",
  147. "border-left",
  148. "border-width",
  149. "border-top-width",
  150. "border-right-width",
  151. "border-bottom-width",
  152. "border-left-width",
  153. "border-style",
  154. "border-top-style",
  155. "border-right-style",
  156. "border-bottom-style",
  157. "border-left-style",
  158. "border-radius",
  159. "border-top-right-radius",
  160. "border-top-left-radius",
  161. "border-bottom-right-radius",
  162. "border-bottom-left-radius",
  163. "border-inline",
  164. "border-inline-color",
  165. "border-inline-style",
  166. "border-inline-width",
  167. "border-inline-start",
  168. "border-inline-start-color",
  169. "border-inline-start-style",
  170. "border-inline-start-width",
  171. "border-inline-end",
  172. "border-inline-end-color",
  173. "border-inline-end-style",
  174. "border-inline-end-width",
  175. "border-block",
  176. "border-block-color",
  177. "border-block-style",
  178. "border-block-width",
  179. "border-block-start",
  180. "border-block-start-color",
  181. "border-block-start-style",
  182. "border-block-start-width",
  183. "border-block-end",
  184. "border-block-end-color",
  185. "border-block-end-style",
  186. "border-block-end-width",
  187. "border-color",
  188. "border-image",
  189. "border-image-outset",
  190. "border-image-repeat",
  191. "border-image-slice",
  192. "border-image-source",
  193. "border-image-width",
  194. "border-top-color",
  195. "border-right-color",
  196. "border-bottom-color",
  197. "border-left-color",
  198. "border-collapse",
  199. "border-spacing",
  200. "border-start-start-radius",
  201. "border-start-end-radius",
  202. "border-end-start-radius",
  203. "border-end-end-radius",
  204. "outline",
  205. "outline-color",
  206. "outline-style",
  207. "outline-width",
  208. "outline-offset",
  209. "backdrop-filter",
  210. "backface-visibility",
  211. "background",
  212. "background-image",
  213. "background-position",
  214. "background-size",
  215. "background-repeat",
  216. "background-origin",
  217. "background-clip",
  218. "background-attachment",
  219. "background-color",
  220. "background-blend-mode",
  221. "background-position-x",
  222. "background-position-y",
  223. "box-shadow",
  224. "isolation",
  225. "content",
  226. "quotes",
  227. "hanging-punctuation",
  228. "color",
  229. "accent-color",
  230. "print-color-adjust",
  231. "forced-color-adjust",
  232. "color-scheme",
  233. "caret-color",
  234. "font",
  235. "font-style",
  236. "font-variant",
  237. "font-weight",
  238. "src",
  239. "font-stretch",
  240. "font-size",
  241. "size-adjust",
  242. "line-height",
  243. "font-family",
  244. "font-display",
  245. "font-kerning",
  246. "font-language-override",
  247. "font-optical-sizing",
  248. "font-palette",
  249. "font-size-adjust",
  250. "font-synthesis",
  251. "font-variant-alternates",
  252. "font-variant-caps",
  253. "font-variant-east-asian",
  254. "font-variant-emoji",
  255. "font-variant-ligatures",
  256. "font-variant-numeric",
  257. "font-variant-position",
  258. "font-variation-settings",
  259. "ascent-override",
  260. "descent-override",
  261. "line-gap-override",
  262. "hyphens",
  263. "hyphenate-character",
  264. "letter-spacing",
  265. "line-break",
  266. "list-style",
  267. "list-style-image",
  268. "list-style-position",
  269. "list-style-type",
  270. "direction",
  271. "text-align",
  272. "text-align-last",
  273. "text-decoration",
  274. "text-decoration-line",
  275. "text-decoration-style",
  276. "text-decoration-color",
  277. "text-decoration-thickness",
  278. "text-decoration-skip-ink",
  279. "text-emphasis",
  280. "text-emphasis-style",
  281. "text-emphasis-color",
  282. "text-emphasis-position",
  283. "text-indent",
  284. "text-justify",
  285. "text-underline-position",
  286. "text-underline-offset",
  287. "text-orientation",
  288. "text-overflow",
  289. "text-rendering",
  290. "text-shadow",
  291. "text-transform",
  292. "vertical-align",
  293. "white-space",
  294. "word-break",
  295. "word-spacing",
  296. "overflow-wrap",
  297. "animation",
  298. "animation-duration",
  299. "animation-timing-function",
  300. "animation-delay",
  301. "animation-iteration-count",
  302. "animation-direction",
  303. "animation-fill-mode",
  304. "animation-play-state",
  305. "animation-name",
  306. "mix-blend-mode",
  307. "break-before",
  308. "break-after",
  309. "break-inside",
  310. "page",
  311. "page-break-before",
  312. "page-break-after",
  313. "page-break-inside",
  314. "caption-side",
  315. "clip-path",
  316. "counter-increment",
  317. "counter-reset",
  318. "counter-set",
  319. "cursor",
  320. "empty-cells",
  321. "filter",
  322. "image-orientation",
  323. "image-rendering",
  324. "mask",
  325. "mask-border",
  326. "mask-border-outset",
  327. "mask-border-repeat",
  328. "mask-border-slice",
  329. "mask-border-source",
  330. "mask-border-width",
  331. "mask-clip",
  332. "mask-composite",
  333. "mask-image",
  334. "mask-mode",
  335. "mask-origin",
  336. "mask-position",
  337. "mask-repeat",
  338. "mask-size",
  339. "mask-type",
  340. "opacity",
  341. "perspective",
  342. "perspective-origin",
  343. "pointer-events",
  344. "resize",
  345. "scroll-behavior",
  346. "scroll-margin",
  347. "scroll-margin-block",
  348. "scroll-margin-block-end",
  349. "scroll-margin-block-start",
  350. "scroll-margin-bottom",
  351. "scroll-margin-inline",
  352. "scroll-margin-inline-end",
  353. "scroll-margin-inline-start",
  354. "scroll-margin-left",
  355. "scroll-margin-right",
  356. "scroll-margin-top",
  357. "scroll-padding",
  358. "scroll-padding-block",
  359. "scroll-padding-block-end",
  360. "scroll-padding-block-start",
  361. "scroll-padding-bottom",
  362. "scroll-padding-inline",
  363. "scroll-padding-inline-end",
  364. "scroll-padding-inline-start",
  365. "scroll-padding-left",
  366. "scroll-padding-right",
  367. "scroll-padding-top",
  368. "scroll-snap-align",
  369. "scroll-snap-stop",
  370. "scroll-snap-type",
  371. "scrollbar-color",
  372. "scrollbar-gutter",
  373. "scrollbar-width",
  374. "shape-image-threshold",
  375. "shape-margin",
  376. "shape-outside",
  377. "tab-size",
  378. "table-layout",
  379. "ruby-position",
  380. "text-combine-upright",
  381. "touch-action",
  382. "transition",
  383. "transition-delay",
  384. "transition-duration",
  385. "transition-property",
  386. "transition-timing-function",
  387. "will-change",
  388. "unicode-bidi",
  389. "unicode-range",
  390. "user-select",
  391. "widows",
  392. "writing-mode"
  393. ]