@formio/js 5.0.0-rc.33 → 5.0.0-rc.35
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/fonts/bootstrap-icons.woff +0 -0
- package/dist/fonts/bootstrap-icons.woff2 +0 -0
- package/dist/formio.builder.css +19 -15
- package/dist/formio.builder.min.css +1 -1
- package/dist/formio.embed.js +1 -1
- package/dist/formio.embed.min.js +1 -1
- package/dist/formio.embed.min.js.LICENSE.txt +1 -1
- package/dist/formio.form.css +19 -15
- package/dist/formio.form.js +496 -547
- package/dist/formio.form.min.css +1 -1
- package/dist/formio.form.min.js +1 -1
- package/dist/formio.form.min.js.LICENSE.txt +2 -2
- package/dist/formio.full.css +363 -19
- package/dist/formio.full.js +497 -548
- package/dist/formio.full.min.css +3 -3
- package/dist/formio.full.min.js +1 -1
- package/dist/formio.full.min.js.LICENSE.txt +2 -2
- package/dist/formio.js +67 -77
- package/dist/formio.min.js +1 -1
- package/dist/formio.min.js.LICENSE.txt +1 -1
- package/dist/formio.utils.js +81 -101
- package/dist/formio.utils.min.js +1 -1
- package/dist/formio.utils.min.js.LICENSE.txt +1 -1
- package/lib/cjs/CDN.js +12 -6
- package/lib/cjs/Webform.js +4 -1
- package/lib/cjs/Wizard.js +6 -9
- package/lib/cjs/components/_classes/component/Component.js +6 -1
- package/lib/cjs/components/_classes/nested/NestedComponent.js +1 -1
- package/lib/cjs/components/container/fixtures/comp4.js +45 -0
- package/lib/cjs/components/container/fixtures/index.js +3 -1
- package/lib/cjs/components/datetime/DateTime.js +6 -0
- package/lib/cjs/components/file/File.js +465 -215
- package/lib/cjs/components/file/editForm/File.edit.display.js +17 -0
- package/lib/cjs/components/textarea/TextArea.js +2 -2
- package/lib/cjs/components/textfield/TextField.js +3 -1
- package/lib/cjs/components/time/Time.js +3 -0
- package/lib/cjs/providers/storage/azure.js +6 -1
- package/lib/cjs/providers/storage/base64.js +1 -1
- package/lib/cjs/providers/storage/googleDrive.js +5 -1
- package/lib/cjs/providers/storage/indexeddb.js +1 -1
- package/lib/cjs/providers/storage/s3.js +5 -1
- package/lib/cjs/providers/storage/xhr.js +10 -0
- package/lib/mjs/CDN.js +12 -6
- package/lib/mjs/Webform.js +4 -1
- package/lib/mjs/Wizard.js +6 -9
- package/lib/mjs/components/_classes/component/Component.js +6 -1
- package/lib/mjs/components/_classes/nested/NestedComponent.js +1 -1
- package/lib/mjs/components/container/fixtures/comp4.js +43 -0
- package/lib/mjs/components/container/fixtures/index.js +2 -1
- package/lib/mjs/components/datetime/DateTime.js +6 -0
- package/lib/mjs/components/file/File.js +463 -224
- package/lib/mjs/components/file/editForm/File.edit.display.js +17 -0
- package/lib/mjs/components/textarea/TextArea.js +2 -2
- package/lib/mjs/components/textfield/TextField.js +6 -0
- package/lib/mjs/components/time/Time.js +3 -0
- package/lib/mjs/providers/storage/azure.js +6 -1
- package/lib/mjs/providers/storage/base64.js +1 -1
- package/lib/mjs/providers/storage/googleDrive.js +5 -1
- package/lib/mjs/providers/storage/indexeddb.js +1 -1
- package/lib/mjs/providers/storage/s3.js +5 -1
- package/lib/mjs/providers/storage/xhr.js +10 -0
- package/package.json +3 -3
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Signature Pad v4.1.
|
2
|
+
* Signature Pad v4.1.7 | https://github.com/szimek/signature_pad
|
3
3
|
* (c) 2023 Szymon Nowak | Released under the MIT license
|
4
4
|
*/
|
5
5
|
|
@@ -19,7 +19,7 @@
|
|
19
19
|
|
20
20
|
/*! @license DOMPurify 3.0.6 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.0.6/LICENSE */
|
21
21
|
|
22
|
-
/*! formiojs v5.0.0-rc.
|
22
|
+
/*! formiojs v5.0.0-rc.34 | https://unpkg.com/formiojs@5.0.0-rc.34/LICENSE.txt */
|
23
23
|
|
24
24
|
/**
|
25
25
|
* @license
|
package/dist/formio.full.css
CHANGED
@@ -1,4 +1,344 @@
|
|
1
|
-
|
1
|
+
/* ===============================
|
2
|
+
= Choices =
|
3
|
+
=============================== */
|
4
|
+
.choices {
|
5
|
+
position: relative;
|
6
|
+
overflow: hidden;
|
7
|
+
margin-bottom: 24px;
|
8
|
+
font-size: 16px;
|
9
|
+
}
|
10
|
+
.choices:focus {
|
11
|
+
outline: none;
|
12
|
+
}
|
13
|
+
.choices:last-child {
|
14
|
+
margin-bottom: 0;
|
15
|
+
}
|
16
|
+
.choices.is-open {
|
17
|
+
overflow: visible;
|
18
|
+
}
|
19
|
+
.choices.is-disabled .choices__inner,
|
20
|
+
.choices.is-disabled .choices__input {
|
21
|
+
background-color: #eaeaea;
|
22
|
+
cursor: not-allowed;
|
23
|
+
-webkit-user-select: none;
|
24
|
+
user-select: none;
|
25
|
+
}
|
26
|
+
.choices.is-disabled .choices__item {
|
27
|
+
cursor: not-allowed;
|
28
|
+
}
|
29
|
+
.choices [hidden] {
|
30
|
+
display: none !important;
|
31
|
+
}
|
32
|
+
|
33
|
+
.choices[data-type*=select-one] {
|
34
|
+
cursor: pointer;
|
35
|
+
}
|
36
|
+
.choices[data-type*=select-one] .choices__inner {
|
37
|
+
padding-bottom: 7.5px;
|
38
|
+
}
|
39
|
+
.choices[data-type*=select-one] .choices__input {
|
40
|
+
display: block;
|
41
|
+
width: 100%;
|
42
|
+
padding: 10px;
|
43
|
+
border-bottom: 1px solid #ddd;
|
44
|
+
background-color: #fff;
|
45
|
+
margin: 0;
|
46
|
+
}
|
47
|
+
.choices[data-type*=select-one] .choices__button {
|
48
|
+
background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==");
|
49
|
+
padding: 0;
|
50
|
+
background-size: 8px;
|
51
|
+
position: absolute;
|
52
|
+
top: 50%;
|
53
|
+
right: 0;
|
54
|
+
margin-top: -10px;
|
55
|
+
margin-right: 25px;
|
56
|
+
height: 20px;
|
57
|
+
width: 20px;
|
58
|
+
border-radius: 10em;
|
59
|
+
opacity: 0.25;
|
60
|
+
}
|
61
|
+
.choices[data-type*=select-one] .choices__button:hover, .choices[data-type*=select-one] .choices__button:focus {
|
62
|
+
opacity: 1;
|
63
|
+
}
|
64
|
+
.choices[data-type*=select-one] .choices__button:focus {
|
65
|
+
box-shadow: 0 0 0 2px #00bcd4;
|
66
|
+
}
|
67
|
+
.choices[data-type*=select-one] .choices__item[data-value=""] .choices__button {
|
68
|
+
display: none;
|
69
|
+
}
|
70
|
+
.choices[data-type*=select-one]::after {
|
71
|
+
content: "";
|
72
|
+
height: 0;
|
73
|
+
width: 0;
|
74
|
+
border-style: solid;
|
75
|
+
border-color: #333 transparent transparent transparent;
|
76
|
+
border-width: 5px;
|
77
|
+
position: absolute;
|
78
|
+
right: 11.5px;
|
79
|
+
top: 50%;
|
80
|
+
margin-top: -2.5px;
|
81
|
+
pointer-events: none;
|
82
|
+
}
|
83
|
+
.choices[data-type*=select-one].is-open::after {
|
84
|
+
border-color: transparent transparent #333 transparent;
|
85
|
+
margin-top: -7.5px;
|
86
|
+
}
|
87
|
+
.choices[data-type*=select-one][dir=rtl]::after {
|
88
|
+
left: 11.5px;
|
89
|
+
right: auto;
|
90
|
+
}
|
91
|
+
.choices[data-type*=select-one][dir=rtl] .choices__button {
|
92
|
+
right: auto;
|
93
|
+
left: 0;
|
94
|
+
margin-left: 25px;
|
95
|
+
margin-right: 0;
|
96
|
+
}
|
97
|
+
|
98
|
+
.choices[data-type*=select-multiple] .choices__inner,
|
99
|
+
.choices[data-type*=text] .choices__inner {
|
100
|
+
cursor: text;
|
101
|
+
}
|
102
|
+
.choices[data-type*=select-multiple] .choices__button,
|
103
|
+
.choices[data-type*=text] .choices__button {
|
104
|
+
position: relative;
|
105
|
+
display: inline-block;
|
106
|
+
margin-top: 0;
|
107
|
+
margin-right: -4px;
|
108
|
+
margin-bottom: 0;
|
109
|
+
margin-left: 8px;
|
110
|
+
padding-left: 16px;
|
111
|
+
border-left: 1px solid #008fa1;
|
112
|
+
background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==");
|
113
|
+
background-size: 8px;
|
114
|
+
width: 8px;
|
115
|
+
line-height: 1;
|
116
|
+
opacity: 0.75;
|
117
|
+
border-radius: 0;
|
118
|
+
}
|
119
|
+
.choices[data-type*=select-multiple] .choices__button:hover, .choices[data-type*=select-multiple] .choices__button:focus,
|
120
|
+
.choices[data-type*=text] .choices__button:hover,
|
121
|
+
.choices[data-type*=text] .choices__button:focus {
|
122
|
+
opacity: 1;
|
123
|
+
}
|
124
|
+
|
125
|
+
.choices__inner {
|
126
|
+
display: inline-block;
|
127
|
+
vertical-align: top;
|
128
|
+
width: 100%;
|
129
|
+
background-color: #f9f9f9;
|
130
|
+
padding: 7.5px 7.5px 3.75px;
|
131
|
+
border: 1px solid #ddd;
|
132
|
+
border-radius: 2.5px;
|
133
|
+
font-size: 14px;
|
134
|
+
min-height: 44px;
|
135
|
+
overflow: hidden;
|
136
|
+
}
|
137
|
+
.is-focused .choices__inner, .is-open .choices__inner {
|
138
|
+
border-color: #b7b7b7;
|
139
|
+
}
|
140
|
+
.is-open .choices__inner {
|
141
|
+
border-radius: 2.5px 2.5px 0 0;
|
142
|
+
}
|
143
|
+
.is-flipped.is-open .choices__inner {
|
144
|
+
border-radius: 0 0 2.5px 2.5px;
|
145
|
+
}
|
146
|
+
|
147
|
+
.choices__list {
|
148
|
+
margin: 0;
|
149
|
+
padding-left: 0;
|
150
|
+
list-style: none;
|
151
|
+
}
|
152
|
+
.choices__list--single {
|
153
|
+
display: inline-block;
|
154
|
+
padding: 4px 16px 4px 4px;
|
155
|
+
width: 100%;
|
156
|
+
}
|
157
|
+
[dir=rtl] .choices__list--single {
|
158
|
+
padding-right: 4px;
|
159
|
+
padding-left: 16px;
|
160
|
+
}
|
161
|
+
.choices__list--single .choices__item {
|
162
|
+
width: 100%;
|
163
|
+
}
|
164
|
+
|
165
|
+
.choices__list--multiple {
|
166
|
+
display: inline;
|
167
|
+
}
|
168
|
+
.choices__list--multiple .choices__item {
|
169
|
+
display: inline-block;
|
170
|
+
vertical-align: middle;
|
171
|
+
border-radius: 20px;
|
172
|
+
padding: 4px 10px;
|
173
|
+
font-size: 12px;
|
174
|
+
font-weight: 500;
|
175
|
+
margin-right: 3.75px;
|
176
|
+
margin-bottom: 3.75px;
|
177
|
+
background-color: #00bcd4;
|
178
|
+
border: 1px solid #00a5bb;
|
179
|
+
color: #fff;
|
180
|
+
word-break: break-all;
|
181
|
+
box-sizing: border-box;
|
182
|
+
}
|
183
|
+
.choices__list--multiple .choices__item[data-deletable] {
|
184
|
+
padding-right: 5px;
|
185
|
+
}
|
186
|
+
[dir=rtl] .choices__list--multiple .choices__item {
|
187
|
+
margin-right: 0;
|
188
|
+
margin-left: 3.75px;
|
189
|
+
}
|
190
|
+
.choices__list--multiple .choices__item.is-highlighted {
|
191
|
+
background-color: #00a5bb;
|
192
|
+
border: 1px solid #008fa1;
|
193
|
+
}
|
194
|
+
.is-disabled .choices__list--multiple .choices__item {
|
195
|
+
background-color: #aaaaaa;
|
196
|
+
border: 1px solid #919191;
|
197
|
+
}
|
198
|
+
|
199
|
+
.choices__list--dropdown, .choices__list[aria-expanded] {
|
200
|
+
visibility: hidden;
|
201
|
+
z-index: 1;
|
202
|
+
position: absolute;
|
203
|
+
width: 100%;
|
204
|
+
background-color: #fff;
|
205
|
+
border: 1px solid #ddd;
|
206
|
+
top: 100%;
|
207
|
+
margin-top: -1px;
|
208
|
+
border-bottom-left-radius: 2.5px;
|
209
|
+
border-bottom-right-radius: 2.5px;
|
210
|
+
overflow: hidden;
|
211
|
+
word-break: break-all;
|
212
|
+
will-change: visibility;
|
213
|
+
}
|
214
|
+
.is-active.choices__list--dropdown, .is-active.choices__list[aria-expanded] {
|
215
|
+
visibility: visible;
|
216
|
+
}
|
217
|
+
.is-open .choices__list--dropdown, .is-open .choices__list[aria-expanded] {
|
218
|
+
border-color: #b7b7b7;
|
219
|
+
}
|
220
|
+
.is-flipped .choices__list--dropdown, .is-flipped .choices__list[aria-expanded] {
|
221
|
+
top: auto;
|
222
|
+
bottom: 100%;
|
223
|
+
margin-top: 0;
|
224
|
+
margin-bottom: -1px;
|
225
|
+
border-radius: 0.25rem 0.25rem 0 0;
|
226
|
+
}
|
227
|
+
.choices__list--dropdown .choices__list, .choices__list[aria-expanded] .choices__list {
|
228
|
+
position: relative;
|
229
|
+
max-height: 300px;
|
230
|
+
overflow: auto;
|
231
|
+
-webkit-overflow-scrolling: touch;
|
232
|
+
will-change: scroll-position;
|
233
|
+
}
|
234
|
+
.choices__list--dropdown .choices__item, .choices__list[aria-expanded] .choices__item {
|
235
|
+
position: relative;
|
236
|
+
padding: 10px;
|
237
|
+
font-size: 14px;
|
238
|
+
}
|
239
|
+
[dir=rtl] .choices__list--dropdown .choices__item, [dir=rtl] .choices__list[aria-expanded] .choices__item {
|
240
|
+
text-align: right;
|
241
|
+
}
|
242
|
+
@media (min-width: 640px) {
|
243
|
+
.choices__list--dropdown .choices__item--selectable, .choices__list[aria-expanded] .choices__item--selectable {
|
244
|
+
padding-right: 100px;
|
245
|
+
}
|
246
|
+
.choices__list--dropdown .choices__item--selectable::after, .choices__list[aria-expanded] .choices__item--selectable::after {
|
247
|
+
content: attr(data-select-text);
|
248
|
+
font-size: 12px;
|
249
|
+
opacity: 0;
|
250
|
+
position: absolute;
|
251
|
+
right: 10px;
|
252
|
+
top: 50%;
|
253
|
+
transform: translateY(-50%);
|
254
|
+
}
|
255
|
+
[dir=rtl] .choices__list--dropdown .choices__item--selectable, [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable {
|
256
|
+
text-align: right;
|
257
|
+
padding-left: 100px;
|
258
|
+
padding-right: 10px;
|
259
|
+
}
|
260
|
+
[dir=rtl] .choices__list--dropdown .choices__item--selectable::after, [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable::after {
|
261
|
+
right: auto;
|
262
|
+
left: 10px;
|
263
|
+
}
|
264
|
+
}
|
265
|
+
.choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
|
266
|
+
background-color: #f2f2f2;
|
267
|
+
}
|
268
|
+
.choices__list--dropdown .choices__item--selectable.is-highlighted::after, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted::after {
|
269
|
+
opacity: 0.5;
|
270
|
+
}
|
271
|
+
|
272
|
+
.choices__item {
|
273
|
+
cursor: default;
|
274
|
+
}
|
275
|
+
|
276
|
+
.choices__item--selectable {
|
277
|
+
cursor: pointer;
|
278
|
+
}
|
279
|
+
|
280
|
+
.choices__item--disabled {
|
281
|
+
cursor: not-allowed;
|
282
|
+
-webkit-user-select: none;
|
283
|
+
user-select: none;
|
284
|
+
opacity: 0.5;
|
285
|
+
}
|
286
|
+
|
287
|
+
.choices__heading {
|
288
|
+
font-weight: 600;
|
289
|
+
font-size: 12px;
|
290
|
+
padding: 10px;
|
291
|
+
border-bottom: 1px solid #f7f7f7;
|
292
|
+
color: gray;
|
293
|
+
}
|
294
|
+
|
295
|
+
.choices__button {
|
296
|
+
text-indent: -9999px;
|
297
|
+
-webkit-appearance: none;
|
298
|
+
appearance: none;
|
299
|
+
border: 0;
|
300
|
+
background-color: transparent;
|
301
|
+
background-repeat: no-repeat;
|
302
|
+
background-position: center;
|
303
|
+
cursor: pointer;
|
304
|
+
}
|
305
|
+
.choices__button:focus {
|
306
|
+
outline: none;
|
307
|
+
}
|
308
|
+
|
309
|
+
.choices__input {
|
310
|
+
display: inline-block;
|
311
|
+
vertical-align: baseline;
|
312
|
+
background-color: #f9f9f9;
|
313
|
+
font-size: 14px;
|
314
|
+
margin-bottom: 5px;
|
315
|
+
border: 0;
|
316
|
+
border-radius: 0;
|
317
|
+
max-width: 100%;
|
318
|
+
padding: 4px 0 4px 2px;
|
319
|
+
}
|
320
|
+
.choices__input:focus {
|
321
|
+
outline: 0;
|
322
|
+
}
|
323
|
+
.choices__input::-webkit-search-decoration, .choices__input::-webkit-search-cancel-button, .choices__input::-webkit-search-results-button, .choices__input::-webkit-search-results-decoration {
|
324
|
+
display: none;
|
325
|
+
}
|
326
|
+
.choices__input::-ms-clear, .choices__input::-ms-reveal {
|
327
|
+
display: none;
|
328
|
+
width: 0;
|
329
|
+
height: 0;
|
330
|
+
}
|
331
|
+
[dir=rtl] .choices__input {
|
332
|
+
padding-right: 2px;
|
333
|
+
padding-left: 0;
|
334
|
+
}
|
335
|
+
|
336
|
+
.choices__placeholder {
|
337
|
+
opacity: 0.5;
|
338
|
+
}
|
339
|
+
|
340
|
+
/* ===== End of Choices ====== */
|
341
|
+
|
2
342
|
.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;white-space:normal;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1}
|
3
343
|
dialog {
|
4
344
|
position: absolute;
|
@@ -61,7 +401,7 @@ dialog.fixed {
|
|
61
401
|
}
|
62
402
|
|
63
403
|
/*!
|
64
|
-
* Bootstrap Icons v1.11.
|
404
|
+
* Bootstrap Icons v1.11.2 (https://icons.getbootstrap.com/)
|
65
405
|
* Copyright 2019-2023 The Bootstrap Authors
|
66
406
|
* Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE)
|
67
407
|
*/
|
@@ -69,8 +409,8 @@ dialog.fixed {
|
|
69
409
|
@font-face {
|
70
410
|
font-display: block;
|
71
411
|
font-family: "bootstrap-icons";
|
72
|
-
src: url("./fonts/bootstrap-icons.woff2?
|
73
|
-
url("./fonts/bootstrap-icons.woff?
|
412
|
+
src: url("./fonts/bootstrap-icons.woff2?7141511ac37f13e1a387fb9fc6646256") format("woff2"),
|
413
|
+
url("./fonts/bootstrap-icons.woff?7141511ac37f13e1a387fb9fc6646256") format("woff");
|
74
414
|
}
|
75
415
|
|
76
416
|
.bi::before,
|
@@ -2550,6 +2890,15 @@ td > .formio-form-group {
|
|
2550
2890
|
text-decoration: underline;
|
2551
2891
|
}
|
2552
2892
|
|
2893
|
+
.formio-component-file .status {
|
2894
|
+
margin-top: 4px;
|
2895
|
+
font-size: 0.9rem;
|
2896
|
+
}
|
2897
|
+
|
2898
|
+
.formio-component-file .list-group-item .fa {
|
2899
|
+
cursor: pointer;
|
2900
|
+
}
|
2901
|
+
|
2553
2902
|
.formio-component-file .fileSelector.fileDragOver {
|
2554
2903
|
border-color: #127abe;
|
2555
2904
|
}
|
@@ -3008,10 +3357,6 @@ body.formio-dialog-open {
|
|
3008
3357
|
overflow-wrap: break-word;
|
3009
3358
|
}
|
3010
3359
|
|
3011
|
-
.tree-listgroup {
|
3012
|
-
flex-direction: row;
|
3013
|
-
}
|
3014
|
-
|
3015
3360
|
.formio-component-submit button[disabled] + .has-error {
|
3016
3361
|
display: block;
|
3017
3362
|
}
|
@@ -3219,17 +3564,6 @@ td .formio-component-modaledit .formio-modaledit-view-container {
|
|
3219
3564
|
color: inherit;
|
3220
3565
|
}
|
3221
3566
|
|
3222
|
-
.tree__level_even {
|
3223
|
-
background-color: #f6f6f6;
|
3224
|
-
}
|
3225
|
-
.tree__node-content {
|
3226
|
-
margin-bottom: 10px;
|
3227
|
-
overflow-wrap: break-word;
|
3228
|
-
}
|
3229
|
-
.tree__node-children {
|
3230
|
-
margin: 0;
|
3231
|
-
}
|
3232
|
-
|
3233
3567
|
.formio-select-autocomplete-input {
|
3234
3568
|
/* we can't use display: none or visibility: hidden because autocomplete won't work on hidden field */
|
3235
3569
|
opacity: 0;
|
@@ -3794,6 +4128,16 @@ span[role=link] {
|
|
3794
4128
|
.hidden {
|
3795
4129
|
display: none !important;
|
3796
4130
|
}
|
4131
|
+
|
4132
|
+
.align-center {
|
4133
|
+
display: flex;
|
4134
|
+
align-items: center;
|
4135
|
+
}
|
4136
|
+
|
4137
|
+
.justify-center {
|
4138
|
+
display: flex;
|
4139
|
+
justify-content: center;
|
4140
|
+
}
|
3797
4141
|
.formbuilder {
|
3798
4142
|
position: relative;
|
3799
4143
|
}
|