@20minutes/tyr 2.40.7 → 2.40.9
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 +5335 -5251
- package/dist/index.umd.js +77 -77
- package/dist/js/cmp.min.js +1 -1
- package/dist/js/main.min.js +2 -2
- package/dist/types/ComponentConfig.d.ts +0 -1
- package/dist/types/graphql.d.ts +44 -48
- package/package.json +2 -2
|
@@ -148,7 +148,6 @@ export declare enum ComponentNameHome {
|
|
|
148
148
|
HOME_PARTNERS = "home/partners",
|
|
149
149
|
HOME_MOVIES = "home/movies",
|
|
150
150
|
HOME_STREAMING_TV = "home/streaming-tv",
|
|
151
|
-
HOME_SHOWS = "home/shows",
|
|
152
151
|
HOME_MUNICIPAL_BLOCK = "home/municipal-block"
|
|
153
152
|
}
|
|
154
153
|
export declare enum ComponentNameHoroscope {
|
package/dist/types/graphql.d.ts
CHANGED
|
@@ -40,6 +40,10 @@ export type Scalars = {
|
|
|
40
40
|
input: number;
|
|
41
41
|
output: number;
|
|
42
42
|
};
|
|
43
|
+
ContentHtml: {
|
|
44
|
+
input: string;
|
|
45
|
+
output: string;
|
|
46
|
+
};
|
|
43
47
|
Date: {
|
|
44
48
|
input: string;
|
|
45
49
|
output: string;
|
|
@@ -64,35 +68,15 @@ export type Scalars = {
|
|
|
64
68
|
[key: string]: any;
|
|
65
69
|
};
|
|
66
70
|
};
|
|
67
|
-
|
|
68
|
-
input: string;
|
|
69
|
-
output: string;
|
|
70
|
-
};
|
|
71
|
-
LimitedString2: {
|
|
72
|
-
input: string;
|
|
73
|
-
output: string;
|
|
74
|
-
};
|
|
75
|
-
LimitedString3: {
|
|
76
|
-
input: string;
|
|
77
|
-
output: string;
|
|
78
|
-
};
|
|
79
|
-
LimitedString4: {
|
|
71
|
+
PdfMonth: {
|
|
80
72
|
input: string;
|
|
81
73
|
output: string;
|
|
82
74
|
};
|
|
83
|
-
|
|
75
|
+
PdfPublicationDate: {
|
|
84
76
|
input: string;
|
|
85
77
|
output: string;
|
|
86
78
|
};
|
|
87
|
-
|
|
88
|
-
input: string;
|
|
89
|
-
output: string;
|
|
90
|
-
};
|
|
91
|
-
LimitedString7: {
|
|
92
|
-
input: string;
|
|
93
|
-
output: string;
|
|
94
|
-
};
|
|
95
|
-
LimitedString8: {
|
|
79
|
+
PdfYear: {
|
|
96
80
|
input: string;
|
|
97
81
|
output: string;
|
|
98
82
|
};
|
|
@@ -109,8 +93,8 @@ export type Scalars = {
|
|
|
109
93
|
output: string;
|
|
110
94
|
};
|
|
111
95
|
UUID: {
|
|
112
|
-
input:
|
|
113
|
-
output:
|
|
96
|
+
input: string;
|
|
97
|
+
output: string;
|
|
114
98
|
};
|
|
115
99
|
Upload: {
|
|
116
100
|
input: File | string;
|
|
@@ -120,13 +104,25 @@ export type Scalars = {
|
|
|
120
104
|
input: File | string;
|
|
121
105
|
output: File | string;
|
|
122
106
|
};
|
|
107
|
+
UserBackUsername: {
|
|
108
|
+
input: string;
|
|
109
|
+
output: string;
|
|
110
|
+
};
|
|
111
|
+
UserBiography: {
|
|
112
|
+
input: string;
|
|
113
|
+
output: string;
|
|
114
|
+
};
|
|
115
|
+
Username: {
|
|
116
|
+
input: string;
|
|
117
|
+
output: string;
|
|
118
|
+
};
|
|
123
119
|
limitElement: {
|
|
124
120
|
input: number;
|
|
125
121
|
output: number;
|
|
126
122
|
};
|
|
127
123
|
percentage: {
|
|
128
|
-
input:
|
|
129
|
-
output:
|
|
124
|
+
input: number;
|
|
125
|
+
output: number;
|
|
130
126
|
};
|
|
131
127
|
perpage: {
|
|
132
128
|
input: number;
|
|
@@ -1798,7 +1794,7 @@ export type TBrandUserFrontArgs = {
|
|
|
1798
1794
|
export type TBrandUserFrontCheckUsernameEmailArgs = {
|
|
1799
1795
|
email?: InputMaybe<Scalars['EmailAddress']['input']>;
|
|
1800
1796
|
options?: InputMaybe<TUserFrontSingleConnectionOptions>;
|
|
1801
|
-
username?: InputMaybe<Scalars['
|
|
1797
|
+
username?: InputMaybe<Scalars['Username']['input']>;
|
|
1802
1798
|
};
|
|
1803
1799
|
export type TBrandUserFrontCommentSsoDataArgs = {
|
|
1804
1800
|
options?: InputMaybe<TUserFrontSingleConnectionOptions>;
|
|
@@ -3240,7 +3236,7 @@ export type TCreateNewsDispatchType = {
|
|
|
3240
3236
|
changes?: InputMaybe<Scalars['String']['input']>;
|
|
3241
3237
|
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
3242
3238
|
content_djs?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
3243
|
-
content_html?: InputMaybe<Scalars['
|
|
3239
|
+
content_html?: InputMaybe<Scalars['ContentHtml']['input']>;
|
|
3244
3240
|
creator?: InputMaybe<Scalars['String']['input']>;
|
|
3245
3241
|
databaseId?: InputMaybe<Scalars['UUID']['input']>;
|
|
3246
3242
|
expiration_date?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -3707,7 +3703,7 @@ export type TCreateUserBackBrandType = {
|
|
|
3707
3703
|
user_back_id: Scalars['ID']['input'];
|
|
3708
3704
|
};
|
|
3709
3705
|
export type TCreateUserBackType = {
|
|
3710
|
-
about_me?: InputMaybe<Scalars['
|
|
3706
|
+
about_me?: InputMaybe<Scalars['UserBiography']['input']>;
|
|
3711
3707
|
active?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3712
3708
|
author_page?: InputMaybe<Scalars['String']['input']>;
|
|
3713
3709
|
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3728,7 +3724,7 @@ export type TCreateUserBackType = {
|
|
|
3728
3724
|
public_id?: InputMaybe<Scalars['Int']['input']>;
|
|
3729
3725
|
service?: InputMaybe<Service>;
|
|
3730
3726
|
twitter_account_name?: InputMaybe<Scalars['String']['input']>;
|
|
3731
|
-
username: Scalars['
|
|
3727
|
+
username: Scalars['UserBackUsername']['input'];
|
|
3732
3728
|
work_location?: InputMaybe<Scalars['String']['input']>;
|
|
3733
3729
|
};
|
|
3734
3730
|
export type TCreateUserBotType = {
|
|
@@ -3740,7 +3736,7 @@ export type TCreateUserBotType = {
|
|
|
3740
3736
|
messenger_fields?: InputMaybe<TMessengerFieldsInput>;
|
|
3741
3737
|
};
|
|
3742
3738
|
export type TCreateUserFrontType = {
|
|
3743
|
-
about_me?: InputMaybe<Scalars['
|
|
3739
|
+
about_me?: InputMaybe<Scalars['UserBiography']['input']>;
|
|
3744
3740
|
author_id?: InputMaybe<Scalars['Int']['input']>;
|
|
3745
3741
|
avatar?: InputMaybe<Scalars['String']['input']>;
|
|
3746
3742
|
birthdate?: InputMaybe<Scalars['Date']['input']>;
|
|
@@ -3774,7 +3770,7 @@ export type TCreateUserFrontType = {
|
|
|
3774
3770
|
subscription_renew_at?: InputMaybe<Scalars['DateTime']['input']>;
|
|
3775
3771
|
subscription_start_at?: InputMaybe<Scalars['DateTime']['input']>;
|
|
3776
3772
|
user_back_id?: InputMaybe<Scalars['ID']['input']>;
|
|
3777
|
-
username?: InputMaybe<Scalars['
|
|
3773
|
+
username?: InputMaybe<Scalars['Username']['input']>;
|
|
3778
3774
|
zipcode?: InputMaybe<Scalars['String']['input']>;
|
|
3779
3775
|
};
|
|
3780
3776
|
export type TCreateVersionType = {
|
|
@@ -10734,10 +10730,10 @@ export type TPdfEdge = {
|
|
|
10734
10730
|
node?: Maybe<TPdf>;
|
|
10735
10731
|
};
|
|
10736
10732
|
export type TPdfFilter = {
|
|
10737
|
-
maxPublicationDate?: InputMaybe<Scalars['
|
|
10738
|
-
minPublicationDate?: InputMaybe<Scalars['
|
|
10739
|
-
month?: InputMaybe<Scalars['
|
|
10740
|
-
year?: InputMaybe<Scalars['
|
|
10733
|
+
maxPublicationDate?: InputMaybe<Scalars['PdfPublicationDate']['input']>;
|
|
10734
|
+
minPublicationDate?: InputMaybe<Scalars['PdfPublicationDate']['input']>;
|
|
10735
|
+
month?: InputMaybe<Scalars['PdfMonth']['input']>;
|
|
10736
|
+
year?: InputMaybe<Scalars['PdfYear']['input']>;
|
|
10741
10737
|
};
|
|
10742
10738
|
export type TPdfIdentifierInputType = {
|
|
10743
10739
|
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -16031,7 +16027,7 @@ export type TUpdateNewsDispatchType = {
|
|
|
16031
16027
|
changes?: InputMaybe<Scalars['String']['input']>;
|
|
16032
16028
|
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
16033
16029
|
content_djs?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
16034
|
-
content_html?: InputMaybe<Scalars['
|
|
16030
|
+
content_html?: InputMaybe<Scalars['ContentHtml']['input']>;
|
|
16035
16031
|
creator?: InputMaybe<Scalars['String']['input']>;
|
|
16036
16032
|
external_id?: InputMaybe<Scalars['String']['input']>;
|
|
16037
16033
|
external_tags?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -16475,7 +16471,7 @@ export type TUpdateUserBackBrandType = {
|
|
|
16475
16471
|
user_back_id: Scalars['ID']['input'];
|
|
16476
16472
|
};
|
|
16477
16473
|
export type TUpdateUserBackType = {
|
|
16478
|
-
about_me?: InputMaybe<Scalars['
|
|
16474
|
+
about_me?: InputMaybe<Scalars['UserBiography']['input']>;
|
|
16479
16475
|
active?: InputMaybe<Scalars['Boolean']['input']>;
|
|
16480
16476
|
author_page?: InputMaybe<Scalars['String']['input']>;
|
|
16481
16477
|
avatar?: InputMaybe<Scalars['Upload']['input']>;
|
|
@@ -16497,7 +16493,7 @@ export type TUpdateUserBackType = {
|
|
|
16497
16493
|
public_id?: InputMaybe<Scalars['Int']['input']>;
|
|
16498
16494
|
service?: InputMaybe<Service>;
|
|
16499
16495
|
twitter_account_name?: InputMaybe<Scalars['String']['input']>;
|
|
16500
|
-
username?: InputMaybe<Scalars['
|
|
16496
|
+
username?: InputMaybe<Scalars['UserBackUsername']['input']>;
|
|
16501
16497
|
work_location?: InputMaybe<Scalars['String']['input']>;
|
|
16502
16498
|
};
|
|
16503
16499
|
export type TUpdateUserBotType = {
|
|
@@ -16509,7 +16505,7 @@ export type TUpdateUserBotType = {
|
|
|
16509
16505
|
messenger_fields?: InputMaybe<TMessengerFieldsInput>;
|
|
16510
16506
|
};
|
|
16511
16507
|
export type TUpdateUserFrontType = {
|
|
16512
|
-
about_me?: InputMaybe<Scalars['
|
|
16508
|
+
about_me?: InputMaybe<Scalars['UserBiography']['input']>;
|
|
16513
16509
|
author_id?: InputMaybe<Scalars['Int']['input']>;
|
|
16514
16510
|
avatar?: InputMaybe<Scalars['String']['input']>;
|
|
16515
16511
|
avatar_file?: InputMaybe<Scalars['Upload']['input']>;
|
|
@@ -16548,7 +16544,7 @@ export type TUpdateUserFrontType = {
|
|
|
16548
16544
|
subscription_renew_at?: InputMaybe<Scalars['DateTime']['input']>;
|
|
16549
16545
|
subscription_start_at?: InputMaybe<Scalars['DateTime']['input']>;
|
|
16550
16546
|
user_back_id?: InputMaybe<Scalars['ID']['input']>;
|
|
16551
|
-
username?: InputMaybe<Scalars['
|
|
16547
|
+
username?: InputMaybe<Scalars['Username']['input']>;
|
|
16552
16548
|
website?: InputMaybe<Scalars['String']['input']>;
|
|
16553
16549
|
zipcode?: InputMaybe<Scalars['String']['input']>;
|
|
16554
16550
|
};
|
|
@@ -16603,7 +16599,7 @@ export type TUserBack = TNode & TTimestampable & {
|
|
|
16603
16599
|
subtype?: Maybe<TSubtypeSingleConnection>;
|
|
16604
16600
|
twitter_account_name?: Maybe<Scalars['String']['output']>;
|
|
16605
16601
|
userFront?: Maybe<TUserFrontSingleConnection>;
|
|
16606
|
-
username?: Maybe<Scalars['
|
|
16602
|
+
username?: Maybe<Scalars['UserBackUsername']['output']>;
|
|
16607
16603
|
work_location?: Maybe<Scalars['String']['output']>;
|
|
16608
16604
|
};
|
|
16609
16605
|
export type TUserBackBrandRelationArgs = {
|
|
@@ -19058,7 +19054,7 @@ export type TUpdateUserFrontUsernameType = {
|
|
|
19058
19054
|
brand_id: Scalars['ID']['input'];
|
|
19059
19055
|
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
19060
19056
|
id: Scalars['ID']['input'];
|
|
19061
|
-
username?: InputMaybe<Scalars['
|
|
19057
|
+
username?: InputMaybe<Scalars['Username']['input']>;
|
|
19062
19058
|
};
|
|
19063
19059
|
export declare enum UserStatus {
|
|
19064
19060
|
archived = "archived",
|
|
@@ -20308,10 +20304,10 @@ export type TGetPdfsByEditionSlugQueryVariables = Exact<{
|
|
|
20308
20304
|
slug: Scalars['String']['input'];
|
|
20309
20305
|
first: Scalars['FirstElement']['input'];
|
|
20310
20306
|
sort: OrderDirection;
|
|
20311
|
-
maxPublicationDate?: InputMaybe<Scalars['
|
|
20312
|
-
minPublicationDate?: InputMaybe<Scalars['
|
|
20313
|
-
year?: InputMaybe<Scalars['
|
|
20314
|
-
month?: InputMaybe<Scalars['
|
|
20307
|
+
maxPublicationDate?: InputMaybe<Scalars['PdfPublicationDate']['input']>;
|
|
20308
|
+
minPublicationDate?: InputMaybe<Scalars['PdfPublicationDate']['input']>;
|
|
20309
|
+
year?: InputMaybe<Scalars['PdfYear']['input']>;
|
|
20310
|
+
month?: InputMaybe<Scalars['PdfMonth']['input']>;
|
|
20315
20311
|
}>;
|
|
20316
20312
|
export type TGetPdfsByEditionSlugQuery = {
|
|
20317
20313
|
__typename?: 'Query';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@20minutes/tyr",
|
|
3
|
-
"version": "2.40.
|
|
3
|
+
"version": "2.40.9",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+ssh://git@github.com/20minutes/tyr.git"
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@20minutes/draft-convert": "^3.1.2",
|
|
57
|
-
"@20minutes/hela": "^2.18.
|
|
57
|
+
"@20minutes/hela": "^2.18.14",
|
|
58
58
|
"classnames": "^2.5.1",
|
|
59
59
|
"draft-js": "^0.11.7",
|
|
60
60
|
"html-entities": "^2.6.0",
|