@4alldigital/foundation-ui--gamma 1.46.2 → 1.46.3
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/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/dist/types/lib/translations/en.d.ts +97 -1
- package/package.json +2 -2
|
@@ -1,5 +1,43 @@
|
|
|
1
1
|
declare const strings: {
|
|
2
|
-
GLOBAL: {
|
|
2
|
+
GLOBAL: {
|
|
3
|
+
SCREENS: {
|
|
4
|
+
HOME: {
|
|
5
|
+
TITLE: string;
|
|
6
|
+
};
|
|
7
|
+
LOGIN: {
|
|
8
|
+
TITLE: string;
|
|
9
|
+
};
|
|
10
|
+
REGISTER: {
|
|
11
|
+
TITLE: string;
|
|
12
|
+
};
|
|
13
|
+
FORGOT_PASSWORD: {
|
|
14
|
+
TITLE: string;
|
|
15
|
+
};
|
|
16
|
+
RESET_PASSWORD: {
|
|
17
|
+
TITLE: string;
|
|
18
|
+
};
|
|
19
|
+
ACCOUNT: {
|
|
20
|
+
TITLE: string;
|
|
21
|
+
TAB_PROFILE: string;
|
|
22
|
+
TAB_SUBSCRIPTION: string;
|
|
23
|
+
};
|
|
24
|
+
CATALOGUE: {
|
|
25
|
+
TITLE: string;
|
|
26
|
+
};
|
|
27
|
+
CHALLENGES: {
|
|
28
|
+
TITLE: string;
|
|
29
|
+
};
|
|
30
|
+
WORKOUT: {
|
|
31
|
+
TITLE: string;
|
|
32
|
+
};
|
|
33
|
+
LIVE: {
|
|
34
|
+
TITLE: string;
|
|
35
|
+
};
|
|
36
|
+
SCHEDULE: {
|
|
37
|
+
TITLE: string;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
};
|
|
3
41
|
FORMS: {
|
|
4
42
|
LOGIN_FORM: {
|
|
5
43
|
TITLE: string;
|
|
@@ -37,6 +75,48 @@ declare const strings: {
|
|
|
37
75
|
PASSWORD: string;
|
|
38
76
|
PASSWORD_DESCRIPTION: string;
|
|
39
77
|
};
|
|
78
|
+
ACCOUNT: {
|
|
79
|
+
SUBMIT_LABEL: string;
|
|
80
|
+
EMAIL_LABEL: string;
|
|
81
|
+
PASSWORD_LABEL: string;
|
|
82
|
+
FIRST_NAME_LABEL: string;
|
|
83
|
+
LAST_NAME_LABEL: string;
|
|
84
|
+
DOB_LABEL: string;
|
|
85
|
+
TERMS_AND_CONDITIONS_LABEL: string;
|
|
86
|
+
TERMS_AND_CONDITIONS_DESCRIPTION: string;
|
|
87
|
+
CONTACT_PREFERENCES_LABEL: string;
|
|
88
|
+
CONTACT_PREFERENCES_DESCRIPTION: string;
|
|
89
|
+
SKIP_LABEL: string;
|
|
90
|
+
SUCCESS_MESSAGE: string;
|
|
91
|
+
SUBSCRIPTION_STATUS_LABEL: string;
|
|
92
|
+
SUBSCRIPTION_PLAN_LABEL: string;
|
|
93
|
+
SUBSCRIPTION_PRICE_LABEL: string;
|
|
94
|
+
SUBSCRIPTION_BILLING_DATE_LABEL: string;
|
|
95
|
+
SUBSCRIPTION_PAYMENT_TYPE_LABEL: string;
|
|
96
|
+
SUBSCRIPTION_CARD_NUMBER_LABEL: string;
|
|
97
|
+
SUBSCRIPTION_CARD_EXPIRY_LABEL: string;
|
|
98
|
+
SUBSCRIPTION_LAST_UPDATED_LABEL: string;
|
|
99
|
+
};
|
|
100
|
+
};
|
|
101
|
+
VALIDATION: {
|
|
102
|
+
UNKNOWN_SUBMISSION_ERROR: string;
|
|
103
|
+
REQUIRED_FIELD: string;
|
|
104
|
+
TOO_SHORT: string;
|
|
105
|
+
TOO_LONG: string;
|
|
106
|
+
INVALID_EMAIL: string;
|
|
107
|
+
LOGIN_DENIED: string;
|
|
108
|
+
LOGIN_ERROR: string;
|
|
109
|
+
ACCOUNT_FIRST_NAME: string;
|
|
110
|
+
ACCOUNT_LAST_NAME: string;
|
|
111
|
+
CHARACTERS_ONLY: string;
|
|
112
|
+
PASSWORD_DESCRIPTION: string;
|
|
113
|
+
PASSWORD_CASE_MESSAGE: string;
|
|
114
|
+
PASSWORD_LOWERCASE_MESSAGE: string;
|
|
115
|
+
PASSWORD_LENGTH_MESSAGE: string;
|
|
116
|
+
PASSWORD_NUMERIC_MESSAGE: string;
|
|
117
|
+
PASSWORD_SPECIAL_MESSAGE: string;
|
|
118
|
+
AUTH_API_ERROR: string;
|
|
119
|
+
AUTH_ACCOUNT_EXISTS_MESSAGE: string;
|
|
40
120
|
};
|
|
41
121
|
UI: {
|
|
42
122
|
SHOW: string;
|
|
@@ -238,6 +318,22 @@ declare const strings: {
|
|
|
238
318
|
HIDE_FILTERS: string;
|
|
239
319
|
THIS_WEEK: string;
|
|
240
320
|
TODAYS_ITEMS: string;
|
|
321
|
+
START_TRIAL_LABEL: string;
|
|
322
|
+
START_WORKOUTS_LABEL: string;
|
|
323
|
+
UPDATE_LABEL: string;
|
|
324
|
+
SESSION_EXPIRED: string;
|
|
325
|
+
NO_VALID_SUB: string;
|
|
326
|
+
SUBSCRIPTION_ERROR: string;
|
|
327
|
+
SUCCESS: string;
|
|
328
|
+
UPLOAD_IMAGE: string;
|
|
329
|
+
UPLOAD_VIDEO: string;
|
|
330
|
+
UPLOAD_AUDIO: string;
|
|
331
|
+
UPLOAD_DOCUMENT: string;
|
|
332
|
+
UPLOAD_MEDIA: string;
|
|
333
|
+
UPLOAD_MEDIA_FILE: string;
|
|
334
|
+
UPLOAD_SUCCESS: string;
|
|
335
|
+
UPLOAD_FAILED: string;
|
|
336
|
+
UPLOADING: string;
|
|
241
337
|
};
|
|
242
338
|
ERRORS: {};
|
|
243
339
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@4alldigital/foundation-ui--gamma",
|
|
3
|
-
"version": "1.46.
|
|
3
|
+
"version": "1.46.3",
|
|
4
4
|
"description": "Foundation UI Component library with GAMMA theme. ",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "3e0e2886c8ab2142ba7d8364caa17f33c28d8d73",
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@elastic/datemath": "^5.0.3",
|
|
45
45
|
"@elastic/react-search-ui": "^1.21.1",
|