@sd-angular/core 1.3.204 → 1.3.206
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/sd-angular-core-grid-material.umd.js +8 -1
- package/bundles/sd-angular-core-grid-material.umd.js.map +1 -1
- package/bundles/sd-angular-core-grid-material.umd.min.js +2 -2
- package/bundles/sd-angular-core-grid-material.umd.min.js.map +1 -1
- package/bundles/sd-angular-core-table.umd.js +91 -75
- package/bundles/sd-angular-core-table.umd.js.map +1 -1
- package/bundles/sd-angular-core-table.umd.min.js +1 -1
- package/bundles/sd-angular-core-table.umd.min.js.map +1 -1
- package/esm2015/grid-material/src/lib/components/column-inline-filter/column-inline-filter.component.js +4 -1
- package/esm2015/grid-material/src/lib/grid-material.component.js +6 -2
- package/esm2015/grid-material/src/lib/services/grid-filter/grid-filter.model.js +1 -1
- package/esm2015/table/src/lib/table.component.js +17 -6
- package/fesm2015/sd-angular-core-grid-material.js +8 -1
- package/fesm2015/sd-angular-core-grid-material.js.map +1 -1
- package/fesm2015/sd-angular-core-table.js +16 -5
- package/fesm2015/sd-angular-core-table.js.map +1 -1
- package/grid-material/sd-angular-core-grid-material.metadata.json +1 -1
- package/grid-material/src/lib/components/column-inline-filter/column-inline-filter.component.d.ts +2 -1
- package/grid-material/src/lib/grid-material.component.d.ts +2 -1
- package/grid-material/src/lib/services/grid-filter/grid-filter.model.d.ts +2 -1
- package/package.json +1 -1
- package/{sd-angular-core-1.3.204.tgz → sd-angular-core-1.3.206.tgz} +0 -0
package/grid-material/src/lib/components/column-inline-filter/column-inline-filter.component.d.ts
CHANGED
|
@@ -7,7 +7,8 @@ export declare class SdColumnInlineFilter implements OnInit {
|
|
|
7
7
|
_value(value: any): void;
|
|
8
8
|
inlineSymbol: string;
|
|
9
9
|
set _inlineOperator(inlineOperator: SdFilterOperator);
|
|
10
|
-
inlineOperatorChange: EventEmitter<
|
|
10
|
+
inlineOperatorChange: EventEmitter<SdFilterOperator>;
|
|
11
|
+
operatorChange: EventEmitter<SdFilterOperator>;
|
|
11
12
|
columnFilter: Record<string, any>;
|
|
12
13
|
set _columnFilter(columnFilter: Record<string, any>);
|
|
13
14
|
operators: {
|
|
@@ -7,7 +7,7 @@ import { ISdGridMaterialConfiguration } from './models/grid-configuration.model'
|
|
|
7
7
|
import { Observable } from 'rxjs';
|
|
8
8
|
import { SdNotifyService } from '@sd-angular/core/notify';
|
|
9
9
|
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
10
|
-
import { SdFilterOperator } from './models/grid-column.model';
|
|
10
|
+
import { SdFilterOperator, SdGridMaterialColumn } from './models/grid-column.model';
|
|
11
11
|
import { SdMaterialCellDefDirective } from './directives/sd-material-cell-def.directive';
|
|
12
12
|
import { SdGridFilter } from './components/grid-filter/grid-filter.component';
|
|
13
13
|
import { SdMaterialFilterDefDirective } from './directives/sd-material-filter-def.directive';
|
|
@@ -107,5 +107,6 @@ export declare class SdGridMaterial<T = any> implements OnInit, AfterViewInit, O
|
|
|
107
107
|
get localItems(): T[];
|
|
108
108
|
get localGridItems(): T[];
|
|
109
109
|
detectChanges: () => void;
|
|
110
|
+
onOperatorChange: (column: SdGridMaterialColumn, operator: SdFilterOperator) => void;
|
|
110
111
|
get isEditing(): boolean;
|
|
111
112
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
|
-
import { SdFilterOperator } from '../../models/grid-column.model';
|
|
2
|
+
import { SdFilterOperator, SdGridMaterialColumn } from '../../models/grid-column.model';
|
|
3
3
|
export declare class SdGridMaterialQuickFilter {
|
|
4
4
|
code: string;
|
|
5
5
|
columnFilter: {
|
|
@@ -43,6 +43,7 @@ export interface SdGridMaterialFilterOption {
|
|
|
43
43
|
inlineColumn?: boolean;
|
|
44
44
|
sorts?: string[];
|
|
45
45
|
enableCollapse?: boolean;
|
|
46
|
+
operatorChange?: (column?: SdGridMaterialColumn, operator?: SdFilterOperator) => void;
|
|
46
47
|
}
|
|
47
48
|
export declare type SdGridMaterialExternalFilter = TextFilter | DateFilter | DateTimeFilter | DateRangeFilter | NumberFilter | ValuesFilter | BoolFilter;
|
|
48
49
|
interface BaseFilter {
|
package/package.json
CHANGED
|
index 951786c..5e03bde 100644
|
|
|
Binary file
|