formiojs-eorion 0.1.61 → 0.1.63
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/datetimeRange/DateTimeRange.js +0 -2
- package/dist/formio.contrib.js +3 -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 +4 -4
- package/dist/formio.form.min.js +1 -1
- package/dist/formio.form.min.js.LICENSE.txt +1 -1
- package/dist/formio.full.js +4 -4
- package/dist/formio.full.min.js +1 -1
- package/dist/formio.full.min.js.LICENSE.txt +1 -1
- package/dist/formio.js +2 -2
- 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/providers/storage/index.js +1 -5
- package/widgets/CalendarRangeWidget.js +0 -3
package/package.json
CHANGED
|
@@ -13,9 +13,5 @@ var _googleDrive = _interopRequireDefault(require("./googleDrive"));
|
|
|
13
13
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
14
14
|
var _default = exports.default = {
|
|
15
15
|
base64: _base.default,
|
|
16
|
-
|
|
17
|
-
url: _url.default,
|
|
18
|
-
azure: _azure.default,
|
|
19
|
-
indexeddb: _indexeddb.default,
|
|
20
|
-
googledrive: _googleDrive.default
|
|
16
|
+
url: _url.default
|
|
21
17
|
};
|
|
@@ -145,7 +145,6 @@ var CalendarWidget = exports.default = /*#__PURE__*/function (_InputWidget) {
|
|
|
145
145
|
this.settings.dateFormat = (0, _utils.convertFormatToFlatpickr)(this.settings.dateFormat);
|
|
146
146
|
this.settings.position = 'auto center';
|
|
147
147
|
this.settings.onChange = function () {
|
|
148
|
-
console.log('flatpickr onChange', _this3.settings.manualInputValue);
|
|
149
148
|
if (_this3.settings.allowInput) {
|
|
150
149
|
if (_this3.settings.isManuallyOverriddenValue && _this3.settings.enableTime) {
|
|
151
150
|
_this3.calendar._input.value = _this3.settings.manualInputValue;
|
|
@@ -389,7 +388,6 @@ var CalendarWidget = exports.default = /*#__PURE__*/function (_InputWidget) {
|
|
|
389
388
|
key: "setValue",
|
|
390
389
|
value: function setValue(value) {
|
|
391
390
|
var _this8 = this;
|
|
392
|
-
console.log('setValue', value);
|
|
393
391
|
var saveAsText = this.settings.saveAs === 'text';
|
|
394
392
|
if (!this.calendar) {
|
|
395
393
|
value = value ? (0, _utils.formatDate)(this.timezonesUrl, value, (0, _utils.convertFormatToMoment)(this.settings.format), this.timezone, (0, _utils.convertFormatToMoment)(this.valueMomentFormat)) : value;
|
|
@@ -467,7 +465,6 @@ var CalendarWidget = exports.default = /*#__PURE__*/function (_InputWidget) {
|
|
|
467
465
|
disableMobile: true
|
|
468
466
|
}));
|
|
469
467
|
this.calendar.altInput.addEventListener('input', function (event) {
|
|
470
|
-
console.log('inputValue altInput input', event.target.value, _this9.settings.currentValue, _this9.calendar.selectedDates);
|
|
471
468
|
if (_this9.settings.allowInput && _this9.settings.currentValue !== event.target.value) {
|
|
472
469
|
_this9.settings.manualInputValue = event.target.value;
|
|
473
470
|
_this9.settings.isManuallyOverriddenValue = true;
|