qms-angular 1.0.80 → 1.0.84
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 +259 -106
- package/bundles/qms-angular.umd.js.map +1 -1
- package/esm2015/lib/components/qms-navigation-drawer/qms-navigation-drawer.component.js +3 -3
- package/esm2015/lib/components/qms-paginator/qms-paginator.component.js +14 -4
- package/esm2015/lib/components/related/popup/related-popup.component.js +48 -56
- package/esm2015/lib/components/select-one/select-one.component.js +3 -2
- package/esm2015/lib/components/select-process-document/select-process-document.component.js +65 -34
- package/esm2015/lib/components/tree/tree.component.js +2 -2
- package/esm2015/lib/directives/dialog/dialog.content.directive.js +96 -0
- package/esm2015/lib/directives/table/table-row.directive.js +3 -3
- package/esm2015/lib/directives/table/table.directive.js +6 -6
- package/esm2015/lib/model/en.js +4 -1
- package/esm2015/lib/model/no.js +4 -1
- package/esm2015/lib/qms-angular.module.js +12 -3
- package/esm2015/public-api.js +2 -1
- package/fesm2015/qms-angular.js +247 -105
- package/fesm2015/qms-angular.js.map +1 -1
- package/lib/components/qms-paginator/qms-paginator.component.d.ts +5 -1
- package/lib/directives/dialog/dialog.content.directive.d.ts +30 -0
- package/lib/directives/table/table-row.directive.d.ts +1 -1
- package/lib/directives/table/table.directive.d.ts +1 -1
- package/lib/model/en.d.ts +3 -0
- package/lib/model/no.d.ts +3 -0
- package/lib.theme.scss +1 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/qms-angular.metadata.json +1 -1
- package/src/assets/qms-ckeditor-plugin/build/ckeditor.js +1 -1
- package/src/assets/qms-ckeditor-plugin/build/ckeditor.js.map +1 -1
- package/src/assets/qms-ckeditor-plugin/src/plugins/anchor/anchorediting.js +19 -1
- package/src/assets/qms-ckeditor-plugin/src/plugins/imagemap/converters.js +44 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/imagemap/imagemapediting.js +3 -1
- package/src/assets/qms-ckeditor-plugin/src/plugins/media/mediaembedediting.js +30 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/tooltip/tooltipediting.js +20 -9
- package/src/assets/qms-ckeditor-plugin/src/plugins/tooltip/utils.js +4 -1
- package/src/lib/components/qms-navigation-drawer/qms-navigation-drawer.component.scss +5 -5
- package/src/themes/core/_dialog.scss +35 -0
- package/src/themes/core/_form.scss +4 -0
@@ -1,5 +1,6 @@
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
2
2
|
import { PageEvent } from '@angular/material/paginator';
|
3
|
+
import { TranslateLibraryService } from "../../services/translation-registry.service";
|
3
4
|
export interface QMSPaginationOption {
|
4
5
|
pageSize?: number;
|
5
6
|
pageSizeOptions?: number[];
|
@@ -12,10 +13,13 @@ export declare enum PaginationSize {
|
|
12
13
|
mobile = "mobile"
|
13
14
|
}
|
14
15
|
export declare class QMSPaginatorComponent implements OnInit {
|
16
|
+
private trans;
|
15
17
|
sizeMedium: string;
|
16
18
|
sizeSmall: string;
|
17
19
|
sizeLarge: string;
|
18
20
|
sizeMobile: string;
|
21
|
+
LANG: any;
|
22
|
+
numHidden: number;
|
19
23
|
size: PaginationSize;
|
20
24
|
get pageSizeOptions(): number[];
|
21
25
|
set pageSizeOptions(value: number[]);
|
@@ -35,7 +39,7 @@ export declare class QMSPaginatorComponent implements OnInit {
|
|
35
39
|
displayNumberOfPages: string[];
|
36
40
|
minPage: number;
|
37
41
|
maxpage: number;
|
38
|
-
constructor();
|
42
|
+
constructor(trans: TranslateLibraryService);
|
39
43
|
ngOnInit(): void;
|
40
44
|
private _updateDisplayedPageSizeOptions;
|
41
45
|
getNumberOfPages(): void;
|
@@ -0,0 +1,30 @@
|
|
1
|
+
import { ElementRef, OnInit } from '@angular/core';
|
2
|
+
export declare class QMSDialogContainer {
|
3
|
+
private el;
|
4
|
+
min: string;
|
5
|
+
max: string;
|
6
|
+
constructor(el: ElementRef);
|
7
|
+
ngOnInit(): void;
|
8
|
+
}
|
9
|
+
export declare class QMSDialogHeader implements OnInit {
|
10
|
+
private el;
|
11
|
+
height: string;
|
12
|
+
constructor(el: ElementRef);
|
13
|
+
ngOnInit(): void;
|
14
|
+
}
|
15
|
+
/**
|
16
|
+
* Scrollable content container of a dialog.
|
17
|
+
*/
|
18
|
+
export declare class QMSDialogContent {
|
19
|
+
}
|
20
|
+
/**
|
21
|
+
* Container for the bottom action buttons in a dialog.
|
22
|
+
* Stays fixed to the bottom when scrolling.
|
23
|
+
*/
|
24
|
+
export declare class QMSDialogFooter {
|
25
|
+
private el;
|
26
|
+
align?: 'start' | 'center' | 'end';
|
27
|
+
height: string;
|
28
|
+
constructor(el: ElementRef);
|
29
|
+
ngOnInit(): void;
|
30
|
+
}
|
@@ -5,7 +5,7 @@ export declare class QMSTableRowDirective {
|
|
5
5
|
private _rowData;
|
6
6
|
constructor(_el: ElementRef, renderer: Renderer2);
|
7
7
|
ngAfterViewChecked(): void;
|
8
|
-
set
|
8
|
+
set qmsCdkDetailRow(value: any);
|
9
9
|
get disable(): boolean;
|
10
10
|
get select(): boolean;
|
11
11
|
get group(): boolean;
|
@@ -27,7 +27,7 @@ export declare class CdkDetailRowDirective implements OnChanges {
|
|
27
27
|
private focusClass;
|
28
28
|
onRowExpandEvent: EventEmitter<boolean>;
|
29
29
|
get expanded(): boolean;
|
30
|
-
set
|
30
|
+
set qmsCdkDetailRow(value: any);
|
31
31
|
set template(value: TemplateRef<any>);
|
32
32
|
set otherTemplate(value: TemplateRef<any>);
|
33
33
|
constructor(vcRef: ViewContainerRef, _el: ElementRef);
|
package/lib/model/en.d.ts
CHANGED
package/lib/model/no.d.ts
CHANGED
package/lib.theme.scss
CHANGED
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
@@ -160,3 +160,4 @@ export * from './lib/components/qms-navigation-drawer';
|
|
160
160
|
export * from './lib/directives/table/table.directive';
|
161
161
|
export * from './lib/directives/table/table-row.directive';
|
162
162
|
export * from './lib/components/qms-paginator';
|
163
|
+
export * from './lib/directives/dialog/dialog.content.directive';
|