formiojs-eorion 0.1.0 → 0.1.2
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/CustomTabs/Tabs.form.js +22 -0
- package/components/CustomTabs/Tabs.js +355 -0
- package/components/CustomTabs/Tabs.unit.js +43 -0
- package/components/CustomTabs/editForm/Tabs.edit.display.js +112 -0
- package/components/CustomTabs/fixtures/comp1.js +33 -0
- package/components/CustomTabs/fixtures/index.js +13 -0
- package/components/DataChinaGrid/Data.form.js +19 -0
- package/components/DataChinaGrid/Data.js +261 -0
- package/components/DataChinaGrid/editForm/Data.edit.display.js +478 -0
- package/components/DataChinaGridRow/Data.form.js +19 -0
- package/components/DataChinaGridRow/Data.js +266 -0
- package/components/DataChinaGridRow/editForm/Data.edit.display.js +485 -0
- package/components/FileDownload/FileDownload.js +1 -1
- package/components/Flex/editForm/Flex.edit.display.js +12 -0
- package/components/builder.js +6 -0
- package/components/index.js +7 -1
- package/dist/formio.builder.css +23 -0
- package/dist/formio.builder.min.css +1 -1
- package/dist/formio.contrib.js +76 -3
- 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 +179 -7
- package/dist/formio.form.min.js +1 -1
- package/dist/formio.form.min.js.LICENSE.txt +1 -1
- package/dist/formio.full.css +23 -0
- package/dist/formio.full.js +179 -7
- 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/customTab/flat.ejs.js +19 -0
- package/templates/bootstrap/customTab/form.ejs.js +41 -0
- package/templates/bootstrap/customTab/index.js +14 -0
- package/templates/bootstrap/dataChinaGrid/form.ejs.js +61 -0
- package/templates/bootstrap/dataChinaGrid/index.js +12 -0
- package/templates/bootstrap/dataChinaGridRow/form.ejs.js +63 -0
- package/templates/bootstrap/dataChinaGridRow/index.js +12 -0
- package/templates/bootstrap/flex/form.ejs.js +27 -3
- package/templates/bootstrap/index.js +7 -1
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
MIT License: http://getify.mit-license.org
|
|
59
59
|
*/
|
|
60
60
|
|
|
61
|
-
/*! formiojs v0.1.
|
|
61
|
+
/*! formiojs v0.1.2 | https://unpkg.com/formiojs@0.1.2/LICENSE.txt */
|
|
62
62
|
|
|
63
63
|
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
|
|
64
64
|
|
package/dist/formio.full.css
CHANGED
|
@@ -4964,6 +4964,29 @@ span[role=link] {
|
|
|
4964
4964
|
height: 100%;
|
|
4965
4965
|
}
|
|
4966
4966
|
|
|
4967
|
+
.formio-component-customTabs .tab-header .tab-item {
|
|
4968
|
+
display: flex;
|
|
4969
|
+
align-items: center;
|
|
4970
|
+
cursor: pointer;
|
|
4971
|
+
flex-shrink: 0;
|
|
4972
|
+
color: #999;
|
|
4973
|
+
}
|
|
4974
|
+
.formio-component-customTabs .tab-header .tab-item:hover {
|
|
4975
|
+
color: #333;
|
|
4976
|
+
}
|
|
4977
|
+
.formio-component-customTabs .tab-header .tab-item.active {
|
|
4978
|
+
color: #333;
|
|
4979
|
+
}
|
|
4980
|
+
.formio-component-customTabs .tab-header .tab-item.disabled {
|
|
4981
|
+
color: #ddd;
|
|
4982
|
+
cursor: default;
|
|
4983
|
+
}
|
|
4984
|
+
.formio-component-customTabs .tab-header .tab-line {
|
|
4985
|
+
position: absolute;
|
|
4986
|
+
height: 2px;
|
|
4987
|
+
transition: all 0.3s;
|
|
4988
|
+
}
|
|
4989
|
+
|
|
4967
4990
|
.formio-component-customTable table, .formio-component-customTable th, .formio-component-customTable td {
|
|
4968
4991
|
border: 1px solid black;
|
|
4969
4992
|
}
|