@bpmn-io/form-js-playground 0.10.0-alpha.2 → 0.10.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/README.md CHANGED
@@ -34,11 +34,12 @@ For proper styling include the necessary stylesheets, and font used:
34
34
  <link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,400;0,600;1,400&display=swap" rel="stylesheet">
35
35
  <link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&display=swap" rel="stylesheet">
36
36
 
37
- <link rel="stylesheet" href="https://unpkg.com/@bpmn-io/form-js@0.7.0/dist/assets/form-js.css">
38
- <link rel="stylesheet" href="https://unpkg.com/@bpmn-io/form-js@0.7.0/dist/assets/form-js-editor.css">
39
- <link rel="stylesheet" href="https://unpkg.com/@bpmn-io/form-js@0.7.0/dist/assets/dragula.css">
40
- <link rel="stylesheet" href="https://unpkg.com/@bpmn-io/form-js@0.7.0/dist/assets/properties-panel.css">
41
- <link rel="stylesheet" href="https://unpkg.com/@bpmn-io/form-js@0.7.0/dist/assets/form-js-playground.css">
37
+ <link rel="stylesheet" href="https://unpkg.com/@bpmn-io/form-js@0.10.0/dist/assets/form-js.css">
38
+ <link rel="stylesheet" href="https://unpkg.com/@bpmn-io/form-js@0.10.0/dist/assets/flatpickr/light.css">
39
+ <link rel="stylesheet" href="https://unpkg.com/@bpmn-io/form-js@0.10.0/dist/assets/form-js-editor.css">
40
+ <link rel="stylesheet" href="https://unpkg.com/@bpmn-io/form-js@0.10.0/dist/assets/dragula.css">
41
+ <link rel="stylesheet" href="https://unpkg.com/@bpmn-io/form-js@0.10.0/dist/assets/properties-panel.css">
42
+ <link rel="stylesheet" href="https://unpkg.com/@bpmn-io/form-js@0.10.0/dist/assets/form-js-playground.css">
42
43
  ```
43
44
 
44
45
  ## Resources
@@ -1,4 +1,36 @@
1
- .fjs-pgl-root {
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);
@@ -232,36 +264,3 @@
232
264
  width: 100%;
233
265
  height: 100%;
234
266
  }
235
- /**
236
- * file-drop.css
237
- */
238
- .drop-overlay {
239
- position: fixed;
240
- top: 0;
241
- left: 0;
242
- bottom: 0;
243
- right: 0;
244
-
245
- padding: 50px;
246
-
247
- background: rgba(255, 255, 255, .9);
248
-
249
- z-index: 1000;
250
- }
251
-
252
- .drop-overlay .box {
253
- text-align: center;
254
- border: dashed 4px #CCC;
255
- height: 100%;
256
- width: 100%;
257
- display: table;
258
- }
259
-
260
- .drop-overlay .label {
261
- font-size: 26px;
262
- color: #888;
263
- margin: auto;
264
-
265
- display: table-cell;
266
- vertical-align: middle;
267
- }