@eleven-labs/design-system 0.20.0 → 0.22.0
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/components/Atoms/Blockquote/Blockquote.d.ts +2 -2
- package/dist/components/Atoms/Breadcrumb/Breadcrumb.d.ts +8 -0
- package/dist/components/Atoms/Breadcrumb/index.d.ts +1 -0
- package/dist/components/Atoms/BurgerButton/BurgerButton.d.ts +2 -1
- package/dist/components/Atoms/CloseButton/CloseButton.d.ts +2 -1
- package/dist/components/Atoms/Divider/Divider.d.ts +2 -2
- package/dist/components/Atoms/Icon/Icon.d.ts +2 -0
- package/dist/components/Atoms/Svgs/Underline.d.ts +4 -0
- package/dist/components/Atoms/Svgs/index.d.ts +1 -0
- package/dist/components/Atoms/index.d.ts +1 -0
- package/dist/components/Molecules/Blocks/CategoryEndingBlock/CategoryEndingBlock.d.ts +2 -1
- package/dist/components/Molecules/Blocks/CategoryIntroBlock/CategoryIntroBlock.d.ts +2 -5
- package/dist/components/Molecules/Blocks/HomeIntroBlock/HomeIntroBlock.d.ts +2 -1
- package/dist/components/Molecules/Cards/AuthorCard/AuthorCard.d.ts +4 -1
- package/dist/components/Molecules/Cards/ContactCard/ContactCard.d.ts +2 -1
- package/dist/components/Molecules/Cards/NewsletterCard/NewsletterCard.d.ts +3 -0
- package/dist/components/Molecules/Cards/PostCard/PostCard.d.ts +5 -1
- package/dist/components/Molecules/Cards/SummaryCard/SummaryCard.d.ts +2 -1
- package/dist/components/Molecules/Pagination/Pagination.d.ts +2 -2
- package/dist/components/Molecules/PostMetadata/PostMetadata.d.ts +2 -2
- package/dist/components/Organisms/Autocomplete/AutocompleteResult/AutocompleteResult.d.ts +4 -3
- package/dist/components/Organisms/Blocks/LastArticlesBlock/LastArticlesBlock.d.ts +11 -0
- package/dist/components/Organisms/Blocks/LastTutorialsBlock/LastTutorialsBlock.d.ts +13 -0
- package/dist/components/Organisms/Footer/Footer.d.ts +5 -5
- package/dist/components/Organisms/Header/Header.d.ts +5 -4
- package/dist/constants/tokenNameList.d.ts +4 -5
- package/dist/constants/tokenVariables.d.ts +62 -62
- package/dist/imgs/category-intro-block-desktop.jpg +0 -0
- package/dist/imgs/category-intro-block-mobile.jpg +0 -0
- package/dist/index.es.js +2073 -1974
- package/dist/index.umd.cjs +16 -16
- package/dist/pages/HomePage/HomePage.d.ts +4 -2
- package/dist/pages/PostPage/PostHeader/PostHeader.d.ts +4 -2
- package/dist/pages/PostPage/PostPage.d.ts +5 -3
- package/dist/scss/abstracts/functions/_index.scss +1 -1
- package/dist/scss/abstracts/functions/_map-get-strict.scss +9 -0
- package/dist/scss/abstracts/variables/_token-variables.scss +21 -23
- package/dist/scss/abstracts/variables/_variables.scss +24 -28
- package/dist/style.css +1 -1
- package/dist/svgs/underline.svg +1 -0
- package/dist/templates/LayoutContentWithSidebar/LayoutContentWithSidebar.d.ts +2 -2
- package/dist/templates/LayoutTemplate/LayoutTemplate.d.ts +2 -2
- package/dist/types/ComponentPropsWithoutRef.d.ts +3 -0
- package/dist/types/SystemProps/ColorSystemProps.d.ts +1 -1
- package/dist/types/SystemProps/SpacingSystemProps.d.ts +7 -7
- package/dist/types/index.d.ts +1 -0
- package/dist/types/tokenTypes.d.ts +1 -1
- package/package.json +1 -2
- package/dist/fonts/WorkSans-Bold.woff +0 -0
- package/dist/fonts/WorkSans-Bold.woff2 +0 -0
- package/dist/fonts/WorkSans-Medium.woff +0 -0
- package/dist/fonts/WorkSans-Medium.woff2 +0 -0
- package/dist/fonts/WorkSans-Regular.woff +0 -0
- package/dist/fonts/WorkSans-Regular.woff2 +0 -0
- package/dist/helpers/getCdnAssetsFile.d.ts +0 -1
- package/dist/imgs/category-intro-block-desktop.png +0 -0
- package/dist/imgs/category-intro-block-mobile.png +0 -0
- package/dist/scss/abstracts/functions/_get-cdn-assets-file.scss +0 -9
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type { MarginSystemProps } from '../../../types';
|
|
3
|
-
export interface BlockquoteProps extends MarginSystemProps, Omit<
|
|
2
|
+
import type { ComponentPropsWithoutRef, MarginSystemProps } from '../../../types';
|
|
3
|
+
export interface BlockquoteProps extends MarginSystemProps, Omit<ComponentPropsWithoutRef<'blockquote'>, 'align'> {
|
|
4
4
|
}
|
|
5
5
|
export declare const Blockquote: React.FC<BlockquoteProps>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { ComponentPropsWithoutRef, MarginSystemProps } from '../../../types';
|
|
3
|
+
export interface BreadcrumbProps extends MarginSystemProps {
|
|
4
|
+
items: ({
|
|
5
|
+
label: string;
|
|
6
|
+
} & ComponentPropsWithoutRef<'a'>)[];
|
|
7
|
+
}
|
|
8
|
+
export declare const Breadcrumb: React.FC<BreadcrumbProps>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Breadcrumb';
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { FlexProps } from '../../../components';
|
|
3
|
-
|
|
3
|
+
import type { ComponentPropsWithoutRef } from '../../../types';
|
|
4
|
+
export interface BurgerButtonProps extends FlexProps, ComponentPropsWithoutRef<'button'> {
|
|
4
5
|
}
|
|
5
6
|
export declare const BurgerButton: React.FC<BurgerButtonProps>;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { FlexProps } from '../../../components';
|
|
3
|
+
import type { ComponentPropsWithoutRef } from '../../../types';
|
|
3
4
|
export declare const closeButtonVariant: readonly ["primary", "secondary"];
|
|
4
5
|
export type CloseButtonVariantType = (typeof closeButtonVariant)[number];
|
|
5
|
-
export interface CloseButtonProps extends FlexProps,
|
|
6
|
+
export interface CloseButtonProps extends FlexProps, ComponentPropsWithoutRef<'button'> {
|
|
6
7
|
variant?: CloseButtonVariantType;
|
|
7
8
|
}
|
|
8
9
|
export declare const CloseButton: React.FC<CloseButtonProps>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type { MarginSystemProps } from '../../../types';
|
|
3
|
-
export interface DividerProps extends
|
|
2
|
+
import type { ComponentPropsWithoutRef, MarginSystemProps } from '../../../types';
|
|
3
|
+
export interface DividerProps extends ComponentPropsWithoutRef<'hr'>, MarginSystemProps {
|
|
4
4
|
}
|
|
5
5
|
export declare const Divider: React.FC<DividerProps>;
|
|
@@ -3,5 +3,7 @@ import type { ColorSystemProps, IconNameType, MarginSystemProps } from '../../..
|
|
|
3
3
|
export type IconProps = Omit<React.SVGProps<SVGSVGElement>, 'name' | 'color'> & MarginSystemProps & Pick<ColorSystemProps, 'color'> & {
|
|
4
4
|
name: IconNameType;
|
|
5
5
|
size?: string | number;
|
|
6
|
+
width?: string | number;
|
|
7
|
+
height?: string | number;
|
|
6
8
|
};
|
|
7
9
|
export declare const Icon: React.FC<IconProps>;
|
|
@@ -12,4 +12,5 @@ export { default as Person } from './Person';
|
|
|
12
12
|
export { default as Rss } from './Rss';
|
|
13
13
|
export { default as Search } from './Search';
|
|
14
14
|
export { default as Twitter } from './Twitter';
|
|
15
|
+
export { default as Underline } from './Underline';
|
|
15
16
|
export { default as Welcometothejungle } from './Welcometothejungle';
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { BoxProps } from '../../../../components';
|
|
3
|
+
import type { ComponentPropsWithoutRef } from '../../../../types';
|
|
3
4
|
export interface CategoryEndingBlockProps extends BoxProps {
|
|
4
5
|
title: string;
|
|
5
6
|
description: string;
|
|
6
7
|
expertiseLink: {
|
|
7
8
|
label: string;
|
|
8
|
-
} &
|
|
9
|
+
} & ComponentPropsWithoutRef<'a'>;
|
|
9
10
|
}
|
|
10
11
|
export declare const CategoryEndingBlock: React.FC<CategoryEndingBlockProps>;
|
|
@@ -1,11 +1,8 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type { BoxProps } from '../../../../components';
|
|
2
|
+
import type { BoxProps, BreadcrumbProps } from '../../../../components';
|
|
3
3
|
export interface CategoryIntroBlockProps extends BoxProps {
|
|
4
|
-
name: string;
|
|
5
4
|
title: string;
|
|
6
5
|
description: string;
|
|
7
|
-
|
|
8
|
-
label: string;
|
|
9
|
-
} & React.ComponentPropsWithoutRef<'a'>;
|
|
6
|
+
breadcrumb: BreadcrumbProps;
|
|
10
7
|
}
|
|
11
8
|
export declare const CategoryIntroBlock: React.FC<CategoryIntroBlockProps>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import type { ComponentPropsWithoutRef } from '../../../../types';
|
|
2
3
|
export interface HomeIntroBlockProps {
|
|
3
4
|
intro: string;
|
|
4
5
|
title: string;
|
|
5
6
|
description: string;
|
|
6
7
|
elevenLabsLink: {
|
|
7
8
|
label: string;
|
|
8
|
-
} &
|
|
9
|
+
} & ComponentPropsWithoutRef<'a'>;
|
|
9
10
|
}
|
|
10
11
|
export declare const HomeIntroBlock: React.FC<HomeIntroBlockProps>;
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { FlexProps } from '../../../../components';
|
|
3
|
+
import type { ComponentPropsWithoutRef } from '../../../../types';
|
|
3
4
|
export interface AuthorCardProps extends FlexProps {
|
|
4
5
|
name: string;
|
|
5
6
|
description: string;
|
|
6
7
|
avatarImageUrl?: string;
|
|
7
|
-
link:
|
|
8
|
+
link: {
|
|
9
|
+
label: string;
|
|
10
|
+
} & ComponentPropsWithoutRef<'a'>;
|
|
8
11
|
}
|
|
9
12
|
export declare const AuthorCard: React.FC<AuthorCardProps>;
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { FlexProps } from '../../../../components';
|
|
3
|
+
import type { ComponentPropsWithoutRef } from '../../../../types';
|
|
3
4
|
export type ContactCardProps = {
|
|
4
5
|
title: string;
|
|
5
6
|
subtitle: string;
|
|
6
7
|
description: string;
|
|
7
8
|
link: {
|
|
8
9
|
label: React.ReactNode;
|
|
9
|
-
} &
|
|
10
|
+
} & ComponentPropsWithoutRef<'a'>;
|
|
10
11
|
} & FlexProps;
|
|
11
12
|
export declare const ContactCard: React.FC<ContactCardProps>;
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { FlexProps } from '../../../../components';
|
|
3
|
+
export declare const newsletterCardVariant: readonly ["horizontal", "vertical"];
|
|
4
|
+
export type NewsletterCardVariantType = (typeof newsletterCardVariant)[number];
|
|
3
5
|
export interface NewsletterCardProps extends Omit<FlexProps, 'title'> {
|
|
4
6
|
title: string;
|
|
5
7
|
description: string;
|
|
6
8
|
children: React.ReactNode;
|
|
9
|
+
variant?: NewsletterCardVariantType;
|
|
7
10
|
}
|
|
8
11
|
export declare const NewsletterCard: React.FC<NewsletterCardProps>;
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { BoxProps } from '../../../../components';
|
|
3
|
+
import type { ComponentPropsWithoutRef } from '../../../../types';
|
|
4
|
+
export declare const postCardVariant: readonly ["primary", "secondary"];
|
|
5
|
+
export type PostCardVariantType = (typeof postCardVariant)[number];
|
|
3
6
|
export interface PostCardProps extends BoxProps {
|
|
4
7
|
contentType?: 'article' | 'tutorial';
|
|
8
|
+
variant?: PostCardVariantType;
|
|
5
9
|
slug?: string;
|
|
6
10
|
title?: string;
|
|
7
11
|
excerpt?: string;
|
|
@@ -11,7 +15,7 @@ export interface PostCardProps extends BoxProps {
|
|
|
11
15
|
username: string;
|
|
12
16
|
name: string;
|
|
13
17
|
}[];
|
|
14
|
-
link?:
|
|
18
|
+
link?: ComponentPropsWithoutRef<'a'>;
|
|
15
19
|
tutorialLabel?: string;
|
|
16
20
|
isLoading?: boolean;
|
|
17
21
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { BoxProps } from '../../../../components';
|
|
3
|
+
import type { ComponentPropsWithoutRef } from '../../../../types';
|
|
3
4
|
export declare const SummaryCardVariant: readonly ["primary", "secondary"];
|
|
4
5
|
export type SummaryCardVariantType = (typeof SummaryCardVariant)[number];
|
|
5
6
|
export interface SummaryCardProps extends BoxProps {
|
|
@@ -9,6 +10,6 @@ export interface SummaryCardProps extends BoxProps {
|
|
|
9
10
|
sections: ({
|
|
10
11
|
name: string;
|
|
11
12
|
label: string;
|
|
12
|
-
} &
|
|
13
|
+
} & ComponentPropsWithoutRef<'a'>)[];
|
|
13
14
|
}
|
|
14
15
|
export declare const SummaryCard: React.FC<SummaryCardProps>;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type { SpacingSystemProps } from '../../../types';
|
|
2
|
+
import type { ComponentPropsWithoutRef, SpacingSystemProps } from '../../../types';
|
|
3
3
|
export interface PaginationProps extends SpacingSystemProps {
|
|
4
4
|
currentPage: number;
|
|
5
5
|
totalPages: number;
|
|
6
|
-
getLink: (page: number) =>
|
|
6
|
+
getLink: (page: number) => ComponentPropsWithoutRef<'a'>;
|
|
7
7
|
siblingCount?: number;
|
|
8
8
|
}
|
|
9
9
|
export declare const Pagination: React.FC<PaginationProps>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type { SpacingSystemProps } from '../../../types';
|
|
2
|
+
import type { ComponentPropsWithoutRef, SpacingSystemProps } from '../../../types';
|
|
3
3
|
export declare const postMetadataVariant: readonly ["primary", "secondary"];
|
|
4
4
|
export type PostMetadataVariantType = (typeof postMetadataVariant)[number];
|
|
5
5
|
export interface PostMetadataProps extends SpacingSystemProps {
|
|
@@ -9,7 +9,7 @@ export interface PostMetadataProps extends SpacingSystemProps {
|
|
|
9
9
|
authors?: {
|
|
10
10
|
username: string;
|
|
11
11
|
name: string;
|
|
12
|
-
link?:
|
|
12
|
+
link?: ComponentPropsWithoutRef<'a'>;
|
|
13
13
|
}[];
|
|
14
14
|
isLoading?: boolean;
|
|
15
15
|
displayedFields?: ('date' | 'readingTime' | 'authors')[];
|
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { BoxProps } from '../../../../components';
|
|
3
|
+
import type { ComponentPropsWithoutRef } from '../../../../types';
|
|
3
4
|
export interface AutocompleteItem {
|
|
4
5
|
slug: string;
|
|
5
6
|
title: string;
|
|
6
|
-
description: string;
|
|
7
7
|
date: string;
|
|
8
8
|
authors?: {
|
|
9
9
|
username: string;
|
|
10
10
|
name: string;
|
|
11
11
|
}[];
|
|
12
|
+
link: ComponentPropsWithoutRef<'a'>;
|
|
12
13
|
}
|
|
13
14
|
export type AutocompleteResultOptions = {
|
|
14
15
|
isOpen?: boolean;
|
|
15
|
-
items:
|
|
16
|
+
items: AutocompleteItem[];
|
|
16
17
|
searchValue?: string;
|
|
17
|
-
searchLink?:
|
|
18
|
+
searchLink?: ComponentPropsWithoutRef<'a'> & {
|
|
18
19
|
label: string;
|
|
19
20
|
};
|
|
20
21
|
searchNotFound?: {
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { BoxProps, PostCardProps } from '../../../../components';
|
|
3
|
+
import type { ComponentPropsWithoutRef } from '../../../../types';
|
|
4
|
+
export interface LastArticlesBlockProps extends BoxProps {
|
|
5
|
+
title: string;
|
|
6
|
+
posts: Partial<PostCardProps>[];
|
|
7
|
+
linkSeeMore: {
|
|
8
|
+
label: string;
|
|
9
|
+
} & ComponentPropsWithoutRef<'a'>;
|
|
10
|
+
}
|
|
11
|
+
export declare const LastArticlesBlock: React.FC<LastArticlesBlockProps>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { FlexProps, PostCardProps } from '../../../../components';
|
|
3
|
+
import type { ComponentPropsWithoutRef } from '../../../../types';
|
|
4
|
+
export interface LastTutorialsBlockProps extends FlexProps {
|
|
5
|
+
title: string;
|
|
6
|
+
description: string;
|
|
7
|
+
posts: Partial<PostCardProps>[];
|
|
8
|
+
tutorialLabel: string;
|
|
9
|
+
linkSeeMore: {
|
|
10
|
+
label: string;
|
|
11
|
+
} & ComponentPropsWithoutRef<'a'>;
|
|
12
|
+
}
|
|
13
|
+
export declare const LastTutorialsBlock: React.FC<LastTutorialsBlockProps>;
|
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type { IconNameType } from '../../../types';
|
|
2
|
+
import type { ComponentPropsWithoutRef, IconNameType } from '../../../types';
|
|
3
3
|
export interface FooterProps {
|
|
4
4
|
introBlock: {
|
|
5
5
|
title: React.ReactNode;
|
|
6
6
|
description: React.ReactNode;
|
|
7
7
|
};
|
|
8
|
-
elevenLabsSiteLink:
|
|
8
|
+
elevenLabsSiteLink: ComponentPropsWithoutRef<'a'>;
|
|
9
9
|
addressList: {
|
|
10
10
|
title?: React.ReactNode;
|
|
11
11
|
description: React.ReactNode;
|
|
12
12
|
}[];
|
|
13
13
|
contactLink: {
|
|
14
14
|
label: React.ReactNode;
|
|
15
|
-
} &
|
|
15
|
+
} & ComponentPropsWithoutRef<'a'>;
|
|
16
16
|
socialLinks: ({
|
|
17
17
|
iconName: Extract<IconNameType, 'rss' | 'facebook' | 'twitter' | 'linkedin' | 'welcometothejungle'>;
|
|
18
|
-
} &
|
|
18
|
+
} & ComponentPropsWithoutRef<'a'>)[];
|
|
19
19
|
languageLinks: ({
|
|
20
20
|
label: React.ReactNode;
|
|
21
21
|
isActive?: boolean;
|
|
22
|
-
} &
|
|
22
|
+
} & ComponentPropsWithoutRef<'a'>)[];
|
|
23
23
|
}
|
|
24
24
|
export declare const Footer: React.FC<FooterProps>;
|
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { AutocompleteProps } from '../../../components';
|
|
3
|
+
import type { ComponentPropsWithoutRef } from '../../../types';
|
|
3
4
|
export interface HeaderProps {
|
|
4
|
-
homeLink:
|
|
5
|
+
homeLink: ComponentPropsWithoutRef<'a'>;
|
|
5
6
|
categories: ({
|
|
6
7
|
label: React.ReactNode;
|
|
7
|
-
} &
|
|
8
|
+
} & ComponentPropsWithoutRef<'a'>)[];
|
|
8
9
|
hasTutorial: boolean;
|
|
9
10
|
tutorialLink: {
|
|
10
11
|
label: React.ReactNode;
|
|
11
|
-
} &
|
|
12
|
+
} & ComponentPropsWithoutRef<'a'>;
|
|
12
13
|
contactLink: {
|
|
13
14
|
label: React.ReactNode;
|
|
14
|
-
} &
|
|
15
|
+
} & ComponentPropsWithoutRef<'a'>;
|
|
15
16
|
autocomplete: AutocompleteProps;
|
|
16
17
|
onToggleMenu: () => void;
|
|
17
18
|
menuIsOpen?: boolean;
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const colorTokenNameList: readonly ColorType[];
|
|
1
|
+
export declare const colorTokenNameList: readonly ("primary" | "primary-dark" | "primary-very-dark" | "secondary" | "secondary-dark" | "info" | "accent" | "ultra-light-grey" | "light-grey" | "grey" | "dark-grey" | "ultra-dark-grey" | "black" | "white")[];
|
|
3
2
|
export declare const spacingTokenNameList: readonly ("0" | "xs" | "xxs-3" | "xxs-2" | "xxs" | "s" | "m" | "l" | "xl" | "xxl" | "xxl-2" | "xxl-3")[];
|
|
4
|
-
export declare const widthTokenNameList: readonly ("full" | "screen")[];
|
|
3
|
+
export declare const widthTokenNameList: readonly ("full" | "screen" | "content-container")[];
|
|
5
4
|
export declare const heightTokenNameList: readonly ("full" | "screen")[];
|
|
6
|
-
export declare const fontWeightTokenNameList: readonly ("regular" | "medium" | "bold")[];
|
|
7
|
-
export declare const iconTokenNameList: readonly ("access-time" | "calendar" | "facebook" | "language" | "link" | "linkedin" | "rss" | "message" | "person" | "search" | "twitter" | "welcometothejungle" | "github" | "arrow")[];
|
|
5
|
+
export declare const fontWeightTokenNameList: readonly ("regular" | "medium" | "semi-bold" | "bold")[];
|
|
6
|
+
export declare const iconTokenNameList: readonly ("access-time" | "calendar" | "facebook" | "language" | "link" | "linkedin" | "rss" | "message" | "person" | "search" | "twitter" | "welcometothejungle" | "github" | "arrow" | "underline")[];
|
|
8
7
|
export declare const headingSizeTokenNameList: readonly ("s" | "m" | "l" | "xl")[];
|
|
9
8
|
export declare const textSizeTokenNameList: readonly ("xs" | "s" | "m")[];
|
|
@@ -1,29 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Wed, 17 Jan 2024 08:04:41 GMT
|
|
4
4
|
*/
|
|
5
5
|
export declare const tokenVariables: {
|
|
6
6
|
asset: {
|
|
7
|
-
font: {
|
|
8
|
-
'WorkSans-Regular': {
|
|
9
|
-
value: string;
|
|
10
|
-
family: string;
|
|
11
|
-
weight: string;
|
|
12
|
-
extensions: string[];
|
|
13
|
-
};
|
|
14
|
-
'WorkSans-Medium': {
|
|
15
|
-
value: string;
|
|
16
|
-
family: string;
|
|
17
|
-
weight: string;
|
|
18
|
-
extensions: string[];
|
|
19
|
-
};
|
|
20
|
-
'WorkSans-Bold': {
|
|
21
|
-
value: string;
|
|
22
|
-
family: string;
|
|
23
|
-
weight: string;
|
|
24
|
-
extensions: string[];
|
|
25
|
-
};
|
|
26
|
-
};
|
|
27
7
|
icon: {
|
|
28
8
|
'access-time': {
|
|
29
9
|
value: string;
|
|
@@ -67,14 +47,26 @@ export declare const tokenVariables: {
|
|
|
67
47
|
arrow: {
|
|
68
48
|
value: string;
|
|
69
49
|
};
|
|
50
|
+
underline: {
|
|
51
|
+
value: string;
|
|
52
|
+
};
|
|
70
53
|
};
|
|
71
54
|
};
|
|
72
55
|
'font-family': {
|
|
73
56
|
base: {
|
|
74
57
|
value: string;
|
|
58
|
+
name: string;
|
|
59
|
+
weights: string[];
|
|
75
60
|
};
|
|
76
|
-
|
|
61
|
+
heading: {
|
|
62
|
+
value: string;
|
|
63
|
+
name: string;
|
|
64
|
+
weights: string[];
|
|
65
|
+
};
|
|
66
|
+
blockquote: {
|
|
77
67
|
value: string;
|
|
68
|
+
name: string;
|
|
69
|
+
weights: string[];
|
|
78
70
|
};
|
|
79
71
|
};
|
|
80
72
|
'font-size': {
|
|
@@ -113,6 +105,9 @@ export declare const tokenVariables: {
|
|
|
113
105
|
medium: {
|
|
114
106
|
value: string;
|
|
115
107
|
};
|
|
108
|
+
'semi-bold': {
|
|
109
|
+
value: string;
|
|
110
|
+
};
|
|
116
111
|
bold: {
|
|
117
112
|
value: string;
|
|
118
113
|
};
|
|
@@ -120,6 +115,9 @@ export declare const tokenVariables: {
|
|
|
120
115
|
typography: {
|
|
121
116
|
heading: {
|
|
122
117
|
base: {
|
|
118
|
+
'font-family': {
|
|
119
|
+
value: string;
|
|
120
|
+
};
|
|
123
121
|
'line-height': {
|
|
124
122
|
value: string;
|
|
125
123
|
};
|
|
@@ -286,49 +284,48 @@ export declare const tokenVariables: {
|
|
|
286
284
|
};
|
|
287
285
|
color: {
|
|
288
286
|
primary: {
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
value: string;
|
|
297
|
-
};
|
|
287
|
+
value: string;
|
|
288
|
+
};
|
|
289
|
+
'primary-dark': {
|
|
290
|
+
value: string;
|
|
291
|
+
};
|
|
292
|
+
'primary-very-dark': {
|
|
293
|
+
value: string;
|
|
298
294
|
};
|
|
299
295
|
secondary: {
|
|
300
|
-
|
|
301
|
-
value: string;
|
|
302
|
-
};
|
|
303
|
-
amaranth: {
|
|
304
|
-
value: string;
|
|
305
|
-
};
|
|
306
|
-
yellow: {
|
|
307
|
-
value: string;
|
|
308
|
-
};
|
|
296
|
+
value: string;
|
|
309
297
|
};
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
298
|
+
'secondary-dark': {
|
|
299
|
+
value: string;
|
|
300
|
+
};
|
|
301
|
+
info: {
|
|
302
|
+
value: string;
|
|
303
|
+
description: string;
|
|
304
|
+
};
|
|
305
|
+
accent: {
|
|
306
|
+
value: string;
|
|
307
|
+
description: string;
|
|
308
|
+
};
|
|
309
|
+
'ultra-light-grey': {
|
|
310
|
+
value: string;
|
|
311
|
+
};
|
|
312
|
+
'light-grey': {
|
|
313
|
+
value: string;
|
|
314
|
+
};
|
|
315
|
+
grey: {
|
|
316
|
+
value: string;
|
|
317
|
+
};
|
|
318
|
+
'dark-grey': {
|
|
319
|
+
value: string;
|
|
320
|
+
};
|
|
321
|
+
'ultra-dark-grey': {
|
|
322
|
+
value: string;
|
|
323
|
+
};
|
|
324
|
+
black: {
|
|
325
|
+
value: string;
|
|
326
|
+
};
|
|
327
|
+
white: {
|
|
328
|
+
value: string;
|
|
332
329
|
};
|
|
333
330
|
};
|
|
334
331
|
height: {
|
|
@@ -384,5 +381,8 @@ export declare const tokenVariables: {
|
|
|
384
381
|
screen: {
|
|
385
382
|
value: string;
|
|
386
383
|
};
|
|
384
|
+
'content-container': {
|
|
385
|
+
value: string;
|
|
386
|
+
};
|
|
387
387
|
};
|
|
388
388
|
};
|
|
Binary file
|
|
Binary file
|