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

@@ -39,7 +39,7 @@ const BasicDemo = () => {
onclick: () => accepted(!accepted())
});
};
$mount(BasicDemo, '#demo-basic');
Mount(BasicDemo, '#demo-basic');
```
### Toggle Switch
@@ -67,7 +67,7 @@ const ToggleDemo = () => {
: Div({ class: 'alert alert-soft' }, 'Notifications are OFF')
]);
};
$mount(ToggleDemo, '#demo-toggle');
Mount(ToggleDemo, '#demo-toggle');
```
### With Tooltip
@@ -90,7 +90,7 @@ const TooltipDemo = () => {
onclick: () => darkMode(!darkMode())
});
};
$mount(TooltipDemo, '#demo-tooltip');
Mount(TooltipDemo, '#demo-tooltip');
```
### Disabled State
@@ -117,7 +117,7 @@ const DisabledDemo = () => {
})
]);
};
$mount(DisabledDemo, '#demo-disabled');
Mount(DisabledDemo, '#demo-disabled');
```
### Reactive Multiple Selection
@@ -170,7 +170,7 @@ const MultipleDemo = () => {
})
]);
};
$mount(MultipleDemo, '#demo-multiple');
Mount(MultipleDemo, '#demo-multiple');
```
### All Variants
@@ -219,7 +219,7 @@ const VariantsDemo = () => {
])
]);
};
$mount(VariantsDemo, '#demo-variants');
Mount(VariantsDemo, '#demo-variants');
```
### Form Example
@@ -263,7 +263,7 @@ const FormDemo = () => {
: null
]);
};
$mount(FormDemo, '#demo-form');
Mount(FormDemo, '#demo-form');
```
<script>
@@ -282,7 +282,7 @@ $mount(FormDemo, '#demo-form');
onclick: () => accepted(!accepted())
});
};
$mount(BasicDemo, basicTarget);
Mount(BasicDemo, basicTarget);
}
// 2. Toggle Switch
@@ -303,7 +303,7 @@ $mount(FormDemo, '#demo-form');
: Div({ class: 'alert alert-soft' }, 'Notifications are OFF')
]);
};
$mount(ToggleDemo, toggleTarget);
Mount(ToggleDemo, toggleTarget);
}
// 3. With Tooltip
@@ -319,7 +319,7 @@ $mount(FormDemo, '#demo-form');
onclick: () => darkMode(!darkMode())
});
};
$mount(TooltipDemo, tooltipTarget);
Mount(TooltipDemo, tooltipTarget);
}
// 4. Disabled State
@@ -339,7 +339,7 @@ $mount(FormDemo, '#demo-form');
})
]);
};
$mount(DisabledDemo, disabledTarget);
Mount(DisabledDemo, disabledTarget);
}
// 5. Reactive Multiple Selection
@@ -385,7 +385,7 @@ $mount(FormDemo, '#demo-form');
})
]);
};
$mount(MultipleDemo, multipleTarget);
Mount(MultipleDemo, multipleTarget);
}
// 6. All Variants
@@ -427,7 +427,7 @@ $mount(FormDemo, '#demo-form');
])
]);
};
$mount(VariantsDemo, variantsTarget);
Mount(VariantsDemo, variantsTarget);
}
// 7. Form Example
@@ -464,7 +464,7 @@ $mount(FormDemo, '#demo-form');
: null
]);
};
$mount(FormDemo, formTarget);
Mount(FormDemo, formTarget);
}
};