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 = () => {
])
]);
};
$mount(BasicDemo, '#demo-basic');
Mount(BasicDemo, '#demo-basic');
```
### With Reactive Legend
@@ -80,7 +80,7 @@ const ReactiveDemo = () => {
])
]);
};
$mount(ReactiveDemo, '#demo-reactive');
Mount(ReactiveDemo, '#demo-reactive');
```
### Address Form
@@ -122,7 +122,7 @@ const AddressDemo = () => {
])
]);
};
$mount(AddressDemo, '#demo-address');
Mount(AddressDemo, '#demo-address');
```
### Payment Method
@@ -163,7 +163,7 @@ const PaymentDemo = () => {
])
]);
};
$mount(PaymentDemo, '#demo-payment');
Mount(PaymentDemo, '#demo-payment');
```
### Preferences Panel
@@ -212,7 +212,7 @@ const PreferencesDemo = () => {
])
]);
};
$mount(PreferencesDemo, '#demo-preferences');
Mount(PreferencesDemo, '#demo-preferences');
```
### Registration Form
@@ -270,7 +270,7 @@ const RegistrationDemo = () => {
])
]);
};
$mount(RegistrationDemo, '#demo-registration');
Mount(RegistrationDemo, '#demo-registration');
```
### All Variants
@@ -296,7 +296,7 @@ const VariantsDemo = () => {
Fieldset({ legend: 'With Background', class: 'w-full bg-base-100' }, [commonContent])
]);
};
$mount(VariantsDemo, '#demo-variants');
Mount(VariantsDemo, '#demo-variants');
```
<script>
@@ -318,7 +318,7 @@ $mount(VariantsDemo, '#demo-variants');
])
]);
};
$mount(BasicDemo, basicTarget);
Mount(BasicDemo, basicTarget);
}
// 2. With Reactive Legend
@@ -353,7 +353,7 @@ $mount(VariantsDemo, '#demo-variants');
])
]);
};
$mount(ReactiveDemo, reactiveTarget);
Mount(ReactiveDemo, reactiveTarget);
}
// 3. Address Form
@@ -388,7 +388,7 @@ $mount(VariantsDemo, '#demo-variants');
])
]);
};
$mount(AddressDemo, addressTarget);
Mount(AddressDemo, addressTarget);
}
// 4. Payment Method
@@ -422,7 +422,7 @@ $mount(VariantsDemo, '#demo-variants');
])
]);
};
$mount(PaymentDemo, paymentTarget);
Mount(PaymentDemo, paymentTarget);
}
// 5. Preferences Panel
@@ -464,7 +464,7 @@ $mount(VariantsDemo, '#demo-variants');
])
]);
};
$mount(PreferencesDemo, preferencesTarget);
Mount(PreferencesDemo, preferencesTarget);
}
// 6. Registration Form
@@ -515,7 +515,7 @@ $mount(VariantsDemo, '#demo-variants');
])
]);
};
$mount(RegistrationDemo, registrationTarget);
Mount(RegistrationDemo, registrationTarget);
}
// 7. All Variants
@@ -534,7 +534,7 @@ $mount(VariantsDemo, '#demo-variants');
Fieldset({ legend: 'With Background', class: 'w-full bg-base-100' }, [commonContent])
]);
};
$mount(VariantsDemo, variantsTarget);
Mount(VariantsDemo, variantsTarget);
}
};