@formio/js 5.1.0-rc.11 → 5.1.0-rc.13
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/formio.builder.css +24 -22
- 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 +24 -22
- package/dist/formio.form.js +3 -3
- package/dist/formio.form.min.css +1 -1
- package/dist/formio.form.min.js +1 -1
- package/dist/formio.form.min.js.LICENSE.txt +3 -3
- package/dist/formio.full.css +24 -22
- package/dist/formio.full.js +4 -4
- package/dist/formio.full.min.css +1 -1
- package/dist/formio.full.min.js +1 -1
- package/dist/formio.full.min.js.LICENSE.txt +3 -3
- package/dist/formio.js +2 -2
- package/dist/formio.min.js +1 -1
- package/dist/formio.min.js.LICENSE.txt +1 -1
- package/dist/formio.utils.min.js.LICENSE.txt +1 -1
- package/lib/cjs/Embed.js +1 -1
- package/lib/cjs/Formio.js +1 -1
- package/lib/cjs/components/form/editForm/Form.edit.data.js +1 -1
- package/lib/mjs/Embed.js +1 -1
- package/lib/mjs/Formio.js +1 -1
- package/lib/mjs/components/form/editForm/Form.edit.data.js +1 -1
- package/package.json +2 -2
package/dist/formio.form.css
CHANGED
@@ -62,9 +62,9 @@
|
|
62
62
|
opacity: 1;
|
63
63
|
}
|
64
64
|
.choices[data-type*=select-one] .choices__button:focus {
|
65
|
-
box-shadow: 0 0 0 2px #
|
65
|
+
box-shadow: 0 0 0 2px #00bcd4;
|
66
66
|
}
|
67
|
-
.choices[data-type*=select-one] .choices__item[data-
|
67
|
+
.choices[data-type*=select-one] .choices__item[data-value=""] .choices__button {
|
68
68
|
display: none;
|
69
69
|
}
|
70
70
|
.choices[data-type*=select-one]::after {
|
@@ -81,7 +81,7 @@
|
|
81
81
|
pointer-events: none;
|
82
82
|
}
|
83
83
|
.choices[data-type*=select-one].is-open::after {
|
84
|
-
border-color: transparent transparent #333;
|
84
|
+
border-color: transparent transparent #333 transparent;
|
85
85
|
margin-top: -7.5px;
|
86
86
|
}
|
87
87
|
.choices[data-type*=select-one][dir=rtl]::after {
|
@@ -108,7 +108,7 @@
|
|
108
108
|
margin-bottom: 0;
|
109
109
|
margin-left: 8px;
|
110
110
|
padding-left: 16px;
|
111
|
-
border-left: 1px solid
|
111
|
+
border-left: 1px solid #008fa1;
|
112
112
|
background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==");
|
113
113
|
background-size: 8px;
|
114
114
|
width: 8px;
|
@@ -135,7 +135,7 @@
|
|
135
135
|
overflow: hidden;
|
136
136
|
}
|
137
137
|
.is-focused .choices__inner, .is-open .choices__inner {
|
138
|
-
border-color:
|
138
|
+
border-color: #b7b7b7;
|
139
139
|
}
|
140
140
|
.is-open .choices__inner {
|
141
141
|
border-radius: 2.5px 2.5px 0 0;
|
@@ -174,8 +174,8 @@
|
|
174
174
|
font-weight: 500;
|
175
175
|
margin-right: 3.75px;
|
176
176
|
margin-bottom: 3.75px;
|
177
|
-
background-color: #
|
178
|
-
border: 1px solid
|
177
|
+
background-color: #00bcd4;
|
178
|
+
border: 1px solid #00a5bb;
|
179
179
|
color: #fff;
|
180
180
|
word-break: break-all;
|
181
181
|
box-sizing: border-box;
|
@@ -188,16 +188,16 @@
|
|
188
188
|
margin-left: 3.75px;
|
189
189
|
}
|
190
190
|
.choices__list--multiple .choices__item.is-highlighted {
|
191
|
-
background-color:
|
192
|
-
border: 1px solid
|
191
|
+
background-color: #00a5bb;
|
192
|
+
border: 1px solid #008fa1;
|
193
193
|
}
|
194
194
|
.is-disabled .choices__list--multiple .choices__item {
|
195
|
-
background-color:
|
196
|
-
border: 1px solid
|
195
|
+
background-color: #aaaaaa;
|
196
|
+
border: 1px solid #919191;
|
197
197
|
}
|
198
198
|
|
199
199
|
.choices__list--dropdown, .choices__list[aria-expanded] {
|
200
|
-
|
200
|
+
visibility: hidden;
|
201
201
|
z-index: 1;
|
202
202
|
position: absolute;
|
203
203
|
width: 100%;
|
@@ -209,12 +209,13 @@
|
|
209
209
|
border-bottom-right-radius: 2.5px;
|
210
210
|
overflow: hidden;
|
211
211
|
word-break: break-all;
|
212
|
+
will-change: visibility;
|
212
213
|
}
|
213
214
|
.is-active.choices__list--dropdown, .is-active.choices__list[aria-expanded] {
|
214
|
-
|
215
|
+
visibility: visible;
|
215
216
|
}
|
216
217
|
.is-open .choices__list--dropdown, .is-open .choices__list[aria-expanded] {
|
217
|
-
border-color:
|
218
|
+
border-color: #b7b7b7;
|
218
219
|
}
|
219
220
|
.is-flipped .choices__list--dropdown, .is-flipped .choices__list[aria-expanded] {
|
220
221
|
top: auto;
|
@@ -239,10 +240,10 @@
|
|
239
240
|
text-align: right;
|
240
241
|
}
|
241
242
|
@media (min-width: 640px) {
|
242
|
-
.choices__list--dropdown .choices__item--selectable
|
243
|
+
.choices__list--dropdown .choices__item--selectable, .choices__list[aria-expanded] .choices__item--selectable {
|
243
244
|
padding-right: 100px;
|
244
245
|
}
|
245
|
-
.choices__list--dropdown .choices__item--selectable
|
246
|
+
.choices__list--dropdown .choices__item--selectable::after, .choices__list[aria-expanded] .choices__item--selectable::after {
|
246
247
|
content: attr(data-select-text);
|
247
248
|
font-size: 12px;
|
248
249
|
opacity: 0;
|
@@ -251,18 +252,18 @@
|
|
251
252
|
top: 50%;
|
252
253
|
transform: translateY(-50%);
|
253
254
|
}
|
254
|
-
[dir=rtl] .choices__list--dropdown .choices__item--selectable
|
255
|
+
[dir=rtl] .choices__list--dropdown .choices__item--selectable, [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable {
|
255
256
|
text-align: right;
|
256
257
|
padding-left: 100px;
|
257
258
|
padding-right: 10px;
|
258
259
|
}
|
259
|
-
[dir=rtl] .choices__list--dropdown .choices__item--selectable
|
260
|
+
[dir=rtl] .choices__list--dropdown .choices__item--selectable::after, [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable::after {
|
260
261
|
right: auto;
|
261
262
|
left: 10px;
|
262
263
|
}
|
263
264
|
}
|
264
265
|
.choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
|
265
|
-
background-color:
|
266
|
+
background-color: #f2f2f2;
|
266
267
|
}
|
267
268
|
.choices__list--dropdown .choices__item--selectable.is-highlighted::after, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted::after {
|
268
269
|
opacity: 0.5;
|
@@ -287,13 +288,14 @@
|
|
287
288
|
font-weight: 600;
|
288
289
|
font-size: 12px;
|
289
290
|
padding: 10px;
|
290
|
-
border-bottom: 1px solid
|
291
|
-
color:
|
291
|
+
border-bottom: 1px solid #f7f7f7;
|
292
|
+
color: gray;
|
292
293
|
}
|
293
294
|
|
294
295
|
.choices__button {
|
295
296
|
text-indent: -9999px;
|
296
|
-
appearance: none;
|
297
|
+
-webkit-appearance: none;
|
298
|
+
appearance: none;
|
297
299
|
border: 0;
|
298
300
|
background-color: transparent;
|
299
301
|
background-repeat: no-repeat;
|