jamespot-front-business 1.3.4 → 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/cjs.js +33 -12
- package/dist/cjs.js.map +1 -1
- package/dist/esm.js +33 -12
- package/dist/esm.js.map +1 -1
- package/dist/types.d.ts +1 -1
- package/package.json +2 -2
package/dist/esm.js
CHANGED
|
@@ -3654,11 +3654,11 @@ const widgetQuickSurveyContent = {
|
|
|
3654
3654
|
isNotDisabled: false,
|
|
3655
3655
|
};
|
|
3656
3656
|
|
|
3657
|
-
const
|
|
3658
|
-
label: '
|
|
3659
|
-
description: '
|
|
3660
|
-
name: WidgetsName.
|
|
3661
|
-
img: '/img/fast-intranet/widget-
|
|
3657
|
+
const widgetUserProfileDefinition = {
|
|
3658
|
+
label: 'WIDGET_User_Profil',
|
|
3659
|
+
description: 'WIDGET_User_Profil_Text',
|
|
3660
|
+
name: WidgetsName.UserProfile,
|
|
3661
|
+
img: '/img/fast-intranet/widget-user-profile.png',
|
|
3662
3662
|
available: true,
|
|
3663
3663
|
panel: {
|
|
3664
3664
|
useWrapper: true,
|
|
@@ -3667,13 +3667,13 @@ const widgetWelcomeDefinition = {
|
|
|
3667
3667
|
useWidgets: false,
|
|
3668
3668
|
},
|
|
3669
3669
|
};
|
|
3670
|
-
const
|
|
3670
|
+
const widgetUserProfileContent = {};
|
|
3671
3671
|
|
|
3672
|
-
const
|
|
3673
|
-
label: '
|
|
3674
|
-
description: '
|
|
3675
|
-
name: WidgetsName.
|
|
3676
|
-
img: '/img/fast-intranet/widget-
|
|
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
3677
|
available: true,
|
|
3678
3678
|
panel: {
|
|
3679
3679
|
useWrapper: true,
|
|
@@ -3682,7 +3682,22 @@ const widgetUserProfileDefinition = {
|
|
|
3682
3682
|
useWidgets: false,
|
|
3683
3683
|
},
|
|
3684
3684
|
};
|
|
3685
|
-
const
|
|
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 = {};
|
|
3686
3701
|
|
|
3687
3702
|
function widgetDefinition(name) {
|
|
3688
3703
|
switch (name) {
|
|
@@ -3726,6 +3741,8 @@ function widgetDefinition(name) {
|
|
|
3726
3741
|
return widgetUserProfileDefinition;
|
|
3727
3742
|
case 'widget-extension':
|
|
3728
3743
|
return widgetExtensionDefinition;
|
|
3744
|
+
case 'widget-color':
|
|
3745
|
+
return widgetColorDefinition;
|
|
3729
3746
|
}
|
|
3730
3747
|
}
|
|
3731
3748
|
|
|
@@ -3822,6 +3839,10 @@ function content(name) {
|
|
|
3822
3839
|
return {
|
|
3823
3840
|
...widgetExtensionContent,
|
|
3824
3841
|
};
|
|
3842
|
+
case 'widget-color':
|
|
3843
|
+
return {
|
|
3844
|
+
...widgetColorContent,
|
|
3845
|
+
};
|
|
3825
3846
|
}
|
|
3826
3847
|
}
|
|
3827
3848
|
|