jamespot-react-components 1.3.106 → 1.3.108

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.
Files changed (47) hide show
  1. package/dist/jamespot-react-components.cjs +1863 -1541
  2. package/dist/jamespot-react-components.js +17537 -16419
  3. package/dist/src/components/Editors/components/EditorInputGroups.d.ts +8 -0
  4. package/dist/src/components/Editors/ensure.d.ts +1 -0
  5. package/dist/src/components/Editors/types.d.ts +9 -3
  6. package/dist/src/components/Form/Input/JRCInputColor/AlphaRange.d.ts +6 -0
  7. package/dist/src/components/Form/Input/JRCSelect/JRCInputAutocompleteViews.d.ts +2 -1
  8. package/dist/src/components/Form/Input/JRCSelect/JRCInputSelect.types.d.ts +3 -0
  9. package/dist/src/components/JRCFolders/JRCFolderBreadcrumb.d.ts +3 -3
  10. package/dist/src/components/JRCFolders/JRCFolderBreadcrumb.stories.d.ts +15 -0
  11. package/dist/src/components/JRCFolders/JRCFolders.d.ts +1 -1
  12. package/dist/src/components/JRCFolders/JRCFolders.stories.d.ts +5 -2
  13. package/dist/src/components/JRCFolders/JRCFoldersGallery.d.ts +19 -0
  14. package/dist/src/components/JRCFolders/JRCFoldersList.d.ts +8 -0
  15. package/dist/src/components/JRCFolders/components/DocumentList.d.ts +7 -0
  16. package/dist/src/components/JRCFolders/components/FileLittleList.d.ts +2 -3
  17. package/dist/src/components/JRCFolders/components/FolderList.d.ts +6 -0
  18. package/dist/src/components/JRCFolders/context/folderContext.d.ts +16 -0
  19. package/dist/src/components/JRCFolders/mocks.d.ts +111 -0
  20. package/dist/src/components/JRCFolders/styles.d.ts +15 -7
  21. package/dist/src/components/JRCFolders/types.d.ts +43 -6
  22. package/dist/src/components/JRCFolders/useFilebankApi.d.ts +21 -0
  23. package/dist/src/components/JRCFolders/useFilebankSearchApi.d.ts +8 -0
  24. package/dist/src/components/JRCFolders/useFolderSelection.d.ts +16 -0
  25. package/dist/src/components/JRCFolders/utils.d.ts +2 -0
  26. package/dist/src/components/JRCGroups/JRCGroups.d.ts +2 -1
  27. package/dist/src/components/JRCList/JRCList.d.ts +4 -0
  28. package/dist/src/components/JRCList/JRCList.styles.d.ts +3 -0
  29. package/dist/src/components/JRCObjectList/JRCObjectList.d.ts +3 -1
  30. package/dist/src/components/Widgets/JRCWidgetContact/JRCWidgetContact.const.d.ts +27 -0
  31. package/dist/src/components/Widgets/JRCWidgetContact/JRCWidgetContact.d.ts +11 -0
  32. package/dist/src/components/Widgets/JRCWidgetContact/JRCWidgetContact.stories.d.ts +11 -0
  33. package/dist/src/components/Widgets/JRCWidgetContact/JRCWidgetContactEditor.d.ts +7 -0
  34. package/dist/src/components/Widgets/JRCWidgetDocuments/JRCWidgetDocumentsEditor.d.ts +3 -0
  35. package/dist/src/components/Widgets/JRCWidgetDocuments/components/WidgetDocumentSelection.d.ts +7 -0
  36. package/dist/src/components/Widgets/JRCWidgetDocuments/components/WidgetModalSelection.d.ts +7 -0
  37. package/dist/src/components/Widgets/JRCWidgetMeteo/JRCWidgetMeteo.const.d.ts +4 -0
  38. package/dist/src/components/Widgets/JRCWidgetMeteo/JRCWidgetMeteo.d.ts +5 -0
  39. package/dist/src/components/Widgets/JRCWidgetMeteo/JRCWidgetMeteo.stories.d.ts +6 -0
  40. package/dist/src/components/Widgets/JRCWidgetMeteo/JRCWidgetMeteoEditor.d.ts +7 -0
  41. package/dist/src/components/Widgets/JRCWidgetNewsflash/JRCWidgetNewsflash.stories.d.ts +2 -0
  42. package/dist/src/components/Widgets/JRCWidgetNewsflash/JRCWidgetNewsflashEditor.d.ts +6 -2
  43. package/dist/src/components/Widgets/utils.d.ts +4 -0
  44. package/dist/src/components/index.d.ts +16 -11
  45. package/dist/src/styles/theme.d.ts +0 -2
  46. package/dist/src/translation/lang.json.d.ts +41 -3
  47. package/package.json +3 -3
@@ -0,0 +1,5 @@
1
+ export type JRCWidgetMeteoProps = {
2
+ insee?: string;
3
+ backgroundColor?: string;
4
+ };
5
+ export declare const JRCWidgetMeteo: ({ insee, backgroundColor }: JRCWidgetMeteoProps) => import("react/jsx-runtime").JSX.Element | null;
@@ -0,0 +1,6 @@
1
+ import { Meta, StoryFn } from '@storybook/react-vite';
2
+ declare const _default: Meta;
3
+ export default _default;
4
+ export declare const WithCity: StoryFn;
5
+ export declare const CustomColor: StoryFn;
6
+ export declare const NoCity: StoryFn;
@@ -0,0 +1,7 @@
1
+ import { WidgetMeteoContent } from 'jamespot-user-api';
2
+ export interface JRCWidgetMeteoEditorProps {
3
+ uniqid: string;
4
+ content: WidgetMeteoContent;
5
+ onChangeContent: (uniqid: string, content: WidgetMeteoContent) => void;
6
+ }
7
+ export declare const JRCWidgetMeteoEditor: ({ uniqid, content, onChangeContent }: JRCWidgetMeteoEditorProps) => import("react/jsx-runtime").JSX.Element;
@@ -8,3 +8,5 @@ export declare const BannerMode: Story;
8
8
  export declare const CoverMode: Story;
9
9
  export declare const EmptyEdit: Story;
10
10
  export declare const EmptyView: Story;
11
+ export declare const EditorWithoutGroups: Story;
12
+ export declare const EditorWithGroups: Story;
@@ -1,7 +1,11 @@
1
- import { WidgetNewsflashContent } from 'jamespot-user-api';
1
+ import { JAudienceApi, WidgetNewsflashContent } from 'jamespot-user-api';
2
+ import { AVProps } from '../../Form/Input/JRCSelect/JRCInputAutocompleteViews';
2
3
  export interface JRCWidgetNewsflashEditorProps {
3
4
  uniqid: string;
4
5
  content: WidgetNewsflashContent;
5
6
  onChangeContent: (uniqid: string, content: WidgetNewsflashContent) => void;
7
+ handlers: AVProps['handlers'] & {
8
+ audience: Pick<JAudienceApi, 'autocompletePublishTo'>;
9
+ };
6
10
  }
7
- export declare const JRCWidgetNewsflashEditor: ({ uniqid, content, onChangeContent }: JRCWidgetNewsflashEditorProps) => import("react/jsx-runtime").JSX.Element;
11
+ export declare const JRCWidgetNewsflashEditor: ({ uniqid, content, onChangeContent, handlers, }: JRCWidgetNewsflashEditorProps) => import("react/jsx-runtime").JSX.Element;
@@ -8,3 +8,7 @@ export declare const mockFileLittle: () => jFileLittle;
8
8
  export declare function getPositionStyle(position: Position): React.CSSProperties;
9
9
  export declare const mock_jUserList: () => jUserList;
10
10
  export declare const getCurrentUserDisplayText: (displayMode: string, currentUser: jUserList) => string;
11
+ export declare function explodeUri(uri: string): {
12
+ id: number;
13
+ type: string | undefined;
14
+ } | null;
@@ -73,7 +73,6 @@ export { JRCAppLeftColumn } from './JRCAppLeftColumn/JRCAppLeftColumn';
73
73
  export { JRCAttachments } from './JRCAttachments/JRCAttachments';
74
74
  export { JRCAudience } from './JRCAudience/JRCAudience';
75
75
  export { JRCAvatar } from './JRCAvatar/JRCAvatar';
76
- export { JRCFileRow } from './JRCFileRow/JRCFileRow';
77
76
  export { JRCAvatars } from './JRCAvatars/JRCAvatars';
78
77
  export { JRCButton } from './JRCButton/JRCButton';
79
78
  export { JRCValidationButton } from './JRCButton/JRCValidationButton';
@@ -107,6 +106,7 @@ export { JRCEmptySpace } from './JRCEmptySpace/JRCEmptySpace';
107
106
  export { JRCFile } from './JRCFile/JRCFile';
108
107
  export { JRCFileAvatar } from './JRCFile/JRCFileAvatar';
109
108
  export { JRCFileOpen } from './JRCFileOpen/JRCFileOpen';
109
+ export { JRCFileRow } from './JRCFileRow/JRCFileRow';
110
110
  export { JRCFileViewer } from './JRCFileViewer/JRCFileViewer';
111
111
  export { JRCFlexBox } from './JRCFlex/JRCFlexBox';
112
112
  export { JRCFolders } from './JRCFolders/JRCFolders';
@@ -166,6 +166,8 @@ export { JRCStepperPage } from './Templates/JRCStepperPage';
166
166
  export { JRCTemplateTwoColumns } from './Templates/JRCTwoColumns.template';
167
167
  export { JRCWidgetAccessibility } from './Widgets/JRCWidgetAccessibility/JRCWidgetAccessibility';
168
168
  export { JRCWidgetAccessibilityEditor } from './Widgets/JRCWidgetAccessibility/JRCWidgetAccessibilityEditor';
169
+ export { JRCWidgetArticleButton } from './Widgets/JRCWidgetArticleButton/JRCWidgetArticleButton';
170
+ export { JRCWidgetArticleButtonEditor } from './Widgets/JRCWidgetArticleButton/JRCWidgetArticleButtonEditor';
169
171
  export { JRCWidgetArticleGallery } from './Widgets/JRCWidgetArticleGallery/JRCWidgetArticleGallery';
170
172
  export { JRCWidgetArticleGalleryEditor } from './Widgets/JRCWidgetArticleGallery/JRCWidgetArticleGalleryEditor';
171
173
  export { ArticleSliderSlide } from './Widgets/JRCWidgetArticleSlider/components/ArticleSliderSlide';
@@ -176,30 +178,33 @@ export { JRCWidgetArticleTitle } from './Widgets/JRCWidgetArticleTitle/JRCWidget
176
178
  export { JRCWidgetArticleTitleEditor } from './Widgets/JRCWidgetArticleTitle/JRCWidgetArticleTitleEditor';
177
179
  export { JRCWidgetArticleAttachmentEditor } from './Widgets/JRCWidgetAttachment/JRCWidgetArticleAttachmentEditor';
178
180
  export { JRCWidgetAttachment } from './Widgets/JRCWidgetAttachment/JRCWidgetAttachment';
179
- export { JRCWidgetArticleButton } from './Widgets/JRCWidgetArticleButton/JRCWidgetArticleButton';
180
- export { JRCWidgetArticleButtonEditor } from './Widgets/JRCWidgetArticleButton/JRCWidgetArticleButtonEditor';
181
+ export { JRCWidgetBirthday } from './Widgets/JRCWidgetBirthday/JRCWidgetBirthday';
182
+ export { JRCWidgetBirthdayEditor } from './Widgets/JRCWidgetBirthday/JRCWidgetBirthdayEditor';
181
183
  export { JRCWidgetButton } from './Widgets/JRCWidgetButton/JRCWidgetButton';
182
184
  export { JRCWidgetCalendarCalDav } from './Widgets/JRCWidgetCalendarCalDav/JRCWidgetCalendarCalDav';
183
185
  export { JRCWidgetCalendarCalDavEditor } from './Widgets/JRCWidgetCalendarCalDav/JRCWidgetCalendarCalDavEditor';
184
186
  export { JRCWidgetCheckList } from './Widgets/JRCWidgetCheckList/JRCWidgetCheckList';
185
187
  export { JRCWidgetCheckListEditor } from './Widgets/JRCWidgetCheckList/JRCWidgetCheckListEditor';
186
- export { JRCWidgetBirthday } from './Widgets/JRCWidgetBirthday/JRCWidgetBirthday';
187
- export { JRCWidgetBirthdayEditor } from './Widgets/JRCWidgetBirthday/JRCWidgetBirthdayEditor';
188
188
  export { JRCWidgetColor } from './Widgets/JRCWidgetColor/JRCWidgetColor';
189
189
  export { JRCWidgetColorEditor } from './Widgets/JRCWidgetColor/JRCWidgetColorEditor';
190
- export { JRCWidgetSeparator } from './Widgets/JRCWidgetSeparator/JRCWidgetSeparator';
191
- export { JRCWidgetSeparatorEditor } from './Widgets/JRCWidgetSeparator/JRCWidgetSeparatorEditor';
190
+ export { JRCWidgetContact } from './Widgets/JRCWidgetContact/JRCWidgetContact';
191
+ export { JRCWidgetContactEditor } from './Widgets/JRCWidgetContact/JRCWidgetContactEditor';
192
192
  export { JRCWidgetContactCardDav } from './Widgets/JRCWidgetContactCardDav/JRCWidgetContactCardDav';
193
193
  export { JRCWidgetContactCardDavEditor } from './Widgets/JRCWidgetContactCardDav/JRCWidgetContactCardDavEditor';
194
194
  export { JRCWidgetCountdown } from './Widgets/JRCWidgetCountdown/JRCWidgetCountdown';
195
195
  export { JRCWidgetCountdownEditor } from './Widgets/JRCWidgetCountdown/JRCWidgetCountdownEditor';
196
196
  export { JRCWidgetCover } from './Widgets/JRCWidgetCover/JRCWidgetCover';
197
197
  export { JRCWidgetCoverEditor } from './Widgets/JRCWidgetCover/JRCWidgetCoverEditor';
198
+ export { JRCWidgetDocumentsEditor } from './Widgets/JRCWidgetDocuments/JRCWidgetDocumentsEditor';
198
199
  export { JRCWidgetEmailsImap } from './Widgets/JRCWidgetEmailsImap/JRCWidgetEmailsImap';
199
200
  export { JRCWidgetEmailsImapEditor } from './Widgets/JRCWidgetEmailsImap/JRCWidgetEmailsImapEditor';
200
201
  export { JRCWidgetEmailsImapLevel2 } from './Widgets/JRCWidgetEmailsImap/JRCWidgetEmailsImapLevel2';
202
+ export { JRCWidgetEmbed } from './Widgets/JRCWidgetEmbed/JRCWidgetEmbed';
203
+ export { JRCWidgetEmbedEditor } from './Widgets/JRCWidgetEmbed/JRCWidgetEmbedEditor';
201
204
  export { JRCWidgetEmptyInplace } from './Widgets/JRCWidgetEmptyInplace';
202
205
  export { JRCWidgetExtensionEditor } from './Widgets/JRCWidgetExtension/JRCWidgetExtensionEditor';
206
+ export { JRCWidgetFlockler } from './Widgets/JRCWidgetFlockler/JRCWidgetFlockler';
207
+ export { JRCWidgetFlocklerEditor } from './Widgets/JRCWidgetFlockler/JRCWidgetFlocklerEditor';
203
208
  export { JRCWidgetIcon } from './Widgets/JRCWidgetIcon';
204
209
  export { JRCWidgetArticleImage } from './Widgets/JRCWidgetArticleImage/JRCWidgetArticleImage';
205
210
  export { JRCWidgetArticleImageEditor } from './Widgets/JRCWidgetArticleImage/JRCWidgetArticleImageEditor';
@@ -207,12 +212,16 @@ export { JRCWidgetImage } from './Widgets/JRCWidgetImage/JRCWidgetImage';
207
212
  export { JRCWidgetImageEditor } from './Widgets/JRCWidgetImage/JRCWidgetImageEditor';
208
213
  export { JRCWidgetLuccaAbsence } from './Widgets/JRCWidgetLuccaAbsence/JRCWidgetLuccaAbsence';
209
214
  export { JRCWidgetLuccaAbsenceEditor } from './Widgets/JRCWidgetLuccaAbsence/JRCWidgetLuccaAbsenceEditor';
215
+ export { JRCWidgetMeteo } from './Widgets/JRCWidgetMeteo/JRCWidgetMeteo';
216
+ export { JRCWidgetMeteoEditor } from './Widgets/JRCWidgetMeteo/JRCWidgetMeteoEditor';
210
217
  export { JRCWidgetNewsflash } from './Widgets/JRCWidgetNewsflash/JRCWidgetNewsflash';
211
218
  export { JRCWidgetNewsflashEditor } from './Widgets/JRCWidgetNewsflash/JRCWidgetNewsflashEditor';
212
219
  export { JRCWidgetPresence } from './Widgets/JRCWidgetPresence/JRCWidgetPresence';
213
220
  export { JRCWidgetPresenceEditor } from './Widgets/JRCWidgetPresence/JRCWidgetPresenceEditor';
214
221
  export { JRCWidgetQuickSurvey } from './Widgets/JRCWidgetQuickSurvey/JRCWidgetQuickSurvey';
215
222
  export { JRCWidgetQuickSurveyEditor } from './Widgets/JRCWidgetQuickSurvey/JRCWidgetQuickSurveyEditor';
223
+ export { JRCWidgetSeparator } from './Widgets/JRCWidgetSeparator/JRCWidgetSeparator';
224
+ export { JRCWidgetSeparatorEditor } from './Widgets/JRCWidgetSeparator/JRCWidgetSeparatorEditor';
216
225
  export { CoverSliderSlide } from './Widgets/JRCWidgetSlider/components/CoverSliderSlide';
217
226
  export { JRCWidgetSliderEditor } from './Widgets/JRCWidgetSlider/JRCWidgetSliderEditor';
218
227
  export { JRCWidgetSurveyDate } from './Widgets/JRCWidgetSurveyDate/JRCWidgetSurveyDate';
@@ -222,10 +231,6 @@ export { JRCWidgetTable } from './Widgets/JRCWidgetTable/JRCWidgetTable';
222
231
  export { JRCWidgetTableEditor } from './Widgets/JRCWidgetTable/JRCWidgetTableEditor';
223
232
  export { JRCWidgetText } from './Widgets/JRCWidgetText/JRCWidgetText';
224
233
  export { JRCWidgetTextEditor } from './Widgets/JRCWidgetText/JRCWidgetTextEditor';
225
- export { JRCWidgetEmbed } from './Widgets/JRCWidgetEmbed/JRCWidgetEmbed';
226
- export { JRCWidgetEmbedEditor } from './Widgets/JRCWidgetEmbed/JRCWidgetEmbedEditor';
227
- export { JRCWidgetFlockler } from './Widgets/JRCWidgetFlockler/JRCWidgetFlockler';
228
- export { JRCWidgetFlocklerEditor } from './Widgets/JRCWidgetFlockler/JRCWidgetFlocklerEditor';
229
234
  export { JRCWidgetUserProfile } from './Widgets/JRCWidgetUserProfile/JRCWidgetUserProfile';
230
235
  export { JRCWidgetUserProfileEditor } from './Widgets/JRCWidgetUserProfile/JRCWidgetUserProfileEditor';
231
236
  export { JRCWidgetWelcome } from './Widgets/JRCWidgetWelcome/JRCWidgetWelcome';
@@ -43,8 +43,6 @@ export type ThemeType = {
43
43
  toaster: number;
44
44
  fullScreenContainer: number;
45
45
  tooltip: number;
46
- dropdownModal: number;
47
- dropDownModalIcon: number;
48
46
  sidePanelModal: number;
49
47
  };
50
48
  space: {
@@ -1,5 +1,23 @@
1
1
  declare const _default: {
2
2
  "en": {
3
+ "WIDGET_Contact": "Contact",
4
+ "WIDGET_Contact_Text": "Display a directory of selected contacts",
5
+ "GLOBAL_Update": "Update",
6
+ "CONTACT_Add_Contact": "Add a contact",
7
+ "CONTACT_Manage_Information": "Manage information",
8
+ "CONTACT_Update_Fields": "Edit fields",
9
+ "CONTACT_No_Field_Selected": "No field selected — click “Edit fields” to add some",
10
+ "CONTACT_Send_Message": "Send a message",
11
+ "USER_Not_In_Contact": "Not in your contacts",
12
+ "USER_Not_Active": "Inactive user",
13
+ "USER_Not_Specified": "Not specified",
14
+ "SHARE_Invitation_Request": "Send a contact request",
15
+ "USERACTION_Send_Mail": "Send an email",
16
+ "SELECTION_Panel_Text_Color": "Text color",
17
+ "SELECTION_Panel_Link_Color": "Link color",
18
+ "SELECTION_Panel_Button_Color": "Button color",
19
+ "SELECTION_Panel_Background_Card_Contact_Color": "Card background color",
20
+ "SELECTION_Panel_Background_Color": "Background color",
3
21
  "GLOBAL_Background": "Background",
4
22
  "INTRANET_Advanced_Options": "Advanced options",
5
23
  "WIDGET_Add_Image_Url": "Add an image URL",
@@ -12,6 +30,11 @@ declare const _default: {
12
30
  "WIDGET_Image_Scale": "Scale",
13
31
  "WIDGET_Image_X_Position": "Horizontal position",
14
32
  "WIDGET_Image_Y_Position": "Vertical position",
33
+ "GLOBAL_Search_City": "Search city or a post code",
34
+ "SELECTION_Panel_Background_Color": "Background color",
35
+ "WIDGET_METEO": "Weather",
36
+ "WIDGET_METEO_TEXT": "Display the weather in real time",
37
+ "WIDGET_METEO_Iframe": "Weather by Météo France",
15
38
  "ACTIVITY_Can_Not_comment": "You cannot comment on this content",
16
39
  "ACTIVITY_Can_Not_comment_Desc": "You cannot comment on this content. Several reasons are possible:<p>- You are not part of the audience of the content</p><p>- You do not have sufficient rights according to the group settings</p><p>- A solar storm creates interference (less likely, but you never know)",
17
40
  "ADD_FAVORITE": "Add to favorites",
@@ -23,7 +46,7 @@ declare const _default: {
23
46
  "AppLeftColumn_App_Navigation": "Application navigation menu",
24
47
  "AppLeftColumn_Close_Panel": "Reduces the size of the menu",
25
48
  "AppLeftColumn_Open_Panel": "Expands the menu",
26
- "ARTICLE_Nb_Elements": "Documents",
49
+ "ARTICLE_Nb_Elements": "{count} Document(s)",
27
50
  "ARTICLE_Nb_Selected_Elements": "Elements sélectionés",
28
51
  "ATTACHMENTS_No_Download": "No download",
29
52
  "ATTACHMENTS_Preview_Successfully_Recomputed": "Preview successfully recomputed",
@@ -171,7 +194,7 @@ declare const _default: {
171
194
  "FILE_Upload_Label": "Drop or select files",
172
195
  "FILE_Viewer_Open_With": "Ouvrir avec",
173
196
  "FILE_Viewer_Preview": "Aperçu",
174
- "FOLDER_Nb_Elements": "Documents",
197
+ "FOLDER_Nb_Elements": "{count} Document(s)",
175
198
  "GLOBAL_A11Y_APP_NAV": "Menu of the application {appName}",
176
199
  "GLOBAL_Filter_Add": "Add a filter",
177
200
  "GLOBAL_Filter_Search": "Search a filter",
@@ -302,7 +325,7 @@ declare const _default: {
302
325
  "GLOBAL_Search": "Search",
303
326
  "GLOBAL_See_Less": "See less",
304
327
  "GLOBAL_See_More": "See more",
305
- "GLOBAL_See_More_X_Elements":"({value} more elements)",
328
+ "GLOBAL_See_More_X_Elements": "({value} more elements)",
306
329
  "GLOBAL_Select_Date_In_Calendar": "Select a date in the calendar",
307
330
  "GLOBAL_Select_Time": "Select time",
308
331
  "GLOBAL_Select": "Select",
@@ -481,6 +504,9 @@ declare const _default: {
481
504
  "WIDGET_Newsflash_Display_Mode": "Display mode",
482
505
  "WIDGET_Newsflash_Button_Background": "Button background color",
483
506
  "WIDGET_Newsflash_Button_Text": "Button text color",
507
+ "WIDGET_Newsflash_Groups": "Filter by groups",
508
+ "WIDGET_Newsflash_Groups_Description": "If no filter is set, all flash infos are shown.",
509
+ "WIDGET_Newsflash_Groups_Select": "Select groups",
484
510
  "WIDGET_Panel_Tpl_Warning_Message": "Il n'est pas possible de configurer ce widget en mode template",
485
511
  "WIDGET_Presence_Availability": "{max} places disponibles",
486
512
  "WIDGET_Presence_Is_Closed": "Il n'est plus possible de répondre à ce sondage",
@@ -550,6 +576,18 @@ declare const _default: {
550
576
  "SELECTION_Panel_Size_Large": "Large",
551
577
  "WIDGET_Welcome_Default_Message": "Bienvenue",
552
578
  "WIDGET_Welcome_Linebreak_Label": "Saut de ligne (après le message)",
579
+ "WIDGET_Documents_Select_Folder": "Séléctionner un dossier",
580
+ "WIDGET_Documents_Select_Document": "Séléctionner un document",
581
+ "WIDGET_File_Hide_Preview": "Masquer l'image",
582
+ "WIDGET_File_Hide_Extension": "Masquer l'extension",
583
+ "WIDGET_File_View": "Affichage",
584
+ "WIDGET_File_View_List": "Liste",
585
+ "WIDGET_File_View_Gallery": "Galerie",
586
+ "WIDGET_File_View_Gallery_Cols": "Nombre de colonne",
587
+ "WIDGET_File_View_Gallery_Rows": "Nombre de ligne",
588
+ "WIDGET_File_Sort_By": "Ordre d'affichage",
589
+ "WIDGET_File_Sort_By_Title": "Titre",
590
+ "WIDGET_File_Sort_By_Date_Creation": "Date de création",
553
591
  "WIDGET_Welcome": "Message d'accueil",
554
592
  "WIDGET_Embed": "Embed",
555
593
  "WIDGET_Embed_Text": "Embed external HTML content (iframe, integration code)",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jamespot-react-components",
3
- "version": "1.3.106",
3
+ "version": "1.3.108",
4
4
  "description": "",
5
5
  "main": "dist/jamespot-react-components.cjs",
6
6
  "module": "dist/jamespot-react-components.js",
@@ -59,8 +59,8 @@
59
59
  "eslint-plugin-storybook": "10.3.6",
60
60
  "globals": "^16.5.0",
61
61
  "html2canvas": "^1.4.1",
62
- "jamespot-front-business": "^1.3.106",
63
- "jamespot-user-api": "^1.3.106",
62
+ "jamespot-front-business": "^1.3.107",
63
+ "jamespot-user-api": "^1.3.108",
64
64
  "jsdom": "^26.1.0",
65
65
  "knip": "^5.88.1",
66
66
  "lint-staged": "^16.4.0",