@bpmn-io/form-js-playground 0.9.8 → 0.10.0-alpha.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/dist/assets/form-js-playground.css +37 -35
- package/dist/form-playground.umd.js +18946 -20035
- package/dist/index.cjs +37 -65
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +38 -66
- package/dist/index.es.js.map +1 -1
- package/dist/types/Playground.d.ts +76 -73
- package/dist/types/components/EmbedModal.d.ts +1 -1
- package/dist/types/components/JSONEditor.d.ts +20 -16
- package/dist/types/components/Modal.d.ts +1 -1
- package/dist/types/components/PlaygroundRoot.d.ts +1 -1
- package/dist/types/components/Section.d.ts +4 -4
- package/dist/types/index.d.ts +1 -1
- package/package.json +5 -4
|
@@ -1,36 +1,4 @@
|
|
|
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 {
|
|
1
|
+
.fjs-pgl-root {
|
|
34
2
|
--color-button-hover: var(--color-grey-225-10-95);
|
|
35
3
|
|
|
36
4
|
--color-section-border: var(--color-grey-225-10-55);
|
|
@@ -59,7 +27,7 @@
|
|
|
59
27
|
}
|
|
60
28
|
|
|
61
29
|
.fjs-pgl-main {
|
|
62
|
-
width: 100
|
|
30
|
+
width: calc(100% - 111px);
|
|
63
31
|
height: 100%;
|
|
64
32
|
|
|
65
33
|
display: grid;
|
|
@@ -76,7 +44,7 @@
|
|
|
76
44
|
*/
|
|
77
45
|
.fjs-pgl-palette-container {
|
|
78
46
|
height: 100%;
|
|
79
|
-
width:
|
|
47
|
+
width: 110px;
|
|
80
48
|
background-color: var(--color-palette-container-background);
|
|
81
49
|
border-right: solid 1px var(--color-palette-container-border);
|
|
82
50
|
overflow-y: scroll;
|
|
@@ -224,6 +192,7 @@
|
|
|
224
192
|
|
|
225
193
|
.fjs-pgl-text-container > .cm-editor > .cm-scroller {
|
|
226
194
|
font-family: var(--font-family-monospace);
|
|
195
|
+
overflow: auto !important;
|
|
227
196
|
}
|
|
228
197
|
|
|
229
198
|
.fjs-pgl-form-container > .fjs-container {
|
|
@@ -257,3 +226,36 @@
|
|
|
257
226
|
width: 100%;
|
|
258
227
|
height: 100%;
|
|
259
228
|
}
|
|
229
|
+
/**
|
|
230
|
+
* file-drop.css
|
|
231
|
+
*/
|
|
232
|
+
.drop-overlay {
|
|
233
|
+
position: fixed;
|
|
234
|
+
top: 0;
|
|
235
|
+
left: 0;
|
|
236
|
+
bottom: 0;
|
|
237
|
+
right: 0;
|
|
238
|
+
|
|
239
|
+
padding: 50px;
|
|
240
|
+
|
|
241
|
+
background: rgba(255, 255, 255, .9);
|
|
242
|
+
|
|
243
|
+
z-index: 1000;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.drop-overlay .box {
|
|
247
|
+
text-align: center;
|
|
248
|
+
border: dashed 4px #CCC;
|
|
249
|
+
height: 100%;
|
|
250
|
+
width: 100%;
|
|
251
|
+
display: table;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.drop-overlay .label {
|
|
255
|
+
font-size: 26px;
|
|
256
|
+
color: #888;
|
|
257
|
+
margin: auto;
|
|
258
|
+
|
|
259
|
+
display: table-cell;
|
|
260
|
+
vertical-align: middle;
|
|
261
|
+
}
|