@20minutes/hela 2.21.3 → 2.21.6
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/ShareBar/ShareBar.d.ts +8 -3
- package/dist/constants/tokenVariables.d.ts +20 -0
- package/dist/index.es.js +2673 -2760
- package/dist/index.umd.cjs +1 -1
- package/dist/scss/abstracts/variables/_token-variables.scss +1 -1
- package/dist/style.css +1 -1
- package/package.json +18 -20
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import {
|
|
3
|
-
export type SharingNetwork = '
|
|
4
|
-
export interface ShareBarProps extends
|
|
2
|
+
import { BoxProps } from '../../atoms';
|
|
3
|
+
export type SharingNetwork = 'email' | 'facebook' | 'flipboard' | 'linkedin' | 'messenger' | 'pinterest' | 'print' | 'twitter';
|
|
4
|
+
export interface ShareBarProps extends Omit<BoxProps, 'children'> {
|
|
5
5
|
networks?: SharingNetwork[];
|
|
6
|
+
url?: string;
|
|
7
|
+
title?: string;
|
|
8
|
+
description?: string;
|
|
9
|
+
media?: string;
|
|
10
|
+
facebookAppId?: string;
|
|
6
11
|
}
|
|
7
12
|
export declare const ShareBar: React.FC<ShareBarProps>;
|
|
@@ -167,6 +167,10 @@ export declare const tokenVariables: {
|
|
|
167
167
|
value: string;
|
|
168
168
|
key: string;
|
|
169
169
|
};
|
|
170
|
+
email: {
|
|
171
|
+
value: string;
|
|
172
|
+
key: string;
|
|
173
|
+
};
|
|
170
174
|
facebook: {
|
|
171
175
|
value: string;
|
|
172
176
|
key: string;
|
|
@@ -231,6 +235,10 @@ export declare const tokenVariables: {
|
|
|
231
235
|
value: string;
|
|
232
236
|
key: string;
|
|
233
237
|
};
|
|
238
|
+
linkedin: {
|
|
239
|
+
value: string;
|
|
240
|
+
key: string;
|
|
241
|
+
};
|
|
234
242
|
local: {
|
|
235
243
|
value: string;
|
|
236
244
|
key: string;
|
|
@@ -259,6 +267,10 @@ export declare const tokenVariables: {
|
|
|
259
267
|
value: string;
|
|
260
268
|
key: string;
|
|
261
269
|
};
|
|
270
|
+
messenger: {
|
|
271
|
+
value: string;
|
|
272
|
+
key: string;
|
|
273
|
+
};
|
|
262
274
|
mood: {
|
|
263
275
|
value: string;
|
|
264
276
|
key: string;
|
|
@@ -303,6 +315,10 @@ export declare const tokenVariables: {
|
|
|
303
315
|
value: string;
|
|
304
316
|
key: string;
|
|
305
317
|
};
|
|
318
|
+
pinterest: {
|
|
319
|
+
value: string;
|
|
320
|
+
key: string;
|
|
321
|
+
};
|
|
306
322
|
printer: {
|
|
307
323
|
value: string;
|
|
308
324
|
key: string;
|
|
@@ -363,6 +379,10 @@ export declare const tokenVariables: {
|
|
|
363
379
|
value: string;
|
|
364
380
|
key: string;
|
|
365
381
|
};
|
|
382
|
+
subscription: {
|
|
383
|
+
value: string;
|
|
384
|
+
key: string;
|
|
385
|
+
};
|
|
366
386
|
thumb: {
|
|
367
387
|
value: string;
|
|
368
388
|
key: string;
|