tycho-components 0.0.17-SNAPSHOT → 0.0.17-SNAPSHOT-2
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.
|
@@ -10,9 +10,6 @@ export const EMPTY_GRID_PAGEABLE = {
|
|
|
10
10
|
seed: 1,
|
|
11
11
|
filter: {},
|
|
12
12
|
};
|
|
13
|
-
export const comparePageable = (pageable, request) => pageable.page === request.page &&
|
|
14
|
-
pageable.size === request.size &&
|
|
15
|
-
pageable.sort === request.sort;
|
|
16
13
|
export function convertPageable(pageable) {
|
|
17
14
|
const request = {
|
|
18
15
|
page: pageable.page,
|
package/dist/index.d.ts
CHANGED
|
@@ -10,6 +10,8 @@ export { default as AppPagination } from './AppPagination';
|
|
|
10
10
|
export { default as AppPicture } from './AppPicture';
|
|
11
11
|
export { default as AppPlaceholder } from './AppPlaceholder';
|
|
12
12
|
export { default as AppSelect } from './AppSelect';
|
|
13
|
+
export { default as AppTable } from './AppTable';
|
|
14
|
+
export { default as AppListTable } from './AppTable';
|
|
13
15
|
export { default as AppToast } from './AppToast';
|
|
14
16
|
export { default as CommentComponent } from './Comments';
|
|
15
17
|
export { default as Header } from './Header';
|
|
@@ -33,6 +35,8 @@ export { default as ImageUtils } from './functions/ImageUtils';
|
|
|
33
35
|
export { default as SecurityUtils } from './functions/SecurityUtils';
|
|
34
36
|
export { default as UsabilityUtils } from './functions/UsabilityUtils';
|
|
35
37
|
export type { AppEditableField } from './AppEditable/AppEditableField';
|
|
38
|
+
export type { AppPage } from './AppTable/types/AppPage';
|
|
39
|
+
export type { AppPageable } from './AppTable/types/AppPageable';
|
|
36
40
|
export type { Comment } from './Comments/types/Comment';
|
|
37
41
|
export type { Corpus } from './configs/Corpus';
|
|
38
42
|
export type { CorpusImage } from './configs/CorpusImage';
|
|
@@ -44,3 +48,5 @@ export type { KeyboardLayout } from './VirtualKeyboard/KeyboardCustomLayout';
|
|
|
44
48
|
export type { UploadedFile } from './AppDropzone/UploadedFile';
|
|
45
49
|
export type { User } from './configs/User';
|
|
46
50
|
export type { UserStatus } from './configs/User';
|
|
51
|
+
export { convertPageable, EMPTY_PAGEABLE, EMPTY_GRID_PAGEABLE, } from './AppTable/types/AppPageable';
|
|
52
|
+
export { EMPTY_PAGE, EMPTY_GRID_PAGE } from './AppTable/types/AppPage';
|
package/dist/index.js
CHANGED
|
@@ -10,6 +10,8 @@ export { default as AppPagination } from './AppPagination';
|
|
|
10
10
|
export { default as AppPicture } from './AppPicture';
|
|
11
11
|
export { default as AppPlaceholder } from './AppPlaceholder';
|
|
12
12
|
export { default as AppSelect } from './AppSelect';
|
|
13
|
+
export { default as AppTable } from './AppTable';
|
|
14
|
+
export { default as AppListTable } from './AppTable';
|
|
13
15
|
export { default as AppToast } from './AppToast';
|
|
14
16
|
export { default as CommentComponent } from './Comments';
|
|
15
17
|
export { default as Header } from './Header';
|
|
@@ -32,3 +34,5 @@ export { default as FormUtils } from './functions/FormUtils';
|
|
|
32
34
|
export { default as ImageUtils } from './functions/ImageUtils';
|
|
33
35
|
export { default as SecurityUtils } from './functions/SecurityUtils';
|
|
34
36
|
export { default as UsabilityUtils } from './functions/UsabilityUtils';
|
|
37
|
+
export { convertPageable, EMPTY_PAGEABLE, EMPTY_GRID_PAGEABLE, } from './AppTable/types/AppPageable';
|
|
38
|
+
export { EMPTY_PAGE, EMPTY_GRID_PAGE } from './AppTable/types/AppPage';
|