@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.
@@ -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>;
@@ -84,3 +84,5 @@ export default meta;
84
84
  type Story = StoryObj<typeof meta>;
85
85
  export declare const HomePageMobile: Story;
86
86
  export declare const HomePageDesktop: Story;
87
+ export declare const HomePageMunicipalMobile: Story;
88
+ export declare const HomePageMunicipalDesktop: Story;
@@ -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.37.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.4",
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,5 +0,0 @@
1
- import { default as React } from 'react';
2
- export interface ElectionDisclaimerProps {
3
- enabled: boolean;
4
- }
5
- export declare const ElectionDisclaimer: React.FC<ElectionDisclaimerProps>;
@@ -1 +0,0 @@
1
- export * from './ElectionDisclaimer';