qms-angular 1.1.76 → 1.1.77
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 +18 -7
- package/bundles/qms-angular.umd.js.map +1 -1
- package/esm2015/lib/model/en.js +6 -2
- package/esm2015/lib/model/no.js +6 -2
- package/esm2015/lib/qms-ckeditor-components/common/functions/resource.function.js +9 -6
- package/fesm2015/qms-angular.js +18 -7
- package/fesm2015/qms-angular.js.map +1 -1
- package/lib/model/en.d.ts +4 -0
- package/lib/model/no.d.ts +4 -0
- package/lib/qms-ckeditor-components/common/functions/resource.function.d.ts +8 -5
- package/package.json +1 -1
- package/qms-angular.metadata.json +1 -1
- package/src/assets/qms-ckeditor-plugin/build/ckeditor.js +2 -2
- package/src/assets/qms-ckeditor-plugin/build/ckeditor.js.map +1 -1
- package/src/assets/qms-ckeditor-plugin/src/ckeditor.js +6 -2
- package/src/assets/qms-ckeditor-plugin/src/plugins/collapsible/collapsible.js +229 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/collapsible/collapsiblecommand.js +13 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/heading/headingediting.js +165 -163
- package/src/assets/qms-ckeditor-plugin/src/plugins/heading/headingui.js +18 -8
- package/src/assets/qms-ckeditor-plugin/src/plugins/heading/ingress/ingress.js +63 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/heading/ingress/ingresscommand.js +33 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/heading/theme/heading.css +44 -35
- package/src/assets/qms-ckeditor-plugin/src/plugins/heading/utils.js +2 -1
- package/src/assets/qms-ckeditor-plugin/src/plugins/table/commands/setheadercolumncommand.js +99 -95
- package/src/assets/qms-ckeditor-plugin/src/plugins/table/commands/setheaderrowcommand.js +110 -105
- package/src/assets/qms-ckeditor-plugin/src/plugins/table/converters/downcast.js +529 -529
- package/src/assets/qms-ckeditor-plugin/src/plugins/table/theme/table.css +67 -67
- package/src/assets/qms-ckeditor-plugin/src/plugins/tooltip/tooltipcommand.js +74 -75
- package/src/assets/qms-ckeditor-plugin/src/themes/icons/angles-up-down.svg +1 -0
package/lib/model/en.d.ts
CHANGED
@@ -311,6 +311,10 @@ export declare const en: {
|
|
311
311
|
VERTICAL_ALIGN_MIDDLE: string;
|
312
312
|
VERTICAL_ALIGN_BOTTOM: string;
|
313
313
|
SHOW_BLOCK: string;
|
314
|
+
EDIT_ANCHOR: string;
|
315
|
+
COLLAPSIBLE: string;
|
316
|
+
COLLAPSIBLE_TITLE: string;
|
317
|
+
COLLAPSIBLE_CONTENT: string;
|
314
318
|
};
|
315
319
|
ABOUT: {
|
316
320
|
ABOUT_CKEDITOR: string;
|
package/lib/model/no.d.ts
CHANGED
@@ -311,6 +311,10 @@ export declare const no: {
|
|
311
311
|
VERTICAL_ALIGN_MIDDLE: string;
|
312
312
|
VERTICAL_ALIGN_BOTTOM: string;
|
313
313
|
SHOW_BLOCK: string;
|
314
|
+
EDIT_ANCHOR: string;
|
315
|
+
COLLAPSIBLE: string;
|
316
|
+
COLLAPSIBLE_TITLE: string;
|
317
|
+
COLLAPSIBLE_CONTENT: string;
|
314
318
|
};
|
315
319
|
ABOUT: {
|
316
320
|
ABOUT_CKEDITOR: string;
|
@@ -11,7 +11,7 @@ declare function BuildResourceNO(LANG?: any): {
|
|
11
11
|
Blue: string;
|
12
12
|
Bold: string;
|
13
13
|
"Bulleted List": string;
|
14
|
-
Cancel:
|
14
|
+
Cancel: any;
|
15
15
|
"Cannot upload file:": string;
|
16
16
|
"Centered image": string;
|
17
17
|
"Change image text alternative": string;
|
@@ -19,7 +19,7 @@ declare function BuildResourceNO(LANG?: any): {
|
|
19
19
|
"Could not insert image at the current position.": string;
|
20
20
|
"Could not obtain resized image URL.": string;
|
21
21
|
"Decrease indent": string;
|
22
|
-
Default:
|
22
|
+
Default: any;
|
23
23
|
"Dim grey": string;
|
24
24
|
"Document colors": string;
|
25
25
|
"Dropdown toolbar": string;
|
@@ -66,7 +66,7 @@ declare function BuildResourceNO(LANG?: any): {
|
|
66
66
|
"Rich Text Editor": string;
|
67
67
|
"Rich Text Editor, %0": string;
|
68
68
|
"Right aligned image": string;
|
69
|
-
Save:
|
69
|
+
Save: any;
|
70
70
|
"Select all": string;
|
71
71
|
"Selecting resized image failed": string;
|
72
72
|
"Show more items": string;
|
@@ -185,8 +185,11 @@ declare function BuildResourceNO(LANG?: any): {
|
|
185
185
|
"Add Template": any;
|
186
186
|
Templates: any;
|
187
187
|
"About CKEditor": any;
|
188
|
-
"Create
|
189
|
-
"Edit anchor":
|
188
|
+
"Create Table of Contents": any;
|
189
|
+
"Edit anchor": any;
|
190
|
+
Collapsible: any;
|
191
|
+
"Collapsible title": any;
|
192
|
+
"Collapsible content": any;
|
190
193
|
"Soft hyphen": any;
|
191
194
|
Cut: any;
|
192
195
|
Copy: any;
|