Skip to content

Commit ce3e2c7

Browse files
committed
115491: Export consts
1 parent f0782e8 commit ce3e2c7

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/app/bitstream-page/edit-bitstream-page/edit-bitstream-page.component.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -63,42 +63,42 @@ export interface UpdateResult {
6363
/**
6464
* Key prefix used to generate form messages
6565
*/
66-
const KEY_PREFIX = 'bitstream.edit.form.';
66+
export const KEY_PREFIX = 'bitstream.edit.form.';
6767

6868
/**
6969
* Key suffix used to generate form labels
7070
*/
71-
const LABEL_KEY_SUFFIX = '.label';
71+
export const LABEL_KEY_SUFFIX = '.label';
7272

7373
/**
7474
* Key suffix used to generate form labels
7575
*/
76-
const HINT_KEY_SUFFIX = '.hint';
76+
export const HINT_KEY_SUFFIX = '.hint';
7777

7878
/**
7979
* Key prefix used to generate notification messages
8080
*/
81-
const NOTIFICATIONS_PREFIX = 'bitstream.edit.notifications.';
81+
export const NOTIFICATIONS_PREFIX = 'bitstream.edit.notifications.';
8282

8383
/**
8484
* IIIF image width metadata key
8585
*/
86-
const IMAGE_WIDTH_METADATA = 'iiif.image.width';
86+
export const IMAGE_WIDTH_METADATA = 'iiif.image.width';
8787

8888
/**
8989
* IIIF image height metadata key
9090
*/
91-
const IMAGE_HEIGHT_METADATA = 'iiif.image.height';
91+
export const IMAGE_HEIGHT_METADATA = 'iiif.image.height';
9292

9393
/**
9494
* IIIF table of contents metadata key
9595
*/
96-
const IIIF_TOC_METADATA = 'iiif.toc';
96+
export const IIIF_TOC_METADATA = 'iiif.toc';
9797

9898
/**
9999
* IIIF label metadata key
100100
*/
101-
const IIIF_LABEL_METADATA = 'iiif.label';
101+
export const IIIF_LABEL_METADATA = 'iiif.label';
102102

103103
@Component({
104104
selector: 'ds-edit-bitstream-page',

0 commit comments

Comments
 (0)