@everchron/ec-shards 7.4.3 → 7.4.4

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": "@everchron/ec-shards",
3
- "version": "7.4.3",
3
+ "version": "7.4.4",
4
4
  "private": false,
5
5
  "description": "Everchron Shards UI Library",
6
6
  "repository": "https://github.com/everchron/ec-shards.git",
@@ -8,6 +8,7 @@
8
8
  {{ currentPage }}
9
9
  </div>
10
10
  <div class="total-pages">of {{ lastPage }}</div>
11
+ <span v-if="isTranscriptMissingPages" style="color:tomato">*</span>
11
12
  </div>
12
13
  <div class="ecs-viewer-pages-pagination">
13
14
  <div class="total-pages-relative">{{ relativePage }}&nbsp;</div>
@@ -19,6 +20,7 @@
19
20
  <div class="ecs-viewer-pages-pagination">
20
21
  <div v-html="currentPage" @click="$emit('selectCurPageText')" @keydown="pageKeyPressed($event)" @blur="$emit('currentPageBlurred')" contenteditable class="current-page" id="currPage"></div>
21
22
  <div class="total-pages">of {{ lastPage }}</div>
23
+ <span v-if="isTranscriptMissingPages" style="color:tomato">*</span>
22
24
  </div>
23
25
  </template>
24
26
 
@@ -50,6 +52,11 @@
50
52
  lastPage: {
51
53
  type: Number,
52
54
  default: null
55
+ },
56
+ /** To add an indication to the User that a Transcript is missing pages **/
57
+ isTranscriptMissingPages: {
58
+ type: Boolean,
59
+ default: false
53
60
  }
54
61
  },
55
62