formiojs-eorion 0.1.39 → 0.1.41
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/Formio.js +1 -1
- package/components/Data/editForm/Data.edit.display.js +2 -2
- package/components/builder.js +2 -0
- package/components/file_china_grid/File.form.js +36 -0
- package/components/file_china_grid/File.js +1018 -0
- package/components/file_china_grid/File.unit.js +175 -0
- package/components/file_china_grid/editForm/File.edit.data.js +11 -0
- package/components/file_china_grid/editForm/File.edit.display.js +11 -0
- package/components/file_china_grid/editForm/File.edit.file.js +257 -0
- package/components/file_china_grid/editForm/File.edit.validation.js +14 -0
- package/components/file_china_grid/fixtures/comp1.js +21 -0
- package/components/file_china_grid/fixtures/comp2.js +36 -0
- package/components/file_china_grid/fixtures/index.js +20 -0
- package/components/file_china_grid/fixtures/values.js +16 -0
- package/components/index.js +2 -0
- package/dist/formio.builder.css +38 -0
- package/dist/formio.builder.min.css +1 -1
- package/dist/formio.contrib.js +23 -2
- package/dist/formio.contrib.min.js +1 -1
- package/dist/formio.contrib.min.js.LICENSE.txt +1 -1
- package/dist/formio.embed.min.js.LICENSE.txt +1 -1
- package/dist/formio.form.js +92 -5
- package/dist/formio.form.min.js +1 -1
- package/dist/formio.form.min.js.LICENSE.txt +1 -1
- package/dist/formio.full.css +38 -0
- package/dist/formio.full.js +92 -5
- package/dist/formio.full.min.css +1 -1
- package/dist/formio.full.min.js +1 -1
- package/dist/formio.full.min.js.LICENSE.txt +1 -1
- package/dist/formio.js +1 -1
- 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/package.json +1 -1
- package/templates/bootstrap/fileUDS/form.ejs.js +227 -0
- package/templates/bootstrap/fileUDS/index.js +12 -0
- package/templates/bootstrap/index.js +3 -1
|
@@ -90,7 +90,7 @@ License: MIT
|
|
|
90
90
|
MIT License: http://getify.mit-license.org
|
|
91
91
|
*/
|
|
92
92
|
|
|
93
|
-
/*! formiojs v0.1.
|
|
93
|
+
/*! formiojs v0.1.41 | https://unpkg.com/formiojs@0.1.41/LICENSE.txt */
|
|
94
94
|
|
|
95
95
|
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
|
|
96
96
|
|
package/dist/formio.full.css
CHANGED
|
@@ -5207,6 +5207,44 @@ span[role=link] {
|
|
|
5207
5207
|
margin-left: 5px;
|
|
5208
5208
|
}
|
|
5209
5209
|
|
|
5210
|
+
.formio-component-fileUds .fileSelector {
|
|
5211
|
+
position: relative;
|
|
5212
|
+
padding: 15px;
|
|
5213
|
+
border: 2px dashed #ddd;
|
|
5214
|
+
text-align: center;
|
|
5215
|
+
}
|
|
5216
|
+
.formio-component-fileUds .fileSelector .loader-wrapper {
|
|
5217
|
+
display: none;
|
|
5218
|
+
width: 100%;
|
|
5219
|
+
height: 100%;
|
|
5220
|
+
background-color: rgba(0, 0, 0, 0.1);
|
|
5221
|
+
}
|
|
5222
|
+
.formio-component-fileUds .fileSelector .loader-wrapper .loader {
|
|
5223
|
+
height: 45px;
|
|
5224
|
+
width: 45px;
|
|
5225
|
+
margin-top: -23px;
|
|
5226
|
+
margin-left: -23px;
|
|
5227
|
+
}
|
|
5228
|
+
.formio-component-fileUds .fileSelector a {
|
|
5229
|
+
text-decoration: underline;
|
|
5230
|
+
}
|
|
5231
|
+
|
|
5232
|
+
.formio-component-fileUds .fileSelector.fileDragOver {
|
|
5233
|
+
border-color: #127abe;
|
|
5234
|
+
}
|
|
5235
|
+
|
|
5236
|
+
.formio-component-fileUds .fileSelector .glyphicon,
|
|
5237
|
+
.formio-component-fileUds .fileSelector .fa {
|
|
5238
|
+
font-size: 20px;
|
|
5239
|
+
margin-right: 5px;
|
|
5240
|
+
}
|
|
5241
|
+
|
|
5242
|
+
[dir=rtl] .formio-component-fileUds .fileSelector .fa,
|
|
5243
|
+
[dir=rtl] .formio-component-fileUds .fileSelector .glyphicon {
|
|
5244
|
+
margin-right: unset;
|
|
5245
|
+
margin-left: 5px;
|
|
5246
|
+
}
|
|
5247
|
+
|
|
5210
5248
|
.formio-component-nocodbFile .fileSelector .browse {
|
|
5211
5249
|
cursor: pointer;
|
|
5212
5250
|
}
|