fix(deps): update dependency material-icons to ^0.7.0

GitOrigin-RevId: a5bcfd6a69fff3a38a7dff4f8e163cdc6143fc8f
diff --git a/node_modules/jquery/src/deprecated/ajax-event-alias.js b/node_modules/jquery/src/deprecated/ajax-event-alias.js
new file mode 100644
index 0000000..b96c0aa
--- /dev/null
+++ b/node_modules/jquery/src/deprecated/ajax-event-alias.js
@@ -0,0 +1,22 @@
+define( [
+	"../core",
+	"../ajax",
+	"../event"
+], function( jQuery ) {
+
+"use strict";
+
+jQuery.each( [
+	"ajaxStart",
+	"ajaxStop",
+	"ajaxComplete",
+	"ajaxError",
+	"ajaxSuccess",
+	"ajaxSend"
+], function( _i, type ) {
+	jQuery.fn[ type ] = function( fn ) {
+		return this.on( type, fn );
+	};
+} );
+
+} );