jamespot-front-business 1.3.3 → 1.3.4

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/cjs.js CHANGED
@@ -3313,15 +3313,13 @@ const WIDGET_CHECK_LIST_LABEL = 'WIDGET_Check_List';
3313
3313
  const WIDGET_CHECK_LIST_DESCRIPTION = 'WIDGET_Check_List_Description';
3314
3314
  const WIDGET_QUICK_SURVEY_LABEL = 'WIDGET_Quick_Survey';
3315
3315
  const WIDGET_QUICK_SURVEY_DESCRIPTION = 'WIDGET_Quick_Survey_Text';
3316
- const WIDGET_USER_PROFILE = 'widget-user-profil';
3317
3316
 
3318
3317
  var WIDGETS = /*#__PURE__*/Object.freeze({
3319
3318
  __proto__: null,
3320
3319
  WIDGET_CHECK_LIST_DESCRIPTION: WIDGET_CHECK_LIST_DESCRIPTION,
3321
3320
  WIDGET_CHECK_LIST_LABEL: WIDGET_CHECK_LIST_LABEL,
3322
3321
  WIDGET_QUICK_SURVEY_DESCRIPTION: WIDGET_QUICK_SURVEY_DESCRIPTION,
3323
- WIDGET_QUICK_SURVEY_LABEL: WIDGET_QUICK_SURVEY_LABEL,
3324
- WIDGET_USER_PROFILE: WIDGET_USER_PROFILE
3322
+ WIDGET_QUICK_SURVEY_LABEL: WIDGET_QUICK_SURVEY_LABEL
3325
3323
  });
3326
3324
 
3327
3325
  const widgetArticleAttachmentDefinition = {
@@ -3658,9 +3656,24 @@ const widgetQuickSurveyContent = {
3658
3656
  isNotDisabled: false,
3659
3657
  };
3660
3658
 
3659
+ const widgetWelcomeDefinition = {
3660
+ label: 'WIDGET_Welcome',
3661
+ description: 'WIDGET_Welcome_Text',
3662
+ name: jamespot.WidgetsName.Welcome,
3663
+ img: '/img/fast-intranet/widget-welcome.png',
3664
+ available: true,
3665
+ panel: {
3666
+ useWrapper: true,
3667
+ useEditor: true,
3668
+ useSelection: true,
3669
+ useWidgets: false,
3670
+ },
3671
+ };
3672
+ const widgetWelcomeContent = {};
3673
+
3661
3674
  const widgetUserProfileDefinition = {
3662
- label: WIDGET_USER_PROFILE,
3663
- description: WIDGET_USER_PROFILE,
3675
+ label: 'WIDGET_User_Profil',
3676
+ description: 'WIDGET_User_Profil_Text',
3664
3677
  name: jamespot.WidgetsName.UserProfile,
3665
3678
  img: '/img/fast-intranet/widget-user-profile.png',
3666
3679
  available: true,
@@ -3709,6 +3722,8 @@ function widgetDefinition(name) {
3709
3722
  return widgetLuccaAbsenceDefinition;
3710
3723
  case 'widget-emails-imap':
3711
3724
  return widgetEmailsImapDefinition;
3725
+ case 'widget-welcome':
3726
+ return widgetWelcomeDefinition;
3712
3727
  case 'widget-user-profil':
3713
3728
  return widgetUserProfileDefinition;
3714
3729
  case 'widget-extension':
@@ -3797,6 +3812,10 @@ function content(name) {
3797
3812
  return {
3798
3813
  ...widgetEmailsImapContent,
3799
3814
  };
3815
+ case 'widget-welcome':
3816
+ return {
3817
+ ...widgetWelcomeContent,
3818
+ };
3800
3819
  case 'widget-user-profil':
3801
3820
  return {
3802
3821
  ...widgetUserProfileContent,