Skip to content

Commit 20ccc51

Browse files
author
Olivier Auverlot
committed
Merge branch 'pagination' of github.com:olivierauverlot/SQLPage into pagination
2 parents bfa3217 + 1fe8b5f commit 20ccc51

File tree

8 files changed

+402
-19
lines changed

8 files changed

+402
-19
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# CHANGELOG.md
22

3+
## unrelease
4+
- add support for postgres range types
5+
36
## v0.39.1 (2025-11-08)
47
- More precise server timing tracking to debug performance issues
58
- Fix missing server timing header in some cases

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ panic = "abort"
1818
codegen-units = 2
1919

2020
[dependencies]
21-
sqlx = { package = "sqlx-oldapi", version = "0.6.50", default-features = false, features = [
21+
sqlx = { package = "sqlx-oldapi", version = "0.6.51", default-features = false, features = [
2222
"any",
2323
"runtime-tokio-rustls",
2424
"migrate",
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<div class="color-swatch-container" style="display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; margin: 2rem 0;">
2+
{{#each_row}}
3+
<div class="color-swatch-card" style="background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; padding: 1.5rem; backdrop-filter: blur(10px);">
4+
<div class="color-preview" style="width: 100%; height: 120px; border-radius: 8px; margin-bottom: 1rem; border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); background: {{#if hex}}{{hex}}{{else}}var(--{{css_var}}){{/if}};">
5+
</div>
6+
<div class="color-info">
7+
<h4 style="color: #ffffff; font-size: 1.1rem; margin-bottom: 0.5rem; font-weight: 600;">{{name}}</h4>
8+
{{#if hex}}
9+
<div style="font-family: monospace; font-size: 0.9rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 0.25rem;">{{hex}}</div>
10+
{{/if}}
11+
{{#if css_var}}
12+
<div style="font-family: monospace; font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); margin-bottom: 0.25rem;">{{css_var}}</div>
13+
{{/if}}
14+
{{#if description}}
15+
<p style="font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); margin-top: 0.5rem; line-height: 1.4;">{{description}}</p>
16+
{{/if}}
17+
</div>
18+
</div>
19+
{{/each_row}}
20+
</div>
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<div style="display: flex; flex-direction: column; gap: 2rem; margin: 2rem 0;">
2+
{{#each_row}}
3+
<div class="typography-sample" style="padding: 2rem; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px;">
4+
{{#if title}}
5+
<div style="font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem;">{{title}}</div>
6+
{{/if}}
7+
<div style="font-family: {{font_family}}; font-size: {{font_size}}; font-weight: {{font_weight}}; line-height: {{line_height}}; color: {{text_color}}; letter-spacing: {{letter_spacing}}; margin-bottom: 1rem;">
8+
{{sample_text}}
9+
</div>
10+
{{#if description}}
11+
<div style="font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); line-height: 1.5;">{{description}}</div>
12+
{{/if}}
13+
{{#if usage}}
14+
<div style="font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); margin-top: 0.5rem; font-style: italic;">Use for: {{usage}}</div>
15+
{{/if}}
16+
</div>
17+
{{/each_row}}
18+
</div>

0 commit comments

Comments
 (0)