qms-angular 1.1.69 → 1.1.71
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/bundles/qms-angular.umd.js +73 -15
- package/bundles/qms-angular.umd.js.map +1 -1
- package/esm2015/lib/common/jointJS/bpmn/bpmn.custom.function.js +1 -2
- package/esm2015/lib/components/select-department-tree/select-department-tree.component.js +2 -2
- package/esm2015/lib/model/en.js +13 -2
- package/esm2015/lib/model/no.js +12 -1
- package/esm2015/lib/model/sv.js +12 -1
- package/esm2015/lib/qms-ckeditor-components/common/functions/common.function.js +2 -1
- package/esm2015/lib/qms-ckeditor-components/common/functions/resource.function.js +17 -6
- package/esm2015/lib/qms-ckeditor-components/qms-ckeditor.component.js +22 -8
- package/fesm2015/qms-angular.js +73 -15
- package/fesm2015/qms-angular.js.map +1 -1
- package/lib/model/en.d.ts +11 -0
- package/lib/model/no.d.ts +11 -0
- package/lib/model/sv.d.ts +11 -0
- package/lib/qms-ckeditor-components/common/functions/resource.function.d.ts +15 -4
- package/lib/qms-ckeditor-components/qms-ckeditor.component.d.ts +3 -2
- package/package.json +1 -1
- package/qms-angular.metadata.json +1 -1
- package/src/assets/qms-ckeditor-plugin/package-lock.json +372 -607
- package/src/assets/qms-ckeditor-plugin/src/ckeditor.js +242 -152
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/index.js +62 -16
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharacters.js +255 -254
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharactersarrows.js +154 -60
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharactersbasiclatin.js +137 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharactersblockelements.js +74 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharactersbopomofo.js +90 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharactersboxdrawing.js +170 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharactersbraillepatterns.js +298 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharacterscjkradicalssupplement.js +170 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharacterscjksymbolsandpunctuation.js +106 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharacterscombiningdiacriticalmarks.js +139 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharacterscombiningdiacriticalmarksforsymbols.js +90 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharacterscontrolpictures.js +106 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharacterscurrencysymbols.js +90 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharacterscyrillic.js +298 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharacterscyrillicsupplementary.js +90 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharactersdingbats.js +234 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharactersenclosedalphanumerics.js +202 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharactersgeneralpunctuation.js +160 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharactersgeometricshapes.js +138 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharactersgreekandcoptic.js +186 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharactersgreekextended.js +154 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharactershiragana.js +138 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharactersideographicdescriptioncharacters.js +58 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharactersipaextensions.js +174 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharacterskangxiradicals.js +266 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharacterskatakana.js +138 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharacterslatin1supplement.js +144 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharacterslatinextendeda.js +179 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharacterslatinextendedadditional.js +327 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharacterslatinextendedb.js +340 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharactersletterlikesymbols.js +122 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharactersmathematicaloperatorssymbol.js +300 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharactersmestbrukte.js +99 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharactersmiscellaneousmathematicalsymbolsa.js +90 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharactersmiscellaneousmathematicalsymbolsb.js +170 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharactersmiscellaneoussymbols.js +297 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharactersmiscellaneoussymbolsandarrows.js +298 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharactersmiscellaneoustechnical.js +298 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharactersnumberforms.js +106 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharactersopticalcharacterrecognition.js +74 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharactersphoneticextensions.js +179 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharactersspacingmodifierletters.js +139 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharactersspecials.js +46 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharacterssuperscriptsandsubscripts.js +92 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharacterssupplementalarrowsa.js +58 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharacterssupplementalarrowsb.js +170 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/src/specialcharacterssupplementalmathematicaloperators.js +298 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/theme/charactergrid.css +14 -12
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-special-characters/theme/specialcharacters.css +15 -10
- package/src/assets/qms-ckeditor-plugin/src/plugins/clipboard/clipboardPlugin.js +161 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/clipboard/qms-clipboardcommand-paste.js +20 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/clipboard/qms-clipboardcommand.js +21 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/showBlocks/showBlocksPlugin.js +131 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/showBlocks/showBlockscommand.js +13 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/softHyphen/softHyphenPlugin.js +91 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/softHyphen/softHyphencommand.js +13 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/table/verticalAlign/verticalAlignPlugin.js +102 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/table/verticalAlign/verticalAligncommand.js +13 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/tableofcontents/tableofcontentscommand.js +87 -87
- package/src/assets/qms-ckeditor-plugin/src/plugins/tableofcontents/tableofcontentsediting.js +59 -59
- package/src/assets/qms-ckeditor-plugin/src/plugins/tableofcontents/tableofcontentsui.js +34 -34
- package/src/assets/qms-ckeditor-plugin/src/themes/icons/copy.svg +1 -0
- package/src/assets/qms-ckeditor-plugin/src/themes/icons/cut.svg +1 -0
- package/src/assets/qms-ckeditor-plugin/src/themes/icons/paste.svg +1 -0
- package/src/assets/qms-ckeditor-plugin/src/themes/icons/pasteText.svg +3 -0
- package/src/assets/qms-ckeditor-plugin/src/themes/icons/pasteWord.svg +3 -0
- package/src/assets/qms-ckeditor-plugin/src/themes/icons/show-blocks.svg +24 -0
- package/src/assets/qms-ckeditor-plugin/src/themes/icons/soft-hyphen.svg +1 -0
- package/src/assets/qms-ckeditor-plugin/src/themes/icons/table-excel.svg +1 -44
- package/src/lib/qms-ckeditor-components/qms-ckeditor.component.scss +50 -4
- package/src/assets/qms-ckeditor-plugin/build/translations/af.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/ar.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/ast.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/az.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/bg.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/ca.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/cs.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/da.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/de-ch.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/de.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/el.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/en-au.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/en-gb.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/eo.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/es.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/et.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/eu.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/fa.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/fi.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/fr.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/gl.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/gu.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/he.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/hi.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/hr.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/hu.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/id.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/it.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/ja.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/kk.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/km.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/kn.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/ko.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/ku.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/lt.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/lv.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/ms.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/nb.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/ne.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/nl.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/no.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/oc.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/pl.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/pt-br.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/pt.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/ro.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/ru.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/si.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/sk.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/sl.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/sq.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/sr-latn.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/sr.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/sv.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/th.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/tk.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/tr.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/tt.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/ug.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/uk.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/vi.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/zh-cn.js +0 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/zh.js +0 -1
package/fesm2015/qms-angular.js
CHANGED
@@ -288,7 +288,7 @@ const en = {
|
|
288
288
|
"FLOWCHART": "Flowchart",
|
289
289
|
"BPMN": "Business Process Model and Notation",
|
290
290
|
"ABOUT_CKEDITOR": "About CKEditor",
|
291
|
-
"CREATE_TABLE_OF_CONTENTS": "Create
|
291
|
+
"CREATE_TABLE_OF_CONTENTS": "Create table of contents",
|
292
292
|
"SOURCE": "Source",
|
293
293
|
"TOGGLE_TOOLBAR": "Toggle toolbar",
|
294
294
|
"VIDEO_SOURCE": "Video source",
|
@@ -372,6 +372,17 @@ const en = {
|
|
372
372
|
"ALIGN_CELL_TEXT_TOP": "Align cell text to the top",
|
373
373
|
"ALIGN_CELL_TEXT_MIDDLE": "Align cell text to the middle",
|
374
374
|
"ALIGN_CELL_TEXT_BOTTOM": "Align cell text to the bottom",
|
375
|
+
"SOFTHYPHEN": "Soft hyphen (­)\n (Ctrl + Shift + -)",
|
376
|
+
"CUT": "Cut",
|
377
|
+
"COPY": "Copy",
|
378
|
+
"PASTE": "Paste",
|
379
|
+
"PASTE_TEXT": "Paste as plain text",
|
380
|
+
"PASTE_WORD": "Paste from Word",
|
381
|
+
"TABLE_VERTICAL_ALIGNMENT": "Table Vertical Alignment",
|
382
|
+
"VERTICAL_ALIGN_TOP": "Vertical Align Top",
|
383
|
+
"VERTICAL_ALIGN_MIDDLE": "Vertical Align Middle",
|
384
|
+
"VERTICAL_ALIGN_BOTTOM": "Vertical Align Bottom",
|
385
|
+
"SHOW_BLOCK": "Show Blocks"
|
375
386
|
},
|
376
387
|
"ABOUT": {
|
377
388
|
"ABOUT_CKEDITOR": "About CKEditor",
|
@@ -943,6 +954,17 @@ const no = {
|
|
943
954
|
"ALIGN_CELL_TEXT_TOP": "Juster celleteksten til toppen",
|
944
955
|
"ALIGN_CELL_TEXT_MIDDLE": "Juster celleteksten til midten",
|
945
956
|
"ALIGN_CELL_TEXT_BOTTOM": "Juster celleteksten til bunnen",
|
957
|
+
"SOFTHYPHEN": "Myk orddeling (­)\n (Ctrl + Shift + -)",
|
958
|
+
"CUT": "Klipp ut",
|
959
|
+
"COPY": "Kopier",
|
960
|
+
"PASTE": "Lim inn",
|
961
|
+
"PASTE_TEXT": "Lim inn som ren tekst",
|
962
|
+
"PASTE_WORD": "Lim inn fra Word",
|
963
|
+
"TABLE_VERTICAL_ALIGNMENT": "Tabell Vertikal justering",
|
964
|
+
"VERTICAL_ALIGN_TOP": "Toppjuster",
|
965
|
+
"VERTICAL_ALIGN_MIDDLE": "Midtstill vannrett",
|
966
|
+
"VERTICAL_ALIGN_BOTTOM": "Bunnjuster",
|
967
|
+
"SHOW_BLOCK": "Vis blokker"
|
946
968
|
},
|
947
969
|
"ABOUT": {
|
948
970
|
"ABOUT_CKEDITOR": "Om CKEditor",
|
@@ -1426,6 +1448,17 @@ const sv = {
|
|
1426
1448
|
"CREATE_TABLE_OF_CONTENTS": "Skapa innehållsförteckning",
|
1427
1449
|
"SOURCE": "Källa",
|
1428
1450
|
"TOGGLE_TOOLBAR": "Byt verktygsfält",
|
1451
|
+
"SOFTHYPHEN": "Myk orddeling (­)\n (Ctrl + Shift + -)",
|
1452
|
+
"CUT": "Klipp ut",
|
1453
|
+
"COPY": "Kopier",
|
1454
|
+
"PASTE": "Lim inn",
|
1455
|
+
"PASTE_TEXT": "Lim inn som ren tekst",
|
1456
|
+
"PASTE_WORD": "Lim inn fra Word",
|
1457
|
+
"TABLE_VERTICAL_ALIGNMENT": "Tabell Vertikal justering",
|
1458
|
+
"VERTICAL_ALIGN_TOP": "Toppjuster",
|
1459
|
+
"VERTICAL_ALIGN_MIDDLE": "Midtstill vannrett",
|
1460
|
+
"VERTICAL_ALIGN_BOTTOM": "Bunnjuster",
|
1461
|
+
"SHOW_BLOCK": "Vis blokker"
|
1429
1462
|
},
|
1430
1463
|
"ABOUT": {
|
1431
1464
|
"ABOUT_CKEDITOR": "Om CKEditor",
|
@@ -12977,7 +13010,7 @@ function BuildResourceNO(LANG = null) {
|
|
12977
13010
|
"Full size image": "Bilde i full størrelse",
|
12978
13011
|
"Green": "Grønn",
|
12979
13012
|
"Grey": "Grå",
|
12980
|
-
"Horizontal line":
|
13013
|
+
"Horizontal line": LANG.QMSCKEDITOR.HORIZONTAL_LINE,
|
12981
13014
|
"Huge": "Veldig stor",
|
12982
13015
|
"Image resize list": "",
|
12983
13016
|
"Image toolbar": "Verktøylinje for bilde",
|
@@ -12997,7 +13030,7 @@ function BuildResourceNO(LANG = null) {
|
|
12997
13030
|
"Numbered List": "Nummerert liste",
|
12998
13031
|
"Orange": "Oransje",
|
12999
13032
|
"Original": "Opprinnelig",
|
13000
|
-
"Page break":
|
13033
|
+
"Page break": LANG.QMSCKEDITOR.PAGE_BREAK,
|
13001
13034
|
"Previous": "Forrige",
|
13002
13035
|
"Purple": "Lilla",
|
13003
13036
|
"Red": "Rød",
|
@@ -13016,7 +13049,7 @@ function BuildResourceNO(LANG = null) {
|
|
13016
13049
|
"Show more items": "Vis flere elementer",
|
13017
13050
|
"Side image": "Sidestilt bilde",
|
13018
13051
|
"Small": "Liten",
|
13019
|
-
"Source":
|
13052
|
+
"Source": LANG.QMSCKEDITOR.SOURCE,
|
13020
13053
|
"Strikethrough": "Gjennomstreket",
|
13021
13054
|
"Subscript": "Senket skrift",
|
13022
13055
|
"Superscript": "Hevet skrift",
|
@@ -13138,8 +13171,19 @@ function BuildResourceNO(LANG = null) {
|
|
13138
13171
|
"Add Template": LANG.QMSCKEDITOR.ADD_TEMPLATE,
|
13139
13172
|
"Templates": LANG.QMSCKEDITOR.TEMPLATES,
|
13140
13173
|
"About CKEditor": LANG.QMSCKEDITOR.ABOUT_CKEDITOR,
|
13141
|
-
"Create
|
13142
|
-
"Edit anchor": "Rediger anker"
|
13174
|
+
"Create table of contents": LANG.QMSCKEDITOR.CREATE_TABLE_OF_CONTENTS,
|
13175
|
+
"Edit anchor": "Rediger anker",
|
13176
|
+
"SoftHyphen": LANG.QMSCKEDITOR.SOFTHYPHEN,
|
13177
|
+
"Cut": LANG.QMSCKEDITOR.CUT,
|
13178
|
+
"Copy": LANG.QMSCKEDITOR.COPY,
|
13179
|
+
"Paste": LANG.QMSCKEDITOR.PASTE,
|
13180
|
+
"Paste as plain text": LANG.QMSCKEDITOR.PASTE_TEXT,
|
13181
|
+
"Paste from Word": LANG.QMSCKEDITOR.PASTE_WORD,
|
13182
|
+
"Vertical Alignment": LANG.QMSCKEDITOR.TABLE_VERTICAL_ALIGNMENT,
|
13183
|
+
"Vertical Align Top": LANG.QMSCKEDITOR.VERTICAL_ALIGN_TOP,
|
13184
|
+
"Vertical Align Middle": LANG.QMSCKEDITOR.VERTICAL_ALIGN_MIDDLE,
|
13185
|
+
"Vertical Align Bottom": LANG.QMSCKEDITOR.VERTICAL_ALIGN_BOTTOM,
|
13186
|
+
"Showblocks": LANG.QMSCKEDITOR.SHOW_BLOCK,
|
13143
13187
|
}
|
13144
13188
|
};
|
13145
13189
|
}
|
@@ -13154,6 +13198,7 @@ function getCKEditorConfiguration(itemToolbar, LANG = null, language = 'en') {
|
|
13154
13198
|
// Add dictionary no for ckeditor 5 (locale)
|
13155
13199
|
window['CKEDITOR_TRANSLATIONS'].no = CKEditorBuildResourceFunctions.BuildResourceNO(LANG);
|
13156
13200
|
window['CKEDITOR_TRANSLATIONS'].nn = CKEditorBuildResourceFunctions.BuildResourceNO(LANG);
|
13201
|
+
window['CKEDITOR_TRANSLATIONS'].en = CKEditorBuildResourceFunctions.BuildResourceNO(LANG);
|
13157
13202
|
}
|
13158
13203
|
const ckeditorConfig = {
|
13159
13204
|
toolbar: {
|
@@ -16548,7 +16593,6 @@ function overwriteBPMNPool() {
|
|
16548
16593
|
bpmn2$1.Pool.prototype.autoresize = function (flags) {
|
16549
16594
|
var minSize = this.getMinimalSize();
|
16550
16595
|
var currentSize = this.attributes.size;
|
16551
|
-
this.resize(Math.max(minSize.width, currentSize.width), Math.max(minSize.height, currentSize.height), flags);
|
16552
16596
|
//QMS-3572: customization
|
16553
16597
|
if (flags.propertyPath) {
|
16554
16598
|
if (flags.propertyPath.includes('sublanes') && !flags.propertyPath.includes('label')) {
|
@@ -31122,9 +31166,16 @@ class QMSCKEditorComponent extends QMSCKEditorBaseComponent {
|
|
31122
31166
|
if (this.isEnabledFullScreenConfig()) {
|
31123
31167
|
this.addFullScreenConfig();
|
31124
31168
|
}
|
31169
|
+
if (this.qmsckData.tableOfContentHeadings) {
|
31170
|
+
this.ckeditorConfig.tableOfContentHeadings = [];
|
31171
|
+
const itemArray = this.qmsckData.tableOfContentHeadings.split(',');
|
31172
|
+
itemArray.forEach(i => {
|
31173
|
+
this.ckeditorConfig.tableOfContentHeadings.push(i);
|
31174
|
+
});
|
31175
|
+
}
|
31125
31176
|
}
|
31126
31177
|
ngOnDestroy() {
|
31127
|
-
|
31178
|
+
this.observer.disconnect();
|
31128
31179
|
}
|
31129
31180
|
registerOnChange(fn) {
|
31130
31181
|
this.onChange = fn;
|
@@ -31663,11 +31714,18 @@ class QMSCKEditorComponent extends QMSCKEditorBaseComponent {
|
|
31663
31714
|
});
|
31664
31715
|
}
|
31665
31716
|
_setEditorInstanceObserver(editorId) {
|
31666
|
-
|
31667
|
-
|
31668
|
-
|
31669
|
-
|
31670
|
-
|
31717
|
+
this.observer = new MutationObserver(mutationList => mutationList.filter(m => m.type === 'childList').forEach(m => {
|
31718
|
+
m.addedNodes.forEach((node) => {
|
31719
|
+
// Check if the added node has the specified ID
|
31720
|
+
if (!this.isToolbarItemsIdSet && (node.querySelector && node.querySelector('#' + editorId))) {
|
31721
|
+
this._setIdForToolbarItems();
|
31722
|
+
}
|
31723
|
+
});
|
31724
|
+
}));
|
31725
|
+
this.observer.observe(document, { childList: true, subtree: true });
|
31726
|
+
if (document.querySelector('#' + editorId)) {
|
31727
|
+
this._setIdForToolbarItems();
|
31728
|
+
}
|
31671
31729
|
}
|
31672
31730
|
_setIdForToolbarItems() {
|
31673
31731
|
var _a;
|
@@ -31701,7 +31759,7 @@ QMSCKEditorComponent.decorators = [
|
|
31701
31759
|
],
|
31702
31760
|
encapsulation: ViewEncapsulation.None,
|
31703
31761
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
31704
|
-
styles: [".mt5{margin-top:5px!important}.mt10{margin-top:10px!important}.mt7{margin-top:7px!important}.mt15{margin-top:15px!important}.mt20{margin-top:20px!important}.mt30{margin-top:30px!important}.mt40{margin-top:40px!important}.ml2{margin-left:2px!important}.ml3{margin-left:3px!important}.ml5{margin-left:5px!important}.ml15{margin-left:15px!important}.ml10{margin-left:10px!important}.ml12{margin-left:12px!important}.ml16{margin-left:16px!important}.ml-auto{margin-left:auto!important}.ml-25{margin-left:-25px!important}.mr5{margin-right:5px!important}.mr12{margin-right:12px!important}.mr15{margin-right:15px!important}.mb5{margin-bottom:5px!important}.mb10{margin-bottom:10px!important}.mb15{margin-bottom:15px!important}.pt8{padding-top:8px!important}.pt10{padding-top:10px!important}.pt15{padding-top:15px!important}.pt16{padding-top:16px!important}.pl15{padding-left:15px!important}.pl0{padding-left:0!important}.pr0{padding-right:0!important}.pr15{padding-right:15px!important}.fs12{font-size:12px}.fs14{font-size:14px!important}.fs16{font-size:16px!important}.fs22{font-size:22px!important}.fw500{font-weight:500!important}.italic-text{font-style:italic}.display-flex{display:flex}.qmsckeditor{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:400}.qmsckeditor h2{font-size:20px;font-weight:400}.qmsckeditor .mat-dialog-content{padding:0}.qmsckeditor .mat-icon{color:#909497}.qmsckeditor__fullscreen{overflow-y:auto;max-height:100vh;overflow-x:hidden}.qmsckeditor__cursor{cursor:pointer}.qmsckeditor__notallowed{cursor:not-allowed}.qmsckeditor.button__close,.qmsckeditor.button__done{float:right;top:-24px;right:-24px;cursor:pointer}.qmsckeditor.button__done{margin-right:20px}.qmsckeditor.button__done .mat-icon{color:#28a745;font-weight:700}.qmsckeditor.button__groups button{min-height:40px;width:100%;border-radius:4px;border:1px solid #c5c5c5;font-family:Open Sans;font-weight:600;font-size:14px;letter-spacing:1px;line-height:16px}.qmsckeditor.button__groups .save{background:#f8f9f9}.qmsckeditor.button__groups .save:hover{background:#e5e7e9}.qmsckeditor.button__groups .save:disabled{cursor:not-allowed}.qmsckeditor.button__groups .cancel{background:#f8f9f9}.qmsckeditor.button__groups .cancel:hover{background:#e5e7e9}.qmsckeditor.button__groups .cancel:disabled{cursor:not-allowed}.qmsckeditor.button__groups .delete{background:#f8f9f9}.qmsckeditor.button__groups .delete:hover{background:#e5e7e9}.qmsckeditor.button__groups .delete:disabled{cursor:not-allowed}.qmsckeditor.confirm__button__groups button{min-height:36px;border-radius:4px;width:auto;border:1px solid #c5c5c5;font-family:Open Sans;font-weight:600;font-size:14px;letter-spacing:1px;line-height:16px;padding-left:15px;padding-right:15px}.qmsckeditor.confirm__button__groups .confirm{background:#f8f9f9}.qmsckeditor.confirm__button__groups .confirm:hover{background:#e5e7e9}.qmsckeditor.confirm__button__groups .cancel{background:#f8f9f9}.qmsckeditor.confirm__button__groups .cancel:hover{background:#e5e7e9}.qmsckeditor.template-content.height{min-height:420px;max-height:520px;overflow:auto}.qmsckeditor.template-content.title{margin-left:-9px}.qmsckeditor.link__content.height{min-height:400px;max-height:520px}.qmsckeditor.card{margin-bottom:10px;min-height:60px;box-shadow:none;border:1px solid #e5e5e5}.qmsckeditor.card .title{font-weight:700}.qmsckeditor.card .content{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.qmsckeditor.card .material-icons{font-size:20px}.qmsckeditor.tooltip-content.height{min-height:400px;max-height:472px;overflow:auto}.qmsckeditor.save__as__template.height{height:125px}.ck-content .ck-horizontal-line,.ck-content .page-break{width:100%}.ck-content hr{background:#ccc}.ck-font-size-dropdown .ck-dropdown__panel ul{max-height:320px;overflow-y:auto}.ck-font-size-dropdown .ck-dropdown__panel ul li .ck-fontsize-option .ck-button__label{line-height:50px}.qmsckeditor_container .qmsckeditor__minwidth{width:100%}.qmsckeditor_container .ck-editor__editable{overflow-y:auto}.qmsckeditor_container p{line-height:normal}.qms-ckeditor .ck.ck-editor__editable{max-height:172px;min-height:172px;background-color:rgba(0,0,0,.04);font-family:Open Sans}.qms-ckeditor .ck.ck-editor__editable:not(.ck-focused,.ck-read-only):hover{background-color:rgba(0,0,0,.08);border-bottom:2px solid rgba(0,0,0,.38)}.qms-ckeditor .ck.ck-editor__editable::-webkit-scrollbar{width:12px}.qms-ckeditor .ck.ck-editor__editable::-webkit-scrollbar-track{background:transparent;background-clip:content-box}.qms-ckeditor .ck.ck-editor__editable::-webkit-scrollbar-thumb{background:rgba(0,0,0,.38);border-radius:20px;width:4px;border:4px solid transparent;background-clip:content-box}.qms-ckeditor .ck.ck-editor__editable::-webkit-scrollbar-thumb:hover{background:rgba(0,0,0,.5);background-clip:content-box;border:4px solid transparent}.qms-ckeditor .ck-placeholder{font-size:1rem;font-weight:600;color:rgba(0,0,0,.6)}.qms-ckeditor .ck-disabled .ck.ck-editor__main>.ck-editor__editable,.qms-ckeditor .ck-disabled .ck.ck-toolbar{background-color:var(--disabled);pointer-events:none}.qms-ckeditor .ck-disabled .ck-button{pointer-events:none}.qms-ckeditor .ck.ck-editor__main>.ck-editor__editable:not(.ck-focused):focus{border-radius:4px}.qms-ckeditor .ck.ck-editor__editable:not(.ck-editor__nested-editable).ck-focused{border:1px solid #c4c4c4;border-bottom:2px solid var(--primary);border-radius:4px;box-shadow:none;background-color:rgba(0,0,0,.08)}.qms-ckeditor .ck.ck-toolbar{box-shadow:0 1px 3px rgba(51,51,51,.2)}.qms-ckeditor .ck.ck-sticky-panel .ck-sticky-panel__content_sticky{box-shadow:none;border-width:0}.qmsckeditor__fullscreen{position:fixed;top:0;left:0;bottom:0;right:0;overflow:auto;background:#fff;z-index:99}.qmsckeditor__fullscreen .qms-ckeditor{height:98%;display:block;width:100%}.qmsckeditor__fullscreen .ck.ck-editor__main{height:98%}.qmsckeditor__fullscreen .ck.ck-editor__editable{height:calc(100vh - 100px);max-height:100%!important}.sub-container{display:flex;justify-content:space-between;padding:0 10px;font-family:Open Sans;font-size:.75rem;font-weight:400;line-height:16px;color:rgba(0,0,0,.6)}"]
|
31762
|
+
styles: [".mt5{margin-top:5px!important}.mt10{margin-top:10px!important}.mt7{margin-top:7px!important}.mt15{margin-top:15px!important}.mt20{margin-top:20px!important}.mt30{margin-top:30px!important}.mt40{margin-top:40px!important}.ml2{margin-left:2px!important}.ml3{margin-left:3px!important}.ml5{margin-left:5px!important}.ml15{margin-left:15px!important}.ml10{margin-left:10px!important}.ml12{margin-left:12px!important}.ml16{margin-left:16px!important}.ml-auto{margin-left:auto!important}.ml-25{margin-left:-25px!important}.mr5{margin-right:5px!important}.mr12{margin-right:12px!important}.mr15{margin-right:15px!important}.mb5{margin-bottom:5px!important}.mb10{margin-bottom:10px!important}.mb15{margin-bottom:15px!important}.pt8{padding-top:8px!important}.pt10{padding-top:10px!important}.pt15{padding-top:15px!important}.pt16{padding-top:16px!important}.pl15{padding-left:15px!important}.pl0{padding-left:0!important}.pr0{padding-right:0!important}.pr15{padding-right:15px!important}.fs12{font-size:12px}.fs14{font-size:14px!important}.fs16{font-size:16px!important}.fs22{font-size:22px!important}.fw500{font-weight:500!important}.italic-text{font-style:italic}.display-flex{display:flex}.qmsckeditor{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:400}.qmsckeditor h2{font-size:20px;font-weight:400}.qmsckeditor .mat-dialog-content{padding:0}.qmsckeditor .mat-icon{color:#909497}.qmsckeditor__fullscreen{overflow-y:auto;max-height:100vh;overflow-x:hidden}.qmsckeditor__cursor{cursor:pointer}.qmsckeditor__notallowed{cursor:not-allowed}.qmsckeditor.button__close,.qmsckeditor.button__done{float:right;top:-24px;right:-24px;cursor:pointer}.qmsckeditor.button__done{margin-right:20px}.qmsckeditor.button__done .mat-icon{color:#28a745;font-weight:700}.qmsckeditor.button__groups button{min-height:40px;width:100%;border-radius:4px;border:1px solid #c5c5c5;font-family:Open Sans;font-weight:600;font-size:14px;letter-spacing:1px;line-height:16px}.qmsckeditor.button__groups .save{background:#f8f9f9}.qmsckeditor.button__groups .save:hover{background:#e5e7e9}.qmsckeditor.button__groups .save:disabled{cursor:not-allowed}.qmsckeditor.button__groups .cancel{background:#f8f9f9}.qmsckeditor.button__groups .cancel:hover{background:#e5e7e9}.qmsckeditor.button__groups .cancel:disabled{cursor:not-allowed}.qmsckeditor.button__groups .delete{background:#f8f9f9}.qmsckeditor.button__groups .delete:hover{background:#e5e7e9}.qmsckeditor.button__groups .delete:disabled{cursor:not-allowed}.qmsckeditor.confirm__button__groups button{min-height:36px;border-radius:4px;width:auto;border:1px solid #c5c5c5;font-family:Open Sans;font-weight:600;font-size:14px;letter-spacing:1px;line-height:16px;padding-left:15px;padding-right:15px}.qmsckeditor.confirm__button__groups .confirm{background:#f8f9f9}.qmsckeditor.confirm__button__groups .confirm:hover{background:#e5e7e9}.qmsckeditor.confirm__button__groups .cancel{background:#f8f9f9}.qmsckeditor.confirm__button__groups .cancel:hover{background:#e5e7e9}.qmsckeditor.template-content.height{min-height:420px;max-height:520px;overflow:auto}.qmsckeditor.template-content.title{margin-left:-9px}.qmsckeditor.link__content.height{min-height:400px;max-height:520px}.qmsckeditor.card{margin-bottom:10px;min-height:60px;box-shadow:none;border:1px solid #e5e5e5}.qmsckeditor.card .title{font-weight:700}.qmsckeditor.card .content{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.qmsckeditor.card .material-icons{font-size:20px}.qmsckeditor.tooltip-content.height{min-height:400px;max-height:472px;overflow:auto}.qmsckeditor.save__as__template.height{height:125px}.ck-content .ck-horizontal-line,.ck-content .page-break{width:100%}.ck-content hr{background:#ccc}.ck-font-size-dropdown .ck-dropdown__panel ul{max-height:320px;overflow-y:auto}.ck-font-size-dropdown .ck-dropdown__panel ul li .ck-fontsize-option .ck-button__label{line-height:50px}.qmsckeditor_container .qmsckeditor__minwidth{width:100%}.qmsckeditor_container .ck-editor__editable{overflow-y:auto}.qmsckeditor_container p{line-height:normal}.qmsckeditor_container span.shy{background:#afe0ef;padding:0 1px}.qmsckeditor_container span.shy:after{content:\"-\"}.qmsckeditor_container .show-block-outline{outline:1px dashed #757575;margin:10px 0;padding:15px 4px 4px}.qmsckeditor_container .block-label{position:relative;top:-20px;font-size:12px;background-color:#d2cdcd;color:#000;pointer-events:none;font-weight:400}.qmsckeditor_container .show-block-button{margin-right:0!important}.qmsckeditor_container .show-block-button-active{background-color:var(--ck-color-button-on-background);margin-right:0!important}.qmsckeditor_container .qms-verticalAlign{width:54px}.qmsckeditor_container .qms-verticalAlign-selected{width:54px;background:var(--ck-color-button-on-background)}.qms-ckeditor .ck.ck-editor__editable{max-height:172px;min-height:172px;background-color:rgba(0,0,0,.04);font-family:Open Sans}.qms-ckeditor .ck.ck-editor__editable:not(.ck-focused,.ck-read-only):hover{background-color:rgba(0,0,0,.08);border-bottom:2px solid rgba(0,0,0,.38)}.qms-ckeditor .ck.ck-editor__editable::-webkit-scrollbar{width:12px}.qms-ckeditor .ck.ck-editor__editable::-webkit-scrollbar-track{background:transparent;background-clip:content-box}.qms-ckeditor .ck.ck-editor__editable::-webkit-scrollbar-thumb{background:rgba(0,0,0,.38);border-radius:20px;width:4px;border:4px solid transparent;background-clip:content-box}.qms-ckeditor .ck.ck-editor__editable::-webkit-scrollbar-thumb:hover{background:rgba(0,0,0,.5);background-clip:content-box;border:4px solid transparent}.qms-ckeditor .ck-placeholder{font-size:1rem;font-weight:600;color:rgba(0,0,0,.6)}.qms-ckeditor .ck-disabled .ck.ck-editor__main>.ck-editor__editable,.qms-ckeditor .ck-disabled .ck.ck-toolbar{background-color:var(--disabled);pointer-events:none}.qms-ckeditor .ck-disabled .ck-button{pointer-events:none}.qms-ckeditor .ck.ck-editor__main>.ck-editor__editable:not(.ck-focused):focus{border-radius:4px}.qms-ckeditor .ck.ck-editor__editable:not(.ck-editor__nested-editable).ck-focused{border:1px solid #c4c4c4;border-bottom:2px solid var(--primary);border-radius:4px;box-shadow:none;background-color:rgba(0,0,0,.08)}.qms-ckeditor .ck.ck-toolbar{box-shadow:0 1px 3px rgba(51,51,51,.2)}.qms-ckeditor .ck.ck-sticky-panel .ck-sticky-panel__content_sticky{box-shadow:none;border-width:0}.qmsckeditor__fullscreen{position:fixed;top:0;left:0;bottom:0;right:0;overflow:auto;background:#fff;z-index:99}.qmsckeditor__fullscreen .qms-ckeditor{height:98%;display:block;width:100%}.qmsckeditor__fullscreen .ck.ck-editor__main{height:98%}.qmsckeditor__fullscreen .ck.ck-editor__editable{height:calc(100vh - 100px);max-height:100%!important}.sub-container{display:flex;justify-content:space-between;padding:0 10px;font-family:Open Sans;font-size:.75rem;font-weight:400;line-height:16px;color:rgba(0,0,0,.6)}"]
|
31705
31763
|
},] }
|
31706
31764
|
];
|
31707
31765
|
QMSCKEditorComponent.ctorParameters = () => [
|
@@ -35574,7 +35632,7 @@ class SelectDepartmentTreeComponent {
|
|
35574
35632
|
const nestedNode = this.convertToNestedNode(node);
|
35575
35633
|
nestedNode.isGroup = false;
|
35576
35634
|
});
|
35577
|
-
this.checkListSelection.deselect(...this.treeControl.dataNodes.filter(x => x.disabled));
|
35635
|
+
this.checkListSelection.deselect(...this.treeControl.dataNodes.filter(x => !x.disabled));
|
35578
35636
|
return;
|
35579
35637
|
}
|
35580
35638
|
;
|