@20minutes/hela 0.1.73 → 0.1.75

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 @@
1
+ export * from './ArticleVideo';
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import { HeadingProps } from '../../../../components';
3
- import { CardType, LayoutType, SpacingSystemProps } from '../../../../types';
4
- export interface CardSmallProps extends CardType, SpacingSystemProps {
3
+ import { CardType, FlexBoxSystemProps, LayoutType, SpacingSystemProps } from '../../../../types';
4
+ export interface CardSmallProps extends CardType, FlexBoxSystemProps, SpacingSystemProps {
5
5
  layout: LayoutType;
6
6
  headingProps?: Pick<HeadingProps, 'color' | 'weight'>;
7
7
  }
@@ -1,6 +1,7 @@
1
1
  export * from './colorSystemProps';
2
2
  export * from './flexOrGridItemSystemProps';
3
3
  export * from './flexOrGridBoxSystemProps';
4
+ export * from './radiusSystemProps';
4
5
  export * from './spacingSystemProps';
5
6
  export * from './systemProps';
6
7
  export * from './typographySystemProps';
@@ -0,0 +1,2 @@
1
+ import { RadiusSystemProps } from '../../types';
2
+ export declare const radiusSystemProps: Record<keyof RadiusSystemProps, string[]>;
@@ -1,3 +1,4 @@
1
1
  import { ColorType } from '../types';
2
2
  export declare const spacingTokenNameList: readonly ("xs" | "0" | "xxs-2" | "xxs" | "s" | "m" | "l" | "xl" | "xxl" | "xxl-2")[];
3
3
  export declare const colorTokenNameList: readonly ColorType[];
4
+ export declare const radiusTokenNameList: readonly ("xs" | "0" | "xxs-2" | "xxs" | "s" | "m" | "l" | "xl" | "xxl")[];
@@ -74,6 +74,12 @@ export declare const tokenVariables: {
74
74
  red: {
75
75
  value: string;
76
76
  };
77
+ blue: {
78
+ value: string;
79
+ };
80
+ pink: {
81
+ value: string;
82
+ };
77
83
  sponsoring: {
78
84
  value: string;
79
85
  };
@@ -216,6 +222,35 @@ export declare const tokenVariables: {
216
222
  value: string;
217
223
  };
218
224
  };
225
+ radius: {
226
+ '0': {
227
+ value: string;
228
+ };
229
+ 'xxs-2': {
230
+ value: string;
231
+ };
232
+ xxs: {
233
+ value: string;
234
+ };
235
+ xs: {
236
+ value: string;
237
+ };
238
+ s: {
239
+ value: string;
240
+ };
241
+ m: {
242
+ value: string;
243
+ };
244
+ l: {
245
+ value: string;
246
+ };
247
+ xl: {
248
+ value: string;
249
+ };
250
+ xxl: {
251
+ value: string;
252
+ };
253
+ };
219
254
  spacing: {
220
255
  '0': {
221
256
  value: string;
@@ -3,6 +3,7 @@ export * from './classNamesWithModifiers';
3
3
  export * from './omitSystemProps';
4
4
  export * from './colorSystemClassName';
5
5
  export * from './spacingSystemClassName';
6
+ export * from './radiusSystemClassName';
6
7
  export * from './typographySystemClassName';
7
8
  export * from './systemClassName';
8
9
  export * from './flexOrGridBoxItemClassName';
@@ -0,0 +1,2 @@
1
+ import type { RadiusSystemProps } from '../../types';
2
+ export declare const radiusSystemClassName: <TProps extends RadiusSystemProps>(props: TProps) => string;