@eleven-labs/design-system 0.5.3 → 0.6.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.
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { AsProps, ColorSystemProps, MarginSystemProps } from '../../../types';
3
+ export type BlockquoteProps = AsProps<'blockquote'> & MarginSystemProps & Pick<ColorSystemProps, 'bg'>;
4
+ export declare const Blockquote: React.FC<BlockquoteProps>;
@@ -0,0 +1 @@
1
+ export * from './Blockquote';
@@ -1,4 +1,6 @@
1
- import { AsProps, ColorSystemProps, LogoNameType, MarginSystemProps } from '../../../types';
1
+ import { AsProps, ColorSystemProps, MarginSystemProps } from '../../../types';
2
+ export declare const logoName: readonly ["website", "blog"];
3
+ export type LogoNameType = (typeof logoName)[number];
2
4
  export type LogoProps = AsProps<'div'> & MarginSystemProps & Pick<ColorSystemProps, 'color'> & {
3
5
  name: LogoNameType;
4
6
  size?: string | number;
@@ -0,0 +1,6 @@
1
+ import { BoxProps } from '../../../components';
2
+ export interface SkeletonOptions {
3
+ isLoading?: boolean;
4
+ }
5
+ export type SkeletonProps = BoxProps<'div'> & SkeletonOptions;
6
+ export declare const Skeleton: import("../../..").ComponentWithAs<"div", SkeletonProps>;
@@ -0,0 +1 @@
1
+ export * from './Skeleton';
@@ -1,6 +1,5 @@
1
1
  export { default as AccessTime } from "./AccessTime";
2
2
  export { default as ArrowBack } from "./ArrowBack";
3
- export { default as BlogLogo } from "./BlogLogo";
4
3
  export { default as Calendar } from "./Calendar";
5
4
  export { default as Close } from "./Close";
6
5
  export { default as Facebook } from "./Facebook";
@@ -10,9 +9,7 @@ export { default as Linkedin } from "./Linkedin";
10
9
  export { default as Logo } from "./Logo";
11
10
  export { default as Message } from "./Message";
12
11
  export { default as Person } from "./Person";
13
- export { default as Reddit } from "./Reddit";
14
12
  export { default as Rss } from "./Rss";
15
13
  export { default as Search } from "./Search";
16
14
  export { default as Twitter } from "./Twitter";
17
- export { default as WebsiteLogo } from "./WebsiteLogo";
18
15
  export { default as Welcometothejungle } from "./Welcometothejungle";
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ import { SyntaxHighlighterProps as SyntaxHighlighterBaseProps } from 'react-syntax-highlighter';
3
+ import { MarginSystemProps } from '../../../types';
4
+ export type SyntaxHighlighterProps = MarginSystemProps & Pick<SyntaxHighlighterBaseProps, 'language' | 'children'>;
5
+ export declare const SyntaxHighlighter: React.FC<SyntaxHighlighterProps>;
@@ -0,0 +1 @@
1
+ export * from './SyntaxHighlighter';
@@ -1,6 +1,9 @@
1
- export * from './Layout';
2
- export * from './Typography';
3
1
  export * as Svgs from './Svgs';
2
+ export * from './Button';
4
3
  export * from './Icon';
4
+ export * from './Layout';
5
5
  export * from './Logo';
6
- export * from './Button';
6
+ export * from './SyntaxHighlighter';
7
+ export * from './Typography';
8
+ export * from './Blockquote';
9
+ export * from './Skeleton';
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ import { BoxProps } from '../../../components';
3
+ export declare const reminderVariantList: readonly ["note", "summary", "info", "tip", "success", "question", "warning", "failure", "danger", "bug", "example", "quote"];
4
+ export type ReminderVariantType = (typeof reminderVariantList)[number];
5
+ export type ReminderOptions = {
6
+ variant: ReminderVariantType;
7
+ title: React.ReactNode;
8
+ };
9
+ export type ReminderProps = BoxProps & ReminderOptions;
10
+ export declare const Reminder: React.FC<ReminderProps>;
@@ -0,0 +1 @@
1
+ export * from './Reminder';
@@ -1,3 +1,4 @@
1
1
  export * from './Link';
2
+ export * from './Reminder';
2
3
  export * from './SearchField';
3
4
  export * from './TextHighlight';
@@ -5,6 +5,5 @@ 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
7
  export declare const iconTokenNameList: readonly ("access-time" | "arrow-back" | "calendar" | "close" | "facebook" | "language" | "link" | "linkedin" | "rss" | "message" | "person" | "search" | "twitter" | "welcometothejungle")[];
8
- export declare const logoTokenNameList: readonly ("website" | "blog")[];
9
8
  export declare const headingSizeTokenNameList: readonly ("s" | "m" | "l" | "xl")[];
10
9
  export declare const textSizeTokenNameList: readonly ("xs" | "s" | "m")[];
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Thu, 02 Mar 2023 12:57:56 GMT
3
+ * Generated on Sun, 09 Apr 2023 09:46:26 GMT
4
4
  */
5
5
  export declare const tokenVariables: {
6
6
  asset: {
@@ -68,14 +68,6 @@ export declare const tokenVariables: {
68
68
  value: string;
69
69
  };
70
70
  };
71
- logo: {
72
- website: {
73
- value: string;
74
- };
75
- blog: {
76
- value: string;
77
- };
78
- };
79
71
  };
80
72
  breakpoint: {
81
73
  xs: {