jamespot-front-business 1.3.3 → 1.3.5

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/esm.js CHANGED
@@ -3311,15 +3311,13 @@ const WIDGET_CHECK_LIST_LABEL = 'WIDGET_Check_List';
3311
3311
  const WIDGET_CHECK_LIST_DESCRIPTION = 'WIDGET_Check_List_Description';
3312
3312
  const WIDGET_QUICK_SURVEY_LABEL = 'WIDGET_Quick_Survey';
3313
3313
  const WIDGET_QUICK_SURVEY_DESCRIPTION = 'WIDGET_Quick_Survey_Text';
3314
- const WIDGET_USER_PROFILE = 'widget-user-profil';
3315
3314
 
3316
3315
  var WIDGETS = /*#__PURE__*/Object.freeze({
3317
3316
  __proto__: null,
3318
3317
  WIDGET_CHECK_LIST_DESCRIPTION: WIDGET_CHECK_LIST_DESCRIPTION,
3319
3318
  WIDGET_CHECK_LIST_LABEL: WIDGET_CHECK_LIST_LABEL,
3320
3319
  WIDGET_QUICK_SURVEY_DESCRIPTION: WIDGET_QUICK_SURVEY_DESCRIPTION,
3321
- WIDGET_QUICK_SURVEY_LABEL: WIDGET_QUICK_SURVEY_LABEL,
3322
- WIDGET_USER_PROFILE: WIDGET_USER_PROFILE
3320
+ WIDGET_QUICK_SURVEY_LABEL: WIDGET_QUICK_SURVEY_LABEL
3323
3321
  });
3324
3322
 
3325
3323
  const widgetArticleAttachmentDefinition = {
@@ -3657,8 +3655,8 @@ const widgetQuickSurveyContent = {
3657
3655
  };
3658
3656
 
3659
3657
  const widgetUserProfileDefinition = {
3660
- label: WIDGET_USER_PROFILE,
3661
- description: WIDGET_USER_PROFILE,
3658
+ label: 'WIDGET_User_Profil',
3659
+ description: 'WIDGET_User_Profil_Text',
3662
3660
  name: WidgetsName.UserProfile,
3663
3661
  img: '/img/fast-intranet/widget-user-profile.png',
3664
3662
  available: true,
@@ -3671,6 +3669,36 @@ const widgetUserProfileDefinition = {
3671
3669
  };
3672
3670
  const widgetUserProfileContent = {};
3673
3671
 
3672
+ const widgetColorDefinition = {
3673
+ label: 'WIDGET_Color',
3674
+ description: 'WIDGET_Color_Text',
3675
+ name: WidgetsName.Color,
3676
+ img: '/img/fast-intranet/widget-color.png',
3677
+ available: true,
3678
+ panel: {
3679
+ useWrapper: true,
3680
+ useEditor: true,
3681
+ useSelection: true,
3682
+ useWidgets: false,
3683
+ },
3684
+ };
3685
+ const widgetColorContent = {};
3686
+
3687
+ const widgetWelcomeDefinition = {
3688
+ label: 'WIDGET_Welcome',
3689
+ description: 'WIDGET_Welcome_Text',
3690
+ name: WidgetsName.Welcome,
3691
+ img: '/img/fast-intranet/widget-welcome.png',
3692
+ available: true,
3693
+ panel: {
3694
+ useWrapper: true,
3695
+ useEditor: true,
3696
+ useSelection: true,
3697
+ useWidgets: false,
3698
+ },
3699
+ };
3700
+ const widgetWelcomeContent = {};
3701
+
3674
3702
  function widgetDefinition(name) {
3675
3703
  switch (name) {
3676
3704
  default:
@@ -3707,10 +3735,14 @@ function widgetDefinition(name) {
3707
3735
  return widgetLuccaAbsenceDefinition;
3708
3736
  case 'widget-emails-imap':
3709
3737
  return widgetEmailsImapDefinition;
3738
+ case 'widget-welcome':
3739
+ return widgetWelcomeDefinition;
3710
3740
  case 'widget-user-profil':
3711
3741
  return widgetUserProfileDefinition;
3712
3742
  case 'widget-extension':
3713
3743
  return widgetExtensionDefinition;
3744
+ case 'widget-color':
3745
+ return widgetColorDefinition;
3714
3746
  }
3715
3747
  }
3716
3748
 
@@ -3795,6 +3827,10 @@ function content(name) {
3795
3827
  return {
3796
3828
  ...widgetEmailsImapContent,
3797
3829
  };
3830
+ case 'widget-welcome':
3831
+ return {
3832
+ ...widgetWelcomeContent,
3833
+ };
3798
3834
  case 'widget-user-profil':
3799
3835
  return {
3800
3836
  ...widgetUserProfileContent,
@@ -3803,6 +3839,10 @@ function content(name) {
3803
3839
  return {
3804
3840
  ...widgetExtensionContent,
3805
3841
  };
3842
+ case 'widget-color':
3843
+ return {
3844
+ ...widgetColorContent,
3845
+ };
3806
3846
  }
3807
3847
  }
3808
3848