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 Navigation Links
@@ -79,7 +79,7 @@ const LinksDemo = () => {
])
]);
};
$mount(LinksDemo, '#demo-links');
Mount(LinksDemo, '#demo-links');
```
### With Dropdown Menu
@@ -120,7 +120,7 @@ const DropdownDemo = () => {
])
]);
};
$mount(DropdownDemo, '#demo-dropdown');
Mount(DropdownDemo, '#demo-dropdown');
```
### With Search
@@ -156,7 +156,7 @@ const SearchDemo = () => {
])
]);
};
$mount(SearchDemo, '#demo-search');
Mount(SearchDemo, '#demo-search');
```
### With Avatar and Dropdown
@@ -195,7 +195,7 @@ const AvatarDemo = () => {
])
]);
};
$mount(AvatarDemo, '#demo-avatar');
Mount(AvatarDemo, '#demo-avatar');
```
### Responsive Navbar
@@ -234,7 +234,7 @@ const ResponsiveDemo = () => {
]) : null
]);
};
$mount(ResponsiveDemo, '#demo-responsive');
Mount(ResponsiveDemo, '#demo-responsive');
```
### With Brand and Actions
@@ -265,7 +265,7 @@ const BrandDemo = () => {
])
]);
};
$mount(BrandDemo, '#demo-brand');
Mount(BrandDemo, '#demo-brand');
```
### All Variants
@@ -300,7 +300,7 @@ const VariantsDemo = () => {
])
]);
};
$mount(VariantsDemo, '#demo-variants');
Mount(VariantsDemo, '#demo-variants');
```
<script>
@@ -323,7 +323,7 @@ $mount(VariantsDemo, '#demo-variants');
])
]);
};
$mount(BasicDemo, basicTarget);
Mount(BasicDemo, basicTarget);
}
// 2. With Navigation Links
@@ -357,7 +357,7 @@ $mount(VariantsDemo, '#demo-variants');
])
]);
};
$mount(LinksDemo, linksTarget);
Mount(LinksDemo, linksTarget);
}
// 3. With Dropdown Menu
@@ -391,7 +391,7 @@ $mount(VariantsDemo, '#demo-variants');
])
]);
};
$mount(DropdownDemo, dropdownTarget);
Mount(DropdownDemo, dropdownTarget);
}
// 4. With Search
@@ -420,7 +420,7 @@ $mount(VariantsDemo, '#demo-variants');
])
]);
};
$mount(SearchDemo, searchTarget);
Mount(SearchDemo, searchTarget);
}
// 5. With Avatar and Dropdown
@@ -452,7 +452,7 @@ $mount(VariantsDemo, '#demo-variants');
])
]);
};
$mount(AvatarDemo, avatarTarget);
Mount(AvatarDemo, avatarTarget);
}
// 6. Responsive Navbar
@@ -484,7 +484,7 @@ $mount(VariantsDemo, '#demo-variants');
]) : null
]);
};
$mount(ResponsiveDemo, responsiveTarget);
Mount(ResponsiveDemo, responsiveTarget);
}
// 7. With Brand and Actions
@@ -508,7 +508,7 @@ $mount(VariantsDemo, '#demo-variants');
])
]);
};
$mount(BrandDemo, brandTarget);
Mount(BrandDemo, brandTarget);
}
// 8. All Variants
@@ -536,7 +536,7 @@ $mount(VariantsDemo, '#demo-variants');
])
]);
};
$mount(VariantsDemo, variantsTarget);
Mount(VariantsDemo, variantsTarget);
}
};