worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
141
node_modules/@mui/system/esm/cssVars/createCssVarsProvider.d.ts
generated
vendored
Normal file
141
node_modules/@mui/system/esm/cssVars/createCssVarsProvider.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,141 @@
|
|||
import * as React from 'react';
|
||||
import InitColorSchemeScript from "../InitColorSchemeScript/index.js";
|
||||
import { Result } from "./useCurrentColorScheme.js";
|
||||
import type { StorageManager } from "./localStorageManager.js";
|
||||
export interface ColorSchemeContextValue<SupportedColorScheme extends string> extends Result<SupportedColorScheme> {
|
||||
allColorSchemes: SupportedColorScheme[];
|
||||
}
|
||||
export interface CssVarsProviderConfig<ColorScheme extends string> {
|
||||
/**
|
||||
* DOM attribute for applying color scheme
|
||||
* @default 'data-color-scheme'
|
||||
*/
|
||||
attribute?: string;
|
||||
/**
|
||||
* localStorage key used to store application `mode`
|
||||
* @default 'mode'
|
||||
*/
|
||||
modeStorageKey?: string;
|
||||
/**
|
||||
* localStorage key used to store `colorScheme`
|
||||
* @default 'color-scheme'
|
||||
*/
|
||||
colorSchemeStorageKey?: string;
|
||||
/**
|
||||
* Design system default color scheme.
|
||||
* - provides string if the design system has one default color scheme (either light or dark)
|
||||
* - provides object if the design system has default light & dark color schemes
|
||||
*/
|
||||
defaultColorScheme: ColorScheme | {
|
||||
light: ColorScheme;
|
||||
dark: ColorScheme;
|
||||
};
|
||||
/**
|
||||
* Disable CSS transitions when switching between modes or color schemes
|
||||
* @default false
|
||||
*/
|
||||
disableTransitionOnChange?: boolean;
|
||||
/**
|
||||
* If `true`, theme values are recalculated when the mode changes.
|
||||
* The `theme.colorSchemes.{mode}.*` nodes will be shallow merged to the top-level of the theme.
|
||||
* @default false
|
||||
*/
|
||||
forceThemeRerender?: boolean;
|
||||
}
|
||||
type Identify<I extends string | undefined, T> = I extends string ? T | { [k in I]: T } : T;
|
||||
export interface CreateCssVarsProviderResult<ColorScheme extends string, Identifier extends string | undefined = undefined> {
|
||||
CssVarsProvider: (props: React.PropsWithChildren<Partial<CssVarsProviderConfig<ColorScheme>> & {
|
||||
theme?: Identify<Identifier, {
|
||||
cssVariables?: false;
|
||||
cssVarPrefix?: string;
|
||||
colorSchemes: Partial<Record<ColorScheme, any>>;
|
||||
colorSchemeSelector?: 'media' | 'class' | 'data' | string;
|
||||
}>;
|
||||
/**
|
||||
* The default mode when the storage is empty,
|
||||
* require the theme to have `colorSchemes` with light and dark.
|
||||
* @default 'system'
|
||||
*/
|
||||
defaultMode?: 'light' | 'dark' | 'system';
|
||||
/**
|
||||
* The document used to perform `disableTransitionOnChange` feature
|
||||
* @default document
|
||||
*/
|
||||
documentNode?: Document | null;
|
||||
/**
|
||||
* The node used to attach the color-scheme attribute
|
||||
* @default document
|
||||
*/
|
||||
colorSchemeNode?: Element | null;
|
||||
/**
|
||||
* The storage manager to be used for storing the mode and color scheme.
|
||||
* @default using `window.localStorage`
|
||||
*/
|
||||
storageManager?: StorageManager | null;
|
||||
/**
|
||||
* The window that attaches the 'storage' event listener
|
||||
* @default window
|
||||
*/
|
||||
storageWindow?: Window | null;
|
||||
/**
|
||||
* If `true`, the provider creates its own context and generate stylesheet as if it is a root `CssVarsProvider`.
|
||||
*/
|
||||
disableNestedContext?: boolean;
|
||||
/**
|
||||
* If `true`, the style sheet won't be generated.
|
||||
*
|
||||
* This is useful for controlling nested CssVarsProvider behavior.
|
||||
* @default false
|
||||
*/
|
||||
disableStyleSheetGeneration?: boolean;
|
||||
}>) => React.JSX.Element;
|
||||
useColorScheme: () => ColorSchemeContextValue<ColorScheme>;
|
||||
getInitColorSchemeScript: typeof InitColorSchemeScript;
|
||||
}
|
||||
export default function createCssVarsProvider<ColorScheme extends string, Identifier extends string | undefined = undefined>(options: CssVarsProviderConfig<ColorScheme> & {
|
||||
/**
|
||||
* The design system's unique id for getting the corresponded theme when there are multiple design systems.
|
||||
*/
|
||||
themeId?: Identifier;
|
||||
/**
|
||||
* Design system default theme
|
||||
*
|
||||
* - The structure inside `theme.colorSchemes[colorScheme]` should be exactly the same in all color schemes because
|
||||
* those object of the color scheme will be used when the color scheme is active.
|
||||
*
|
||||
* {
|
||||
* colorSchemes: {
|
||||
* light: { ...lightColorSchemeValues },
|
||||
* dark: { ...darkColorSchemeValues }
|
||||
* }
|
||||
* }
|
||||
*
|
||||
* - If colorScheme is 'light', the `lightColorSchemeValues` will be merged to theme as `{ ...theme, ...lightColorSchemeValues }`
|
||||
* likewise, if colorScheme is 'dark', the `darkColorSchemeValues` will be merged to theme as `{ ...theme, ...darkColorSchemeValues }`
|
||||
*
|
||||
* - If the theme contains the same keys as the color scheme, their values will be merged.
|
||||
* Ex. {
|
||||
* colorSchemes: {
|
||||
* light: { palette: { primary: { ... } } },
|
||||
* dark: { palette: { primary: { ...} } }
|
||||
* },
|
||||
* palette: { shared: { ... } }
|
||||
* }
|
||||
*
|
||||
* becomes: {
|
||||
* colorSchemes: { ... },
|
||||
* palette: { shared: { ... }, primary: { ... } }
|
||||
* }
|
||||
*/
|
||||
theme: any;
|
||||
/**
|
||||
* A function to be called after the CSS variables are attached. The result of this function will be the final theme pass to ThemeProvider.
|
||||
*
|
||||
* The example usage is the variant generation in Joy. We need to combine the token from user-input and the default theme first, then generate
|
||||
* variants from those tokens.
|
||||
*/
|
||||
resolveTheme?: (theme: any) => any; // the type is any because it depends on the design system.
|
||||
}): CreateCssVarsProviderResult<ColorScheme, Identifier>;
|
||||
|
||||
// disable automatic export
|
||||
export {};
|
||||
Loading…
Add table
Add a link
Reference in a new issue