Jesus sucks
This commit is contained in:
21
backend/frontend/node_modules/@emotion/utils/LICENSE
generated
vendored
Normal file
21
backend/frontend/node_modules/@emotion/utils/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) Emotion team and other contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
65
backend/frontend/node_modules/@emotion/utils/package.json
generated
vendored
Normal file
65
backend/frontend/node_modules/@emotion/utils/package.json
generated
vendored
Normal file
@@ -0,0 +1,65 @@
|
||||
{
|
||||
"name": "@emotion/utils",
|
||||
"version": "1.4.2",
|
||||
"description": "internal utils for emotion",
|
||||
"main": "dist/emotion-utils.cjs.js",
|
||||
"module": "dist/emotion-utils.esm.js",
|
||||
"types": "dist/emotion-utils.cjs.d.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"types": {
|
||||
"import": "./dist/emotion-utils.cjs.mjs",
|
||||
"default": "./dist/emotion-utils.cjs.js"
|
||||
},
|
||||
"edge-light": {
|
||||
"module": "./dist/emotion-utils.edge-light.esm.js",
|
||||
"import": "./dist/emotion-utils.edge-light.cjs.mjs",
|
||||
"default": "./dist/emotion-utils.edge-light.cjs.js"
|
||||
},
|
||||
"worker": {
|
||||
"module": "./dist/emotion-utils.edge-light.esm.js",
|
||||
"import": "./dist/emotion-utils.edge-light.cjs.mjs",
|
||||
"default": "./dist/emotion-utils.edge-light.cjs.js"
|
||||
},
|
||||
"workerd": {
|
||||
"module": "./dist/emotion-utils.edge-light.esm.js",
|
||||
"import": "./dist/emotion-utils.edge-light.cjs.mjs",
|
||||
"default": "./dist/emotion-utils.edge-light.cjs.js"
|
||||
},
|
||||
"browser": {
|
||||
"module": "./dist/emotion-utils.browser.esm.js",
|
||||
"import": "./dist/emotion-utils.browser.cjs.mjs",
|
||||
"default": "./dist/emotion-utils.browser.cjs.js"
|
||||
},
|
||||
"module": "./dist/emotion-utils.esm.js",
|
||||
"import": "./dist/emotion-utils.cjs.mjs",
|
||||
"default": "./dist/emotion-utils.cjs.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"imports": {
|
||||
"#is-browser": {
|
||||
"edge-light": "./src/conditions/false.ts",
|
||||
"workerd": "./src/conditions/false.ts",
|
||||
"worker": "./src/conditions/false.ts",
|
||||
"browser": "./src/conditions/true.ts",
|
||||
"default": "./src/conditions/is-browser.ts"
|
||||
}
|
||||
},
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"test:typescript": "dtslint types"
|
||||
},
|
||||
"repository": "https://github.com/emotion-js/emotion/tree/main/packages/utils",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"files": [
|
||||
"src",
|
||||
"dist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@definitelytyped/dtslint": "0.0.112",
|
||||
"typescript": "^5.4.5"
|
||||
}
|
||||
}
|
||||
1
backend/frontend/node_modules/@emotion/utils/src/conditions/false.ts
generated
vendored
Normal file
1
backend/frontend/node_modules/@emotion/utils/src/conditions/false.ts
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export default false as boolean
|
||||
1
backend/frontend/node_modules/@emotion/utils/src/conditions/is-browser.ts
generated
vendored
Normal file
1
backend/frontend/node_modules/@emotion/utils/src/conditions/is-browser.ts
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export default typeof document !== 'undefined'
|
||||
1
backend/frontend/node_modules/@emotion/utils/src/conditions/true.ts
generated
vendored
Normal file
1
backend/frontend/node_modules/@emotion/utils/src/conditions/true.ts
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export default true as boolean
|
||||
75
backend/frontend/node_modules/@emotion/utils/src/index.ts
generated
vendored
Normal file
75
backend/frontend/node_modules/@emotion/utils/src/index.ts
generated
vendored
Normal file
@@ -0,0 +1,75 @@
|
||||
import isBrowser from '#is-browser'
|
||||
import { RegisteredCache, EmotionCache, SerializedStyles } from './types'
|
||||
|
||||
export function getRegisteredStyles(
|
||||
registered: RegisteredCache,
|
||||
registeredStyles: string[],
|
||||
classNames: string
|
||||
): string {
|
||||
let rawClassName = ''
|
||||
|
||||
classNames.split(' ').forEach(className => {
|
||||
if (registered[className] !== undefined) {
|
||||
registeredStyles.push(`${registered[className]};`)
|
||||
} else if (className) {
|
||||
rawClassName += `${className} `
|
||||
}
|
||||
})
|
||||
return rawClassName
|
||||
}
|
||||
|
||||
export const registerStyles = (
|
||||
cache: EmotionCache,
|
||||
serialized: SerializedStyles,
|
||||
isStringTag: boolean
|
||||
): void => {
|
||||
let className = `${cache.key}-${serialized.name}`
|
||||
if (
|
||||
// we only need to add the styles to the registered cache if the
|
||||
// class name could be used further down
|
||||
// the tree but if it's a string tag, we know it won't
|
||||
// so we don't have to add it to registered cache.
|
||||
// this improves memory usage since we can avoid storing the whole style string
|
||||
(isStringTag === false ||
|
||||
// we need to always store it if we're in compat mode and
|
||||
// in node since emotion-server relies on whether a style is in
|
||||
// the registered cache to know whether a style is global or not
|
||||
// also, note that this check will be dead code eliminated in the browser
|
||||
(isBrowser === false && cache.compat !== undefined)) &&
|
||||
cache.registered[className] === undefined
|
||||
) {
|
||||
cache.registered[className] = serialized.styles
|
||||
}
|
||||
}
|
||||
|
||||
export const insertStyles = (
|
||||
cache: EmotionCache,
|
||||
serialized: SerializedStyles,
|
||||
isStringTag: boolean
|
||||
) => {
|
||||
registerStyles(cache, serialized, isStringTag)
|
||||
|
||||
let className = `${cache.key}-${serialized.name}`
|
||||
|
||||
if (cache.inserted[serialized.name] === undefined) {
|
||||
let stylesForSSR = ''
|
||||
let current: SerializedStyles | undefined = serialized
|
||||
do {
|
||||
let maybeStyles = cache.insert(
|
||||
serialized === current ? `.${className}` : '',
|
||||
current,
|
||||
cache.sheet,
|
||||
true
|
||||
)
|
||||
if (!isBrowser && maybeStyles !== undefined) {
|
||||
stylesForSSR += maybeStyles
|
||||
}
|
||||
current = current.next
|
||||
} while (current !== undefined)
|
||||
if (!isBrowser && stylesForSSR.length !== 0) {
|
||||
return stylesForSSR
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export * from './types'
|
||||
26
backend/frontend/node_modules/@emotion/utils/src/types.ts
generated
vendored
Normal file
26
backend/frontend/node_modules/@emotion/utils/src/types.ts
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
import type { StyleSheet } from '@emotion/sheet'
|
||||
|
||||
export type { StyleSheet }
|
||||
|
||||
export type RegisteredCache = Record<string, string | undefined>
|
||||
|
||||
export type SerializedStyles = {
|
||||
name: string
|
||||
styles: string
|
||||
next?: SerializedStyles
|
||||
}
|
||||
|
||||
export type EmotionCache = {
|
||||
inserted: Record<string, string | true | undefined>
|
||||
registered: RegisteredCache
|
||||
sheet: StyleSheet
|
||||
key: string
|
||||
compat?: true
|
||||
nonce?: string
|
||||
insert: (
|
||||
selector: string,
|
||||
serialized: SerializedStyles,
|
||||
sheet: StyleSheet,
|
||||
shouldCache: boolean
|
||||
) => string | void
|
||||
}
|
||||
Reference in New Issue
Block a user