@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.
- package/dist/components/molecules/Article/ArticleVideo/index.d.ts +1 -0
- package/dist/components/molecules/Card/CardSmall/CardSmall.d.ts +2 -2
- package/dist/constants/systemProps/index.d.ts +1 -0
- package/dist/constants/systemProps/radiusSystemProps.d.ts +2 -0
- package/dist/constants/tokenNameList.d.ts +1 -0
- package/dist/constants/tokenVariables.d.ts +35 -0
- package/dist/helpers/systemPropsHelper/index.d.ts +1 -0
- package/dist/helpers/systemPropsHelper/radiusSystemClassName.d.ts +2 -0
- package/dist/index.es.js +27968 -27860
- package/dist/index.umd.js +153 -153
- package/dist/js/scripts.es.js +13 -10
- package/dist/js/scripts.umd.js +1 -1
- package/dist/scss/abstracts/variables/_token-variables.scss +14 -1
- package/dist/scss/abstracts/variables/_variables.scss +5 -1
- package/dist/style.css +1 -1
- package/dist/types/SystemProps/RadiusSystemProps.d.ts +4 -0
- package/dist/types/SystemProps/SystemProps.d.ts +2 -2
- package/dist/types/SystemProps/index.d.ts +4 -3
- package/dist/types/tokenTypes.d.ts +1 -0
- package/package.json +28 -24
- /package/dist/{utils/Draftjs.d.ts → helpers/draftjsHtmlHelper.d.ts} +0 -0
|
@@ -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';
|
|
@@ -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';
|