@bpmn-io/form-js-playground 0.11.0 → 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 +5 -22
- package/dist/form-playground.umd.js +2043 -1089
- 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
|
@@ -30,7 +30,8 @@
|
|
|
30
30
|
|
|
31
31
|
display: table-cell;
|
|
32
32
|
vertical-align: middle;
|
|
33
|
-
}
|
|
33
|
+
}
|
|
34
|
+
.fjs-pgl-root {
|
|
34
35
|
--color-button-hover: var(--color-grey-225-10-95);
|
|
35
36
|
|
|
36
37
|
--color-section-border: var(--color-grey-225-10-55);
|
|
@@ -61,7 +62,7 @@
|
|
|
61
62
|
}
|
|
62
63
|
|
|
63
64
|
.fjs-pgl-main {
|
|
64
|
-
width: calc(100% -
|
|
65
|
+
width: calc(100% - 450px);
|
|
65
66
|
height: 100%;
|
|
66
67
|
|
|
67
68
|
display: grid;
|
|
@@ -74,7 +75,6 @@
|
|
|
74
75
|
*/
|
|
75
76
|
.fjs-pgl-palette-container {
|
|
76
77
|
height: 100%;
|
|
77
|
-
width: 110px;
|
|
78
78
|
background-color: var(--color-palette-container-background);
|
|
79
79
|
border-right: solid 1px var(--color-palette-container-border);
|
|
80
80
|
overflow-y: auto;
|
|
@@ -84,24 +84,6 @@
|
|
|
84
84
|
.fjs-pgl-palette-container .fjs-palette-container {
|
|
85
85
|
height: 100%;
|
|
86
86
|
border-right: none;
|
|
87
|
-
width: auto;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
.fjs-pgl-palette-container .fjs-hide-compact {
|
|
91
|
-
display: none;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
.fjs-pgl-palette-container .fjs-palette-container .fjs-palette-field {
|
|
95
|
-
justify-content: center;
|
|
96
|
-
flex-direction: column;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
.fjs-pgl-palette-container .fjs-palette-container .fjs-palette-header {
|
|
100
|
-
text-align: center;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
.fjs-pgl-palette-container .fjs-palette-container .fjs-palette-field-icon {
|
|
104
|
-
margin: 0;
|
|
105
87
|
}
|
|
106
88
|
|
|
107
89
|
/**
|
|
@@ -148,7 +130,7 @@
|
|
|
148
130
|
font-size: 1rem;
|
|
149
131
|
margin: 0;
|
|
150
132
|
line-height: 2em;
|
|
151
|
-
padding: .
|
|
133
|
+
padding: .2em .5em;
|
|
152
134
|
border-bottom: solid 1px var(--color-section-header-border-bottom);
|
|
153
135
|
}
|
|
154
136
|
|
|
@@ -270,3 +252,4 @@
|
|
|
270
252
|
width: 100%;
|
|
271
253
|
height: 100%;
|
|
272
254
|
}
|
|
255
|
+
|