update components
All checks were successful
Deploy Docs to Synology / deploy (push) Successful in 4s

This commit is contained in:
2026-04-27 01:57:14 +02:00
parent e3e5082247
commit 7590438780
8 changed files with 115 additions and 175 deletions

View File

@@ -76,6 +76,8 @@ const date = $('');
mount(
Datepicker({
value: date,
range: true,
hour: true,
placeholder: 'Select date',
onChange: (val) => console.log('Date:', val)
}),
@@ -143,17 +145,14 @@ mount(
<div id="demo-rating"></div>
```js
const stars = $('');
const stars = $(0)
mount(
Rating({
value: stars,
count: 5,
mask: 'mask-star',
onchange: (v) => console.log('Rated:', v)
}),
Rating({}, [
RatingItems({ count: 5, value: stars, name: 'rat1', class:"mask-star" }),
]),
'#demo-rating'
);
)
```
## Select