@meshmakers/octo-ui 2.0.2304-14001 → 2.1.3-0
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 +24 -27
- package/esm2020/lib/list-element/globalTypes.mjs +45 -45
- package/esm2020/lib/list-element/graphQLDataSource.mjs +23 -23
- package/esm2020/lib/list-element/list-element.module.mjs +18 -18
- package/esm2020/lib/list-element/octoListNavigation.mjs +88 -78
- package/esm2020/meshmakers-octo-ui.mjs +4 -4
- package/esm2020/public-api.mjs +8 -8
- package/fesm2015/meshmakers-octo-ui.mjs +160 -150
- package/fesm2015/meshmakers-octo-ui.mjs.map +1 -1
- package/fesm2020/meshmakers-octo-ui.mjs +160 -150
- package/fesm2020/meshmakers-octo-ui.mjs.map +1 -1
- package/index.d.ts +5 -5
- package/lib/list-element/globalTypes.d.ts +63 -63
- package/lib/list-element/graphQLDataSource.d.ts +9 -9
- package/lib/list-element/list-element.module.d.ts +7 -7
- package/lib/list-element/octoListNavigation.d.ts +31 -29
- package/package.json +8 -8
- package/public-api.d.ts +4 -4
|
@@ -1,29 +1,31 @@
|
|
|
1
|
-
import { MatPaginator } from "@angular/material/paginator";
|
|
2
|
-
import { MatSort, SortDirection } from "@angular/material/sort";
|
|
3
|
-
import { ElementRef, EventEmitter } from "@angular/core";
|
|
4
|
-
import { SearchFilterDto, SearchFilterTypesDto, SortDto } from "./globalTypes";
|
|
5
|
-
export declare class OctoListNavigationDataInfo {
|
|
6
|
-
skip: number;
|
|
7
|
-
take: number;
|
|
8
|
-
searchFilter?: SearchFilterDto;
|
|
9
|
-
sort?: SortDto[];
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
private
|
|
20
|
-
private
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
1
|
+
import { MatPaginator } from "@angular/material/paginator";
|
|
2
|
+
import { MatSort, SortDirection } from "@angular/material/sort";
|
|
3
|
+
import { ElementRef, EventEmitter } from "@angular/core";
|
|
4
|
+
import { SearchFilterDto, SearchFilterTypesDto, SortDto } from "./globalTypes";
|
|
5
|
+
export declare class OctoListNavigationDataInfo {
|
|
6
|
+
skip: number;
|
|
7
|
+
take: number;
|
|
8
|
+
searchFilter?: SearchFilterDto;
|
|
9
|
+
sort?: SortDto[];
|
|
10
|
+
constructor();
|
|
11
|
+
}
|
|
12
|
+
export declare class OctoListNavigationOptions {
|
|
13
|
+
language: string | null;
|
|
14
|
+
searchFilterType?: SearchFilterTypesDto;
|
|
15
|
+
searchFilterAttributeNames?: string[];
|
|
16
|
+
constructor();
|
|
17
|
+
}
|
|
18
|
+
export declare class OctoListNavigation {
|
|
19
|
+
private paginator;
|
|
20
|
+
private sort;
|
|
21
|
+
private searchBox;
|
|
22
|
+
private octoOptions;
|
|
23
|
+
loadDataRequest: EventEmitter<OctoListNavigationDataInfo>;
|
|
24
|
+
lastSortDirection: SortDirection | null;
|
|
25
|
+
lastSortField: string | null;
|
|
26
|
+
lastSearchText: string | null;
|
|
27
|
+
constructor(paginator: MatPaginator, sort: MatSort, searchBox: ElementRef, octoOptions: OctoListNavigationOptions);
|
|
28
|
+
get loadDataInfo(): OctoListNavigationDataInfo;
|
|
29
|
+
init(): void;
|
|
30
|
+
private loadData;
|
|
31
|
+
}
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meshmakers/octo-ui",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"dependencies": {
|
|
5
|
-
"tslib": "^2.5.0"
|
|
6
|
-
},
|
|
3
|
+
"version": "2.1.3-0",
|
|
7
4
|
"peerDependencies": {
|
|
8
|
-
"@angular/common": "^15.2.
|
|
9
|
-
"@angular/core": "^15.2.
|
|
5
|
+
"@angular/common": "^15.2.0",
|
|
6
|
+
"@angular/core": "^15.2.0"
|
|
10
7
|
},
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"tslib": "^2.3.0"
|
|
10
|
+
},
|
|
11
|
+
"sideEffects": false,
|
|
11
12
|
"module": "fesm2015/meshmakers-octo-ui.mjs",
|
|
12
13
|
"es2020": "fesm2020/meshmakers-octo-ui.mjs",
|
|
13
14
|
"esm2020": "esm2020/meshmakers-octo-ui.mjs",
|
|
@@ -26,6 +27,5 @@
|
|
|
26
27
|
"node": "./fesm2015/meshmakers-octo-ui.mjs",
|
|
27
28
|
"default": "./fesm2020/meshmakers-octo-ui.mjs"
|
|
28
29
|
}
|
|
29
|
-
}
|
|
30
|
-
"sideEffects": false
|
|
30
|
+
}
|
|
31
31
|
}
|
package/public-api.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from './lib/list-element/list-element.module';
|
|
2
|
-
export * from './lib/list-element/octoListNavigation';
|
|
3
|
-
export * from './lib/list-element/graphQLDataSource';
|
|
4
|
-
export * from './lib/list-element/globalTypes';
|
|
1
|
+
export * from './lib/list-element/list-element.module';
|
|
2
|
+
export * from './lib/list-element/octoListNavigation';
|
|
3
|
+
export * from './lib/list-element/graphQLDataSource';
|
|
4
|
+
export * from './lib/list-element/globalTypes';
|