Skip to content

Commit 6afbd77

Browse files
committed
update css and js deps
Signed-off-by: Nicola Murino <nicola.murino@gmail.com>
1 parent 93e5cb3 commit 6afbd77

19 files changed

+61
-473
lines changed

openapi/swagger-ui/swagger-ui-bundle.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

openapi/swagger-ui/swagger-ui-standalone-preset.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

openapi/swagger-ui/swagger-ui.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/vendor/codemirror/codemirror.js

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8259,8 +8259,8 @@
82598259
}
82608260

82618261
function disableBrowserMagic(field, spellcheck, autocorrect, autocapitalize) {
8262-
field.setAttribute("autocorrect", autocorrect ? "" : "off");
8263-
field.setAttribute("autocapitalize", autocapitalize ? "" : "off");
8262+
field.setAttribute("autocorrect", autocorrect ? "on" : "off");
8263+
field.setAttribute("autocapitalize", autocapitalize ? "on" : "off");
82648264
field.setAttribute("spellcheck", !!spellcheck);
82658265
}
82668266

@@ -8275,7 +8275,6 @@
82758275
else { te.setAttribute("wrap", "off"); }
82768276
// If border: 0; -- iOS fails to open keyboard (issue #1287)
82778277
if (ios) { te.style.border = "1px solid black"; }
8278-
disableBrowserMagic(te);
82798278
return div
82808279
}
82818280

@@ -8897,6 +8896,7 @@
88978896
}
88988897
// Old-fashioned briefly-focus-a-textarea hack
88998898
var kludge = hiddenTextarea(), te = kludge.firstChild;
8899+
disableBrowserMagic(te);
89008900
cm.display.lineSpace.insertBefore(kludge, cm.display.lineSpace.firstChild);
89018901
te.value = lastCopied.text.join("\n");
89028902
var hadFocus = activeElt(div.ownerDocument);
@@ -9461,6 +9461,8 @@
94619461
// The semihidden textarea that is focused when the editor is
94629462
// focused, and receives input.
94639463
this.textarea = this.wrapper.firstChild;
9464+
var opts = this.cm.options;
9465+
disableBrowserMagic(this.textarea, opts.spellcheck, opts.autocorrect, opts.autocapitalize);
94649466
};
94659467

94669468
TextareaInput.prototype.screenReaderLabelChanged = function (label) {
@@ -9865,7 +9867,7 @@
98659867

98669868
addLegacyProps(CodeMirror);
98679869

9868-
CodeMirror.version = "5.65.9";
9870+
CodeMirror.version = "5.65.11";
98699871

98709872
return CodeMirror;
98719873

static/vendor/datatables/buttons.bootstrap4.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/vendor/datatables/buttons.bootstrap4.min.js

Lines changed: 4 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/vendor/datatables/buttons.colVis.min.js

Lines changed: 4 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)