@webilix/ngx-table-m3 0.0.14 → 0.0.16
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/README.md +0 -0
- package/fesm2022/webilix-ngx-table-m3.mjs +94 -72
- package/fesm2022/webilix-ngx-table-m3.mjs.map +1 -1
- package/lib/filters/multi-select/filter-multi-select.component.d.ts +9 -2
- package/lib/filters/multi-select/filter-multi-select.interface.d.ts +1 -0
- package/lib/filters/select/filter-select.component.d.ts +9 -2
- package/lib/filters/select/filter-select.interface.d.ts +1 -0
- package/ngx-table-m3.css +0 -0
- package/package.json +6 -6
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
1
2
|
import { IViewConfig } from '../../views';
|
|
2
3
|
import { IFilterMultiSelect } from './filter-multi-select.interface';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class FilterMultiSelectComponent {
|
|
5
|
+
export declare class FilterMultiSelectComponent implements OnInit {
|
|
5
6
|
private className;
|
|
6
7
|
data: {
|
|
7
8
|
filter: IFilterMultiSelect;
|
|
@@ -9,7 +10,13 @@ export declare class FilterMultiSelectComponent {
|
|
|
9
10
|
};
|
|
10
11
|
value?: string[];
|
|
11
12
|
onChange: (value?: string[]) => void;
|
|
12
|
-
searchQuery
|
|
13
|
+
private searchQuery;
|
|
14
|
+
options: {
|
|
15
|
+
readonly id: string;
|
|
16
|
+
readonly title: string;
|
|
17
|
+
}[];
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
setOptions(query: string): void;
|
|
13
20
|
updateValue(id: string, checked: boolean): void;
|
|
14
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilterMultiSelectComponent, never>;
|
|
15
22
|
static ɵcmp: i0.ɵɵComponentDeclaration<FilterMultiSelectComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
@@ -6,6 +6,7 @@ export interface IFilterMultiSelect {
|
|
|
6
6
|
readonly title: string;
|
|
7
7
|
}[];
|
|
8
8
|
readonly english?: boolean;
|
|
9
|
+
readonly maxItem?: number;
|
|
9
10
|
readonly toParam?: (value: string[]) => string;
|
|
10
11
|
}
|
|
11
12
|
export declare class FilterMultiSelectMethods<T> extends FilterMethods<IFilterMultiSelect, string[]> {
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
1
2
|
import { IViewConfig } from '../../views';
|
|
2
3
|
import { IFilterSelect } from './filter-select.interface';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class FilterSelectComponent {
|
|
5
|
+
export declare class FilterSelectComponent implements OnInit {
|
|
5
6
|
private className;
|
|
6
7
|
data: {
|
|
7
8
|
filter: IFilterSelect;
|
|
@@ -9,7 +10,13 @@ export declare class FilterSelectComponent {
|
|
|
9
10
|
};
|
|
10
11
|
value?: string;
|
|
11
12
|
onChange: (value?: string) => void;
|
|
12
|
-
searchQuery
|
|
13
|
+
private searchQuery;
|
|
14
|
+
options: {
|
|
15
|
+
readonly id: string;
|
|
16
|
+
readonly title: string;
|
|
17
|
+
}[];
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
setOptions(query: string): void;
|
|
13
20
|
updateValue(id: string): void;
|
|
14
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilterSelectComponent, never>;
|
|
15
22
|
static ɵcmp: i0.ɵɵComponentDeclaration<FilterSelectComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
@@ -6,6 +6,7 @@ export interface IFilterSelect {
|
|
|
6
6
|
readonly title: string;
|
|
7
7
|
}[];
|
|
8
8
|
readonly english?: boolean;
|
|
9
|
+
readonly maxItem?: number;
|
|
9
10
|
readonly toParam?: (value: string) => string;
|
|
10
11
|
}
|
|
11
12
|
export declare class FilterSelectMethods<T> extends FilterMethods<IFilterSelect, string> {
|
package/ngx-table-m3.css
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webilix/ngx-table-m3",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.16",
|
|
4
4
|
"author": "Ali Amirnezhad",
|
|
5
5
|
"description": "Responsive table view component for Angular and Material 3",
|
|
6
6
|
"repository": {
|
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
},
|
|
22
22
|
"homepage": "https://github.com/webilix/ngx-table-m3#readme",
|
|
23
23
|
"peerDependencies": {
|
|
24
|
-
"@angular/common": ">=19.
|
|
25
|
-
"@angular/core": ">=19.
|
|
26
|
-
"@angular/material": ">=19.
|
|
24
|
+
"@angular/common": ">=19.2.4",
|
|
25
|
+
"@angular/core": ">=19.2.4",
|
|
26
|
+
"@angular/material": ">=19.2.7",
|
|
27
27
|
"@webilix/helper-library": ">=6.0.2",
|
|
28
28
|
"@webilix/jalali-date-time": ">=2.0.5",
|
|
29
|
-
"@webilix/ngx-calendar-m3": ">=0.0.
|
|
30
|
-
"@webilix/ngx-helper-m3": ">=0.0.
|
|
29
|
+
"@webilix/ngx-calendar-m3": ">=0.0.11",
|
|
30
|
+
"@webilix/ngx-helper-m3": ">=0.0.24",
|
|
31
31
|
"ngx-mask": ">=19.0.6"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|