@latte-macchiat-io/latte-vanilla-components 0.0.133 → 0.0.135
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +4 -4
- package/dist/index.es.js +3404 -3958
- package/dist/latte-vanilla-components.css +1 -1
- package/dist/types/components/Carousel/export.d.ts +1 -0
- package/dist/types/components/Carousel/index.d.ts +3 -3
- package/dist/types/components/Carousel/styles.css.d.ts +6 -49
- package/dist/types/components/Columns/export.d.ts +1 -0
- package/dist/types/components/Columns/index.d.ts +5 -6
- package/dist/types/components/Columns/stories.d.ts +1 -1
- package/dist/types/components/Columns/styles.css.d.ts +12 -0
- package/dist/types/components/ConsentCookie/export.d.ts +1 -0
- package/dist/types/components/ConsentCookie/index.d.ts +2 -3
- package/dist/types/components/ConsentCookie/styles.css.d.ts +12 -0
- package/dist/types/components/Form/Row/index.d.ts +2 -3
- package/dist/types/components/Form/Row/styles.css.d.ts +8 -0
- package/dist/types/components/Form/TextField/Input/export.d.ts +1 -0
- package/dist/types/components/Form/TextField/Input/index.d.ts +2 -3
- package/dist/types/components/Form/TextField/Input/styles.css.d.ts +12 -0
- package/dist/types/components/Form/TextField/Label/export.d.ts +1 -0
- package/dist/types/components/Form/TextField/Label/index.d.ts +3 -3
- package/dist/types/components/Form/TextField/Label/styles.css.d.ts +8 -0
- package/dist/types/components/Form/TextField/Textarea/export.d.ts +1 -0
- package/dist/types/components/Form/TextField/Textarea/index.d.ts +2 -3
- package/dist/types/components/Form/TextField/Textarea/styles.css.d.ts +12 -0
- package/dist/types/components/Form/TextField/export.d.ts +1 -0
- package/dist/types/components/Form/TextField/index.d.ts +3 -4
- package/dist/types/components/Form/TextField/styles.css.d.ts +5 -0
- package/dist/types/components/Form/export.d.ts +1 -0
- package/dist/types/components/Form/index.d.ts +2 -3
- package/dist/types/components/Form/styles.css.d.ts +7 -0
- package/dist/types/components/Header/HeaderOverlay/index.d.ts +2 -1
- package/dist/types/components/Header/HeaderOverlay/styles.css.d.ts +5 -0
- package/dist/types/components/Header/ToggleNav/index.d.ts +5 -5
- package/dist/types/components/Header/ToggleNav/styles.css.d.ts +5 -0
- package/dist/types/components/Header/export.d.ts +1 -0
- package/dist/types/components/Header/index.d.ts +2 -3
- package/dist/types/components/Header/styles.css.d.ts +6 -0
- package/dist/types/components/Icon/export.d.ts +1 -0
- package/dist/types/components/Icon/index.d.ts +2 -3
- package/dist/types/components/Icon/stories.d.ts +1 -1
- package/dist/types/components/Icon/styles.css.d.ts +7 -0
- package/dist/types/components/KeyNumber/export.d.ts +1 -0
- package/dist/types/components/KeyNumber/index.d.ts +2 -3
- package/dist/types/components/KeyNumber/styles.css.d.ts +7 -0
- package/dist/types/components/LanguageSwitcher/export.d.ts +1 -0
- package/dist/types/components/LanguageSwitcher/index.d.ts +2 -3
- package/dist/types/components/LanguageSwitcher/styles.css.d.ts +7 -0
- package/dist/types/components/Logo/export.d.ts +1 -0
- package/dist/types/components/Logo/index.d.ts +2 -3
- package/dist/types/components/Logo/styles.css.d.ts +5 -0
- package/dist/types/components/Modal/export.d.ts +1 -0
- package/dist/types/components/Modal/index.d.ts +2 -3
- package/dist/types/components/Modal/styles.css.d.ts +20 -0
- package/dist/types/components/Nav/export.d.ts +1 -0
- package/dist/types/components/Nav/index.d.ts +2 -3
- package/dist/types/components/Nav/styles.css.d.ts +5 -0
- package/package.json +1 -1
- package/dist/types/components/Carousel/styles.d.ts +0 -52
- package/dist/types/components/Columns/styles.d.ts +0 -16
- package/dist/types/components/ConsentCookie/styles.d.ts +0 -25
- package/dist/types/components/Form/Row/styles.d.ts +0 -15
- package/dist/types/components/Form/TextField/Input/styles.d.ts +0 -11
- package/dist/types/components/Form/TextField/Label/styles.d.ts +0 -9
- package/dist/types/components/Form/TextField/Textarea/styles.d.ts +0 -11
- package/dist/types/components/Form/TextField/styles.d.ts +0 -21
- package/dist/types/components/Form/styles.d.ts +0 -11
- package/dist/types/components/Header/HeaderOverlay/styles.d.ts +0 -10
- package/dist/types/components/Header/ToggleNav/styles.d.ts +0 -17
- package/dist/types/components/Header/styles.d.ts +0 -19
- package/dist/types/components/Icon/styles.d.ts +0 -16
- package/dist/types/components/KeyNumber/styles.d.ts +0 -13
- package/dist/types/components/LanguageSwitcher/styles.d.ts +0 -22
- package/dist/types/components/Logo/styles.d.ts +0 -11
- package/dist/types/components/Modal/styles.d.ts +0 -24
- package/dist/types/components/Nav/styles.d.ts +0 -11
@@ -0,0 +1,20 @@
|
|
1
|
+
export declare const vars: {
|
2
|
+
overlayOpacity: `var(--${string})`;
|
3
|
+
overlayBackgroundColor: `var(--${string})`;
|
4
|
+
overlayBlur: `var(--${string})`;
|
5
|
+
modalWidth: `var(--${string})`;
|
6
|
+
modalPaddingTop: `var(--${string})`;
|
7
|
+
modalPaddingBottom: `var(--${string})`;
|
8
|
+
modalPaddingLeft: `var(--${string})`;
|
9
|
+
modalPaddingRight: `var(--${string})`;
|
10
|
+
modalMaxWidth: `var(--${string})`;
|
11
|
+
modalMaxHeight: `var(--${string})`;
|
12
|
+
modalContentTextAlign: `var(--${string})`;
|
13
|
+
modalContentBackgroundColor: `var(--${string})`;
|
14
|
+
modalContentBorderRadius: `var(--${string})`;
|
15
|
+
modalContentBorders: `var(--${string})`;
|
16
|
+
};
|
17
|
+
export declare const styles: string;
|
18
|
+
export declare const modalStyle: string;
|
19
|
+
export declare const modalContentStyle: string;
|
20
|
+
export declare const modalCloseButtonStyle: string;
|
@@ -1,8 +1,7 @@
|
|
1
|
-
import { CSSProperties } from 'react';
|
2
1
|
import { Theme } from '../../types/theme';
|
2
|
+
import { WithClassName } from '../../types/withClassName';
|
3
3
|
export type NavProps = {
|
4
4
|
theme?: Theme;
|
5
|
-
styles?: CSSProperties;
|
6
5
|
children: React.ReactNode;
|
7
6
|
};
|
8
|
-
export declare const Nav: ({ children,
|
7
|
+
export declare const Nav: ({ children, theme, className }: NavProps & WithClassName) => import("react").JSX.Element;
|
package/package.json
CHANGED
@@ -1,52 +0,0 @@
|
|
1
|
-
import { CSSProperties } from 'react';
|
2
|
-
import { Theme } from '../../types/theme';
|
3
|
-
interface IStyledCarousel {
|
4
|
-
styles: CSSProperties;
|
5
|
-
isFullWidth: boolean;
|
6
|
-
theme: Theme;
|
7
|
-
}
|
8
|
-
export declare const StyledCarousel: import('@emotion/styled').StyledComponent<{
|
9
|
-
theme?: import('@emotion/react').Theme;
|
10
|
-
as?: React.ElementType;
|
11
|
-
} & IStyledCarousel, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
12
|
-
export declare const StyledCarouselContent: import('@emotion/styled').StyledComponent<{
|
13
|
-
theme?: import('@emotion/react').Theme;
|
14
|
-
as?: React.ElementType;
|
15
|
-
}, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
16
|
-
interface IStyledCarouselContentList {
|
17
|
-
gap: number;
|
18
|
-
left: number;
|
19
|
-
width: number;
|
20
|
-
}
|
21
|
-
export declare const StyledCarouselContentList: import('@emotion/styled').StyledComponent<{
|
22
|
-
theme?: import('@emotion/react').Theme;
|
23
|
-
as?: React.ElementType;
|
24
|
-
} & IStyledCarouselContentList, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
25
|
-
export declare const StyledCarouselContentListItem: import('@emotion/styled').StyledComponent<{
|
26
|
-
theme?: import('@emotion/react').Theme;
|
27
|
-
as?: React.ElementType;
|
28
|
-
}, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
29
|
-
export declare const StyledCarouselNav: import('@emotion/styled').StyledComponent<{
|
30
|
-
theme?: import('@emotion/react').Theme;
|
31
|
-
as?: React.ElementType;
|
32
|
-
}, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
33
|
-
interface IStyledCarouselNavButton {
|
34
|
-
isDisabled: boolean;
|
35
|
-
}
|
36
|
-
export declare const StyledCarouselNavButton: import('@emotion/styled').StyledComponent<{
|
37
|
-
theme?: import('@emotion/react').Theme;
|
38
|
-
as?: React.ElementType;
|
39
|
-
} & IStyledCarouselNavButton, import('react').DetailedHTMLProps<import('react').ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, {}>;
|
40
|
-
export declare const StyledCarouselBullet: import('@emotion/styled').StyledComponent<{
|
41
|
-
theme?: import('@emotion/react').Theme;
|
42
|
-
as?: React.ElementType;
|
43
|
-
}, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
44
|
-
interface IStyledCarouselBulletItem {
|
45
|
-
theme: Theme;
|
46
|
-
isActive: boolean;
|
47
|
-
}
|
48
|
-
export declare const StyledCarouselBulletItem: import('@emotion/styled').StyledComponent<{
|
49
|
-
theme?: import('@emotion/react').Theme;
|
50
|
-
as?: React.ElementType;
|
51
|
-
} & IStyledCarouselBulletItem, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
52
|
-
export {};
|
@@ -1,16 +0,0 @@
|
|
1
|
-
import { CSSProperties } from 'react';
|
2
|
-
import { Align } from './types';
|
3
|
-
import { Theme } from '../../types/theme';
|
4
|
-
interface IStyledColumns {
|
5
|
-
align: Align;
|
6
|
-
theme: Theme;
|
7
|
-
columns: number[];
|
8
|
-
isCentered: boolean;
|
9
|
-
isInverted: boolean;
|
10
|
-
styles: CSSProperties;
|
11
|
-
}
|
12
|
-
export declare const StyledColumns: import('@emotion/styled').StyledComponent<{
|
13
|
-
theme?: import('@emotion/react').Theme;
|
14
|
-
as?: React.ElementType;
|
15
|
-
} & IStyledColumns, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
16
|
-
export {};
|
@@ -1,25 +0,0 @@
|
|
1
|
-
import { CSSProperties } from 'react';
|
2
|
-
import { Theme } from '../../types/theme';
|
3
|
-
interface IStyledConsentCookie {
|
4
|
-
theme: Theme;
|
5
|
-
styles: CSSProperties;
|
6
|
-
}
|
7
|
-
export declare const StyledConsentCookie: import('@emotion/styled').StyledComponent<{
|
8
|
-
theme?: import('@emotion/react').Theme;
|
9
|
-
as?: React.ElementType;
|
10
|
-
} & IStyledConsentCookie, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
11
|
-
interface IStyledConsentCookieContent {
|
12
|
-
theme: Theme;
|
13
|
-
}
|
14
|
-
export declare const StyledConsentCookieContent: import('@emotion/styled').StyledComponent<{
|
15
|
-
theme?: import('@emotion/react').Theme;
|
16
|
-
as?: React.ElementType;
|
17
|
-
} & IStyledConsentCookieContent, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
18
|
-
interface IStyledConsentCookieActions {
|
19
|
-
theme: Theme;
|
20
|
-
}
|
21
|
-
export declare const StyledConsentCookieActions: import('@emotion/styled').StyledComponent<{
|
22
|
-
theme?: import('@emotion/react').Theme;
|
23
|
-
as?: React.ElementType;
|
24
|
-
} & IStyledConsentCookieActions, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
25
|
-
export {};
|
@@ -1,15 +0,0 @@
|
|
1
|
-
import { CSSProperties } from 'react';
|
2
|
-
import { Theme } from '../../../types/theme';
|
3
|
-
import { Align } from './types';
|
4
|
-
interface IStyledFormRow {
|
5
|
-
align: Align;
|
6
|
-
theme: Theme;
|
7
|
-
isActions: boolean;
|
8
|
-
isMessage: boolean;
|
9
|
-
styles: CSSProperties;
|
10
|
-
}
|
11
|
-
export declare const StyledFormRow: import('@emotion/styled').StyledComponent<{
|
12
|
-
theme?: import('@emotion/react').Theme;
|
13
|
-
as?: React.ElementType;
|
14
|
-
} & IStyledFormRow, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
15
|
-
export {};
|
@@ -1,11 +0,0 @@
|
|
1
|
-
import { CSSProperties } from 'react';
|
2
|
-
import { Theme } from '../../../../types/theme';
|
3
|
-
interface IStyledInputField {
|
4
|
-
theme: Theme;
|
5
|
-
styles: CSSProperties;
|
6
|
-
}
|
7
|
-
export declare const StyledInputField: import('@emotion/styled').StyledComponent<{
|
8
|
-
theme?: import('@emotion/react').Theme;
|
9
|
-
as?: React.ElementType;
|
10
|
-
} & IStyledInputField, import('react').DetailedHTMLProps<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, {}>;
|
11
|
-
export {};
|
@@ -1,9 +0,0 @@
|
|
1
|
-
import { Theme } from '../../../../types/theme';
|
2
|
-
interface IStyledTextFieldLabel {
|
3
|
-
theme: Theme;
|
4
|
-
}
|
5
|
-
export declare const StyledTextFieldLabel: import('@emotion/styled').StyledComponent<{
|
6
|
-
theme?: import('@emotion/react').Theme;
|
7
|
-
as?: React.ElementType;
|
8
|
-
} & IStyledTextFieldLabel, import('react').DetailedHTMLProps<import('react').LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, {}>;
|
9
|
-
export {};
|
@@ -1,11 +0,0 @@
|
|
1
|
-
import { CSSProperties } from 'react';
|
2
|
-
import { Theme } from '../../../../types/theme';
|
3
|
-
interface IStyledTextareaField {
|
4
|
-
theme: Theme;
|
5
|
-
styles: CSSProperties;
|
6
|
-
}
|
7
|
-
export declare const StyledTextareaField: import('@emotion/styled').StyledComponent<{
|
8
|
-
theme?: import('@emotion/react').Theme;
|
9
|
-
as?: React.ElementType;
|
10
|
-
} & IStyledTextareaField, import('react').DetailedHTMLProps<import('react').TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, {}>;
|
11
|
-
export {};
|
@@ -1,21 +0,0 @@
|
|
1
|
-
import { CSSProperties } from 'react';
|
2
|
-
import { Theme } from '../../../types/theme';
|
3
|
-
interface IStyledTextField {
|
4
|
-
styles: CSSProperties;
|
5
|
-
}
|
6
|
-
export declare const StyledTextField: import('@emotion/styled').StyledComponent<{
|
7
|
-
theme?: import('@emotion/react').Theme;
|
8
|
-
as?: React.ElementType;
|
9
|
-
} & IStyledTextField, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
10
|
-
export declare const StyledTextFieldMessage: import('@emotion/styled').StyledComponent<{
|
11
|
-
theme?: import('@emotion/react').Theme;
|
12
|
-
as?: React.ElementType;
|
13
|
-
}, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
14
|
-
interface IStyledErrorMessage {
|
15
|
-
theme: Theme;
|
16
|
-
}
|
17
|
-
export declare const StyledErrorMessage: import('@emotion/styled').StyledComponent<{
|
18
|
-
theme?: import('@emotion/react').Theme;
|
19
|
-
as?: React.ElementType;
|
20
|
-
} & IStyledErrorMessage, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
21
|
-
export {};
|
@@ -1,11 +0,0 @@
|
|
1
|
-
import { CSSProperties } from 'react';
|
2
|
-
import { Theme } from '../../types/theme';
|
3
|
-
interface IStyledForm {
|
4
|
-
theme: Theme;
|
5
|
-
styles: CSSProperties;
|
6
|
-
}
|
7
|
-
export declare const StyledForm: import('@emotion/styled').StyledComponent<{
|
8
|
-
theme?: import('@emotion/react').Theme;
|
9
|
-
as?: React.ElementType;
|
10
|
-
} & IStyledForm, import('react').DetailedHTMLProps<import('react').FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>, {}>;
|
11
|
-
export {};
|
@@ -1,10 +0,0 @@
|
|
1
|
-
import { Theme } from '../../../types/theme';
|
2
|
-
interface IStyledOverlay {
|
3
|
-
theme: Theme;
|
4
|
-
isOpen: boolean;
|
5
|
-
}
|
6
|
-
export declare const StyledOverlay: import('@emotion/styled').StyledComponent<{
|
7
|
-
theme?: import('@emotion/react').Theme;
|
8
|
-
as?: React.ElementType;
|
9
|
-
} & IStyledOverlay, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
10
|
-
export {};
|
@@ -1,17 +0,0 @@
|
|
1
|
-
import { Theme } from '../../../types/theme';
|
2
|
-
interface IStyledToggleNav {
|
3
|
-
displayOnDesktop: boolean;
|
4
|
-
}
|
5
|
-
export declare const StyledToggleNav: import('@emotion/styled').StyledComponent<{
|
6
|
-
theme?: import('@emotion/react').Theme;
|
7
|
-
as?: React.ElementType;
|
8
|
-
} & IStyledToggleNav, import('react').DetailedHTMLProps<import('react').ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, {}>;
|
9
|
-
interface IStyledToggleNavBar {
|
10
|
-
isNavOpen: boolean;
|
11
|
-
theme: Theme;
|
12
|
-
}
|
13
|
-
export declare const StyledToggleNavBar: import('@emotion/styled').StyledComponent<{
|
14
|
-
theme?: import('@emotion/react').Theme;
|
15
|
-
as?: React.ElementType;
|
16
|
-
} & IStyledToggleNavBar, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
17
|
-
export {};
|
@@ -1,19 +0,0 @@
|
|
1
|
-
import { CSSProperties } from 'react';
|
2
|
-
import { Theme } from '../../types/theme';
|
3
|
-
interface IStyledHeader {
|
4
|
-
theme: Theme;
|
5
|
-
isFixed: boolean;
|
6
|
-
styles: CSSProperties;
|
7
|
-
}
|
8
|
-
export declare const StyledHeader: import('@emotion/styled').StyledComponent<{
|
9
|
-
theme?: import('@emotion/react').Theme;
|
10
|
-
as?: React.ElementType;
|
11
|
-
} & IStyledHeader, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLElement>, HTMLElement>, {}>;
|
12
|
-
interface IStyledHeaderPlaceholder {
|
13
|
-
theme: Theme;
|
14
|
-
}
|
15
|
-
export declare const StyledHeaderPlaceholder: import('@emotion/styled').StyledComponent<{
|
16
|
-
theme?: import('@emotion/react').Theme;
|
17
|
-
as?: React.ElementType;
|
18
|
-
} & IStyledHeaderPlaceholder, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
19
|
-
export {};
|
@@ -1,16 +0,0 @@
|
|
1
|
-
import { CSSProperties } from 'react';
|
2
|
-
interface IStyledIcon {
|
3
|
-
styles: CSSProperties;
|
4
|
-
}
|
5
|
-
export declare const StyledIcon: import('@emotion/styled').StyledComponent<{
|
6
|
-
theme?: import('@emotion/react').Theme;
|
7
|
-
as?: React.ElementType;
|
8
|
-
} & IStyledIcon, import('react').SVGProps<SVGSVGElement>, {}>;
|
9
|
-
interface IStyledIconPath {
|
10
|
-
fill: string;
|
11
|
-
}
|
12
|
-
export declare const StyledIconPath: import('@emotion/styled').StyledComponent<{
|
13
|
-
theme?: import('@emotion/react').Theme;
|
14
|
-
as?: React.ElementType;
|
15
|
-
} & IStyledIconPath, import('react').SVGProps<SVGPathElement>, {}>;
|
16
|
-
export {};
|
@@ -1,13 +0,0 @@
|
|
1
|
-
import { CSSProperties } from 'react';
|
2
|
-
interface IStyledKeyNumber {
|
3
|
-
styles: CSSProperties;
|
4
|
-
}
|
5
|
-
export declare const StyledKeyNumber: import('@emotion/styled').StyledComponent<{
|
6
|
-
theme?: import('@emotion/react').Theme;
|
7
|
-
as?: React.ElementType;
|
8
|
-
} & IStyledKeyNumber, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
9
|
-
export declare const StyledKeyNumbersListItemNumber: import('@emotion/styled').StyledComponent<{
|
10
|
-
theme?: import('@emotion/react').Theme;
|
11
|
-
as?: React.ElementType;
|
12
|
-
}, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
13
|
-
export {};
|
@@ -1,22 +0,0 @@
|
|
1
|
-
import { CSSProperties } from 'react';
|
2
|
-
import { Theme } from '../../types/theme';
|
3
|
-
interface IStyledLanguageSwitcher {
|
4
|
-
theme: Theme;
|
5
|
-
styles: CSSProperties;
|
6
|
-
}
|
7
|
-
export declare const StyledLanguageSwitcher: import('@emotion/styled').StyledComponent<{
|
8
|
-
theme?: import('@emotion/react').Theme;
|
9
|
-
as?: React.ElementType;
|
10
|
-
} & IStyledLanguageSwitcher, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
11
|
-
export declare const StyledLanguageSwitcherIcon: import('@emotion/styled').StyledComponent<{
|
12
|
-
theme?: import('@emotion/react').Theme;
|
13
|
-
as?: React.ElementType;
|
14
|
-
}, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
15
|
-
interface IStyledLanguageSwitcherSelect {
|
16
|
-
theme: Theme;
|
17
|
-
}
|
18
|
-
export declare const StyledLanguageSwitcherSelect: import('@emotion/styled').StyledComponent<{
|
19
|
-
theme?: import('@emotion/react').Theme;
|
20
|
-
as?: React.ElementType;
|
21
|
-
} & IStyledLanguageSwitcherSelect, import('react').DetailedHTMLProps<import('react').SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>, {}>;
|
22
|
-
export {};
|
@@ -1,11 +0,0 @@
|
|
1
|
-
import { CSSProperties } from 'react';
|
2
|
-
import { Theme } from '../../types/theme';
|
3
|
-
interface IStyledLogo {
|
4
|
-
theme: Theme;
|
5
|
-
styles: CSSProperties;
|
6
|
-
}
|
7
|
-
export declare const StyledLogo: import('@emotion/styled').StyledComponent<{
|
8
|
-
theme?: import('@emotion/react').Theme;
|
9
|
-
as?: React.ElementType;
|
10
|
-
} & IStyledLogo, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
11
|
-
export {};
|
@@ -1,24 +0,0 @@
|
|
1
|
-
import { CSSProperties } from 'react';
|
2
|
-
import { Theme } from '../../types/theme';
|
3
|
-
import { Align } from './types';
|
4
|
-
interface IStyledModal {
|
5
|
-
theme: Theme;
|
6
|
-
styles: CSSProperties;
|
7
|
-
}
|
8
|
-
export declare const StyledModal: import('@emotion/styled').StyledComponent<{
|
9
|
-
theme?: import('@emotion/react').Theme;
|
10
|
-
as?: React.ElementType;
|
11
|
-
} & IStyledModal, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
12
|
-
interface IStyledModalContent {
|
13
|
-
theme: Theme;
|
14
|
-
align: Align;
|
15
|
-
}
|
16
|
-
export declare const StyledModalContent: import('@emotion/styled').StyledComponent<{
|
17
|
-
theme?: import('@emotion/react').Theme;
|
18
|
-
as?: React.ElementType;
|
19
|
-
} & IStyledModalContent, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
20
|
-
export declare const StyledModalCloseButton: import('@emotion/styled').StyledComponent<{
|
21
|
-
theme?: import('@emotion/react').Theme;
|
22
|
-
as?: React.ElementType;
|
23
|
-
}, import('react').DetailedHTMLProps<import('react').ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, {}>;
|
24
|
-
export {};
|
@@ -1,11 +0,0 @@
|
|
1
|
-
import { CSSProperties } from 'react';
|
2
|
-
import { Theme } from '../../types/theme';
|
3
|
-
interface IStyledNavLegal {
|
4
|
-
theme: Theme;
|
5
|
-
styles: CSSProperties;
|
6
|
-
}
|
7
|
-
export declare const StyledNavLegal: import('@emotion/styled').StyledComponent<{
|
8
|
-
theme?: import('@emotion/react').Theme;
|
9
|
-
as?: React.ElementType;
|
10
|
-
} & IStyledNavLegal, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
11
|
-
export {};
|