Update new functions

This commit is contained in:
2026-04-06 03:19:15 +02:00
parent f9095332eb
commit 294547fc56
139 changed files with 2249 additions and 2109 deletions

View File

@@ -47,7 +47,7 @@ const BasicDemo = () => {
})
]);
};
$mount(BasicDemo, '#demo-basic');
Mount(BasicDemo, '#demo-basic');
```
### With Icons
@@ -82,7 +82,7 @@ const IconsDemo = () => {
})
]);
};
$mount(IconsDemo, '#demo-icons');
Mount(IconsDemo, '#demo-icons');
```
### Reactive Values
@@ -125,7 +125,7 @@ const ReactiveDemo = () => {
])
]);
};
$mount(ReactiveDemo, '#demo-reactive');
Mount(ReactiveDemo, '#demo-reactive');
```
### With Trend Indicators
@@ -160,7 +160,7 @@ const TrendsDemo = () => {
})
]);
};
$mount(TrendsDemo, '#demo-trends');
Mount(TrendsDemo, '#demo-trends');
```
### Multiple Stats in Row
@@ -201,7 +201,7 @@ const MultipleDemo = () => {
})
]);
};
$mount(MultipleDemo, '#demo-multiple');
Mount(MultipleDemo, '#demo-multiple');
```
### Dashboard Example
@@ -266,7 +266,7 @@ const DashboardDemo = () => {
])
]);
};
$mount(DashboardDemo, '#demo-dashboard');
Mount(DashboardDemo, '#demo-dashboard');
```
### All Variants
@@ -311,7 +311,7 @@ const VariantsDemo = () => {
})
]);
};
$mount(VariantsDemo, '#demo-variants');
Mount(VariantsDemo, '#demo-variants');
```
### Compact Stats
@@ -348,7 +348,7 @@ const CompactDemo = () => {
})
]);
};
$mount(CompactDemo, '#demo-compact');
Mount(CompactDemo, '#demo-compact');
```
<script>
@@ -377,7 +377,7 @@ $mount(CompactDemo, '#demo-compact');
})
]);
};
$mount(BasicDemo, basicTarget);
Mount(BasicDemo, basicTarget);
}
// 2. With Icons
@@ -405,7 +405,7 @@ $mount(CompactDemo, '#demo-compact');
})
]);
};
$mount(IconsDemo, iconsTarget);
Mount(IconsDemo, iconsTarget);
}
// 3. Reactive Values
@@ -441,7 +441,7 @@ $mount(CompactDemo, '#demo-compact');
])
]);
};
$mount(ReactiveDemo, reactiveTarget);
Mount(ReactiveDemo, reactiveTarget);
}
// 4. With Trend Indicators
@@ -469,7 +469,7 @@ $mount(CompactDemo, '#demo-compact');
})
]);
};
$mount(TrendsDemo, trendsTarget);
Mount(TrendsDemo, trendsTarget);
}
// 5. Multiple Stats in Row
@@ -503,7 +503,7 @@ $mount(CompactDemo, '#demo-compact');
})
]);
};
$mount(MultipleDemo, multipleTarget);
Mount(MultipleDemo, multipleTarget);
}
// 6. Dashboard Example
@@ -561,7 +561,7 @@ $mount(CompactDemo, '#demo-compact');
])
]);
};
$mount(DashboardDemo, dashboardTarget);
Mount(DashboardDemo, dashboardTarget);
}
// 7. All Variants
@@ -599,7 +599,7 @@ $mount(CompactDemo, '#demo-compact');
})
]);
};
$mount(VariantsDemo, variantsTarget);
Mount(VariantsDemo, variantsTarget);
}
// 8. Compact Stats
@@ -629,7 +629,7 @@ $mount(CompactDemo, '#demo-compact');
})
]);
};
$mount(CompactDemo, compactTarget);
Mount(CompactDemo, compactTarget);
}
};