Skip to content

Commit

Permalink
Merge pull request #37 from axzilla/dev
Browse files Browse the repository at this point in the history
fix(datepicker): language config is now initialized correctly
  • Loading branch information
axzilla authored Jan 10, 2025
2 parents 6560574 + e373dbf commit fe4ed0c
Show file tree
Hide file tree
Showing 30 changed files with 501 additions and 485 deletions.
4 changes: 4 additions & 0 deletions assets/css/output.css
Original file line number Diff line number Diff line change
Expand Up @@ -1678,6 +1678,10 @@ body {
padding-bottom: 2rem;
}

.pb-0 {
padding-bottom: 0px;
}

.pb-4 {
padding-bottom: 1rem;
}
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ go 1.23.3

require (
github.com/Oudwins/tailwind-merge-go v0.2.0
github.com/a-h/templ v0.2.793
github.com/a-h/templ v0.3.819
github.com/joho/godotenv v1.5.1
)
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ github.com/Oudwins/tailwind-merge-go v0.2.0 h1:rtVHgYmLwwae4P+K6//ceRuUdyz3Bny6f
github.com/Oudwins/tailwind-merge-go v0.2.0/go.mod h1:kkZodgOPvZQ8f7SIrlWkG/w1g9JTbtnptnePIh3V72U=
github.com/a-h/templ v0.2.793 h1:Io+/ocnfGWYO4VHdR0zBbf39PQlnzVCVVD+wEEs6/qY=
github.com/a-h/templ v0.2.793/go.mod h1:lq48JXoUvuQrU0VThrK31yFwdRjTCnIE5bcPCM9IP1w=
github.com/a-h/templ v0.3.819 h1:KDJ5jTFN15FyJnmSmo2gNirIqt7hfvBD2VXVDTySckM=
github.com/a-h/templ v0.3.819/go.mod h1:iDJKJktpttVKdWoTkRNNLcllRI+BlpopJc+8au3gOUo=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
Expand Down
4 changes: 2 additions & 2 deletions internal/ui/pages/how_to_use.templ
Original file line number Diff line number Diff line change
Expand Up @@ -231,15 +231,15 @@ templ HowToUse() {
<p class="mb-4">Before using TemplUI, ensure you have these tools installed:</p>
<div class="space-y-6">
<div>
<h3 class="text-xl font-semibold mb-2">1. Go (1.20 or later)</h3>
<h3 class="text-xl font-semibold mb-2">1. Go (1.23 or later)</h3>
<p class="mb-2">Check your Go version:</p>
@components.Code(components.CodeProps{Language: "shell", ShowCopyButton: true}) {
{ installGo }
}
<p class="text-sm mt-2">For installation instructions, visit <a href="https://golang.org/dl" class="text-primary underline">golang.org/dl</a>.</p>
</div>
<div>
<h3 class="text-xl font-semibold mb-2">2. Templ</h3>
<h3 class="text-xl font-semibold mb-2">2. Templ (v0.3.819 or later)</h3>
<p class="mb-2">Install the Templ CLI:</p>
@components.Code(components.CodeProps{Language: "shell", ShowCopyButton: true}) {
{ installTempl }
Expand Down
38 changes: 19 additions & 19 deletions pkg/components/accordion_templ.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 13 additions & 13 deletions pkg/components/alert_templ.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit fe4ed0c

Please sign in to comment.