jamespot-front-business 1.2.55 → 1.2.57

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
@@ -2756,6 +2756,8 @@ const getModelFontAwesomeIcon = (icon) => {
2756
2756
  lab: 'flask',
2757
2757
  magicpad: 'draftio',
2758
2758
  boardCard: 'square-list',
2759
+ boardList: 'square-list',
2760
+ board: 'square-list',
2759
2761
  meeting: 'calendar-days',
2760
2762
  news: 'newspaper',
2761
2763
  platform: 'hammer',
@@ -3319,6 +3321,9 @@ const WIDGET_CHECK_LIST_DESCRIPTION = 'WIDGET_Check_List_Description';
3319
3321
  const WIDGET_QUICK_SURVEY = 'widget-quick-survey';
3320
3322
  const WIDGET_QUICK_SURVEY_LABEL = 'WIDGET_Quick_Survey';
3321
3323
  const WIDGET_QUICK_SURVEY_DESCRIPTION = 'WIDGET_Quick_Survey_Text';
3324
+ const WIDGET_USER_PROFILE = 'widget-user-profil';
3325
+ const WIDGET_USER_PROFILE_LABEL = 'WIDGET_User_Profil';
3326
+ const WIDGET_USER_PROFILE_DESCRIPTION = 'WIDGET_User_Profil_Text';
3322
3327
 
3323
3328
  var WIDGETS = /*#__PURE__*/Object.freeze({
3324
3329
  __proto__: null,
@@ -3333,7 +3338,10 @@ var WIDGETS = /*#__PURE__*/Object.freeze({
3333
3338
  WIDGET_CHECK_LIST_LABEL: WIDGET_CHECK_LIST_LABEL,
3334
3339
  WIDGET_QUICK_SURVEY: WIDGET_QUICK_SURVEY,
3335
3340
  WIDGET_QUICK_SURVEY_DESCRIPTION: WIDGET_QUICK_SURVEY_DESCRIPTION,
3336
- WIDGET_QUICK_SURVEY_LABEL: WIDGET_QUICK_SURVEY_LABEL
3341
+ WIDGET_QUICK_SURVEY_LABEL: WIDGET_QUICK_SURVEY_LABEL,
3342
+ WIDGET_USER_PROFILE: WIDGET_USER_PROFILE,
3343
+ WIDGET_USER_PROFILE_DESCRIPTION: WIDGET_USER_PROFILE_DESCRIPTION,
3344
+ WIDGET_USER_PROFILE_LABEL: WIDGET_USER_PROFILE_LABEL
3337
3345
  });
3338
3346
 
3339
3347
  const widgetArticleAttachmentDefinition = {
@@ -3653,6 +3661,21 @@ const widgetLuccaAbsenceContent = {
3653
3661
  url: '',
3654
3662
  };
3655
3663
 
3664
+ const widgetUserProfileDefinition = {
3665
+ label: WIDGET_USER_PROFILE,
3666
+ description: WIDGET_USER_PROFILE,
3667
+ name: jamespot.WidgetsName.UserProfile,
3668
+ img: '/img/fast-intranet/widget-user-profile.png',
3669
+ available: true,
3670
+ panel: {
3671
+ useWrapper: true,
3672
+ useEditor: true,
3673
+ useSelection: true,
3674
+ useWidgets: false,
3675
+ },
3676
+ };
3677
+ const widgetUserProfileContent = {};
3678
+
3656
3679
  function widgetDefinition(name) {
3657
3680
  switch (name) {
3658
3681
  default:
@@ -3689,6 +3712,8 @@ function widgetDefinition(name) {
3689
3712
  return widgetLuccaAbsenceDefinition;
3690
3713
  case 'widget-emails-imap':
3691
3714
  return widgetEmailsImapDefinition;
3715
+ case 'widget-user-profil':
3716
+ return widgetUserProfileDefinition;
3692
3717
  }
3693
3718
  }
3694
3719
 
@@ -3773,6 +3798,10 @@ function content(name) {
3773
3798
  return {
3774
3799
  ...widgetEmailsImapContent,
3775
3800
  };
3801
+ case 'widget-user-profil':
3802
+ return {
3803
+ ...widgetUserProfileContent,
3804
+ };
3776
3805
  }
3777
3806
  }
3778
3807