changed to new functions
All checks were successful
Deploy Docs to Synology / deploy (push) Successful in 3s
All checks were successful
Deploy Docs to Synology / deploy (push) Successful in 3s
This commit is contained in:
@@ -61,7 +61,7 @@ const BasicDemo = () => {
|
||||
onclick: () => accepted(!accepted())
|
||||
});
|
||||
};
|
||||
Mount(BasicDemo, '#demo-basic');
|
||||
mount(BasicDemo, '#demo-basic');
|
||||
```
|
||||
|
||||
### Toggle Switch
|
||||
@@ -89,7 +89,7 @@ const ToggleDemo = () => {
|
||||
: Div({ class: 'alert alert-soft' }, 'Notifications are OFF')
|
||||
]);
|
||||
};
|
||||
Mount(ToggleDemo, '#demo-toggle');
|
||||
mount(ToggleDemo, '#demo-toggle');
|
||||
```
|
||||
|
||||
### Disabled State
|
||||
@@ -116,7 +116,7 @@ const DisabledDemo = () => {
|
||||
})
|
||||
]);
|
||||
};
|
||||
Mount(DisabledDemo, '#demo-disabled');
|
||||
mount(DisabledDemo, '#demo-disabled');
|
||||
```
|
||||
|
||||
### Reactive Multiple Selection
|
||||
@@ -169,7 +169,7 @@ const MultipleDemo = () => {
|
||||
})
|
||||
]);
|
||||
};
|
||||
Mount(MultipleDemo, '#demo-multiple');
|
||||
mount(MultipleDemo, '#demo-multiple');
|
||||
```
|
||||
|
||||
### With Tooltip
|
||||
@@ -195,7 +195,7 @@ const TooltipDemo = () => {
|
||||
})
|
||||
);
|
||||
};
|
||||
Mount(TooltipDemo, '#demo-tooltip');
|
||||
mount(TooltipDemo, '#demo-tooltip');
|
||||
```
|
||||
|
||||
### All Variants
|
||||
@@ -244,7 +244,7 @@ const VariantsDemo = () => {
|
||||
])
|
||||
]);
|
||||
};
|
||||
Mount(VariantsDemo, '#demo-variants');
|
||||
mount(VariantsDemo, '#demo-variants');
|
||||
```
|
||||
|
||||
### Form Example
|
||||
@@ -288,5 +288,5 @@ const FormDemo = () => {
|
||||
: null
|
||||
]);
|
||||
};
|
||||
Mount(FormDemo, '#demo-form');
|
||||
mount(FormDemo, '#demo-form');
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user