Save current BZZZ config-ui state before CHORUS branding update

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
anthonyrawlins
2025-08-19 00:19:00 +10:00
parent 6a6a49b7b1
commit c177363a19
16410 changed files with 1789161 additions and 230 deletions

View File

@@ -0,0 +1,2 @@
/* eslint-ignore */
module.exports = require('./dist/babel').test()

1
install/config-ui/node_modules/styled-jsx/babel.js generated vendored Normal file
View File

@@ -0,0 +1 @@
module.exports = require('./dist/babel').default

16
install/config-ui/node_modules/styled-jsx/css.d.ts generated vendored Normal file
View File

@@ -0,0 +1,16 @@
// Definitions by: @types/styled-jsx <https://www.npmjs.com/package/@types/styled-jsx>
declare module 'styled-jsx/css' {
function css(chunks: TemplateStringsArray, ...args: any[]): JSX.Element
namespace css {
export function global(
chunks: TemplateStringsArray,
...args: any[]
): JSX.Element
export function resolve(
chunks: TemplateStringsArray,
...args: any[]
): { className: string; styles: JSX.Element }
}
export = css
}

23
install/config-ui/node_modules/styled-jsx/css.js generated vendored Normal file
View File

@@ -0,0 +1,23 @@
function notTranspiledError(name) {
throw new Error(
'styled-jsx/css: if you are getting this error it means that your `' +
name +
'` tagged template literals were not transpiled.'
)
}
function css() {
notTranspiledError('css')
}
css.global = function() {
notTranspiledError('global')
}
css.resolve = function() {
notTranspiledError('resolve')
}
module.exports = css
module.exports.global = css.global
module.exports.resolve = css.resolve

13
install/config-ui/node_modules/styled-jsx/global.d.ts generated vendored Normal file
View File

@@ -0,0 +1,13 @@
/// <reference types="./css" />
/// <reference types="./index" />
/// <reference types="./macro" />
/// <reference types="./style" />
import React from 'react'
declare module 'react' {
interface StyleHTMLAttributes<T> extends HTMLAttributes<T> {
jsx?: boolean
global?: boolean
}
}

17
install/config-ui/node_modules/styled-jsx/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,17 @@
declare module 'styled-jsx' {
export type StyledJsxStyleRegistry = {
styles(options?: { nonce?: string }): JSX.Element[]
flush(): void
add(props: any): void
remove(props: any): void
}
export function useStyleRegistry(): StyledJsxStyleRegistry
export function StyleRegistry({
children,
registry
}: {
children: JSX.Element | import('react').ReactNode
registry?: StyledJsxStyleRegistry
}): JSX.Element
export function createStyleRegistry(): StyledJsxStyleRegistry
}

1
install/config-ui/node_modules/styled-jsx/index.js generated vendored Normal file
View File

@@ -0,0 +1 @@
module.exports = require('./dist/index')

View File

@@ -0,0 +1,2 @@
/* eslint-ignore */
module.exports = require('../dist/lib/style-transform')

View File

@@ -0,0 +1 @@
module.exports = require('../dist/lib/stylesheet')

21
install/config-ui/node_modules/styled-jsx/license.md generated vendored Normal file
View File

@@ -0,0 +1,21 @@
MIT License
Copyright (c) 2016-present Vercel, Inc.
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.

13
install/config-ui/node_modules/styled-jsx/macro.d.ts generated vendored Normal file
View File

@@ -0,0 +1,13 @@
declare module 'styled-jsx/macro' {
namespace macro {
function resolve(
chunks: TemplateStringsArray,
...args: any[]
): {
className: string
styles: JSX.Element
}
}
export = macro
}

1
install/config-ui/node_modules/styled-jsx/macro.js generated vendored Normal file
View File

@@ -0,0 +1 @@
module.exports = require('./dist/babel').macro()

129
install/config-ui/node_modules/styled-jsx/package.json generated vendored Normal file
View File

@@ -0,0 +1,129 @@
{
"name": "styled-jsx",
"version": "5.1.1",
"license": "MIT",
"repository": "vercel/styled-jsx",
"description": "Full CSS support for JSX without compromises",
"files": [
"dist",
"lib",
"global.d.ts",
"index.d.ts",
"index.js",
"babel.js",
"babel-test.js",
"style.js",
"style.d.ts",
"macro.js",
"macro.d.ts",
"css.js",
"css.d.ts",
"webpack.js",
"license.md"
],
"typings": "./index.d.ts",
"scripts": {
"build-babel": "bunchee src/babel.js -f cjs -e babel-plugin-macros --runtime node -o dist/babel/index.js",
"build": "rm -rf dist && rm -rf out && yarn build-webpack && yarn build-index && yarn build-babel",
"build-webpack": "bunchee src/webpack.js -f cjs --runtime node -o dist/webpack/index.js",
"build-index": "bunchee src/index.js -f cjs --runtime node -o dist/index/index.js",
"test": "ava",
"lint": "eslint ./src",
"format": "prettier --write \"./{src,test}/**/*.{js,css}\"",
"prepublishOnly": "yarn build && yarn test && yarn lint --quiet"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"ava": {
"require": [
"@babel/register"
]
},
"eslintConfig": {
"env": {
"node": true,
"browser": true,
"es6": true
},
"extends": [
"eslint:recommended",
"prettier"
],
"parserOptions": {
"ecmaVersion": 11,
"sourceType": "module"
},
"rules": {
"no-empty": 0,
"capitalized-comments": 0,
"valid-jsdoc": 0,
"prefer-destructuring": 0,
"padding-line-between-statements": 0
}
},
"devDependencies": {
"@babel/cli": "7.18.10",
"@babel/core": "7.12.3",
"@babel/plugin-proposal-object-rest-spread": "7.12.1",
"@babel/plugin-syntax-jsx": "7.14.5",
"@babel/plugin-transform-arrow-functions": "7.12.1",
"@babel/plugin-transform-modules-commonjs": "7.12.1",
"@babel/plugin-transform-runtime": "7.12.1",
"@babel/preset-env": "7.12.1",
"@babel/preset-react": "7.12.5",
"@babel/register": "7.12.1",
"@babel/runtime": "7.12.5",
"@babel/types": "7.15.0",
"ava": "4.3.1",
"babel-plugin-macros": "2.8.0",
"bunchee": "2.1.5",
"convert-source-map": "1.7.0",
"eslint": "7.32.0",
"eslint-config-prettier": "4.0.0",
"husky": "4.3.0",
"loader-utils": "1.4.1",
"prettier": "1.16.4",
"pretty-quick": "3.1.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"semantic-release": "17.2.2",
"source-map": "0.7.3",
"string-hash": "1.1.3",
"stylis": "3.5.4",
"stylis-rule-sheet": "0.0.10"
},
"peerDependencies": {
"react": ">= 16.8.0 || 17.x.x || ^18.0.0-0"
},
"peerDependenciesMeta": {
"@babel/core": {
"optional": true
},
"babel-plugin-macros": {
"optional": true
}
},
"release": {
"branches": [
"main",
"alpha",
"beta"
]
},
"engines": {
"node": ">= 12.0.0"
},
"keywords": [
"babel-plugin-macros",
"vercel",
"zeit",
"css-in-js",
"css"
],
"dependencies": {
"client-only": "0.0.1"
}
}

1070
install/config-ui/node_modules/styled-jsx/readme.md generated vendored Normal file

File diff suppressed because it is too large Load Diff

3
install/config-ui/node_modules/styled-jsx/style.d.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
declare module 'styled-jsx/style' {
export default function JSXStyle(props: any): null
}

1
install/config-ui/node_modules/styled-jsx/style.js generated vendored Normal file
View File

@@ -0,0 +1 @@
module.exports = require('./dist/index').style

3
install/config-ui/node_modules/styled-jsx/webpack.js generated vendored Normal file
View File

@@ -0,0 +1,3 @@
module.exports = {
loader: require.resolve('./dist/webpack')
}