feat(build): migrate from Prettier to Oxfmt for docs

Signed-off-by: hainenber <dotronghai96@gmail.com>
This commit is contained in:
hainenber
2026-07-28 21:38:39 +07:00
parent af9729a861
commit 1bbc63099b
2163 changed files with 89307 additions and 32009 deletions

View File

@@ -34,19 +34,19 @@ The CachedLabel component from Superset's UI library.
component="CachedLabel"
props={{}}
controls={[
{
name: "cachedTimestamp",
label: "Cached Timestamp",
type: "text",
description: "ISO timestamp of when the data was cached"
},
{
name: "className",
label: "Class Name",
type: "text",
description: "Additional CSS class for the label"
}
]}
{
name: 'cachedTimestamp',
label: 'Cached Timestamp',
type: 'text',
description: 'ISO timestamp of when the data was cached',
},
{
name: 'className',
label: 'Class Name',
type: 'text',
description: 'Additional CSS class for the label',
},
]}
/>
## Try It
@@ -57,14 +57,12 @@ Edit the code below to experiment with the component:
function Demo() {
return (
<CachedLabel
// Add props here
// Add props here
/>
);
}
```
## Import
```tsx