pptx-angular-viewer 1.1.65 → 1.2.0

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/CHANGELOG.md CHANGED
@@ -4,6 +4,12 @@ All notable changes to this project are documented here.
4
4
  This file is generated from [Conventional Commits](https://www.conventionalcommits.org)
5
5
  by [git-cliff](https://git-cliff.org); do not edit it by hand.
6
6
 
7
+ ## [1.1.66](https://github.com/ChristopherVR/pptx-viewer/releases/tag/pptx-angular-viewer@1.1.66) - 2026-07-04
8
+
9
+ ### Bug Fixes
10
+
11
+ - **angular:** Load @angular/compiler in vitest so component-file imports don't crash (by @ChristopherVR) ([8c48b93](https://github.com/ChristopherVR/pptx-viewer/commit/8c48b9322fa684aad4963f43efa528c51e4f2a00))
12
+
7
13
  ## [1.1.63](https://github.com/ChristopherVR/pptx-viewer/releases/tag/pptx-angular-viewer@1.1.63) - 2026-07-03
8
14
 
9
15
  ### Documentation
@@ -76595,18 +76595,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImpor
76595
76595
  * Entries are copied verbatim from the React source and must stay in sync.
76596
76596
  */
76597
76597
  const SHORTCUT_REFERENCE_ITEMS = [
76598
- { action: 'Undo', shortcut: 'Ctrl/Cmd+Z' },
76599
- { action: 'Redo', shortcut: 'Ctrl/Cmd+Shift+Z or Ctrl/Cmd+Y' },
76600
- { action: 'Copy selected element', shortcut: 'Ctrl/Cmd+C' },
76601
- { action: 'Cut selected element', shortcut: 'Ctrl/Cmd+X' },
76602
- { action: 'Paste element', shortcut: 'Ctrl/Cmd+V' },
76603
- { action: 'Duplicate selected element', shortcut: 'Ctrl/Cmd+D' },
76604
- { action: 'Delete selected element', shortcut: 'Delete / Backspace' },
76605
- { action: 'Nudge selected element', shortcut: 'Arrow keys' },
76606
- { action: 'Nudge selected element (large)', shortcut: 'Shift+Arrow keys' },
76607
- { action: 'Zoom canvas', shortcut: 'Ctrl/Cmd+Mouse wheel' },
76608
- { action: 'Commit inline text edit', shortcut: 'Ctrl/Cmd+Enter' },
76609
- { action: 'Cancel inline text / close menus', shortcut: 'Escape' },
76598
+ { actionKey: 'pptx.toolbar.undo', shortcut: 'Ctrl/Cmd+Z' },
76599
+ { actionKey: 'pptx.toolbar.redo', shortcut: 'Ctrl/Cmd+Shift+Z or Ctrl/Cmd+Y' },
76600
+ { actionKey: 'pptx.shortcuts.action.copyElement', shortcut: 'Ctrl/Cmd+C' },
76601
+ { actionKey: 'pptx.shortcuts.action.cutElement', shortcut: 'Ctrl/Cmd+X' },
76602
+ { actionKey: 'pptx.shortcuts.action.pasteElement', shortcut: 'Ctrl/Cmd+V' },
76603
+ { actionKey: 'pptx.shortcuts.action.duplicateElement', shortcut: 'Ctrl/Cmd+D' },
76604
+ { actionKey: 'pptx.shortcuts.action.deleteElement', shortcut: 'Delete / Backspace' },
76605
+ { actionKey: 'pptx.shortcuts.action.nudgeElement', shortcut: 'Arrow keys' },
76606
+ { actionKey: 'pptx.shortcuts.action.nudgeElementLarge', shortcut: 'Shift+Arrow keys' },
76607
+ { actionKey: 'pptx.shortcuts.action.zoomCanvas', shortcut: 'Ctrl/Cmd+Mouse wheel' },
76608
+ { actionKey: 'pptx.shortcuts.action.commitTextEdit', shortcut: 'Ctrl/Cmd+Enter' },
76609
+ { actionKey: 'pptx.shortcuts.action.cancelTextEdit', shortcut: 'Escape' },
76610
76610
  ];
76611
76611
 
76612
76612
  /**
@@ -76640,9 +76640,9 @@ class ShortcutPanelComponent {
76640
76640
  </button>
76641
76641
  </div>
76642
76642
  <div class="pptx-ng-shortcuts-list">
76643
- @for (item of items; track item.action) {
76643
+ @for (item of items; track item.actionKey) {
76644
76644
  <div class="pptx-ng-shortcuts-row">
76645
- <span class="pptx-ng-shortcuts-action">{{ item.action }}</span>
76645
+ <span class="pptx-ng-shortcuts-action">{{ item.actionKey | translate }}</span>
76646
76646
  <span class="pptx-ng-shortcuts-keys">{{ item.shortcut }}</span>
76647
76647
  </div>
76648
76648
  }
@@ -76663,9 +76663,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImpor
76663
76663
  </button>
76664
76664
  </div>
76665
76665
  <div class="pptx-ng-shortcuts-list">
76666
- @for (item of items; track item.action) {
76666
+ @for (item of items; track item.actionKey) {
76667
76667
  <div class="pptx-ng-shortcuts-row">
76668
- <span class="pptx-ng-shortcuts-action">{{ item.action }}</span>
76668
+ <span class="pptx-ng-shortcuts-action">{{ item.actionKey | translate }}</span>
76669
76669
  <span class="pptx-ng-shortcuts-keys">{{ item.shortcut }}</span>
76670
76670
  </div>
76671
76671
  }
@@ -82277,6 +82277,24 @@ const translationsEn = {
82277
82277
  'pptx.review.spelling': 'Spelling',
82278
82278
  'pptx.review.toggleComments': 'Toggle comments panel',
82279
82279
  'pptx.review.toggleSpellCheck': 'Toggle spell check',
82280
+ 'pptx.shortcuts.action.cancelTextEdit': 'Cancel inline text / close menus',
82281
+ 'pptx.shortcuts.action.clearSelection': 'Clear selection / close menus / cancel edit',
82282
+ 'pptx.shortcuts.action.commitTextEdit': 'Commit inline text edit',
82283
+ 'pptx.shortcuts.action.copyElement': 'Copy selected element',
82284
+ 'pptx.shortcuts.action.cutElement': 'Cut selected element',
82285
+ 'pptx.shortcuts.action.deleteElement': 'Delete selected element',
82286
+ 'pptx.shortcuts.action.duplicateElement': 'Duplicate selected element',
82287
+ 'pptx.shortcuts.action.nextSlide': 'Next slide (no selection)',
82288
+ 'pptx.shortcuts.action.nudgeElement': 'Nudge selected element',
82289
+ 'pptx.shortcuts.action.nudgeElementLarge': 'Nudge selected element (large)',
82290
+ 'pptx.shortcuts.action.pasteElement': 'Paste element',
82291
+ 'pptx.shortcuts.action.prevSlide': 'Previous slide (no selection)',
82292
+ 'pptx.shortcuts.action.redoAlternate': 'Redo (alternate)',
82293
+ 'pptx.shortcuts.action.selectAll': 'Select all elements',
82294
+ 'pptx.shortcuts.action.zoomCanvas': 'Zoom canvas',
82295
+ 'pptx.shortcuts.close': 'Close',
82296
+ 'pptx.shortcuts.group.editing': 'Editing',
82297
+ 'pptx.shortcuts.group.navigation': 'Navigation',
82280
82298
  'pptx.shortcuts.title': 'Keyboard shortcuts',
82281
82299
  'pptx.slideInspector.horizontal': 'Horizontal',
82282
82300
  'pptx.slideInspector.presentation': 'Presentation',