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/cjs.js
CHANGED
|
@@ -3656,11 +3656,11 @@ const widgetQuickSurveyContent = {
|
|
|
3656
3656
|
isNotDisabled: false,
|
|
3657
3657
|
};
|
|
3658
3658
|
|
|
3659
|
-
const
|
|
3660
|
-
label: '
|
|
3661
|
-
description: '
|
|
3662
|
-
name: jamespot.WidgetsName.
|
|
3663
|
-
img: '/img/fast-intranet/widget-
|
|
3659
|
+
const widgetUserProfileDefinition = {
|
|
3660
|
+
label: 'WIDGET_User_Profil',
|
|
3661
|
+
description: 'WIDGET_User_Profil_Text',
|
|
3662
|
+
name: jamespot.WidgetsName.UserProfile,
|
|
3663
|
+
img: '/img/fast-intranet/widget-user-profile.png',
|
|
3664
3664
|
available: true,
|
|
3665
3665
|
panel: {
|
|
3666
3666
|
useWrapper: true,
|
|
@@ -3669,13 +3669,13 @@ const widgetWelcomeDefinition = {
|
|
|
3669
3669
|
useWidgets: false,
|
|
3670
3670
|
},
|
|
3671
3671
|
};
|
|
3672
|
-
const
|
|
3672
|
+
const widgetUserProfileContent = {};
|
|
3673
3673
|
|
|
3674
|
-
const
|
|
3675
|
-
label: '
|
|
3676
|
-
description: '
|
|
3677
|
-
name: jamespot.WidgetsName.
|
|
3678
|
-
img: '/img/fast-intranet/widget-
|
|
3674
|
+
const widgetColorDefinition = {
|
|
3675
|
+
label: 'WIDGET_Color',
|
|
3676
|
+
description: 'WIDGET_Color_Text',
|
|
3677
|
+
name: jamespot.WidgetsName.Color,
|
|
3678
|
+
img: '/img/fast-intranet/widget-color.png',
|
|
3679
3679
|
available: true,
|
|
3680
3680
|
panel: {
|
|
3681
3681
|
useWrapper: true,
|
|
@@ -3684,7 +3684,22 @@ const widgetUserProfileDefinition = {
|
|
|
3684
3684
|
useWidgets: false,
|
|
3685
3685
|
},
|
|
3686
3686
|
};
|
|
3687
|
-
const
|
|
3687
|
+
const widgetColorContent = {};
|
|
3688
|
+
|
|
3689
|
+
const widgetWelcomeDefinition = {
|
|
3690
|
+
label: 'WIDGET_Welcome',
|
|
3691
|
+
description: 'WIDGET_Welcome_Text',
|
|
3692
|
+
name: jamespot.WidgetsName.Welcome,
|
|
3693
|
+
img: '/img/fast-intranet/widget-welcome.png',
|
|
3694
|
+
available: true,
|
|
3695
|
+
panel: {
|
|
3696
|
+
useWrapper: true,
|
|
3697
|
+
useEditor: true,
|
|
3698
|
+
useSelection: true,
|
|
3699
|
+
useWidgets: false,
|
|
3700
|
+
},
|
|
3701
|
+
};
|
|
3702
|
+
const widgetWelcomeContent = {};
|
|
3688
3703
|
|
|
3689
3704
|
function widgetDefinition(name) {
|
|
3690
3705
|
switch (name) {
|
|
@@ -3728,6 +3743,8 @@ function widgetDefinition(name) {
|
|
|
3728
3743
|
return widgetUserProfileDefinition;
|
|
3729
3744
|
case 'widget-extension':
|
|
3730
3745
|
return widgetExtensionDefinition;
|
|
3746
|
+
case 'widget-color':
|
|
3747
|
+
return widgetColorDefinition;
|
|
3731
3748
|
}
|
|
3732
3749
|
}
|
|
3733
3750
|
|
|
@@ -3824,6 +3841,10 @@ function content(name) {
|
|
|
3824
3841
|
return {
|
|
3825
3842
|
...widgetExtensionContent,
|
|
3826
3843
|
};
|
|
3844
|
+
case 'widget-color':
|
|
3845
|
+
return {
|
|
3846
|
+
...widgetColorContent,
|
|
3847
|
+
};
|
|
3827
3848
|
}
|
|
3828
3849
|
}
|
|
3829
3850
|
|