formiojs-eorion 0.1.2 → 0.1.3

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.
@@ -17,7 +17,7 @@
17
17
  MIT License: http://getify.mit-license.org
18
18
  */
19
19
 
20
- /*! formiojs v0.1.2 | https://unpkg.com/formiojs@0.1.2/LICENSE.txt */
20
+ /*! formiojs v0.1.3 | https://unpkg.com/formiojs@0.1.3/LICENSE.txt */
21
21
 
22
22
  /**
23
23
  * @license
@@ -17,7 +17,7 @@
17
17
  MIT License: http://getify.mit-license.org
18
18
  */
19
19
 
20
- /*! formiojs v0.1.2 | https://unpkg.com/formiojs@0.1.2/LICENSE.txt */
20
+ /*! formiojs v0.1.3 | https://unpkg.com/formiojs@0.1.3/LICENSE.txt */
21
21
 
22
22
  /**
23
23
  * @license
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "formiojs-eorion",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Common js library for client side interaction with <form.io>",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -82,6 +82,7 @@ var _customMap = _interopRequireDefault(require("./customMap"));
82
82
  var _dataChinaGrid = _interopRequireDefault(require("./dataChinaGrid"));
83
83
  var _dataChinaGridRow = _interopRequireDefault(require("./dataChinaGridRow"));
84
84
  var _customTab = _interopRequireDefault(require("./customTab"));
85
+ var _progress = _interopRequireDefault(require("./progress"));
85
86
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
86
87
  var _default = {
87
88
  transform: function transform(type, text) {
@@ -171,6 +172,7 @@ var _default = {
171
172
  customMap: _customMap.default,
172
173
  dataChinaGrid: _dataChinaGrid.default,
173
174
  dataChinaGridRow: _dataChinaGridRow.default,
174
- customTab: _customTab.default
175
+ customTab: _customTab.default,
176
+ progress: _progress.default
175
177
  };
176
178
  exports.default = _default;
@@ -0,0 +1,8 @@
1
+ Object.defineProperty(exports, "__esModule", {
2
+ value: true
3
+ });
4
+ exports.default=function(ctx) {
5
+ var __t, __p = '';
6
+ __p += '<div style="width: 100%;display: flex;flex-direction: column">\n <div class="progress" style="background-color: grey">\n <div class="progress-bar" role="progressbar" style="width: 15%" aria-valuenow="15" aria-valuemin="0" aria-valuemax="100"></div>\n <div class="progress-bar" role="progressbar" style="width: 30%;background-color: red" aria-valuenow="30" aria-valuemin="0" aria-valuemax="100"></div>\n <div class="progress-bar" role="progressbar" style="width: 20%;background-color: yellow" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100"></div>\n </div>\n</div>\n';
7
+ return __p
8
+ }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _form = _interopRequireDefault(require("./form.ejs"));
8
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
9
+ var _default = {
10
+ form: _form.default
11
+ };
12
+ exports.default = _default;