node_modules ignore

This commit is contained in:
2025-05-08 23:43:47 +02:00
parent e19d52f172
commit 4574544c9f
65041 changed files with 10593536 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
export interface Shadows {
filterShadow: string;
focus: string;
focusShadow: string;
popupShadow: string;
tableShadow: string;
}
export interface Colors {
alternative100: string;
alternative200: string;
alternative500: string;
alternative600: string;
alternative700: string;
buttonNeutral0: string;
buttonPrimary500: string;
buttonPrimary600: string;
danger100: string;
danger200: string;
danger500: string;
danger600: string;
danger700: string;
neutral0: string;
neutral100: string;
neutral1000: string;
neutral150: string;
neutral200: string;
neutral300: string;
neutral400: string;
neutral500: string;
neutral600: string;
neutral700: string;
neutral800: string;
neutral900: string;
primary100: string;
primary200: string;
primary500: string;
primary600: string;
primary700: string;
secondary100: string;
secondary200: string;
secondary500: string;
secondary600: string;
secondary700: string;
success100: string;
success200: string;
success500: string;
success600: string;
success700: string;
warning100: string;
warning200: string;
warning500: string;
warning600: string;
warning700: string;
}
//# sourceMappingURL=colors.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"colors.d.ts","sourceRoot":"","sources":["../../src/themes/colors.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,OAAO;IACtB,YAAY,EAAE,MAAM,CAAC;IACrB,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,MAAM;IACrB,cAAc,EAAE,MAAM,CAAC;IACvB,cAAc,EAAE,MAAM,CAAC;IACvB,cAAc,EAAE,MAAM,CAAC;IACvB,cAAc,EAAE,MAAM,CAAC;IACvB,cAAc,EAAE,MAAM,CAAC;IACvB,cAAc,EAAE,MAAM,CAAC;IACvB,gBAAgB,EAAE,MAAM,CAAC;IACzB,gBAAgB,EAAE,MAAM,CAAC;IACzB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,YAAY,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;CACpB"}

View File

@@ -0,0 +1,38 @@
import { EASINGS, TIMINGS, TRANSITIONS } from '../styles/motion';
import { Sizes } from './sizes';
type Breakpoint = `@media(min-width: ${number}px)`;
export interface CommonTheme {
sizes: Sizes;
zIndices: {
navigation: 100;
overlay: 300;
modal: 310;
dialog: 320;
popover: 500;
notification: 700;
tooltip: 1000;
};
spaces: ['0px', '4px', '8px', '12px', '16px', '20px', '24px', '32px', '40px', '48px', '56px', '64px'];
breakpoints: {
initial: Breakpoint;
small: Breakpoint;
medium: Breakpoint;
large: Breakpoint;
};
borderRadius: '4px';
fontSizes: [string, string, string, string, string, string];
lineHeights: [1.14, 1.22, 1.25, 1.33, 1.43, 1.45, 1.5];
fontWeights: {
regular: 400;
semiBold: 500;
bold: 600;
};
motion: {
easings: typeof EASINGS;
timings: typeof TIMINGS;
};
transitions: typeof TRANSITIONS;
}
export declare const commonTheme: CommonTheme;
export {};
//# sourceMappingURL=common-theme.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"common-theme.d.ts","sourceRoot":"","sources":["../../src/themes/common-theme.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAEjE,OAAO,EAAE,KAAK,EAAS,MAAM,SAAS,CAAC;AAEvC,KAAK,UAAU,GAAG,qBAAqB,MAAM,KAAK,CAAC;AAEnD,MAAM,WAAW,WAAW;IAC1B,KAAK,EAAE,KAAK,CAAC;IACb,QAAQ,EAAE;QACR,UAAU,EAAE,GAAG,CAAC;QAChB,OAAO,EAAE,GAAG,CAAC;QACb,KAAK,EAAE,GAAG,CAAC;QACX,MAAM,EAAE,GAAG,CAAC;QACZ,OAAO,EAAE,GAAG,CAAC;QACb,YAAY,EAAE,GAAG,CAAC;QAClB,OAAO,EAAE,IAAI,CAAC;KACf,CAAC;IACF,MAAM,EAAE,CAAC,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC;IACtG,WAAW,EAAE;QACX,OAAO,EAAE,UAAU,CAAC;QACpB,KAAK,EAAE,UAAU,CAAC;QAClB,MAAM,EAAE,UAAU,CAAC;QACnB,KAAK,EAAE,UAAU,CAAC;KACnB,CAAC;IACF,YAAY,EAAE,KAAK,CAAC;IACpB,SAAS,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC;IAC5D,WAAW,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,CAAC,CAAC;IACvD,WAAW,EAAE;QACX,OAAO,EAAE,GAAG,CAAC;QACb,QAAQ,EAAE,GAAG,CAAC;QACd,IAAI,EAAE,GAAG,CAAC;KACX,CAAC;IACF,MAAM,EAAE;QACN,OAAO,EAAE,OAAO,OAAO,CAAC;QACxB,OAAO,EAAE,OAAO,OAAO,CAAC;KACzB,CAAC;IACF,WAAW,EAAE,OAAO,WAAW,CAAC;CACjC;AAED,eAAO,MAAM,WAAW,EAAE,WA+BzB,CAAC"}

View File

@@ -0,0 +1,5 @@
import { Colors } from '../colors';
export declare const darkColorTokenObject: {
color: Colors;
};
//# sourceMappingURL=dark-colors.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"dark-colors.d.ts","sourceRoot":"","sources":["../../../src/themes/darkTheme/dark-colors.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAEnC,eAAO,MAAM,oBAAoB,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAgDjD,CAAC"}

View File

@@ -0,0 +1,5 @@
import { Shadows } from '../colors';
export declare const darkShadowTokenObject: {
shadow: Shadows;
};
//# sourceMappingURL=dark-shadows.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"dark-shadows.d.ts","sourceRoot":"","sources":["../../../src/themes/darkTheme/dark-shadows.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAEpC,eAAO,MAAM,qBAAqB,EAAE;IAAE,MAAM,EAAE,OAAO,CAAA;CASpD,CAAC"}

View File

@@ -0,0 +1,3 @@
import { DefaultTheme } from 'styled-components';
export declare const darkTheme: DefaultTheme;
//# sourceMappingURL=index.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/themes/darkTheme/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAOjD,eAAO,MAAM,SAAS,EAAE,YAIvB,CAAC"}

View File

@@ -0,0 +1,3 @@
import { DefaultTheme } from 'styled-components';
export declare const extendTheme: (theme: DefaultTheme | null, overrides: object | null) => {};
//# sourceMappingURL=extendTheme.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"extendTheme.d.ts","sourceRoot":"","sources":["../../src/themes/extendTheme.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAqBjD,eAAO,MAAM,WAAW,UAAW,YAAY,GAAG,IAAI,aAAa,MAAM,GAAG,IAAI,OAmC/E,CAAC"}

View File

@@ -0,0 +1,11 @@
import { Colors, Shadows } from './colors';
import { CommonTheme } from './common-theme';
export * from './lightTheme';
export * from './darkTheme';
export * from './extendTheme';
export * from './utils';
export interface StrapiTheme extends CommonTheme {
colors: Colors;
shadows: Shadows;
}
//# sourceMappingURL=index.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/themes/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,UAAU,CAAC;AAC3C,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAE7C,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,SAAS,CAAC;AAExB,MAAM,WAAW,WAAY,SAAQ,WAAW;IAC9C,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,OAAO,CAAC;CAClB"}

View File

@@ -0,0 +1,3 @@
import { DefaultTheme } from 'styled-components';
export declare const lightTheme: DefaultTheme;
//# sourceMappingURL=index.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/themes/lightTheme/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAOjD,eAAO,MAAM,UAAU,EAAE,YAIxB,CAAC"}

View File

@@ -0,0 +1,5 @@
import { Colors } from '../colors';
export declare const lightColorTokenObject: {
color: Colors;
};
//# sourceMappingURL=light-colors.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"light-colors.d.ts","sourceRoot":"","sources":["../../../src/themes/lightTheme/light-colors.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAEnC,eAAO,MAAM,qBAAqB,EAAE;IAAE,KAAK,EAAE,MAAM,CAAA;CAgDlD,CAAC"}

View File

@@ -0,0 +1,5 @@
import { Shadows } from '../colors';
export declare const lightShadowTokenObject: {
shadow: Shadows;
};
//# sourceMappingURL=light-shadows.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"light-shadows.d.ts","sourceRoot":"","sources":["../../../src/themes/lightTheme/light-shadows.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAEpC,eAAO,MAAM,sBAAsB,EAAE;IAAE,MAAM,EAAE,OAAO,CAAA;CASrD,CAAC"}

View File

@@ -0,0 +1,13 @@
export interface Sizes {
accordions: {
S: string;
M: string;
};
button: {
S: string;
M: string;
L: string;
};
}
export declare const sizes: Sizes;
//# sourceMappingURL=sizes.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"sizes.d.ts","sourceRoot":"","sources":["../../src/themes/sizes.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,KAAK;IACpB,UAAU,EAAE;QACV,CAAC,EAAE,MAAM,CAAC;QACV,CAAC,EAAE,MAAM,CAAC;KACX,CAAC;IACF,MAAM,EAAE;QACN,CAAC,EAAE,MAAM,CAAC;QACV,CAAC,EAAE,MAAM,CAAC;QACV,CAAC,EAAE,MAAM,CAAC;KACX,CAAC;CACH;AACD,eAAO,MAAM,KAAK,EAAE,KAUnB,CAAC"}

View File

@@ -0,0 +1,10 @@
import { DefaultTheme, IStyledComponent } from 'styled-components';
export declare const getThemeSize: <TType extends keyof import("./sizes").Sizes>(type: TType) => ({ theme, size }: {
theme: DefaultTheme;
size: keyof DefaultTheme['sizes'][TType];
}) => import("./sizes").Sizes[TType][keyof import("./sizes").Sizes[TType]];
export declare const inputFocusStyle: (rootElement?: IStyledComponent<'web'> | string) => ({ theme, $hasError }: {
theme: DefaultTheme;
$hasError?: boolean;
}) => import("styled-components").RuleSet<object>;
//# sourceMappingURL=utils.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../src/themes/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAO,YAAY,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AAExE,eAAO,MAAM,YAAY,sDAAqD,KAAK,uBACxD;IAAE,KAAK,EAAE,YAAY,CAAC;IAAC,IAAI,EAAE,MAAM,YAAY,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,CAAA;CAAE,yEAE3F,CAAC;AAEF,eAAO,MAAM,eAAe,iBACZ,iBAAiB,KAAK,CAAC,GAAG,MAAM,4BACf;IAAE,KAAK,EAAE,YAAY,CAAC;IAAC,SAAS,CAAC,EAAE,OAAO,CAAA;CAAE,gDAU1E,CAAC"}