mirror of
https://github.com/rxliuli/apps.apple.com.git
synced 2025-11-09 17:40:32 +00:00
init commit
This commit is contained in:
BIN
assets/favicon/favicon-32.png
Normal file
BIN
assets/favicon/favicon-32.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.4 KiB |
157
assets/focus-visible/focus-visible.min.js
vendored
Normal file
157
assets/focus-visible/focus-visible.min.js
vendored
Normal file
@@ -0,0 +1,157 @@
|
||||
!(function (e, t) {
|
||||
'object' == typeof exports && 'undefined' != typeof module
|
||||
? t()
|
||||
: 'function' == typeof define && define.amd
|
||||
? define(t)
|
||||
: t();
|
||||
})(0, function () {
|
||||
'use strict';
|
||||
function e(e) {
|
||||
var t = !0,
|
||||
n = !1,
|
||||
o = null,
|
||||
d = {
|
||||
text: !0,
|
||||
search: !0,
|
||||
url: !0,
|
||||
tel: !0,
|
||||
email: !0,
|
||||
password: !0,
|
||||
number: !0,
|
||||
date: !0,
|
||||
month: !0,
|
||||
week: !0,
|
||||
time: !0,
|
||||
datetime: !0,
|
||||
'datetime-local': !0,
|
||||
};
|
||||
function i(e) {
|
||||
return !!(
|
||||
e &&
|
||||
e !== document &&
|
||||
'HTML' !== e.nodeName &&
|
||||
'BODY' !== e.nodeName &&
|
||||
'classList' in e &&
|
||||
'contains' in e.classList
|
||||
);
|
||||
}
|
||||
function s(e) {
|
||||
e.classList.contains('focus-visible') ||
|
||||
(e.classList.add('focus-visible'),
|
||||
e.setAttribute('data-focus-visible-added', ''));
|
||||
}
|
||||
function u(e) {
|
||||
t = !1;
|
||||
}
|
||||
function a() {
|
||||
document.addEventListener('mousemove', c),
|
||||
document.addEventListener('mousedown', c),
|
||||
document.addEventListener('mouseup', c),
|
||||
document.addEventListener('pointermove', c),
|
||||
document.addEventListener('pointerdown', c),
|
||||
document.addEventListener('pointerup', c),
|
||||
document.addEventListener('touchmove', c),
|
||||
document.addEventListener('touchstart', c),
|
||||
document.addEventListener('touchend', c);
|
||||
}
|
||||
function c(e) {
|
||||
(e.target.nodeName && 'html' === e.target.nodeName.toLowerCase()) ||
|
||||
((t = !1),
|
||||
document.removeEventListener('mousemove', c),
|
||||
document.removeEventListener('mousedown', c),
|
||||
document.removeEventListener('mouseup', c),
|
||||
document.removeEventListener('pointermove', c),
|
||||
document.removeEventListener('pointerdown', c),
|
||||
document.removeEventListener('pointerup', c),
|
||||
document.removeEventListener('touchmove', c),
|
||||
document.removeEventListener('touchstart', c),
|
||||
document.removeEventListener('touchend', c));
|
||||
}
|
||||
document.addEventListener(
|
||||
'keydown',
|
||||
function (n) {
|
||||
n.metaKey ||
|
||||
n.altKey ||
|
||||
n.ctrlKey ||
|
||||
(i(e.activeElement) && s(e.activeElement), (t = !0));
|
||||
},
|
||||
!0,
|
||||
),
|
||||
document.addEventListener('mousedown', u, !0),
|
||||
document.addEventListener('pointerdown', u, !0),
|
||||
document.addEventListener('touchstart', u, !0),
|
||||
document.addEventListener(
|
||||
'visibilitychange',
|
||||
function (e) {
|
||||
'hidden' === document.visibilityState &&
|
||||
(n && (t = !0), a());
|
||||
},
|
||||
!0,
|
||||
),
|
||||
a(),
|
||||
e.addEventListener(
|
||||
'focus',
|
||||
function (e) {
|
||||
var n, o, u;
|
||||
i(e.target) &&
|
||||
(t ||
|
||||
((n = e.target),
|
||||
(o = n.type),
|
||||
('INPUT' === (u = n.tagName) &&
|
||||
d[o] &&
|
||||
!n.readOnly) ||
|
||||
('TEXTAREA' === u && !n.readOnly) ||
|
||||
n.isContentEditable)) &&
|
||||
s(e.target);
|
||||
},
|
||||
!0,
|
||||
),
|
||||
e.addEventListener(
|
||||
'blur',
|
||||
function (e) {
|
||||
var t;
|
||||
i(e.target) &&
|
||||
(e.target.classList.contains('focus-visible') ||
|
||||
e.target.hasAttribute(
|
||||
'data-focus-visible-added',
|
||||
)) &&
|
||||
((n = !0),
|
||||
window.clearTimeout(o),
|
||||
(o = window.setTimeout(function () {
|
||||
n = !1;
|
||||
}, 100)),
|
||||
(t = e.target).hasAttribute(
|
||||
'data-focus-visible-added',
|
||||
) &&
|
||||
(t.classList.remove('focus-visible'),
|
||||
t.removeAttribute('data-focus-visible-added')));
|
||||
},
|
||||
!0,
|
||||
),
|
||||
e.nodeType === Node.DOCUMENT_FRAGMENT_NODE && e.host
|
||||
? e.host.setAttribute('data-js-focus-visible', '')
|
||||
: e.nodeType === Node.DOCUMENT_NODE &&
|
||||
(document.documentElement.classList.add('js-focus-visible'),
|
||||
document.documentElement.setAttribute(
|
||||
'data-js-focus-visible',
|
||||
'',
|
||||
));
|
||||
}
|
||||
if ('undefined' != typeof window && 'undefined' != typeof document) {
|
||||
var t;
|
||||
window.applyFocusVisiblePolyfill = e;
|
||||
try {
|
||||
t = new CustomEvent('focus-visible-polyfill-ready');
|
||||
} catch (e) {
|
||||
(t = document.createEvent('CustomEvent')).initCustomEvent(
|
||||
'focus-visible-polyfill-ready',
|
||||
!1,
|
||||
!1,
|
||||
{},
|
||||
);
|
||||
}
|
||||
window.dispatchEvent(t);
|
||||
}
|
||||
'undefined' != typeof document && e(document);
|
||||
});
|
||||
//# sourceMappingURL=focus-visible.min.js.map
|
||||
@@ -0,0 +1 @@
|
||||
No Content: https://apps.apple.com/assets/fonts/locale-switcher/ArabicUIText-Regular-subset.woff2
|
||||
1
assets/icons/sidebar-searchfield-close-on-dark.svg
Normal file
1
assets/icons/sidebar-searchfield-close-on-dark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg height="14" viewBox="0 0 14 14" width="14" xmlns="http://www.w3.org/2000/svg"><path d="m7 0c3.8659932 0 7 3.13400675 7 7 0 3.8659932-3.1340068 7-7 7-3.86599325 0-7-3.1340068-7-7 0-3.86599325 3.13400675-7 7-7zm3.2615892 3.73841079c-.31788105-.31788105-.83326807-.31788105-1.15114912 0l-2.11044008 2.11058921-2.11044008-2.11058921c-.31788105-.31788105-.83326807-.31788105-1.15114913 0-.31788105.31788106-.31788105.83326808 0 1.15114913l2.11058921 2.11044008-2.11058921 2.11044008-.07284774.08335637c-.24282581.31905095-.21854323.77640179.07284774 1.06779275l.08335638.0728478c.31905094.2428258.77640179.2185432 1.06779275-.0728478l2.11044008-2.1105892 2.11044008 2.1105892c.31788105.3178811.83326807.3178811 1.15114912 0 .3178811-.31788105.3178811-.83326807 0-1.15114912l-2.1105892-2.11044008 2.1105892-2.11044008.0728478-.08335637c.2428258-.31905095.2185432-.77640179-.0728478-1.06779276z" fill="#fff" fill-opacity=".6" fill-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 951 B |
3
assets/indexB87DnNzwx-.js
Normal file
3
assets/indexB87DnNzwx-.js
Normal file
File diff suppressed because one or more lines are too long
2
assets/indexBRTBTu87nN.js
Normal file
2
assets/indexBRTBTu87nN.js
Normal file
File diff suppressed because one or more lines are too long
1
assets/indexC-lllyUtRG.css
Normal file
1
assets/indexC-lllyUtRG.css
Normal file
File diff suppressed because one or more lines are too long
2
assets/indexC16D7IckKX.js
Normal file
2
assets/indexC16D7IckKX.js
Normal file
File diff suppressed because one or more lines are too long
2
assets/mt-client-logger-core.esm-rJfHcY8Zf.js
Normal file
2
assets/mt-client-logger-core.esm-rJfHcY8Zf.js
Normal file
@@ -0,0 +1,2 @@
|
||||
import{r as i,a as _}from"./mt-metricskit-utils-private.esm~DkzakSThTT.js";function f(t){this.key=t}f.prototype.toString=function(){return this.key};var l={flagArguments:{INCLUDE_CALL_STACK:new f("INCLUDE_CALL_STACK"),MIRROR_TO_SERVER:new f("MIRROR_TO_SERVER"),SUPPRESS_CLIENT_OUTPUT:new f("SUPPRESS_CLIENT_OUTPUT")},setDelegate:function(e){return i.attachDelegate(this,e)},execute:function(e,n,o){var a=e.levelStringToIntMap[n];if(e.level()!==e.NONE&&e.level()<=a){var u=Array.prototype.slice.call(o),s=l.nonFlagLogArguments(u),v=l.logOptions(e,a,u),h=v.includeCallStack?new Error().stack:null,c=h?s.concat("\n"+h):s;if(e[n]._lastLog=c,v.mirrorToServer,v.throwInsteadOfPrint)throw new Error(s.toString());v.suppressClientOutput||(console[n]?console[n].apply(console,c):console.log.apply(console,c))}},isFlagObject:function(e){return e&&e===l.flagArguments[e.toString()]},nonFlagLogArguments:function(e){return e.filter(function(n){return!l.isFlagObject(n)})},logOptions:function(e,n,o){var a={},u;return o.forEach(function(s){l.isFlagObject(s)&&(u=_.snakeCaseToCamelCase(s.toString()),a[u]=!0)}),i.isFunction(e.mirrorToServerLevel)&&e.mirrorToServerLevel()!==e.NONE&&e.mirrorToServerLevel()<=n&&(a.mirrorToServer=!0),e.throwLevel()!==e.NONE&&e.throwLevel()<=n&&(a.throwInsteadOfPrint=!0),a},sendToServer:function(e,n,o,a){}},p={NONE:0,DEBUG:1,INFO:2,WARN:3,ERROR:4},L={MIN_LEVEL:p.NONE,MAX_LEVEL:p.ERROR,levelIntToStringMap:{0:"none",1:"debug",2:"info",3:"warn",4:"error"},levelStringToIntMap:{none:0,debug:1,info:2,warn:3,error:4}};i.extend(L,p);var g={loggerName:"defaultLogger",level:L.INFO,throwLevel:L.NONE},E=!1,S={};function r(t){this._loggerName=t,this._level,this._throwLevel,E||(E=!0,i.extend(r.prototype,L),i.extend(r.prototype,l.flagArguments))}function O(t){t=t||g.loggerName;var e=S[t];return e||(e=new r(t),S[t]=e),e}r.level=function(){return g.level};r.throwLevel=function(){return g.throwLevel};r.prototype.setDelegate=function(e){return i.attachDelegate(this,e)};r.prototype.loggerName=function(){return this._loggerName};r.prototype.levelParameterAsInt=function(e){var n=null,o;return i.isString(e)?o=this.levelStringToIntMap[e.toLowerCase()]:i.isNumber(e)&&(o=e),o>=this.MIN_LEVEL&&o<=this.MAX_LEVEL&&(n=o),n};r.prototype.setLevel=function(e){var n=this.levelParameterAsInt(e);n!==null&&(this._level=n)};r.prototype.setThrowLevel=function(e){var n=this.levelParameterAsInt(e);n!==null&&(this._throwLevel=n)};r.prototype.level=function(){var e=this._level;return i.isNumber(e)?e:r.level()};r.prototype.levelString=function(){return this.levelIntToStringMap[this.level()]};r.prototype.throwLevel=function(){var e=this._throwLevel;return i.isNumber(e)?e:r.throwLevel()};r.prototype.debug=function(){l.execute(this,"debug",arguments)};r.prototype.info=function(){l.execute(this,"info",arguments)};r.prototype.warn=function(){l.execute(this,"warn",arguments)};r.prototype.error=function(){l.execute(this,"error",arguments)};r.prototype.lastLog=function(e){return this[e]?this[e]._lastLog:null};export{r as L,O as l};
|
||||
//# sourceMappingURL=mt-client-logger-core.esm~-rJfHcY8Zf.js.map
|
||||
2
assets/mt-metricskit-delegates-web.esmC4cdYnvnOP.js
Normal file
2
assets/mt-metricskit-delegates-web.esmC4cdYnvnOP.js
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
assets/mt-metricskit-utils-private.esmDkzakSThTT.js
Normal file
2
assets/mt-metricskit-utils-private.esmDkzakSThTT.js
Normal file
File diff suppressed because one or more lines are too long
2
assets/translationsrCrRWHpZfd.js
Normal file
2
assets/translationsrCrRWHpZfd.js
Normal file
File diff suppressed because one or more lines are too long
2
assets/versionBNUm1OH-k3.js
Normal file
2
assets/versionBNUm1OH-k3.js
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user