@campxdev/shared 1.11.46 → 1.11.48

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@campxdev/shared",
3
- "version": "1.11.46",
3
+ "version": "1.11.48",
4
4
  "main": "./exports.ts",
5
5
  "scripts": {
6
6
  "start": "react-scripts start",
@@ -21,6 +21,7 @@ export const StyledTabs = styled(Tabs)<StyledTabsProps>(
21
21
  minHeight: '60px',
22
22
  ['@media(max-width: 680px)']: {
23
23
  minHeight: '30px',
24
+ paddingTop: '15px',
24
25
  },
25
26
  paddingLeft: '15px',
26
27
  '& .MuiTabs-indicator': {
@@ -1094,6 +1094,12 @@ export enum Permission {
1094
1094
 
1095
1095
  // Exams
1096
1096
 
1097
+ // signatures permissions
1098
+ SIGNATURE_ADD = 'can_signatures_add',
1099
+ SIGNATURE_EDIT = 'can_signatures_edit',
1100
+ SIGNATURE_DELETE = 'can_signatures_delete',
1101
+ SIGNATURE_VIEW = 'can_signatures_view',
1102
+
1097
1103
  // manage exams profile_permissions
1098
1104
  CAN_MANAGE_EXAMS_PROFILE_PERMISSIONS_VIEW = 'can_manage_exams_profile_permissions_view',
1099
1105
  CAN_MANAGE_EXAMS_PROFILE_PERMISSIONS_ADD = 'can_manage_exams_profile_permissions_add',
@@ -1435,6 +1441,10 @@ export enum Permission {
1435
1441
  }
1436
1442
 
1437
1443
  export interface IPermissions {
1444
+ can_signature_view: boolean
1445
+ can_signature_add: boolean
1446
+ can_signature_edit: boolean
1447
+ can_signature_delete: boolean
1438
1448
  can_manage_roles_and_profiles: boolean
1439
1449
  can_view_audit_logs: boolean
1440
1450
  can_manage_settings: boolean