|
@@ -25089,6 +25089,17 @@ function toString(value) {
|
|
|
module.exports = toString;
|
|
|
|
|
|
|
|
|
+/***/ }),
|
|
|
+
|
|
|
+/***/ "./node_modules/mini-css-extract-plugin/dist/loader.js!./node_modules/css-loader/index.js?!./node_modules/sass-loader/lib/loader.js?!./sass/converse.scss":
|
|
|
+/*!***************************************************************************************************************************************************************************!*\
|
|
|
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js!./node_modules/css-loader??ref--10-2!./node_modules/sass-loader/lib/loader.js??ref--10-3!./sass/converse.scss ***!
|
|
|
+ \***************************************************************************************************************************************************************************/
|
|
|
+/*! no static exports found */
|
|
|
+/***/ (function(module, exports, __webpack_require__) {
|
|
|
+
|
|
|
+// extracted by mini-css-extract-plugin
|
|
|
+
|
|
|
/***/ }),
|
|
|
|
|
|
/***/ "./node_modules/moment/locale/af.js":
|
|
@@ -42517,6 +42528,515 @@ strophe_js.Strophe.RSM.prototype = {
|
|
|
//# sourceMappingURL=strophe.rsm.js.map
|
|
|
|
|
|
|
|
|
+/***/ }),
|
|
|
+
|
|
|
+/***/ "./node_modules/style-loader/lib/addStyles.js":
|
|
|
+/*!****************************************************!*\
|
|
|
+ !*** ./node_modules/style-loader/lib/addStyles.js ***!
|
|
|
+ \****************************************************/
|
|
|
+/*! no static exports found */
|
|
|
+/***/ (function(module, exports, __webpack_require__) {
|
|
|
+
|
|
|
+/*
|
|
|
+ MIT License http://www.opensource.org/licenses/mit-license.php
|
|
|
+ Author Tobias Koppers @sokra
|
|
|
+*/
|
|
|
+
|
|
|
+var stylesInDom = {};
|
|
|
+
|
|
|
+var memoize = function (fn) {
|
|
|
+ var memo;
|
|
|
+
|
|
|
+ return function () {
|
|
|
+ if (typeof memo === "undefined") memo = fn.apply(this, arguments);
|
|
|
+ return memo;
|
|
|
+ };
|
|
|
+};
|
|
|
+
|
|
|
+var isOldIE = memoize(function () {
|
|
|
+ // Test for IE <= 9 as proposed by Browserhacks
|
|
|
+ // @see http://browserhacks.com/#hack-e71d8692f65334173fee715c222cb805
|
|
|
+ // Tests for existence of standard globals is to allow style-loader
|
|
|
+ // to operate correctly into non-standard environments
|
|
|
+ // @see https://github.com/webpack-contrib/style-loader/issues/177
|
|
|
+ return window && document && document.all && !window.atob;
|
|
|
+});
|
|
|
+
|
|
|
+var getTarget = function (target, parent) {
|
|
|
+ if (parent){
|
|
|
+ return parent.querySelector(target);
|
|
|
+ }
|
|
|
+ return document.querySelector(target);
|
|
|
+};
|
|
|
+
|
|
|
+var getElement = (function (fn) {
|
|
|
+ var memo = {};
|
|
|
+
|
|
|
+ return function(target, parent) {
|
|
|
+ // If passing function in options, then use it for resolve "head" element.
|
|
|
+ // Useful for Shadow Root style i.e
|
|
|
+ // {
|
|
|
+ // insertInto: function () { return document.querySelector("#foo").shadowRoot }
|
|
|
+ // }
|
|
|
+ if (typeof target === 'function') {
|
|
|
+ return target();
|
|
|
+ }
|
|
|
+ if (typeof memo[target] === "undefined") {
|
|
|
+ var styleTarget = getTarget.call(this, target, parent);
|
|
|
+ // Special case to return head of iframe instead of iframe itself
|
|
|
+ if (window.HTMLIFrameElement && styleTarget instanceof window.HTMLIFrameElement) {
|
|
|
+ try {
|
|
|
+ // This will throw an exception if access to iframe is blocked
|
|
|
+ // due to cross-origin restrictions
|
|
|
+ styleTarget = styleTarget.contentDocument.head;
|
|
|
+ } catch(e) {
|
|
|
+ styleTarget = null;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ memo[target] = styleTarget;
|
|
|
+ }
|
|
|
+ return memo[target]
|
|
|
+ };
|
|
|
+})();
|
|
|
+
|
|
|
+var singleton = null;
|
|
|
+var singletonCounter = 0;
|
|
|
+var stylesInsertedAtTop = [];
|
|
|
+
|
|
|
+var fixUrls = __webpack_require__(/*! ./urls */ "./node_modules/style-loader/lib/urls.js");
|
|
|
+
|
|
|
+module.exports = function(list, options) {
|
|
|
+ if (typeof DEBUG !== "undefined" && DEBUG) {
|
|
|
+ if (typeof document !== "object") throw new Error("The style-loader cannot be used in a non-browser environment");
|
|
|
+ }
|
|
|
+
|
|
|
+ options = options || {};
|
|
|
+
|
|
|
+ options.attrs = typeof options.attrs === "object" ? options.attrs : {};
|
|
|
+
|
|
|
+ // Force single-tag solution on IE6-9, which has a hard limit on the # of <style>
|
|
|
+ // tags it will allow on a page
|
|
|
+ if (!options.singleton && typeof options.singleton !== "boolean") options.singleton = isOldIE();
|
|
|
+
|
|
|
+ // By default, add <style> tags to the <head> element
|
|
|
+ if (!options.insertInto) options.insertInto = "head";
|
|
|
+
|
|
|
+ // By default, add <style> tags to the bottom of the target
|
|
|
+ if (!options.insertAt) options.insertAt = "bottom";
|
|
|
+
|
|
|
+ var styles = listToStyles(list, options);
|
|
|
+
|
|
|
+ addStylesToDom(styles, options);
|
|
|
+
|
|
|
+ return function update (newList) {
|
|
|
+ var mayRemove = [];
|
|
|
+
|
|
|
+ for (var i = 0; i < styles.length; i++) {
|
|
|
+ var item = styles[i];
|
|
|
+ var domStyle = stylesInDom[item.id];
|
|
|
+
|
|
|
+ domStyle.refs--;
|
|
|
+ mayRemove.push(domStyle);
|
|
|
+ }
|
|
|
+
|
|
|
+ if(newList) {
|
|
|
+ var newStyles = listToStyles(newList, options);
|
|
|
+ addStylesToDom(newStyles, options);
|
|
|
+ }
|
|
|
+
|
|
|
+ for (var i = 0; i < mayRemove.length; i++) {
|
|
|
+ var domStyle = mayRemove[i];
|
|
|
+
|
|
|
+ if(domStyle.refs === 0) {
|
|
|
+ for (var j = 0; j < domStyle.parts.length; j++) domStyle.parts[j]();
|
|
|
+
|
|
|
+ delete stylesInDom[domStyle.id];
|
|
|
+ }
|
|
|
+ }
|
|
|
+ };
|
|
|
+};
|
|
|
+
|
|
|
+function addStylesToDom (styles, options) {
|
|
|
+ for (var i = 0; i < styles.length; i++) {
|
|
|
+ var item = styles[i];
|
|
|
+ var domStyle = stylesInDom[item.id];
|
|
|
+
|
|
|
+ if(domStyle) {
|
|
|
+ domStyle.refs++;
|
|
|
+
|
|
|
+ for(var j = 0; j < domStyle.parts.length; j++) {
|
|
|
+ domStyle.parts[j](item.parts[j]);
|
|
|
+ }
|
|
|
+
|
|
|
+ for(; j < item.parts.length; j++) {
|
|
|
+ domStyle.parts.push(addStyle(item.parts[j], options));
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ var parts = [];
|
|
|
+
|
|
|
+ for(var j = 0; j < item.parts.length; j++) {
|
|
|
+ parts.push(addStyle(item.parts[j], options));
|
|
|
+ }
|
|
|
+
|
|
|
+ stylesInDom[item.id] = {id: item.id, refs: 1, parts: parts};
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+function listToStyles (list, options) {
|
|
|
+ var styles = [];
|
|
|
+ var newStyles = {};
|
|
|
+
|
|
|
+ for (var i = 0; i < list.length; i++) {
|
|
|
+ var item = list[i];
|
|
|
+ var id = options.base ? item[0] + options.base : item[0];
|
|
|
+ var css = item[1];
|
|
|
+ var media = item[2];
|
|
|
+ var sourceMap = item[3];
|
|
|
+ var part = {css: css, media: media, sourceMap: sourceMap};
|
|
|
+
|
|
|
+ if(!newStyles[id]) styles.push(newStyles[id] = {id: id, parts: [part]});
|
|
|
+ else newStyles[id].parts.push(part);
|
|
|
+ }
|
|
|
+
|
|
|
+ return styles;
|
|
|
+}
|
|
|
+
|
|
|
+function insertStyleElement (options, style) {
|
|
|
+ var target = getElement(options.insertInto)
|
|
|
+
|
|
|
+ if (!target) {
|
|
|
+ throw new Error("Couldn't find a style target. This probably means that the value for the 'insertInto' parameter is invalid.");
|
|
|
+ }
|
|
|
+
|
|
|
+ var lastStyleElementInsertedAtTop = stylesInsertedAtTop[stylesInsertedAtTop.length - 1];
|
|
|
+
|
|
|
+ if (options.insertAt === "top") {
|
|
|
+ if (!lastStyleElementInsertedAtTop) {
|
|
|
+ target.insertBefore(style, target.firstChild);
|
|
|
+ } else if (lastStyleElementInsertedAtTop.nextSibling) {
|
|
|
+ target.insertBefore(style, lastStyleElementInsertedAtTop.nextSibling);
|
|
|
+ } else {
|
|
|
+ target.appendChild(style);
|
|
|
+ }
|
|
|
+ stylesInsertedAtTop.push(style);
|
|
|
+ } else if (options.insertAt === "bottom") {
|
|
|
+ target.appendChild(style);
|
|
|
+ } else if (typeof options.insertAt === "object" && options.insertAt.before) {
|
|
|
+ var nextSibling = getElement(options.insertAt.before, target);
|
|
|
+ target.insertBefore(style, nextSibling);
|
|
|
+ } else {
|
|
|
+ throw new Error("[Style Loader]\n\n Invalid value for parameter 'insertAt' ('options.insertAt') found.\n Must be 'top', 'bottom', or Object.\n (https://github.com/webpack-contrib/style-loader#insertat)\n");
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+function removeStyleElement (style) {
|
|
|
+ if (style.parentNode === null) return false;
|
|
|
+ style.parentNode.removeChild(style);
|
|
|
+
|
|
|
+ var idx = stylesInsertedAtTop.indexOf(style);
|
|
|
+ if(idx >= 0) {
|
|
|
+ stylesInsertedAtTop.splice(idx, 1);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+function createStyleElement (options) {
|
|
|
+ var style = document.createElement("style");
|
|
|
+
|
|
|
+ if(options.attrs.type === undefined) {
|
|
|
+ options.attrs.type = "text/css";
|
|
|
+ }
|
|
|
+
|
|
|
+ if(options.attrs.nonce === undefined) {
|
|
|
+ var nonce = getNonce();
|
|
|
+ if (nonce) {
|
|
|
+ options.attrs.nonce = nonce;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ addAttrs(style, options.attrs);
|
|
|
+ insertStyleElement(options, style);
|
|
|
+
|
|
|
+ return style;
|
|
|
+}
|
|
|
+
|
|
|
+function createLinkElement (options) {
|
|
|
+ var link = document.createElement("link");
|
|
|
+
|
|
|
+ if(options.attrs.type === undefined) {
|
|
|
+ options.attrs.type = "text/css";
|
|
|
+ }
|
|
|
+ options.attrs.rel = "stylesheet";
|
|
|
+
|
|
|
+ addAttrs(link, options.attrs);
|
|
|
+ insertStyleElement(options, link);
|
|
|
+
|
|
|
+ return link;
|
|
|
+}
|
|
|
+
|
|
|
+function addAttrs (el, attrs) {
|
|
|
+ Object.keys(attrs).forEach(function (key) {
|
|
|
+ el.setAttribute(key, attrs[key]);
|
|
|
+ });
|
|
|
+}
|
|
|
+
|
|
|
+function getNonce() {
|
|
|
+ if (false) {}
|
|
|
+
|
|
|
+ return __webpack_require__.nc;
|
|
|
+}
|
|
|
+
|
|
|
+function addStyle (obj, options) {
|
|
|
+ var style, update, remove, result;
|
|
|
+
|
|
|
+ // If a transform function was defined, run it on the css
|
|
|
+ if (options.transform && obj.css) {
|
|
|
+ result = typeof options.transform === 'function'
|
|
|
+ ? options.transform(obj.css)
|
|
|
+ : options.transform.default(obj.css);
|
|
|
+
|
|
|
+ if (result) {
|
|
|
+ // If transform returns a value, use that instead of the original css.
|
|
|
+ // This allows running runtime transformations on the css.
|
|
|
+ obj.css = result;
|
|
|
+ } else {
|
|
|
+ // If the transform function returns a falsy value, don't add this css.
|
|
|
+ // This allows conditional loading of css
|
|
|
+ return function() {
|
|
|
+ // noop
|
|
|
+ };
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if (options.singleton) {
|
|
|
+ var styleIndex = singletonCounter++;
|
|
|
+
|
|
|
+ style = singleton || (singleton = createStyleElement(options));
|
|
|
+
|
|
|
+ update = applyToSingletonTag.bind(null, style, styleIndex, false);
|
|
|
+ remove = applyToSingletonTag.bind(null, style, styleIndex, true);
|
|
|
+
|
|
|
+ } else if (
|
|
|
+ obj.sourceMap &&
|
|
|
+ typeof URL === "function" &&
|
|
|
+ typeof URL.createObjectURL === "function" &&
|
|
|
+ typeof URL.revokeObjectURL === "function" &&
|
|
|
+ typeof Blob === "function" &&
|
|
|
+ typeof btoa === "function"
|
|
|
+ ) {
|
|
|
+ style = createLinkElement(options);
|
|
|
+ update = updateLink.bind(null, style, options);
|
|
|
+ remove = function () {
|
|
|
+ removeStyleElement(style);
|
|
|
+
|
|
|
+ if(style.href) URL.revokeObjectURL(style.href);
|
|
|
+ };
|
|
|
+ } else {
|
|
|
+ style = createStyleElement(options);
|
|
|
+ update = applyToTag.bind(null, style);
|
|
|
+ remove = function () {
|
|
|
+ removeStyleElement(style);
|
|
|
+ };
|
|
|
+ }
|
|
|
+
|
|
|
+ update(obj);
|
|
|
+
|
|
|
+ return function updateStyle (newObj) {
|
|
|
+ if (newObj) {
|
|
|
+ if (
|
|
|
+ newObj.css === obj.css &&
|
|
|
+ newObj.media === obj.media &&
|
|
|
+ newObj.sourceMap === obj.sourceMap
|
|
|
+ ) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ update(obj = newObj);
|
|
|
+ } else {
|
|
|
+ remove();
|
|
|
+ }
|
|
|
+ };
|
|
|
+}
|
|
|
+
|
|
|
+var replaceText = (function () {
|
|
|
+ var textStore = [];
|
|
|
+
|
|
|
+ return function (index, replacement) {
|
|
|
+ textStore[index] = replacement;
|
|
|
+
|
|
|
+ return textStore.filter(Boolean).join('\n');
|
|
|
+ };
|
|
|
+})();
|
|
|
+
|
|
|
+function applyToSingletonTag (style, index, remove, obj) {
|
|
|
+ var css = remove ? "" : obj.css;
|
|
|
+
|
|
|
+ if (style.styleSheet) {
|
|
|
+ style.styleSheet.cssText = replaceText(index, css);
|
|
|
+ } else {
|
|
|
+ var cssNode = document.createTextNode(css);
|
|
|
+ var childNodes = style.childNodes;
|
|
|
+
|
|
|
+ if (childNodes[index]) style.removeChild(childNodes[index]);
|
|
|
+
|
|
|
+ if (childNodes.length) {
|
|
|
+ style.insertBefore(cssNode, childNodes[index]);
|
|
|
+ } else {
|
|
|
+ style.appendChild(cssNode);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+function applyToTag (style, obj) {
|
|
|
+ var css = obj.css;
|
|
|
+ var media = obj.media;
|
|
|
+
|
|
|
+ if(media) {
|
|
|
+ style.setAttribute("media", media)
|
|
|
+ }
|
|
|
+
|
|
|
+ if(style.styleSheet) {
|
|
|
+ style.styleSheet.cssText = css;
|
|
|
+ } else {
|
|
|
+ while(style.firstChild) {
|
|
|
+ style.removeChild(style.firstChild);
|
|
|
+ }
|
|
|
+
|
|
|
+ style.appendChild(document.createTextNode(css));
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+function updateLink (link, options, obj) {
|
|
|
+ var css = obj.css;
|
|
|
+ var sourceMap = obj.sourceMap;
|
|
|
+
|
|
|
+ /*
|
|
|
+ If convertToAbsoluteUrls isn't defined, but sourcemaps are enabled
|
|
|
+ and there is no publicPath defined then lets turn convertToAbsoluteUrls
|
|
|
+ on by default. Otherwise default to the convertToAbsoluteUrls option
|
|
|
+ directly
|
|
|
+ */
|
|
|
+ var autoFixUrls = options.convertToAbsoluteUrls === undefined && sourceMap;
|
|
|
+
|
|
|
+ if (options.convertToAbsoluteUrls || autoFixUrls) {
|
|
|
+ css = fixUrls(css);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (sourceMap) {
|
|
|
+ // http://stackoverflow.com/a/26603875
|
|
|
+ css += "\n/*# sourceMappingURL=data:application/json;base64," + btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))) + " */";
|
|
|
+ }
|
|
|
+
|
|
|
+ var blob = new Blob([css], { type: "text/css" });
|
|
|
+
|
|
|
+ var oldSrc = link.href;
|
|
|
+
|
|
|
+ link.href = URL.createObjectURL(blob);
|
|
|
+
|
|
|
+ if(oldSrc) URL.revokeObjectURL(oldSrc);
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+/***/ }),
|
|
|
+
|
|
|
+/***/ "./node_modules/style-loader/lib/urls.js":
|
|
|
+/*!***********************************************!*\
|
|
|
+ !*** ./node_modules/style-loader/lib/urls.js ***!
|
|
|
+ \***********************************************/
|
|
|
+/*! no static exports found */
|
|
|
+/***/ (function(module, exports) {
|
|
|
+
|
|
|
+
|
|
|
+/**
|
|
|
+ * When source maps are enabled, `style-loader` uses a link element with a data-uri to
|
|
|
+ * embed the css on the page. This breaks all relative urls because now they are relative to a
|
|
|
+ * bundle instead of the current page.
|
|
|
+ *
|
|
|
+ * One solution is to only use full urls, but that may be impossible.
|
|
|
+ *
|
|
|
+ * Instead, this function "fixes" the relative urls to be absolute according to the current page location.
|
|
|
+ *
|
|
|
+ * A rudimentary test suite is located at `test/fixUrls.js` and can be run via the `npm test` command.
|
|
|
+ *
|
|
|
+ */
|
|
|
+
|
|
|
+module.exports = function (css) {
|
|
|
+ // get current location
|
|
|
+ var location = typeof window !== "undefined" && window.location;
|
|
|
+
|
|
|
+ if (!location) {
|
|
|
+ throw new Error("fixUrls requires window.location");
|
|
|
+ }
|
|
|
+
|
|
|
+ // blank or null?
|
|
|
+ if (!css || typeof css !== "string") {
|
|
|
+ return css;
|
|
|
+ }
|
|
|
+
|
|
|
+ var baseUrl = location.protocol + "//" + location.host;
|
|
|
+ var currentDir = baseUrl + location.pathname.replace(/\/[^\/]*$/, "/");
|
|
|
+
|
|
|
+ // convert each url(...)
|
|
|
+ /*
|
|
|
+ This regular expression is just a way to recursively match brackets within
|
|
|
+ a string.
|
|
|
+
|
|
|
+ /url\s*\( = Match on the word "url" with any whitespace after it and then a parens
|
|
|
+ ( = Start a capturing group
|
|
|
+ (?: = Start a non-capturing group
|
|
|
+ [^)(] = Match anything that isn't a parentheses
|
|
|
+ | = OR
|
|
|
+ \( = Match a start parentheses
|
|
|
+ (?: = Start another non-capturing groups
|
|
|
+ [^)(]+ = Match anything that isn't a parentheses
|
|
|
+ | = OR
|
|
|
+ \( = Match a start parentheses
|
|
|
+ [^)(]* = Match anything that isn't a parentheses
|
|
|
+ \) = Match a end parentheses
|
|
|
+ ) = End Group
|
|
|
+ *\) = Match anything and then a close parens
|
|
|
+ ) = Close non-capturing group
|
|
|
+ * = Match anything
|
|
|
+ ) = Close capturing group
|
|
|
+ \) = Match a close parens
|
|
|
+
|
|
|
+ /gi = Get all matches, not the first. Be case insensitive.
|
|
|
+ */
|
|
|
+ var fixedCss = css.replace(/url\s*\(((?:[^)(]|\((?:[^)(]+|\([^)(]*\))*\))*)\)/gi, function(fullMatch, origUrl) {
|
|
|
+ // strip quotes (if they exist)
|
|
|
+ var unquotedOrigUrl = origUrl
|
|
|
+ .trim()
|
|
|
+ .replace(/^"(.*)"$/, function(o, $1){ return $1; })
|
|
|
+ .replace(/^'(.*)'$/, function(o, $1){ return $1; });
|
|
|
+
|
|
|
+ // already a full url? no change
|
|
|
+ if (/^(#|data:|http:\/\/|https:\/\/|file:\/\/\/|\s*$)/i.test(unquotedOrigUrl)) {
|
|
|
+ return fullMatch;
|
|
|
+ }
|
|
|
+
|
|
|
+ // convert the url to a full url
|
|
|
+ var newUrl;
|
|
|
+
|
|
|
+ if (unquotedOrigUrl.indexOf("//") === 0) {
|
|
|
+ //TODO: should we add protocol?
|
|
|
+ newUrl = unquotedOrigUrl;
|
|
|
+ } else if (unquotedOrigUrl.indexOf("/") === 0) {
|
|
|
+ // path should be relative to the base url
|
|
|
+ newUrl = baseUrl + unquotedOrigUrl; // already starts with '/'
|
|
|
+ } else {
|
|
|
+ // path should be relative to current directory
|
|
|
+ newUrl = currentDir + unquotedOrigUrl.replace(/^\.\//, ""); // Strip leading './'
|
|
|
+ }
|
|
|
+
|
|
|
+ // send back the fixed url(...)
|
|
|
+ return "url(" + JSON.stringify(newUrl) + ")";
|
|
|
+ });
|
|
|
+
|
|
|
+ // send back the fixed css
|
|
|
+ return fixedCss;
|
|
|
+};
|
|
|
+
|
|
|
+
|
|
|
/***/ }),
|
|
|
|
|
|
/***/ "./node_modules/twemoji/2/esm.js":
|
|
@@ -47549,6 +48069,36 @@ exports["filterCSS"] = (filterCSS);
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
+/***/ "./sass/converse.scss":
|
|
|
+/*!****************************!*\
|
|
|
+ !*** ./sass/converse.scss ***!
|
|
|
+ \****************************/
|
|
|
+/*! no static exports found */
|
|
|
+/***/ (function(module, exports, __webpack_require__) {
|
|
|
+
|
|
|
+
|
|
|
+var content = __webpack_require__(/*! !../node_modules/mini-css-extract-plugin/dist/loader.js!../node_modules/css-loader??ref--10-2!../node_modules/sass-loader/lib/loader.js??ref--10-3!./converse.scss */ "./node_modules/mini-css-extract-plugin/dist/loader.js!./node_modules/css-loader/index.js?!./node_modules/sass-loader/lib/loader.js?!./sass/converse.scss");
|
|
|
+
|
|
|
+if(typeof content === 'string') content = [[module.i, content, '']];
|
|
|
+
|
|
|
+var transform;
|
|
|
+var insertInto;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+var options = {"hmr":true}
|
|
|
+
|
|
|
+options.transform = transform
|
|
|
+options.insertInto = undefined;
|
|
|
+
|
|
|
+var update = __webpack_require__(/*! ../node_modules/style-loader/lib/addStyles.js */ "./node_modules/style-loader/lib/addStyles.js")(content, options);
|
|
|
+
|
|
|
+if(content.locals) module.exports = content.locals;
|
|
|
+
|
|
|
+if(false) {}
|
|
|
+
|
|
|
+/***/ }),
|
|
|
+
|
|
|
/***/ "./src/converse-autocomplete.js":
|
|
|
/*!**************************************!*\
|
|
|
!*** ./src/converse-autocomplete.js ***!
|
|
@@ -60554,33 +61104,36 @@ _converse_headless_converse_core__WEBPACK_IMPORTED_MODULE_1__["default"].plugins
|
|
|
|
|
|
"use strict";
|
|
|
__webpack_require__.r(__webpack_exports__);
|
|
|
-/* harmony import */ var _converse_headless_converse_caps__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @converse/headless/converse-caps */ "./src/headless/converse-caps.js");
|
|
|
-/* harmony import */ var _converse_headless_converse_mam__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @converse/headless/converse-mam */ "./src/headless/converse-mam.js");
|
|
|
-/* harmony import */ var _converse_headless_converse_ping__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @converse/headless/converse-ping */ "./src/headless/converse-ping.js");
|
|
|
-/* harmony import */ var _converse_headless_converse_pubsub__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @converse/headless/converse-pubsub */ "./src/headless/converse-pubsub.js");
|
|
|
-/* harmony import */ var _converse_headless_converse_vcard__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @converse/headless/converse-vcard */ "./src/headless/converse-vcard.js");
|
|
|
-/* harmony import */ var converse_autocomplete__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! converse-autocomplete */ "./src/converse-autocomplete.js");
|
|
|
-/* harmony import */ var converse_bookmarks__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! converse-bookmarks */ "./src/converse-bookmarks.js");
|
|
|
-/* harmony import */ var converse_chatview__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! converse-chatview */ "./src/converse-chatview.js");
|
|
|
-/* harmony import */ var converse_controlbox__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! converse-controlbox */ "./src/converse-controlbox.js");
|
|
|
-/* harmony import */ var converse_dragresize__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! converse-dragresize */ "./src/converse-dragresize.js");
|
|
|
-/* harmony import */ var converse_embedded__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! converse-embedded */ "./src/converse-embedded.js");
|
|
|
-/* harmony import */ var converse_fullscreen__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! converse-fullscreen */ "./src/converse-fullscreen.js");
|
|
|
-/* harmony import */ var converse_headline__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! converse-headline */ "./src/converse-headline.js");
|
|
|
-/* harmony import */ var converse_mam_views__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! converse-mam-views */ "./src/converse-mam-views.js");
|
|
|
-/* harmony import */ var converse_minimize__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! converse-minimize */ "./src/converse-minimize.js");
|
|
|
-/* harmony import */ var converse_muc_views__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! converse-muc-views */ "./src/converse-muc-views.js");
|
|
|
-/* harmony import */ var converse_notification__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! converse-notification */ "./src/converse-notification.js");
|
|
|
-/* harmony import */ var converse_omemo__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! converse-omemo */ "./src/converse-omemo.js");
|
|
|
-/* harmony import */ var converse_push__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! converse-push */ "./src/converse-push.js");
|
|
|
-/* harmony import */ var converse_register__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! converse-register */ "./src/converse-register.js");
|
|
|
-/* harmony import */ var converse_roomslist__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! converse-roomslist */ "./src/converse-roomslist.js");
|
|
|
-/* harmony import */ var converse_rosterview__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! converse-rosterview */ "./src/converse-rosterview.js");
|
|
|
-/* harmony import */ var _converse_headless_converse_core__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! @converse/headless/converse-core */ "./src/headless/converse-core.js");
|
|
|
+/* harmony import */ var _sass_converse_scss__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../sass/converse.scss */ "./sass/converse.scss");
|
|
|
+/* harmony import */ var _sass_converse_scss__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_sass_converse_scss__WEBPACK_IMPORTED_MODULE_0__);
|
|
|
+/* harmony import */ var _converse_headless_converse_caps__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @converse/headless/converse-caps */ "./src/headless/converse-caps.js");
|
|
|
+/* harmony import */ var _converse_headless_converse_mam__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @converse/headless/converse-mam */ "./src/headless/converse-mam.js");
|
|
|
+/* harmony import */ var _converse_headless_converse_ping__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @converse/headless/converse-ping */ "./src/headless/converse-ping.js");
|
|
|
+/* harmony import */ var _converse_headless_converse_pubsub__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @converse/headless/converse-pubsub */ "./src/headless/converse-pubsub.js");
|
|
|
+/* harmony import */ var _converse_headless_converse_vcard__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @converse/headless/converse-vcard */ "./src/headless/converse-vcard.js");
|
|
|
+/* harmony import */ var converse_autocomplete__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! converse-autocomplete */ "./src/converse-autocomplete.js");
|
|
|
+/* harmony import */ var converse_bookmarks__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! converse-bookmarks */ "./src/converse-bookmarks.js");
|
|
|
+/* harmony import */ var converse_chatview__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! converse-chatview */ "./src/converse-chatview.js");
|
|
|
+/* harmony import */ var converse_controlbox__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! converse-controlbox */ "./src/converse-controlbox.js");
|
|
|
+/* harmony import */ var converse_dragresize__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! converse-dragresize */ "./src/converse-dragresize.js");
|
|
|
+/* harmony import */ var converse_embedded__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! converse-embedded */ "./src/converse-embedded.js");
|
|
|
+/* harmony import */ var converse_fullscreen__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! converse-fullscreen */ "./src/converse-fullscreen.js");
|
|
|
+/* harmony import */ var converse_headline__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! converse-headline */ "./src/converse-headline.js");
|
|
|
+/* harmony import */ var converse_mam_views__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! converse-mam-views */ "./src/converse-mam-views.js");
|
|
|
+/* harmony import */ var converse_minimize__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! converse-minimize */ "./src/converse-minimize.js");
|
|
|
+/* harmony import */ var converse_muc_views__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! converse-muc-views */ "./src/converse-muc-views.js");
|
|
|
+/* harmony import */ var converse_notification__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! converse-notification */ "./src/converse-notification.js");
|
|
|
+/* harmony import */ var converse_omemo__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! converse-omemo */ "./src/converse-omemo.js");
|
|
|
+/* harmony import */ var converse_push__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! converse-push */ "./src/converse-push.js");
|
|
|
+/* harmony import */ var converse_register__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! converse-register */ "./src/converse-register.js");
|
|
|
+/* harmony import */ var converse_roomslist__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! converse-roomslist */ "./src/converse-roomslist.js");
|
|
|
+/* harmony import */ var converse_rosterview__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! converse-rosterview */ "./src/converse-rosterview.js");
|
|
|
+/* harmony import */ var _converse_headless_converse_core__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! @converse/headless/converse-core */ "./src/headless/converse-core.js");
|
|
|
/* START: Removable components
|
|
|
* --------------------
|
|
|
* Any of the following components may be removed if they're not needed.
|
|
|
*/
|
|
|
+
|
|
|
// XEP-0115 Entity Capabilities
|
|
|
|
|
|
// XEP-0313 Message Archive Management
|
|
@@ -60623,10 +61176,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
|
|
|
|
|
|
const WHITELISTED_PLUGINS = ['converse-autocomplete', 'converse-bookmarks', 'converse-chatboxviews', 'converse-chatview', 'converse-controlbox', 'converse-dragresize', 'converse-embedded', 'converse-fullscreen', 'converse-headline', 'converse-mam-views', 'converse-message-view', 'converse-minimize', 'converse-modal', 'converse-muc-views', 'converse-notification', 'converse-omemo', 'converse-profile', 'converse-push', 'converse-register', 'converse-roomslist', 'converse-rosterview', 'converse-singleton'];
|
|
|
-const initialize = _converse_headless_converse_core__WEBPACK_IMPORTED_MODULE_22__["default"].initialize;
|
|
|
+const initialize = _converse_headless_converse_core__WEBPACK_IMPORTED_MODULE_23__["default"].initialize;
|
|
|
|
|
|
-_converse_headless_converse_core__WEBPACK_IMPORTED_MODULE_22__["default"].initialize = function (settings, callback) {
|
|
|
- if (_converse_headless_converse_core__WEBPACK_IMPORTED_MODULE_22__["default"].env._.isArray(settings.whitelisted_plugins)) {
|
|
|
+_converse_headless_converse_core__WEBPACK_IMPORTED_MODULE_23__["default"].initialize = function (settings, callback) {
|
|
|
+ if (_converse_headless_converse_core__WEBPACK_IMPORTED_MODULE_23__["default"].env._.isArray(settings.whitelisted_plugins)) {
|
|
|
settings.whitelisted_plugins = settings.whitelisted_plugins.concat(WHITELISTED_PLUGINS);
|
|
|
} else {
|
|
|
settings.whitelisted_plugins = WHITELISTED_PLUGINS;
|
|
@@ -60635,7 +61188,7 @@ _converse_headless_converse_core__WEBPACK_IMPORTED_MODULE_22__["default"].initia
|
|
|
return initialize(settings, callback);
|
|
|
};
|
|
|
|
|
|
-/* harmony default export */ __webpack_exports__["default"] = (_converse_headless_converse_core__WEBPACK_IMPORTED_MODULE_22__["default"]);
|
|
|
+/* harmony default export */ __webpack_exports__["default"] = (_converse_headless_converse_core__WEBPACK_IMPORTED_MODULE_23__["default"]);
|
|
|
|
|
|
/***/ }),
|
|
|
|