@eleven-labs/design-system 0.6.1 → 0.6.3
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/Icon/Icon.d.ts +1 -1
- package/dist/components/Atoms/Svgs/Github.d.ts +4 -0
- package/dist/components/Atoms/Svgs/Tuto.d.ts +4 -0
- package/dist/components/Atoms/Svgs/index.d.ts +2 -0
- package/dist/constants/tokenNameList.d.ts +1 -1
- package/dist/constants/tokenVariables.d.ts +7 -1
- package/dist/index.es.js +666 -602
- package/dist/index.umd.cjs +9 -9
- package/dist/scss/abstracts/variables/_token-variables.scss +1 -1
- package/dist/scss/abstracts/variables/_variables.scss +1 -1
- package/dist/svgs/github.svg +1 -0
- package/dist/svgs/tuto.svg +1 -0
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { ColorSystemProps, IconNameType, MarginSystemProps } from '../../../types';
|
|
3
|
-
export type IconProps = Omit<React.SVGProps<SVGSVGElement>, 'color'> & MarginSystemProps & Pick<ColorSystemProps, 'color'> & {
|
|
3
|
+
export type IconProps = Omit<React.SVGProps<SVGSVGElement>, 'name' | 'color'> & MarginSystemProps & Pick<ColorSystemProps, 'color'> & {
|
|
4
4
|
name: IconNameType;
|
|
5
5
|
size?: string | number;
|
|
6
6
|
};
|
|
@@ -3,6 +3,7 @@ export { default as ArrowBack } from "./ArrowBack";
|
|
|
3
3
|
export { default as Calendar } from "./Calendar";
|
|
4
4
|
export { default as Close } from "./Close";
|
|
5
5
|
export { default as Facebook } from "./Facebook";
|
|
6
|
+
export { default as Github } from "./Github";
|
|
6
7
|
export { default as Language } from "./Language";
|
|
7
8
|
export { default as Link } from "./Link";
|
|
8
9
|
export { default as Linkedin } from "./Linkedin";
|
|
@@ -11,5 +12,6 @@ export { default as Message } from "./Message";
|
|
|
11
12
|
export { default as Person } from "./Person";
|
|
12
13
|
export { default as Rss } from "./Rss";
|
|
13
14
|
export { default as Search } from "./Search";
|
|
15
|
+
export { default as Tuto } from "./Tuto";
|
|
14
16
|
export { default as Twitter } from "./Twitter";
|
|
15
17
|
export { default as Welcometothejungle } from "./Welcometothejungle";
|
|
@@ -4,6 +4,6 @@ export declare const spacingTokenNameList: readonly ("0" | "xs" | "xxs-3" | "xxs
|
|
|
4
4
|
export declare const widthTokenNameList: readonly ("full" | "screen")[];
|
|
5
5
|
export declare const heightTokenNameList: readonly ("full" | "screen")[];
|
|
6
6
|
export declare const fontWeightTokenNameList: readonly ("regular" | "medium" | "bold")[];
|
|
7
|
-
export declare const iconTokenNameList: readonly ("access-time" | "arrow-back" | "calendar" | "close" | "facebook" | "language" | "link" | "linkedin" | "rss" | "message" | "person" | "search" | "twitter" | "welcometothejungle")[];
|
|
7
|
+
export declare const iconTokenNameList: readonly ("access-time" | "arrow-back" | "calendar" | "close" | "facebook" | "language" | "link" | "linkedin" | "rss" | "message" | "person" | "search" | "twitter" | "welcometothejungle" | "github" | "tuto")[];
|
|
8
8
|
export declare const headingSizeTokenNameList: readonly ("s" | "m" | "l" | "xl")[];
|
|
9
9
|
export declare const textSizeTokenNameList: readonly ("xs" | "s" | "m")[];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Wed,
|
|
3
|
+
* Generated on Wed, 18 Oct 2023 18:37:56 GMT
|
|
4
4
|
*/
|
|
5
5
|
export declare const tokenVariables: {
|
|
6
6
|
asset: {
|
|
@@ -67,6 +67,12 @@ export declare const tokenVariables: {
|
|
|
67
67
|
welcometothejungle: {
|
|
68
68
|
value: string;
|
|
69
69
|
};
|
|
70
|
+
github: {
|
|
71
|
+
value: string;
|
|
72
|
+
};
|
|
73
|
+
tuto: {
|
|
74
|
+
value: string;
|
|
75
|
+
};
|
|
70
76
|
};
|
|
71
77
|
};
|
|
72
78
|
breakpoint: {
|