Skip to content

Commit 05fd334

Browse files
Merge pull request #20 from NxtLvLSoftware/dev-to-dist
Merge dev changes to dist
2 parents c4da683 + 8fc9f33 commit 05fd334

4 files changed

Lines changed: 41 additions & 10 deletions

File tree

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,17 @@
1818
Inspired by <a href="https://github.com/archtechx/alpine-typescript">archtechx/alpine-typescript</a>.
1919
</h6>
2020

21+
<p align="center">
22+
<a href="https://github.com/NxtLvlSoftware/alpine-typescript/actions"><img src="https://img.shields.io/github/actions/workflow/status/NxtLvlSoftware/alpine-typescript/ci.yml?branch=dev" alt="Build Status"></a>
23+
<a href="https://www.npmjs.com/package/@nxtlvlsoftware/alpine-typescript"><img src="https://img.shields.io/npm/dt/%40nxtlvlsoftware/alpine-typescript" alt="Total Downloads"></a>
24+
<a href="https://github.com/NxtLvlSoftware/alpine-typescript/releases"><img src="https://img.shields.io/npm/v/%40nxtlvlsoftware/alpine-typescript" alt="Latest Release"></a>
25+
<a href="https://github.com/NxtLvlSoftware/alpine-typescript/blob/dev/LICENSE"><img src="https://img.shields.io/npm/l/%40nxtlvlsoftware%2Falpine-typescript" alt="License"></a>
26+
</p>
27+
2128
<br /><hr /><br />
2229

30+
* [Documentation](https://nxtlvlsoftware.github.io/alpine-typescript)
31+
* [Example](https://nxtlvlsoftware.github.io/alpine-typescript/example/)
2332
* [Installation](#installation)
2433
* [Usage](#usage)
2534
* [Projects](#in-projects)

examples/project/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/project/src/index.html

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<!-- Alert component styles from https://flowbite.com/docs/components/alerts/ -->
3030
<div
3131
x-show="alertState"
32-
class="flex items-center p-4 text-blue-800 rounded-lg bg-blue-50 dark:bg-gray-800 dark:text-blue-400"
32+
class="flex items-center p-4 text-blue-800 rounded-lg bg-blue-50/80 dark:bg-gray-800/80 dark:text-blue-400"
3333
role="alert"
3434
x-transition
3535
x-transition.duration.300ms
@@ -60,7 +60,7 @@
6060
</div>
6161
</div>
6262

63-
<div class="pt-16 flex justify-center">
63+
<div class="mt-24 mb-64 lg:mb-32 flex justify-center">
6464
<div class="grid grid-cols-1 gap-4">
6565
<!-- Checkbox component styles from https://flowbite.com/docs/forms/toggle/ -->
6666
<label
@@ -155,5 +155,30 @@
155155
</label>
156156
</div>
157157
</div>
158+
<footer
159+
class="fixed bottom-0 left-0 z-20 w-full p-4 bg-white/60 border-t border-gray-200 shadow text-center grid grid-cols-1 lg:flex lg:grid-cols-2 lg:items-center lg:justify-between lg:p-6 dark:bg-gray-800/60 dark:border-gray-600"
160+
>
161+
<span class="order-2 lg:order-1 w-full lg:w-auto col-span-1 text-sm text-gray-500 dark:text-gray-400 mt-3 lg:mt-0">© 2023 <a href="https://github.com/NxtLvlSoftware"
162+
class="hover:underline">NxtLvl Software</a>. Free to use under the <a href="https://github.com/NxtLvlSoftware/alpine-typescript/blob/dev/LICENSE"
163+
class="hover:underline">MIT License</a>.
164+
</span>
165+
<ul class="order-1 lg:order-2 w-full lg:w-auto col-span-1 flex flex-wrap items-center mt-3 text-sm text-center font-medium text-gray-500 dark:text-gray-400 lg:mt-0">
166+
<li class="w-full lg:w-auto">
167+
<a href="https://github.com/NxtLvlSoftware/alpine-typescript" class="hover:underline lg:mr-4">
168+
GitHub
169+
</a>
170+
</li>
171+
<li class="w-full lg:w-auto">
172+
<a href="https://nxtlvlsoftware.github.io/alpine-typescript/" class="hover:underline lg:mr-4">
173+
Documentation
174+
</a>
175+
</li>
176+
<li class="w-full lg:w-auto">
177+
<a href="https://github.com/NxtLvLSoftware/alpine-typescript/tree/dev/examples/project" class="hover:underline">
178+
Source Code
179+
</a>
180+
</li>
181+
</ul>
182+
</footer>
158183
</body>
159184
</html>

typedoc.json

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
{
2-
"navigationLinks": {
3-
"GitHub": "https://github.com/NxtLvlSoftware/alpine-typescript",
4-
"Twitter": "https://twitter.com/NxtLvlSoftware"
5-
},
62
"sidebarLinks": {
73
"GitHub": "https://github.com/NxtLvlSoftware/alpine-typescript",
84
"Twitter": "https://twitter.com/NxtLvlSoftware",
9-
"Home": "/index.html"
5+
"Home": "/index.html",
6+
"Example": "/example/"
107
}
118
}

0 commit comments

Comments
 (0)