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.
- package/Formio.js +1 -1
- package/components/index.js +1 -0
- package/components/progress/Progress.form.js +19 -0
- package/components/progress/Progress.js +129 -0
- package/components/progress/editForm/Progress.edit.display.js +76 -0
- package/dist/formio.builder.css +1 -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 +57 -3
- package/dist/formio.form.min.js +1 -1
- package/dist/formio.form.min.js.LICENSE.txt +1 -1
- package/dist/formio.full.css +1 -0
- package/dist/formio.full.js +57 -3
- 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/index.js +3 -1
- package/templates/bootstrap/progress/form.ejs.js +8 -0
- package/templates/bootstrap/progress/index.js +12 -0
package/package.json
CHANGED
|
@@ -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;
|