Interface IContentPermissionsData
A structure defining permissions for the placeholder's content.
Package: @aurigma/design-atoms-interfaces
Examples
{
"defaultItemsConfig": {
"placeholder": {
"placeholderPermissions": {
"allowEditContent": true,
"showSelectButton": true,
"showHandleButton": true
},
"contentPermissions": {
"imagePermissions": {
"allowChangeImage": true,
"allowEditImage": true
},
"barcodePermissions": {
"allowChangeBarcodeType": true
}
}
}
}
}
Properties
barcodePermissions
Defines permissions for the content of barcode placeholders.
Declaration
barcodePermissions?: IBarcodePermissionsData;
Property Value
Type | Description |
---|---|
IBarcodePermissionsData | Defines permissions for the content of barcode placeholders. |
imagePermissions
Defines permissions for the content of image placeholders.
Declaration
imagePermissions?: IImagePermissionsData;
Property Value
Type | Description |
---|---|
IImagePermissionsData | Defines permissions for the content of image placeholders. |