@eleven-labs/design-system 0.6.0 → 0.6.2
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/Svgs/AccessTime.d.ts +3 -2
- package/dist/components/Atoms/Svgs/ArrowBack.d.ts +3 -2
- package/dist/components/Atoms/Svgs/Calendar.d.ts +3 -2
- package/dist/components/Atoms/Svgs/Close.d.ts +3 -2
- package/dist/components/Atoms/Svgs/Facebook.d.ts +3 -2
- package/dist/components/Atoms/Svgs/Github.d.ts +4 -0
- package/dist/components/Atoms/Svgs/Language.d.ts +3 -2
- package/dist/components/Atoms/Svgs/Link.d.ts +3 -2
- package/dist/components/Atoms/Svgs/Linkedin.d.ts +3 -2
- package/dist/components/Atoms/Svgs/Logo.d.ts +3 -2
- package/dist/components/Atoms/Svgs/Message.d.ts +3 -2
- package/dist/components/Atoms/Svgs/Person.d.ts +3 -2
- package/dist/components/Atoms/Svgs/Rss.d.ts +3 -2
- package/dist/components/Atoms/Svgs/Search.d.ts +3 -2
- package/dist/components/Atoms/Svgs/Twitter.d.ts +3 -2
- package/dist/components/Atoms/Svgs/Welcometothejungle.d.ts +3 -2
- package/dist/components/Atoms/Svgs/index.d.ts +1 -0
- package/dist/constants/tokenNameList.d.ts +1 -1
- package/dist/constants/tokenVariables.d.ts +4 -1
- package/dist/index.es.js +771 -774
- 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/style.css +1 -1
- package/dist/svgs/github.svg +1 -0
- package/package.json +32 -32
- package/dist/typings.d.ts +0 -5
- package/dist/vite-env.d.ts +0 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
declare const SvgAccessTime: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
|
3
4
|
export default SvgAccessTime;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
declare const SvgArrowBack: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
|
3
4
|
export default SvgArrowBack;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
declare const SvgCalendar: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
|
3
4
|
export default SvgCalendar;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
declare const SvgClose: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
|
3
4
|
export default SvgClose;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
declare const SvgFacebook: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
|
3
4
|
export default SvgFacebook;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
declare const SvgLanguage: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
|
3
4
|
export default SvgLanguage;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
declare const SvgLink: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
|
3
4
|
export default SvgLink;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
declare const SvgLinkedin: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
|
3
4
|
export default SvgLinkedin;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
declare const SvgLogo: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
|
3
4
|
export default SvgLogo;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
declare const SvgMessage: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
|
3
4
|
export default SvgMessage;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
declare const SvgPerson: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
|
3
4
|
export default SvgPerson;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
declare const SvgRss: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
|
3
4
|
export default SvgRss;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
declare const SvgSearch: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
|
3
4
|
export default SvgSearch;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
declare const SvgTwitter: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
|
3
4
|
export default SvgTwitter;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
declare const SvgWelcometothejungle: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
|
|
3
4
|
export default SvgWelcometothejungle;
|
|
@@ -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";
|
|
@@ -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")[];
|
|
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
|
|
3
|
+
* Generated on Wed, 21 Jun 2023 15:24:05 GMT
|
|
4
4
|
*/
|
|
5
5
|
export declare const tokenVariables: {
|
|
6
6
|
asset: {
|
|
@@ -67,6 +67,9 @@ export declare const tokenVariables: {
|
|
|
67
67
|
welcometothejungle: {
|
|
68
68
|
value: string;
|
|
69
69
|
};
|
|
70
|
+
github: {
|
|
71
|
+
value: string;
|
|
72
|
+
};
|
|
70
73
|
};
|
|
71
74
|
};
|
|
72
75
|
breakpoint: {
|