@bpmn-io/form-js-editor 0.13.1 → 0.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +22 -22
- package/README.md +116 -116
- package/dist/assets/form-js-editor-base.css +489 -486
- package/dist/assets/form-js-editor.css +15 -12
- package/dist/index.cjs +231 -231
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +231 -231
- package/dist/index.es.js.map +1 -1
- package/dist/types/types.d.ts +28 -28
- package/package.json +3 -4
|
@@ -99,6 +99,7 @@
|
|
|
99
99
|
.fjs-editor-container .fjs-input:disabled,
|
|
100
100
|
.fjs-editor-container .fjs-textarea:disabled,
|
|
101
101
|
.fjs-editor-container .fjs-taglist-input:disabled,
|
|
102
|
+
.fjs-editor-container .fjs-button:disabled,
|
|
102
103
|
.fjs-editor-container .fjs-select:disabled {
|
|
103
104
|
pointer-events: none;
|
|
104
105
|
}
|
|
@@ -116,24 +117,29 @@
|
|
|
116
117
|
display: flex;
|
|
117
118
|
width: 100%;
|
|
118
119
|
padding: 3px 0px;
|
|
120
|
+
position: relative;
|
|
119
121
|
}
|
|
120
122
|
|
|
121
123
|
.fjs-editor-container .fjs-row-dragger {
|
|
122
|
-
visibility: hidden;
|
|
123
124
|
z-index: 2;
|
|
124
|
-
position:
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
125
|
+
position: absolute;
|
|
126
|
+
top: 25%;
|
|
127
|
+
height: 50%;
|
|
128
|
+
left: -33px;
|
|
129
|
+
width: 23px;
|
|
130
|
+
padding-right: 7px;
|
|
128
131
|
cursor: grab;
|
|
129
|
-
width: 32px;
|
|
130
|
-
height: 32px;
|
|
131
132
|
display: flex;
|
|
132
133
|
justify-content: center;
|
|
133
134
|
align-items: center;
|
|
134
135
|
}
|
|
135
136
|
|
|
136
|
-
.fjs-editor-container .fjs-
|
|
137
|
+
.fjs-editor-container .fjs-row-dragger svg {
|
|
138
|
+
visibility: hidden;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.fjs-editor-container .fjs-row-dragger:hover svg,
|
|
142
|
+
.fjs-editor-container .fjs-drag-row-move:hover .fjs-row-dragger svg {
|
|
137
143
|
visibility: visible;
|
|
138
144
|
}
|
|
139
145
|
|
|
@@ -401,11 +407,8 @@
|
|
|
401
407
|
/* row drop preview */
|
|
402
408
|
.fjs-children > .gu-transit {
|
|
403
409
|
height: 28px !important;
|
|
404
|
-
|
|
405
|
-
margin-right: -8px !important;
|
|
410
|
+
width: 100% !important;
|
|
406
411
|
flex: unset !important;
|
|
407
|
-
width: unset !important;
|
|
408
|
-
max-width: unset !important;
|
|
409
412
|
}
|
|
410
413
|
|
|
411
414
|
/* error drop preview */
|