-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
060994d
commit fb7e713
Showing
594 changed files
with
9,969 additions
and
36 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
Object.defineProperty(exports, "__esModule", { | ||
value: true | ||
}); | ||
exports.default=function(ctx) { | ||
var __t, __p = '', __j = Array.prototype.join; | ||
function print() { __p += __j.call(arguments, '') } | ||
|
||
if (ctx.mode.autocomplete) { ; | ||
__p += '\n <div class="address-autocomplete-container">\n <input\n ref="' + | ||
((__t = ( ctx.ref.searchInput )) == null ? '' : __t) + | ||
'"\n '; | ||
for (var attr in ctx.inputAttributes) { ; | ||
__p += '\n ' + | ||
((__t = (attr)) == null ? '' : __t) + | ||
'="' + | ||
((__t = (ctx.inputAttributes[attr])) == null ? '' : __t) + | ||
'"\n '; | ||
} ; | ||
__p += '\n value="' + | ||
((__t = ( ctx.displayValue )) == null ? '' : __t) + | ||
'"\n autocomplete="off"\n aria-label="' + | ||
((__t = (ctx.t('autocomplete'))) == null ? '' : __t) + | ||
'"\n >\n '; | ||
if (!ctx.component.disableClearIcon) { ; | ||
__p += '\n <i\n class="address-autocomplete-remove-value-icon fa fa-times"\n tabindex="' + | ||
((__t = ( ctx.inputAttributes.tabindex )) == null ? '' : __t) + | ||
'"\n ref="' + | ||
((__t = ( ctx.ref.removeValueIcon )) == null ? '' : __t) + | ||
'"\n ></i>\n '; | ||
} ; | ||
__p += '\n </div>\n'; | ||
} ; | ||
__p += '\n'; | ||
if (ctx.self.manualModeEnabled) { ; | ||
__p += '\n <div class="form-check checkbox">\n <label class="form-check-label">\n <input\n ref="' + | ||
((__t = ( ctx.ref.modeSwitcher )) == null ? '' : __t) + | ||
'"\n type="checkbox"\n class="form-check-input"\n tabindex="' + | ||
((__t = ( ctx.inputAttributes.tabindex )) == null ? '' : __t) + | ||
'"\n '; | ||
if (ctx.mode.manual) { ; | ||
__p += 'checked=true'; | ||
} ; | ||
__p += '\n '; | ||
if (ctx.disabled) { ; | ||
__p += 'disabled=true'; | ||
} ; | ||
__p += '\n >\n <span>' + | ||
((__t = ( ctx.component.switchToManualModeLabel )) == null ? '' : __t) + | ||
'</span>\n </label>\n </div>\n'; | ||
} ; | ||
__p += '\n'; | ||
if (ctx.self.manualMode) { ; | ||
__p += '\n <div ref="' + | ||
((__t = ( ctx.nestedKey )) == null ? '' : __t) + | ||
'">\n ' + | ||
((__t = ( ctx.children )) == null ? '' : __t) + | ||
'\n </div>\n'; | ||
} ; | ||
__p += '\n'; | ||
return __p | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Object.defineProperty(exports, "__esModule", { | ||
value: true | ||
}); | ||
exports.default=function(ctx) { | ||
var __t, __p = '', __j = Array.prototype.join; | ||
function print() { __p += __j.call(arguments, '') } | ||
__p += '<div ref="value">'; | ||
if (ctx.displayValue) { ; | ||
__p += | ||
((__t = (ctx.displayValue)) == null ? '' : __t); | ||
} else { ; | ||
__p += '-'; | ||
} ; | ||
__p += '</div>\n'; | ||
return __p | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
declare const _default: { | ||
form: string; | ||
html: string; | ||
}; | ||
export default _default; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const form_ejs_1 = require("./form.ejs"); | ||
const html_ejs_1 = require("./html.ejs"); | ||
exports.default = { form: form_ejs_1.default, html: html_ejs_1.default }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
Object.defineProperty(exports, "__esModule", { | ||
value: true | ||
}); | ||
exports.default=function(ctx) { | ||
var __t, __p = '', __j = Array.prototype.join; | ||
function print() { __p += __j.call(arguments, '') } | ||
__p += '<div\n '; | ||
for (var attr in ctx.attrs) { ; | ||
__p += '\n ' + | ||
((__t = (attr)) == null ? '' : __t) + | ||
'="' + | ||
((__t = (ctx.attrs[attr])) == null ? '' : __t) + | ||
'"\n '; | ||
} ; | ||
__p += '\n>\n ' + | ||
((__t = (ctx.message)) == null ? '' : __t) + | ||
'\n '; | ||
if (ctx.options.vpat) { ; | ||
__p += '\n <span class="visually-hidden" id="hotkey-i-' + | ||
((__t = (ctx.form._id)) == null ? '' : __t) + | ||
'">' + | ||
((__t = (ctx.t('errorListHotkey'))) == null ? '' : __t) + | ||
'</span>\n '; | ||
} ; | ||
__p += '\n</div>\n'; | ||
return __p | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
declare const _default: { | ||
form: string; | ||
}; | ||
export default _default; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const form_ejs_1 = require("./form.ejs"); | ||
exports.default = { form: form_ejs_1.default }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Object.defineProperty(exports, "__esModule", { | ||
value: true | ||
}); | ||
exports.default=function(ctx) { | ||
var __t, __p = ''; | ||
__p += '<div class="formio builder row formbuilder">\n <div class="col-xs-4 col-sm-3 col-md-2 formcomponents">\n ' + | ||
((__t = (ctx.sidebar)) == null ? '' : __t) + | ||
'\n </div>\n <div class="col-xs-8 col-sm-9 col-md-10 formarea" ref="form">\n ' + | ||
((__t = (ctx.form)) == null ? '' : __t) + | ||
'\n </div>\n</div>\n'; | ||
return __p | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
declare const _default: { | ||
form: string; | ||
}; | ||
export default _default; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const form_ejs_1 = require("./form.ejs"); | ||
exports.default = { form: form_ejs_1.default }; |
Oops, something went wrong.