mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
8 lines
440 KiB
Plaintext
8 lines
440 KiB
Plaintext
|
{
|
||
|
"version": 3,
|
||
|
"sources": ["node_modules/focus-visible/dist/focus-visible.js", "node_modules/rxjs/node_modules/tslib/tslib.js", "node_modules/clipboard/dist/clipboard.js", "node_modules/escape-html/index.js", "src/assets/javascripts/bundle.ts", "node_modules/rxjs/node_modules/tslib/modules/index.js", "node_modules/rxjs/src/internal/util/isFunction.ts", "node_modules/rxjs/src/internal/util/createErrorClass.ts", "node_modules/rxjs/src/internal/util/UnsubscriptionError.ts", "node_modules/rxjs/src/internal/util/arrRemove.ts", "node_modules/rxjs/src/internal/Subscription.ts", "node_modules/rxjs/src/internal/config.ts", "node_modules/rxjs/src/internal/scheduler/timeoutProvider.ts", "node_modules/rxjs/src/internal/util/reportUnhandledError.ts", "node_modules/rxjs/src/internal/util/noop.ts", "node_modules/rxjs/src/internal/NotificationFactories.ts", "node_modules/rxjs/src/internal/util/errorContext.ts", "node_modules/rxjs/src/internal/Subscriber.ts", "node_modules/rxjs/src/internal/symbol/observable.ts", "node_modules/rxjs/src/internal/util/identity.ts", "node_modules/rxjs/src/internal/util/pipe.ts", "node_modules/rxjs/src/internal/Observable.ts", "node_modules/rxjs/src/internal/util/lift.ts", "node_modules/rxjs/src/internal/operators/OperatorSubscriber.ts", "node_modules/rxjs/src/internal/scheduler/animationFrameProvider.ts", "node_modules/rxjs/src/internal/util/ObjectUnsubscribedError.ts", "node_modules/rxjs/src/internal/Subject.ts", "node_modules/rxjs/src/internal/scheduler/dateTimestampProvider.ts", "node_modules/rxjs/src/internal/ReplaySubject.ts", "node_modules/rxjs/src/internal/scheduler/Action.ts", "node_modules/rxjs/src/internal/scheduler/intervalProvider.ts", "node_modules/rxjs/src/internal/scheduler/AsyncAction.ts", "node_modules/rxjs/src/internal/Scheduler.ts", "node_modules/rxjs/src/internal/scheduler/AsyncScheduler.ts", "node_modules/rxjs/src/internal/scheduler/async.ts", "node_modules/rxjs/src/internal/scheduler/AnimationFrameAction.ts", "node_modules/rxjs/src/internal/scheduler/AnimationFrameScheduler.ts", "node_modules/rxjs/src/internal/scheduler/animationFrame.ts", "node_modules/rxjs/src/internal/observable/empty.ts", "node_modules/rxjs/src/internal/util/isScheduler.ts", "node_modules/rxjs/src/internal/util/args.ts", "node_modules/rxjs/src/internal/util/isArrayLike.ts", "node_modules/rxjs/src/internal/util/isPromise.ts", "node_modules/rxjs/src/internal/util/isInteropObservable.ts", "node_modules/rxjs/src/internal/util/isAsyncIterable.ts", "node_modules/rxjs/src/internal/util/throwUnobservableError.ts", "node_modules/rxjs/src/internal/symbol/iterator.ts", "node_modules/rxjs/src/internal/util/isIterable.ts", "node_modules/rxjs/src/internal/util/isReadableStreamLike.ts", "node_modules/rxjs/src/internal/observable/innerFrom.ts", "node_modules/rxjs/src/internal/util/executeSchedule.ts", "node_modules/rxjs/src/internal/operators/observeOn.ts", "node_modules/rxjs/src/internal/operators/subscribeOn.ts", "node_modules/rxjs/src/internal/scheduled/scheduleObservable.ts", "node_modules/rxjs/src/internal/scheduled/schedulePromise.ts", "node_modules/rxjs/src/internal/scheduled/scheduleArray.ts", "node_modules/rxjs/src/internal/scheduled/scheduleIterable.ts", "node_modules/rxjs/src/internal/scheduled/scheduleAsyncIterable.ts", "node_modules/rxjs/src/internal/scheduled/scheduleReadableStreamLike.ts", "node_modules/rxjs/src/internal/scheduled/scheduled.ts", "node_modules/rxjs/src/internal/observable/from.ts", "node_modules/rxjs/src/internal/observable/of.ts", "node_modules/rxjs/src/internal/util/isDate.ts", "node_modules/rxjs/src/internal/operators/map.ts", "node_modules/rxjs/src/internal/util/mapOneOrManyArgs.ts", "node_modules/rxjs/src/internal/util/argsArgArrayOrObject.ts", "node_modules/rxjs/src/internal/util/createObject.ts", "node_modules/rxjs/src/internal/observable/combineLatest.ts", "node_modules/rxjs/src/internal/operators/mergeInternals.ts", "node_modules/rxjs/src/internal/operators/mergeMap.ts", "node_modules/rxjs/src/internal/operators/mergeAll.ts", "node_modules/rxjs/src/internal/operators/concatAll.ts", "node_modules/rxjs/sr
|
||
|
"sourcesContent": ["(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined' ? factory() :\n typeof define === 'function' && define.amd ? define(factory) :\n (factory());\n}(this, (function () { 'use strict';\n\n /**\n * Applies the :focus-visible polyfill at the given scope.\n * A scope in this case is either the top-level Document or a Shadow Root.\n *\n * @param {(Document|ShadowRoot)} scope\n * @see https://github.com/WICG/focus-visible\n */\n function applyFocusVisiblePolyfill(scope) {\n var hadKeyboardEvent = true;\n var hadFocusVisibleRecently = false;\n var hadFocusVisibleRecentlyTimeout = null;\n\n var inputTypesAllowlist = {\n text: true,\n search: true,\n url: true,\n tel: true,\n email: true,\n password: true,\n number: true,\n date: true,\n month: true,\n week: true,\n time: true,\n datetime: true,\n 'datetime-local': true\n };\n\n /**\n * Helper function for legacy browsers and iframes which sometimes focus\n * elements like document, body, and non-interactive SVG.\n * @param {Element} el\n */\n function isValidFocusTarget(el) {\n if (\n el &&\n el !== document &&\n el.nodeName !== 'HTML' &&\n el.nodeName !== 'BODY' &&\n 'classList' in el &&\n 'contains' in el.classList\n ) {\n return true;\n }\n return false;\n }\n\n /**\n * Computes whether the given element should automatically trigger the\n * `focus-visible` class being added, i.e. whether it should always match\n * `:focus-visible` when focused.\n * @param {Element} el\n * @return {boolean}\n */\n function focusTriggersKeyboardModality(el) {\n var type = el.type;\n var tagName = el.tagName;\n\n if (tagName === 'INPUT' && inputTypesAllowlist[type] && !el.readOnly) {\n return true;\n }\n\n if (tagName === 'TEXTAREA' && !el.readOnly) {\n return true;\n }\n\n if (el.isContentEditable) {\n return true;\n }\n\n return false;\n }\n\n /**\n * Add the `focus-visible` class to the given element if it was not added by\n * the author.\n * @param {Element} el\n */\n function addFocusVisibleClass(el) {\n if (el.classList.contains('focus-visible')) {\n return;\n }\n el.classList.add('focus-visible');\n el.setAttribute('data-focus-visible-added', '');\n }\n\n /**\n * Remove the `focus-visible` class from the given element if it was not\n * originally added by the author.\n * @param {Element} el\n */\n function removeFocusVisibleClass(el) {\n if (!el.hasAttribute('data-focus-visible-added')) {\n return;\n }\n el.classList.remove('focus-visible');\n el.removeAttribute('data-focus-visible-added');\n }\n\n /**\n * If the most recent user interaction was via the keyboard;\n * and the key press did not include a meta, alt/option, or control key;\n * then the modality is keyboard. Otherwise, the modality is not keyboard.\n * Apply `focus-visible` to any current active element and keep track\n * of our keyboard modality state with `hadKeyboardEvent`.\n * @param {KeyboardEvent} e\n */\n function onKeyDown(e) {\n if (e.metaKey || e.altKey || e.ctrlKey) {\n return;\n }\n\n if (isValidFocusTarget(scope.activeElement)) {\n addFocusVisibleClass(scope.activeElement);\n }\n\n hadKeyboardEvent = true;\n }\n\n /**\n * If at any point a user clicks with a pointing device, ensure that we change\n * the modality away from keyboard.\n * This avoids the situation where a user presses a key on an already focused\n * element, and then clicks on a different element, focusing it with a\n * pointing device, while we still think we're in keyboard modality.\n * @param {Event} e\n */\n function onPointerDown(e) {\n hadKeyboardEvent = false;\n }\n\n /**\n
|
||
|
"mappings": "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
|
||
|
"names": []
|
||
|
}
|