tin-spa 2.9.13 → 2.9.14
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/esm2020/lib/pages/notifications/notifications.component.mjs +2 -2
- package/esm2020/lib/services/datalib.service.mjs +2 -1
- package/fesm2015/tin-spa.mjs +2 -1
- package/fesm2015/tin-spa.mjs.map +1 -1
- package/fesm2020/tin-spa.mjs +2 -1
- package/fesm2020/tin-spa.mjs.map +1 -1
- package/package.json +1 -1
package/fesm2020/tin-spa.mjs
CHANGED
|
@@ -1712,6 +1712,7 @@ class DataServiceLib {
|
|
|
1712
1712
|
// { name: 'UI + Email + SMS', value: 7 },
|
|
1713
1713
|
{ name: 'UI + WhatsApp', value: 9 },
|
|
1714
1714
|
{ name: 'UI + Telegram', value: 17 },
|
|
1715
|
+
{ name: 'UI + Telegram + WhatsApp', value: 25 },
|
|
1715
1716
|
{ name: 'All Channels', value: 31 }
|
|
1716
1717
|
];
|
|
1717
1718
|
//--------------------------Approvals-------------------------
|
|
@@ -8825,7 +8826,7 @@ class NotificationsComponent {
|
|
|
8825
8826
|
},
|
|
8826
8827
|
{ name: 'durationHours', type: 'number', required: true, defaultValue: 24, hint: 'How long to keep this notification active' },
|
|
8827
8828
|
{ name: 'notifyAllUsers', type: 'checkbox', alias: 'Notify All Users', span: false },
|
|
8828
|
-
{ name: '
|
|
8829
|
+
{ name: 'usernames', type: 'multi-text', alias: 'Recipients', copyContent: true, clearContent: true, span: true, hiddenCondition: x => x.notifyAllUsers, loadAction: { url: 'user/list/x' } },
|
|
8829
8830
|
{ name: 'roleIDs', type: 'multi-select', strict: true, copyContent: true, alias: 'Roles', span: false, hiddenCondition: x => x.notifyAllUsers, loadAction: { url: 'role/list/x' } },
|
|
8830
8831
|
{
|
|
8831
8832
|
name: 'channels', type: 'select', alias: 'Notification Channels', span: false, defaultFirstValue: true, required: true,
|