@annalib/anna-core 10.7.2 → 10.7.4
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/anna-generic-table-lib/components/anna-column-filters/anna-column-checkbox-filter/anna-column-checkbox-filter.component.mjs +2 -2
- package/esm2020/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-date-range-filter/anna-column-date-range-filter.component.mjs +2 -2
- package/esm2020/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-time-filter/anna-column-time-filter.component.mjs +42 -32
- package/esm2020/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +39 -31
- package/fesm2015/annalib-anna-core.mjs +82 -64
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +82 -64
- package/fesm2020/annalib-anna-core.mjs.map +1 -1
- package/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-time-filter/anna-column-time-filter.component.d.ts +3 -1
- package/package.json +1 -1
- package/src/lib/anna-common-scss/_filters.scss +8 -3
- package/src/lib/anna-common-scss/_generic-table-common.scss +0 -1
|
@@ -4,6 +4,7 @@ import { SortType } from '../../../../anna-core-shared-lib/models/anna-sort.mode
|
|
|
4
4
|
import { AnnaSortService } from '../../../../anna-core-shared-lib/services/anna-sort.service';
|
|
5
5
|
import { AnnaFilterService } from '../../../../anna-core-shared-lib/services/anna-filter.service';
|
|
6
6
|
import { AnnaDateTimeFormatService } from '../../../../anna-core-shared-lib/services/anna-date-time-format.service';
|
|
7
|
+
import { IGtGeneralConfig } from '../../../../anna-core-shared-lib/models/anna-non-editable-gt-models';
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
8
9
|
export declare class AnnaColumnTimeFilterComponent implements OnInit {
|
|
9
10
|
private annaSortService;
|
|
@@ -13,6 +14,7 @@ export declare class AnnaColumnTimeFilterComponent implements OnInit {
|
|
|
13
14
|
clonedTableData: any[];
|
|
14
15
|
limit: number;
|
|
15
16
|
filterTabObjects: any[];
|
|
17
|
+
gtGeneralConfig: IGtGeneralConfig;
|
|
16
18
|
filterAppliedToTable: EventEmitter<any>;
|
|
17
19
|
sortingAppliedToTable: EventEmitter<any>;
|
|
18
20
|
closeTooltip: EventEmitter<any>;
|
|
@@ -90,5 +92,5 @@ export declare class AnnaColumnTimeFilterComponent implements OnInit {
|
|
|
90
92
|
clearColumnFilter(): void;
|
|
91
93
|
storeSortTypeInTempVariable(event: SortType): void;
|
|
92
94
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnnaColumnTimeFilterComponent, never>;
|
|
93
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AnnaColumnTimeFilterComponent, "anna-core-anna-column-time-filter", never, { "tableData": "tableData"; "clonedTableData": "clonedTableData"; "limit": "limit"; "filterTabObjects": "filterTabObjects"; }, { "filterAppliedToTable": "filterAppliedToTable"; "sortingAppliedToTable": "sortingAppliedToTable"; "closeTooltip": "closeTooltip"; }, never, never, false>;
|
|
95
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AnnaColumnTimeFilterComponent, "anna-core-anna-column-time-filter", never, { "tableData": "tableData"; "clonedTableData": "clonedTableData"; "limit": "limit"; "filterTabObjects": "filterTabObjects"; "gtGeneralConfig": "gtGeneralConfig"; }, { "filterAppliedToTable": "filterAppliedToTable"; "sortingAppliedToTable": "sortingAppliedToTable"; "closeTooltip": "closeTooltip"; }, never, never, false>;
|
|
94
96
|
}
|
package/package.json
CHANGED
|
@@ -368,15 +368,20 @@ section.min-maxContainer {
|
|
|
368
368
|
width: 9px;
|
|
369
369
|
height: 18px;
|
|
370
370
|
margin-right: $fs-19;
|
|
371
|
-
position: relative;
|
|
372
|
-
left: -9px;
|
|
373
|
-
top: -11px;
|
|
374
371
|
i {
|
|
375
372
|
color: black;
|
|
376
373
|
cursor: pointer;
|
|
377
374
|
max-height: 9px;
|
|
378
375
|
font-size: 25px;
|
|
379
376
|
width: 10px;
|
|
377
|
+
&:before{
|
|
378
|
+
width: 0;
|
|
379
|
+
height: 0;
|
|
380
|
+
pointer-events: none;
|
|
381
|
+
position: relative;
|
|
382
|
+
left: -9px;
|
|
383
|
+
top: -11px;
|
|
384
|
+
}
|
|
380
385
|
}
|
|
381
386
|
// i.downward {
|
|
382
387
|
// transform: rotate(180deg);
|