ontimize-web-ngx 15.3.3 → 15.3.5
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/input/search-input/o-search-input.component.mjs +3 -3
- package/esm2020/lib/components/table/extensions/dialog/filter-by-column/o-table-filter-by-column-data-dialog.component.mjs +9 -8
- package/esm2020/lib/components/table/o-table.component.mjs +13 -7
- package/fesm2015/ontimize-web-ngx.mjs +21 -14
- package/fesm2015/ontimize-web-ngx.mjs.map +1 -1
- package/fesm2020/ontimize-web-ngx.mjs +21 -14
- package/fesm2020/ontimize-web-ngx.mjs.map +1 -1
- package/lib/components/table/extensions/dialog/filter-by-column/o-table-filter-by-column-data-dialog.component.d.ts +4 -4
- package/lib/components/table/o-table.component.d.ts +2 -0
- package/package.json +1 -1
- package/theme.scss +8 -3
|
@@ -3,15 +3,15 @@ import { UntypedFormControl } from '@angular/forms';
|
|
|
3
3
|
import { MatCheckboxChange } from '@angular/material/checkbox';
|
|
4
4
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
5
5
|
import { MatSelectionList, MatSelectionListChange } from '@angular/material/list';
|
|
6
|
+
import { MatRadioChange } from '@angular/material/radio';
|
|
6
7
|
import { MatSlideToggleChange } from '@angular/material/slide-toggle';
|
|
7
8
|
import { Observable } from 'rxjs';
|
|
9
|
+
import { ServiceResponse } from '../../../../../interfaces/service-response.interface';
|
|
8
10
|
import { OColumnValueFilter } from '../../../../../types/table/o-column-value-filter.type';
|
|
9
11
|
import { TableFilterByColumnData, TableFilterByColumnDialogResult } from '../../../../../types/table/o-table-filter-by-column-data.type';
|
|
10
|
-
import type { OColumn } from '../../../column/o-column.class';
|
|
11
|
-
import { OFilterColumn } from '../../header/table-columns-filter/columns/o-table-columns-filter-column.component';
|
|
12
|
-
import { MatRadioChange } from '@angular/material/radio';
|
|
13
|
-
import { ServiceResponse } from '../../../../../interfaces/service-response.interface';
|
|
14
12
|
import { OTableComponent } from '../../../o-table.component';
|
|
13
|
+
import { OFilterColumn } from '../../header/table-columns-filter/columns/o-table-columns-filter-column.component';
|
|
14
|
+
import type { OColumn } from '../../../column/o-column.class';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
export declare class OTableFilterByColumnDataDialogComponent implements AfterViewInit {
|
|
17
17
|
dialogRef: MatDialogRef<OTableFilterByColumnDataDialogComponent>;
|
|
@@ -85,6 +85,8 @@ export declare class OTableComponent extends AbstractOServiceComponent<OTableCom
|
|
|
85
85
|
rowIndex: number;
|
|
86
86
|
event: MouseEvent;
|
|
87
87
|
}>;
|
|
88
|
+
protected clickSubjectSubscription: Subscription;
|
|
89
|
+
protected dbClickSubjectSubscription: Subscription;
|
|
88
90
|
set oMatSort(_sort: OMatSort);
|
|
89
91
|
virtualScrollViewport: CdkVirtualScrollViewport;
|
|
90
92
|
oTableGlobalConfig: OTableGlobalConfig;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ontimize-web-ngx",
|
|
3
3
|
"homepage": "https://github.com/OntimizeWeb/ontimize-web-ngx#readme",
|
|
4
|
-
"version": "15.3.
|
|
4
|
+
"version": "15.3.5",
|
|
5
5
|
"description": "Ontimize Web framework using Angular 15",
|
|
6
6
|
"bugs": "https://github.com/OntimizeWeb/ontimize-web-ngx/issues",
|
|
7
7
|
"author": "Imatia S.L.",
|
package/theme.scss
CHANGED
|
@@ -504,9 +504,13 @@
|
|
|
504
504
|
color: $underline-color;
|
|
505
505
|
}
|
|
506
506
|
|
|
507
|
-
.mdc-
|
|
508
|
-
|
|
507
|
+
.mdc-text-field {
|
|
508
|
+
.mdc-line-ripple::after,
|
|
509
|
+
.mdc-line-ripple::before {
|
|
510
|
+
background-color: $underline-color;
|
|
511
|
+
}
|
|
509
512
|
}
|
|
513
|
+
|
|
510
514
|
}
|
|
511
515
|
|
|
512
516
|
&.mat-form-field-invalid .mat-mdc-form-field-icon-suffix .mat-icon {
|
|
@@ -556,7 +560,8 @@
|
|
|
556
560
|
}
|
|
557
561
|
}
|
|
558
562
|
}
|
|
559
|
-
}
|
|
563
|
+
}
|
|
564
|
+
@mixin o-list-theme($theme-or-color-config) {
|
|
560
565
|
$theme: map.get($theme-or-color-config, color);
|
|
561
566
|
$foreground: map.get($theme, foreground);
|
|
562
567
|
$background: map.get($theme, background);
|