@20minutes/hela 0.1.115 → 0.1.116

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.
@@ -17,7 +17,6 @@ export interface ArticleCoverProps extends BoxProps {
17
17
  caption: string;
18
18
  source?: string;
19
19
  credits?: string;
20
- isCaptionInside?: boolean;
21
20
  layout?: LayoutType;
22
21
  }
23
22
  export declare const ArticleCover: React.FC<ArticleCoverProps>;
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ import type { InputProps, SelectProps, TextareaProps } from '../../../components';
3
+ export interface ContactFormProps extends React.HTMLAttributes<HTMLFormElement> {
4
+ id: string;
5
+ url: string;
6
+ serviceProps: SelectProps;
7
+ mailProps: InputProps;
8
+ messageProps: TextareaProps;
9
+ }
10
+ export declare const ContactForm: React.FC<ContactFormProps>;
@@ -0,0 +1 @@
1
+ export * from './ContactForm';
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { FlexProps } from '../../../../components';
3
+ export interface LiveIndicatorProps extends FlexProps {
4
+ liveIsOver?: boolean;
5
+ updatedAt?: string;
6
+ }
7
+ export declare const LiveIndicator: React.FC<LiveIndicatorProps>;
@@ -0,0 +1 @@
1
+ export * from './LiveIndicator';
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { BoxProps } from '../../../../components';
3
+ export interface LiveQuestionFormProps extends BoxProps {
4
+ url: string;
5
+ isExpanded?: boolean;
6
+ }
7
+ export declare const LiveQuestionForm: React.FC<LiveQuestionFormProps>;
@@ -0,0 +1 @@
1
+ export * from './LiveQuestionForm';
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import type { BoxProps } from '../../../../components';
3
+ export interface LiveTalkProps extends BoxProps {
4
+ question: string;
5
+ author: string;
6
+ response: string;
7
+ }
8
+ export declare const LiveTalk: React.FC<LiveTalkProps>;
@@ -0,0 +1 @@
1
+ export * from './LiveTalk';
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import type { BoxProps } from '../../../../components';
3
+ export interface LiveTitleProps extends BoxProps {
4
+ status: 'default' | 'important' | 'crucial';
5
+ time: string;
6
+ title: string;
7
+ }
8
+ export declare const LiveTitle: React.FC<LiveTitleProps>;
@@ -0,0 +1 @@
1
+ export * from './LiveTitle';
@@ -0,0 +1,4 @@
1
+ export * from './LiveIndicator';
2
+ export * from './LiveQuestionForm';
3
+ export * from './LiveTalk';
4
+ export * from './LiveTitle';
@@ -5,11 +5,14 @@ export * from './Card';
5
5
  export * from './Citation';
6
6
  export * from './Collapse';
7
7
  export * from './Comment';
8
+ export * from './ContactForm';
8
9
  export * from './ContactDetailsBlock';
9
10
  export * from './ErrorContent';
10
11
  export * from './Header';
11
12
  export * from './Horoscope';
12
13
  export * from './InfoBanner';
14
+ export * from './ListWithDiode';
15
+ export * from './Live';
13
16
  export * from './Menu';
14
17
  export * from './MostReadArticles';
15
18
  export * from './Newsletter';
@@ -27,4 +30,3 @@ export * from './SubMenu';
27
30
  export * from './Tabs';
28
31
  export * from './TagBar';
29
32
  export * from './Tiles';
30
- export * from './ListWithDiode';
@@ -401,6 +401,9 @@ export declare const tokenVariables: {
401
401
  production: {
402
402
  value: string;
403
403
  };
404
+ publicommunique: {
405
+ value: string;
406
+ };
404
407
  c2c: {
405
408
  value: string;
406
409
  };