Skip to content

Commit bceb088

Browse files
committed
FormBuilder 1.22.0 (autocommit)
1 parent 7c41dc2 commit bceb088

File tree

9 files changed

+30
-23
lines changed

9 files changed

+30
-23
lines changed

build/optimajet-builder.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/optimajet-form.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demo/build/optimajet-builder.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demo/build/optimajet-form.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demo/css/optimajet-formbuilder.css

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,6 @@
200200
/*ITEM-HEADER*/
201201

202202
.dwkit-formbuilder-item-toolbar-header {
203-
opacity: 0.2;
204203
z-index: 100;
205204
white-space: nowrap;
206205
height: 0px;
@@ -213,13 +212,10 @@
213212
line-height: 20px;
214213
color: black;
215214
font-weight: 400;
216-
}
217-
218-
.dwkit-formbuilder-item-toolbar-header:hover {
219-
background: white;
220-
-webkit-box-shadow: 0px 6px 10px rgba(18, 83, 204, 0.12), 0px 1px 18px rgba(18, 83, 204, 0.12), 0px 3px 5px rgba(18, 83, 204, 0.15);
221-
box-shadow: 0px 6px 10px rgba(18, 83, 204, 0.12), 0px 1px 18px rgba(18, 83, 204, 0.12), 0px 3px 5px rgba(18, 83, 204, 0.15);
222-
border-radius: 11px;
215+
background: white;
216+
-webkit-box-shadow: 0px 6px 10px rgba(18, 83, 204, 0.12), 0px 1px 18px rgba(18, 83, 204, 0.12), 0px 3px 5px rgba(18, 83, 204, 0.15);
217+
box-shadow: 0px 6px 10px rgba(18, 83, 204, 0.12), 0px 1px 18px rgba(18, 83, 204, 0.12), 0px 3px 5px rgba(18, 83, 204, 0.15);
218+
border-radius: 11px;
223219
}
224220

225221
.dwkit-formbuilder-item-toolbar-header-buttons {
@@ -231,10 +227,6 @@
231227
margin-right: 5px;
232228
}
233229

234-
.dwkit-formbuilder-item-toolbar-header:hover {
235-
opacity: 1;
236-
}
237-
238230
.dwkit-formbuilder-item-selected{
239231
outline-style: solid;
240232
outline-width: 1px;
@@ -244,7 +236,6 @@
244236
select .dwkit-formbuilder-item-toolbar-header:hover,
245237
input .dwkit-formbuilder-item-toolbar-header:hover {
246238
cursor: move;
247-
opacity: 1;
248239
}
249240

250241
.toolbar-header {
@@ -540,10 +531,19 @@ a.dwkit-btn{
540531

541532
.dwkit-formbuilder-item-toolbar-container {
542533
position: absolute;
534+
visibility: hidden;
535+
opacity: 0;
543536
right: auto;
544537
will-change: transform;
545538
top: 0px;
546539
left: 0px;
540+
transition: opacity 200ms ease-in-out;
541+
transform: translate(-100%, -50%);
542+
}
543+
544+
.dwkit-formbuilder-item-toolbar-container.visible {
545+
visibility: visible;
546+
opacity: 1;
547547
}
548548

549549
.dwkit-collectioneditor .dwkit-formbuilder-item-toolbar-container { /* hack for correct position in table (customElement in collectonEditor) */

demo/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.

demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "optimajet-formbuilder",
3-
"version": "1.21.0",
3+
"version": "1.22.0",
44
"description": "OptimaJet FormBuilder",
55
"main": "lib/app.js",
66
"scripts": {

release-notes.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
# Release Notes
22

3+
## 1.22.0
4+
5+
_April 15, 2025_
6+
7+
- Now the toolbar of the component is shown only when the mouse hovers over the component itself, so that different
8+
toolbars do not overlap each other.
9+
310
## 1.21.0
411

512
_January 21, 2025_
613

714
- Fixed a bug that caused custom controls to not be supported in CollectionEditor.
8-
15+
-
916
## 1.20.0
1017

1118
_November 14, 2024_

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
OptimaJet FormBuilder - 21/01/2025
1+
OptimaJet FormBuilder - 16/04/2025

0 commit comments

Comments
 (0)