@react-md/typography
Advanced tools
Comparing version 2.3.1 to 2.4.0
@@ -6,2 +6,15 @@ # Change Log | ||
# [2.4.0](https://github.com/mlaursen/react-md/compare/v2.2.0...v2.4.0) (2020-10-17) | ||
### Features | ||
- **theme:** Better Contrast Colors by Default and dev-utils refactor | ||
([#955](https://github.com/mlaursen/react-md/issues/955)) | ||
([519b128](https://github.com/mlaursen/react-md/commit/519b128522de944d55ff96a1e1125447665ed586)) | ||
# Change Log | ||
All notable changes to this project will be documented in this file. See | ||
[Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
## [2.3.1](https://github.com/mlaursen/react-md/compare/v2.2.0...v2.3.1) (2020-09-15) | ||
@@ -186,4 +199,3 @@ | ||
[@react-md/icon]: https://github.com/mlaursen/react-md/tree/master/packages/icon | ||
[@react-md/utils]: | ||
https://github.com/mlaursen/react-md/tree/master/packages/utils | ||
[@react-md/icon]: https://github.com/mlaursen/react-md/tree/main/packages/icon | ||
[@react-md/utils]: https://github.com/mlaursen/react-md/tree/main/packages/utils |
@@ -0,1 +1,5 @@ | ||
/** | ||
* This file was generated from @react-md/dev-utils and should not be updated | ||
* manually. | ||
*/ | ||
declare const _default: { | ||
@@ -200,3 +204,2 @@ "rmd-typography-font-family": string; | ||
}; | ||
/** this is an auto-generated file from @react-md/dev-utils */ | ||
export default _default; |
"use strict"; | ||
/** | ||
* This file was generated from @react-md/dev-utils and should not be updated | ||
* manually. | ||
*/ | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
/** this is an auto-generated file from @react-md/dev-utils */ | ||
exports.default = { | ||
@@ -5,0 +8,0 @@ "rmd-typography-font-family": "Roboto, sans-serif", |
@@ -1,7 +0,4 @@ | ||
export { default as Text } from "./Text"; | ||
export * from "./Text"; | ||
export { default as TextContainer } from "./TextContainer"; | ||
export * from "./TextContainer"; | ||
export { default as SrOnly } from "./SrOnly"; | ||
export * from "./SrOnly"; | ||
//# sourceMappingURL=index.js.map |
@@ -26,3 +26,3 @@ var __assign = (this && this.__assign) || function () { | ||
import { bem } from "@react-md/utils"; | ||
import Text from "./Text"; | ||
import { Text } from "./Text"; | ||
var block = bem("rmd-sr-only"); | ||
@@ -34,3 +34,3 @@ /** | ||
*/ | ||
var SrOnly = forwardRef(function SrOnly(_a, ref) { | ||
export var SrOnly = forwardRef(function SrOnly(_a, ref) { | ||
var className = _a.className, children = _a.children, _b = _a.focusable, focusable = _b === void 0 ? false : _b, propTabIndex = _a.tabIndex, _c = _a.component, component = _c === void 0 ? "span" : _c, props = __rest(_a, ["className", "children", "focusable", "tabIndex", "component"]); | ||
@@ -60,3 +60,2 @@ var tabIndex = propTabIndex; | ||
} | ||
export default SrOnly; | ||
//# sourceMappingURL=SrOnly.js.map |
@@ -83,3 +83,3 @@ var __assign = (this && this.__assign) || function () { | ||
*/ | ||
var Text = forwardRef(function Text(_a, ref) { | ||
export var Text = forwardRef(function Text(_a, ref) { | ||
var _b; | ||
@@ -158,3 +158,2 @@ var propClassName = _a.className, children = _a.children, _c = _a.type, type = _c === void 0 ? "body-1" : _c, _d = _a.component, component = _d === void 0 ? null : _d, align = _a.align, color = _a.color, decoration = _a.decoration, transform = _a.transform, weight = _a.weight, fontStyle = _a.fontStyle, _e = _a.margin, margin = _e === void 0 ? "initial" : _e, props = __rest(_a, ["className", "children", "type", "component", "align", "color", "decoration", "transform", "weight", "fontStyle", "margin"]); | ||
} | ||
export default Text; | ||
//# sourceMappingURL=Text.js.map |
@@ -25,3 +25,3 @@ var __assign = (this && this.__assign) || function () { | ||
import cn from "classnames"; | ||
var TextContainer = forwardRef(function TextContainer(_a, ref) { | ||
export var TextContainer = forwardRef(function TextContainer(_a, ref) { | ||
var propClassName = _a.className, _b = _a.component, Component = _b === void 0 ? "div" : _b, _c = _a.size, size = _c === void 0 ? "auto" : _c, children = _a.children, clone = _a.clone, props = __rest(_a, ["className", "component", "size", "children", "clone"]); | ||
@@ -57,3 +57,2 @@ var className = cn("rmd-text-container rmd-text-container--" + size, propClassName); | ||
} | ||
export default TextContainer; | ||
//# sourceMappingURL=TextContainer.js.map |
@@ -1,6 +0,3 @@ | ||
export { default as Text } from "./Text"; | ||
export * from "./Text"; | ||
export { default as TextContainer } from "./TextContainer"; | ||
export * from "./TextContainer"; | ||
export { default as SrOnly } from "./SrOnly"; | ||
export * from "./SrOnly"; |
@@ -10,14 +10,8 @@ "use strict"; | ||
var __exportStar = (this && this.__exportStar) || function(m, exports) { | ||
for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p); | ||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var Text_1 = require("./Text"); | ||
Object.defineProperty(exports, "Text", { enumerable: true, get: function () { return Text_1.default; } }); | ||
__exportStar(require("./Text"), exports); | ||
var TextContainer_1 = require("./TextContainer"); | ||
Object.defineProperty(exports, "TextContainer", { enumerable: true, get: function () { return TextContainer_1.default; } }); | ||
__exportStar(require("./TextContainer"), exports); | ||
var SrOnly_1 = require("./SrOnly"); | ||
Object.defineProperty(exports, "SrOnly", { enumerable: true, get: function () { return SrOnly_1.default; } }); | ||
__exportStar(require("./SrOnly"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -16,3 +16,2 @@ import React from "react"; | ||
*/ | ||
declare const SrOnly: React.ForwardRefExoticComponent<SrOnlyProps & React.RefAttributes<TextElement>>; | ||
export default SrOnly; | ||
export declare const SrOnly: React.ForwardRefExoticComponent<SrOnlyProps & React.RefAttributes<TextElement>>; |
@@ -28,3 +28,3 @@ "use strict"; | ||
var result = {}; | ||
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); | ||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); | ||
__setModuleDefault(result, mod); | ||
@@ -48,6 +48,7 @@ return result; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.SrOnly = void 0; | ||
var react_1 = __importStar(require("react")); | ||
var classnames_1 = __importDefault(require("classnames")); | ||
var utils_1 = require("@react-md/utils"); | ||
var Text_1 = __importDefault(require("./Text")); | ||
var Text_1 = require("./Text"); | ||
var block = utils_1.bem("rmd-sr-only"); | ||
@@ -59,3 +60,3 @@ /** | ||
*/ | ||
var SrOnly = react_1.forwardRef(function SrOnly(_a, ref) { | ||
exports.SrOnly = react_1.forwardRef(function SrOnly(_a, ref) { | ||
var className = _a.className, children = _a.children, _b = _a.focusable, focusable = _b === void 0 ? false : _b, propTabIndex = _a.tabIndex, _c = _a.component, component = _c === void 0 ? "span" : _c, props = __rest(_a, ["className", "children", "focusable", "tabIndex", "component"]); | ||
@@ -66,3 +67,3 @@ var tabIndex = propTabIndex; | ||
} | ||
return (react_1.default.createElement(Text_1.default, __assign({}, props, { ref: ref, tabIndex: tabIndex, component: component, className: classnames_1.default(block({ focusable: focusable }), className) }), children)); | ||
return (react_1.default.createElement(Text_1.Text, __assign({}, props, { ref: ref, tabIndex: tabIndex, component: component, className: classnames_1.default(block({ focusable: focusable }), className) }), children)); | ||
}); | ||
@@ -72,3 +73,3 @@ if (process.env.NODE_ENV !== "production") { | ||
var PropTypes = require("prop-types"); | ||
SrOnly.propTypes = { | ||
exports.SrOnly.propTypes = { | ||
className: PropTypes.string, | ||
@@ -87,3 +88,2 @@ children: PropTypes.node, | ||
} | ||
exports.default = SrOnly; | ||
//# sourceMappingURL=SrOnly.js.map |
@@ -127,3 +127,2 @@ import { ElementType, HTMLAttributes, ReactElement, ReactNode } from "react"; | ||
*/ | ||
declare const Text: import("react").ForwardRefExoticComponent<TextProps & import("react").RefAttributes<TextElement>>; | ||
export default Text; | ||
export declare const Text: import("react").ForwardRefExoticComponent<TextProps & import("react").RefAttributes<TextElement>>; |
@@ -28,2 +28,3 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Text = void 0; | ||
var react_1 = require("react"); | ||
@@ -89,3 +90,3 @@ var classnames_1 = __importDefault(require("classnames")); | ||
*/ | ||
var Text = react_1.forwardRef(function Text(_a, ref) { | ||
exports.Text = react_1.forwardRef(function Text(_a, ref) { | ||
var _b; | ||
@@ -115,3 +116,3 @@ var propClassName = _a.className, children = _a.children, _c = _a.type, type = _c === void 0 ? "body-1" : _c, _d = _a.component, component = _d === void 0 ? null : _d, align = _a.align, color = _a.color, decoration = _a.decoration, transform = _a.transform, weight = _a.weight, fontStyle = _a.fontStyle, _e = _a.margin, margin = _e === void 0 ? "initial" : _e, props = __rest(_a, ["className", "children", "type", "component", "align", "color", "decoration", "transform", "weight", "fontStyle", "margin"]); | ||
var PropTypes = require("prop-types"); | ||
Text.propTypes = { | ||
exports.Text.propTypes = { | ||
className: PropTypes.string, | ||
@@ -165,3 +166,2 @@ type: PropTypes.oneOf([ | ||
} | ||
exports.default = Text; | ||
//# sourceMappingURL=Text.js.map |
@@ -51,3 +51,2 @@ import React, { ElementType, HTMLAttributes, ReactElement, ReactNode } from "react"; | ||
} | ||
declare const TextContainer: React.ForwardRefExoticComponent<TextContainerProps & React.RefAttributes<"symbol" | "object" | HTMLDivElement | "a" | "abbr" | "address" | "area" | "article" | "aside" | "audio" | "b" | "base" | "bdi" | "bdo" | "big" | "blockquote" | "body" | "br" | "button" | "canvas" | "caption" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "div" | "dl" | "dt" | "em" | "embed" | "fieldset" | "figcaption" | "figure" | "footer" | "form" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "head" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "kbd" | "keygen" | "label" | "legend" | "li" | "link" | "main" | "map" | "mark" | "menu" | "menuitem" | "meta" | "meter" | "nav" | "noindex" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "param" | "picture" | "pre" | "progress" | "q" | "rp" | "rt" | "ruby" | "s" | "samp" | "slot" | "script" | "section" | "select" | "small" | "source" | "span" | "strong" | "style" | "sub" | "summary" | "sup" | "table" | "template" | "tbody" | "td" | "textarea" | "tfoot" | "th" | "thead" | "time" | "title" | "tr" | "track" | "u" | "ul" | "var" | "video" | "wbr" | "webview" | "svg" | "animate" | "animateMotion" | "animateTransform" | "circle" | "clipPath" | "defs" | "desc" | "ellipse" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feDropShadow" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "filter" | "foreignObject" | "g" | "image" | "line" | "linearGradient" | "marker" | "mask" | "metadata" | "mpath" | "path" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "stop" | "switch" | "text" | "textPath" | "tspan" | "use" | "view" | React.ComponentClass<any, any> | React.FunctionComponent<any>>>; | ||
export default TextContainer; | ||
export declare const TextContainer: React.ForwardRefExoticComponent<TextContainerProps & React.RefAttributes<"symbol" | "object" | HTMLDivElement | "a" | "abbr" | "address" | "area" | "article" | "aside" | "audio" | "b" | "base" | "bdi" | "bdo" | "big" | "blockquote" | "body" | "br" | "button" | "canvas" | "caption" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "div" | "dl" | "dt" | "em" | "embed" | "fieldset" | "figcaption" | "figure" | "footer" | "form" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "head" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "kbd" | "keygen" | "label" | "legend" | "li" | "link" | "main" | "map" | "mark" | "menu" | "menuitem" | "meta" | "meter" | "nav" | "noindex" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "param" | "picture" | "pre" | "progress" | "q" | "rp" | "rt" | "ruby" | "s" | "samp" | "slot" | "script" | "section" | "select" | "small" | "source" | "span" | "strong" | "style" | "sub" | "summary" | "sup" | "table" | "template" | "tbody" | "td" | "textarea" | "tfoot" | "th" | "thead" | "time" | "title" | "tr" | "track" | "u" | "ul" | "var" | "video" | "wbr" | "webview" | "svg" | "animate" | "animateMotion" | "animateTransform" | "circle" | "clipPath" | "defs" | "desc" | "ellipse" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feDropShadow" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "filter" | "foreignObject" | "g" | "image" | "line" | "linearGradient" | "marker" | "mask" | "metadata" | "mpath" | "path" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "stop" | "switch" | "text" | "textPath" | "tspan" | "use" | "view" | React.ComponentClass<any, any> | React.FunctionComponent<any>>>; |
@@ -28,3 +28,3 @@ "use strict"; | ||
var result = {}; | ||
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); | ||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); | ||
__setModuleDefault(result, mod); | ||
@@ -48,5 +48,6 @@ return result; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.TextContainer = void 0; | ||
var react_1 = __importStar(require("react")); | ||
var classnames_1 = __importDefault(require("classnames")); | ||
var TextContainer = react_1.forwardRef(function TextContainer(_a, ref) { | ||
exports.TextContainer = react_1.forwardRef(function TextContainer(_a, ref) { | ||
var propClassName = _a.className, _b = _a.component, Component = _b === void 0 ? "div" : _b, _c = _a.size, size = _c === void 0 ? "auto" : _c, children = _a.children, clone = _a.clone, props = __rest(_a, ["className", "component", "size", "children", "clone"]); | ||
@@ -68,3 +69,3 @@ var className = classnames_1.default("rmd-text-container rmd-text-container--" + size, propClassName); | ||
var PropTypes = require("prop-types"); | ||
TextContainer.propTypes = { | ||
exports.TextContainer.propTypes = { | ||
className: PropTypes.string, | ||
@@ -83,3 +84,2 @@ size: PropTypes.oneOf(["auto", "mobile", "desktop"]), | ||
} | ||
exports.default = TextContainer; | ||
//# sourceMappingURL=TextContainer.js.map |
{ | ||
"name": "@react-md/typography", | ||
"version": "2.3.1", | ||
"version": "2.4.0", | ||
"description": "The base package for including typography for react-md.", | ||
"scripts": { | ||
"build": "dev-utils build", | ||
"clean": "dev-utils clean" | ||
}, | ||
"main": "./lib/index.js", | ||
@@ -42,4 +38,4 @@ "module": "./es/index.js", | ||
"dependencies": { | ||
"@react-md/theme": "^2.3.1", | ||
"@react-md/utils": "^2.3.1", | ||
"@react-md/theme": "^2.4.0", | ||
"@react-md/utils": "^2.4.0", | ||
"classnames": "^2.2.6" | ||
@@ -60,3 +56,3 @@ }, | ||
}, | ||
"gitHead": "91880f64501b1a0637569be9aeea621db8898e86" | ||
"gitHead": "96fb088b5ae725ce21993aeda131de40119837e0" | ||
} |
@@ -1,8 +0,3 @@ | ||
export { default as Text } from "./Text"; | ||
export * from "./Text"; | ||
export { default as TextContainer } from "./TextContainer"; | ||
export * from "./TextContainer"; | ||
export { default as SrOnly } from "./SrOnly"; | ||
export * from "./SrOnly"; |
@@ -1,2 +0,6 @@ | ||
/** this is an auto-generated file from @react-md/dev-utils */ | ||
/** | ||
* This file was generated from @react-md/dev-utils and should not be updated | ||
* manually. | ||
*/ | ||
export default { | ||
@@ -3,0 +7,0 @@ "rmd-typography-font-family": "Roboto, sans-serif", |
@@ -1,6 +0,3 @@ | ||
export { default as Text } from "./Text"; | ||
export * from "./Text"; | ||
export { default as TextContainer } from "./TextContainer"; | ||
export * from "./TextContainer"; | ||
export { default as SrOnly } from "./SrOnly"; | ||
export * from "./SrOnly"; |
@@ -16,3 +16,2 @@ import React from "react"; | ||
*/ | ||
declare const SrOnly: React.ForwardRefExoticComponent<SrOnlyProps & React.RefAttributes<TextElement>>; | ||
export default SrOnly; | ||
export declare const SrOnly: React.ForwardRefExoticComponent<SrOnlyProps & React.RefAttributes<TextElement>>; |
@@ -127,3 +127,2 @@ import { ElementType, HTMLAttributes, ReactElement, ReactNode } from "react"; | ||
*/ | ||
declare const Text: import("react").ForwardRefExoticComponent<TextProps & import("react").RefAttributes<TextElement>>; | ||
export default Text; | ||
export declare const Text: import("react").ForwardRefExoticComponent<TextProps & import("react").RefAttributes<TextElement>>; |
@@ -51,3 +51,2 @@ import React, { ElementType, HTMLAttributes, ReactElement, ReactNode } from "react"; | ||
} | ||
declare const TextContainer: React.ForwardRefExoticComponent<TextContainerProps & React.RefAttributes<"symbol" | "object" | HTMLDivElement | "meter" | "textarea" | "button" | "style" | "progress" | "text" | "ruby" | "table" | "small" | "sub" | "circle" | "embed" | "pre" | "caption" | "menu" | "menuitem" | "clipPath" | "filter" | "mask" | "marker" | "big" | "link" | "sup" | "a" | "abbr" | "address" | "area" | "article" | "aside" | "audio" | "b" | "base" | "bdi" | "bdo" | "blockquote" | "body" | "br" | "canvas" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "div" | "dl" | "dt" | "em" | "fieldset" | "figcaption" | "figure" | "footer" | "form" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "head" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "kbd" | "keygen" | "label" | "legend" | "li" | "main" | "map" | "mark" | "meta" | "nav" | "noindex" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "param" | "picture" | "q" | "rp" | "rt" | "s" | "samp" | "slot" | "script" | "section" | "select" | "source" | "span" | "strong" | "summary" | "template" | "tbody" | "td" | "tfoot" | "th" | "thead" | "time" | "title" | "tr" | "track" | "u" | "ul" | "var" | "video" | "wbr" | "webview" | "svg" | "animate" | "animateMotion" | "animateTransform" | "defs" | "desc" | "ellipse" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feDropShadow" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "foreignObject" | "g" | "image" | "line" | "linearGradient" | "metadata" | "mpath" | "path" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "stop" | "switch" | "textPath" | "tspan" | "use" | "view" | React.ComponentClass<any, any> | React.FunctionComponent<any>>>; | ||
export default TextContainer; | ||
export declare const TextContainer: React.ForwardRefExoticComponent<TextContainerProps & React.RefAttributes<"symbol" | "object" | HTMLDivElement | "meter" | "textarea" | "button" | "style" | "progress" | "text" | "ruby" | "table" | "small" | "sub" | "circle" | "embed" | "pre" | "caption" | "menu" | "menuitem" | "clipPath" | "filter" | "mask" | "marker" | "big" | "link" | "sup" | "a" | "abbr" | "address" | "area" | "article" | "aside" | "audio" | "b" | "base" | "bdi" | "bdo" | "blockquote" | "body" | "br" | "canvas" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "div" | "dl" | "dt" | "em" | "fieldset" | "figcaption" | "figure" | "footer" | "form" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "head" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "kbd" | "keygen" | "label" | "legend" | "li" | "main" | "map" | "mark" | "meta" | "nav" | "noindex" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "param" | "picture" | "q" | "rp" | "rt" | "s" | "samp" | "slot" | "script" | "section" | "select" | "source" | "span" | "strong" | "summary" | "template" | "tbody" | "td" | "tfoot" | "th" | "thead" | "time" | "title" | "tr" | "track" | "u" | "ul" | "var" | "video" | "wbr" | "webview" | "svg" | "animate" | "animateMotion" | "animateTransform" | "defs" | "desc" | "ellipse" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feDropShadow" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "foreignObject" | "g" | "image" | "line" | "linearGradient" | "metadata" | "mpath" | "path" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "stop" | "switch" | "textPath" | "tspan" | "use" | "view" | React.ComponentClass<any, any> | React.FunctionComponent<any>>>; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
210525
2307
Updated@react-md/theme@^2.4.0
Updated@react-md/utils@^2.4.0