@bpmn-io/form-js-playground 0.9.7 → 0.9.9
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/dist/assets/form-js-playground.css +34 -34
- package/dist/form-playground.umd.js +760 -526
- package/dist/index.cjs +20 -36
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +20 -36
- package/dist/index.es.js.map +1 -1
- package/dist/types/Playground.d.ts +3 -0
- package/package.json +6 -6
|
@@ -1,4 +1,36 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
* file-drop.css
|
|
3
|
+
*/
|
|
4
|
+
.drop-overlay {
|
|
5
|
+
position: fixed;
|
|
6
|
+
top: 0;
|
|
7
|
+
left: 0;
|
|
8
|
+
bottom: 0;
|
|
9
|
+
right: 0;
|
|
10
|
+
|
|
11
|
+
padding: 50px;
|
|
12
|
+
|
|
13
|
+
background: rgba(255, 255, 255, .9);
|
|
14
|
+
|
|
15
|
+
z-index: 1000;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.drop-overlay .box {
|
|
19
|
+
text-align: center;
|
|
20
|
+
border: dashed 4px #CCC;
|
|
21
|
+
height: 100%;
|
|
22
|
+
width: 100%;
|
|
23
|
+
display: table;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.drop-overlay .label {
|
|
27
|
+
font-size: 26px;
|
|
28
|
+
color: #888;
|
|
29
|
+
margin: auto;
|
|
30
|
+
|
|
31
|
+
display: table-cell;
|
|
32
|
+
vertical-align: middle;
|
|
33
|
+
}.fjs-pgl-root {
|
|
2
34
|
--color-button-hover: var(--color-grey-225-10-95);
|
|
3
35
|
|
|
4
36
|
--color-section-border: var(--color-grey-225-10-55);
|
|
@@ -192,6 +224,7 @@
|
|
|
192
224
|
|
|
193
225
|
.fjs-pgl-text-container > .cm-editor > .cm-scroller {
|
|
194
226
|
font-family: var(--font-family-monospace);
|
|
227
|
+
overflow: auto !important;
|
|
195
228
|
}
|
|
196
229
|
|
|
197
230
|
.fjs-pgl-form-container > .fjs-container {
|
|
@@ -225,36 +258,3 @@
|
|
|
225
258
|
width: 100%;
|
|
226
259
|
height: 100%;
|
|
227
260
|
}
|
|
228
|
-
/**
|
|
229
|
-
* file-drop.css
|
|
230
|
-
*/
|
|
231
|
-
.drop-overlay {
|
|
232
|
-
position: fixed;
|
|
233
|
-
top: 0;
|
|
234
|
-
left: 0;
|
|
235
|
-
bottom: 0;
|
|
236
|
-
right: 0;
|
|
237
|
-
|
|
238
|
-
padding: 50px;
|
|
239
|
-
|
|
240
|
-
background: rgba(255, 255, 255, .9);
|
|
241
|
-
|
|
242
|
-
z-index: 1000;
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
.drop-overlay .box {
|
|
246
|
-
text-align: center;
|
|
247
|
-
border: dashed 4px #CCC;
|
|
248
|
-
height: 100%;
|
|
249
|
-
width: 100%;
|
|
250
|
-
display: table;
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
.drop-overlay .label {
|
|
254
|
-
font-size: 26px;
|
|
255
|
-
color: #888;
|
|
256
|
-
margin: auto;
|
|
257
|
-
|
|
258
|
-
display: table-cell;
|
|
259
|
-
vertical-align: middle;
|
|
260
|
-
}
|