Skip to content

Commit 76d8bac

Browse files
committed
1.12.4
1 parent a4afc23 commit 76d8bac

File tree

8 files changed

+47
-5
lines changed

8 files changed

+47
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
[//]: # (Don't use <tags>)
22

3+
## v1.12.4
4+
5+
> `2025-11-07`
6+
7+
### 🐞 Bug Fixes
8+
- datepicker position fix #148
9+
310
## v1.12.3
411

512
> `2025-10-30`

index.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1532,6 +1532,13 @@ div > div:first-of-type[style*="none;"] + .vfb-util-props-separator-top {
15321532
@apply -mb-2;
15331533
}
15341534

1535+
.vfb-config-datepicker .flatpickr-calendar {
1536+
@apply left-auto right-0;
1537+
}
1538+
.vfb-config-datepicker .flatpickr-calendar:before {
1539+
@apply left-auto right-6 top-auto bottom-full;
1540+
}
1541+
15351542
.vfb-mx-px {
15361543
@apply mx-px;
15371544
}

index.mjs

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

nuxt/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vueform/builder-nuxt",
3-
"version": "1.28.0",
3+
"version": "1.29.0",
44
"description": "Nuxt module for Vueform Builder",
55
"repository": "vueform/builder-nuxt",
66
"license": "MIT",
@@ -36,7 +36,7 @@
3636
"dependencies": {
3737
"@nuxt/kit": "^3.8.0",
3838
"@vueform/vueform": "^1.13.6",
39-
"@vueform/builder": "^1.12.3"
39+
"@vueform/builder": "^1.12.4"
4040
},
4141
"devDependencies": {
4242
"@nuxt/devtools": "latest",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": false,
33
"name": "@vueform/builder",
4-
"version": "1.12.3",
4+
"version": "1.12.4",
55
"description": "Vueform Builder development build.",
66
"homepage": "https://vueform.com",
77
"license": "SEE LICENSE IN LICENSE.txt",

scss/_utils.scss

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -553,6 +553,16 @@ div > div:first-of-type[style*="none;"] + .vfb-util-props-separator-top {
553553
@apply -mb-2;
554554
}
555555

556+
.vfb-config-datepicker {
557+
.flatpickr-calendar {
558+
@apply left-auto right-0;
559+
560+
&:before {
561+
@apply left-auto right-6 top-auto bottom-full;
562+
}
563+
}
564+
}
565+
556566
.vfb-mx-px {
557567
@apply mx-px;
558568
}

tailwind.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1532,6 +1532,13 @@ div > div:first-of-type[style*="none;"] + .vfb-util-props-separator-top {
15321532
@apply -mb-2;
15331533
}
15341534

1535+
.vfb-config-datepicker .flatpickr-calendar {
1536+
@apply left-auto right-0;
1537+
}
1538+
.vfb-config-datepicker .flatpickr-calendar:before {
1539+
@apply left-auto right-6 top-auto bottom-full;
1540+
}
1541+
15351542
.vfb-mx-px {
15361543
@apply mx-px;
15371544
}

vueform.css

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2486,6 +2486,17 @@ div > div:first-of-type[style*="none;"] + .vfb-util-props-separator-top {
24862486
margin-bottom: -0.5rem;
24872487
}
24882488

2489+
.vfb-config-datepicker .flatpickr-calendar{
2490+
left: auto;
2491+
right: 0px;
2492+
}
2493+
.vfb-config-datepicker .flatpickr-calendar:before{
2494+
left: auto;
2495+
right: 1.5rem;
2496+
top: auto;
2497+
bottom: 100%;
2498+
}
2499+
24892500
.vfb-mx-px{
24902501
margin-left: 1px;
24912502
margin-right: 1px;

0 commit comments

Comments
 (0)