@bpmn-io/form-js-playground 0.11.1 → 0.12.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 +35 -53
- package/dist/form-playground.umd.js +2011 -1079
- package/dist/index.cjs +5 -14
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js.map +1 -1
- package/package.json +7 -7
|
@@ -1,3 +1,36 @@
|
|
|
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
|
+
}
|
|
1
34
|
.fjs-pgl-root {
|
|
2
35
|
--color-button-hover: var(--color-grey-225-10-95);
|
|
3
36
|
|
|
@@ -29,7 +62,7 @@
|
|
|
29
62
|
}
|
|
30
63
|
|
|
31
64
|
.fjs-pgl-main {
|
|
32
|
-
width: calc(100% -
|
|
65
|
+
width: calc(100% - 450px);
|
|
33
66
|
height: 100%;
|
|
34
67
|
|
|
35
68
|
display: grid;
|
|
@@ -42,7 +75,6 @@
|
|
|
42
75
|
*/
|
|
43
76
|
.fjs-pgl-palette-container {
|
|
44
77
|
height: 100%;
|
|
45
|
-
width: 110px;
|
|
46
78
|
background-color: var(--color-palette-container-background);
|
|
47
79
|
border-right: solid 1px var(--color-palette-container-border);
|
|
48
80
|
overflow-y: auto;
|
|
@@ -52,24 +84,6 @@
|
|
|
52
84
|
.fjs-pgl-palette-container .fjs-palette-container {
|
|
53
85
|
height: 100%;
|
|
54
86
|
border-right: none;
|
|
55
|
-
width: auto;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.fjs-pgl-palette-container .fjs-hide-compact {
|
|
59
|
-
display: none;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.fjs-pgl-palette-container .fjs-palette-container .fjs-palette-field {
|
|
63
|
-
justify-content: center;
|
|
64
|
-
flex-direction: column;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.fjs-pgl-palette-container .fjs-palette-container .fjs-palette-header {
|
|
68
|
-
text-align: center;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
.fjs-pgl-palette-container .fjs-palette-container .fjs-palette-field-icon {
|
|
72
|
-
margin: 0;
|
|
73
87
|
}
|
|
74
88
|
|
|
75
89
|
/**
|
|
@@ -116,7 +130,7 @@
|
|
|
116
130
|
font-size: 1rem;
|
|
117
131
|
margin: 0;
|
|
118
132
|
line-height: 2em;
|
|
119
|
-
padding: .
|
|
133
|
+
padding: .2em .5em;
|
|
120
134
|
border-bottom: solid 1px var(--color-section-header-border-bottom);
|
|
121
135
|
}
|
|
122
136
|
|
|
@@ -238,36 +252,4 @@
|
|
|
238
252
|
width: 100%;
|
|
239
253
|
height: 100%;
|
|
240
254
|
}
|
|
241
|
-
/**
|
|
242
|
-
* file-drop.css
|
|
243
|
-
*/
|
|
244
|
-
.drop-overlay {
|
|
245
|
-
position: fixed;
|
|
246
|
-
top: 0;
|
|
247
|
-
left: 0;
|
|
248
|
-
bottom: 0;
|
|
249
|
-
right: 0;
|
|
250
|
-
|
|
251
|
-
padding: 50px;
|
|
252
|
-
|
|
253
|
-
background: rgba(255, 255, 255, .9);
|
|
254
255
|
|
|
255
|
-
z-index: 1000;
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
.drop-overlay .box {
|
|
259
|
-
text-align: center;
|
|
260
|
-
border: dashed 4px #CCC;
|
|
261
|
-
height: 100%;
|
|
262
|
-
width: 100%;
|
|
263
|
-
display: table;
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
.drop-overlay .label {
|
|
267
|
-
font-size: 26px;
|
|
268
|
-
color: #888;
|
|
269
|
-
margin: auto;
|
|
270
|
-
|
|
271
|
-
display: table-cell;
|
|
272
|
-
vertical-align: middle;
|
|
273
|
-
}
|