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.
@@ -17,7 +17,7 @@
17
17
  MIT License: http://getify.mit-license.org
18
18
  */
19
19
 
20
- /*! formiojs v0.1.61 | https://unpkg.com/formiojs@0.1.61/LICENSE.txt */
20
+ /*! formiojs v0.1.63 | https://unpkg.com/formiojs@0.1.63/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.61 | https://unpkg.com/formiojs@0.1.61/LICENSE.txt */
20
+ /*! formiojs v0.1.63 | https://unpkg.com/formiojs@0.1.63/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.61",
3
+ "version": "0.1.63",
4
4
  "description": "Common js library for client side interaction with <form.io>",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -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
- s3: _s.default,
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;