@cryptic-css/core
Advanced tools
Comparing version 0.0.7 to 0.0.8
{ | ||
"name": "@cryptic-css/core", | ||
"version": "0.0.7", | ||
"version": "0.0.8", | ||
"description": "> TODO: description", | ||
@@ -35,3 +35,3 @@ "author": "Viktor Vincze <viktor.vincze@doclerholding.com>", | ||
}, | ||
"gitHead": "a08340f4498a52f67a6bafa32654f1ea135304b3" | ||
"gitHead": "1eec7967b84dcebe17d54a4c3dd6b02529bf4d64" | ||
} |
@@ -26,9 +26,12 @@ // @ts-nocheck | ||
/** | ||
* # hurka | ||
* The **`animation-duration`** [CSS](https://developer.mozilla.org/en-US/docs/CSS) property sets the length of time that an animation takes to complete one cycle. | ||
* # animation-play-state (aps) | ||
* The **`animation-play-state`** [CSS](https://developer.mozilla.org/en-US/docs/CSS) property sets whether an animation is running or paused. | ||
* | ||
* - `i`: `inline` | ||
* - `b`: `block` | ||
* --- | ||
* ## Shorthands | ||
* - **p**: `paused` | ||
* - **r**: `running` | ||
* | ||
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/animation-duration | ||
* --- | ||
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/animation-play-state | ||
*/ | ||
@@ -35,0 +38,0 @@ const y = foo => { |
@@ -40,6 +40,8 @@ // @ts-nocheck | ||
* ${turndownService.turndown(description.replace(/ href="/g, ' href="https://developer.mozilla.org'))} | ||
${valueMap[prop] ? ' * ## \n * ## Shorthands' : ''} | ||
${valueMap[prop] ? ' *\n * --- \n * ## Shorthands' : ''} | ||
${Object.entries({ ...valueMap[prop] }) | ||
.map(([k, v]) => ` * - **${k}**: \`${v}\``) | ||
.join('\n')} | ||
* | ||
* --- | ||
* @see ${seeURL} | ||
@@ -46,0 +48,0 @@ `.trim() |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
1192345
7944