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

@@ -38,7 +38,7 @@ const BasicDemo = () => {
placeholder: 'Choose a date...'
});
};
$mount(BasicDemo, '#demo-basic');
Mount(BasicDemo, '#demo-basic');
```
### Date Range Picker
@@ -66,7 +66,7 @@ const RangeDemo = () => {
]) : null
]);
};
$mount(RangeDemo, '#demo-range');
Mount(RangeDemo, '#demo-range');
```
### With Time Selection
@@ -94,7 +94,7 @@ const TimeDemo = () => {
]) : null
]);
};
$mount(TimeDemo, '#demo-time');
Mount(TimeDemo, '#demo-time');
```
### Range with Time
@@ -123,7 +123,7 @@ const RangeTimeDemo = () => {
]) : null
]);
};
$mount(RangeTimeDemo, '#demo-range-time');
Mount(RangeTimeDemo, '#demo-range-time');
```
### Reactive Display
@@ -155,7 +155,7 @@ const ReactiveDemo = () => {
])
]);
};
$mount(ReactiveDemo, '#demo-reactive');
Mount(ReactiveDemo, '#demo-reactive');
```
### All Variants
@@ -189,7 +189,7 @@ const VariantsDemo = () => {
})
]);
};
$mount(VariantsDemo, '#demo-variants');
Mount(VariantsDemo, '#demo-variants');
```
<script>
@@ -208,7 +208,7 @@ $mount(VariantsDemo, '#demo-variants');
placeholder: 'Choose a date...'
});
};
$mount(BasicDemo, basicTarget);
Mount(BasicDemo, basicTarget);
}
// 2. Date Range Picker
@@ -229,7 +229,7 @@ $mount(VariantsDemo, '#demo-variants');
]) : null
]);
};
$mount(RangeDemo, rangeTarget);
Mount(RangeDemo, rangeTarget);
}
// 3. With Time Selection
@@ -250,7 +250,7 @@ $mount(VariantsDemo, '#demo-variants');
]) : null
]);
};
$mount(TimeDemo, timeTarget);
Mount(TimeDemo, timeTarget);
}
// 4. Range with Time
@@ -272,7 +272,7 @@ $mount(VariantsDemo, '#demo-variants');
]) : null
]);
};
$mount(RangeTimeDemo, rangeTimeTarget);
Mount(RangeTimeDemo, rangeTimeTarget);
}
// 5. Reactive Display
@@ -297,7 +297,7 @@ $mount(VariantsDemo, '#demo-variants');
])
]);
};
$mount(ReactiveDemo, reactiveTarget);
Mount(ReactiveDemo, reactiveTarget);
}
// 6. All Variants
@@ -324,7 +324,7 @@ $mount(VariantsDemo, '#demo-variants');
})
]);
};
$mount(VariantsDemo, variantsTarget);
Mount(VariantsDemo, variantsTarget);
}
};