2
0
Эх сурвалжийг харах

Set autoprefixer version to fix compilation error

JC Brand 3 жил өмнө
parent
commit
a95c070c2b

+ 10 - 10
package-lock.json

@@ -4891,9 +4891,9 @@
 			}
 			}
 		},
 		},
 		"node_modules/autoprefixer": {
 		"node_modules/autoprefixer": {
-			"version": "10.4.7",
-			"resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.7.tgz",
-			"integrity": "sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==",
+			"version": "10.4.5",
+			"resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.5.tgz",
+			"integrity": "sha512-Fvd8yCoA7lNX/OUllvS+aS1I7WRBclGXsepbvT8ZaPgrH24rgXpZzF0/6Hh3ZEkwg+0AES/Osd196VZmYoEFtw==",
 			"dev": true,
 			"dev": true,
 			"funding": [
 			"funding": [
 				{
 				{
@@ -4906,8 +4906,8 @@
 				}
 				}
 			],
 			],
 			"dependencies": {
 			"dependencies": {
-				"browserslist": "^4.20.3",
-				"caniuse-lite": "^1.0.30001335",
+				"browserslist": "^4.20.2",
+				"caniuse-lite": "^1.0.30001332",
 				"fraction.js": "^4.2.0",
 				"fraction.js": "^4.2.0",
 				"normalize-range": "^0.1.2",
 				"normalize-range": "^0.1.2",
 				"picocolors": "^1.0.0",
 				"picocolors": "^1.0.0",
@@ -21006,13 +21006,13 @@
 			"dev": true
 			"dev": true
 		},
 		},
 		"autoprefixer": {
 		"autoprefixer": {
-			"version": "10.4.7",
-			"resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.7.tgz",
-			"integrity": "sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==",
+			"version": "10.4.5",
+			"resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.5.tgz",
+			"integrity": "sha512-Fvd8yCoA7lNX/OUllvS+aS1I7WRBclGXsepbvT8ZaPgrH24rgXpZzF0/6Hh3ZEkwg+0AES/Osd196VZmYoEFtw==",
 			"dev": true,
 			"dev": true,
 			"requires": {
 			"requires": {
-				"browserslist": "^4.20.3",
-				"caniuse-lite": "^1.0.30001335",
+				"browserslist": "^4.20.2",
+				"caniuse-lite": "^1.0.30001332",
 				"fraction.js": "^4.2.0",
 				"fraction.js": "^4.2.0",
 				"normalize-range": "^0.1.2",
 				"normalize-range": "^0.1.2",
 				"picocolors": "^1.0.0",
 				"picocolors": "^1.0.0",

+ 3 - 0
package.json

@@ -113,5 +113,8 @@
     "favico.js-slevomat": "^0.3.11",
     "favico.js-slevomat": "^0.3.11",
     "jed": "1.1.1",
     "jed": "1.1.1",
     "lit": "^2.2.6"
     "lit": "^2.2.6"
+  },
+  "resolutions": {
+    "autoprefixer": "10.4.5"
   }
   }
 }
 }

+ 7 - 7
src/headless/plugins/chat/utils.js

@@ -47,13 +47,13 @@ export function autoJoinChats () {
         }
         }
     });
     });
     /**
     /**
-        * Triggered once any private chats have been automatically joined as
-        * specified by the `auto_join_private_chats` setting.
-        * See: https://conversejs.org/docs/html/configuration.html#auto-join-private-chats
-        * @event _converse#privateChatsAutoJoined
-        * @example _converse.api.listen.on('privateChatsAutoJoined', () => { ... });
-        * @example _converse.api.waitUntil('privateChatsAutoJoined').then(() => { ... });
-        */
+     * Triggered once any private chats have been automatically joined as
+     * specified by the `auto_join_private_chats` setting.
+     * See: https://conversejs.org/docs/html/configuration.html#auto-join-private-chats
+     * @event _converse#privateChatsAutoJoined
+     * @example _converse.api.listen.on('privateChatsAutoJoined', () => { ... });
+     * @example _converse.api.waitUntil('privateChatsAutoJoined').then(() => { ... });
+     */
     api.trigger('privateChatsAutoJoined');
     api.trigger('privateChatsAutoJoined');
 }
 }
 
 

+ 2 - 2
src/plugins/chatview/heading.js

@@ -58,9 +58,9 @@ export default class ChatHeading extends CustomElement {
              * @typedef { Object } HeadingButtonAttributes
              * @typedef { Object } HeadingButtonAttributes
              * An object representing a chat heading button
              * An object representing a chat heading button
              * @property { Boolean } standalone
              * @property { Boolean } standalone
-             *      True if shown on its own, false if it must be in the dropdown menu.
+             *  True if shown on its own, false if it must be in the dropdown menu.
              * @property { Function } handler
              * @property { Function } handler
-             *      A handler function to be called when the button is clicked.
+             *  A handler function to be called when the button is clicked.
              * @property { String } a_class - HTML classes to show on the button
              * @property { String } a_class - HTML classes to show on the button
              * @property { String } i18n_text - The user-visiible name of the button
              * @property { String } i18n_text - The user-visiible name of the button
              * @property { String } i18n_title - The tooltip text for this button
              * @property { String } i18n_title - The tooltip text for this button