jamespot-front-business 1.1.93 → 1.1.95
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 +22 -0
- package/dist/cjs.js.map +1 -1
- package/dist/esm.js +22 -0
- package/dist/esm.js.map +1 -1
- package/dist/types.d.ts +916 -45
- package/package.json +2 -2
package/dist/esm.js
CHANGED
|
@@ -3116,6 +3116,24 @@ const widgetEmailsImapContent = {
|
|
|
3116
3116
|
emailsPromptStatus: 'shared',
|
|
3117
3117
|
};
|
|
3118
3118
|
|
|
3119
|
+
const widgetLuccaAbsenceDefinition = {
|
|
3120
|
+
label: 'WIDGET_Lucca_Absence',
|
|
3121
|
+
description: 'WIDGET_Lucca_Absence_Text',
|
|
3122
|
+
name: WidgetsName.LuccaAbsence,
|
|
3123
|
+
img: '/img/fast-intranet/widget-lucca-absence.png',
|
|
3124
|
+
available: true,
|
|
3125
|
+
displayLevel: [1, 2, 3],
|
|
3126
|
+
panel: {
|
|
3127
|
+
useWrapper: true,
|
|
3128
|
+
useEditor: true,
|
|
3129
|
+
useSelection: true,
|
|
3130
|
+
useWidgets: false,
|
|
3131
|
+
},
|
|
3132
|
+
};
|
|
3133
|
+
const widgetLuccaAbsenceContent = {
|
|
3134
|
+
url: '',
|
|
3135
|
+
};
|
|
3136
|
+
|
|
3119
3137
|
function widgetDefinition(name) {
|
|
3120
3138
|
switch (name) {
|
|
3121
3139
|
default:
|
|
@@ -3148,6 +3166,8 @@ function widgetDefinition(name) {
|
|
|
3148
3166
|
return widgetCalendarCalDavDefinition;
|
|
3149
3167
|
case 'widget-contact-cardDav':
|
|
3150
3168
|
return widgetContactCardDavDefinition;
|
|
3169
|
+
case 'widget-lucca-absence':
|
|
3170
|
+
return widgetLuccaAbsenceDefinition;
|
|
3151
3171
|
case 'widget-emails-imap':
|
|
3152
3172
|
return widgetEmailsImapDefinition;
|
|
3153
3173
|
}
|
|
@@ -3170,6 +3190,8 @@ function widget(name) {
|
|
|
3170
3190
|
function content(name) {
|
|
3171
3191
|
switch (name) {
|
|
3172
3192
|
default:
|
|
3193
|
+
case 'widget-lucca-absence':
|
|
3194
|
+
return Object.assign({}, widgetLuccaAbsenceContent);
|
|
3173
3195
|
case 'widget-article-attachment':
|
|
3174
3196
|
return Object.assign({}, widgetArticleAttachmentContent);
|
|
3175
3197
|
case 'widget-presence':
|