jamespot-react-components 1.3.75 → 1.3.77

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.
@@ -0,0 +1,7 @@
1
+ import { jSpotAutocomplete } from '../../../../../jamespot-user-api/src';
2
+ import { AVProps } from '../../Form/Input/JRCSelect/JRCInputAutocompleteViews';
3
+ export declare const EditorInputGroup: ({ onChange, handlers, }: {
4
+ onChange: (spot: jSpotAutocomplete) => void;
5
+ autoCompleteGroup: (v: string) => Promise<jSpotAutocomplete[]>;
6
+ handlers: AVProps["handlers"];
7
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -1,7 +1,7 @@
1
1
  import { AudienceAutocomplete, JGroupApi, JUserApi } from '../../../../../../jamespot-user-api/src';
2
2
  import { FoldersHandlers } from '../../../JRCFolders/types';
3
3
  export type AutocompleteView = 'folder' | 'user' | 'group' | 'businessContact';
4
- type AVProps = {
4
+ export type AVProps = {
5
5
  views: Array<AutocompleteView>;
6
6
  initialValues: AudienceAutocomplete[];
7
7
  onConfirm: (values: any) => void;
@@ -12,6 +12,7 @@ type AVProps = {
12
12
  group: Pick<JGroupApi, 'list'>;
13
13
  };
14
14
  onError?: (message?: string) => void;
15
+ multiple?: boolean;
15
16
  };
16
- declare const JRCInputAutocompleteViews: ({ views, initialValues, onConfirm, open, closeHandler, handlers, onError, }: AVProps) => import("react/jsx-runtime").JSX.Element;
17
+ declare const JRCInputAutocompleteViews: ({ views, initialValues, onConfirm, open, closeHandler, handlers, onError, multiple, }: AVProps) => import("react/jsx-runtime").JSX.Element;
17
18
  export { JRCInputAutocompleteViews };
@@ -87,7 +87,7 @@ type SelectProps<T = any> = DataCy & {
87
87
  */
88
88
  export type NativeAutocompleteProps<T extends FieldValues = FieldValues> = ControllerRenderProps<T> & AutocompleteInnerProps;
89
89
  export type JRCAutocompleteProps<T extends FieldValues = FieldValues> = JRCInputFieldProps<T> & AutocompleteInnerProps;
90
- type AutocompleteInnerProps = Omit<SelectProps, 'options'> & DataCy & IconsProp & {
90
+ export type AutocompleteInnerProps = Omit<SelectProps, 'options'> & DataCy & IconsProp & {
91
91
  options?: Array<AutocompleteLittle>;
92
92
  asyncPromise?: (inputValue: string) => Promise<Array<AutocompleteLittle>>;
93
93
  allowCustomOption?: boolean;
@@ -1,6 +1,8 @@
1
+ import { JRCCalendarMode } from './types';
1
2
  export declare const CalendarStyle: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
2
3
  $fluid?: boolean;
3
4
  $loading?: boolean;
4
5
  $fullScreen?: boolean;
5
6
  $view: "list" | "grid";
7
+ $mode: JRCCalendarMode;
6
8
  }>> & string;
@@ -1,5 +1,6 @@
1
1
  import { CalendarEventView, CalendarEventWithExtensions, JArticleApi, JCalendarApi, JGlobalApi, Rights, UserResponseStatus } from '../../../../jamespot-user-api/src';
2
2
  import { ReactNode } from 'react';
3
+ import { JRCCalendarMode } from './types';
3
4
  type JRCCalendarModalProps = {
4
5
  event?: CalendarEventWithExtensions<CalendarEventView, ['socialEventRecord' | 'recurringEventRecord']>;
5
6
  closeHandler: () => void;
@@ -23,6 +24,7 @@ type JRCCalendarModalProps = {
23
24
  type: string;
24
25
  }) => void;
25
26
  isUpdateStatusLoading: (id: number) => boolean;
27
+ mode?: JRCCalendarMode;
26
28
  };
27
- export declare const JRCCalendarModal: ({ closeHandler, event, handler, onError, onSuccess, extraComponent, onDeleteEvent, onClickUpdateEvent, onUpdateStatus, isUpdateStatusLoading, }: JRCCalendarModalProps) => import("react/jsx-runtime").JSX.Element;
29
+ export declare const JRCCalendarModal: ({ closeHandler, event, handler, onError, onSuccess, extraComponent, onDeleteEvent, onClickUpdateEvent, onUpdateStatus, isUpdateStatusLoading, mode, }: JRCCalendarModalProps) => import("react/jsx-runtime").JSX.Element;
28
30
  export {};
@@ -14,4 +14,5 @@ export type JRCFoldersProps = {
14
14
  handlers?: FoldersHandlers;
15
15
  onError?: (message?: string) => void;
16
16
  searchable?: boolean;
17
+ multiple?: boolean;
17
18
  };
@@ -7,6 +7,7 @@ type JRCGroupsProps = {
7
7
  initialGroups: AudienceAutocomplete[];
8
8
  onSelectGroup?: (group: AudienceAutocomplete[]) => void;
9
9
  publicOnly?: boolean;
10
+ multiple?: boolean;
10
11
  };
11
- export declare const JRCGroups: ({ handlers, onError, initialGroups, onSelectGroup, publicOnly }: JRCGroupsProps) => import("react/jsx-runtime").JSX.Element;
12
+ export declare const JRCGroups: ({ handlers, onError, initialGroups, onSelectGroup, publicOnly, multiple, }: JRCGroupsProps) => import("react/jsx-runtime").JSX.Element;
12
13
  export {};
@@ -0,0 +1,14 @@
1
+ import { WidgetCalendarContent, JGroupApi } from '../../../../../jamespot-user-api/src';
2
+ import { AVProps } from '../../Form/Input/JRCSelect/JRCInputAutocompleteViews';
3
+ export interface JRCWidgetCalendarEditorProps extends WidgetCalendarContent {
4
+ content: WidgetCalendarContent;
5
+ onChange: (content: Partial<WidgetCalendarContent>, override?: boolean) => void;
6
+ handlers: AVProps['handlers'] & {
7
+ group: Pick<JGroupApi, 'autocomplete' | 'getSpot'>;
8
+ };
9
+ }
10
+ export declare const CalendarEditorViewOptions: {
11
+ label: string;
12
+ value: string;
13
+ }[];
14
+ export declare const WidgetCalendarEditor: ({ content, onChange, handlers }: JRCWidgetCalendarEditorProps) => import("react/jsx-runtime").JSX.Element;
@@ -192,3 +192,4 @@ export { JRCWidgetUserProfile } from './Widgets/JRCWidgetUserProfile/JRCWidgetUs
192
192
  export { JRCWidgetUserProfileEditor } from './Widgets/JRCWidgetUserProfile/JRCWidgetUserProfileEditor';
193
193
  export { JRCWidgetWelcome } from './Widgets/JRCWidgetWelcome/JRCWidgetWelcome';
194
194
  export { JRCWidgetWelcomeEditor } from './Widgets/JRCWidgetWelcome/JRCWidgetWelcomeEditor';
195
+ export { WidgetCalendarEditor } from './Widgets/WidgetCalendar/WidgetCalendarEditor';
@@ -5,8 +5,11 @@ declare const _default: {
5
5
  "APP_Animated_Meeting": "Diapazone",
6
6
  "APP_Bookmark_Bookmarks": "favorites",
7
7
  "APP_FileIntegrity_Quarantine_Files_Message": "{ count } file(s) in quarantine",
8
- "APP_SurveyDate": "Sondage de date",
9
8
  "APP_SurveyDate_Over": "The survey is closed",
9
+ "APP_SurveyDate": "Sondage de date",
10
+ "AppLeftColumn_App_Navigation": "Application navigation menu",
11
+ "AppLeftColumn_Close_Panel": "Reduces the size of the menu",
12
+ "AppLeftColumn_Open_Panel": "Expands the menu",
10
13
  "ARTICLE_Nb_Elements": "Documents",
11
14
  "ARTICLE_Nb_Selected_Elements": "Elements sélectionés",
12
15
  "ATTACHMENTS_No_Download": "No download",
@@ -17,9 +20,6 @@ declare const _default: {
17
20
  "AUDIENCE_GROUPS_ONLY": "{groups} group(s)",
18
21
  "AUDIENCE_ONLY_ME": "Only me",
19
22
  "AUDIENCE_USERS_ONLY": "{users} user(s)",
20
- "AppLeftColumn_App_Navigation": "Application navigation menu",
21
- "AppLeftColumn_Close_Panel": "Reduces the size of the menu",
22
- "AppLeftColumn_Open_Panel": "Expands the menu",
23
23
  "BUTTON_Title_Add_Image": "Add image",
24
24
  "BUTTON_Title_Add_New_Task": "Add new task",
25
25
  "BUTTON_Title_Add_Uri": "Add link to task",
@@ -30,24 +30,23 @@ declare const _default: {
30
30
  "CALENDAR_All_Day": "All day",
31
31
  "CALENDAR_Answer": "Répondre",
32
32
  "CALENDAR_BoardCard": "Board card",
33
+ "CALENDAR_dayGridMonth": "Month",
33
34
  "CALENDAR_Delete_Confirmation_Recurrent": "Do you want to delete the whole series?",
34
- "CALENDAR_Event": "Evénement",
35
- "CALENDAR_Event_Date": "Le {date}, {time}",
36
35
  "CALENDAR_Event_Date_All_Day": "Le {date}",
37
- "CALENDAR_Event_Date_Start_End": "Du {dateStart}, {timeStart} au {dateEnd}, {timeEnd}",
38
36
  "CALENDAR_Event_Date_Start_End_All_Day": "Du {dateStart} au {dateEnd}",
39
- "CALENDAR_Event_Date_Start_End_Same_Day": "Le {dateStart}, de {timeStart} à {timeEnd}",
40
37
  "CALENDAR_Event_Date_Start_End_Same_Day_All_Day": "Le {dateStart}",
41
- "CALENDAR_Event_Recurrence": "Recurrence",
38
+ "CALENDAR_Event_Date_Start_End_Same_Day": "Le {dateStart}, de {timeStart} à {timeEnd}",
39
+ "CALENDAR_Event_Date_Start_End": "Du {dateStart}, {timeStart} au {dateEnd}, {timeEnd}",
40
+ "CALENDAR_Event_Date": "Le {date}, {time}",
42
41
  "CALENDAR_Event_Recurrence_Daily": "Tous les jours",
43
42
  "CALENDAR_Event_Recurrence_Monthly": "Tous les {day} du mois",
44
43
  "CALENDAR_Event_Recurrence_Until": "jusqu'au {date}",
45
44
  "CALENDAR_Event_Recurrence_UntilField": "Until",
46
45
  "CALENDAR_Event_Recurrence_Weekly": "Tous les {day}",
47
46
  "CALENDAR_Event_Recurrence_Yearly": "Tous les {date}",
47
+ "CALENDAR_Event_Recurrence": "Recurrence",
48
48
  "CALENDAR_Event_Remaining_Seats": "places restantes",
49
49
  "CALENDAR_Event_Report": "Compte rendu",
50
- "CALENDAR_Event_Revive": "Relancer",
51
50
  "CALENDAR_Event_Revive_All": "Tous",
52
51
  "CALENDAR_Event_Revive_Available": "Participant(s)",
53
52
  "CALENDAR_Event_Revive_Message_Description": "Quel message souhaitez vous envoyer ?",
@@ -57,8 +56,11 @@ declare const _default: {
57
56
  "CALENDAR_Event_Revive_Unavailable": "Indisponible(s)",
58
57
  "CALENDAR_Event_Revive_Visio": "En distanciel",
59
58
  "CALENDAR_Event_Revive_Waiting": "En attente",
59
+ "CALENDAR_Event_Revive": "Relancer",
60
60
  "CALENDAR_Event_Visio_Url": "Rejoindre la web conférence",
61
+ "CALENDAR_Event": "Evénement",
61
62
  "CALENDAR_Join": "Je participe",
63
+ "CALENDAR_listWeek": "List",
62
64
  "CALENDAR_Meeting": "Meeting",
63
65
  "CALENDAR_Recurrent_Event_Warning": "This is a recurring event. Changes will apply to all events in the series.",
64
66
  "CALENDAR_Reject": "Je ne participe pas",
@@ -67,12 +69,12 @@ declare const _default: {
67
69
  "CALENDAR_Status_Unavailable": "Vous ne participez pas",
68
70
  "CALENDAR_Status_Unknown": "En attente",
69
71
  "CALENDAR_Status_Visio": "En distanciel",
70
- "CALENDAR_Today": "Today",
71
- "CALENDAR_Update_Confirmation_Recurrent": "Do you want to update the whole series?",
72
- "CALENDAR_dayGridMonth": "Month",
73
- "CALENDAR_listWeek": "List",
74
72
  "CALENDAR_timeGridDay": "Day",
75
73
  "CALENDAR_timeGridWeek": "Week",
74
+ "CALENDAR_Today": "Today",
75
+ "CALENDAR_Update_Confirmation_Recurrent": "Do you want to update the whole series?",
76
+ "CALENDAR_Widget_Editor_View": "View",
77
+ "CALENDAR_Widget_View_Month": "Month",
76
78
  "CLIPBOARD_Copy_Success": "Copied to clipboard",
77
79
  "COLOR_PICKER_recent_colors": "Recent colors",
78
80
  "COMMENT_Add_Comment": "Add comment",
@@ -109,8 +111,8 @@ declare const _default: {
109
111
  "CRPT_Report_Description_Required": "La description est obligatoire",
110
112
  "CRPT_Report_Sent": "Report sent",
111
113
  "DND_ADD_SECTION": "+ Add section",
112
- "DND_LIST_TITLE": "Items",
113
114
  "DND_EMPTY_STATE": "No items to display",
115
+ "DND_LIST_TITLE": "Items",
114
116
  "DND_NEW_SECTION_LABEL": "New Section",
115
117
  "DND_SECTIONS_TITLE": "Sections",
116
118
  "DND_STACK_TITLE": "Active Buttons",
@@ -122,28 +124,28 @@ declare const _default: {
122
124
  "DRIVE_MS_Accounts": "Accounts",
123
125
  "DRIVE_MS_Default": "Default",
124
126
  "DRIVE_MS_Error_Personal_Account": "Personal accounts are not supported",
125
- "DRIVE_MS_Group_Filters": "Filtres",
126
127
  "DRIVE_MS_Group_Filters_All": "Tous les groupes",
127
128
  "DRIVE_MS_Group_Filters_Member_Of": "Seulement les groupes ou je suis membre",
129
+ "DRIVE_MS_Group_Filters": "Filtres",
128
130
  "DRIVE_MS_Logout": "Logout",
129
131
  "DRIVE_MS_Need_Login": "Please login to access your files",
130
132
  "DRIVE_MS_Other_Account": "Add another account",
131
133
  "DRIVE_MS_Set_Default_Account": "Set as default account",
132
- "DRIVE_Private": "Private",
133
134
  "DRIVE_Private_Group": "Ce groupe est privé",
135
+ "DRIVE_Private": "Private",
134
136
  "DRIVE_Public": "Public",
135
137
  "DRIVE_Root": "Microsoft 365",
136
138
  "DRIVE_Select_Document": "Sélectionner ce document",
137
139
  "DRIVE_Select_Folder": "Sélectionner ce dossier",
140
+ "ERROR_Mail_Invalid": "Invalid email.",
138
141
  "ERROR404_Msg": "Hum...There is nothing here...",
139
142
  "ERROR404_MsgDetail": "This page does not exist, or its content has been deleted. Go back to home?",
140
143
  "ERROR404_Wall": "Go back home",
141
- "ERROR_Mail_Invalid": "Invalid email.",
142
144
  "EVENT_Export_Calendar_ICalendar_Format": "Export to iCalendar format",
143
- "EVENT_ICalendar_Export_Url": "Sync all events",
145
+ "EVENT_I_Register": "Je participe",
144
146
  "EVENT_ICalendar_Export_Url_Explanation": "Copy url in your mail client",
145
147
  "EVENT_ICalendar_Export_Url_Subscribed": "Sync accepted events",
146
- "EVENT_I_Register": "Je participe",
148
+ "EVENT_ICalendar_Export_Url": "Sync all events",
147
149
  "FIELDS_Add_Option": "Add a response",
148
150
  "FILE_Existing_Files_Label": "Added files",
149
151
  "FILE_Upload_Label": "Drop or select files",
@@ -152,36 +154,39 @@ declare const _default: {
152
154
  "FOLDER_Nb_Elements": "Documents",
153
155
  "GLOBAL_A11Y_APP_NAV": "Menu of the application {appName}",
154
156
  "GLOBAL_Action_Missing_License": "🔐 The license of the app is not active on your platform!",
155
- "GLOBAL_Add": "Add",
156
157
  "GLOBAL_Add_File": "Add file",
157
158
  "GLOBAL_Add_Image": "Add image",
158
159
  "GLOBAL_Add_Video": "Add video",
160
+ "GLOBAL_Add": "Add",
159
161
  "GLOBAL_Alert_Author": "Recevoir une copie",
160
162
  "GLOBAL_Animated_Meeting": "Diapazone",
161
163
  "GLOBAL_Attachments": "Pièces jointes",
162
164
  "GLOBAL_Audience": "Audience",
163
165
  "GLOBAL_BACK_PREVIOUS_SECTION": "back to the previous section",
166
+ "GLOBAL_Cancel": "Cancel",
164
167
  "GLOBAL_CHECK_BOXES": "Check the boxes",
165
168
  "GLOBAL_CHECK_FIRST_BOXE": "It's empty! Check your first tag.",
166
- "GLOBAL_Cancel": "Cancel",
167
169
  "GLOBAL_Close": "Close",
168
170
  "GLOBAL_Comments": "Comments",
169
171
  "GLOBAL_Confirm": "Confirm",
170
172
  "GLOBAL_Continue": "Continue",
171
- "GLOBAL_Creation_Date": "Creation date",
172
173
  "Global_Create": "Créer",
174
+ "GLOBAL_Creation_Date": "Creation date",
173
175
  "GLOBAL_Creator": "Creator",
174
- "GLOBAL_DateTime_Placeholder": "Date and time",
175
176
  "GLOBAL_Date_Placeholder": "Date",
176
- "GLOBAL_Delete": "Delete",
177
+ "GLOBAL_DateTime_Placeholder": "Date and time",
178
+ "GLOBAL_Day": "Day",
177
179
  "GLOBAL_Delete_Confirm": "Confirm delete",
178
180
  "GLOBAL_Delete_Confirmation": "Please confirm suppression",
181
+ "GLOBAL_Delete": "Delete",
179
182
  "GLOBAL_Documents": "Documents",
180
183
  "GLOBAL_Download": "Download",
181
184
  "GLOBAL_Downloads": "Downloads",
185
+ "GLOBAL_Draft_Saved_Today": "Sauvegardé à {time}",
186
+ "GLOBAL_Draft_Saved": "Sauvegardé le {date}, à {time}",
182
187
  "GLOBAL_Edit": "Edit",
183
- "GLOBAL_File": "File",
184
188
  "GLOBAL_File_Bank": "Document bank",
189
+ "GLOBAL_File": "File",
185
190
  "GLOBAL_Files": "Files",
186
191
  "GLOBAL_Filter": "Filter",
187
192
  "GLOBAL_Folders": "Folders",
@@ -209,8 +214,8 @@ declare const _default: {
209
214
  "GLOBAL_Loading": "Loading",
210
215
  "GLOBAL_Login": "Login",
211
216
  "GLOBAL_Move": "Move",
212
- "GLOBAL_Next": "Next",
213
217
  "GLOBAL_New": "Nouveau",
218
+ "GLOBAL_Next": "Next",
214
219
  "GLOBAL_No_Result": "No result",
215
220
  "GLOBAL_Object_Link": "Objet lié",
216
221
  "GLOBAL_Ok": "OK",
@@ -223,21 +228,20 @@ declare const _default: {
223
228
  "GLOBAL_Publish": "Publish",
224
229
  "GLOBAL_Recommended": "recommended",
225
230
  "GLOBAL_Redirect_To_User_Profile_React": "Redirection to the profile page of {username}",
231
+ "GLOBAL_Reorder": "Reorder",
226
232
  "GLOBAL_Reset": "Réinitialiser",
227
- "GLOBAL_Save": "Save",
228
233
  "GLOBAL_Save_as_draft": "Save draft",
229
- "GLOBAL_Draft_Saved": "Sauvegardé le {date}, à {time}",
230
- "GLOBAL_Draft_Saved_Today": "Sauvegardé à {time}",
231
- "GLOBAL_Schedule": "Schedule",
234
+ "GLOBAL_Save": "Save",
232
235
  "GLOBAL_Schedule_Action": "Schedule",
236
+ "GLOBAL_Schedule": "Schedule",
233
237
  "GLOBAL_Scheduled_Date": "Scheduled date",
234
- "GLOBAL_Search": "Search",
235
238
  "GLOBAL_Search_Loading": "Searching...",
239
+ "GLOBAL_Search": "Search",
236
240
  "GLOBAL_See_Less": "See less",
237
241
  "GLOBAL_See_More": "See more",
238
- "GLOBAL_Select": "Select",
239
242
  "GLOBAL_Select_Date_In_Calendar": "Select a date in the calendar",
240
243
  "GLOBAL_Select_Time": "Select time",
244
+ "GLOBAL_Select": "Select",
241
245
  "GLOBAL_Send_Alert": "Envoyer le mail de notification à ceux qui l’ont demandé",
242
246
  "GLOBAL_Sent": "Envoyé",
243
247
  "GLOBAL_Settings": "Paramétrer",
@@ -253,18 +257,21 @@ declare const _default: {
253
257
  "HIERARCHICAL_TAXONOMY_DESCRIPTION": "Browse and select options by checking the boxes. You can select an unlimited number of options.",
254
258
  "HOMEUSER_Home": "Home",
255
259
  "INPUT_FILE_ADVANCED_Dropbox": "Dropbox",
260
+ "INPUT_FILE_ADVANCED_File_Too_Large": "File exceeds the maximum allowed size (250 MB)",
256
261
  "INPUT_FILE_ADVANCED_FileBank": "Filebank",
257
262
  "INPUT_FILE_ADVANCED_Google_Drive": "Google Drive",
258
- "INPUT_FILE_ADVANCED_File_Too_Large": "File exceeds the maximum allowed size (250 MB)",
259
263
  "INPUT_FILE_ADVANCED_Microsoft_365": "Microsoft 365",
260
- "INPUT_SELECT_Expand": "Expand",
261
264
  "INPUT_RichText_Html_Modal_Label": "HTML content",
262
265
  "INPUT_RichText_Html_Modal_Title": "Edit HTML content",
266
+ "INPUT_SELECT_Expand": "Expand",
263
267
  "INPUT_SELECT_Has_Reached_Limit": "You reached the limit of {limit} items",
268
+ "INTRANET_Selection_Group": "Select a group",
264
269
  "JIA_TINY_BUTTON_TOOLTIP": "AI features to help you write",
265
270
  "JIA_TINY_DEVELOP": "Develop",
266
271
  "JIA_TINY_SUMMARIZE": "Summarize",
267
272
  "JIA_TINY_TLDR": "TLDR",
273
+ "Office_No_Providers": "Aucun fournisseur disponible, contactez un administrateur",
274
+ "Office_Set_Configuration": "Connectez-vous",
268
275
  "OfficeHook_Conf_CalDav_Calendar": "Agenda",
269
276
  "OfficeHook_Conf_CardDav_Address_Book": "Adress book",
270
277
  "OfficeHook_Conf_IMap_Hostname": "Hostname",
@@ -277,35 +284,33 @@ declare const _default: {
277
284
  "OfficeHook_Conf_Url": "Url",
278
285
  "OfficeHook_Conf_Username": "Username",
279
286
  "OfficeHook_Settings": "Paramètres généraux",
280
- "Office_No_Providers": "Aucun fournisseur disponible, contactez un administrateur",
281
- "Office_Set_Configuration": "Connectez-vous",
282
287
  "PANEL_Background_Color": "Couleur du fond",
283
288
  "PANEL_Description": "Description",
284
289
  "PANEL_Edit_Slide_Background_Color": "Background color",
285
290
  "PANEL_Edit_Slide_Background_Opacity_Filter": "Background opacity filter",
286
291
  "PANEL_Image_Size": "Taille de l'image",
287
- "PANEL_Size_Small": "Petit",
288
- "PANEL_Size_Medium": "Moyen",
289
292
  "PANEL_Size_Large": "Grand",
290
- "PANEL_Title": "Titre",
293
+ "PANEL_Size_Medium": "Moyen",
294
+ "PANEL_Size_Small": "Petit",
291
295
  "PANEL_Text_Color": "Couleur du texte",
292
296
  "PANEL_Text_Size": "Taille du texte",
297
+ "PANEL_Title": "Titre",
293
298
  "PANEL_Widget_Empty_Setting": "Il n'y a rien à configurer",
294
299
  "PANEL_Widget_Extension_Name": "Nom de l'extension",
295
300
  "PANEL_Widget_Level": "Niveau d'affichage",
296
- "PANEL_Widget_Synchronize": "Synchronisation",
297
- "PANEL_Widget_Url": "Copier l'url du widget",
298
301
  "PANEL_Widget_Selection": "Style & décorations",
299
302
  "PANEL_Widget_Settings": "Configuration du widget",
303
+ "PANEL_Widget_Synchronize": "Synchronisation",
300
304
  "PANEL_Widget_Text": "Ajouter du texte",
305
+ "PANEL_Widget_Url": "Copier l'url du widget",
301
306
  "PLUGIN_Manager_CalDav_Prompt": "Tester la connexion CalDav",
302
307
  "PLUGIN_Manager_CardDav_Prompt": "Tester la connexion CardDav",
303
308
  "PLUGIN_Manager_Connection_Error": "Connexion impossible. Vérifiez vos identifiants",
304
309
  "PLUGIN_Manager_IMap_Prompt": "Tester la connexion IMAP",
305
310
  "POLL_See_Response_After": "Hidden answers",
306
- "POWERED_BY": "Powered by",
307
311
  "POWERED_BY_Link": "https://www.jamespot.com/",
308
312
  "POWERED_BY_See_More": "Know more",
313
+ "POWERED_BY": "Powered by",
309
314
  "PUBLISH_To": "Publish for",
310
315
  "REMOVE_FAVORITE": "Remove from favorites",
311
316
  "SEARCH_File": "Search file",
@@ -314,55 +319,58 @@ declare const _default: {
314
319
  "SPOTIT_Receive_A_Copy": "Receive a copy",
315
320
  "SPOTLIGHT_Send_Alert_To_Subscribers": "Send notification mail to those who have requested it",
316
321
  "STYLE_Background_Color": "Couleur de fond",
317
- "STYLE_Border_Style": "Style de bordure",
318
322
  "STYLE_Border_Style_Dashed": "Bordure discontinue",
319
323
  "STYLE_Border_Style_Dotted": "Bordure en pointillés",
320
324
  "STYLE_Border_Style_None": "Aucune bordure",
321
325
  "STYLE_Border_Style_Solid": "Bordure continue",
326
+ "STYLE_Border_Style": "Style de bordure",
322
327
  "STYLE_Border_Width": "Taille de la bordure",
323
328
  "STYLE_Box_Shadow": "Ombre portée",
324
- "STYLE_Font_Weight": "Epaisseur du texte",
325
329
  "STYLE_Font_Weight_Bold": "Bold",
326
330
  "STYLE_Font_Weight_Medium": "Medium",
327
331
  "STYLE_Font_Weight_Normal": "Normal",
328
332
  "STYLE_Font_Weight_Semi_Bold": "Semi bold",
333
+ "STYLE_Font_Weight": "Epaisseur du texte",
329
334
  "STYLE_Line_Height": "Hauteur de ligne",
330
335
  "STYLE_Padding": "Marge interne",
331
- "STYLE_Position": "Position",
332
- "STYLE_Position_Top_Left": "Position haut gauche",
333
- "STYLE_Position_Top_Center": "Position haut centre",
334
- "STYLE_Position_Top_Right": "Position haut droite",
335
- "STYLE_Position_Center_Left": "Position centre gauche",
336
- "STYLE_Position_Center": "Position centre",
337
- "STYLE_Position_Center_Right": "Position centre droite",
338
- "STYLE_Position_Bottom_Left": "Position bas gauche",
339
336
  "STYLE_Position_Bottom_Center": "Position bas centre",
337
+ "STYLE_Position_Bottom_Left": "Position bas gauche",
340
338
  "STYLE_Position_Bottom_Right": "Position bas droite",
339
+ "STYLE_Position_Center_Left": "Position centre gauche",
340
+ "STYLE_Position_Center_Right": "Position centre droite",
341
+ "STYLE_Position_Center": "Position centre",
342
+ "STYLE_Position_Top_Center": "Position haut centre",
343
+ "STYLE_Position_Top_Left": "Position haut gauche",
344
+ "STYLE_Position_Top_Right": "Position haut droite",
345
+ "STYLE_Position": "Position",
341
346
  "STYLE_Radius": "Arrondi",
342
- "STYLE_Text_Align": "Alignement du texte",
343
347
  "STYLE_Text_Align_Center": "Center",
344
348
  "STYLE_Text_Align_Justify": "Justify",
345
349
  "STYLE_Text_Align_Left": "Left",
346
350
  "STYLE_Text_Align_Right": "Right",
351
+ "STYLE_Text_Align": "Alignement du texte",
347
352
  "STYLE_Text_Color": "Couleur du texte",
348
353
  "STYLE_Text_Size": "Taille du texte",
349
354
  "TINY_MCE_Insert_Markdown": "Insert Markdown",
350
355
  "TINY_MCE_Markdown_Shortcuts": "Markdown shortcuts",
351
- "WIDGET_Agenda": "Agenda",
352
356
  "WIDGET_Agenda_Accepted": "You participate",
353
357
  "WIDGET_Agenda_Declined": "You don't participate",
354
358
  "WIDGET_Agenda_Pending": "You haven't responded yet",
359
+ "WIDGET_Agenda": "Agenda",
355
360
  "WIDGET_Builder": "Widget Builder",
356
361
  "WIDGET_Button_Empty_Text": "Ajouter un label",
357
362
  "WIDGET_Calendar_CalDav": "Office Agenda",
363
+ "WIDGET_Calendar_Group_Events": "Group",
364
+ "WIDGET_Calendar_Last_Events": "List",
365
+ "WIDGET_CALENDAR": "Calendar",
358
366
  "WIDGET_Cannot_Display": "A widget is available but cannot be displayed here for now... ({widget})",
359
367
  "WIDGET_Check_List_Description": "Add a checklist to keep track of progress",
360
368
  "WIDGET_Check_List_Help": "Collaboration mode allows users with access to this widget to modify it",
361
369
  "WIDGET_Collaboration": "Collaboration",
362
370
  "WIDGET_Contact_CardDav": "Office Contacts",
363
371
  "WIDGET_Contacts": "Contacts",
364
- "WIDGET_Cover_Add_Image_Button_Label": "Ajouter une image",
365
372
  "WIDGET_Cover_Add_Button_Label": "Ajouter un bouton",
373
+ "WIDGET_Cover_Add_Image_Button_Label": "Ajouter une image",
366
374
  "WIDGET_Cover_Button_Background_Color_Label": "Couleur du bouton",
367
375
  "WIDGET_Cover_Button_Default_Label": "Bouton",
368
376
  "WIDGET_Cover_Button_Size_Label": "Taille",
@@ -377,75 +385,71 @@ declare const _default: {
377
385
  "WIDGET_Datasource_Select_Document": "Sélectionner depuis la banque documentaire",
378
386
  "WIDGET_Datasource_Select_Wedoc_File": "Sélectionner depuis wedoc",
379
387
  "WIDGET_Datasource_Spreadsheet_Header_Error": "Cette feuille contient au moins une colonne sans titre",
380
- "WIDGET_Panel_Tpl_Warning_Message": "Il n'est pas possible de configurer ce widget en mode template",
381
388
  "WIDGET_Display_Level_1": "Icône",
382
389
  "WIDGET_Display_Level_2": "Icône + Pastille",
383
390
  "WIDGET_Display_Level_3": "Contenus",
384
391
  "WIDGET_Display_Level_4": "Contenus + Interactions",
385
392
  "WIDGET_Display_Level_Select": "Sélectionner un mode d'affichage",
386
393
  "WIDGET_Email_IMAP": "Office Mails",
387
- "WIDGET_Lucca_Absence": "Absence (Timmi)",
388
394
  "WIDGET_Lucca_Absence_No_Result": "Aucun resultat",
389
395
  "WIDGET_Lucca_Absence_Text": "Affichez les absents renseignés depuis votre outil RH Timmi pour une meilleure communication interne.",
390
- "WIDGET_Lucca_Absence_Url": "Url",
391
396
  "WIDGET_Lucca_Absence_Url_Error": "Une erreur s'est produite",
392
- "WIDGET_Lucca_Absent_Until": "Absent jusqu'au",
397
+ "WIDGET_Lucca_Absence_Url": "Url",
398
+ "WIDGET_Lucca_Absence": "Absence (Timmi)",
393
399
  "WIDGET_Lucca_Absent_Until_Today": "Absent jusqu'a aujourd'hui",
394
400
  "WIDGET_Lucca_Absent_Until_Tomorrow": "Absent jusqu'a demain",
401
+ "WIDGET_Lucca_Absent_Until": "Absent jusqu'au",
402
+ "WIDGET_Panel_Tpl_Warning_Message": "Il n'est pas possible de configurer ce widget en mode template",
395
403
  "WIDGET_Presence_Availability": "{max} places disponibles",
396
404
  "WIDGET_Presence_Is_Closed": "Il n'est plus possible de répondre à ce sondage",
397
- "WIDGET_Presence_Limit": "Limiter le nombre de places",
398
405
  "WIDGET_Presence_Limit_Response_Error": "Il n y a plus de place disponible",
399
406
  "WIDGET_Presence_Limit_Value": "Présence maximum",
407
+ "WIDGET_Presence_Limit": "Limiter le nombre de places",
400
408
  "WIDGET_Prompt_Dropdown": "Configurer",
401
409
  "WIDGET_Prompt_Logout": "Se déconnecter",
402
- "WIDGET_Quick_Survey": "Add a survey to collect feedback",
403
- "WIDGET_Quick_Survey_Text": "Add a survey to collect feedback",
410
+ "WIDGET_Quick_Survey_isStarted_no_modification": "The survey has already some answers, some modifications are not possible, if needed, please start a new survey.",
404
411
  "WIDGET_Quick_Survey_isStarted": "The survey has already some answers, you can't make any change to it, if you need to, please reset the survey.",
405
412
  "WIDGET_Quick_Survey_Reset": "Reset the survey answers",
406
- "WIDGET_Quick_Survey_isStarted_no_modification": "The survey has already some answers, some modifications are not possible, if needed, please start a new survey.",
413
+ "WIDGET_Quick_Survey_Text": "Add a survey to collect feedback",
414
+ "WIDGET_Quick_Survey": "Add a survey to collect feedback",
407
415
  "WIDGET_Set_Widget": "Configurer",
408
416
  "WIDGET_Slider_Autoplay": "Défilement automatique",
409
417
  "WIDGET_Slider_Delay": "Délai de défilement",
410
418
  "WIDGET_Survey_After_Help": "Respondents will only see the results once after they respond. They will no longer be able to edit their answer.",
411
419
  "WIDGET_Survey_Anonymize_Help": "Les réponses de ce sondage seront anonymes : personne ne pourra savoir qui a répondu quoi, seulement les pourcentages.",
412
- "WIDGET_Survey_Close_Survey": "Close the survey",
413
420
  "WIDGET_Survey_Close_Survey_Description": "do you really want to finish this survey?",
414
- "WIDGET_Survey_Closing": "Enable closing",
421
+ "WIDGET_Survey_Close_Survey": "Close the survey",
415
422
  "WIDGET_Survey_Closing_Help": "Display closing button",
423
+ "WIDGET_Survey_Closing": "Enable closing",
416
424
  "WIDGET_Survey_Date_Add_Event": "Ajouter",
425
+ "WIDGET_Survey_Date_End_At": "Fin le {dateEnd}",
417
426
  "WIDGET_Survey_Date_Label": "{label} {day} à {time}",
418
427
  "WIDGET_Survey_Date_Participant_At": "Participants le {date}",
419
- "WIDGET_Survey_Date_Revive": "Relancer les participants",
420
428
  "WIDGET_Survey_Date_Revive_All": "Tous les participants",
421
- "WIDGET_Survey_Date_Revive_Message": "Message de relance",
422
429
  "WIDGET_Survey_Date_Revive_Confirm": "Relancer",
430
+ "WIDGET_Survey_Date_Revive_Message": "Message de relance",
423
431
  "WIDGET_Survey_Date_Revive_User_With_No_Response": "Les participants sans réponse",
432
+ "WIDGET_Survey_Date_Revive": "Relancer les participants",
424
433
  "WIDGET_Survey_Date_Stats": "{totalResponse}/{totalRespondents} personnes ont répondu ({percent}%)",
425
- "WIDGET_Survey_Date_End_At": "Fin le {dateEnd}",
426
- "WIDGET_Survey_Multiple": "Multiple response",
427
434
  "WIDGET_Survey_Multiple_Help": "Allow multiple responses",
428
- "WIDGET_Survey_Open": "Open survey",
435
+ "WIDGET_Survey_Multiple": "Multiple response",
429
436
  "WIDGET_Survey_Open_Help": "Allows other users to add suggestion",
437
+ "WIDGET_Survey_Open": "Open survey",
430
438
  "WIDGET_Text_Use_Flex_Label": "Disposition flexible",
431
- "WIDGET_User_Profil": "Profil utilisateur",
432
- "WIDGET_User_Profil_Text": "Permettez à vos utilisateur un accès vers leur propre profil en un clic ! Idéal pour les encourager à le compléter. ",
433
- "WIDGET_User_Profil_Font_Weight_Label": "Gras",
434
439
  "WIDGET_User_Profil_Display_Mode_Label": "Affichage du nom",
440
+ "WIDGET_User_Profil_Font_Weight_Label": "Gras",
435
441
  "WIDGET_User_Profil_Only_Picture": "Image seule",
436
442
  "WIDGET_User_Profil_Picture_Alt_Label": "Image de l'utilisateur",
437
- "WIDGET_User_Profil_Picture_FirstName": "Avec prénom",
438
443
  "WIDGET_User_Profil_Picture_FirstName_LastName": "Avec prénom + nom",
444
+ "WIDGET_User_Profil_Picture_FirstName": "Avec prénom",
439
445
  "WIDGET_User_Profil_Text_Max_Length_Description": "Maximum 30 caractères",
446
+ "WIDGET_User_Profil_Text": "Permettez à vos utilisateur un accès vers leur propre profil en un clic ! Idéal pour les encourager à le compléter. ",
440
447
  "WIDGET_User_Profil_Tooltip_Link_Text": "Accéder à votre profil",
441
- "WIDGET_Welcome": "Message d'accueil",
442
- "WIDGET_Welcome_Text": "Rendez vos pages plus personnelles en accueillant chaleureusement vos utilisateurs.",
448
+ "WIDGET_User_Profil": "Profil utilisateur",
443
449
  "WIDGET_Welcome_Default_Message": "Bienvenue",
444
- "WIDGET_elcome_Linebreak_Label": "Saut de ligne (après le message)",
445
- "GLOBAL_Reorder": "Reorder",
446
- "WIDGET_Welcome_Linebreak_Label": "Saut de ligne (après le message)"
450
+ "WIDGET_Welcome_Linebreak_Label": "Saut de ligne (après le message)",
451
+ "WIDGET_Welcome": "Message d'accueil"
447
452
  }
448
- }
449
- ;
453
+ };
450
454
 
451
455
  export default _default;
@@ -35,7 +35,7 @@ export type { JRCValidationButtonProps } from './components/JRCButton/JRCValidat
35
35
  export type { JRCButtonDownloadProps } from './components/JRCButtonDownload/JRCButtonDownload';
36
36
  export type { JRCButtonDropdownOptionProps, JRCButtonDropdownProps, } from './components/JRCButtonDropdown/JRCButtonDropdown.types';
37
37
  export type { JRCButtonFileProps } from './components/JRCButtonFile/JRCButtonFile';
38
- export type { CalendarEvent, CalendarView, JRCCalendarProps } from './components/JRCCalendar/types';
38
+ export type { CalendarEvent, CalendarView, JRCCalendarProps, JRCCalendarMode } from './components/JRCCalendar/types';
39
39
  export type { JRCCardProps } from './components/JRCCard/JRCCard';
40
40
  export type { JRCCardImgProps } from './components/JRCCard/JRCCardImg';
41
41
  export type { JRCColumnCenterProps } from './components/JRCColumnCenter/JRCColumnCenter';