@mediusinc/mng-commons 0.6.1 → 0.7.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/esm2020/lib/api/models/builders/query-param.builder.mjs +7 -1
- package/esm2020/lib/components/form/formly/fields/formly-field-lookup-dialog/formly-field-lookup-dialog.component.mjs +1 -1
- package/esm2020/lib/components/form/formly/fields/formly-field-table-dialog-form/formly-field-table-dialog-form.component.mjs +25 -34
- package/esm2020/lib/components/form/formly/fields/formly-field-table-dialog-multiselect/formly-field-table-dialog-multiselect.component.mjs +1 -1
- package/esm2020/lib/components/tableview/table/table.component.mjs +91 -22
- package/esm2020/lib/components/tableview/tableview.component.mjs +3 -11
- package/esm2020/lib/config/formly.config.mjs +3 -3
- package/esm2020/lib/descriptors/column.descriptor.mjs +32 -1
- package/esm2020/lib/descriptors/table.descriptor.mjs +52 -9
- package/esm2020/lib/utils/styles.util.mjs +41 -0
- package/fesm2015/mediusinc-mng-commons.mjs +242 -71
- package/fesm2015/mediusinc-mng-commons.mjs.map +1 -1
- package/fesm2020/mediusinc-mng-commons.mjs +239 -69
- package/fesm2020/mediusinc-mng-commons.mjs.map +1 -1
- package/lib/api/models/builders/query-param.builder.d.ts +1 -0
- package/lib/components/form/formly/fields/formly-field-table-dialog-form/formly-field-table-dialog-form.component.d.ts +1 -4
- package/lib/components/tableview/table/table.component.d.ts +20 -10
- package/lib/components/tableview/tableview.component.d.ts +1 -3
- package/lib/descriptors/column.descriptor.d.ts +10 -0
- package/lib/descriptors/table.descriptor.d.ts +22 -5
- package/lib/utils/styles.util.d.ts +14 -0
- package/package.json +1 -1
- package/scss/mng-overrides/_theme_datatable.scss +21 -0
- package/scss/mng-overrides/_theme_tableview.scss +0 -43
|
@@ -3,6 +3,7 @@ export declare class MediusQueryParamBuilder {
|
|
|
3
3
|
private queryParam;
|
|
4
4
|
private constructor();
|
|
5
5
|
static create(itemsPerPage?: number, itemsOffset?: number): MediusQueryParamBuilder;
|
|
6
|
+
static createFromExisting(queryParam: MediusQueryParam, itemsPerPage?: number, itemsOffset?: number): MediusQueryParamBuilder;
|
|
6
7
|
withItemsPerPage(itemsPerPage: number): MediusQueryParamBuilder;
|
|
7
8
|
withItemsOffset(itemsOffset: number): MediusQueryParamBuilder;
|
|
8
9
|
withQueryMode(queryMode: MediusQueryMode): MediusQueryParamBuilder;
|
|
@@ -3,23 +3,20 @@ import { FieldType } from '@ngx-formly/core';
|
|
|
3
3
|
import { Observable, Subject } from 'rxjs';
|
|
4
4
|
import { ActionDescriptor, FieldManyEditorDescriptor } from '../../../../../descriptors';
|
|
5
5
|
import { MngActionExecutorService } from '../../../../../services';
|
|
6
|
-
import { MngTableCellClickEvent } from '../../../../tableview/models';
|
|
7
6
|
import * as i0 from "@angular/core";
|
|
8
7
|
export declare class MngFormlyFieldTableDialogFormComponent<T, ET> extends FieldType implements OnInit, OnDestroy {
|
|
9
8
|
private actionExecutor;
|
|
10
9
|
descriptor: FieldManyEditorDescriptor<T, ET>;
|
|
11
10
|
itemsSubject: Subject<Array<T>>;
|
|
12
11
|
items$: Observable<Array<T>>;
|
|
12
|
+
actions: Array<ActionDescriptor<T>>;
|
|
13
13
|
toolbarRightActions: Array<ActionDescriptor<T>>;
|
|
14
|
-
rowClickActions: Array<ActionDescriptor<T>>;
|
|
15
|
-
rowInlineActions: Array<ActionDescriptor<T>>;
|
|
16
14
|
private subscriptions;
|
|
17
15
|
private isDisabledSubject;
|
|
18
16
|
private isEnabled$;
|
|
19
17
|
constructor(actionExecutor: MngActionExecutorService);
|
|
20
18
|
ngOnInit(): void;
|
|
21
19
|
ngOnDestroy(): void;
|
|
22
|
-
onTableCellClick(event: MngTableCellClickEvent<T>): void;
|
|
23
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<MngFormlyFieldTableDialogFormComponent<any, any>, never>;
|
|
24
21
|
static ɵcmp: i0.ɵɵComponentDeclaration<MngFormlyFieldTableDialogFormComponent<any, any>, "mng-formly-table-dialog-form-field", never, {}, {}, never, never>;
|
|
25
22
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AfterContentInit, EventEmitter, Injector, OnDestroy, OnInit, QueryList, TemplateRef, Type } from '@angular/core';
|
|
1
|
+
import { AfterContentInit, EventEmitter, Injector, OnChanges, OnDestroy, OnInit, QueryList, SimpleChanges, TemplateRef, Type } from '@angular/core';
|
|
2
2
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
3
|
import { TranslateService } from '@ngx-translate/core';
|
|
4
4
|
import { LazyLoadEvent, SortMeta } from 'primeng/api';
|
|
@@ -7,17 +7,18 @@ import { Table } from 'primeng/table';
|
|
|
7
7
|
import { Observable } from 'rxjs';
|
|
8
8
|
import { MediusQueryResult } from '../../../api/models';
|
|
9
9
|
import { ITableDataProvider } from '../../../data-providers';
|
|
10
|
-
import { ColumnDescriptor, TableDescriptor } from '../../../descriptors';
|
|
10
|
+
import { ActionDescriptor, ColumnDescriptor, TableDescriptor } from '../../../descriptors';
|
|
11
11
|
import { MngComponentDirective, MngTemplateDirective } from '../../../directives';
|
|
12
12
|
import { IViewContainer } from '../../../models';
|
|
13
|
-
import { MngViewContainerComponentService } from '../../../services';
|
|
13
|
+
import { MngActionExecutorService, MngViewContainerComponentService } from '../../../services';
|
|
14
14
|
import { MngTableCellClickEvent, MngTableLoadEvent } from '../models';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
|
-
export declare class MngTableComponent<T, S> implements OnInit, AfterContentInit, OnDestroy {
|
|
16
|
+
export declare class MngTableComponent<T, S> implements OnInit, OnChanges, AfterContentInit, OnDestroy {
|
|
17
17
|
private injector;
|
|
18
18
|
private router;
|
|
19
|
-
private
|
|
19
|
+
private route;
|
|
20
20
|
private translate;
|
|
21
|
+
private actionExecutor;
|
|
21
22
|
private viewContainerService;
|
|
22
23
|
readonly filterDisplayRow: TableDescriptor.FilterDisplayEnum;
|
|
23
24
|
readonly filterDisplayMenu: TableDescriptor.FilterDisplayEnum;
|
|
@@ -29,10 +30,12 @@ export declare class MngTableComponent<T, S> implements OnInit, AfterContentInit
|
|
|
29
30
|
useQueryParams: boolean;
|
|
30
31
|
selectionMode: string;
|
|
31
32
|
selectionEnabled: boolean;
|
|
32
|
-
|
|
33
|
+
actions: Array<ActionDescriptor<T>>;
|
|
34
|
+
isColumnClickable?: boolean;
|
|
33
35
|
viewContainerInit?: IViewContainer<T, S>;
|
|
34
36
|
captionComponent?: Type<any>;
|
|
35
37
|
columnActionComponent?: Type<any>;
|
|
38
|
+
columnActionMinWidth: number | null;
|
|
36
39
|
loadEventEmitter: EventEmitter<MngTableLoadEvent>;
|
|
37
40
|
cellClickEventEmitter: EventEmitter<MngTableCellClickEvent<T>>;
|
|
38
41
|
selectionChangeEventEmitter: EventEmitter<T[]>;
|
|
@@ -48,6 +51,7 @@ export declare class MngTableComponent<T, S> implements OnInit, AfterContentInit
|
|
|
48
51
|
queryResult$?: Observable<MediusQueryResult<T>>;
|
|
49
52
|
loading$?: Observable<boolean>;
|
|
50
53
|
dataProviderInfiniteScrollItems: Array<T>;
|
|
54
|
+
private itemsSubject;
|
|
51
55
|
rowsPerPageOptions: Array<number>;
|
|
52
56
|
rows: number;
|
|
53
57
|
offset: number;
|
|
@@ -57,6 +61,8 @@ export declare class MngTableComponent<T, S> implements OnInit, AfterContentInit
|
|
|
57
61
|
};
|
|
58
62
|
infiniteScroll: boolean;
|
|
59
63
|
scrollHeight: 'flex' | null;
|
|
64
|
+
className: string;
|
|
65
|
+
tableFullHeightOffset: number | null;
|
|
60
66
|
rowHeight: number | null;
|
|
61
67
|
selection: Array<T>;
|
|
62
68
|
private dataProviderService;
|
|
@@ -70,17 +76,21 @@ export declare class MngTableComponent<T, S> implements OnInit, AfterContentInit
|
|
|
70
76
|
private isFilterChanged;
|
|
71
77
|
private isSortChanged;
|
|
72
78
|
private filterDescriptors;
|
|
79
|
+
showInlineActionsColumn: boolean;
|
|
80
|
+
rowClickActions: ActionDescriptor<T>[];
|
|
81
|
+
rowInlineActions: ActionDescriptor<T>[];
|
|
73
82
|
private viewContainer?;
|
|
74
83
|
private subscriptions;
|
|
75
|
-
constructor(injector: Injector, router: Router,
|
|
84
|
+
constructor(injector: Injector, router: Router, route: ActivatedRoute, translate: TranslateService, actionExecutor: MngActionExecutorService, viewContainerService: MngViewContainerComponentService<T, S> | null);
|
|
76
85
|
ngOnInit(): void;
|
|
77
86
|
ngAfterContentInit(): void;
|
|
87
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
78
88
|
ngOnDestroy(): void;
|
|
79
89
|
reload(emitEvent?: boolean, resetParams?: boolean): void;
|
|
80
90
|
onTableLazyLoad(event: LazyLoadEvent): void;
|
|
81
91
|
onTableSort(event: any): void;
|
|
82
92
|
onTableFilter(event: any): void;
|
|
83
|
-
onCellClick(col: ColumnDescriptor<any, T>, item: T, idx: number): void;
|
|
93
|
+
onCellClick(event: Event, col: ColumnDescriptor<any, T>, item: T, idx: number): void;
|
|
84
94
|
onSelectionChange(event: Array<T>): void;
|
|
85
95
|
onCaptionCmpInst<C>(instance: C): void;
|
|
86
96
|
onColumnActionCmpInst<C>(instance: C): void;
|
|
@@ -88,6 +98,6 @@ export declare class MngTableComponent<T, S> implements OnInit, AfterContentInit
|
|
|
88
98
|
private loadTableFromRouteUpdate;
|
|
89
99
|
private updatePrimeSortAndFilter;
|
|
90
100
|
private getDefaultSortMeta;
|
|
91
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MngTableComponent<any, any>, [null, null, null, null, { optional: true; }]>;
|
|
92
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MngTableComponent<any, any>, "mng-table", never, { "descriptor": "descriptor"; "items": "items"; "queryResult": "queryResult"; "loading": "loading"; "dataProvider": "dataProvider"; "useQueryParams": "useQueryParams"; "selectionMode": "selectionMode"; "selectionEnabled": "selectionEnabled"; "isColumnClickable": "isColumnClickable"; "viewContainerInit": "viewContainer"; "captionComponent": "captionComponent"; "columnActionComponent": "columnActionComponent"; }, { "loadEventEmitter": "tableLoad"; "cellClickEventEmitter": "cellClick"; "selectionChangeEventEmitter": "selectionChange"; "captionCmpInstEventEmitter": "captionComponentInstance"; "columnActionCmpInstEventEmitter": "columnActionComponentInstance"; }, ["templates"], never>;
|
|
101
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MngTableComponent<any, any>, [null, null, null, null, null, { optional: true; }]>;
|
|
102
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MngTableComponent<any, any>, "mng-table", never, { "descriptor": "descriptor"; "items": "items"; "queryResult": "queryResult"; "loading": "loading"; "dataProvider": "dataProvider"; "useQueryParams": "useQueryParams"; "selectionMode": "selectionMode"; "selectionEnabled": "selectionEnabled"; "actions": "actions"; "isColumnClickable": "isColumnClickable"; "viewContainerInit": "viewContainer"; "captionComponent": "captionComponent"; "columnActionComponent": "columnActionComponent"; "columnActionMinWidth": "columnActionMinWidth"; }, { "loadEventEmitter": "tableLoad"; "cellClickEventEmitter": "cellClick"; "selectionChangeEventEmitter": "selectionChange"; "captionCmpInstEventEmitter": "captionComponentInstance"; "columnActionCmpInstEventEmitter": "columnActionComponentInstance"; }, ["templates"], never>;
|
|
93
103
|
}
|
|
@@ -7,7 +7,6 @@ import { IDataProvider, ITableviewDataProvider } from '../../data-providers';
|
|
|
7
7
|
import { ActionDescriptor, TableviewDescriptor } from '../../descriptors';
|
|
8
8
|
import { IViewContainer } from '../../models';
|
|
9
9
|
import { MngActionExecutorService, MngViewContainerComponentService } from '../../services';
|
|
10
|
-
import { MngTableCellClickEvent } from './models';
|
|
11
10
|
import { MngTableComponent } from './table/table.component';
|
|
12
11
|
import * as i0 from "@angular/core";
|
|
13
12
|
export declare class MngTableviewComponent<T, S> implements OnInit, OnDestroy, IViewContainer<T, S> {
|
|
@@ -21,7 +20,7 @@ export declare class MngTableviewComponent<T, S> implements OnInit, OnDestroy, I
|
|
|
21
20
|
descriptor: TableviewDescriptor<T>;
|
|
22
21
|
dataProvider?: ITableviewDataProvider<T, S>;
|
|
23
22
|
actions: Array<ActionDescriptor<T>>;
|
|
24
|
-
tableComponent
|
|
23
|
+
tableComponent?: MngTableComponent<T, S>;
|
|
25
24
|
rowClickActions: ActionDescriptor<T>[];
|
|
26
25
|
rowInlineActions: ActionDescriptor<T>[];
|
|
27
26
|
toolbarLeftActions: ActionDescriptor<T>[];
|
|
@@ -33,7 +32,6 @@ export declare class MngTableviewComponent<T, S> implements OnInit, OnDestroy, I
|
|
|
33
32
|
getMessageService(): MessageService;
|
|
34
33
|
getDataProvider(): IDataProvider<T, S> | undefined;
|
|
35
34
|
reloadTable(): void;
|
|
36
|
-
onTableCellClick(event: MngTableCellClickEvent<T>): void;
|
|
37
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<MngTableviewComponent<any, any>, never>;
|
|
38
36
|
static ɵcmp: i0.ɵɵComponentDeclaration<MngTableviewComponent<any, any>, "mng-tableview", never, { "descriptor": "descriptor"; "dataProvider": "dataProvider"; "actions": "actions"; }, {}, never, never>;
|
|
39
37
|
}
|
|
@@ -12,6 +12,10 @@ export declare class ColumnDescriptor<T, TT> {
|
|
|
12
12
|
private _isSortEnabled;
|
|
13
13
|
private _filterDescriptor?;
|
|
14
14
|
private _displayFormat?;
|
|
15
|
+
private _headerClassName;
|
|
16
|
+
private _className;
|
|
17
|
+
private _width;
|
|
18
|
+
private _minWidth;
|
|
15
19
|
private _enumType?;
|
|
16
20
|
private _enumTitlePath?;
|
|
17
21
|
private _enumNameAsValue;
|
|
@@ -30,6 +34,10 @@ export declare class ColumnDescriptor<T, TT> {
|
|
|
30
34
|
get displayFormat(): string | undefined;
|
|
31
35
|
get table(): TableDescriptor<TT>;
|
|
32
36
|
get property(): string;
|
|
37
|
+
get headerClassName(): string;
|
|
38
|
+
get className(): string;
|
|
39
|
+
get width(): number | null;
|
|
40
|
+
get minWidth(): number | null;
|
|
33
41
|
get enumType(): EnumType | undefined;
|
|
34
42
|
get enumTitlePath(): string | null | undefined;
|
|
35
43
|
get enumNameAsValue(): boolean;
|
|
@@ -45,6 +53,8 @@ export declare class ColumnDescriptor<T, TT> {
|
|
|
45
53
|
asBoolean(yes?: string, no?: string, asIcon?: boolean): this;
|
|
46
54
|
asEnum(enumType: EnumType, nameAsValue?: boolean, titlePath?: string | null): this;
|
|
47
55
|
asCustomComponent(customComponentType: Type<IColumnValueComponent<TT>>): this;
|
|
56
|
+
withClassName(className?: string, headerClassName?: string): this;
|
|
57
|
+
withWidth(width?: number, minWidth?: number): this;
|
|
48
58
|
withObjectProperty<MT>(modelType: ClassType<MT>, titleProperty?: string): this;
|
|
49
59
|
withTitle(title: string): this;
|
|
50
60
|
withJsonPath(path: string): this;
|
|
@@ -16,8 +16,12 @@ export declare class TableDescriptor<T> {
|
|
|
16
16
|
private _hasDefaultSort;
|
|
17
17
|
private _defaultSortProperty;
|
|
18
18
|
private _defaultSortAsc;
|
|
19
|
-
private
|
|
20
|
-
private
|
|
19
|
+
private _className;
|
|
20
|
+
private _size;
|
|
21
|
+
private _tableFullHeightOffset?;
|
|
22
|
+
private _rowHeight?;
|
|
23
|
+
private _hasHover;
|
|
24
|
+
private _hasGridlines;
|
|
21
25
|
constructor(modelType: ClassType<T>, idProperty?: string, titleProperty?: string);
|
|
22
26
|
get filterDisplay(): TableDescriptor.FilterDisplayEnum;
|
|
23
27
|
get paginationMode(): TableDescriptor.PaginationModeEnum;
|
|
@@ -30,9 +34,13 @@ export declare class TableDescriptor<T> {
|
|
|
30
34
|
get hasDefaultSort(): boolean;
|
|
31
35
|
get defaultSortProperty(): string[];
|
|
32
36
|
get defaultSortAsc(): boolean[];
|
|
33
|
-
get rowHeight(): number;
|
|
34
|
-
get tableFullHeightOffset(): number;
|
|
35
37
|
get model(): ModelDescriptor<T>;
|
|
38
|
+
get className(): string;
|
|
39
|
+
get size(): TableDescriptor.SizeEnum;
|
|
40
|
+
get tableFullHeightOffset(): number | undefined;
|
|
41
|
+
get rowHeight(): number | undefined;
|
|
42
|
+
get hasHover(): boolean;
|
|
43
|
+
get hasGridlines(): boolean;
|
|
36
44
|
addColumnDescriptor<CT>(column: ColumnDescriptor<CT, T>): TableDescriptor<T>;
|
|
37
45
|
addColumn(property: string): ColumnDescriptor<string, T>;
|
|
38
46
|
addColumnNumber(property: string, displayFormat?: string): ColumnDescriptor<number, T>;
|
|
@@ -47,8 +55,12 @@ export declare class TableDescriptor<T> {
|
|
|
47
55
|
withHideHeader(hideHeader?: boolean): this;
|
|
48
56
|
withDataKeyProperty(property: string): TableDescriptor<T>;
|
|
49
57
|
withDefaultSort(property: string, asc?: boolean): TableDescriptor<T>;
|
|
50
|
-
|
|
58
|
+
withClassName(className: string): this;
|
|
59
|
+
withSize(size?: TableDescriptor.SizeEnum): this;
|
|
51
60
|
withTableFullHeightOffset(tableFullHeightOffset: number): TableDescriptor<T>;
|
|
61
|
+
withRowHeight(rowHeight: number): TableDescriptor<T>;
|
|
62
|
+
withHover(hover: boolean): this;
|
|
63
|
+
withGridlines(gridlines: boolean): this;
|
|
52
64
|
copy(): TableDescriptor<T>;
|
|
53
65
|
}
|
|
54
66
|
export declare namespace TableDescriptor {
|
|
@@ -60,4 +72,9 @@ export declare namespace TableDescriptor {
|
|
|
60
72
|
Row = 0,
|
|
61
73
|
Menu = 1
|
|
62
74
|
}
|
|
75
|
+
enum SizeEnum {
|
|
76
|
+
Small = 0,
|
|
77
|
+
Normal = 1,
|
|
78
|
+
Large = 2
|
|
79
|
+
}
|
|
63
80
|
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ActionDescriptor, TableDescriptor } from '../descriptors';
|
|
2
|
+
export declare class StylesUtil {
|
|
3
|
+
static readonly BUTTON_ROUNDED_WIDTH_XS = 26;
|
|
4
|
+
static readonly BUTTON_ROUNDED_WIDTH_SM = 28;
|
|
5
|
+
static readonly BUTTON_ROUNDED_WIDTH = 32;
|
|
6
|
+
static readonly BUTTON_ROUNDED_WIDTH_LG = 45;
|
|
7
|
+
static readonly ACTION_BUTTON_MARGIN_X = 2;
|
|
8
|
+
static readonly TABLE_CELL_PADDING_X = 8;
|
|
9
|
+
static readonly TABLE_CELL_PADDING_X_SM = 4;
|
|
10
|
+
static readonly TABLE_CELL_PADDING_X_LG = 12;
|
|
11
|
+
static calculateTableColumnActionWidth(table: TableDescriptor<unknown>, actions: Array<ActionDescriptor<unknown>>): number;
|
|
12
|
+
static getTableCellPaddingX(table: TableDescriptor<unknown>): number;
|
|
13
|
+
static getActionButtonRoundedWidth(action: ActionDescriptor<unknown>): number;
|
|
14
|
+
}
|
package/package.json
CHANGED
|
@@ -6,4 +6,25 @@
|
|
|
6
6
|
color: $primaryTextColor;
|
|
7
7
|
}
|
|
8
8
|
}
|
|
9
|
+
|
|
10
|
+
.p-datatable-tbody > tr > td {
|
|
11
|
+
&.column-action {
|
|
12
|
+
padding-top: 0.1rem;
|
|
13
|
+
padding-bottom: 0.1rem;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
&.p-datatable-lg .p-datatable-tbody > tr > td {
|
|
18
|
+
&.column-action {
|
|
19
|
+
padding-top: 0.15rem;
|
|
20
|
+
padding-bottom: 0.15rem;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
&.p-datatable-sm .p-datatable-tbody > tr > td {
|
|
25
|
+
&.column-action {
|
|
26
|
+
padding-top: 0.05rem;
|
|
27
|
+
padding-bottom: 0.05rem;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
9
30
|
}
|
|
@@ -38,49 +38,6 @@
|
|
|
38
38
|
.p-datatable-tbody > tr > td .p-column-title {
|
|
39
39
|
display: none;
|
|
40
40
|
}
|
|
41
|
-
|
|
42
|
-
@media screen and (max-width: 960px) {
|
|
43
|
-
.p-datatable {
|
|
44
|
-
.p-datatable-thead > tr > th,
|
|
45
|
-
.p-datatable-tfoot > tr > td {
|
|
46
|
-
display: none !important;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.p-datatable-tbody > tr {
|
|
50
|
-
border-bottom: 1px solid var(--surface-d);
|
|
51
|
-
|
|
52
|
-
> td {
|
|
53
|
-
text-align: left;
|
|
54
|
-
display: block;
|
|
55
|
-
border: 0 none !important;
|
|
56
|
-
width: 100% !important;
|
|
57
|
-
float: left;
|
|
58
|
-
clear: left;
|
|
59
|
-
border: 0 none;
|
|
60
|
-
|
|
61
|
-
.p-column-title {
|
|
62
|
-
padding: 0.4rem;
|
|
63
|
-
min-width: 30%;
|
|
64
|
-
display: inline-block;
|
|
65
|
-
margin: -0.4rem 1rem -0.4rem -0.4rem;
|
|
66
|
-
font-weight: bold;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
.p-progressbar {
|
|
70
|
-
margin-top: 0.5rem;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
&:last-child {
|
|
74
|
-
text-align: center;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
&:nth-child(6) {
|
|
78
|
-
display: flex;
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
41
|
}
|
|
85
42
|
|
|
86
43
|
.p-datatable:not(.p-datatable-gridlines) {
|