@bpmn-io/form-js-playground 0.9.7 → 0.9.8
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 +33 -34
- package/dist/form-playground.umd.js +807 -566
- package/dist/types/Playground.d.ts +73 -73
- package/dist/types/components/EmbedModal.d.ts +1 -1
- package/dist/types/components/JSONEditor.d.ts +16 -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 +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);
|
|
@@ -225,36 +257,3 @@
|
|
|
225
257
|
width: 100%;
|
|
226
258
|
height: 100%;
|
|
227
259
|
}
|
|
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
|
-
}
|