RAHHH
This commit is contained in:
1
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.cjs.default.js
generated
vendored
Normal file
1
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.cjs.default.js
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
exports._default = require("./emotion-styled-base.browser.cjs.js").default;
|
||||
271
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.cjs.js
generated
vendored
Normal file
271
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.cjs.js
generated
vendored
Normal file
@@ -0,0 +1,271 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var _extends = require('@babel/runtime/helpers/extends');
|
||||
var React = require('react');
|
||||
var isPropValid = require('@emotion/is-prop-valid');
|
||||
var react = require('@emotion/react');
|
||||
var utils = require('@emotion/utils');
|
||||
var serialize = require('@emotion/serialize');
|
||||
var useInsertionEffectWithFallbacks = require('@emotion/use-insertion-effect-with-fallbacks');
|
||||
|
||||
function _interopDefault (e) { return e && e.__esModule ? e : { 'default': e }; }
|
||||
|
||||
function _interopNamespace(e) {
|
||||
if (e && e.__esModule) return e;
|
||||
var n = Object.create(null);
|
||||
if (e) {
|
||||
Object.keys(e).forEach(function (k) {
|
||||
if (k !== 'default') {
|
||||
var d = Object.getOwnPropertyDescriptor(e, k);
|
||||
Object.defineProperty(n, k, d.get ? d : {
|
||||
enumerable: true,
|
||||
get: function () { return e[k]; }
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
n["default"] = e;
|
||||
return Object.freeze(n);
|
||||
}
|
||||
|
||||
var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
||||
var isPropValid__default = /*#__PURE__*/_interopDefault(isPropValid);
|
||||
|
||||
/* import type {
|
||||
ElementType,
|
||||
StatelessFunctionalComponent,
|
||||
AbstractComponent
|
||||
} from 'react' */
|
||||
/*
|
||||
export type Interpolations = Array<any>
|
||||
|
||||
export type StyledElementType<Props> =
|
||||
| string
|
||||
| AbstractComponent<{ ...Props, className: string }, mixed>
|
||||
|
||||
export type StyledOptions = {
|
||||
label?: string,
|
||||
shouldForwardProp?: string => boolean,
|
||||
target?: string
|
||||
}
|
||||
|
||||
export type StyledComponent<Props> = StatelessFunctionalComponent<Props> & {
|
||||
defaultProps: any,
|
||||
toString: () => string,
|
||||
withComponent: (
|
||||
nextTag: StyledElementType<Props>,
|
||||
nextOptions?: StyledOptions
|
||||
) => StyledComponent<Props>
|
||||
}
|
||||
|
||||
export type PrivateStyledComponent<Props> = StyledComponent<Props> & {
|
||||
__emotion_real: StyledComponent<Props>,
|
||||
__emotion_base: any,
|
||||
__emotion_styles: any,
|
||||
__emotion_forwardProp: any
|
||||
}
|
||||
*/
|
||||
|
||||
var testOmitPropsOnStringTag = isPropValid__default["default"];
|
||||
|
||||
var testOmitPropsOnComponent = function testOmitPropsOnComponent(key
|
||||
/*: string */
|
||||
) {
|
||||
return key !== 'theme';
|
||||
};
|
||||
|
||||
var getDefaultShouldForwardProp = function getDefaultShouldForwardProp(tag
|
||||
/*: ElementType */
|
||||
) {
|
||||
return typeof tag === 'string' && // 96 is one less than the char code
|
||||
// for "a" so this is checking that
|
||||
// it's a lowercase character
|
||||
tag.charCodeAt(0) > 96 ? testOmitPropsOnStringTag : testOmitPropsOnComponent;
|
||||
};
|
||||
var composeShouldForwardProps = function composeShouldForwardProps(tag
|
||||
/*: PrivateStyledComponent<any> */
|
||||
, options
|
||||
/*: StyledOptions | void */
|
||||
, isReal
|
||||
/*: boolean */
|
||||
) {
|
||||
var shouldForwardProp;
|
||||
|
||||
if (options) {
|
||||
var optionsShouldForwardProp = options.shouldForwardProp;
|
||||
shouldForwardProp = tag.__emotion_forwardProp && optionsShouldForwardProp ? function (propName
|
||||
/*: string */
|
||||
) {
|
||||
return tag.__emotion_forwardProp(propName) && optionsShouldForwardProp(propName);
|
||||
} : optionsShouldForwardProp;
|
||||
}
|
||||
|
||||
if (typeof shouldForwardProp !== 'function' && isReal) {
|
||||
shouldForwardProp = tag.__emotion_forwardProp;
|
||||
}
|
||||
|
||||
return shouldForwardProp;
|
||||
};
|
||||
/*
|
||||
export type CreateStyledComponent = <Props>(
|
||||
...args: Interpolations
|
||||
) => StyledComponent<Props>
|
||||
|
||||
export type CreateStyled = {
|
||||
<Props>(
|
||||
tag: StyledElementType<Props>,
|
||||
options?: StyledOptions
|
||||
): (...args: Interpolations) => StyledComponent<Props>,
|
||||
[key: string]: CreateStyledComponent,
|
||||
bind: () => CreateStyled
|
||||
}
|
||||
*/
|
||||
|
||||
var isDevelopment = false;
|
||||
|
||||
var Insertion = function Insertion(_ref) {
|
||||
var cache = _ref.cache,
|
||||
serialized = _ref.serialized,
|
||||
isStringTag = _ref.isStringTag;
|
||||
utils.registerStyles(cache, serialized, isStringTag);
|
||||
useInsertionEffectWithFallbacks.useInsertionEffectAlwaysWithSyncFallback(function () {
|
||||
return utils.insertStyles(cache, serialized, isStringTag);
|
||||
});
|
||||
|
||||
return null;
|
||||
};
|
||||
|
||||
var createStyled
|
||||
/*: CreateStyled */
|
||||
= function createStyled
|
||||
/*: CreateStyled */
|
||||
(tag
|
||||
/*: any */
|
||||
, options
|
||||
/* ?: StyledOptions */
|
||||
) {
|
||||
|
||||
var isReal = tag.__emotion_real === tag;
|
||||
var baseTag = isReal && tag.__emotion_base || tag;
|
||||
var identifierName;
|
||||
var targetClassName;
|
||||
|
||||
if (options !== undefined) {
|
||||
identifierName = options.label;
|
||||
targetClassName = options.target;
|
||||
}
|
||||
|
||||
var shouldForwardProp = composeShouldForwardProps(tag, options, isReal);
|
||||
var defaultShouldForwardProp = shouldForwardProp || getDefaultShouldForwardProp(baseTag);
|
||||
var shouldUseAs = !defaultShouldForwardProp('as');
|
||||
/* return function<Props>(): PrivateStyledComponent<Props> { */
|
||||
|
||||
return function () {
|
||||
var args = arguments;
|
||||
var styles = isReal && tag.__emotion_styles !== undefined ? tag.__emotion_styles.slice(0) : [];
|
||||
|
||||
if (identifierName !== undefined) {
|
||||
styles.push("label:" + identifierName + ";");
|
||||
}
|
||||
|
||||
if (args[0] == null || args[0].raw === undefined) {
|
||||
styles.push.apply(styles, args);
|
||||
} else {
|
||||
|
||||
styles.push(args[0][0]);
|
||||
var len = args.length;
|
||||
var i = 1;
|
||||
|
||||
for (; i < len; i++) {
|
||||
|
||||
styles.push(args[i], args[0][i]);
|
||||
}
|
||||
}
|
||||
|
||||
var Styled
|
||||
/*: PrivateStyledComponent<Props> */
|
||||
= react.withEmotionCache(function (props, cache, ref) {
|
||||
var FinalTag = shouldUseAs && props.as || baseTag;
|
||||
var className = '';
|
||||
var classInterpolations = [];
|
||||
var mergedProps = props;
|
||||
|
||||
if (props.theme == null) {
|
||||
mergedProps = {};
|
||||
|
||||
for (var key in props) {
|
||||
mergedProps[key] = props[key];
|
||||
}
|
||||
|
||||
mergedProps.theme = React__namespace.useContext(react.ThemeContext);
|
||||
}
|
||||
|
||||
if (typeof props.className === 'string') {
|
||||
className = utils.getRegisteredStyles(cache.registered, classInterpolations, props.className);
|
||||
} else if (props.className != null) {
|
||||
className = props.className + " ";
|
||||
}
|
||||
|
||||
var serialized = serialize.serializeStyles(styles.concat(classInterpolations), cache.registered, mergedProps);
|
||||
className += cache.key + "-" + serialized.name;
|
||||
|
||||
if (targetClassName !== undefined) {
|
||||
className += " " + targetClassName;
|
||||
}
|
||||
|
||||
var finalShouldForwardProp = shouldUseAs && shouldForwardProp === undefined ? getDefaultShouldForwardProp(FinalTag) : defaultShouldForwardProp;
|
||||
var newProps = {};
|
||||
|
||||
for (var _key in props) {
|
||||
if (shouldUseAs && _key === 'as') continue;
|
||||
|
||||
if (finalShouldForwardProp(_key)) {
|
||||
newProps[_key] = props[_key];
|
||||
}
|
||||
}
|
||||
|
||||
newProps.className = className;
|
||||
|
||||
if (ref) {
|
||||
newProps.ref = ref;
|
||||
}
|
||||
|
||||
return /*#__PURE__*/React__namespace.createElement(React__namespace.Fragment, null, /*#__PURE__*/React__namespace.createElement(Insertion, {
|
||||
cache: cache,
|
||||
serialized: serialized,
|
||||
isStringTag: typeof FinalTag === 'string'
|
||||
}), /*#__PURE__*/React__namespace.createElement(FinalTag, newProps));
|
||||
});
|
||||
Styled.displayName = identifierName !== undefined ? identifierName : "Styled(" + (typeof baseTag === 'string' ? baseTag : baseTag.displayName || baseTag.name || 'Component') + ")";
|
||||
Styled.defaultProps = tag.defaultProps;
|
||||
Styled.__emotion_real = Styled;
|
||||
Styled.__emotion_base = baseTag;
|
||||
Styled.__emotion_styles = styles;
|
||||
Styled.__emotion_forwardProp = shouldForwardProp;
|
||||
Object.defineProperty(Styled, 'toString', {
|
||||
value: function value() {
|
||||
if (targetClassName === undefined && isDevelopment) {
|
||||
return 'NO_COMPONENT_SELECTOR';
|
||||
}
|
||||
|
||||
return "." + targetClassName;
|
||||
}
|
||||
});
|
||||
|
||||
Styled.withComponent = function (nextTag
|
||||
/*: StyledElementType<Props> */
|
||||
, nextOptions
|
||||
/* ?: StyledOptions */
|
||||
) {
|
||||
return createStyled(nextTag, _extends({}, options, nextOptions, {
|
||||
shouldForwardProp: composeShouldForwardProps(Styled, nextOptions, true)
|
||||
})).apply(void 0, styles);
|
||||
};
|
||||
|
||||
return Styled;
|
||||
};
|
||||
};
|
||||
|
||||
exports["default"] = createStyled;
|
||||
2
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.cjs.mjs
generated
vendored
Normal file
2
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.cjs.mjs
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
import "./emotion-styled-base.browser.cjs.js";
|
||||
export { _default as default } from "./emotion-styled-base.browser.cjs.default.js";
|
||||
1
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.development.cjs.default.js
generated
vendored
Normal file
1
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.development.cjs.default.js
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
exports._default = require("./emotion-styled-base.browser.development.cjs.js").default;
|
||||
284
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.development.cjs.js
generated
vendored
Normal file
284
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.development.cjs.js
generated
vendored
Normal file
@@ -0,0 +1,284 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var _extends = require('@babel/runtime/helpers/extends');
|
||||
var React = require('react');
|
||||
var isPropValid = require('@emotion/is-prop-valid');
|
||||
var react = require('@emotion/react');
|
||||
var utils = require('@emotion/utils');
|
||||
var serialize = require('@emotion/serialize');
|
||||
var useInsertionEffectWithFallbacks = require('@emotion/use-insertion-effect-with-fallbacks');
|
||||
|
||||
function _interopDefault (e) { return e && e.__esModule ? e : { 'default': e }; }
|
||||
|
||||
function _interopNamespace(e) {
|
||||
if (e && e.__esModule) return e;
|
||||
var n = Object.create(null);
|
||||
if (e) {
|
||||
Object.keys(e).forEach(function (k) {
|
||||
if (k !== 'default') {
|
||||
var d = Object.getOwnPropertyDescriptor(e, k);
|
||||
Object.defineProperty(n, k, d.get ? d : {
|
||||
enumerable: true,
|
||||
get: function () { return e[k]; }
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
n["default"] = e;
|
||||
return Object.freeze(n);
|
||||
}
|
||||
|
||||
var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
||||
var isPropValid__default = /*#__PURE__*/_interopDefault(isPropValid);
|
||||
|
||||
/* import type {
|
||||
ElementType,
|
||||
StatelessFunctionalComponent,
|
||||
AbstractComponent
|
||||
} from 'react' */
|
||||
/*
|
||||
export type Interpolations = Array<any>
|
||||
|
||||
export type StyledElementType<Props> =
|
||||
| string
|
||||
| AbstractComponent<{ ...Props, className: string }, mixed>
|
||||
|
||||
export type StyledOptions = {
|
||||
label?: string,
|
||||
shouldForwardProp?: string => boolean,
|
||||
target?: string
|
||||
}
|
||||
|
||||
export type StyledComponent<Props> = StatelessFunctionalComponent<Props> & {
|
||||
defaultProps: any,
|
||||
toString: () => string,
|
||||
withComponent: (
|
||||
nextTag: StyledElementType<Props>,
|
||||
nextOptions?: StyledOptions
|
||||
) => StyledComponent<Props>
|
||||
}
|
||||
|
||||
export type PrivateStyledComponent<Props> = StyledComponent<Props> & {
|
||||
__emotion_real: StyledComponent<Props>,
|
||||
__emotion_base: any,
|
||||
__emotion_styles: any,
|
||||
__emotion_forwardProp: any
|
||||
}
|
||||
*/
|
||||
|
||||
var testOmitPropsOnStringTag = isPropValid__default["default"];
|
||||
|
||||
var testOmitPropsOnComponent = function testOmitPropsOnComponent(key
|
||||
/*: string */
|
||||
) {
|
||||
return key !== 'theme';
|
||||
};
|
||||
|
||||
var getDefaultShouldForwardProp = function getDefaultShouldForwardProp(tag
|
||||
/*: ElementType */
|
||||
) {
|
||||
return typeof tag === 'string' && // 96 is one less than the char code
|
||||
// for "a" so this is checking that
|
||||
// it's a lowercase character
|
||||
tag.charCodeAt(0) > 96 ? testOmitPropsOnStringTag : testOmitPropsOnComponent;
|
||||
};
|
||||
var composeShouldForwardProps = function composeShouldForwardProps(tag
|
||||
/*: PrivateStyledComponent<any> */
|
||||
, options
|
||||
/*: StyledOptions | void */
|
||||
, isReal
|
||||
/*: boolean */
|
||||
) {
|
||||
var shouldForwardProp;
|
||||
|
||||
if (options) {
|
||||
var optionsShouldForwardProp = options.shouldForwardProp;
|
||||
shouldForwardProp = tag.__emotion_forwardProp && optionsShouldForwardProp ? function (propName
|
||||
/*: string */
|
||||
) {
|
||||
return tag.__emotion_forwardProp(propName) && optionsShouldForwardProp(propName);
|
||||
} : optionsShouldForwardProp;
|
||||
}
|
||||
|
||||
if (typeof shouldForwardProp !== 'function' && isReal) {
|
||||
shouldForwardProp = tag.__emotion_forwardProp;
|
||||
}
|
||||
|
||||
return shouldForwardProp;
|
||||
};
|
||||
/*
|
||||
export type CreateStyledComponent = <Props>(
|
||||
...args: Interpolations
|
||||
) => StyledComponent<Props>
|
||||
|
||||
export type CreateStyled = {
|
||||
<Props>(
|
||||
tag: StyledElementType<Props>,
|
||||
options?: StyledOptions
|
||||
): (...args: Interpolations) => StyledComponent<Props>,
|
||||
[key: string]: CreateStyledComponent,
|
||||
bind: () => CreateStyled
|
||||
}
|
||||
*/
|
||||
|
||||
var isDevelopment = true;
|
||||
|
||||
var ILLEGAL_ESCAPE_SEQUENCE_ERROR = "You have illegal escape sequence in your template literal, most likely inside content's property value.\nBecause you write your CSS inside a JavaScript string you actually have to do double escaping, so for example \"content: '\\00d7';\" should become \"content: '\\\\00d7';\".\nYou can read more about this here:\nhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals#ES2018_revision_of_illegal_escape_sequences";
|
||||
|
||||
var Insertion = function Insertion(_ref) {
|
||||
var cache = _ref.cache,
|
||||
serialized = _ref.serialized,
|
||||
isStringTag = _ref.isStringTag;
|
||||
utils.registerStyles(cache, serialized, isStringTag);
|
||||
useInsertionEffectWithFallbacks.useInsertionEffectAlwaysWithSyncFallback(function () {
|
||||
return utils.insertStyles(cache, serialized, isStringTag);
|
||||
});
|
||||
|
||||
return null;
|
||||
};
|
||||
|
||||
var createStyled
|
||||
/*: CreateStyled */
|
||||
= function createStyled
|
||||
/*: CreateStyled */
|
||||
(tag
|
||||
/*: any */
|
||||
, options
|
||||
/* ?: StyledOptions */
|
||||
) {
|
||||
{
|
||||
if (tag === undefined) {
|
||||
throw new Error('You are trying to create a styled element with an undefined component.\nYou may have forgotten to import it.');
|
||||
}
|
||||
}
|
||||
|
||||
var isReal = tag.__emotion_real === tag;
|
||||
var baseTag = isReal && tag.__emotion_base || tag;
|
||||
var identifierName;
|
||||
var targetClassName;
|
||||
|
||||
if (options !== undefined) {
|
||||
identifierName = options.label;
|
||||
targetClassName = options.target;
|
||||
}
|
||||
|
||||
var shouldForwardProp = composeShouldForwardProps(tag, options, isReal);
|
||||
var defaultShouldForwardProp = shouldForwardProp || getDefaultShouldForwardProp(baseTag);
|
||||
var shouldUseAs = !defaultShouldForwardProp('as');
|
||||
/* return function<Props>(): PrivateStyledComponent<Props> { */
|
||||
|
||||
return function () {
|
||||
var args = arguments;
|
||||
var styles = isReal && tag.__emotion_styles !== undefined ? tag.__emotion_styles.slice(0) : [];
|
||||
|
||||
if (identifierName !== undefined) {
|
||||
styles.push("label:" + identifierName + ";");
|
||||
}
|
||||
|
||||
if (args[0] == null || args[0].raw === undefined) {
|
||||
styles.push.apply(styles, args);
|
||||
} else {
|
||||
if (args[0][0] === undefined) {
|
||||
console.error(ILLEGAL_ESCAPE_SEQUENCE_ERROR);
|
||||
}
|
||||
|
||||
styles.push(args[0][0]);
|
||||
var len = args.length;
|
||||
var i = 1;
|
||||
|
||||
for (; i < len; i++) {
|
||||
if (args[0][i] === undefined) {
|
||||
console.error(ILLEGAL_ESCAPE_SEQUENCE_ERROR);
|
||||
}
|
||||
|
||||
styles.push(args[i], args[0][i]);
|
||||
}
|
||||
}
|
||||
|
||||
var Styled
|
||||
/*: PrivateStyledComponent<Props> */
|
||||
= react.withEmotionCache(function (props, cache, ref) {
|
||||
var FinalTag = shouldUseAs && props.as || baseTag;
|
||||
var className = '';
|
||||
var classInterpolations = [];
|
||||
var mergedProps = props;
|
||||
|
||||
if (props.theme == null) {
|
||||
mergedProps = {};
|
||||
|
||||
for (var key in props) {
|
||||
mergedProps[key] = props[key];
|
||||
}
|
||||
|
||||
mergedProps.theme = React__namespace.useContext(react.ThemeContext);
|
||||
}
|
||||
|
||||
if (typeof props.className === 'string') {
|
||||
className = utils.getRegisteredStyles(cache.registered, classInterpolations, props.className);
|
||||
} else if (props.className != null) {
|
||||
className = props.className + " ";
|
||||
}
|
||||
|
||||
var serialized = serialize.serializeStyles(styles.concat(classInterpolations), cache.registered, mergedProps);
|
||||
className += cache.key + "-" + serialized.name;
|
||||
|
||||
if (targetClassName !== undefined) {
|
||||
className += " " + targetClassName;
|
||||
}
|
||||
|
||||
var finalShouldForwardProp = shouldUseAs && shouldForwardProp === undefined ? getDefaultShouldForwardProp(FinalTag) : defaultShouldForwardProp;
|
||||
var newProps = {};
|
||||
|
||||
for (var _key in props) {
|
||||
if (shouldUseAs && _key === 'as') continue;
|
||||
|
||||
if (finalShouldForwardProp(_key)) {
|
||||
newProps[_key] = props[_key];
|
||||
}
|
||||
}
|
||||
|
||||
newProps.className = className;
|
||||
|
||||
if (ref) {
|
||||
newProps.ref = ref;
|
||||
}
|
||||
|
||||
return /*#__PURE__*/React__namespace.createElement(React__namespace.Fragment, null, /*#__PURE__*/React__namespace.createElement(Insertion, {
|
||||
cache: cache,
|
||||
serialized: serialized,
|
||||
isStringTag: typeof FinalTag === 'string'
|
||||
}), /*#__PURE__*/React__namespace.createElement(FinalTag, newProps));
|
||||
});
|
||||
Styled.displayName = identifierName !== undefined ? identifierName : "Styled(" + (typeof baseTag === 'string' ? baseTag : baseTag.displayName || baseTag.name || 'Component') + ")";
|
||||
Styled.defaultProps = tag.defaultProps;
|
||||
Styled.__emotion_real = Styled;
|
||||
Styled.__emotion_base = baseTag;
|
||||
Styled.__emotion_styles = styles;
|
||||
Styled.__emotion_forwardProp = shouldForwardProp;
|
||||
Object.defineProperty(Styled, 'toString', {
|
||||
value: function value() {
|
||||
if (targetClassName === undefined && isDevelopment) {
|
||||
return 'NO_COMPONENT_SELECTOR';
|
||||
}
|
||||
|
||||
return "." + targetClassName;
|
||||
}
|
||||
});
|
||||
|
||||
Styled.withComponent = function (nextTag
|
||||
/*: StyledElementType<Props> */
|
||||
, nextOptions
|
||||
/* ?: StyledOptions */
|
||||
) {
|
||||
return createStyled(nextTag, _extends({}, options, nextOptions, {
|
||||
shouldForwardProp: composeShouldForwardProps(Styled, nextOptions, true)
|
||||
})).apply(void 0, styles);
|
||||
};
|
||||
|
||||
return Styled;
|
||||
};
|
||||
};
|
||||
|
||||
exports["default"] = createStyled;
|
||||
2
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.development.cjs.mjs
generated
vendored
Normal file
2
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.development.cjs.mjs
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
import "./emotion-styled-base.browser.development.cjs.js";
|
||||
export { _default as default } from "./emotion-styled-base.browser.development.cjs.default.js";
|
||||
257
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.development.esm.js
generated
vendored
Normal file
257
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.development.esm.js
generated
vendored
Normal file
@@ -0,0 +1,257 @@
|
||||
import _extends from '@babel/runtime/helpers/esm/extends';
|
||||
import * as React from 'react';
|
||||
import isPropValid from '@emotion/is-prop-valid';
|
||||
import { withEmotionCache, ThemeContext } from '@emotion/react';
|
||||
import { getRegisteredStyles, registerStyles, insertStyles } from '@emotion/utils';
|
||||
import { serializeStyles } from '@emotion/serialize';
|
||||
import { useInsertionEffectAlwaysWithSyncFallback } from '@emotion/use-insertion-effect-with-fallbacks';
|
||||
|
||||
/* import type {
|
||||
ElementType,
|
||||
StatelessFunctionalComponent,
|
||||
AbstractComponent
|
||||
} from 'react' */
|
||||
/*
|
||||
export type Interpolations = Array<any>
|
||||
|
||||
export type StyledElementType<Props> =
|
||||
| string
|
||||
| AbstractComponent<{ ...Props, className: string }, mixed>
|
||||
|
||||
export type StyledOptions = {
|
||||
label?: string,
|
||||
shouldForwardProp?: string => boolean,
|
||||
target?: string
|
||||
}
|
||||
|
||||
export type StyledComponent<Props> = StatelessFunctionalComponent<Props> & {
|
||||
defaultProps: any,
|
||||
toString: () => string,
|
||||
withComponent: (
|
||||
nextTag: StyledElementType<Props>,
|
||||
nextOptions?: StyledOptions
|
||||
) => StyledComponent<Props>
|
||||
}
|
||||
|
||||
export type PrivateStyledComponent<Props> = StyledComponent<Props> & {
|
||||
__emotion_real: StyledComponent<Props>,
|
||||
__emotion_base: any,
|
||||
__emotion_styles: any,
|
||||
__emotion_forwardProp: any
|
||||
}
|
||||
*/
|
||||
|
||||
var testOmitPropsOnStringTag = isPropValid;
|
||||
|
||||
var testOmitPropsOnComponent = function testOmitPropsOnComponent(key
|
||||
/*: string */
|
||||
) {
|
||||
return key !== 'theme';
|
||||
};
|
||||
|
||||
var getDefaultShouldForwardProp = function getDefaultShouldForwardProp(tag
|
||||
/*: ElementType */
|
||||
) {
|
||||
return typeof tag === 'string' && // 96 is one less than the char code
|
||||
// for "a" so this is checking that
|
||||
// it's a lowercase character
|
||||
tag.charCodeAt(0) > 96 ? testOmitPropsOnStringTag : testOmitPropsOnComponent;
|
||||
};
|
||||
var composeShouldForwardProps = function composeShouldForwardProps(tag
|
||||
/*: PrivateStyledComponent<any> */
|
||||
, options
|
||||
/*: StyledOptions | void */
|
||||
, isReal
|
||||
/*: boolean */
|
||||
) {
|
||||
var shouldForwardProp;
|
||||
|
||||
if (options) {
|
||||
var optionsShouldForwardProp = options.shouldForwardProp;
|
||||
shouldForwardProp = tag.__emotion_forwardProp && optionsShouldForwardProp ? function (propName
|
||||
/*: string */
|
||||
) {
|
||||
return tag.__emotion_forwardProp(propName) && optionsShouldForwardProp(propName);
|
||||
} : optionsShouldForwardProp;
|
||||
}
|
||||
|
||||
if (typeof shouldForwardProp !== 'function' && isReal) {
|
||||
shouldForwardProp = tag.__emotion_forwardProp;
|
||||
}
|
||||
|
||||
return shouldForwardProp;
|
||||
};
|
||||
/*
|
||||
export type CreateStyledComponent = <Props>(
|
||||
...args: Interpolations
|
||||
) => StyledComponent<Props>
|
||||
|
||||
export type CreateStyled = {
|
||||
<Props>(
|
||||
tag: StyledElementType<Props>,
|
||||
options?: StyledOptions
|
||||
): (...args: Interpolations) => StyledComponent<Props>,
|
||||
[key: string]: CreateStyledComponent,
|
||||
bind: () => CreateStyled
|
||||
}
|
||||
*/
|
||||
|
||||
var isDevelopment = true;
|
||||
|
||||
var ILLEGAL_ESCAPE_SEQUENCE_ERROR = "You have illegal escape sequence in your template literal, most likely inside content's property value.\nBecause you write your CSS inside a JavaScript string you actually have to do double escaping, so for example \"content: '\\00d7';\" should become \"content: '\\\\00d7';\".\nYou can read more about this here:\nhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals#ES2018_revision_of_illegal_escape_sequences";
|
||||
|
||||
var Insertion = function Insertion(_ref) {
|
||||
var cache = _ref.cache,
|
||||
serialized = _ref.serialized,
|
||||
isStringTag = _ref.isStringTag;
|
||||
registerStyles(cache, serialized, isStringTag);
|
||||
useInsertionEffectAlwaysWithSyncFallback(function () {
|
||||
return insertStyles(cache, serialized, isStringTag);
|
||||
});
|
||||
|
||||
return null;
|
||||
};
|
||||
|
||||
var createStyled
|
||||
/*: CreateStyled */
|
||||
= function createStyled
|
||||
/*: CreateStyled */
|
||||
(tag
|
||||
/*: any */
|
||||
, options
|
||||
/* ?: StyledOptions */
|
||||
) {
|
||||
{
|
||||
if (tag === undefined) {
|
||||
throw new Error('You are trying to create a styled element with an undefined component.\nYou may have forgotten to import it.');
|
||||
}
|
||||
}
|
||||
|
||||
var isReal = tag.__emotion_real === tag;
|
||||
var baseTag = isReal && tag.__emotion_base || tag;
|
||||
var identifierName;
|
||||
var targetClassName;
|
||||
|
||||
if (options !== undefined) {
|
||||
identifierName = options.label;
|
||||
targetClassName = options.target;
|
||||
}
|
||||
|
||||
var shouldForwardProp = composeShouldForwardProps(tag, options, isReal);
|
||||
var defaultShouldForwardProp = shouldForwardProp || getDefaultShouldForwardProp(baseTag);
|
||||
var shouldUseAs = !defaultShouldForwardProp('as');
|
||||
/* return function<Props>(): PrivateStyledComponent<Props> { */
|
||||
|
||||
return function () {
|
||||
var args = arguments;
|
||||
var styles = isReal && tag.__emotion_styles !== undefined ? tag.__emotion_styles.slice(0) : [];
|
||||
|
||||
if (identifierName !== undefined) {
|
||||
styles.push("label:" + identifierName + ";");
|
||||
}
|
||||
|
||||
if (args[0] == null || args[0].raw === undefined) {
|
||||
styles.push.apply(styles, args);
|
||||
} else {
|
||||
if (args[0][0] === undefined) {
|
||||
console.error(ILLEGAL_ESCAPE_SEQUENCE_ERROR);
|
||||
}
|
||||
|
||||
styles.push(args[0][0]);
|
||||
var len = args.length;
|
||||
var i = 1;
|
||||
|
||||
for (; i < len; i++) {
|
||||
if (args[0][i] === undefined) {
|
||||
console.error(ILLEGAL_ESCAPE_SEQUENCE_ERROR);
|
||||
}
|
||||
|
||||
styles.push(args[i], args[0][i]);
|
||||
}
|
||||
}
|
||||
|
||||
var Styled
|
||||
/*: PrivateStyledComponent<Props> */
|
||||
= withEmotionCache(function (props, cache, ref) {
|
||||
var FinalTag = shouldUseAs && props.as || baseTag;
|
||||
var className = '';
|
||||
var classInterpolations = [];
|
||||
var mergedProps = props;
|
||||
|
||||
if (props.theme == null) {
|
||||
mergedProps = {};
|
||||
|
||||
for (var key in props) {
|
||||
mergedProps[key] = props[key];
|
||||
}
|
||||
|
||||
mergedProps.theme = React.useContext(ThemeContext);
|
||||
}
|
||||
|
||||
if (typeof props.className === 'string') {
|
||||
className = getRegisteredStyles(cache.registered, classInterpolations, props.className);
|
||||
} else if (props.className != null) {
|
||||
className = props.className + " ";
|
||||
}
|
||||
|
||||
var serialized = serializeStyles(styles.concat(classInterpolations), cache.registered, mergedProps);
|
||||
className += cache.key + "-" + serialized.name;
|
||||
|
||||
if (targetClassName !== undefined) {
|
||||
className += " " + targetClassName;
|
||||
}
|
||||
|
||||
var finalShouldForwardProp = shouldUseAs && shouldForwardProp === undefined ? getDefaultShouldForwardProp(FinalTag) : defaultShouldForwardProp;
|
||||
var newProps = {};
|
||||
|
||||
for (var _key in props) {
|
||||
if (shouldUseAs && _key === 'as') continue;
|
||||
|
||||
if (finalShouldForwardProp(_key)) {
|
||||
newProps[_key] = props[_key];
|
||||
}
|
||||
}
|
||||
|
||||
newProps.className = className;
|
||||
|
||||
if (ref) {
|
||||
newProps.ref = ref;
|
||||
}
|
||||
|
||||
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Insertion, {
|
||||
cache: cache,
|
||||
serialized: serialized,
|
||||
isStringTag: typeof FinalTag === 'string'
|
||||
}), /*#__PURE__*/React.createElement(FinalTag, newProps));
|
||||
});
|
||||
Styled.displayName = identifierName !== undefined ? identifierName : "Styled(" + (typeof baseTag === 'string' ? baseTag : baseTag.displayName || baseTag.name || 'Component') + ")";
|
||||
Styled.defaultProps = tag.defaultProps;
|
||||
Styled.__emotion_real = Styled;
|
||||
Styled.__emotion_base = baseTag;
|
||||
Styled.__emotion_styles = styles;
|
||||
Styled.__emotion_forwardProp = shouldForwardProp;
|
||||
Object.defineProperty(Styled, 'toString', {
|
||||
value: function value() {
|
||||
if (targetClassName === undefined && isDevelopment) {
|
||||
return 'NO_COMPONENT_SELECTOR';
|
||||
}
|
||||
|
||||
return "." + targetClassName;
|
||||
}
|
||||
});
|
||||
|
||||
Styled.withComponent = function (nextTag
|
||||
/*: StyledElementType<Props> */
|
||||
, nextOptions
|
||||
/* ?: StyledOptions */
|
||||
) {
|
||||
return createStyled(nextTag, _extends({}, options, nextOptions, {
|
||||
shouldForwardProp: composeShouldForwardProps(Styled, nextOptions, true)
|
||||
})).apply(void 0, styles);
|
||||
};
|
||||
|
||||
return Styled;
|
||||
};
|
||||
};
|
||||
|
||||
export { createStyled as default };
|
||||
244
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.esm.js
generated
vendored
Normal file
244
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.browser.esm.js
generated
vendored
Normal file
@@ -0,0 +1,244 @@
|
||||
import _extends from '@babel/runtime/helpers/esm/extends';
|
||||
import * as React from 'react';
|
||||
import isPropValid from '@emotion/is-prop-valid';
|
||||
import { withEmotionCache, ThemeContext } from '@emotion/react';
|
||||
import { getRegisteredStyles, registerStyles, insertStyles } from '@emotion/utils';
|
||||
import { serializeStyles } from '@emotion/serialize';
|
||||
import { useInsertionEffectAlwaysWithSyncFallback } from '@emotion/use-insertion-effect-with-fallbacks';
|
||||
|
||||
/* import type {
|
||||
ElementType,
|
||||
StatelessFunctionalComponent,
|
||||
AbstractComponent
|
||||
} from 'react' */
|
||||
/*
|
||||
export type Interpolations = Array<any>
|
||||
|
||||
export type StyledElementType<Props> =
|
||||
| string
|
||||
| AbstractComponent<{ ...Props, className: string }, mixed>
|
||||
|
||||
export type StyledOptions = {
|
||||
label?: string,
|
||||
shouldForwardProp?: string => boolean,
|
||||
target?: string
|
||||
}
|
||||
|
||||
export type StyledComponent<Props> = StatelessFunctionalComponent<Props> & {
|
||||
defaultProps: any,
|
||||
toString: () => string,
|
||||
withComponent: (
|
||||
nextTag: StyledElementType<Props>,
|
||||
nextOptions?: StyledOptions
|
||||
) => StyledComponent<Props>
|
||||
}
|
||||
|
||||
export type PrivateStyledComponent<Props> = StyledComponent<Props> & {
|
||||
__emotion_real: StyledComponent<Props>,
|
||||
__emotion_base: any,
|
||||
__emotion_styles: any,
|
||||
__emotion_forwardProp: any
|
||||
}
|
||||
*/
|
||||
|
||||
var testOmitPropsOnStringTag = isPropValid;
|
||||
|
||||
var testOmitPropsOnComponent = function testOmitPropsOnComponent(key
|
||||
/*: string */
|
||||
) {
|
||||
return key !== 'theme';
|
||||
};
|
||||
|
||||
var getDefaultShouldForwardProp = function getDefaultShouldForwardProp(tag
|
||||
/*: ElementType */
|
||||
) {
|
||||
return typeof tag === 'string' && // 96 is one less than the char code
|
||||
// for "a" so this is checking that
|
||||
// it's a lowercase character
|
||||
tag.charCodeAt(0) > 96 ? testOmitPropsOnStringTag : testOmitPropsOnComponent;
|
||||
};
|
||||
var composeShouldForwardProps = function composeShouldForwardProps(tag
|
||||
/*: PrivateStyledComponent<any> */
|
||||
, options
|
||||
/*: StyledOptions | void */
|
||||
, isReal
|
||||
/*: boolean */
|
||||
) {
|
||||
var shouldForwardProp;
|
||||
|
||||
if (options) {
|
||||
var optionsShouldForwardProp = options.shouldForwardProp;
|
||||
shouldForwardProp = tag.__emotion_forwardProp && optionsShouldForwardProp ? function (propName
|
||||
/*: string */
|
||||
) {
|
||||
return tag.__emotion_forwardProp(propName) && optionsShouldForwardProp(propName);
|
||||
} : optionsShouldForwardProp;
|
||||
}
|
||||
|
||||
if (typeof shouldForwardProp !== 'function' && isReal) {
|
||||
shouldForwardProp = tag.__emotion_forwardProp;
|
||||
}
|
||||
|
||||
return shouldForwardProp;
|
||||
};
|
||||
/*
|
||||
export type CreateStyledComponent = <Props>(
|
||||
...args: Interpolations
|
||||
) => StyledComponent<Props>
|
||||
|
||||
export type CreateStyled = {
|
||||
<Props>(
|
||||
tag: StyledElementType<Props>,
|
||||
options?: StyledOptions
|
||||
): (...args: Interpolations) => StyledComponent<Props>,
|
||||
[key: string]: CreateStyledComponent,
|
||||
bind: () => CreateStyled
|
||||
}
|
||||
*/
|
||||
|
||||
var isDevelopment = false;
|
||||
|
||||
var Insertion = function Insertion(_ref) {
|
||||
var cache = _ref.cache,
|
||||
serialized = _ref.serialized,
|
||||
isStringTag = _ref.isStringTag;
|
||||
registerStyles(cache, serialized, isStringTag);
|
||||
useInsertionEffectAlwaysWithSyncFallback(function () {
|
||||
return insertStyles(cache, serialized, isStringTag);
|
||||
});
|
||||
|
||||
return null;
|
||||
};
|
||||
|
||||
var createStyled
|
||||
/*: CreateStyled */
|
||||
= function createStyled
|
||||
/*: CreateStyled */
|
||||
(tag
|
||||
/*: any */
|
||||
, options
|
||||
/* ?: StyledOptions */
|
||||
) {
|
||||
|
||||
var isReal = tag.__emotion_real === tag;
|
||||
var baseTag = isReal && tag.__emotion_base || tag;
|
||||
var identifierName;
|
||||
var targetClassName;
|
||||
|
||||
if (options !== undefined) {
|
||||
identifierName = options.label;
|
||||
targetClassName = options.target;
|
||||
}
|
||||
|
||||
var shouldForwardProp = composeShouldForwardProps(tag, options, isReal);
|
||||
var defaultShouldForwardProp = shouldForwardProp || getDefaultShouldForwardProp(baseTag);
|
||||
var shouldUseAs = !defaultShouldForwardProp('as');
|
||||
/* return function<Props>(): PrivateStyledComponent<Props> { */
|
||||
|
||||
return function () {
|
||||
var args = arguments;
|
||||
var styles = isReal && tag.__emotion_styles !== undefined ? tag.__emotion_styles.slice(0) : [];
|
||||
|
||||
if (identifierName !== undefined) {
|
||||
styles.push("label:" + identifierName + ";");
|
||||
}
|
||||
|
||||
if (args[0] == null || args[0].raw === undefined) {
|
||||
styles.push.apply(styles, args);
|
||||
} else {
|
||||
|
||||
styles.push(args[0][0]);
|
||||
var len = args.length;
|
||||
var i = 1;
|
||||
|
||||
for (; i < len; i++) {
|
||||
|
||||
styles.push(args[i], args[0][i]);
|
||||
}
|
||||
}
|
||||
|
||||
var Styled
|
||||
/*: PrivateStyledComponent<Props> */
|
||||
= withEmotionCache(function (props, cache, ref) {
|
||||
var FinalTag = shouldUseAs && props.as || baseTag;
|
||||
var className = '';
|
||||
var classInterpolations = [];
|
||||
var mergedProps = props;
|
||||
|
||||
if (props.theme == null) {
|
||||
mergedProps = {};
|
||||
|
||||
for (var key in props) {
|
||||
mergedProps[key] = props[key];
|
||||
}
|
||||
|
||||
mergedProps.theme = React.useContext(ThemeContext);
|
||||
}
|
||||
|
||||
if (typeof props.className === 'string') {
|
||||
className = getRegisteredStyles(cache.registered, classInterpolations, props.className);
|
||||
} else if (props.className != null) {
|
||||
className = props.className + " ";
|
||||
}
|
||||
|
||||
var serialized = serializeStyles(styles.concat(classInterpolations), cache.registered, mergedProps);
|
||||
className += cache.key + "-" + serialized.name;
|
||||
|
||||
if (targetClassName !== undefined) {
|
||||
className += " " + targetClassName;
|
||||
}
|
||||
|
||||
var finalShouldForwardProp = shouldUseAs && shouldForwardProp === undefined ? getDefaultShouldForwardProp(FinalTag) : defaultShouldForwardProp;
|
||||
var newProps = {};
|
||||
|
||||
for (var _key in props) {
|
||||
if (shouldUseAs && _key === 'as') continue;
|
||||
|
||||
if (finalShouldForwardProp(_key)) {
|
||||
newProps[_key] = props[_key];
|
||||
}
|
||||
}
|
||||
|
||||
newProps.className = className;
|
||||
|
||||
if (ref) {
|
||||
newProps.ref = ref;
|
||||
}
|
||||
|
||||
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Insertion, {
|
||||
cache: cache,
|
||||
serialized: serialized,
|
||||
isStringTag: typeof FinalTag === 'string'
|
||||
}), /*#__PURE__*/React.createElement(FinalTag, newProps));
|
||||
});
|
||||
Styled.displayName = identifierName !== undefined ? identifierName : "Styled(" + (typeof baseTag === 'string' ? baseTag : baseTag.displayName || baseTag.name || 'Component') + ")";
|
||||
Styled.defaultProps = tag.defaultProps;
|
||||
Styled.__emotion_real = Styled;
|
||||
Styled.__emotion_base = baseTag;
|
||||
Styled.__emotion_styles = styles;
|
||||
Styled.__emotion_forwardProp = shouldForwardProp;
|
||||
Object.defineProperty(Styled, 'toString', {
|
||||
value: function value() {
|
||||
if (targetClassName === undefined && isDevelopment) {
|
||||
return 'NO_COMPONENT_SELECTOR';
|
||||
}
|
||||
|
||||
return "." + targetClassName;
|
||||
}
|
||||
});
|
||||
|
||||
Styled.withComponent = function (nextTag
|
||||
/*: StyledElementType<Props> */
|
||||
, nextOptions
|
||||
/* ?: StyledOptions */
|
||||
) {
|
||||
return createStyled(nextTag, _extends({}, options, nextOptions, {
|
||||
shouldForwardProp: composeShouldForwardProps(Styled, nextOptions, true)
|
||||
})).apply(void 0, styles);
|
||||
};
|
||||
|
||||
return Styled;
|
||||
};
|
||||
};
|
||||
|
||||
export { createStyled as default };
|
||||
3
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.cjs.d.mts
generated
vendored
Normal file
3
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.cjs.d.mts
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
export * from "../../dist/declarations/src/base.js";
|
||||
export { _default as default } from "./emotion-styled-base.cjs.default.js";
|
||||
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW1vdGlvbi1zdHlsZWQtYmFzZS5janMuZC5tdHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9kaXN0L2RlY2xhcmF0aW9ucy9zcmMvYmFzZS5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBIn0=
|
||||
3
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.cjs.d.ts
generated
vendored
Normal file
3
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.cjs.d.ts
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
export * from "../../dist/declarations/src/base";
|
||||
export { default } from "../../dist/declarations/src/base";
|
||||
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW1vdGlvbi1zdHlsZWQtYmFzZS5janMuZC50cyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL2Rpc3QvZGVjbGFyYXRpb25zL3NyYy9iYXNlLmQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEifQ==
|
||||
1
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.cjs.default.d.ts
generated
vendored
Normal file
1
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.cjs.default.d.ts
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export { default as _default } from "../../dist/declarations/src/base.js"
|
||||
1
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.cjs.default.js
generated
vendored
Normal file
1
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.cjs.default.js
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
exports._default = require("./emotion-styled-base.cjs.js").default;
|
||||
289
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.cjs.js
generated
vendored
Normal file
289
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.cjs.js
generated
vendored
Normal file
@@ -0,0 +1,289 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var _extends = require('@babel/runtime/helpers/extends');
|
||||
var React = require('react');
|
||||
var isPropValid = require('@emotion/is-prop-valid');
|
||||
var react = require('@emotion/react');
|
||||
var utils = require('@emotion/utils');
|
||||
var serialize = require('@emotion/serialize');
|
||||
var useInsertionEffectWithFallbacks = require('@emotion/use-insertion-effect-with-fallbacks');
|
||||
|
||||
function _interopDefault (e) { return e && e.__esModule ? e : { 'default': e }; }
|
||||
|
||||
function _interopNamespace(e) {
|
||||
if (e && e.__esModule) return e;
|
||||
var n = Object.create(null);
|
||||
if (e) {
|
||||
Object.keys(e).forEach(function (k) {
|
||||
if (k !== 'default') {
|
||||
var d = Object.getOwnPropertyDescriptor(e, k);
|
||||
Object.defineProperty(n, k, d.get ? d : {
|
||||
enumerable: true,
|
||||
get: function () { return e[k]; }
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
n["default"] = e;
|
||||
return Object.freeze(n);
|
||||
}
|
||||
|
||||
var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
||||
var isPropValid__default = /*#__PURE__*/_interopDefault(isPropValid);
|
||||
|
||||
/* import type {
|
||||
ElementType,
|
||||
StatelessFunctionalComponent,
|
||||
AbstractComponent
|
||||
} from 'react' */
|
||||
/*
|
||||
export type Interpolations = Array<any>
|
||||
|
||||
export type StyledElementType<Props> =
|
||||
| string
|
||||
| AbstractComponent<{ ...Props, className: string }, mixed>
|
||||
|
||||
export type StyledOptions = {
|
||||
label?: string,
|
||||
shouldForwardProp?: string => boolean,
|
||||
target?: string
|
||||
}
|
||||
|
||||
export type StyledComponent<Props> = StatelessFunctionalComponent<Props> & {
|
||||
defaultProps: any,
|
||||
toString: () => string,
|
||||
withComponent: (
|
||||
nextTag: StyledElementType<Props>,
|
||||
nextOptions?: StyledOptions
|
||||
) => StyledComponent<Props>
|
||||
}
|
||||
|
||||
export type PrivateStyledComponent<Props> = StyledComponent<Props> & {
|
||||
__emotion_real: StyledComponent<Props>,
|
||||
__emotion_base: any,
|
||||
__emotion_styles: any,
|
||||
__emotion_forwardProp: any
|
||||
}
|
||||
*/
|
||||
|
||||
var testOmitPropsOnStringTag = isPropValid__default["default"];
|
||||
|
||||
var testOmitPropsOnComponent = function testOmitPropsOnComponent(key
|
||||
/*: string */
|
||||
) {
|
||||
return key !== 'theme';
|
||||
};
|
||||
|
||||
var getDefaultShouldForwardProp = function getDefaultShouldForwardProp(tag
|
||||
/*: ElementType */
|
||||
) {
|
||||
return typeof tag === 'string' && // 96 is one less than the char code
|
||||
// for "a" so this is checking that
|
||||
// it's a lowercase character
|
||||
tag.charCodeAt(0) > 96 ? testOmitPropsOnStringTag : testOmitPropsOnComponent;
|
||||
};
|
||||
var composeShouldForwardProps = function composeShouldForwardProps(tag
|
||||
/*: PrivateStyledComponent<any> */
|
||||
, options
|
||||
/*: StyledOptions | void */
|
||||
, isReal
|
||||
/*: boolean */
|
||||
) {
|
||||
var shouldForwardProp;
|
||||
|
||||
if (options) {
|
||||
var optionsShouldForwardProp = options.shouldForwardProp;
|
||||
shouldForwardProp = tag.__emotion_forwardProp && optionsShouldForwardProp ? function (propName
|
||||
/*: string */
|
||||
) {
|
||||
return tag.__emotion_forwardProp(propName) && optionsShouldForwardProp(propName);
|
||||
} : optionsShouldForwardProp;
|
||||
}
|
||||
|
||||
if (typeof shouldForwardProp !== 'function' && isReal) {
|
||||
shouldForwardProp = tag.__emotion_forwardProp;
|
||||
}
|
||||
|
||||
return shouldForwardProp;
|
||||
};
|
||||
/*
|
||||
export type CreateStyledComponent = <Props>(
|
||||
...args: Interpolations
|
||||
) => StyledComponent<Props>
|
||||
|
||||
export type CreateStyled = {
|
||||
<Props>(
|
||||
tag: StyledElementType<Props>,
|
||||
options?: StyledOptions
|
||||
): (...args: Interpolations) => StyledComponent<Props>,
|
||||
[key: string]: CreateStyledComponent,
|
||||
bind: () => CreateStyled
|
||||
}
|
||||
*/
|
||||
|
||||
var isDevelopment = false;
|
||||
|
||||
var isBrowser = typeof document !== 'undefined';
|
||||
|
||||
var Insertion = function Insertion(_ref) {
|
||||
var cache = _ref.cache,
|
||||
serialized = _ref.serialized,
|
||||
isStringTag = _ref.isStringTag;
|
||||
utils.registerStyles(cache, serialized, isStringTag);
|
||||
var rules = useInsertionEffectWithFallbacks.useInsertionEffectAlwaysWithSyncFallback(function () {
|
||||
return utils.insertStyles(cache, serialized, isStringTag);
|
||||
});
|
||||
|
||||
if (!isBrowser && rules !== undefined) {
|
||||
var _ref2;
|
||||
|
||||
var serializedNames = serialized.name;
|
||||
var next = serialized.next;
|
||||
|
||||
while (next !== undefined) {
|
||||
serializedNames += ' ' + next.name;
|
||||
next = next.next;
|
||||
}
|
||||
|
||||
return /*#__PURE__*/React__namespace.createElement("style", (_ref2 = {}, _ref2["data-emotion"] = cache.key + " " + serializedNames, _ref2.dangerouslySetInnerHTML = {
|
||||
__html: rules
|
||||
}, _ref2.nonce = cache.sheet.nonce, _ref2));
|
||||
}
|
||||
|
||||
return null;
|
||||
};
|
||||
|
||||
var createStyled
|
||||
/*: CreateStyled */
|
||||
= function createStyled
|
||||
/*: CreateStyled */
|
||||
(tag
|
||||
/*: any */
|
||||
, options
|
||||
/* ?: StyledOptions */
|
||||
) {
|
||||
|
||||
var isReal = tag.__emotion_real === tag;
|
||||
var baseTag = isReal && tag.__emotion_base || tag;
|
||||
var identifierName;
|
||||
var targetClassName;
|
||||
|
||||
if (options !== undefined) {
|
||||
identifierName = options.label;
|
||||
targetClassName = options.target;
|
||||
}
|
||||
|
||||
var shouldForwardProp = composeShouldForwardProps(tag, options, isReal);
|
||||
var defaultShouldForwardProp = shouldForwardProp || getDefaultShouldForwardProp(baseTag);
|
||||
var shouldUseAs = !defaultShouldForwardProp('as');
|
||||
/* return function<Props>(): PrivateStyledComponent<Props> { */
|
||||
|
||||
return function () {
|
||||
var args = arguments;
|
||||
var styles = isReal && tag.__emotion_styles !== undefined ? tag.__emotion_styles.slice(0) : [];
|
||||
|
||||
if (identifierName !== undefined) {
|
||||
styles.push("label:" + identifierName + ";");
|
||||
}
|
||||
|
||||
if (args[0] == null || args[0].raw === undefined) {
|
||||
styles.push.apply(styles, args);
|
||||
} else {
|
||||
|
||||
styles.push(args[0][0]);
|
||||
var len = args.length;
|
||||
var i = 1;
|
||||
|
||||
for (; i < len; i++) {
|
||||
|
||||
styles.push(args[i], args[0][i]);
|
||||
}
|
||||
}
|
||||
|
||||
var Styled
|
||||
/*: PrivateStyledComponent<Props> */
|
||||
= react.withEmotionCache(function (props, cache, ref) {
|
||||
var FinalTag = shouldUseAs && props.as || baseTag;
|
||||
var className = '';
|
||||
var classInterpolations = [];
|
||||
var mergedProps = props;
|
||||
|
||||
if (props.theme == null) {
|
||||
mergedProps = {};
|
||||
|
||||
for (var key in props) {
|
||||
mergedProps[key] = props[key];
|
||||
}
|
||||
|
||||
mergedProps.theme = React__namespace.useContext(react.ThemeContext);
|
||||
}
|
||||
|
||||
if (typeof props.className === 'string') {
|
||||
className = utils.getRegisteredStyles(cache.registered, classInterpolations, props.className);
|
||||
} else if (props.className != null) {
|
||||
className = props.className + " ";
|
||||
}
|
||||
|
||||
var serialized = serialize.serializeStyles(styles.concat(classInterpolations), cache.registered, mergedProps);
|
||||
className += cache.key + "-" + serialized.name;
|
||||
|
||||
if (targetClassName !== undefined) {
|
||||
className += " " + targetClassName;
|
||||
}
|
||||
|
||||
var finalShouldForwardProp = shouldUseAs && shouldForwardProp === undefined ? getDefaultShouldForwardProp(FinalTag) : defaultShouldForwardProp;
|
||||
var newProps = {};
|
||||
|
||||
for (var _key in props) {
|
||||
if (shouldUseAs && _key === 'as') continue;
|
||||
|
||||
if (finalShouldForwardProp(_key)) {
|
||||
newProps[_key] = props[_key];
|
||||
}
|
||||
}
|
||||
|
||||
newProps.className = className;
|
||||
|
||||
if (ref) {
|
||||
newProps.ref = ref;
|
||||
}
|
||||
|
||||
return /*#__PURE__*/React__namespace.createElement(React__namespace.Fragment, null, /*#__PURE__*/React__namespace.createElement(Insertion, {
|
||||
cache: cache,
|
||||
serialized: serialized,
|
||||
isStringTag: typeof FinalTag === 'string'
|
||||
}), /*#__PURE__*/React__namespace.createElement(FinalTag, newProps));
|
||||
});
|
||||
Styled.displayName = identifierName !== undefined ? identifierName : "Styled(" + (typeof baseTag === 'string' ? baseTag : baseTag.displayName || baseTag.name || 'Component') + ")";
|
||||
Styled.defaultProps = tag.defaultProps;
|
||||
Styled.__emotion_real = Styled;
|
||||
Styled.__emotion_base = baseTag;
|
||||
Styled.__emotion_styles = styles;
|
||||
Styled.__emotion_forwardProp = shouldForwardProp;
|
||||
Object.defineProperty(Styled, 'toString', {
|
||||
value: function value() {
|
||||
if (targetClassName === undefined && isDevelopment) {
|
||||
return 'NO_COMPONENT_SELECTOR';
|
||||
}
|
||||
|
||||
return "." + targetClassName;
|
||||
}
|
||||
});
|
||||
|
||||
Styled.withComponent = function (nextTag
|
||||
/*: StyledElementType<Props> */
|
||||
, nextOptions
|
||||
/* ?: StyledOptions */
|
||||
) {
|
||||
return createStyled(nextTag, _extends({}, options, nextOptions, {
|
||||
shouldForwardProp: composeShouldForwardProps(Styled, nextOptions, true)
|
||||
})).apply(void 0, styles);
|
||||
};
|
||||
|
||||
return Styled;
|
||||
};
|
||||
};
|
||||
|
||||
exports["default"] = createStyled;
|
||||
2
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.cjs.mjs
generated
vendored
Normal file
2
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.cjs.mjs
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
import "./emotion-styled-base.cjs.js";
|
||||
export { _default as default } from "./emotion-styled-base.cjs.default.js";
|
||||
1
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.cjs.default.js
generated
vendored
Normal file
1
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.cjs.default.js
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
exports._default = require("./emotion-styled-base.development.cjs.js").default;
|
||||
302
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.cjs.js
generated
vendored
Normal file
302
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.cjs.js
generated
vendored
Normal file
@@ -0,0 +1,302 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var _extends = require('@babel/runtime/helpers/extends');
|
||||
var React = require('react');
|
||||
var isPropValid = require('@emotion/is-prop-valid');
|
||||
var react = require('@emotion/react');
|
||||
var utils = require('@emotion/utils');
|
||||
var serialize = require('@emotion/serialize');
|
||||
var useInsertionEffectWithFallbacks = require('@emotion/use-insertion-effect-with-fallbacks');
|
||||
|
||||
function _interopDefault (e) { return e && e.__esModule ? e : { 'default': e }; }
|
||||
|
||||
function _interopNamespace(e) {
|
||||
if (e && e.__esModule) return e;
|
||||
var n = Object.create(null);
|
||||
if (e) {
|
||||
Object.keys(e).forEach(function (k) {
|
||||
if (k !== 'default') {
|
||||
var d = Object.getOwnPropertyDescriptor(e, k);
|
||||
Object.defineProperty(n, k, d.get ? d : {
|
||||
enumerable: true,
|
||||
get: function () { return e[k]; }
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
n["default"] = e;
|
||||
return Object.freeze(n);
|
||||
}
|
||||
|
||||
var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
||||
var isPropValid__default = /*#__PURE__*/_interopDefault(isPropValid);
|
||||
|
||||
/* import type {
|
||||
ElementType,
|
||||
StatelessFunctionalComponent,
|
||||
AbstractComponent
|
||||
} from 'react' */
|
||||
/*
|
||||
export type Interpolations = Array<any>
|
||||
|
||||
export type StyledElementType<Props> =
|
||||
| string
|
||||
| AbstractComponent<{ ...Props, className: string }, mixed>
|
||||
|
||||
export type StyledOptions = {
|
||||
label?: string,
|
||||
shouldForwardProp?: string => boolean,
|
||||
target?: string
|
||||
}
|
||||
|
||||
export type StyledComponent<Props> = StatelessFunctionalComponent<Props> & {
|
||||
defaultProps: any,
|
||||
toString: () => string,
|
||||
withComponent: (
|
||||
nextTag: StyledElementType<Props>,
|
||||
nextOptions?: StyledOptions
|
||||
) => StyledComponent<Props>
|
||||
}
|
||||
|
||||
export type PrivateStyledComponent<Props> = StyledComponent<Props> & {
|
||||
__emotion_real: StyledComponent<Props>,
|
||||
__emotion_base: any,
|
||||
__emotion_styles: any,
|
||||
__emotion_forwardProp: any
|
||||
}
|
||||
*/
|
||||
|
||||
var testOmitPropsOnStringTag = isPropValid__default["default"];
|
||||
|
||||
var testOmitPropsOnComponent = function testOmitPropsOnComponent(key
|
||||
/*: string */
|
||||
) {
|
||||
return key !== 'theme';
|
||||
};
|
||||
|
||||
var getDefaultShouldForwardProp = function getDefaultShouldForwardProp(tag
|
||||
/*: ElementType */
|
||||
) {
|
||||
return typeof tag === 'string' && // 96 is one less than the char code
|
||||
// for "a" so this is checking that
|
||||
// it's a lowercase character
|
||||
tag.charCodeAt(0) > 96 ? testOmitPropsOnStringTag : testOmitPropsOnComponent;
|
||||
};
|
||||
var composeShouldForwardProps = function composeShouldForwardProps(tag
|
||||
/*: PrivateStyledComponent<any> */
|
||||
, options
|
||||
/*: StyledOptions | void */
|
||||
, isReal
|
||||
/*: boolean */
|
||||
) {
|
||||
var shouldForwardProp;
|
||||
|
||||
if (options) {
|
||||
var optionsShouldForwardProp = options.shouldForwardProp;
|
||||
shouldForwardProp = tag.__emotion_forwardProp && optionsShouldForwardProp ? function (propName
|
||||
/*: string */
|
||||
) {
|
||||
return tag.__emotion_forwardProp(propName) && optionsShouldForwardProp(propName);
|
||||
} : optionsShouldForwardProp;
|
||||
}
|
||||
|
||||
if (typeof shouldForwardProp !== 'function' && isReal) {
|
||||
shouldForwardProp = tag.__emotion_forwardProp;
|
||||
}
|
||||
|
||||
return shouldForwardProp;
|
||||
};
|
||||
/*
|
||||
export type CreateStyledComponent = <Props>(
|
||||
...args: Interpolations
|
||||
) => StyledComponent<Props>
|
||||
|
||||
export type CreateStyled = {
|
||||
<Props>(
|
||||
tag: StyledElementType<Props>,
|
||||
options?: StyledOptions
|
||||
): (...args: Interpolations) => StyledComponent<Props>,
|
||||
[key: string]: CreateStyledComponent,
|
||||
bind: () => CreateStyled
|
||||
}
|
||||
*/
|
||||
|
||||
var isDevelopment = true;
|
||||
|
||||
var isBrowser = typeof document !== 'undefined';
|
||||
|
||||
var ILLEGAL_ESCAPE_SEQUENCE_ERROR = "You have illegal escape sequence in your template literal, most likely inside content's property value.\nBecause you write your CSS inside a JavaScript string you actually have to do double escaping, so for example \"content: '\\00d7';\" should become \"content: '\\\\00d7';\".\nYou can read more about this here:\nhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals#ES2018_revision_of_illegal_escape_sequences";
|
||||
|
||||
var Insertion = function Insertion(_ref) {
|
||||
var cache = _ref.cache,
|
||||
serialized = _ref.serialized,
|
||||
isStringTag = _ref.isStringTag;
|
||||
utils.registerStyles(cache, serialized, isStringTag);
|
||||
var rules = useInsertionEffectWithFallbacks.useInsertionEffectAlwaysWithSyncFallback(function () {
|
||||
return utils.insertStyles(cache, serialized, isStringTag);
|
||||
});
|
||||
|
||||
if (!isBrowser && rules !== undefined) {
|
||||
var _ref2;
|
||||
|
||||
var serializedNames = serialized.name;
|
||||
var next = serialized.next;
|
||||
|
||||
while (next !== undefined) {
|
||||
serializedNames += ' ' + next.name;
|
||||
next = next.next;
|
||||
}
|
||||
|
||||
return /*#__PURE__*/React__namespace.createElement("style", (_ref2 = {}, _ref2["data-emotion"] = cache.key + " " + serializedNames, _ref2.dangerouslySetInnerHTML = {
|
||||
__html: rules
|
||||
}, _ref2.nonce = cache.sheet.nonce, _ref2));
|
||||
}
|
||||
|
||||
return null;
|
||||
};
|
||||
|
||||
var createStyled
|
||||
/*: CreateStyled */
|
||||
= function createStyled
|
||||
/*: CreateStyled */
|
||||
(tag
|
||||
/*: any */
|
||||
, options
|
||||
/* ?: StyledOptions */
|
||||
) {
|
||||
{
|
||||
if (tag === undefined) {
|
||||
throw new Error('You are trying to create a styled element with an undefined component.\nYou may have forgotten to import it.');
|
||||
}
|
||||
}
|
||||
|
||||
var isReal = tag.__emotion_real === tag;
|
||||
var baseTag = isReal && tag.__emotion_base || tag;
|
||||
var identifierName;
|
||||
var targetClassName;
|
||||
|
||||
if (options !== undefined) {
|
||||
identifierName = options.label;
|
||||
targetClassName = options.target;
|
||||
}
|
||||
|
||||
var shouldForwardProp = composeShouldForwardProps(tag, options, isReal);
|
||||
var defaultShouldForwardProp = shouldForwardProp || getDefaultShouldForwardProp(baseTag);
|
||||
var shouldUseAs = !defaultShouldForwardProp('as');
|
||||
/* return function<Props>(): PrivateStyledComponent<Props> { */
|
||||
|
||||
return function () {
|
||||
var args = arguments;
|
||||
var styles = isReal && tag.__emotion_styles !== undefined ? tag.__emotion_styles.slice(0) : [];
|
||||
|
||||
if (identifierName !== undefined) {
|
||||
styles.push("label:" + identifierName + ";");
|
||||
}
|
||||
|
||||
if (args[0] == null || args[0].raw === undefined) {
|
||||
styles.push.apply(styles, args);
|
||||
} else {
|
||||
if (args[0][0] === undefined) {
|
||||
console.error(ILLEGAL_ESCAPE_SEQUENCE_ERROR);
|
||||
}
|
||||
|
||||
styles.push(args[0][0]);
|
||||
var len = args.length;
|
||||
var i = 1;
|
||||
|
||||
for (; i < len; i++) {
|
||||
if (args[0][i] === undefined) {
|
||||
console.error(ILLEGAL_ESCAPE_SEQUENCE_ERROR);
|
||||
}
|
||||
|
||||
styles.push(args[i], args[0][i]);
|
||||
}
|
||||
}
|
||||
|
||||
var Styled
|
||||
/*: PrivateStyledComponent<Props> */
|
||||
= react.withEmotionCache(function (props, cache, ref) {
|
||||
var FinalTag = shouldUseAs && props.as || baseTag;
|
||||
var className = '';
|
||||
var classInterpolations = [];
|
||||
var mergedProps = props;
|
||||
|
||||
if (props.theme == null) {
|
||||
mergedProps = {};
|
||||
|
||||
for (var key in props) {
|
||||
mergedProps[key] = props[key];
|
||||
}
|
||||
|
||||
mergedProps.theme = React__namespace.useContext(react.ThemeContext);
|
||||
}
|
||||
|
||||
if (typeof props.className === 'string') {
|
||||
className = utils.getRegisteredStyles(cache.registered, classInterpolations, props.className);
|
||||
} else if (props.className != null) {
|
||||
className = props.className + " ";
|
||||
}
|
||||
|
||||
var serialized = serialize.serializeStyles(styles.concat(classInterpolations), cache.registered, mergedProps);
|
||||
className += cache.key + "-" + serialized.name;
|
||||
|
||||
if (targetClassName !== undefined) {
|
||||
className += " " + targetClassName;
|
||||
}
|
||||
|
||||
var finalShouldForwardProp = shouldUseAs && shouldForwardProp === undefined ? getDefaultShouldForwardProp(FinalTag) : defaultShouldForwardProp;
|
||||
var newProps = {};
|
||||
|
||||
for (var _key in props) {
|
||||
if (shouldUseAs && _key === 'as') continue;
|
||||
|
||||
if (finalShouldForwardProp(_key)) {
|
||||
newProps[_key] = props[_key];
|
||||
}
|
||||
}
|
||||
|
||||
newProps.className = className;
|
||||
|
||||
if (ref) {
|
||||
newProps.ref = ref;
|
||||
}
|
||||
|
||||
return /*#__PURE__*/React__namespace.createElement(React__namespace.Fragment, null, /*#__PURE__*/React__namespace.createElement(Insertion, {
|
||||
cache: cache,
|
||||
serialized: serialized,
|
||||
isStringTag: typeof FinalTag === 'string'
|
||||
}), /*#__PURE__*/React__namespace.createElement(FinalTag, newProps));
|
||||
});
|
||||
Styled.displayName = identifierName !== undefined ? identifierName : "Styled(" + (typeof baseTag === 'string' ? baseTag : baseTag.displayName || baseTag.name || 'Component') + ")";
|
||||
Styled.defaultProps = tag.defaultProps;
|
||||
Styled.__emotion_real = Styled;
|
||||
Styled.__emotion_base = baseTag;
|
||||
Styled.__emotion_styles = styles;
|
||||
Styled.__emotion_forwardProp = shouldForwardProp;
|
||||
Object.defineProperty(Styled, 'toString', {
|
||||
value: function value() {
|
||||
if (targetClassName === undefined && isDevelopment) {
|
||||
return 'NO_COMPONENT_SELECTOR';
|
||||
}
|
||||
|
||||
return "." + targetClassName;
|
||||
}
|
||||
});
|
||||
|
||||
Styled.withComponent = function (nextTag
|
||||
/*: StyledElementType<Props> */
|
||||
, nextOptions
|
||||
/* ?: StyledOptions */
|
||||
) {
|
||||
return createStyled(nextTag, _extends({}, options, nextOptions, {
|
||||
shouldForwardProp: composeShouldForwardProps(Styled, nextOptions, true)
|
||||
})).apply(void 0, styles);
|
||||
};
|
||||
|
||||
return Styled;
|
||||
};
|
||||
};
|
||||
|
||||
exports["default"] = createStyled;
|
||||
2
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.cjs.mjs
generated
vendored
Normal file
2
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.cjs.mjs
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
import "./emotion-styled-base.development.cjs.js";
|
||||
export { _default as default } from "./emotion-styled-base.development.cjs.default.js";
|
||||
1
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.edge-light.cjs.default.js
generated
vendored
Normal file
1
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.edge-light.cjs.default.js
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
exports._default = require("./emotion-styled-base.development.edge-light.cjs.js").default;
|
||||
300
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.edge-light.cjs.js
generated
vendored
Normal file
300
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.edge-light.cjs.js
generated
vendored
Normal file
@@ -0,0 +1,300 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var _extends = require('@babel/runtime/helpers/extends');
|
||||
var React = require('react');
|
||||
var isPropValid = require('@emotion/is-prop-valid');
|
||||
var react = require('@emotion/react');
|
||||
var utils = require('@emotion/utils');
|
||||
var serialize = require('@emotion/serialize');
|
||||
var useInsertionEffectWithFallbacks = require('@emotion/use-insertion-effect-with-fallbacks');
|
||||
|
||||
function _interopDefault (e) { return e && e.__esModule ? e : { 'default': e }; }
|
||||
|
||||
function _interopNamespace(e) {
|
||||
if (e && e.__esModule) return e;
|
||||
var n = Object.create(null);
|
||||
if (e) {
|
||||
Object.keys(e).forEach(function (k) {
|
||||
if (k !== 'default') {
|
||||
var d = Object.getOwnPropertyDescriptor(e, k);
|
||||
Object.defineProperty(n, k, d.get ? d : {
|
||||
enumerable: true,
|
||||
get: function () { return e[k]; }
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
n["default"] = e;
|
||||
return Object.freeze(n);
|
||||
}
|
||||
|
||||
var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
||||
var isPropValid__default = /*#__PURE__*/_interopDefault(isPropValid);
|
||||
|
||||
/* import type {
|
||||
ElementType,
|
||||
StatelessFunctionalComponent,
|
||||
AbstractComponent
|
||||
} from 'react' */
|
||||
/*
|
||||
export type Interpolations = Array<any>
|
||||
|
||||
export type StyledElementType<Props> =
|
||||
| string
|
||||
| AbstractComponent<{ ...Props, className: string }, mixed>
|
||||
|
||||
export type StyledOptions = {
|
||||
label?: string,
|
||||
shouldForwardProp?: string => boolean,
|
||||
target?: string
|
||||
}
|
||||
|
||||
export type StyledComponent<Props> = StatelessFunctionalComponent<Props> & {
|
||||
defaultProps: any,
|
||||
toString: () => string,
|
||||
withComponent: (
|
||||
nextTag: StyledElementType<Props>,
|
||||
nextOptions?: StyledOptions
|
||||
) => StyledComponent<Props>
|
||||
}
|
||||
|
||||
export type PrivateStyledComponent<Props> = StyledComponent<Props> & {
|
||||
__emotion_real: StyledComponent<Props>,
|
||||
__emotion_base: any,
|
||||
__emotion_styles: any,
|
||||
__emotion_forwardProp: any
|
||||
}
|
||||
*/
|
||||
|
||||
var testOmitPropsOnStringTag = isPropValid__default["default"];
|
||||
|
||||
var testOmitPropsOnComponent = function testOmitPropsOnComponent(key
|
||||
/*: string */
|
||||
) {
|
||||
return key !== 'theme';
|
||||
};
|
||||
|
||||
var getDefaultShouldForwardProp = function getDefaultShouldForwardProp(tag
|
||||
/*: ElementType */
|
||||
) {
|
||||
return typeof tag === 'string' && // 96 is one less than the char code
|
||||
// for "a" so this is checking that
|
||||
// it's a lowercase character
|
||||
tag.charCodeAt(0) > 96 ? testOmitPropsOnStringTag : testOmitPropsOnComponent;
|
||||
};
|
||||
var composeShouldForwardProps = function composeShouldForwardProps(tag
|
||||
/*: PrivateStyledComponent<any> */
|
||||
, options
|
||||
/*: StyledOptions | void */
|
||||
, isReal
|
||||
/*: boolean */
|
||||
) {
|
||||
var shouldForwardProp;
|
||||
|
||||
if (options) {
|
||||
var optionsShouldForwardProp = options.shouldForwardProp;
|
||||
shouldForwardProp = tag.__emotion_forwardProp && optionsShouldForwardProp ? function (propName
|
||||
/*: string */
|
||||
) {
|
||||
return tag.__emotion_forwardProp(propName) && optionsShouldForwardProp(propName);
|
||||
} : optionsShouldForwardProp;
|
||||
}
|
||||
|
||||
if (typeof shouldForwardProp !== 'function' && isReal) {
|
||||
shouldForwardProp = tag.__emotion_forwardProp;
|
||||
}
|
||||
|
||||
return shouldForwardProp;
|
||||
};
|
||||
/*
|
||||
export type CreateStyledComponent = <Props>(
|
||||
...args: Interpolations
|
||||
) => StyledComponent<Props>
|
||||
|
||||
export type CreateStyled = {
|
||||
<Props>(
|
||||
tag: StyledElementType<Props>,
|
||||
options?: StyledOptions
|
||||
): (...args: Interpolations) => StyledComponent<Props>,
|
||||
[key: string]: CreateStyledComponent,
|
||||
bind: () => CreateStyled
|
||||
}
|
||||
*/
|
||||
|
||||
var isDevelopment = true;
|
||||
|
||||
var ILLEGAL_ESCAPE_SEQUENCE_ERROR = "You have illegal escape sequence in your template literal, most likely inside content's property value.\nBecause you write your CSS inside a JavaScript string you actually have to do double escaping, so for example \"content: '\\00d7';\" should become \"content: '\\\\00d7';\".\nYou can read more about this here:\nhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals#ES2018_revision_of_illegal_escape_sequences";
|
||||
|
||||
var Insertion = function Insertion(_ref) {
|
||||
var cache = _ref.cache,
|
||||
serialized = _ref.serialized,
|
||||
isStringTag = _ref.isStringTag;
|
||||
utils.registerStyles(cache, serialized, isStringTag);
|
||||
var rules = useInsertionEffectWithFallbacks.useInsertionEffectAlwaysWithSyncFallback(function () {
|
||||
return utils.insertStyles(cache, serialized, isStringTag);
|
||||
});
|
||||
|
||||
if (rules !== undefined) {
|
||||
var _ref2;
|
||||
|
||||
var serializedNames = serialized.name;
|
||||
var next = serialized.next;
|
||||
|
||||
while (next !== undefined) {
|
||||
serializedNames += ' ' + next.name;
|
||||
next = next.next;
|
||||
}
|
||||
|
||||
return /*#__PURE__*/React__namespace.createElement("style", (_ref2 = {}, _ref2["data-emotion"] = cache.key + " " + serializedNames, _ref2.dangerouslySetInnerHTML = {
|
||||
__html: rules
|
||||
}, _ref2.nonce = cache.sheet.nonce, _ref2));
|
||||
}
|
||||
|
||||
return null;
|
||||
};
|
||||
|
||||
var createStyled
|
||||
/*: CreateStyled */
|
||||
= function createStyled
|
||||
/*: CreateStyled */
|
||||
(tag
|
||||
/*: any */
|
||||
, options
|
||||
/* ?: StyledOptions */
|
||||
) {
|
||||
{
|
||||
if (tag === undefined) {
|
||||
throw new Error('You are trying to create a styled element with an undefined component.\nYou may have forgotten to import it.');
|
||||
}
|
||||
}
|
||||
|
||||
var isReal = tag.__emotion_real === tag;
|
||||
var baseTag = isReal && tag.__emotion_base || tag;
|
||||
var identifierName;
|
||||
var targetClassName;
|
||||
|
||||
if (options !== undefined) {
|
||||
identifierName = options.label;
|
||||
targetClassName = options.target;
|
||||
}
|
||||
|
||||
var shouldForwardProp = composeShouldForwardProps(tag, options, isReal);
|
||||
var defaultShouldForwardProp = shouldForwardProp || getDefaultShouldForwardProp(baseTag);
|
||||
var shouldUseAs = !defaultShouldForwardProp('as');
|
||||
/* return function<Props>(): PrivateStyledComponent<Props> { */
|
||||
|
||||
return function () {
|
||||
var args = arguments;
|
||||
var styles = isReal && tag.__emotion_styles !== undefined ? tag.__emotion_styles.slice(0) : [];
|
||||
|
||||
if (identifierName !== undefined) {
|
||||
styles.push("label:" + identifierName + ";");
|
||||
}
|
||||
|
||||
if (args[0] == null || args[0].raw === undefined) {
|
||||
styles.push.apply(styles, args);
|
||||
} else {
|
||||
if (args[0][0] === undefined) {
|
||||
console.error(ILLEGAL_ESCAPE_SEQUENCE_ERROR);
|
||||
}
|
||||
|
||||
styles.push(args[0][0]);
|
||||
var len = args.length;
|
||||
var i = 1;
|
||||
|
||||
for (; i < len; i++) {
|
||||
if (args[0][i] === undefined) {
|
||||
console.error(ILLEGAL_ESCAPE_SEQUENCE_ERROR);
|
||||
}
|
||||
|
||||
styles.push(args[i], args[0][i]);
|
||||
}
|
||||
}
|
||||
|
||||
var Styled
|
||||
/*: PrivateStyledComponent<Props> */
|
||||
= react.withEmotionCache(function (props, cache, ref) {
|
||||
var FinalTag = shouldUseAs && props.as || baseTag;
|
||||
var className = '';
|
||||
var classInterpolations = [];
|
||||
var mergedProps = props;
|
||||
|
||||
if (props.theme == null) {
|
||||
mergedProps = {};
|
||||
|
||||
for (var key in props) {
|
||||
mergedProps[key] = props[key];
|
||||
}
|
||||
|
||||
mergedProps.theme = React__namespace.useContext(react.ThemeContext);
|
||||
}
|
||||
|
||||
if (typeof props.className === 'string') {
|
||||
className = utils.getRegisteredStyles(cache.registered, classInterpolations, props.className);
|
||||
} else if (props.className != null) {
|
||||
className = props.className + " ";
|
||||
}
|
||||
|
||||
var serialized = serialize.serializeStyles(styles.concat(classInterpolations), cache.registered, mergedProps);
|
||||
className += cache.key + "-" + serialized.name;
|
||||
|
||||
if (targetClassName !== undefined) {
|
||||
className += " " + targetClassName;
|
||||
}
|
||||
|
||||
var finalShouldForwardProp = shouldUseAs && shouldForwardProp === undefined ? getDefaultShouldForwardProp(FinalTag) : defaultShouldForwardProp;
|
||||
var newProps = {};
|
||||
|
||||
for (var _key in props) {
|
||||
if (shouldUseAs && _key === 'as') continue;
|
||||
|
||||
if (finalShouldForwardProp(_key)) {
|
||||
newProps[_key] = props[_key];
|
||||
}
|
||||
}
|
||||
|
||||
newProps.className = className;
|
||||
|
||||
if (ref) {
|
||||
newProps.ref = ref;
|
||||
}
|
||||
|
||||
return /*#__PURE__*/React__namespace.createElement(React__namespace.Fragment, null, /*#__PURE__*/React__namespace.createElement(Insertion, {
|
||||
cache: cache,
|
||||
serialized: serialized,
|
||||
isStringTag: typeof FinalTag === 'string'
|
||||
}), /*#__PURE__*/React__namespace.createElement(FinalTag, newProps));
|
||||
});
|
||||
Styled.displayName = identifierName !== undefined ? identifierName : "Styled(" + (typeof baseTag === 'string' ? baseTag : baseTag.displayName || baseTag.name || 'Component') + ")";
|
||||
Styled.defaultProps = tag.defaultProps;
|
||||
Styled.__emotion_real = Styled;
|
||||
Styled.__emotion_base = baseTag;
|
||||
Styled.__emotion_styles = styles;
|
||||
Styled.__emotion_forwardProp = shouldForwardProp;
|
||||
Object.defineProperty(Styled, 'toString', {
|
||||
value: function value() {
|
||||
if (targetClassName === undefined && isDevelopment) {
|
||||
return 'NO_COMPONENT_SELECTOR';
|
||||
}
|
||||
|
||||
return "." + targetClassName;
|
||||
}
|
||||
});
|
||||
|
||||
Styled.withComponent = function (nextTag
|
||||
/*: StyledElementType<Props> */
|
||||
, nextOptions
|
||||
/* ?: StyledOptions */
|
||||
) {
|
||||
return createStyled(nextTag, _extends({}, options, nextOptions, {
|
||||
shouldForwardProp: composeShouldForwardProps(Styled, nextOptions, true)
|
||||
})).apply(void 0, styles);
|
||||
};
|
||||
|
||||
return Styled;
|
||||
};
|
||||
};
|
||||
|
||||
exports["default"] = createStyled;
|
||||
2
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.edge-light.cjs.mjs
generated
vendored
Normal file
2
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.edge-light.cjs.mjs
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
import "./emotion-styled-base.development.edge-light.cjs.js";
|
||||
export { _default as default } from "./emotion-styled-base.development.edge-light.cjs.default.js";
|
||||
273
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.edge-light.esm.js
generated
vendored
Normal file
273
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.edge-light.esm.js
generated
vendored
Normal file
@@ -0,0 +1,273 @@
|
||||
import _extends from '@babel/runtime/helpers/esm/extends';
|
||||
import * as React from 'react';
|
||||
import isPropValid from '@emotion/is-prop-valid';
|
||||
import { withEmotionCache, ThemeContext } from '@emotion/react';
|
||||
import { getRegisteredStyles, registerStyles, insertStyles } from '@emotion/utils';
|
||||
import { serializeStyles } from '@emotion/serialize';
|
||||
import { useInsertionEffectAlwaysWithSyncFallback } from '@emotion/use-insertion-effect-with-fallbacks';
|
||||
|
||||
/* import type {
|
||||
ElementType,
|
||||
StatelessFunctionalComponent,
|
||||
AbstractComponent
|
||||
} from 'react' */
|
||||
/*
|
||||
export type Interpolations = Array<any>
|
||||
|
||||
export type StyledElementType<Props> =
|
||||
| string
|
||||
| AbstractComponent<{ ...Props, className: string }, mixed>
|
||||
|
||||
export type StyledOptions = {
|
||||
label?: string,
|
||||
shouldForwardProp?: string => boolean,
|
||||
target?: string
|
||||
}
|
||||
|
||||
export type StyledComponent<Props> = StatelessFunctionalComponent<Props> & {
|
||||
defaultProps: any,
|
||||
toString: () => string,
|
||||
withComponent: (
|
||||
nextTag: StyledElementType<Props>,
|
||||
nextOptions?: StyledOptions
|
||||
) => StyledComponent<Props>
|
||||
}
|
||||
|
||||
export type PrivateStyledComponent<Props> = StyledComponent<Props> & {
|
||||
__emotion_real: StyledComponent<Props>,
|
||||
__emotion_base: any,
|
||||
__emotion_styles: any,
|
||||
__emotion_forwardProp: any
|
||||
}
|
||||
*/
|
||||
|
||||
var testOmitPropsOnStringTag = isPropValid;
|
||||
|
||||
var testOmitPropsOnComponent = function testOmitPropsOnComponent(key
|
||||
/*: string */
|
||||
) {
|
||||
return key !== 'theme';
|
||||
};
|
||||
|
||||
var getDefaultShouldForwardProp = function getDefaultShouldForwardProp(tag
|
||||
/*: ElementType */
|
||||
) {
|
||||
return typeof tag === 'string' && // 96 is one less than the char code
|
||||
// for "a" so this is checking that
|
||||
// it's a lowercase character
|
||||
tag.charCodeAt(0) > 96 ? testOmitPropsOnStringTag : testOmitPropsOnComponent;
|
||||
};
|
||||
var composeShouldForwardProps = function composeShouldForwardProps(tag
|
||||
/*: PrivateStyledComponent<any> */
|
||||
, options
|
||||
/*: StyledOptions | void */
|
||||
, isReal
|
||||
/*: boolean */
|
||||
) {
|
||||
var shouldForwardProp;
|
||||
|
||||
if (options) {
|
||||
var optionsShouldForwardProp = options.shouldForwardProp;
|
||||
shouldForwardProp = tag.__emotion_forwardProp && optionsShouldForwardProp ? function (propName
|
||||
/*: string */
|
||||
) {
|
||||
return tag.__emotion_forwardProp(propName) && optionsShouldForwardProp(propName);
|
||||
} : optionsShouldForwardProp;
|
||||
}
|
||||
|
||||
if (typeof shouldForwardProp !== 'function' && isReal) {
|
||||
shouldForwardProp = tag.__emotion_forwardProp;
|
||||
}
|
||||
|
||||
return shouldForwardProp;
|
||||
};
|
||||
/*
|
||||
export type CreateStyledComponent = <Props>(
|
||||
...args: Interpolations
|
||||
) => StyledComponent<Props>
|
||||
|
||||
export type CreateStyled = {
|
||||
<Props>(
|
||||
tag: StyledElementType<Props>,
|
||||
options?: StyledOptions
|
||||
): (...args: Interpolations) => StyledComponent<Props>,
|
||||
[key: string]: CreateStyledComponent,
|
||||
bind: () => CreateStyled
|
||||
}
|
||||
*/
|
||||
|
||||
var isDevelopment = true;
|
||||
|
||||
var ILLEGAL_ESCAPE_SEQUENCE_ERROR = "You have illegal escape sequence in your template literal, most likely inside content's property value.\nBecause you write your CSS inside a JavaScript string you actually have to do double escaping, so for example \"content: '\\00d7';\" should become \"content: '\\\\00d7';\".\nYou can read more about this here:\nhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals#ES2018_revision_of_illegal_escape_sequences";
|
||||
|
||||
var Insertion = function Insertion(_ref) {
|
||||
var cache = _ref.cache,
|
||||
serialized = _ref.serialized,
|
||||
isStringTag = _ref.isStringTag;
|
||||
registerStyles(cache, serialized, isStringTag);
|
||||
var rules = useInsertionEffectAlwaysWithSyncFallback(function () {
|
||||
return insertStyles(cache, serialized, isStringTag);
|
||||
});
|
||||
|
||||
if (rules !== undefined) {
|
||||
var _ref2;
|
||||
|
||||
var serializedNames = serialized.name;
|
||||
var next = serialized.next;
|
||||
|
||||
while (next !== undefined) {
|
||||
serializedNames += ' ' + next.name;
|
||||
next = next.next;
|
||||
}
|
||||
|
||||
return /*#__PURE__*/React.createElement("style", (_ref2 = {}, _ref2["data-emotion"] = cache.key + " " + serializedNames, _ref2.dangerouslySetInnerHTML = {
|
||||
__html: rules
|
||||
}, _ref2.nonce = cache.sheet.nonce, _ref2));
|
||||
}
|
||||
|
||||
return null;
|
||||
};
|
||||
|
||||
var createStyled
|
||||
/*: CreateStyled */
|
||||
= function createStyled
|
||||
/*: CreateStyled */
|
||||
(tag
|
||||
/*: any */
|
||||
, options
|
||||
/* ?: StyledOptions */
|
||||
) {
|
||||
{
|
||||
if (tag === undefined) {
|
||||
throw new Error('You are trying to create a styled element with an undefined component.\nYou may have forgotten to import it.');
|
||||
}
|
||||
}
|
||||
|
||||
var isReal = tag.__emotion_real === tag;
|
||||
var baseTag = isReal && tag.__emotion_base || tag;
|
||||
var identifierName;
|
||||
var targetClassName;
|
||||
|
||||
if (options !== undefined) {
|
||||
identifierName = options.label;
|
||||
targetClassName = options.target;
|
||||
}
|
||||
|
||||
var shouldForwardProp = composeShouldForwardProps(tag, options, isReal);
|
||||
var defaultShouldForwardProp = shouldForwardProp || getDefaultShouldForwardProp(baseTag);
|
||||
var shouldUseAs = !defaultShouldForwardProp('as');
|
||||
/* return function<Props>(): PrivateStyledComponent<Props> { */
|
||||
|
||||
return function () {
|
||||
var args = arguments;
|
||||
var styles = isReal && tag.__emotion_styles !== undefined ? tag.__emotion_styles.slice(0) : [];
|
||||
|
||||
if (identifierName !== undefined) {
|
||||
styles.push("label:" + identifierName + ";");
|
||||
}
|
||||
|
||||
if (args[0] == null || args[0].raw === undefined) {
|
||||
styles.push.apply(styles, args);
|
||||
} else {
|
||||
if (args[0][0] === undefined) {
|
||||
console.error(ILLEGAL_ESCAPE_SEQUENCE_ERROR);
|
||||
}
|
||||
|
||||
styles.push(args[0][0]);
|
||||
var len = args.length;
|
||||
var i = 1;
|
||||
|
||||
for (; i < len; i++) {
|
||||
if (args[0][i] === undefined) {
|
||||
console.error(ILLEGAL_ESCAPE_SEQUENCE_ERROR);
|
||||
}
|
||||
|
||||
styles.push(args[i], args[0][i]);
|
||||
}
|
||||
}
|
||||
|
||||
var Styled
|
||||
/*: PrivateStyledComponent<Props> */
|
||||
= withEmotionCache(function (props, cache, ref) {
|
||||
var FinalTag = shouldUseAs && props.as || baseTag;
|
||||
var className = '';
|
||||
var classInterpolations = [];
|
||||
var mergedProps = props;
|
||||
|
||||
if (props.theme == null) {
|
||||
mergedProps = {};
|
||||
|
||||
for (var key in props) {
|
||||
mergedProps[key] = props[key];
|
||||
}
|
||||
|
||||
mergedProps.theme = React.useContext(ThemeContext);
|
||||
}
|
||||
|
||||
if (typeof props.className === 'string') {
|
||||
className = getRegisteredStyles(cache.registered, classInterpolations, props.className);
|
||||
} else if (props.className != null) {
|
||||
className = props.className + " ";
|
||||
}
|
||||
|
||||
var serialized = serializeStyles(styles.concat(classInterpolations), cache.registered, mergedProps);
|
||||
className += cache.key + "-" + serialized.name;
|
||||
|
||||
if (targetClassName !== undefined) {
|
||||
className += " " + targetClassName;
|
||||
}
|
||||
|
||||
var finalShouldForwardProp = shouldUseAs && shouldForwardProp === undefined ? getDefaultShouldForwardProp(FinalTag) : defaultShouldForwardProp;
|
||||
var newProps = {};
|
||||
|
||||
for (var _key in props) {
|
||||
if (shouldUseAs && _key === 'as') continue;
|
||||
|
||||
if (finalShouldForwardProp(_key)) {
|
||||
newProps[_key] = props[_key];
|
||||
}
|
||||
}
|
||||
|
||||
newProps.className = className;
|
||||
|
||||
if (ref) {
|
||||
newProps.ref = ref;
|
||||
}
|
||||
|
||||
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Insertion, {
|
||||
cache: cache,
|
||||
serialized: serialized,
|
||||
isStringTag: typeof FinalTag === 'string'
|
||||
}), /*#__PURE__*/React.createElement(FinalTag, newProps));
|
||||
});
|
||||
Styled.displayName = identifierName !== undefined ? identifierName : "Styled(" + (typeof baseTag === 'string' ? baseTag : baseTag.displayName || baseTag.name || 'Component') + ")";
|
||||
Styled.defaultProps = tag.defaultProps;
|
||||
Styled.__emotion_real = Styled;
|
||||
Styled.__emotion_base = baseTag;
|
||||
Styled.__emotion_styles = styles;
|
||||
Styled.__emotion_forwardProp = shouldForwardProp;
|
||||
Object.defineProperty(Styled, 'toString', {
|
||||
value: function value() {
|
||||
if (targetClassName === undefined && isDevelopment) {
|
||||
return 'NO_COMPONENT_SELECTOR';
|
||||
}
|
||||
|
||||
return "." + targetClassName;
|
||||
}
|
||||
});
|
||||
|
||||
Styled.withComponent = function (nextTag
|
||||
/*: StyledElementType<Props> */
|
||||
, nextOptions
|
||||
/* ?: StyledOptions */
|
||||
) {
|
||||
return createStyled(nextTag, _extends({}, options, nextOptions, {
|
||||
shouldForwardProp: composeShouldForwardProps(Styled, nextOptions, true)
|
||||
})).apply(void 0, styles);
|
||||
};
|
||||
|
||||
return Styled;
|
||||
};
|
||||
};
|
||||
|
||||
export { createStyled as default };
|
||||
275
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.esm.js
generated
vendored
Normal file
275
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.development.esm.js
generated
vendored
Normal file
@@ -0,0 +1,275 @@
|
||||
import _extends from '@babel/runtime/helpers/esm/extends';
|
||||
import * as React from 'react';
|
||||
import isPropValid from '@emotion/is-prop-valid';
|
||||
import { withEmotionCache, ThemeContext } from '@emotion/react';
|
||||
import { getRegisteredStyles, registerStyles, insertStyles } from '@emotion/utils';
|
||||
import { serializeStyles } from '@emotion/serialize';
|
||||
import { useInsertionEffectAlwaysWithSyncFallback } from '@emotion/use-insertion-effect-with-fallbacks';
|
||||
|
||||
/* import type {
|
||||
ElementType,
|
||||
StatelessFunctionalComponent,
|
||||
AbstractComponent
|
||||
} from 'react' */
|
||||
/*
|
||||
export type Interpolations = Array<any>
|
||||
|
||||
export type StyledElementType<Props> =
|
||||
| string
|
||||
| AbstractComponent<{ ...Props, className: string }, mixed>
|
||||
|
||||
export type StyledOptions = {
|
||||
label?: string,
|
||||
shouldForwardProp?: string => boolean,
|
||||
target?: string
|
||||
}
|
||||
|
||||
export type StyledComponent<Props> = StatelessFunctionalComponent<Props> & {
|
||||
defaultProps: any,
|
||||
toString: () => string,
|
||||
withComponent: (
|
||||
nextTag: StyledElementType<Props>,
|
||||
nextOptions?: StyledOptions
|
||||
) => StyledComponent<Props>
|
||||
}
|
||||
|
||||
export type PrivateStyledComponent<Props> = StyledComponent<Props> & {
|
||||
__emotion_real: StyledComponent<Props>,
|
||||
__emotion_base: any,
|
||||
__emotion_styles: any,
|
||||
__emotion_forwardProp: any
|
||||
}
|
||||
*/
|
||||
|
||||
var testOmitPropsOnStringTag = isPropValid;
|
||||
|
||||
var testOmitPropsOnComponent = function testOmitPropsOnComponent(key
|
||||
/*: string */
|
||||
) {
|
||||
return key !== 'theme';
|
||||
};
|
||||
|
||||
var getDefaultShouldForwardProp = function getDefaultShouldForwardProp(tag
|
||||
/*: ElementType */
|
||||
) {
|
||||
return typeof tag === 'string' && // 96 is one less than the char code
|
||||
// for "a" so this is checking that
|
||||
// it's a lowercase character
|
||||
tag.charCodeAt(0) > 96 ? testOmitPropsOnStringTag : testOmitPropsOnComponent;
|
||||
};
|
||||
var composeShouldForwardProps = function composeShouldForwardProps(tag
|
||||
/*: PrivateStyledComponent<any> */
|
||||
, options
|
||||
/*: StyledOptions | void */
|
||||
, isReal
|
||||
/*: boolean */
|
||||
) {
|
||||
var shouldForwardProp;
|
||||
|
||||
if (options) {
|
||||
var optionsShouldForwardProp = options.shouldForwardProp;
|
||||
shouldForwardProp = tag.__emotion_forwardProp && optionsShouldForwardProp ? function (propName
|
||||
/*: string */
|
||||
) {
|
||||
return tag.__emotion_forwardProp(propName) && optionsShouldForwardProp(propName);
|
||||
} : optionsShouldForwardProp;
|
||||
}
|
||||
|
||||
if (typeof shouldForwardProp !== 'function' && isReal) {
|
||||
shouldForwardProp = tag.__emotion_forwardProp;
|
||||
}
|
||||
|
||||
return shouldForwardProp;
|
||||
};
|
||||
/*
|
||||
export type CreateStyledComponent = <Props>(
|
||||
...args: Interpolations
|
||||
) => StyledComponent<Props>
|
||||
|
||||
export type CreateStyled = {
|
||||
<Props>(
|
||||
tag: StyledElementType<Props>,
|
||||
options?: StyledOptions
|
||||
): (...args: Interpolations) => StyledComponent<Props>,
|
||||
[key: string]: CreateStyledComponent,
|
||||
bind: () => CreateStyled
|
||||
}
|
||||
*/
|
||||
|
||||
var isDevelopment = true;
|
||||
|
||||
var isBrowser = typeof document !== 'undefined';
|
||||
|
||||
var ILLEGAL_ESCAPE_SEQUENCE_ERROR = "You have illegal escape sequence in your template literal, most likely inside content's property value.\nBecause you write your CSS inside a JavaScript string you actually have to do double escaping, so for example \"content: '\\00d7';\" should become \"content: '\\\\00d7';\".\nYou can read more about this here:\nhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals#ES2018_revision_of_illegal_escape_sequences";
|
||||
|
||||
var Insertion = function Insertion(_ref) {
|
||||
var cache = _ref.cache,
|
||||
serialized = _ref.serialized,
|
||||
isStringTag = _ref.isStringTag;
|
||||
registerStyles(cache, serialized, isStringTag);
|
||||
var rules = useInsertionEffectAlwaysWithSyncFallback(function () {
|
||||
return insertStyles(cache, serialized, isStringTag);
|
||||
});
|
||||
|
||||
if (!isBrowser && rules !== undefined) {
|
||||
var _ref2;
|
||||
|
||||
var serializedNames = serialized.name;
|
||||
var next = serialized.next;
|
||||
|
||||
while (next !== undefined) {
|
||||
serializedNames += ' ' + next.name;
|
||||
next = next.next;
|
||||
}
|
||||
|
||||
return /*#__PURE__*/React.createElement("style", (_ref2 = {}, _ref2["data-emotion"] = cache.key + " " + serializedNames, _ref2.dangerouslySetInnerHTML = {
|
||||
__html: rules
|
||||
}, _ref2.nonce = cache.sheet.nonce, _ref2));
|
||||
}
|
||||
|
||||
return null;
|
||||
};
|
||||
|
||||
var createStyled
|
||||
/*: CreateStyled */
|
||||
= function createStyled
|
||||
/*: CreateStyled */
|
||||
(tag
|
||||
/*: any */
|
||||
, options
|
||||
/* ?: StyledOptions */
|
||||
) {
|
||||
{
|
||||
if (tag === undefined) {
|
||||
throw new Error('You are trying to create a styled element with an undefined component.\nYou may have forgotten to import it.');
|
||||
}
|
||||
}
|
||||
|
||||
var isReal = tag.__emotion_real === tag;
|
||||
var baseTag = isReal && tag.__emotion_base || tag;
|
||||
var identifierName;
|
||||
var targetClassName;
|
||||
|
||||
if (options !== undefined) {
|
||||
identifierName = options.label;
|
||||
targetClassName = options.target;
|
||||
}
|
||||
|
||||
var shouldForwardProp = composeShouldForwardProps(tag, options, isReal);
|
||||
var defaultShouldForwardProp = shouldForwardProp || getDefaultShouldForwardProp(baseTag);
|
||||
var shouldUseAs = !defaultShouldForwardProp('as');
|
||||
/* return function<Props>(): PrivateStyledComponent<Props> { */
|
||||
|
||||
return function () {
|
||||
var args = arguments;
|
||||
var styles = isReal && tag.__emotion_styles !== undefined ? tag.__emotion_styles.slice(0) : [];
|
||||
|
||||
if (identifierName !== undefined) {
|
||||
styles.push("label:" + identifierName + ";");
|
||||
}
|
||||
|
||||
if (args[0] == null || args[0].raw === undefined) {
|
||||
styles.push.apply(styles, args);
|
||||
} else {
|
||||
if (args[0][0] === undefined) {
|
||||
console.error(ILLEGAL_ESCAPE_SEQUENCE_ERROR);
|
||||
}
|
||||
|
||||
styles.push(args[0][0]);
|
||||
var len = args.length;
|
||||
var i = 1;
|
||||
|
||||
for (; i < len; i++) {
|
||||
if (args[0][i] === undefined) {
|
||||
console.error(ILLEGAL_ESCAPE_SEQUENCE_ERROR);
|
||||
}
|
||||
|
||||
styles.push(args[i], args[0][i]);
|
||||
}
|
||||
}
|
||||
|
||||
var Styled
|
||||
/*: PrivateStyledComponent<Props> */
|
||||
= withEmotionCache(function (props, cache, ref) {
|
||||
var FinalTag = shouldUseAs && props.as || baseTag;
|
||||
var className = '';
|
||||
var classInterpolations = [];
|
||||
var mergedProps = props;
|
||||
|
||||
if (props.theme == null) {
|
||||
mergedProps = {};
|
||||
|
||||
for (var key in props) {
|
||||
mergedProps[key] = props[key];
|
||||
}
|
||||
|
||||
mergedProps.theme = React.useContext(ThemeContext);
|
||||
}
|
||||
|
||||
if (typeof props.className === 'string') {
|
||||
className = getRegisteredStyles(cache.registered, classInterpolations, props.className);
|
||||
} else if (props.className != null) {
|
||||
className = props.className + " ";
|
||||
}
|
||||
|
||||
var serialized = serializeStyles(styles.concat(classInterpolations), cache.registered, mergedProps);
|
||||
className += cache.key + "-" + serialized.name;
|
||||
|
||||
if (targetClassName !== undefined) {
|
||||
className += " " + targetClassName;
|
||||
}
|
||||
|
||||
var finalShouldForwardProp = shouldUseAs && shouldForwardProp === undefined ? getDefaultShouldForwardProp(FinalTag) : defaultShouldForwardProp;
|
||||
var newProps = {};
|
||||
|
||||
for (var _key in props) {
|
||||
if (shouldUseAs && _key === 'as') continue;
|
||||
|
||||
if (finalShouldForwardProp(_key)) {
|
||||
newProps[_key] = props[_key];
|
||||
}
|
||||
}
|
||||
|
||||
newProps.className = className;
|
||||
|
||||
if (ref) {
|
||||
newProps.ref = ref;
|
||||
}
|
||||
|
||||
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Insertion, {
|
||||
cache: cache,
|
||||
serialized: serialized,
|
||||
isStringTag: typeof FinalTag === 'string'
|
||||
}), /*#__PURE__*/React.createElement(FinalTag, newProps));
|
||||
});
|
||||
Styled.displayName = identifierName !== undefined ? identifierName : "Styled(" + (typeof baseTag === 'string' ? baseTag : baseTag.displayName || baseTag.name || 'Component') + ")";
|
||||
Styled.defaultProps = tag.defaultProps;
|
||||
Styled.__emotion_real = Styled;
|
||||
Styled.__emotion_base = baseTag;
|
||||
Styled.__emotion_styles = styles;
|
||||
Styled.__emotion_forwardProp = shouldForwardProp;
|
||||
Object.defineProperty(Styled, 'toString', {
|
||||
value: function value() {
|
||||
if (targetClassName === undefined && isDevelopment) {
|
||||
return 'NO_COMPONENT_SELECTOR';
|
||||
}
|
||||
|
||||
return "." + targetClassName;
|
||||
}
|
||||
});
|
||||
|
||||
Styled.withComponent = function (nextTag
|
||||
/*: StyledElementType<Props> */
|
||||
, nextOptions
|
||||
/* ?: StyledOptions */
|
||||
) {
|
||||
return createStyled(nextTag, _extends({}, options, nextOptions, {
|
||||
shouldForwardProp: composeShouldForwardProps(Styled, nextOptions, true)
|
||||
})).apply(void 0, styles);
|
||||
};
|
||||
|
||||
return Styled;
|
||||
};
|
||||
};
|
||||
|
||||
export { createStyled as default };
|
||||
1
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.edge-light.cjs.default.js
generated
vendored
Normal file
1
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.edge-light.cjs.default.js
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
exports._default = require("./emotion-styled-base.edge-light.cjs.js").default;
|
||||
287
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.edge-light.cjs.js
generated
vendored
Normal file
287
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.edge-light.cjs.js
generated
vendored
Normal file
@@ -0,0 +1,287 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var _extends = require('@babel/runtime/helpers/extends');
|
||||
var React = require('react');
|
||||
var isPropValid = require('@emotion/is-prop-valid');
|
||||
var react = require('@emotion/react');
|
||||
var utils = require('@emotion/utils');
|
||||
var serialize = require('@emotion/serialize');
|
||||
var useInsertionEffectWithFallbacks = require('@emotion/use-insertion-effect-with-fallbacks');
|
||||
|
||||
function _interopDefault (e) { return e && e.__esModule ? e : { 'default': e }; }
|
||||
|
||||
function _interopNamespace(e) {
|
||||
if (e && e.__esModule) return e;
|
||||
var n = Object.create(null);
|
||||
if (e) {
|
||||
Object.keys(e).forEach(function (k) {
|
||||
if (k !== 'default') {
|
||||
var d = Object.getOwnPropertyDescriptor(e, k);
|
||||
Object.defineProperty(n, k, d.get ? d : {
|
||||
enumerable: true,
|
||||
get: function () { return e[k]; }
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
n["default"] = e;
|
||||
return Object.freeze(n);
|
||||
}
|
||||
|
||||
var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
||||
var isPropValid__default = /*#__PURE__*/_interopDefault(isPropValid);
|
||||
|
||||
/* import type {
|
||||
ElementType,
|
||||
StatelessFunctionalComponent,
|
||||
AbstractComponent
|
||||
} from 'react' */
|
||||
/*
|
||||
export type Interpolations = Array<any>
|
||||
|
||||
export type StyledElementType<Props> =
|
||||
| string
|
||||
| AbstractComponent<{ ...Props, className: string }, mixed>
|
||||
|
||||
export type StyledOptions = {
|
||||
label?: string,
|
||||
shouldForwardProp?: string => boolean,
|
||||
target?: string
|
||||
}
|
||||
|
||||
export type StyledComponent<Props> = StatelessFunctionalComponent<Props> & {
|
||||
defaultProps: any,
|
||||
toString: () => string,
|
||||
withComponent: (
|
||||
nextTag: StyledElementType<Props>,
|
||||
nextOptions?: StyledOptions
|
||||
) => StyledComponent<Props>
|
||||
}
|
||||
|
||||
export type PrivateStyledComponent<Props> = StyledComponent<Props> & {
|
||||
__emotion_real: StyledComponent<Props>,
|
||||
__emotion_base: any,
|
||||
__emotion_styles: any,
|
||||
__emotion_forwardProp: any
|
||||
}
|
||||
*/
|
||||
|
||||
var testOmitPropsOnStringTag = isPropValid__default["default"];
|
||||
|
||||
var testOmitPropsOnComponent = function testOmitPropsOnComponent(key
|
||||
/*: string */
|
||||
) {
|
||||
return key !== 'theme';
|
||||
};
|
||||
|
||||
var getDefaultShouldForwardProp = function getDefaultShouldForwardProp(tag
|
||||
/*: ElementType */
|
||||
) {
|
||||
return typeof tag === 'string' && // 96 is one less than the char code
|
||||
// for "a" so this is checking that
|
||||
// it's a lowercase character
|
||||
tag.charCodeAt(0) > 96 ? testOmitPropsOnStringTag : testOmitPropsOnComponent;
|
||||
};
|
||||
var composeShouldForwardProps = function composeShouldForwardProps(tag
|
||||
/*: PrivateStyledComponent<any> */
|
||||
, options
|
||||
/*: StyledOptions | void */
|
||||
, isReal
|
||||
/*: boolean */
|
||||
) {
|
||||
var shouldForwardProp;
|
||||
|
||||
if (options) {
|
||||
var optionsShouldForwardProp = options.shouldForwardProp;
|
||||
shouldForwardProp = tag.__emotion_forwardProp && optionsShouldForwardProp ? function (propName
|
||||
/*: string */
|
||||
) {
|
||||
return tag.__emotion_forwardProp(propName) && optionsShouldForwardProp(propName);
|
||||
} : optionsShouldForwardProp;
|
||||
}
|
||||
|
||||
if (typeof shouldForwardProp !== 'function' && isReal) {
|
||||
shouldForwardProp = tag.__emotion_forwardProp;
|
||||
}
|
||||
|
||||
return shouldForwardProp;
|
||||
};
|
||||
/*
|
||||
export type CreateStyledComponent = <Props>(
|
||||
...args: Interpolations
|
||||
) => StyledComponent<Props>
|
||||
|
||||
export type CreateStyled = {
|
||||
<Props>(
|
||||
tag: StyledElementType<Props>,
|
||||
options?: StyledOptions
|
||||
): (...args: Interpolations) => StyledComponent<Props>,
|
||||
[key: string]: CreateStyledComponent,
|
||||
bind: () => CreateStyled
|
||||
}
|
||||
*/
|
||||
|
||||
var isDevelopment = false;
|
||||
|
||||
var Insertion = function Insertion(_ref) {
|
||||
var cache = _ref.cache,
|
||||
serialized = _ref.serialized,
|
||||
isStringTag = _ref.isStringTag;
|
||||
utils.registerStyles(cache, serialized, isStringTag);
|
||||
var rules = useInsertionEffectWithFallbacks.useInsertionEffectAlwaysWithSyncFallback(function () {
|
||||
return utils.insertStyles(cache, serialized, isStringTag);
|
||||
});
|
||||
|
||||
if (rules !== undefined) {
|
||||
var _ref2;
|
||||
|
||||
var serializedNames = serialized.name;
|
||||
var next = serialized.next;
|
||||
|
||||
while (next !== undefined) {
|
||||
serializedNames += ' ' + next.name;
|
||||
next = next.next;
|
||||
}
|
||||
|
||||
return /*#__PURE__*/React__namespace.createElement("style", (_ref2 = {}, _ref2["data-emotion"] = cache.key + " " + serializedNames, _ref2.dangerouslySetInnerHTML = {
|
||||
__html: rules
|
||||
}, _ref2.nonce = cache.sheet.nonce, _ref2));
|
||||
}
|
||||
|
||||
return null;
|
||||
};
|
||||
|
||||
var createStyled
|
||||
/*: CreateStyled */
|
||||
= function createStyled
|
||||
/*: CreateStyled */
|
||||
(tag
|
||||
/*: any */
|
||||
, options
|
||||
/* ?: StyledOptions */
|
||||
) {
|
||||
|
||||
var isReal = tag.__emotion_real === tag;
|
||||
var baseTag = isReal && tag.__emotion_base || tag;
|
||||
var identifierName;
|
||||
var targetClassName;
|
||||
|
||||
if (options !== undefined) {
|
||||
identifierName = options.label;
|
||||
targetClassName = options.target;
|
||||
}
|
||||
|
||||
var shouldForwardProp = composeShouldForwardProps(tag, options, isReal);
|
||||
var defaultShouldForwardProp = shouldForwardProp || getDefaultShouldForwardProp(baseTag);
|
||||
var shouldUseAs = !defaultShouldForwardProp('as');
|
||||
/* return function<Props>(): PrivateStyledComponent<Props> { */
|
||||
|
||||
return function () {
|
||||
var args = arguments;
|
||||
var styles = isReal && tag.__emotion_styles !== undefined ? tag.__emotion_styles.slice(0) : [];
|
||||
|
||||
if (identifierName !== undefined) {
|
||||
styles.push("label:" + identifierName + ";");
|
||||
}
|
||||
|
||||
if (args[0] == null || args[0].raw === undefined) {
|
||||
styles.push.apply(styles, args);
|
||||
} else {
|
||||
|
||||
styles.push(args[0][0]);
|
||||
var len = args.length;
|
||||
var i = 1;
|
||||
|
||||
for (; i < len; i++) {
|
||||
|
||||
styles.push(args[i], args[0][i]);
|
||||
}
|
||||
}
|
||||
|
||||
var Styled
|
||||
/*: PrivateStyledComponent<Props> */
|
||||
= react.withEmotionCache(function (props, cache, ref) {
|
||||
var FinalTag = shouldUseAs && props.as || baseTag;
|
||||
var className = '';
|
||||
var classInterpolations = [];
|
||||
var mergedProps = props;
|
||||
|
||||
if (props.theme == null) {
|
||||
mergedProps = {};
|
||||
|
||||
for (var key in props) {
|
||||
mergedProps[key] = props[key];
|
||||
}
|
||||
|
||||
mergedProps.theme = React__namespace.useContext(react.ThemeContext);
|
||||
}
|
||||
|
||||
if (typeof props.className === 'string') {
|
||||
className = utils.getRegisteredStyles(cache.registered, classInterpolations, props.className);
|
||||
} else if (props.className != null) {
|
||||
className = props.className + " ";
|
||||
}
|
||||
|
||||
var serialized = serialize.serializeStyles(styles.concat(classInterpolations), cache.registered, mergedProps);
|
||||
className += cache.key + "-" + serialized.name;
|
||||
|
||||
if (targetClassName !== undefined) {
|
||||
className += " " + targetClassName;
|
||||
}
|
||||
|
||||
var finalShouldForwardProp = shouldUseAs && shouldForwardProp === undefined ? getDefaultShouldForwardProp(FinalTag) : defaultShouldForwardProp;
|
||||
var newProps = {};
|
||||
|
||||
for (var _key in props) {
|
||||
if (shouldUseAs && _key === 'as') continue;
|
||||
|
||||
if (finalShouldForwardProp(_key)) {
|
||||
newProps[_key] = props[_key];
|
||||
}
|
||||
}
|
||||
|
||||
newProps.className = className;
|
||||
|
||||
if (ref) {
|
||||
newProps.ref = ref;
|
||||
}
|
||||
|
||||
return /*#__PURE__*/React__namespace.createElement(React__namespace.Fragment, null, /*#__PURE__*/React__namespace.createElement(Insertion, {
|
||||
cache: cache,
|
||||
serialized: serialized,
|
||||
isStringTag: typeof FinalTag === 'string'
|
||||
}), /*#__PURE__*/React__namespace.createElement(FinalTag, newProps));
|
||||
});
|
||||
Styled.displayName = identifierName !== undefined ? identifierName : "Styled(" + (typeof baseTag === 'string' ? baseTag : baseTag.displayName || baseTag.name || 'Component') + ")";
|
||||
Styled.defaultProps = tag.defaultProps;
|
||||
Styled.__emotion_real = Styled;
|
||||
Styled.__emotion_base = baseTag;
|
||||
Styled.__emotion_styles = styles;
|
||||
Styled.__emotion_forwardProp = shouldForwardProp;
|
||||
Object.defineProperty(Styled, 'toString', {
|
||||
value: function value() {
|
||||
if (targetClassName === undefined && isDevelopment) {
|
||||
return 'NO_COMPONENT_SELECTOR';
|
||||
}
|
||||
|
||||
return "." + targetClassName;
|
||||
}
|
||||
});
|
||||
|
||||
Styled.withComponent = function (nextTag
|
||||
/*: StyledElementType<Props> */
|
||||
, nextOptions
|
||||
/* ?: StyledOptions */
|
||||
) {
|
||||
return createStyled(nextTag, _extends({}, options, nextOptions, {
|
||||
shouldForwardProp: composeShouldForwardProps(Styled, nextOptions, true)
|
||||
})).apply(void 0, styles);
|
||||
};
|
||||
|
||||
return Styled;
|
||||
};
|
||||
};
|
||||
|
||||
exports["default"] = createStyled;
|
||||
2
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.edge-light.cjs.mjs
generated
vendored
Normal file
2
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.edge-light.cjs.mjs
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
import "./emotion-styled-base.edge-light.cjs.js";
|
||||
export { _default as default } from "./emotion-styled-base.edge-light.cjs.default.js";
|
||||
260
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.edge-light.esm.js
generated
vendored
Normal file
260
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.edge-light.esm.js
generated
vendored
Normal file
@@ -0,0 +1,260 @@
|
||||
import _extends from '@babel/runtime/helpers/esm/extends';
|
||||
import * as React from 'react';
|
||||
import isPropValid from '@emotion/is-prop-valid';
|
||||
import { withEmotionCache, ThemeContext } from '@emotion/react';
|
||||
import { getRegisteredStyles, registerStyles, insertStyles } from '@emotion/utils';
|
||||
import { serializeStyles } from '@emotion/serialize';
|
||||
import { useInsertionEffectAlwaysWithSyncFallback } from '@emotion/use-insertion-effect-with-fallbacks';
|
||||
|
||||
/* import type {
|
||||
ElementType,
|
||||
StatelessFunctionalComponent,
|
||||
AbstractComponent
|
||||
} from 'react' */
|
||||
/*
|
||||
export type Interpolations = Array<any>
|
||||
|
||||
export type StyledElementType<Props> =
|
||||
| string
|
||||
| AbstractComponent<{ ...Props, className: string }, mixed>
|
||||
|
||||
export type StyledOptions = {
|
||||
label?: string,
|
||||
shouldForwardProp?: string => boolean,
|
||||
target?: string
|
||||
}
|
||||
|
||||
export type StyledComponent<Props> = StatelessFunctionalComponent<Props> & {
|
||||
defaultProps: any,
|
||||
toString: () => string,
|
||||
withComponent: (
|
||||
nextTag: StyledElementType<Props>,
|
||||
nextOptions?: StyledOptions
|
||||
) => StyledComponent<Props>
|
||||
}
|
||||
|
||||
export type PrivateStyledComponent<Props> = StyledComponent<Props> & {
|
||||
__emotion_real: StyledComponent<Props>,
|
||||
__emotion_base: any,
|
||||
__emotion_styles: any,
|
||||
__emotion_forwardProp: any
|
||||
}
|
||||
*/
|
||||
|
||||
var testOmitPropsOnStringTag = isPropValid;
|
||||
|
||||
var testOmitPropsOnComponent = function testOmitPropsOnComponent(key
|
||||
/*: string */
|
||||
) {
|
||||
return key !== 'theme';
|
||||
};
|
||||
|
||||
var getDefaultShouldForwardProp = function getDefaultShouldForwardProp(tag
|
||||
/*: ElementType */
|
||||
) {
|
||||
return typeof tag === 'string' && // 96 is one less than the char code
|
||||
// for "a" so this is checking that
|
||||
// it's a lowercase character
|
||||
tag.charCodeAt(0) > 96 ? testOmitPropsOnStringTag : testOmitPropsOnComponent;
|
||||
};
|
||||
var composeShouldForwardProps = function composeShouldForwardProps(tag
|
||||
/*: PrivateStyledComponent<any> */
|
||||
, options
|
||||
/*: StyledOptions | void */
|
||||
, isReal
|
||||
/*: boolean */
|
||||
) {
|
||||
var shouldForwardProp;
|
||||
|
||||
if (options) {
|
||||
var optionsShouldForwardProp = options.shouldForwardProp;
|
||||
shouldForwardProp = tag.__emotion_forwardProp && optionsShouldForwardProp ? function (propName
|
||||
/*: string */
|
||||
) {
|
||||
return tag.__emotion_forwardProp(propName) && optionsShouldForwardProp(propName);
|
||||
} : optionsShouldForwardProp;
|
||||
}
|
||||
|
||||
if (typeof shouldForwardProp !== 'function' && isReal) {
|
||||
shouldForwardProp = tag.__emotion_forwardProp;
|
||||
}
|
||||
|
||||
return shouldForwardProp;
|
||||
};
|
||||
/*
|
||||
export type CreateStyledComponent = <Props>(
|
||||
...args: Interpolations
|
||||
) => StyledComponent<Props>
|
||||
|
||||
export type CreateStyled = {
|
||||
<Props>(
|
||||
tag: StyledElementType<Props>,
|
||||
options?: StyledOptions
|
||||
): (...args: Interpolations) => StyledComponent<Props>,
|
||||
[key: string]: CreateStyledComponent,
|
||||
bind: () => CreateStyled
|
||||
}
|
||||
*/
|
||||
|
||||
var isDevelopment = false;
|
||||
|
||||
var Insertion = function Insertion(_ref) {
|
||||
var cache = _ref.cache,
|
||||
serialized = _ref.serialized,
|
||||
isStringTag = _ref.isStringTag;
|
||||
registerStyles(cache, serialized, isStringTag);
|
||||
var rules = useInsertionEffectAlwaysWithSyncFallback(function () {
|
||||
return insertStyles(cache, serialized, isStringTag);
|
||||
});
|
||||
|
||||
if (rules !== undefined) {
|
||||
var _ref2;
|
||||
|
||||
var serializedNames = serialized.name;
|
||||
var next = serialized.next;
|
||||
|
||||
while (next !== undefined) {
|
||||
serializedNames += ' ' + next.name;
|
||||
next = next.next;
|
||||
}
|
||||
|
||||
return /*#__PURE__*/React.createElement("style", (_ref2 = {}, _ref2["data-emotion"] = cache.key + " " + serializedNames, _ref2.dangerouslySetInnerHTML = {
|
||||
__html: rules
|
||||
}, _ref2.nonce = cache.sheet.nonce, _ref2));
|
||||
}
|
||||
|
||||
return null;
|
||||
};
|
||||
|
||||
var createStyled
|
||||
/*: CreateStyled */
|
||||
= function createStyled
|
||||
/*: CreateStyled */
|
||||
(tag
|
||||
/*: any */
|
||||
, options
|
||||
/* ?: StyledOptions */
|
||||
) {
|
||||
|
||||
var isReal = tag.__emotion_real === tag;
|
||||
var baseTag = isReal && tag.__emotion_base || tag;
|
||||
var identifierName;
|
||||
var targetClassName;
|
||||
|
||||
if (options !== undefined) {
|
||||
identifierName = options.label;
|
||||
targetClassName = options.target;
|
||||
}
|
||||
|
||||
var shouldForwardProp = composeShouldForwardProps(tag, options, isReal);
|
||||
var defaultShouldForwardProp = shouldForwardProp || getDefaultShouldForwardProp(baseTag);
|
||||
var shouldUseAs = !defaultShouldForwardProp('as');
|
||||
/* return function<Props>(): PrivateStyledComponent<Props> { */
|
||||
|
||||
return function () {
|
||||
var args = arguments;
|
||||
var styles = isReal && tag.__emotion_styles !== undefined ? tag.__emotion_styles.slice(0) : [];
|
||||
|
||||
if (identifierName !== undefined) {
|
||||
styles.push("label:" + identifierName + ";");
|
||||
}
|
||||
|
||||
if (args[0] == null || args[0].raw === undefined) {
|
||||
styles.push.apply(styles, args);
|
||||
} else {
|
||||
|
||||
styles.push(args[0][0]);
|
||||
var len = args.length;
|
||||
var i = 1;
|
||||
|
||||
for (; i < len; i++) {
|
||||
|
||||
styles.push(args[i], args[0][i]);
|
||||
}
|
||||
}
|
||||
|
||||
var Styled
|
||||
/*: PrivateStyledComponent<Props> */
|
||||
= withEmotionCache(function (props, cache, ref) {
|
||||
var FinalTag = shouldUseAs && props.as || baseTag;
|
||||
var className = '';
|
||||
var classInterpolations = [];
|
||||
var mergedProps = props;
|
||||
|
||||
if (props.theme == null) {
|
||||
mergedProps = {};
|
||||
|
||||
for (var key in props) {
|
||||
mergedProps[key] = props[key];
|
||||
}
|
||||
|
||||
mergedProps.theme = React.useContext(ThemeContext);
|
||||
}
|
||||
|
||||
if (typeof props.className === 'string') {
|
||||
className = getRegisteredStyles(cache.registered, classInterpolations, props.className);
|
||||
} else if (props.className != null) {
|
||||
className = props.className + " ";
|
||||
}
|
||||
|
||||
var serialized = serializeStyles(styles.concat(classInterpolations), cache.registered, mergedProps);
|
||||
className += cache.key + "-" + serialized.name;
|
||||
|
||||
if (targetClassName !== undefined) {
|
||||
className += " " + targetClassName;
|
||||
}
|
||||
|
||||
var finalShouldForwardProp = shouldUseAs && shouldForwardProp === undefined ? getDefaultShouldForwardProp(FinalTag) : defaultShouldForwardProp;
|
||||
var newProps = {};
|
||||
|
||||
for (var _key in props) {
|
||||
if (shouldUseAs && _key === 'as') continue;
|
||||
|
||||
if (finalShouldForwardProp(_key)) {
|
||||
newProps[_key] = props[_key];
|
||||
}
|
||||
}
|
||||
|
||||
newProps.className = className;
|
||||
|
||||
if (ref) {
|
||||
newProps.ref = ref;
|
||||
}
|
||||
|
||||
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Insertion, {
|
||||
cache: cache,
|
||||
serialized: serialized,
|
||||
isStringTag: typeof FinalTag === 'string'
|
||||
}), /*#__PURE__*/React.createElement(FinalTag, newProps));
|
||||
});
|
||||
Styled.displayName = identifierName !== undefined ? identifierName : "Styled(" + (typeof baseTag === 'string' ? baseTag : baseTag.displayName || baseTag.name || 'Component') + ")";
|
||||
Styled.defaultProps = tag.defaultProps;
|
||||
Styled.__emotion_real = Styled;
|
||||
Styled.__emotion_base = baseTag;
|
||||
Styled.__emotion_styles = styles;
|
||||
Styled.__emotion_forwardProp = shouldForwardProp;
|
||||
Object.defineProperty(Styled, 'toString', {
|
||||
value: function value() {
|
||||
if (targetClassName === undefined && isDevelopment) {
|
||||
return 'NO_COMPONENT_SELECTOR';
|
||||
}
|
||||
|
||||
return "." + targetClassName;
|
||||
}
|
||||
});
|
||||
|
||||
Styled.withComponent = function (nextTag
|
||||
/*: StyledElementType<Props> */
|
||||
, nextOptions
|
||||
/* ?: StyledOptions */
|
||||
) {
|
||||
return createStyled(nextTag, _extends({}, options, nextOptions, {
|
||||
shouldForwardProp: composeShouldForwardProps(Styled, nextOptions, true)
|
||||
})).apply(void 0, styles);
|
||||
};
|
||||
|
||||
return Styled;
|
||||
};
|
||||
};
|
||||
|
||||
export { createStyled as default };
|
||||
262
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.esm.js
generated
vendored
Normal file
262
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.esm.js
generated
vendored
Normal file
@@ -0,0 +1,262 @@
|
||||
import _extends from '@babel/runtime/helpers/esm/extends';
|
||||
import * as React from 'react';
|
||||
import isPropValid from '@emotion/is-prop-valid';
|
||||
import { withEmotionCache, ThemeContext } from '@emotion/react';
|
||||
import { getRegisteredStyles, registerStyles, insertStyles } from '@emotion/utils';
|
||||
import { serializeStyles } from '@emotion/serialize';
|
||||
import { useInsertionEffectAlwaysWithSyncFallback } from '@emotion/use-insertion-effect-with-fallbacks';
|
||||
|
||||
/* import type {
|
||||
ElementType,
|
||||
StatelessFunctionalComponent,
|
||||
AbstractComponent
|
||||
} from 'react' */
|
||||
/*
|
||||
export type Interpolations = Array<any>
|
||||
|
||||
export type StyledElementType<Props> =
|
||||
| string
|
||||
| AbstractComponent<{ ...Props, className: string }, mixed>
|
||||
|
||||
export type StyledOptions = {
|
||||
label?: string,
|
||||
shouldForwardProp?: string => boolean,
|
||||
target?: string
|
||||
}
|
||||
|
||||
export type StyledComponent<Props> = StatelessFunctionalComponent<Props> & {
|
||||
defaultProps: any,
|
||||
toString: () => string,
|
||||
withComponent: (
|
||||
nextTag: StyledElementType<Props>,
|
||||
nextOptions?: StyledOptions
|
||||
) => StyledComponent<Props>
|
||||
}
|
||||
|
||||
export type PrivateStyledComponent<Props> = StyledComponent<Props> & {
|
||||
__emotion_real: StyledComponent<Props>,
|
||||
__emotion_base: any,
|
||||
__emotion_styles: any,
|
||||
__emotion_forwardProp: any
|
||||
}
|
||||
*/
|
||||
|
||||
var testOmitPropsOnStringTag = isPropValid;
|
||||
|
||||
var testOmitPropsOnComponent = function testOmitPropsOnComponent(key
|
||||
/*: string */
|
||||
) {
|
||||
return key !== 'theme';
|
||||
};
|
||||
|
||||
var getDefaultShouldForwardProp = function getDefaultShouldForwardProp(tag
|
||||
/*: ElementType */
|
||||
) {
|
||||
return typeof tag === 'string' && // 96 is one less than the char code
|
||||
// for "a" so this is checking that
|
||||
// it's a lowercase character
|
||||
tag.charCodeAt(0) > 96 ? testOmitPropsOnStringTag : testOmitPropsOnComponent;
|
||||
};
|
||||
var composeShouldForwardProps = function composeShouldForwardProps(tag
|
||||
/*: PrivateStyledComponent<any> */
|
||||
, options
|
||||
/*: StyledOptions | void */
|
||||
, isReal
|
||||
/*: boolean */
|
||||
) {
|
||||
var shouldForwardProp;
|
||||
|
||||
if (options) {
|
||||
var optionsShouldForwardProp = options.shouldForwardProp;
|
||||
shouldForwardProp = tag.__emotion_forwardProp && optionsShouldForwardProp ? function (propName
|
||||
/*: string */
|
||||
) {
|
||||
return tag.__emotion_forwardProp(propName) && optionsShouldForwardProp(propName);
|
||||
} : optionsShouldForwardProp;
|
||||
}
|
||||
|
||||
if (typeof shouldForwardProp !== 'function' && isReal) {
|
||||
shouldForwardProp = tag.__emotion_forwardProp;
|
||||
}
|
||||
|
||||
return shouldForwardProp;
|
||||
};
|
||||
/*
|
||||
export type CreateStyledComponent = <Props>(
|
||||
...args: Interpolations
|
||||
) => StyledComponent<Props>
|
||||
|
||||
export type CreateStyled = {
|
||||
<Props>(
|
||||
tag: StyledElementType<Props>,
|
||||
options?: StyledOptions
|
||||
): (...args: Interpolations) => StyledComponent<Props>,
|
||||
[key: string]: CreateStyledComponent,
|
||||
bind: () => CreateStyled
|
||||
}
|
||||
*/
|
||||
|
||||
var isDevelopment = false;
|
||||
|
||||
var isBrowser = typeof document !== 'undefined';
|
||||
|
||||
var Insertion = function Insertion(_ref) {
|
||||
var cache = _ref.cache,
|
||||
serialized = _ref.serialized,
|
||||
isStringTag = _ref.isStringTag;
|
||||
registerStyles(cache, serialized, isStringTag);
|
||||
var rules = useInsertionEffectAlwaysWithSyncFallback(function () {
|
||||
return insertStyles(cache, serialized, isStringTag);
|
||||
});
|
||||
|
||||
if (!isBrowser && rules !== undefined) {
|
||||
var _ref2;
|
||||
|
||||
var serializedNames = serialized.name;
|
||||
var next = serialized.next;
|
||||
|
||||
while (next !== undefined) {
|
||||
serializedNames += ' ' + next.name;
|
||||
next = next.next;
|
||||
}
|
||||
|
||||
return /*#__PURE__*/React.createElement("style", (_ref2 = {}, _ref2["data-emotion"] = cache.key + " " + serializedNames, _ref2.dangerouslySetInnerHTML = {
|
||||
__html: rules
|
||||
}, _ref2.nonce = cache.sheet.nonce, _ref2));
|
||||
}
|
||||
|
||||
return null;
|
||||
};
|
||||
|
||||
var createStyled
|
||||
/*: CreateStyled */
|
||||
= function createStyled
|
||||
/*: CreateStyled */
|
||||
(tag
|
||||
/*: any */
|
||||
, options
|
||||
/* ?: StyledOptions */
|
||||
) {
|
||||
|
||||
var isReal = tag.__emotion_real === tag;
|
||||
var baseTag = isReal && tag.__emotion_base || tag;
|
||||
var identifierName;
|
||||
var targetClassName;
|
||||
|
||||
if (options !== undefined) {
|
||||
identifierName = options.label;
|
||||
targetClassName = options.target;
|
||||
}
|
||||
|
||||
var shouldForwardProp = composeShouldForwardProps(tag, options, isReal);
|
||||
var defaultShouldForwardProp = shouldForwardProp || getDefaultShouldForwardProp(baseTag);
|
||||
var shouldUseAs = !defaultShouldForwardProp('as');
|
||||
/* return function<Props>(): PrivateStyledComponent<Props> { */
|
||||
|
||||
return function () {
|
||||
var args = arguments;
|
||||
var styles = isReal && tag.__emotion_styles !== undefined ? tag.__emotion_styles.slice(0) : [];
|
||||
|
||||
if (identifierName !== undefined) {
|
||||
styles.push("label:" + identifierName + ";");
|
||||
}
|
||||
|
||||
if (args[0] == null || args[0].raw === undefined) {
|
||||
styles.push.apply(styles, args);
|
||||
} else {
|
||||
|
||||
styles.push(args[0][0]);
|
||||
var len = args.length;
|
||||
var i = 1;
|
||||
|
||||
for (; i < len; i++) {
|
||||
|
||||
styles.push(args[i], args[0][i]);
|
||||
}
|
||||
}
|
||||
|
||||
var Styled
|
||||
/*: PrivateStyledComponent<Props> */
|
||||
= withEmotionCache(function (props, cache, ref) {
|
||||
var FinalTag = shouldUseAs && props.as || baseTag;
|
||||
var className = '';
|
||||
var classInterpolations = [];
|
||||
var mergedProps = props;
|
||||
|
||||
if (props.theme == null) {
|
||||
mergedProps = {};
|
||||
|
||||
for (var key in props) {
|
||||
mergedProps[key] = props[key];
|
||||
}
|
||||
|
||||
mergedProps.theme = React.useContext(ThemeContext);
|
||||
}
|
||||
|
||||
if (typeof props.className === 'string') {
|
||||
className = getRegisteredStyles(cache.registered, classInterpolations, props.className);
|
||||
} else if (props.className != null) {
|
||||
className = props.className + " ";
|
||||
}
|
||||
|
||||
var serialized = serializeStyles(styles.concat(classInterpolations), cache.registered, mergedProps);
|
||||
className += cache.key + "-" + serialized.name;
|
||||
|
||||
if (targetClassName !== undefined) {
|
||||
className += " " + targetClassName;
|
||||
}
|
||||
|
||||
var finalShouldForwardProp = shouldUseAs && shouldForwardProp === undefined ? getDefaultShouldForwardProp(FinalTag) : defaultShouldForwardProp;
|
||||
var newProps = {};
|
||||
|
||||
for (var _key in props) {
|
||||
if (shouldUseAs && _key === 'as') continue;
|
||||
|
||||
if (finalShouldForwardProp(_key)) {
|
||||
newProps[_key] = props[_key];
|
||||
}
|
||||
}
|
||||
|
||||
newProps.className = className;
|
||||
|
||||
if (ref) {
|
||||
newProps.ref = ref;
|
||||
}
|
||||
|
||||
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Insertion, {
|
||||
cache: cache,
|
||||
serialized: serialized,
|
||||
isStringTag: typeof FinalTag === 'string'
|
||||
}), /*#__PURE__*/React.createElement(FinalTag, newProps));
|
||||
});
|
||||
Styled.displayName = identifierName !== undefined ? identifierName : "Styled(" + (typeof baseTag === 'string' ? baseTag : baseTag.displayName || baseTag.name || 'Component') + ")";
|
||||
Styled.defaultProps = tag.defaultProps;
|
||||
Styled.__emotion_real = Styled;
|
||||
Styled.__emotion_base = baseTag;
|
||||
Styled.__emotion_styles = styles;
|
||||
Styled.__emotion_forwardProp = shouldForwardProp;
|
||||
Object.defineProperty(Styled, 'toString', {
|
||||
value: function value() {
|
||||
if (targetClassName === undefined && isDevelopment) {
|
||||
return 'NO_COMPONENT_SELECTOR';
|
||||
}
|
||||
|
||||
return "." + targetClassName;
|
||||
}
|
||||
});
|
||||
|
||||
Styled.withComponent = function (nextTag
|
||||
/*: StyledElementType<Props> */
|
||||
, nextOptions
|
||||
/* ?: StyledOptions */
|
||||
) {
|
||||
return createStyled(nextTag, _extends({}, options, nextOptions, {
|
||||
shouldForwardProp: composeShouldForwardProps(Styled, nextOptions, true)
|
||||
})).apply(void 0, styles);
|
||||
};
|
||||
|
||||
return Styled;
|
||||
};
|
||||
};
|
||||
|
||||
export { createStyled as default };
|
||||
2
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.umd.min.js
generated
vendored
Normal file
2
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.umd.min.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.umd.min.js.map
generated
vendored
Normal file
1
backend/frontend/node_modules/@emotion/styled/base/dist/emotion-styled-base.umd.min.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
2
backend/frontend/node_modules/@emotion/styled/dist/declarations/src/base.d.ts
generated
vendored
Normal file
2
backend/frontend/node_modules/@emotion/styled/dist/declarations/src/base.d.ts
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
export * from "../types/base.js"
|
||||
export { default } from "../types/base.js"
|
||||
2
backend/frontend/node_modules/@emotion/styled/dist/declarations/src/index.d.ts
generated
vendored
Normal file
2
backend/frontend/node_modules/@emotion/styled/dist/declarations/src/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
export * from "../types/index.js"
|
||||
export { default } from "../types/index.js"
|
||||
197
backend/frontend/node_modules/@emotion/styled/dist/declarations/types/base.d.ts
generated
vendored
Normal file
197
backend/frontend/node_modules/@emotion/styled/dist/declarations/types/base.d.ts
generated
vendored
Normal file
@@ -0,0 +1,197 @@
|
||||
// Definitions by: Junyoung Clare Jang <https://github.com/Ailrun>
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
import * as React from 'react'
|
||||
import { ComponentSelector, Interpolation } from '@emotion/serialize'
|
||||
import { PropsOf, Theme } from '@emotion/react'
|
||||
import { ReactJSXIntrinsicElements } from "./jsx-namespace.js"
|
||||
|
||||
export {
|
||||
ArrayInterpolation,
|
||||
CSSObject,
|
||||
FunctionInterpolation
|
||||
} from '@emotion/serialize'
|
||||
|
||||
export { ComponentSelector, Interpolation }
|
||||
|
||||
/** Same as StyledOptions but shouldForwardProp must be a type guard */
|
||||
export interface FilteringStyledOptions<
|
||||
Props = Record<string, any>,
|
||||
ForwardedProps extends keyof Props & string = keyof Props & string
|
||||
> {
|
||||
label?: string
|
||||
shouldForwardProp?: (propName: string) => propName is ForwardedProps
|
||||
target?: string
|
||||
}
|
||||
|
||||
export interface StyledOptions<Props = Record<string, any>> {
|
||||
label?: string
|
||||
shouldForwardProp?: (propName: string) => boolean
|
||||
target?: string
|
||||
}
|
||||
|
||||
/**
|
||||
* @typeparam ComponentProps Props which will be included when withComponent is called
|
||||
* @typeparam SpecificComponentProps Props which will *not* be included when withComponent is called
|
||||
*/
|
||||
export interface StyledComponent<
|
||||
ComponentProps extends {},
|
||||
SpecificComponentProps extends {} = {},
|
||||
JSXProps extends {} = {}
|
||||
> extends React.FC<ComponentProps & SpecificComponentProps & JSXProps>,
|
||||
ComponentSelector {
|
||||
withComponent<C extends React.ComponentClass<React.ComponentProps<C>>>(
|
||||
component: C
|
||||
): StyledComponent<
|
||||
ComponentProps & PropsOf<C>,
|
||||
{},
|
||||
{ ref?: React.Ref<InstanceType<C>> }
|
||||
>
|
||||
withComponent<C extends React.ComponentType<React.ComponentProps<C>>>(
|
||||
component: C
|
||||
): StyledComponent<ComponentProps & PropsOf<C>>
|
||||
withComponent<Tag extends keyof ReactJSXIntrinsicElements>(
|
||||
tag: Tag
|
||||
): StyledComponent<ComponentProps, ReactJSXIntrinsicElements[Tag]>
|
||||
}
|
||||
|
||||
/**
|
||||
* @typeparam ComponentProps Props which will be included when withComponent is called
|
||||
* @typeparam SpecificComponentProps Props which will *not* be included when withComponent is called
|
||||
*/
|
||||
export interface CreateStyledComponent<
|
||||
ComponentProps extends {},
|
||||
SpecificComponentProps extends {} = {},
|
||||
JSXProps extends {} = {}
|
||||
> {
|
||||
(
|
||||
template: TemplateStringsArray,
|
||||
...styles: Array<
|
||||
Interpolation<ComponentProps & SpecificComponentProps & { theme: Theme }>
|
||||
>
|
||||
): StyledComponent<ComponentProps, SpecificComponentProps, JSXProps>
|
||||
|
||||
/**
|
||||
* @typeparam AdditionalProps Additional props to add to your styled component
|
||||
*/
|
||||
<AdditionalProps extends {}>(
|
||||
template: TemplateStringsArray,
|
||||
...styles: Array<
|
||||
Interpolation<
|
||||
ComponentProps &
|
||||
SpecificComponentProps &
|
||||
AdditionalProps & { theme: Theme }
|
||||
>
|
||||
>
|
||||
): StyledComponent<
|
||||
ComponentProps & AdditionalProps,
|
||||
SpecificComponentProps,
|
||||
JSXProps
|
||||
>
|
||||
|
||||
/**
|
||||
* @typeparam AdditionalProps Additional props to add to your styled component
|
||||
*/
|
||||
<AdditionalProps extends {} = {}>(
|
||||
...styles: Array<
|
||||
Interpolation<
|
||||
ComponentProps &
|
||||
SpecificComponentProps &
|
||||
AdditionalProps & { theme: Theme }
|
||||
>
|
||||
>
|
||||
): StyledComponent<
|
||||
ComponentProps & AdditionalProps,
|
||||
SpecificComponentProps,
|
||||
JSXProps
|
||||
>
|
||||
}
|
||||
|
||||
/**
|
||||
* @desc
|
||||
* This function accepts a React component or tag ('div', 'a' etc).
|
||||
*
|
||||
* @example styled(MyComponent)({ width: 100 })
|
||||
* @example styled(MyComponent)(myComponentProps => ({ width: myComponentProps.width })
|
||||
* @example styled('div')({ width: 100 })
|
||||
* @example styled('div')<Props>(props => ({ width: props.width })
|
||||
*/
|
||||
export interface CreateStyled {
|
||||
<
|
||||
C extends React.ComponentClass<React.ComponentProps<C>>,
|
||||
ForwardedProps extends keyof React.ComponentProps<C> &
|
||||
string = keyof React.ComponentProps<C> & string
|
||||
>(
|
||||
component: C,
|
||||
options: FilteringStyledOptions<React.ComponentProps<C>, ForwardedProps>
|
||||
): CreateStyledComponent<
|
||||
Pick<PropsOf<C>, ForwardedProps> & {
|
||||
theme?: Theme
|
||||
},
|
||||
{},
|
||||
{
|
||||
ref?: React.Ref<InstanceType<C>>
|
||||
}
|
||||
>
|
||||
|
||||
<C extends React.ComponentClass<React.ComponentProps<C>>>(
|
||||
component: C,
|
||||
options?: StyledOptions<React.ComponentProps<C>>
|
||||
): CreateStyledComponent<
|
||||
PropsOf<C> & {
|
||||
theme?: Theme
|
||||
},
|
||||
{},
|
||||
{
|
||||
ref?: React.Ref<InstanceType<C>>
|
||||
}
|
||||
>
|
||||
|
||||
<
|
||||
C extends React.ComponentType<React.ComponentProps<C>>,
|
||||
ForwardedProps extends keyof React.ComponentProps<C> &
|
||||
string = keyof React.ComponentProps<C> & string
|
||||
>(
|
||||
component: C,
|
||||
options: FilteringStyledOptions<React.ComponentProps<C>, ForwardedProps>
|
||||
): CreateStyledComponent<
|
||||
Pick<PropsOf<C>, ForwardedProps> & {
|
||||
theme?: Theme
|
||||
}
|
||||
>
|
||||
|
||||
<C extends React.ComponentType<React.ComponentProps<C>>>(
|
||||
component: C,
|
||||
options?: StyledOptions<React.ComponentProps<C>>
|
||||
): CreateStyledComponent<
|
||||
PropsOf<C> & {
|
||||
theme?: Theme
|
||||
}
|
||||
>
|
||||
|
||||
<
|
||||
Tag extends keyof ReactJSXIntrinsicElements,
|
||||
ForwardedProps extends keyof ReactJSXIntrinsicElements[Tag] &
|
||||
string = keyof ReactJSXIntrinsicElements[Tag] & string
|
||||
>(
|
||||
tag: Tag,
|
||||
options: FilteringStyledOptions<
|
||||
ReactJSXIntrinsicElements[Tag],
|
||||
ForwardedProps
|
||||
>
|
||||
): CreateStyledComponent<
|
||||
{ theme?: Theme; as?: React.ElementType },
|
||||
Pick<ReactJSXIntrinsicElements[Tag], ForwardedProps>
|
||||
>
|
||||
|
||||
<Tag extends keyof ReactJSXIntrinsicElements>(
|
||||
tag: Tag,
|
||||
options?: StyledOptions<ReactJSXIntrinsicElements[Tag]>
|
||||
): CreateStyledComponent<
|
||||
{ theme?: Theme; as?: React.ElementType },
|
||||
ReactJSXIntrinsicElements[Tag]
|
||||
>
|
||||
}
|
||||
|
||||
declare const styled: CreateStyled
|
||||
export default styled
|
||||
33
backend/frontend/node_modules/@emotion/styled/dist/declarations/types/index.d.ts
generated
vendored
Normal file
33
backend/frontend/node_modules/@emotion/styled/dist/declarations/types/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
// Definitions by: Junyoung Clare Jang <https://github.com/Ailrun>
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
import { Theme } from '@emotion/react'
|
||||
import { CreateStyled as BaseCreateStyled, CreateStyledComponent } from "./base.js"
|
||||
import { ReactJSXIntrinsicElements } from "./jsx-namespace.js"
|
||||
|
||||
export {
|
||||
ArrayInterpolation,
|
||||
ComponentSelector,
|
||||
CSSObject,
|
||||
FunctionInterpolation,
|
||||
Interpolation,
|
||||
StyledComponent,
|
||||
StyledOptions,
|
||||
FilteringStyledOptions,
|
||||
CreateStyledComponent
|
||||
} from "./base.js"
|
||||
|
||||
export type StyledTags = {
|
||||
[Tag in keyof ReactJSXIntrinsicElements]: CreateStyledComponent<
|
||||
{
|
||||
theme?: Theme
|
||||
as?: React.ElementType
|
||||
},
|
||||
ReactJSXIntrinsicElements[Tag]
|
||||
>
|
||||
}
|
||||
|
||||
export interface CreateStyled extends BaseCreateStyled, StyledTags {}
|
||||
|
||||
declare const styled: CreateStyled
|
||||
export default styled
|
||||
14
backend/frontend/node_modules/@emotion/styled/dist/declarations/types/jsx-namespace.d.ts
generated
vendored
Normal file
14
backend/frontend/node_modules/@emotion/styled/dist/declarations/types/jsx-namespace.d.ts
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
// this is basically a slimmed down copy of https://github.com/emotion-js/emotion/blob/main/packages/react/types/jsx-namespace.d.ts
|
||||
// it helps to avoid issues when combining newer `@emotion/styled` and older `@emotion/react` versions
|
||||
// in such setup, ReactJSX namespace won't exist in `@emotion/react` and that would lead to errors
|
||||
import 'react'
|
||||
|
||||
type IsPreReact19 = 2 extends Parameters<React.FunctionComponent<any>>['length']
|
||||
? true
|
||||
: false
|
||||
|
||||
export type ReactJSXIntrinsicElements = true extends IsPreReact19
|
||||
? /** @ts-ignore */
|
||||
JSX.IntrinsicElements
|
||||
: /** @ts-ignore */
|
||||
React.JSX.IntrinsicElements
|
||||
1
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.browser.cjs.default.js
generated
vendored
Normal file
1
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.browser.cjs.default.js
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
exports._default = require("./emotion-styled.browser.cjs.js").default;
|
||||
22
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.browser.cjs.js
generated
vendored
Normal file
22
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.browser.cjs.js
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var base_dist_emotionStyledBase = require('../base/dist/emotion-styled-base.browser.cjs.js');
|
||||
require('@babel/runtime/helpers/extends');
|
||||
require('react');
|
||||
require('@emotion/is-prop-valid');
|
||||
require('@emotion/react');
|
||||
require('@emotion/utils');
|
||||
require('@emotion/serialize');
|
||||
require('@emotion/use-insertion-effect-with-fallbacks');
|
||||
|
||||
var tags = ['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', 'marquee', 'menu', 'menuitem', 'meta', 'meter', 'nav', 'noscript', 'object', 'ol', 'optgroup', 'option', 'output', 'p', 'param', 'picture', 'pre', 'progress', 'q', 'rp', 'rt', 'ruby', 's', 'samp', 'script', 'section', 'select', 'small', 'source', 'span', 'strong', 'style', 'sub', 'summary', 'sup', 'table', 'tbody', 'td', 'textarea', 'tfoot', 'th', 'thead', 'time', 'title', 'tr', 'track', 'u', 'ul', 'var', 'video', 'wbr', // SVG
|
||||
'circle', 'clipPath', 'defs', 'ellipse', 'foreignObject', 'g', 'image', 'line', 'linearGradient', 'mask', 'path', 'pattern', 'polygon', 'polyline', 'radialGradient', 'rect', 'stop', 'svg', 'text', 'tspan'];
|
||||
|
||||
var newStyled = base_dist_emotionStyledBase["default"].bind();
|
||||
tags.forEach(function (tagName) {
|
||||
newStyled[tagName] = newStyled(tagName);
|
||||
});
|
||||
|
||||
exports["default"] = newStyled;
|
||||
2
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.browser.cjs.mjs
generated
vendored
Normal file
2
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.browser.cjs.mjs
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
import "./emotion-styled.browser.cjs.js";
|
||||
export { _default as default } from "./emotion-styled.browser.cjs.default.js";
|
||||
1
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.browser.development.cjs.default.js
generated
vendored
Normal file
1
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.browser.development.cjs.default.js
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
exports._default = require("./emotion-styled.browser.development.cjs.js").default;
|
||||
22
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.browser.development.cjs.js
generated
vendored
Normal file
22
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.browser.development.cjs.js
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var base_dist_emotionStyledBase = require('../base/dist/emotion-styled-base.browser.development.cjs.js');
|
||||
require('@babel/runtime/helpers/extends');
|
||||
require('react');
|
||||
require('@emotion/is-prop-valid');
|
||||
require('@emotion/react');
|
||||
require('@emotion/utils');
|
||||
require('@emotion/serialize');
|
||||
require('@emotion/use-insertion-effect-with-fallbacks');
|
||||
|
||||
var tags = ['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', 'marquee', 'menu', 'menuitem', 'meta', 'meter', 'nav', 'noscript', 'object', 'ol', 'optgroup', 'option', 'output', 'p', 'param', 'picture', 'pre', 'progress', 'q', 'rp', 'rt', 'ruby', 's', 'samp', 'script', 'section', 'select', 'small', 'source', 'span', 'strong', 'style', 'sub', 'summary', 'sup', 'table', 'tbody', 'td', 'textarea', 'tfoot', 'th', 'thead', 'time', 'title', 'tr', 'track', 'u', 'ul', 'var', 'video', 'wbr', // SVG
|
||||
'circle', 'clipPath', 'defs', 'ellipse', 'foreignObject', 'g', 'image', 'line', 'linearGradient', 'mask', 'path', 'pattern', 'polygon', 'polyline', 'radialGradient', 'rect', 'stop', 'svg', 'text', 'tspan'];
|
||||
|
||||
var newStyled = base_dist_emotionStyledBase["default"].bind();
|
||||
tags.forEach(function (tagName) {
|
||||
newStyled[tagName] = newStyled(tagName);
|
||||
});
|
||||
|
||||
exports["default"] = newStyled;
|
||||
2
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.browser.development.cjs.mjs
generated
vendored
Normal file
2
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.browser.development.cjs.mjs
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
import "./emotion-styled.browser.development.cjs.js";
|
||||
export { _default as default } from "./emotion-styled.browser.development.cjs.default.js";
|
||||
18
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.browser.development.esm.js
generated
vendored
Normal file
18
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.browser.development.esm.js
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
import createStyled from '../base/dist/emotion-styled-base.browser.development.esm.js';
|
||||
import '@babel/runtime/helpers/extends';
|
||||
import 'react';
|
||||
import '@emotion/is-prop-valid';
|
||||
import '@emotion/react';
|
||||
import '@emotion/utils';
|
||||
import '@emotion/serialize';
|
||||
import '@emotion/use-insertion-effect-with-fallbacks';
|
||||
|
||||
var tags = ['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', 'marquee', 'menu', 'menuitem', 'meta', 'meter', 'nav', 'noscript', 'object', 'ol', 'optgroup', 'option', 'output', 'p', 'param', 'picture', 'pre', 'progress', 'q', 'rp', 'rt', 'ruby', 's', 'samp', 'script', 'section', 'select', 'small', 'source', 'span', 'strong', 'style', 'sub', 'summary', 'sup', 'table', 'tbody', 'td', 'textarea', 'tfoot', 'th', 'thead', 'time', 'title', 'tr', 'track', 'u', 'ul', 'var', 'video', 'wbr', // SVG
|
||||
'circle', 'clipPath', 'defs', 'ellipse', 'foreignObject', 'g', 'image', 'line', 'linearGradient', 'mask', 'path', 'pattern', 'polygon', 'polyline', 'radialGradient', 'rect', 'stop', 'svg', 'text', 'tspan'];
|
||||
|
||||
var newStyled = createStyled.bind();
|
||||
tags.forEach(function (tagName) {
|
||||
newStyled[tagName] = newStyled(tagName);
|
||||
});
|
||||
|
||||
export { newStyled as default };
|
||||
18
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.browser.esm.js
generated
vendored
Normal file
18
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.browser.esm.js
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
import createStyled from '../base/dist/emotion-styled-base.browser.esm.js';
|
||||
import '@babel/runtime/helpers/extends';
|
||||
import 'react';
|
||||
import '@emotion/is-prop-valid';
|
||||
import '@emotion/react';
|
||||
import '@emotion/utils';
|
||||
import '@emotion/serialize';
|
||||
import '@emotion/use-insertion-effect-with-fallbacks';
|
||||
|
||||
var tags = ['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', 'marquee', 'menu', 'menuitem', 'meta', 'meter', 'nav', 'noscript', 'object', 'ol', 'optgroup', 'option', 'output', 'p', 'param', 'picture', 'pre', 'progress', 'q', 'rp', 'rt', 'ruby', 's', 'samp', 'script', 'section', 'select', 'small', 'source', 'span', 'strong', 'style', 'sub', 'summary', 'sup', 'table', 'tbody', 'td', 'textarea', 'tfoot', 'th', 'thead', 'time', 'title', 'tr', 'track', 'u', 'ul', 'var', 'video', 'wbr', // SVG
|
||||
'circle', 'clipPath', 'defs', 'ellipse', 'foreignObject', 'g', 'image', 'line', 'linearGradient', 'mask', 'path', 'pattern', 'polygon', 'polyline', 'radialGradient', 'rect', 'stop', 'svg', 'text', 'tspan'];
|
||||
|
||||
var newStyled = createStyled.bind();
|
||||
tags.forEach(function (tagName) {
|
||||
newStyled[tagName] = newStyled(tagName);
|
||||
});
|
||||
|
||||
export { newStyled as default };
|
||||
3
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.cjs.d.mts
generated
vendored
Normal file
3
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.cjs.d.mts
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
export * from "./declarations/src/index.js";
|
||||
export { _default as default } from "./emotion-styled.cjs.default.js";
|
||||
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW1vdGlvbi1zdHlsZWQuY2pzLmQubXRzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi9kZWNsYXJhdGlvbnMvc3JjL2luZGV4LmQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEifQ==
|
||||
3
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.cjs.d.ts
generated
vendored
Normal file
3
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.cjs.d.ts
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
export * from "./declarations/src/index";
|
||||
export { default } from "./declarations/src/index";
|
||||
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW1vdGlvbi1zdHlsZWQuY2pzLmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuL2RlY2xhcmF0aW9ucy9zcmMvaW5kZXguZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSJ9
|
||||
1
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.cjs.default.d.ts
generated
vendored
Normal file
1
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.cjs.default.d.ts
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export { default as _default } from "./declarations/src/index.js"
|
||||
1
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.cjs.default.js
generated
vendored
Normal file
1
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.cjs.default.js
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
exports._default = require("./emotion-styled.cjs.js").default;
|
||||
22
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.cjs.js
generated
vendored
Normal file
22
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.cjs.js
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var base_dist_emotionStyledBase = require('../base/dist/emotion-styled-base.cjs.js');
|
||||
require('@babel/runtime/helpers/extends');
|
||||
require('react');
|
||||
require('@emotion/is-prop-valid');
|
||||
require('@emotion/react');
|
||||
require('@emotion/utils');
|
||||
require('@emotion/serialize');
|
||||
require('@emotion/use-insertion-effect-with-fallbacks');
|
||||
|
||||
var tags = ['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', 'marquee', 'menu', 'menuitem', 'meta', 'meter', 'nav', 'noscript', 'object', 'ol', 'optgroup', 'option', 'output', 'p', 'param', 'picture', 'pre', 'progress', 'q', 'rp', 'rt', 'ruby', 's', 'samp', 'script', 'section', 'select', 'small', 'source', 'span', 'strong', 'style', 'sub', 'summary', 'sup', 'table', 'tbody', 'td', 'textarea', 'tfoot', 'th', 'thead', 'time', 'title', 'tr', 'track', 'u', 'ul', 'var', 'video', 'wbr', // SVG
|
||||
'circle', 'clipPath', 'defs', 'ellipse', 'foreignObject', 'g', 'image', 'line', 'linearGradient', 'mask', 'path', 'pattern', 'polygon', 'polyline', 'radialGradient', 'rect', 'stop', 'svg', 'text', 'tspan'];
|
||||
|
||||
var newStyled = base_dist_emotionStyledBase["default"].bind();
|
||||
tags.forEach(function (tagName) {
|
||||
newStyled[tagName] = newStyled(tagName);
|
||||
});
|
||||
|
||||
exports["default"] = newStyled;
|
||||
2
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.cjs.mjs
generated
vendored
Normal file
2
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.cjs.mjs
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
import "./emotion-styled.cjs.js";
|
||||
export { _default as default } from "./emotion-styled.cjs.default.js";
|
||||
1
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.development.cjs.default.js
generated
vendored
Normal file
1
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.development.cjs.default.js
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
exports._default = require("./emotion-styled.development.cjs.js").default;
|
||||
22
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.development.cjs.js
generated
vendored
Normal file
22
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.development.cjs.js
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var base_dist_emotionStyledBase = require('../base/dist/emotion-styled-base.development.cjs.js');
|
||||
require('@babel/runtime/helpers/extends');
|
||||
require('react');
|
||||
require('@emotion/is-prop-valid');
|
||||
require('@emotion/react');
|
||||
require('@emotion/utils');
|
||||
require('@emotion/serialize');
|
||||
require('@emotion/use-insertion-effect-with-fallbacks');
|
||||
|
||||
var tags = ['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', 'marquee', 'menu', 'menuitem', 'meta', 'meter', 'nav', 'noscript', 'object', 'ol', 'optgroup', 'option', 'output', 'p', 'param', 'picture', 'pre', 'progress', 'q', 'rp', 'rt', 'ruby', 's', 'samp', 'script', 'section', 'select', 'small', 'source', 'span', 'strong', 'style', 'sub', 'summary', 'sup', 'table', 'tbody', 'td', 'textarea', 'tfoot', 'th', 'thead', 'time', 'title', 'tr', 'track', 'u', 'ul', 'var', 'video', 'wbr', // SVG
|
||||
'circle', 'clipPath', 'defs', 'ellipse', 'foreignObject', 'g', 'image', 'line', 'linearGradient', 'mask', 'path', 'pattern', 'polygon', 'polyline', 'radialGradient', 'rect', 'stop', 'svg', 'text', 'tspan'];
|
||||
|
||||
var newStyled = base_dist_emotionStyledBase["default"].bind();
|
||||
tags.forEach(function (tagName) {
|
||||
newStyled[tagName] = newStyled(tagName);
|
||||
});
|
||||
|
||||
exports["default"] = newStyled;
|
||||
2
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.development.cjs.mjs
generated
vendored
Normal file
2
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.development.cjs.mjs
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
import "./emotion-styled.development.cjs.js";
|
||||
export { _default as default } from "./emotion-styled.development.cjs.default.js";
|
||||
1
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.development.edge-light.cjs.default.js
generated
vendored
Normal file
1
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.development.edge-light.cjs.default.js
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
exports._default = require("./emotion-styled.development.edge-light.cjs.js").default;
|
||||
22
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.development.edge-light.cjs.js
generated
vendored
Normal file
22
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.development.edge-light.cjs.js
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var base_dist_emotionStyledBase = require('../base/dist/emotion-styled-base.development.edge-light.cjs.js');
|
||||
require('@babel/runtime/helpers/extends');
|
||||
require('react');
|
||||
require('@emotion/is-prop-valid');
|
||||
require('@emotion/react');
|
||||
require('@emotion/utils');
|
||||
require('@emotion/serialize');
|
||||
require('@emotion/use-insertion-effect-with-fallbacks');
|
||||
|
||||
var tags = ['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', 'marquee', 'menu', 'menuitem', 'meta', 'meter', 'nav', 'noscript', 'object', 'ol', 'optgroup', 'option', 'output', 'p', 'param', 'picture', 'pre', 'progress', 'q', 'rp', 'rt', 'ruby', 's', 'samp', 'script', 'section', 'select', 'small', 'source', 'span', 'strong', 'style', 'sub', 'summary', 'sup', 'table', 'tbody', 'td', 'textarea', 'tfoot', 'th', 'thead', 'time', 'title', 'tr', 'track', 'u', 'ul', 'var', 'video', 'wbr', // SVG
|
||||
'circle', 'clipPath', 'defs', 'ellipse', 'foreignObject', 'g', 'image', 'line', 'linearGradient', 'mask', 'path', 'pattern', 'polygon', 'polyline', 'radialGradient', 'rect', 'stop', 'svg', 'text', 'tspan'];
|
||||
|
||||
var newStyled = base_dist_emotionStyledBase["default"].bind();
|
||||
tags.forEach(function (tagName) {
|
||||
newStyled[tagName] = newStyled(tagName);
|
||||
});
|
||||
|
||||
exports["default"] = newStyled;
|
||||
2
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.development.edge-light.cjs.mjs
generated
vendored
Normal file
2
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.development.edge-light.cjs.mjs
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
import "./emotion-styled.development.edge-light.cjs.js";
|
||||
export { _default as default } from "./emotion-styled.development.edge-light.cjs.default.js";
|
||||
18
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.development.edge-light.esm.js
generated
vendored
Normal file
18
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.development.edge-light.esm.js
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
import createStyled from '../base/dist/emotion-styled-base.development.edge-light.esm.js';
|
||||
import '@babel/runtime/helpers/extends';
|
||||
import 'react';
|
||||
import '@emotion/is-prop-valid';
|
||||
import '@emotion/react';
|
||||
import '@emotion/utils';
|
||||
import '@emotion/serialize';
|
||||
import '@emotion/use-insertion-effect-with-fallbacks';
|
||||
|
||||
var tags = ['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', 'marquee', 'menu', 'menuitem', 'meta', 'meter', 'nav', 'noscript', 'object', 'ol', 'optgroup', 'option', 'output', 'p', 'param', 'picture', 'pre', 'progress', 'q', 'rp', 'rt', 'ruby', 's', 'samp', 'script', 'section', 'select', 'small', 'source', 'span', 'strong', 'style', 'sub', 'summary', 'sup', 'table', 'tbody', 'td', 'textarea', 'tfoot', 'th', 'thead', 'time', 'title', 'tr', 'track', 'u', 'ul', 'var', 'video', 'wbr', // SVG
|
||||
'circle', 'clipPath', 'defs', 'ellipse', 'foreignObject', 'g', 'image', 'line', 'linearGradient', 'mask', 'path', 'pattern', 'polygon', 'polyline', 'radialGradient', 'rect', 'stop', 'svg', 'text', 'tspan'];
|
||||
|
||||
var newStyled = createStyled.bind();
|
||||
tags.forEach(function (tagName) {
|
||||
newStyled[tagName] = newStyled(tagName);
|
||||
});
|
||||
|
||||
export { newStyled as default };
|
||||
18
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.development.esm.js
generated
vendored
Normal file
18
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.development.esm.js
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
import createStyled from '../base/dist/emotion-styled-base.development.esm.js';
|
||||
import '@babel/runtime/helpers/extends';
|
||||
import 'react';
|
||||
import '@emotion/is-prop-valid';
|
||||
import '@emotion/react';
|
||||
import '@emotion/utils';
|
||||
import '@emotion/serialize';
|
||||
import '@emotion/use-insertion-effect-with-fallbacks';
|
||||
|
||||
var tags = ['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', 'marquee', 'menu', 'menuitem', 'meta', 'meter', 'nav', 'noscript', 'object', 'ol', 'optgroup', 'option', 'output', 'p', 'param', 'picture', 'pre', 'progress', 'q', 'rp', 'rt', 'ruby', 's', 'samp', 'script', 'section', 'select', 'small', 'source', 'span', 'strong', 'style', 'sub', 'summary', 'sup', 'table', 'tbody', 'td', 'textarea', 'tfoot', 'th', 'thead', 'time', 'title', 'tr', 'track', 'u', 'ul', 'var', 'video', 'wbr', // SVG
|
||||
'circle', 'clipPath', 'defs', 'ellipse', 'foreignObject', 'g', 'image', 'line', 'linearGradient', 'mask', 'path', 'pattern', 'polygon', 'polyline', 'radialGradient', 'rect', 'stop', 'svg', 'text', 'tspan'];
|
||||
|
||||
var newStyled = createStyled.bind();
|
||||
tags.forEach(function (tagName) {
|
||||
newStyled[tagName] = newStyled(tagName);
|
||||
});
|
||||
|
||||
export { newStyled as default };
|
||||
1
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.edge-light.cjs.default.js
generated
vendored
Normal file
1
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.edge-light.cjs.default.js
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
exports._default = require("./emotion-styled.edge-light.cjs.js").default;
|
||||
22
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.edge-light.cjs.js
generated
vendored
Normal file
22
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.edge-light.cjs.js
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var base_dist_emotionStyledBase = require('../base/dist/emotion-styled-base.edge-light.cjs.js');
|
||||
require('@babel/runtime/helpers/extends');
|
||||
require('react');
|
||||
require('@emotion/is-prop-valid');
|
||||
require('@emotion/react');
|
||||
require('@emotion/utils');
|
||||
require('@emotion/serialize');
|
||||
require('@emotion/use-insertion-effect-with-fallbacks');
|
||||
|
||||
var tags = ['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', 'marquee', 'menu', 'menuitem', 'meta', 'meter', 'nav', 'noscript', 'object', 'ol', 'optgroup', 'option', 'output', 'p', 'param', 'picture', 'pre', 'progress', 'q', 'rp', 'rt', 'ruby', 's', 'samp', 'script', 'section', 'select', 'small', 'source', 'span', 'strong', 'style', 'sub', 'summary', 'sup', 'table', 'tbody', 'td', 'textarea', 'tfoot', 'th', 'thead', 'time', 'title', 'tr', 'track', 'u', 'ul', 'var', 'video', 'wbr', // SVG
|
||||
'circle', 'clipPath', 'defs', 'ellipse', 'foreignObject', 'g', 'image', 'line', 'linearGradient', 'mask', 'path', 'pattern', 'polygon', 'polyline', 'radialGradient', 'rect', 'stop', 'svg', 'text', 'tspan'];
|
||||
|
||||
var newStyled = base_dist_emotionStyledBase["default"].bind();
|
||||
tags.forEach(function (tagName) {
|
||||
newStyled[tagName] = newStyled(tagName);
|
||||
});
|
||||
|
||||
exports["default"] = newStyled;
|
||||
2
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.edge-light.cjs.mjs
generated
vendored
Normal file
2
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.edge-light.cjs.mjs
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
import "./emotion-styled.edge-light.cjs.js";
|
||||
export { _default as default } from "./emotion-styled.edge-light.cjs.default.js";
|
||||
18
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.edge-light.esm.js
generated
vendored
Normal file
18
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.edge-light.esm.js
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
import createStyled from '../base/dist/emotion-styled-base.edge-light.esm.js';
|
||||
import '@babel/runtime/helpers/extends';
|
||||
import 'react';
|
||||
import '@emotion/is-prop-valid';
|
||||
import '@emotion/react';
|
||||
import '@emotion/utils';
|
||||
import '@emotion/serialize';
|
||||
import '@emotion/use-insertion-effect-with-fallbacks';
|
||||
|
||||
var tags = ['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', 'marquee', 'menu', 'menuitem', 'meta', 'meter', 'nav', 'noscript', 'object', 'ol', 'optgroup', 'option', 'output', 'p', 'param', 'picture', 'pre', 'progress', 'q', 'rp', 'rt', 'ruby', 's', 'samp', 'script', 'section', 'select', 'small', 'source', 'span', 'strong', 'style', 'sub', 'summary', 'sup', 'table', 'tbody', 'td', 'textarea', 'tfoot', 'th', 'thead', 'time', 'title', 'tr', 'track', 'u', 'ul', 'var', 'video', 'wbr', // SVG
|
||||
'circle', 'clipPath', 'defs', 'ellipse', 'foreignObject', 'g', 'image', 'line', 'linearGradient', 'mask', 'path', 'pattern', 'polygon', 'polyline', 'radialGradient', 'rect', 'stop', 'svg', 'text', 'tspan'];
|
||||
|
||||
var newStyled = createStyled.bind();
|
||||
tags.forEach(function (tagName) {
|
||||
newStyled[tagName] = newStyled(tagName);
|
||||
});
|
||||
|
||||
export { newStyled as default };
|
||||
18
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.esm.js
generated
vendored
Normal file
18
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.esm.js
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
import createStyled from '../base/dist/emotion-styled-base.esm.js';
|
||||
import '@babel/runtime/helpers/extends';
|
||||
import 'react';
|
||||
import '@emotion/is-prop-valid';
|
||||
import '@emotion/react';
|
||||
import '@emotion/utils';
|
||||
import '@emotion/serialize';
|
||||
import '@emotion/use-insertion-effect-with-fallbacks';
|
||||
|
||||
var tags = ['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', 'marquee', 'menu', 'menuitem', 'meta', 'meter', 'nav', 'noscript', 'object', 'ol', 'optgroup', 'option', 'output', 'p', 'param', 'picture', 'pre', 'progress', 'q', 'rp', 'rt', 'ruby', 's', 'samp', 'script', 'section', 'select', 'small', 'source', 'span', 'strong', 'style', 'sub', 'summary', 'sup', 'table', 'tbody', 'td', 'textarea', 'tfoot', 'th', 'thead', 'time', 'title', 'tr', 'track', 'u', 'ul', 'var', 'video', 'wbr', // SVG
|
||||
'circle', 'clipPath', 'defs', 'ellipse', 'foreignObject', 'g', 'image', 'line', 'linearGradient', 'mask', 'path', 'pattern', 'polygon', 'polyline', 'radialGradient', 'rect', 'stop', 'svg', 'text', 'tspan'];
|
||||
|
||||
var newStyled = createStyled.bind();
|
||||
tags.forEach(function (tagName) {
|
||||
newStyled[tagName] = newStyled(tagName);
|
||||
});
|
||||
|
||||
export { newStyled as default };
|
||||
2
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.umd.min.js
generated
vendored
Normal file
2
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.umd.min.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.umd.min.js.map
generated
vendored
Normal file
1
backend/frontend/node_modules/@emotion/styled/dist/emotion-styled.umd.min.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user