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.
Files changed (45) hide show
  1. package/Formio.js +1 -1
  2. package/components/CustomTabs/Tabs.form.js +22 -0
  3. package/components/CustomTabs/Tabs.js +355 -0
  4. package/components/CustomTabs/Tabs.unit.js +43 -0
  5. package/components/CustomTabs/editForm/Tabs.edit.display.js +112 -0
  6. package/components/CustomTabs/fixtures/comp1.js +33 -0
  7. package/components/CustomTabs/fixtures/index.js +13 -0
  8. package/components/DataChinaGrid/Data.form.js +19 -0
  9. package/components/DataChinaGrid/Data.js +261 -0
  10. package/components/DataChinaGrid/editForm/Data.edit.display.js +478 -0
  11. package/components/DataChinaGridRow/Data.form.js +19 -0
  12. package/components/DataChinaGridRow/Data.js +266 -0
  13. package/components/DataChinaGridRow/editForm/Data.edit.display.js +485 -0
  14. package/components/FileDownload/FileDownload.js +1 -1
  15. package/components/Flex/editForm/Flex.edit.display.js +12 -0
  16. package/components/builder.js +6 -0
  17. package/components/index.js +7 -1
  18. package/dist/formio.builder.css +23 -0
  19. package/dist/formio.builder.min.css +1 -1
  20. package/dist/formio.contrib.js +76 -3
  21. package/dist/formio.contrib.min.js +1 -1
  22. package/dist/formio.contrib.min.js.LICENSE.txt +1 -1
  23. package/dist/formio.embed.min.js.LICENSE.txt +1 -1
  24. package/dist/formio.form.js +179 -7
  25. package/dist/formio.form.min.js +1 -1
  26. package/dist/formio.form.min.js.LICENSE.txt +1 -1
  27. package/dist/formio.full.css +23 -0
  28. package/dist/formio.full.js +179 -7
  29. package/dist/formio.full.min.css +1 -1
  30. package/dist/formio.full.min.js +1 -1
  31. package/dist/formio.full.min.js.LICENSE.txt +1 -1
  32. package/dist/formio.js +1 -1
  33. package/dist/formio.min.js +1 -1
  34. package/dist/formio.min.js.LICENSE.txt +1 -1
  35. package/dist/formio.utils.min.js.LICENSE.txt +1 -1
  36. package/package.json +1 -1
  37. package/templates/bootstrap/customTab/flat.ejs.js +19 -0
  38. package/templates/bootstrap/customTab/form.ejs.js +41 -0
  39. package/templates/bootstrap/customTab/index.js +14 -0
  40. package/templates/bootstrap/dataChinaGrid/form.ejs.js +61 -0
  41. package/templates/bootstrap/dataChinaGrid/index.js +12 -0
  42. package/templates/bootstrap/dataChinaGridRow/form.ejs.js +63 -0
  43. package/templates/bootstrap/dataChinaGridRow/index.js +12 -0
  44. package/templates/bootstrap/flex/form.ejs.js +27 -3
  45. 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.0 | https://unpkg.com/formiojs@0.1.0/LICENSE.txt */
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
 
@@ -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
  }