@sd-angular/core 1.3.133 → 1.3.135
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/assets/scss/sd-core.scss +1 -0
- package/bundles/sd-angular-core-button.umd.js.map +1 -1
- package/bundles/sd-angular-core-button.umd.min.js.map +1 -1
- package/bundles/sd-angular-core-grid-material.umd.js +92 -43
- 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/button/sd-angular-core-button.metadata.json +1 -1
- package/button/src/lib/button.component.d.ts +1 -1
- package/esm2015/button/src/lib/button.component.js +1 -1
- package/esm2015/grid-material/src/lib/components/column-inline-filter/column-inline-filter.component.js +3 -2
- package/esm2015/grid-material/src/lib/grid-material.component.js +15 -2
- package/esm2015/grid-material/src/lib/models/grid-column.model.js +43 -19
- package/esm2015/grid-material/src/lib/models/grid-configuration.model.js +3 -3
- package/fesm2015/sd-angular-core-button.js.map +1 -1
- package/fesm2015/sd-angular-core-grid-material.js +60 -22
- package/fesm2015/sd-angular-core-grid-material.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 +1 -0
- package/grid-material/src/lib/models/grid-column.model.d.ts +2 -1
- package/grid-material/src/lib/models/grid-configuration.model.d.ts +6 -0
- package/package.json +2 -1
- package/{sd-angular-core-1.3.133.tgz → sd-angular-core-1.3.135.tgz} +0 -0
package/grid-material/src/lib/components/column-inline-filter/column-inline-filter.component.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ export declare class SdColumnInlineFilter implements OnInit {
|
|
|
5
5
|
value: any;
|
|
6
6
|
_value(value: any): void;
|
|
7
7
|
columnOperator: Record<string, SdFilterOperator>;
|
|
8
|
+
columnSymbol: string;
|
|
8
9
|
set _columnOperator(columnOperator: Record<string, SdFilterOperator>);
|
|
9
10
|
columnFilter: Record<string, any>;
|
|
10
11
|
set _columnFilter(columnFilter: Record<string, any>);
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { SdBadgeColor } from '@sd-angular/core/badge';
|
|
2
2
|
export declare type SdGridMaterialColumn<T = any> = SdGridMaterialColumnText<T> | SdGridMaterialColumnNumber<T> | SdGridMaterialBool<T> | SdGridMaterialColumnDate<T> | SdGridMaterialColumnValues<T> | SdGridMaterialColumnImage<T> | SdGridMaterialColumnChildren<T> | SdGridMaterialColumnChildrenCol<T>;
|
|
3
|
-
export declare type SdFilterOperator = 'EQUAL' | 'NOT_EQUAL' | 'CONTAIN' | 'START_WITH' | 'END_WITH' | 'GREATER_THAN' | 'LESS_THAN' | 'GREATER_OR_EQUAL' | 'LESS_OR_EQUAL';
|
|
3
|
+
export declare type SdFilterOperator = 'EQUAL' | 'NOT_EQUAL' | 'CONTAIN' | 'NOT_CONTAIN' | 'IN' | 'NOT_IN' | 'START_WITH' | 'END_WITH' | 'GREATER_THAN' | 'LESS_THAN' | 'GREATER_OR_EQUAL' | 'LESS_OR_EQUAL';
|
|
4
4
|
export declare const SdFilterOperators: {
|
|
5
5
|
value: SdFilterOperator;
|
|
6
|
+
symbol?: string;
|
|
6
7
|
display: string;
|
|
7
8
|
}[];
|
|
8
9
|
export declare type TransformFunc<T = any> = (value: any, rowData: T, args?: {
|
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
import { InjectionToken } from '@angular/core';
|
|
2
|
+
import { SdFilterOperator } from './grid-column.model';
|
|
2
3
|
export interface ISdGridMaterialConfiguration {
|
|
3
4
|
filter?: {
|
|
4
5
|
quickFilter?: boolean;
|
|
6
|
+
operator?: {
|
|
7
|
+
defaultListString?: SdFilterOperator[];
|
|
8
|
+
defaultListNumber?: SdFilterOperator[];
|
|
9
|
+
defaultListDate?: SdFilterOperator[];
|
|
10
|
+
};
|
|
5
11
|
};
|
|
6
12
|
paginate?: {
|
|
7
13
|
pageSize?: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sd-angular/core",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.135",
|
|
4
4
|
"homepage": "https://www.facebook.com/DarkP3ter",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "darkpeter",
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
"jquery": "^3.5.1",
|
|
31
31
|
"konva": "^7.2.0",
|
|
32
32
|
"material-icons": "^1.13.1",
|
|
33
|
+
"material-symbols": "^0.5.5",
|
|
33
34
|
"md5": "^2.2.1",
|
|
34
35
|
"ngx-currency": "^2.5.2",
|
|
35
36
|
"ngx-device-detector": "1.4.6",
|
|
index 61600bf..b9c3c5f 100644
|
|
|
Binary file
|