qms-angular 1.1.47 → 1.1.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.
@@ -165,6 +165,7 @@ const en = {
165
165
  "INSERT_TOOLTIP": "Insert a tooltip",
166
166
  "CONTENT": "Content",
167
167
  "TEMPLATE": "Template",
168
+ "RESET": "Reset",
168
169
  "CONTENT_TEMPLATE": "Content Template",
169
170
  "CREATE_NEW_TEMPLATE": "Create new template",
170
171
  "UPDATE_TEMPLATE": "Update template",
@@ -724,6 +725,7 @@ const no = {
724
725
  "INSERT_TOOLTIP": "Sett inn et verktøytips",
725
726
  "CONTENT": "Innhold",
726
727
  "TEMPLATE": "Mal",
728
+ "RESET": "Nullstille",
727
729
  "CONTENT_TEMPLATE": "Innholdsmal",
728
730
  "CREATE_NEW_TEMPLATE": "Lag ny mal",
729
731
  "UPDATE_TEMPLATE": "Oppdater mal",
@@ -12910,7 +12912,7 @@ function BuildResourceNO(LANG = null) {
12910
12912
  "Upload failed": "Kunne ikke laste opp",
12911
12913
  "Upload in progress": "Laster opp fil",
12912
12914
  "White": "Hvit",
12913
- "Widget toolbar": "Widget verktøylinje ",
12915
+ "Widget toolbar": "Widget verktøylinje",
12914
12916
  "Words: %0": "Ord: %0",
12915
12917
  "Yellow": "Gul",
12916
12918
  "image widget": "Bilde-widget",
@@ -13019,6 +13021,7 @@ function BuildResourceNO(LANG = null) {
13019
13021
  "Templates": LANG.QMSCKEDITOR.TEMPLATES,
13020
13022
  "About CKEditor": LANG.QMSCKEDITOR.ABOUT_CKEDITOR,
13021
13023
  "Create Table of Contents": LANG.QMSCKEDITOR.CREATE_TABLE_OF_CONTENTS,
13024
+ "Edit anchor": "Rediger anker"
13022
13025
  }
13023
13026
  };
13024
13027
  }
@@ -15779,7 +15782,8 @@ function getToolbarConfiguration$1(LANG) {
15779
15782
  name: 'deleteTemplate',
15780
15783
  attrs: {
15781
15784
  button: {
15782
- 'data-tooltip': `${LANG.BPMN.DELETE_TEMPLATE}`
15785
+ 'data-tooltip': `${LANG.BPMN.DELETE_TEMPLATE}`,
15786
+ 'data-before': `${LANG.DELETE}`
15783
15787
  }
15784
15788
  }
15785
15789
  },
@@ -15788,7 +15792,8 @@ function getToolbarConfiguration$1(LANG) {
15788
15792
  name: 'saveAsTemplate',
15789
15793
  attrs: {
15790
15794
  button: {
15791
- 'data-tooltip': `${LANG.BPMN.SAVE_AS_TEMPLATE}`
15795
+ 'data-tooltip': `${LANG.BPMN.SAVE_AS_TEMPLATE}`,
15796
+ 'data-before': `${LANG.QMSCKEDITOR.TEMPLATE}`
15792
15797
  }
15793
15798
  }
15794
15799
  },
@@ -15797,7 +15802,8 @@ function getToolbarConfiguration$1(LANG) {
15797
15802
  name: 'resetToTempTemplate',
15798
15803
  attrs: {
15799
15804
  button: {
15800
- 'data-tooltip': `${LANG.BPMN.RESET_TO_LAST_SAVE}`
15805
+ 'data-tooltip': `${LANG.BPMN.RESET_TO_LAST_SAVE}`,
15806
+ 'data-before': `${LANG.QMSCKEDITOR.RESET}`
15801
15807
  }
15802
15808
  }
15803
15809
  },
@@ -16634,7 +16640,6 @@ class BpmnService {
16634
16640
  'delete backspace': (evt) => {
16635
16641
  evt.preventDefault();
16636
16642
  graph.removeCells(selection.collection.toArray());
16637
- resetCellView();
16638
16643
  },
16639
16644
  'ctrl+z': () => {
16640
16645
  const notify = isSelectedCellViewInSelection(selection);