add reflects column

pull/481/head^2
Cory LaViska 2021-07-12 09:38:06 -04:00
rodzic d605de4e07
commit a30adac959
2 zmienionych plików z 8 dodań i 0 usunięć

Wyświetl plik

@ -13,6 +13,7 @@
<th>Name</th>
<th>Attribute</th>
<th>Description</th>
<th>Reflects</th>
<th>Type</th>
<th>Default</th>
</tr>
@ -25,6 +26,9 @@
<td class="nowrap"><code>${escapeHtml(prop.name)}</code></td>
<td class="nowrap">${prop.attribute ? `<code>${escapeHtml(prop.attribute)}</code>` : '-'}</td>
<td>${escapeHtml(prop.description)}</td>
<td style="text-align: center;">${
prop.reflects ? '<sl-icon label="yes" name="check"></sl-icon>' : ''
}</td>
<td>${prop.type?.text ? `<code>${escapeHtml(prop.type?.text || '')}</code>` : '-'}</td>
<td>${prop.default ? `<code>${escapeHtml(prop.default)}</code>` : '-'}</td>
</tr>

Wyświetl plik

@ -6,6 +6,10 @@ Components with the <sl-badge type="warning" pill>Experimental</sl-badge> badge
_During the beta period, these restrictions may be relaxed in the event of a mission-critical bug._ 🐛
## Next
- Added "Reflects" column to the properties table
## 2.0.0-beta.46
This release improves the developer experience of `<sl-animation>`. Previously, an animation was assumed to be playing unless the `pause` attribute was set. This behavior has been reversed and `pause` has been removed. Now, animations will not play until the new `play` attribute is applied.