@mediusinc/mng-commons 0.17.6 → 0.17.7
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/components/form/formly/fields/formly-field-table-dialog-multiselect/formly-field-table-dialog-multiselect.component.mjs +3 -3
- package/esm2020/lib/components/tableview/table/table.component.mjs +15 -5
- package/esm2020/lib/descriptors/table.descriptor.mjs +2 -3
- package/fesm2015/mediusinc-mng-commons.mjs +19 -10
- package/fesm2015/mediusinc-mng-commons.mjs.map +1 -1
- package/fesm2020/mediusinc-mng-commons.mjs +16 -7
- package/fesm2020/mediusinc-mng-commons.mjs.map +1 -1
- package/lib/descriptors/table.descriptor.d.ts +2 -2
- package/package.json +1 -1
- package/scss/mng-overrides/_theme_datatable.scss +31 -3
- package/scss/mng-overrides/_theme_dialog.scss +2 -1
- package/version-info.json +5 -5
|
@@ -11,7 +11,7 @@ export declare class TableDescriptor<T> {
|
|
|
11
11
|
private readonly _model;
|
|
12
12
|
private _modelType;
|
|
13
13
|
private _filterDisplay;
|
|
14
|
-
private _paginationMode
|
|
14
|
+
private _paginationMode?;
|
|
15
15
|
private _rowsPerPageOptions;
|
|
16
16
|
private _defaultNumRows;
|
|
17
17
|
protected _columns: Array<ColumnDescriptor<any, T>>;
|
|
@@ -48,7 +48,7 @@ export declare class TableDescriptor<T> {
|
|
|
48
48
|
*/
|
|
49
49
|
static fromModelWithAttributes<T>(modelType: ClassType<T>, attributes: TableviewAttributeDef[], idProperty?: string, titleProperty?: string): TableDescriptor<T>;
|
|
50
50
|
get filterDisplay(): TableFilterDisplayEnum;
|
|
51
|
-
get paginationMode(): TablePaginationModeEnum;
|
|
51
|
+
get paginationMode(): TablePaginationModeEnum | undefined;
|
|
52
52
|
get rowsPerPageOptions(): number[];
|
|
53
53
|
get defaultNumRows(): number;
|
|
54
54
|
get columns(): ColumnDescriptor<any, T>[];
|
package/package.json
CHANGED
|
@@ -103,10 +103,38 @@
|
|
|
103
103
|
|
|
104
104
|
// override for background color
|
|
105
105
|
.p-radiobutton .p-radiobutton-box {
|
|
106
|
-
background-color:
|
|
106
|
+
background-color: $primaryTextColor;
|
|
107
|
+
|
|
108
|
+
.p-radiobutton-icon {
|
|
109
|
+
background-color: $primaryColor;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
&.p-highlight {
|
|
113
|
+
&:not(.p-disabled):hover {
|
|
114
|
+
.p-radiobutton-icon {
|
|
115
|
+
background-color: $primaryTextColor;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
107
119
|
}
|
|
108
120
|
|
|
109
|
-
.p-checkbox
|
|
110
|
-
|
|
121
|
+
.p-checkbox {
|
|
122
|
+
.p-checkbox-box {
|
|
123
|
+
background-color: $primaryTextColor;
|
|
124
|
+
|
|
125
|
+
.p-checkbox-icon {
|
|
126
|
+
color: $primaryColor;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
&:not(.p-checkbox-disabled) {
|
|
131
|
+
.p-checkbox-box {
|
|
132
|
+
&.p-highlight:hover {
|
|
133
|
+
.p-checkbox-icon {
|
|
134
|
+
color: $primaryTextColor;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}
|
|
111
139
|
}
|
|
112
140
|
}
|
|
@@ -15,8 +15,9 @@
|
|
|
15
15
|
overflow-y: hidden;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
-
.
|
|
18
|
+
.formly-field-table-multiselect-dialog-form-container {
|
|
19
19
|
padding: $mngDialogContentPadding;
|
|
20
|
+
overflow: auto;
|
|
20
21
|
}
|
|
21
22
|
|
|
22
23
|
.mng-formly-field-table-multiselect-dialog-footer {
|
package/version-info.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mediusinc/mng-commons",
|
|
3
|
-
"version": "0.17.
|
|
4
|
-
"tag": "v0.17.
|
|
3
|
+
"version": "0.17.7",
|
|
4
|
+
"tag": "v0.17.7",
|
|
5
5
|
"distance": 0,
|
|
6
|
-
"hash": "
|
|
6
|
+
"hash": "b95c9806",
|
|
7
7
|
"dirty": false,
|
|
8
|
-
"semver": "0.17.
|
|
9
|
-
"raw": "v0.17.
|
|
8
|
+
"semver": "0.17.7",
|
|
9
|
+
"raw": "v0.17.7-b95c9806"
|
|
10
10
|
}
|