tycho-components 0.0.15-SNAPSHOT-1 → 0.0.15-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.
@@ -44,4 +44,9 @@ export declare const EMPTY_CORPUS: {
44
44
  active: boolean;
45
45
  opened: boolean;
46
46
  keyboardLayout: string;
47
+ papers: never[];
48
+ descriptions: {};
49
+ featuredDescriptions: {};
50
+ details: {};
51
+ github: {};
47
52
  };
@@ -7,4 +7,9 @@ export const EMPTY_CORPUS = {
7
7
  active: true,
8
8
  opened: false,
9
9
  keyboardLayout: '',
10
+ papers: [],
11
+ descriptions: {},
12
+ featuredDescriptions: {},
13
+ details: {},
14
+ github: {},
10
15
  };
@@ -1,8 +1,8 @@
1
1
  export type CorpusImage = {
2
- type?: CorpusImageGallery;
2
+ type?: CorpusImageType;
3
3
  path: string;
4
4
  };
5
- export type CorpusImageGallery = 'COVER' | 'BANNER' | 'SLIDESHOW';
5
+ export type CorpusImageType = 'COVER' | 'BANNER' | 'SLIDESHOW';
6
6
  export declare const CorpusImageTypeNames: {
7
7
  COVER: string;
8
8
  BANNER: string;
@@ -11,6 +11,11 @@ export declare const useCorpusUtils: () => {
11
11
  active: boolean;
12
12
  opened: boolean;
13
13
  keyboardLayout: string;
14
+ papers: never[];
15
+ descriptions: {};
16
+ featuredDescriptions: {};
17
+ details: {};
18
+ github: {};
14
19
  };
15
20
  setCorpus: (thisCorpus: Corpus | undefined) => void;
16
21
  hasCorpus: () => boolean;
package/dist/index.d.ts CHANGED
@@ -21,6 +21,7 @@ export { validateFormField } from './AppEditable/FormField';
21
21
  export { convertEnum, convertList } from './AppEditable/FormFieldOption';
22
22
  export { commonResources } from './configs/Localization';
23
23
  export { KeyboardCustomLayouts } from './VirtualKeyboard/KeyboardCustomLayout';
24
+ export { CorpusImageTypeNames } from './configs/CorpusImage';
24
25
  export { UserStatusNames } from './configs/User';
25
26
  export { default as DateUtils } from './functions/DateUtils';
26
27
  export { default as FormUtils } from './functions/FormUtils';
@@ -31,6 +32,7 @@ export type { AppEditableField } from './AppEditable/AppEditableField';
31
32
  export type { Comment } from './Comments/types/Comment';
32
33
  export type { Corpus } from './configs/Corpus';
33
34
  export type { CorpusImage } from './configs/CorpusImage';
35
+ export type { CorpusImageType } from './configs/CorpusImage';
34
36
  export type { Github } from './configs/Corpus';
35
37
  export type { FormFieldOption } from './AppEditable/FormFieldOption';
36
38
  export type { FieldOperations, FormField } from './AppEditable/FormField';
package/dist/index.js CHANGED
@@ -21,6 +21,7 @@ export { validateFormField } from './AppEditable/FormField';
21
21
  export { convertEnum, convertList } from './AppEditable/FormFieldOption';
22
22
  export { commonResources } from './configs/Localization';
23
23
  export { KeyboardCustomLayouts } from './VirtualKeyboard/KeyboardCustomLayout';
24
+ export { CorpusImageTypeNames } from './configs/CorpusImage';
24
25
  export { UserStatusNames } from './configs/User';
25
26
  export { default as DateUtils } from './functions/DateUtils';
26
27
  export { default as FormUtils } from './functions/FormUtils';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tycho-components",
3
3
  "private": false,
4
- "version": "0.0.15-SNAPSHOT-1",
4
+ "version": "0.0.15-SNAPSHOT-2",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {