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 +24 -5
- package/dist/cjs.js.map +1 -1
- package/dist/esm.js +24 -5
- package/dist/esm.js.map +1 -1
- package/dist/types.d.ts +4 -7
- package/package.json +2 -2
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 = {
|
|
@@ -3656,9 +3654,24 @@ const widgetQuickSurveyContent = {
|
|
|
3656
3654
|
isNotDisabled: false,
|
|
3657
3655
|
};
|
|
3658
3656
|
|
|
3657
|
+
const widgetWelcomeDefinition = {
|
|
3658
|
+
label: 'WIDGET_Welcome',
|
|
3659
|
+
description: 'WIDGET_Welcome_Text',
|
|
3660
|
+
name: WidgetsName.Welcome,
|
|
3661
|
+
img: '/img/fast-intranet/widget-welcome.png',
|
|
3662
|
+
available: true,
|
|
3663
|
+
panel: {
|
|
3664
|
+
useWrapper: true,
|
|
3665
|
+
useEditor: true,
|
|
3666
|
+
useSelection: true,
|
|
3667
|
+
useWidgets: false,
|
|
3668
|
+
},
|
|
3669
|
+
};
|
|
3670
|
+
const widgetWelcomeContent = {};
|
|
3671
|
+
|
|
3659
3672
|
const widgetUserProfileDefinition = {
|
|
3660
|
-
label:
|
|
3661
|
-
description:
|
|
3673
|
+
label: 'WIDGET_User_Profil',
|
|
3674
|
+
description: 'WIDGET_User_Profil_Text',
|
|
3662
3675
|
name: WidgetsName.UserProfile,
|
|
3663
3676
|
img: '/img/fast-intranet/widget-user-profile.png',
|
|
3664
3677
|
available: true,
|
|
@@ -3707,6 +3720,8 @@ function widgetDefinition(name) {
|
|
|
3707
3720
|
return widgetLuccaAbsenceDefinition;
|
|
3708
3721
|
case 'widget-emails-imap':
|
|
3709
3722
|
return widgetEmailsImapDefinition;
|
|
3723
|
+
case 'widget-welcome':
|
|
3724
|
+
return widgetWelcomeDefinition;
|
|
3710
3725
|
case 'widget-user-profil':
|
|
3711
3726
|
return widgetUserProfileDefinition;
|
|
3712
3727
|
case 'widget-extension':
|
|
@@ -3795,6 +3810,10 @@ function content(name) {
|
|
|
3795
3810
|
return {
|
|
3796
3811
|
...widgetEmailsImapContent,
|
|
3797
3812
|
};
|
|
3813
|
+
case 'widget-welcome':
|
|
3814
|
+
return {
|
|
3815
|
+
...widgetWelcomeContent,
|
|
3816
|
+
};
|
|
3798
3817
|
case 'widget-user-profil':
|
|
3799
3818
|
return {
|
|
3800
3819
|
...widgetUserProfileContent,
|