@20minutes/tyr 2.37.2 → 2.38.1
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/css/homePage-desktop-critical.css +1 -1
- package/dist/css/homePage-desktop-no-critical.css +1 -1
- package/dist/css/homePage-mobile-critical.css +1 -1
- package/dist/css/homePage-mobile-no-critical.css +1 -1
- package/dist/index.es.js +2077 -2094
- package/dist/index.umd.js +72 -72
- package/dist/js/ads.min.js +1 -1
- package/dist/js/cmp.min.js +1 -1
- package/dist/js/main.min.js +2 -2
- package/dist/src/components/molecules/index.d.ts +0 -1
- package/dist/src/pages/ElectionsPage/ElectionsPage.d.ts +0 -1
- package/dist/src/pages/HomePage/HomePage.stories.d.ts +2 -0
- package/dist/src/types/graphql.d.ts +12 -0
- package/package.json +2 -2
- package/dist/src/components/molecules/ElectionDisclaimer/ElectionDisclaimer.d.ts +0 -5
- package/dist/src/components/molecules/ElectionDisclaimer/index.d.ts +0 -1
|
@@ -5,7 +5,6 @@ export * from './ArticlesBlockHeader';
|
|
|
5
5
|
export * from './BackgroundImage';
|
|
6
6
|
export * from './CardExtraLarge';
|
|
7
7
|
export * from './Content';
|
|
8
|
-
export * from './ElectionDisclaimer';
|
|
9
8
|
export * from './EntertainmentBlock';
|
|
10
9
|
export * from './Faq';
|
|
11
10
|
export * from './FaqList';
|
|
@@ -15,6 +15,5 @@ export interface ElectionsPageProps extends PageTemplateProps {
|
|
|
15
15
|
lastArticlesCarousel: React.ReactNode;
|
|
16
16
|
lastArticlesCarouselBis?: React.ReactNode;
|
|
17
17
|
resultsFiltered: React.ReactNode;
|
|
18
|
-
electionDisclaimer?: React.ReactNode;
|
|
19
18
|
}
|
|
20
19
|
export declare const ElectionsPage: React.FC<ElectionsPageProps>;
|
|
@@ -1252,6 +1252,7 @@ export type TBrand = {
|
|
|
1252
1252
|
notificationUserFront?: Maybe<TNotificationUserFrontSingleConnection>;
|
|
1253
1253
|
notificationUserFronts?: Maybe<TNotificationUserFrontListConnection>;
|
|
1254
1254
|
notifications?: Maybe<TNotificationListConnection>;
|
|
1255
|
+
notificationsByMember?: Maybe<TNotificationUserFrontListConnection>;
|
|
1255
1256
|
page?: Maybe<TPageSingleConnection>;
|
|
1256
1257
|
pages?: Maybe<TPageListConnection>;
|
|
1257
1258
|
photo?: Maybe<TPhotoSingleConnection>;
|
|
@@ -1561,6 +1562,14 @@ export type TBrandNotificationsArgs = {
|
|
|
1561
1562
|
orderBy?: InputMaybe<TNotificationOrder>;
|
|
1562
1563
|
pagination?: InputMaybe<TPagination>;
|
|
1563
1564
|
};
|
|
1565
|
+
export type TBrandNotificationsByMemberArgs = {
|
|
1566
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
1567
|
+
filter?: InputMaybe<TNotificationUserFrontByMemberInputFilter>;
|
|
1568
|
+
first?: InputMaybe<Scalars['FirstElement']['input']>;
|
|
1569
|
+
options?: InputMaybe<TNotificationUserFrontListConnectionOptions>;
|
|
1570
|
+
orderBy?: InputMaybe<TNotificationUserFrontOrder>;
|
|
1571
|
+
pagination?: InputMaybe<TPagination>;
|
|
1572
|
+
};
|
|
1564
1573
|
export type TBrandPageArgs = {
|
|
1565
1574
|
legacy_id?: InputMaybe<Scalars['Int']['input']>;
|
|
1566
1575
|
options?: InputMaybe<TPageSingleConnectionOptions>;
|
|
@@ -9479,6 +9488,9 @@ export type TNotificationUserFront = TNode & TTimestampable & {
|
|
|
9479
9488
|
status?: Maybe<NotificationStatusType>;
|
|
9480
9489
|
user_front_id: Scalars['ID']['output'];
|
|
9481
9490
|
};
|
|
9491
|
+
export type TNotificationUserFrontByMemberInputFilter = {
|
|
9492
|
+
status?: InputMaybe<NotificationStatusType>;
|
|
9493
|
+
};
|
|
9482
9494
|
export type TNotificationUserFrontEdge = {
|
|
9483
9495
|
__typename?: 'NotificationUserFrontEdge';
|
|
9484
9496
|
cursor: Scalars['String']['output'];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@20minutes/tyr",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.38.1",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+ssh://git@github.com/20minutes/tyr.git"
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@20minutes/draft-convert": "^3.1.2",
|
|
56
|
-
"@20minutes/hela": "^2.17.
|
|
56
|
+
"@20minutes/hela": "^2.17.5",
|
|
57
57
|
"aws-rum-web": "^2.0.0",
|
|
58
58
|
"classnames": "^2.5.1",
|
|
59
59
|
"draft-js": "^0.11.7",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './ElectionDisclaimer';
|