@react.material/theme
Version:
The React Material Components for the web theme component
696 lines (561 loc) • 34.2 kB
JavaScript
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory();
else if(typeof define === 'function' && define.amd)
define([], factory);
else if(typeof exports === 'object')
exports["Theme"] = factory();
else
root["r"] = root["r"] || {}, root["r"]["m"] = root["r"]["m"] || {}, root["r"]["m"]["Theme"] = factory();
})(this, function() {
return /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId]) {
/******/ return installedModules[moduleId].exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
/******/ i: moduleId,
/******/ l: false,
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/
/******/ // Flag the module as loaded
/******/ module.l = true;
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/******/
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
/******/
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
/******/
/******/ // define getter function for harmony exports
/******/ __webpack_require__.d = function(exports, name, getter) {
/******/ if(!__webpack_require__.o(exports, name)) {
/******/ Object.defineProperty(exports, name, {
/******/ configurable: false,
/******/ enumerable: true,
/******/ get: getter
/******/ });
/******/ }
/******/ };
/******/
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = function(module) {
/******/ var getter = module && module.__esModule ?
/******/ function getDefault() { return module['default']; } :
/******/ function getModuleExports() { return module; };
/******/ __webpack_require__.d(getter, 'a', getter);
/******/ return getter;
/******/ };
/******/
/******/ // Object.prototype.hasOwnProperty.call
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
/******/
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "/assets/";
/******/
/******/ // Load entry module and return exports
/******/ return __webpack_require__(__webpack_require__.s = 67);
/******/ })
/************************************************************************/
/******/ ({
/***/ 0:
/***/ (function(module, exports) {
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
// css base code, injected by the css-loader
module.exports = function (useSourceMap) {
var list = [];
// return the list of modules as css string
list.toString = function toString() {
return this.map(function (item) {
var content = cssWithMappingToString(item, useSourceMap);
if (item[2]) {
return "@media " + item[2] + "{" + content + "}";
} else {
return content;
}
}).join("");
};
// import a list of modules into the list
list.i = function (modules, mediaQuery) {
if (typeof modules === "string") modules = [[null, modules, ""]];
var alreadyImportedModules = {};
for (var i = 0; i < this.length; i++) {
var id = this[i][0];
if (typeof id === "number") alreadyImportedModules[id] = true;
}
for (i = 0; i < modules.length; i++) {
var item = modules[i];
// skip already imported module
// this implementation is not 100% perfect for weird media query combinations
// when a module is imported multiple times with different media queries.
// I hope this will never occur (Hey this way we have smaller bundles)
if (typeof item[0] !== "number" || !alreadyImportedModules[item[0]]) {
if (mediaQuery && !item[2]) {
item[2] = mediaQuery;
} else if (mediaQuery) {
item[2] = "(" + item[2] + ") and (" + mediaQuery + ")";
}
list.push(item);
}
}
};
return list;
};
function cssWithMappingToString(item, useSourceMap) {
var content = item[1] || '';
var cssMapping = item[3];
if (!cssMapping) {
return content;
}
if (useSourceMap && typeof btoa === 'function') {
var sourceMapping = toComment(cssMapping);
var sourceURLs = cssMapping.sources.map(function (source) {
return '/*# sourceURL=' + cssMapping.sourceRoot + source + ' */';
});
return [content].concat(sourceURLs).concat([sourceMapping]).join('\n');
}
return [content].join('\n');
}
// Adapted from convert-source-map (MIT)
function toComment(sourceMap) {
// eslint-disable-next-line no-undef
var base64 = btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap))));
var data = 'sourceMappingURL=data:application/json;charset=utf-8;base64,' + base64;
return '/*# ' + data + ' */';
}
/***/ }),
/***/ 4:
/***/ (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 getElement = (function (fn) {
var memo = {};
return function(selector) {
if (typeof memo[selector] === "undefined") {
var styleTarget = fn.call(this, selector);
// Special case to return head of iframe instead of iframe itself
if (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[selector] = styleTarget;
}
return memo[selector]
};
})(function (target) {
return document.querySelector(target)
});
var singleton = null;
var singletonCounter = 0;
var stylesInsertedAtTop = [];
var fixUrls = __webpack_require__(6);
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) 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.insertInto + " " + options.insertAt.before);
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");
options.attrs.type = "text/css";
addAttrs(style, options.attrs);
insertStyleElement(options, style);
return style;
}
function createLinkElement (options) {
var link = document.createElement("link");
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 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 = options.transform(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);
}
/***/ }),
/***/ 6:
/***/ (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:\/\/\/)/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;
};
/***/ }),
/***/ 67:
/***/ (function(module, exports, __webpack_require__) {
module.exports = __webpack_require__(68);
/***/ }),
/***/ 68:
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__index_css__ = __webpack_require__(69);
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__index_css___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__index_css__);
/***/ }),
/***/ 69:
/***/ (function(module, exports, __webpack_require__) {
// style-loader: Adds some css to the DOM by adding a <style> tag
// load the styles
var content = __webpack_require__(70);
if(typeof content === 'string') content = [[module.i, content, '']];
// Prepare cssTransformation
var transform;
var options = {"sourceMap":false,"hmr":false}
options.transform = transform
// add the styles to the DOM
var update = __webpack_require__(4)(content, options);
if(content.locals) module.exports = content.locals;
/***/ }),
/***/ 70:
/***/ (function(module, exports, __webpack_require__) {
exports = module.exports = __webpack_require__(0)(false);
// imports
exports.i(__webpack_require__(71), "");
// module
exports.push([module.i, ":root {\n@include:: root;\n /*--mdc-theme-primary: #FFFFFF;*/\n /*--mdc-theme-primary-light: var(--mdc-theme-primary);*/\n --mdc-theme-primary-dark: #212121;\n /*--mdc-theme-secondary: #9E9E9E;*/\n /*--mdc-theme-secondary-light: #9E9E9E;*/\n /*--mdc-theme-secondary-dark: #000;*/\n /*--mdc-theme-background: #000;*/\n}\n\n/*.mdc-checkbox.theme::before, .mdc-checkbox.theme::after {*/\n/*background-color: rgba(158, 158, 158, 0.14);*/\n/*}*/\n/*.mdc-button.theme::before, .mdc-button.theme::after {*/\n/*!*background-color: rgba(63, 81, 181, 0.16);*!*/\n/*background-color: rgba(158, 158, 158, 0.16);*/\n/*}*/\n\n.mdc-theme--dark .mdc-button--raised:not(:disabled) {\n background-color: var(--mdc-theme-primary-dark, #212121);\n /*background-color: #3f51b5;*/\n}\n\n/*.mdc-theme--dark .mdc-toolbar {*/\n /*background-color: var(--mdc-theme-primary-dark, #212121);*/\n /*!*background-color: #3f51b5;*!*/\n/*}*/", ""]);
// exports
/***/ }),
/***/ 71:
/***/ (function(module, exports, __webpack_require__) {
exports = module.exports = __webpack_require__(0)(false);
// imports
// module
exports.push([module.i, "/*!\n Material Components for the web\n Copyright (c) 2017 Google Inc.\n License: Apache-2.0\n*/\n:root {\n --mdc-theme-primary: #3f51b5;\n --mdc-theme-primary-light: #a4addf;\n --mdc-theme-primary-dark: #6f7dcd;\n --mdc-theme-secondary: #ff4081;\n --mdc-theme-secondary-light: #ff87b0;\n --mdc-theme-secondary-dark: #f80054;\n --mdc-theme-background: #fff;\n --mdc-theme-text-primary-on-primary: white;\n --mdc-theme-text-secondary-on-primary: rgba(255, 255, 255, 0.7);\n --mdc-theme-text-hint-on-primary: rgba(255, 255, 255, 0.5);\n --mdc-theme-text-disabled-on-primary: rgba(255, 255, 255, 0.5);\n --mdc-theme-text-icon-on-primary: rgba(255, 255, 255, 0.5);\n --mdc-theme-text-primary-on-primary-light: rgba(0, 0, 0, 0.87);\n --mdc-theme-text-secondary-on-primary-light: rgba(0, 0, 0, 0.54);\n --mdc-theme-text-hint-on-primary-light: rgba(0, 0, 0, 0.38);\n --mdc-theme-text-disabled-on-primary-light: rgba(0, 0, 0, 0.38);\n --mdc-theme-text-icon-on-primary-light: rgba(0, 0, 0, 0.38);\n --mdc-theme-text-primary-on-primary-dark: white;\n --mdc-theme-text-secondary-on-primary-dark: rgba(255, 255, 255, 0.7);\n --mdc-theme-text-hint-on-primary-dark: rgba(255, 255, 255, 0.5);\n --mdc-theme-text-disabled-on-primary-dark: rgba(255, 255, 255, 0.5);\n --mdc-theme-text-icon-on-primary-dark: rgba(255, 255, 255, 0.5);\n --mdc-theme-text-primary-on-secondary: white;\n --mdc-theme-text-secondary-on-secondary: rgba(255, 255, 255, 0.7);\n --mdc-theme-text-hint-on-secondary: rgba(255, 255, 255, 0.5);\n --mdc-theme-text-disabled-on-secondary: rgba(255, 255, 255, 0.5);\n --mdc-theme-text-icon-on-secondary: rgba(255, 255, 255, 0.5);\n --mdc-theme-text-primary-on-secondary-light: rgba(0, 0, 0, 0.87);\n --mdc-theme-text-secondary-on-secondary-light: rgba(0, 0, 0, 0.54);\n --mdc-theme-text-hint-on-secondary-light: rgba(0, 0, 0, 0.38);\n --mdc-theme-text-disabled-on-secondary-light: rgba(0, 0, 0, 0.38);\n --mdc-theme-text-icon-on-secondary-light: rgba(0, 0, 0, 0.38);\n --mdc-theme-text-primary-on-secondary-dark: white;\n --mdc-theme-text-secondary-on-secondary-dark: rgba(255, 255, 255, 0.7);\n --mdc-theme-text-hint-on-secondary-dark: rgba(255, 255, 255, 0.5);\n --mdc-theme-text-disabled-on-secondary-dark: rgba(255, 255, 255, 0.5);\n --mdc-theme-text-icon-on-secondary-dark: rgba(255, 255, 255, 0.5);\n --mdc-theme-text-primary-on-background: rgba(0, 0, 0, 0.87);\n --mdc-theme-text-secondary-on-background: rgba(0, 0, 0, 0.54);\n --mdc-theme-text-hint-on-background: rgba(0, 0, 0, 0.38);\n --mdc-theme-text-disabled-on-background: rgba(0, 0, 0, 0.38);\n --mdc-theme-text-icon-on-background: rgba(0, 0, 0, 0.38);\n --mdc-theme-text-primary-on-light: rgba(0, 0, 0, 0.87);\n --mdc-theme-text-secondary-on-light: rgba(0, 0, 0, 0.54);\n --mdc-theme-text-hint-on-light: rgba(0, 0, 0, 0.38);\n --mdc-theme-text-disabled-on-light: rgba(0, 0, 0, 0.38);\n --mdc-theme-text-icon-on-light: rgba(0, 0, 0, 0.38);\n --mdc-theme-text-primary-on-dark: white;\n --mdc-theme-text-secondary-on-dark: rgba(255, 255, 255, 0.7);\n --mdc-theme-text-hint-on-dark: rgba(255, 255, 255, 0.5);\n --mdc-theme-text-disabled-on-dark: rgba(255, 255, 255, 0.5);\n --mdc-theme-text-icon-on-dark: rgba(255, 255, 255, 0.5); }\n\n.mdc-theme--background {\n /* @alternate */\n background-color: #fff;\n background-color: var(--mdc-theme-background, #fff); }\n\n.mdc-theme--primary {\n /* @alternate */\n color: #3f51b5 !important;\n color: var(--mdc-theme-primary, #3f51b5) !important; }\n\n.mdc-theme--primary-light {\n /* @alternate */\n color: #a4addf !important;\n color: var(--mdc-theme-primary-light, #a4addf) !important; }\n\n.mdc-theme--primary-dark {\n /* @alternate */\n color: #6f7dcd !important;\n color: var(--mdc-theme-primary-dark, #6f7dcd) !important; }\n\n.mdc-theme--secondary {\n /* @alternate */\n color: #ff4081 !important;\n color: var(--mdc-theme-secondary, #ff4081) !important; }\n\n.mdc-theme--secondary-light {\n /* @alternate */\n color: #ff87b0 !important;\n color: var(--mdc-theme-secondary-light, #ff87b0) !important; }\n\n.mdc-theme--secondary-dark {\n /* @alternate */\n color: #f80054 !important;\n color: var(--mdc-theme-secondary-dark, #f80054) !important; }\n\n.mdc-theme--text-primary-on-primary {\n /* @alternate */\n color: white !important;\n color: var(--mdc-theme-text-primary-on-primary, white) !important; }\n\n.mdc-theme--text-secondary-on-primary {\n /* @alternate */\n color: rgba(255, 255, 255, 0.7) !important;\n color: var(--mdc-theme-text-secondary-on-primary, rgba(255, 255, 255, 0.7)) !important; }\n\n.mdc-theme--text-hint-on-primary {\n /* @alternate */\n color: rgba(255, 255, 255, 0.5) !important;\n color: var(--mdc-theme-text-hint-on-primary, rgba(255, 255, 255, 0.5)) !important; }\n\n.mdc-theme--text-disabled-on-primary {\n /* @alternate */\n color: rgba(255, 255, 255, 0.5) !important;\n color: var(--mdc-theme-text-disabled-on-primary, rgba(255, 255, 255, 0.5)) !important; }\n\n.mdc-theme--text-icon-on-primary {\n /* @alternate */\n color: rgba(255, 255, 255, 0.5) !important;\n color: var(--mdc-theme-text-icon-on-primary, rgba(255, 255, 255, 0.5)) !important; }\n\n.mdc-theme--text-primary-on-primary-light {\n /* @alternate */\n color: rgba(0, 0, 0, 0.87) !important;\n color: var(--mdc-theme-text-primary-on-primary-light, rgba(0, 0, 0, 0.87)) !important; }\n\n.mdc-theme--text-secondary-on-primary-light {\n /* @alternate */\n color: rgba(0, 0, 0, 0.54) !important;\n color: var(--mdc-theme-text-secondary-on-primary-light, rgba(0, 0, 0, 0.54)) !important; }\n\n.mdc-theme--text-hint-on-primary-light {\n /* @alternate */\n color: rgba(0, 0, 0, 0.38) !important;\n color: var(--mdc-theme-text-hint-on-primary-light, rgba(0, 0, 0, 0.38)) !important; }\n\n.mdc-theme--text-disabled-on-primary-light {\n /* @alternate */\n color: rgba(0, 0, 0, 0.38) !important;\n color: var(--mdc-theme-text-disabled-on-primary-light, rgba(0, 0, 0, 0.38)) !important; }\n\n.mdc-theme--text-icon-on-primary-light {\n /* @alternate */\n color: rgba(0, 0, 0, 0.38) !important;\n color: var(--mdc-theme-text-icon-on-primary-light, rgba(0, 0, 0, 0.38)) !important; }\n\n.mdc-theme--text-primary-on-primary-dark {\n /* @alternate */\n color: white !important;\n color: var(--mdc-theme-text-primary-on-primary-dark, white) !important; }\n\n.mdc-theme--text-secondary-on-primary-dark {\n /* @alternate */\n color: rgba(255, 255, 255, 0.7) !important;\n color: var(--mdc-theme-text-secondary-on-primary-dark, rgba(255, 255, 255, 0.7)) !important; }\n\n.mdc-theme--text-hint-on-primary-dark {\n /* @alternate */\n color: rgba(255, 255, 255, 0.5) !important;\n color: var(--mdc-theme-text-hint-on-primary-dark, rgba(255, 255, 255, 0.5)) !important; }\n\n.mdc-theme--text-disabled-on-primary-dark {\n /* @alternate */\n color: rgba(255, 255, 255, 0.5) !important;\n color: var(--mdc-theme-text-disabled-on-primary-dark, rgba(255, 255, 255, 0.5)) !important; }\n\n.mdc-theme--text-icon-on-primary-dark {\n /* @alternate */\n color: rgba(255, 255, 255, 0.5) !important;\n color: var(--mdc-theme-text-icon-on-primary-dark, rgba(255, 255, 255, 0.5)) !important; }\n\n.mdc-theme--text-primary-on-secondary {\n /* @alternate */\n color: white !important;\n color: var(--mdc-theme-text-primary-on-secondary, white) !important; }\n\n.mdc-theme--text-secondary-on-secondary {\n /* @alternate */\n color: rgba(255, 255, 255, 0.7) !important;\n color: var(--mdc-theme-text-secondary-on-secondary, rgba(255, 255, 255, 0.7)) !important; }\n\n.mdc-theme--text-hint-on-secondary {\n /* @alternate */\n color: rgba(255, 255, 255, 0.5) !important;\n color: var(--mdc-theme-text-hint-on-secondary, rgba(255, 255, 255, 0.5)) !important; }\n\n.mdc-theme--text-disabled-on-secondary {\n /* @alternate */\n color: rgba(255, 255, 255, 0.5) !important;\n color: var(--mdc-theme-text-disabled-on-secondary, rgba(255, 255, 255, 0.5)) !important; }\n\n.mdc-theme--text-icon-on-secondary {\n /* @alternate */\n color: rgba(255, 255, 255, 0.5) !important;\n color: var(--mdc-theme-text-icon-on-secondary, rgba(255, 255, 255, 0.5)) !important; }\n\n.mdc-theme--text-primary-on-secondary-light {\n /* @alternate */\n color: rgba(0, 0, 0, 0.87) !important;\n color: var(--mdc-theme-text-primary-on-secondary-light, rgba(0, 0, 0, 0.87)) !important; }\n\n.mdc-theme--text-secondary-on-secondary-light {\n /* @alternate */\n color: rgba(0, 0, 0, 0.54) !important;\n color: var(--mdc-theme-text-secondary-on-secondary-light, rgba(0, 0, 0, 0.54)) !important; }\n\n.mdc-theme--text-hint-on-secondary-light {\n /* @alternate */\n color: rgba(0, 0, 0, 0.38) !important;\n color: var(--mdc-theme-text-hint-on-secondary-light, rgba(0, 0, 0, 0.38)) !important; }\n\n.mdc-theme--text-disabled-on-secondary-light {\n /* @alternate */\n color: rgba(0, 0, 0, 0.38) !important;\n color: var(--mdc-theme-text-disabled-on-secondary-light, rgba(0, 0, 0, 0.38)) !important; }\n\n.mdc-theme--text-icon-on-secondary-light {\n /* @alternate */\n color: rgba(0, 0, 0, 0.38) !important;\n color: var(--mdc-theme-text-icon-on-secondary-light, rgba(0, 0, 0, 0.38)) !important; }\n\n.mdc-theme--text-primary-on-secondary-dark {\n /* @alternate */\n color: white !important;\n color: var(--mdc-theme-text-primary-on-secondary-dark, white) !important; }\n\n.mdc-theme--text-secondary-on-secondary-dark {\n /* @alternate */\n color: rgba(255, 255, 255, 0.7) !important;\n color: var(--mdc-theme-text-secondary-on-secondary-dark, rgba(255, 255, 255, 0.7)) !important; }\n\n.mdc-theme--text-hint-on-secondary-dark {\n /* @alternate */\n color: rgba(255, 255, 255, 0.5) !important;\n color: var(--mdc-theme-text-hint-on-secondary-dark, rgba(255, 255, 255, 0.5)) !important; }\n\n.mdc-theme--text-disabled-on-secondary-dark {\n /* @alternate */\n color: rgba(255, 255, 255, 0.5) !important;\n color: var(--mdc-theme-text-disabled-on-secondary-dark, rgba(255, 255, 255, 0.5)) !important; }\n\n.mdc-theme--text-icon-on-secondary-dark {\n /* @alternate */\n color: rgba(255, 255, 255, 0.5) !important;\n color: var(--mdc-theme-text-icon-on-secondary-dark, rgba(255, 255, 255, 0.5)) !important; }\n\n.mdc-theme--text-primary-on-background {\n /* @alternate */\n color: rgba(0, 0, 0, 0.87) !important;\n color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87)) !important; }\n\n.mdc-theme--text-secondary-on-background {\n /* @alternate */\n color: rgba(0, 0, 0, 0.54) !important;\n color: var(--mdc-theme-text-secondary-on-background, rgba(0, 0, 0, 0.54)) !important; }\n\n.mdc-theme--text-hint-on-background {\n /* @alternate */\n color: rgba(0, 0, 0, 0.38) !important;\n color: var(--mdc-theme-text-hint-on-background, rgba(0, 0, 0, 0.38)) !important; }\n\n.mdc-theme--text-disabled-on-background {\n /* @alternate */\n color: rgba(0, 0, 0, 0.38) !important;\n color: var(--mdc-theme-text-disabled-on-background, rgba(0, 0, 0, 0.38)) !important; }\n\n.mdc-theme--text-icon-on-background {\n /* @alternate */\n color: rgba(0, 0, 0, 0.38) !important;\n color: var(--mdc-theme-text-icon-on-background, rgba(0, 0, 0, 0.38)) !important; }\n\n.mdc-theme--text-primary-on-light {\n /* @alternate */\n color: rgba(0, 0, 0, 0.87) !important;\n color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87)) !important; }\n\n.mdc-theme--text-secondary-on-light {\n /* @alternate */\n color: rgba(0, 0, 0, 0.54) !important;\n color: var(--mdc-theme-text-secondary-on-light, rgba(0, 0, 0, 0.54)) !important; }\n\n.mdc-theme--text-hint-on-light {\n /* @alternate */\n color: rgba(0, 0, 0, 0.38) !important;\n color: var(--mdc-theme-text-hint-on-light, rgba(0, 0, 0, 0.38)) !important; }\n\n.mdc-theme--text-disabled-on-light {\n /* @alternate */\n color: rgba(0, 0, 0, 0.38) !important;\n color: var(--mdc-theme-text-disabled-on-light, rgba(0, 0, 0, 0.38)) !important; }\n\n.mdc-theme--text-icon-on-light {\n /* @alternate */\n color: rgba(0, 0, 0, 0.38) !important;\n color: var(--mdc-theme-text-icon-on-light, rgba(0, 0, 0, 0.38)) !important; }\n\n.mdc-theme--text-primary-on-dark {\n /* @alternate */\n color: white !important;\n color: var(--mdc-theme-text-primary-on-dark, white) !important; }\n\n.mdc-theme--text-secondary-on-dark {\n /* @alternate */\n color: rgba(255, 255, 255, 0.7) !important;\n color: var(--mdc-theme-text-secondary-on-dark, rgba(255, 255, 255, 0.7)) !important; }\n\n.mdc-theme--text-hint-on-dark {\n /* @alternate */\n color: rgba(255, 255, 255, 0.5) !important;\n color: var(--mdc-theme-text-hint-on-dark, rgba(255, 255, 255, 0.5)) !important; }\n\n.mdc-theme--text-disabled-on-dark {\n /* @alternate */\n color: rgba(255, 255, 255, 0.5) !important;\n color: var(--mdc-theme-text-disabled-on-dark, rgba(255, 255, 255, 0.5)) !important; }\n\n.mdc-theme--text-icon-on-dark {\n /* @alternate */\n color: rgba(255, 255, 255, 0.5) !important;\n color: var(--mdc-theme-text-icon-on-dark, rgba(255, 255, 255, 0.5)) !important; }\n\n.mdc-theme--primary-bg {\n /* @alternate */\n background-color: #3f51b5 !important;\n background-color: var(--mdc-theme-primary, #3f51b5) !important; }\n\n.mdc-theme--primary-light-bg {\n /* @alternate */\n background-color: #a4addf !important;\n background-color: var(--mdc-theme-primary-light, #a4addf) !important; }\n\n.mdc-theme--primary-dark-bg {\n /* @alternate */\n background-color: #6f7dcd !important;\n background-color: var(--mdc-theme-primary-dark, #6f7dcd) !important; }\n\n.mdc-theme--secondary-bg {\n /* @alternate */\n background-color: #ff4081 !important;\n background-color: var(--mdc-theme-secondary, #ff4081) !important; }\n\n.mdc-theme--secondary-light-bg {\n /* @alternate */\n background-color: #ff87b0 !important;\n background-color: var(--mdc-theme-secondary-light, #ff87b0) !important; }\n\n.mdc-theme--secondary-dark-bg {\n /* @alternate */\n background-color: #f80054 !important;\n background-color: var(--mdc-theme-secondary-dark, #f80054) !important; }\n", ""]);
// exports
/***/ })
/******/ });
});
//# sourceMappingURL=index.js.map