@myrmidon/cadmus-part-general-ui 12.0.2 → 14.0.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.
Files changed (60) hide show
  1. package/fesm2022/myrmidon-cadmus-part-general-ui.mjs +177 -181
  2. package/fesm2022/myrmidon-cadmus-part-general-ui.mjs.map +1 -1
  3. package/index.d.ts +4038 -3
  4. package/package.json +14 -14
  5. package/lib/asserted-historical-date/asserted-historical-date.component.d.ts +0 -27
  6. package/lib/asserted-historical-dates-part/asserted-historical-dates-part.component.d.ts +0 -41
  7. package/lib/asserted-historical-dates-part.d.ts +0 -167
  8. package/lib/bib-authors-editor/bib-authors-editor.component.d.ts +0 -23
  9. package/lib/bibliography-entry/bibliography-entry.component.d.ts +0 -59
  10. package/lib/bibliography-part/bibliography-part.component.d.ts +0 -41
  11. package/lib/bibliography-part.d.ts +0 -199
  12. package/lib/categories-part/categories-part.component.d.ts +0 -26
  13. package/lib/categories-part.d.ts +0 -60
  14. package/lib/chronology-fragment/chronology-fragment.component.d.ts +0 -30
  15. package/lib/chronology-fragment.d.ts +0 -105
  16. package/lib/chronotopes-part/chronotopes-part.component.d.ts +0 -41
  17. package/lib/chronotopes-part.d.ts +0 -224
  18. package/lib/comment-editor/comment-editor.component.d.ts +0 -75
  19. package/lib/comment-fragment.d.ts +0 -95
  20. package/lib/comment-part.d.ts +0 -190
  21. package/lib/decorated-counts-part/decorated-counts-part.component.d.ts +0 -27
  22. package/lib/decorated-counts-part.d.ts +0 -78
  23. package/lib/district-location-part/district-location-part.component.d.ts +0 -29
  24. package/lib/district-location-part.d.ts +0 -88
  25. package/lib/doc-references-part/doc-references-part.component.d.ts +0 -27
  26. package/lib/doc-references-part.d.ts +0 -78
  27. package/lib/external-ids-part/external-ids-part.component.d.ts +0 -32
  28. package/lib/external-ids-part.d.ts +0 -78
  29. package/lib/historical-date-part/historical-date-part.component.d.ts +0 -26
  30. package/lib/historical-date-part.d.ts +0 -146
  31. package/lib/historical-event-editor/historical-event-editor.component.d.ts +0 -103
  32. package/lib/historical-events-part/historical-events-part.component.d.ts +0 -75
  33. package/lib/historical-events-part.d.ts +0 -405
  34. package/lib/index-keyword/index-keyword.component.d.ts +0 -24
  35. package/lib/index-keywords-part/index-keywords-part.component.d.ts +0 -34
  36. package/lib/index-keywords-part.d.ts +0 -88
  37. package/lib/keywords-part/keywords-part.component.d.ts +0 -30
  38. package/lib/keywords-part.d.ts +0 -73
  39. package/lib/metadata-part/metadata-part.component.d.ts +0 -40
  40. package/lib/metadata-part.d.ts +0 -82
  41. package/lib/names-part/names-part.component.d.ts +0 -52
  42. package/lib/names-part.d.ts +0 -127
  43. package/lib/note-part/note-part.component.d.ts +0 -34
  44. package/lib/note-part.d.ts +0 -61
  45. package/lib/physical-measurements-part/physical-measurements-part.component.d.ts +0 -28
  46. package/lib/physical-measurements-part.d.ts +0 -78
  47. package/lib/physical-states-part/physical-states-part.component.d.ts +0 -39
  48. package/lib/physical-states-part.d.ts +0 -84
  49. package/lib/pin-links-fragment/pin-links-fragment.component.d.ts +0 -41
  50. package/lib/pin-links-fragment.d.ts +0 -111
  51. package/lib/pin-links-part/pin-links-part.component.d.ts +0 -41
  52. package/lib/pin-links-part.d.ts +0 -139
  53. package/lib/related-entity/related-entity.component.d.ts +0 -44
  54. package/lib/text-tile/text-tile.component.d.ts +0 -34
  55. package/lib/tiled-data/tiled-data.component.d.ts +0 -43
  56. package/lib/tiled-text-part/tiled-text-part.component.d.ts +0 -71
  57. package/lib/tiled-text-part.d.ts +0 -127
  58. package/lib/token-text-part/token-text-part.component.d.ts +0 -35
  59. package/lib/token-text-part.d.ts +0 -85
  60. package/public-api.d.ts +0 -55
@@ -1,190 +0,0 @@
1
- import { Part } from '@myrmidon/cadmus-core';
2
- import { AssertedCompositeId } from '@myrmidon/cadmus-refs-asserted-ids';
3
- import { DocReference } from '@myrmidon/cadmus-refs-doc-references';
4
- import { IndexKeyword } from './index-keywords-part';
5
- /**
6
- * A comment.
7
- */
8
- export interface Comment {
9
- tag?: string;
10
- text: string;
11
- references?: DocReference[];
12
- links?: AssertedCompositeId[];
13
- categories?: string[];
14
- keywords?: IndexKeyword[];
15
- }
16
- /**
17
- * The Comment part model.
18
- */
19
- export interface CommentPart extends Part, Comment {
20
- }
21
- /**
22
- * The type ID used to identify the CommentPart type.
23
- */
24
- export declare const COMMENT_PART_TYPEID = "it.vedph.comment";
25
- /**
26
- * JSON schema for the Comment part. This is used in the editor demo.
27
- * You can use the JSON schema tool at https://jsonschema.net/.
28
- */
29
- export declare const COMMENT_PART_SCHEMA: {
30
- $schema: string;
31
- $id: string;
32
- type: string;
33
- title: string;
34
- required: string[];
35
- properties: {
36
- location: {
37
- $id: string;
38
- type: string;
39
- };
40
- baseText: {
41
- $id: string;
42
- type: string;
43
- };
44
- text: {
45
- type: string;
46
- };
47
- tag: {
48
- type: string[];
49
- };
50
- references: {
51
- type: string;
52
- items: {
53
- anyOf: {
54
- type: string;
55
- required: string[];
56
- properties: {
57
- type: {
58
- type: string;
59
- };
60
- tag: {
61
- type: string;
62
- };
63
- citation: {
64
- type: string;
65
- };
66
- note: {
67
- type: string;
68
- };
69
- };
70
- }[];
71
- };
72
- };
73
- links: {
74
- type: string;
75
- items: {
76
- type: string;
77
- default: {};
78
- required: string[];
79
- properties: {
80
- target: {
81
- type: string;
82
- required: string[];
83
- properties: {
84
- gid: {
85
- type: string;
86
- };
87
- label: {
88
- type: string;
89
- };
90
- itemId: {
91
- type: string;
92
- };
93
- partId: {
94
- type: string;
95
- };
96
- partTypeId: {
97
- type: string;
98
- };
99
- roleId: {
100
- type: string;
101
- };
102
- name: {
103
- type: string;
104
- };
105
- value: {
106
- type: string;
107
- };
108
- };
109
- };
110
- scope: {
111
- type: string;
112
- };
113
- tag: {
114
- type: string;
115
- };
116
- assertion: {
117
- type: string;
118
- required: string[];
119
- properties: {
120
- tag: {
121
- type: string;
122
- };
123
- rank: {
124
- type: string;
125
- };
126
- note: {
127
- type: string;
128
- };
129
- references: {
130
- type: string;
131
- items: {
132
- anyOf: {
133
- type: string;
134
- required: string[];
135
- properties: {
136
- type: {
137
- type: string;
138
- };
139
- tag: {
140
- type: string;
141
- };
142
- citation: {
143
- type: string;
144
- };
145
- note: {
146
- type: string;
147
- };
148
- };
149
- }[];
150
- };
151
- };
152
- };
153
- };
154
- };
155
- };
156
- };
157
- categories: {
158
- type: string;
159
- items: {
160
- anyOf: {
161
- type: string;
162
- }[];
163
- };
164
- };
165
- keywords: {
166
- type: string;
167
- items: {
168
- type: string;
169
- required: string[];
170
- properties: {
171
- indexId: {
172
- type: string;
173
- };
174
- language: {
175
- type: string;
176
- };
177
- value: {
178
- type: string;
179
- };
180
- note: {
181
- type: string;
182
- };
183
- tag: {
184
- type: string;
185
- };
186
- };
187
- };
188
- };
189
- };
190
- };
@@ -1,27 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { FormControl, FormBuilder, FormGroup, UntypedFormGroup } from '@angular/forms';
3
- import { AuthJwtService } from '@myrmidon/auth-jwt-login';
4
- import { DecoratedCount } from '@myrmidon/cadmus-refs-decorated-counts';
5
- import { ThesaurusEntry } from '@myrmidon/cadmus-core';
6
- import { EditedObject, ModelEditorComponentBase } from '@myrmidon/cadmus-ui';
7
- import { DecoratedCountsPart } from '../decorated-counts-part';
8
- import * as i0 from "@angular/core";
9
- /**
10
- * Decorated counts part editor component.
11
- * Thesauri: decorated-count-ids, decorated-count-tags (all optional).
12
- */
13
- export declare class DecoratedCountsPartComponent extends ModelEditorComponentBase<DecoratedCountsPart> implements OnInit {
14
- counts: FormControl<DecoratedCount[]>;
15
- idEntries: ThesaurusEntry[] | undefined;
16
- tagEntries: ThesaurusEntry[] | undefined;
17
- constructor(authService: AuthJwtService, formBuilder: FormBuilder);
18
- ngOnInit(): void;
19
- protected buildForm(formBuilder: FormBuilder): FormGroup | UntypedFormGroup;
20
- private updateThesauri;
21
- private updateForm;
22
- protected onDataSet(data?: EditedObject<DecoratedCountsPart>): void;
23
- protected getValue(): DecoratedCountsPart;
24
- onCountsChange(counts: DecoratedCount[]): void;
25
- static ɵfac: i0.ɵɵFactoryDeclaration<DecoratedCountsPartComponent, never>;
26
- static ɵcmp: i0.ɵɵComponentDeclaration<DecoratedCountsPartComponent, "cadmus-decorated-counts-part", never, {}, {}, never, never, true, never>;
27
- }
@@ -1,78 +0,0 @@
1
- import { Part } from '@myrmidon/cadmus-core';
2
- import { DecoratedCount } from '@myrmidon/cadmus-refs-decorated-counts';
3
- /**
4
- * The DecoratedCounts part model.
5
- */
6
- export interface DecoratedCountsPart extends Part {
7
- counts: DecoratedCount[];
8
- }
9
- /**
10
- * The type ID used to identify the DecoratedCountsPart type.
11
- */
12
- export declare const DECORATED_COUNTS_PART_TYPEID = "it.vedph.decorated-counts";
13
- /**
14
- * JSON schema for the DecoratedCounts part.
15
- * You can use the JSON schema tool at https://jsonschema.net/.
16
- */
17
- export declare const DECORATED_COUNTS_PART_SCHEMA: {
18
- $schema: string;
19
- $id: string;
20
- type: string;
21
- title: string;
22
- required: string[];
23
- properties: {
24
- timeCreated: {
25
- type: string;
26
- pattern: string;
27
- };
28
- creatorId: {
29
- type: string;
30
- };
31
- timeModified: {
32
- type: string;
33
- pattern: string;
34
- };
35
- userId: {
36
- type: string;
37
- };
38
- id: {
39
- type: string;
40
- pattern: string;
41
- };
42
- itemId: {
43
- type: string;
44
- pattern: string;
45
- };
46
- typeId: {
47
- type: string;
48
- pattern: string;
49
- };
50
- roleId: {
51
- type: string[];
52
- pattern: string;
53
- };
54
- counts: {
55
- type: string;
56
- items: {
57
- anyOf: {
58
- type: string;
59
- required: string[];
60
- properties: {
61
- id: {
62
- type: string;
63
- };
64
- tag: {
65
- type: string;
66
- };
67
- value: {
68
- type: string;
69
- };
70
- note: {
71
- type: string;
72
- };
73
- };
74
- }[];
75
- };
76
- };
77
- };
78
- };
@@ -1,29 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { FormControl, FormBuilder, FormGroup, UntypedFormGroup } from '@angular/forms';
3
- import { AuthJwtService } from '@myrmidon/auth-jwt-login';
4
- import { ProperName } from '@myrmidon/cadmus-refs-proper-name';
5
- import { ThesaurusEntry } from '@myrmidon/cadmus-core';
6
- import { EditedObject, ModelEditorComponentBase } from '@myrmidon/cadmus-ui';
7
- import { DistrictLocationPart } from '../district-location-part';
8
- import * as i0 from "@angular/core";
9
- /**
10
- * DistrictLocation part editor component.
11
- * Thesauri: district-name-piece-types (required), district-name-lang-entries.
12
- */
13
- export declare class DistrictLocationPartComponent extends ModelEditorComponentBase<DistrictLocationPart> implements OnInit {
14
- place: FormControl<ProperName | null>;
15
- note: FormControl<string | null>;
16
- initialName?: ProperName | null;
17
- typeEntries?: ThesaurusEntry[];
18
- langEntries?: ThesaurusEntry[];
19
- constructor(authService: AuthJwtService, formBuilder: FormBuilder);
20
- ngOnInit(): void;
21
- protected buildForm(formBuilder: FormBuilder): FormGroup | UntypedFormGroup;
22
- private updateThesauri;
23
- private updateForm;
24
- onNameChange(name: ProperName | undefined): void;
25
- protected onDataSet(data?: EditedObject<DistrictLocationPart>): void;
26
- protected getValue(): DistrictLocationPart;
27
- static ɵfac: i0.ɵɵFactoryDeclaration<DistrictLocationPartComponent, never>;
28
- static ɵcmp: i0.ɵɵComponentDeclaration<DistrictLocationPartComponent, "cadmus-district-location-part", never, {}, {}, never, never, true, never>;
29
- }
@@ -1,88 +0,0 @@
1
- import { Part } from '@myrmidon/cadmus-core';
2
- import { ProperName } from '@myrmidon/cadmus-refs-proper-name';
3
- /**
4
- * The DistrictLocation part model.
5
- */
6
- export interface DistrictLocationPart extends Part {
7
- place: ProperName;
8
- note?: string;
9
- }
10
- /**
11
- * The type ID used to identify the DistrictLocationPart type.
12
- */
13
- export declare const DISTRICT_LOCATION_PART_TYPEID = "it.vedph.district-location";
14
- /**
15
- * JSON schema for the DistrictLocation part.
16
- * You can use the JSON schema tool at https://jsonschema.net/.
17
- */
18
- export declare const DISTRICT_LOCATION_PART_SCHEMA: {
19
- $schema: string;
20
- $id: string;
21
- type: string;
22
- title: string;
23
- required: string[];
24
- properties: {
25
- timeCreated: {
26
- type: string;
27
- pattern: string;
28
- };
29
- creatorId: {
30
- type: string;
31
- };
32
- timeModified: {
33
- type: string;
34
- pattern: string;
35
- };
36
- userId: {
37
- type: string;
38
- };
39
- id: {
40
- type: string;
41
- pattern: string;
42
- };
43
- itemId: {
44
- type: string;
45
- pattern: string;
46
- };
47
- typeId: {
48
- type: string;
49
- pattern: string;
50
- };
51
- roleId: {
52
- type: string[];
53
- pattern: string;
54
- };
55
- place: {
56
- type: string;
57
- required: string[];
58
- properties: {
59
- language: {
60
- type: string;
61
- };
62
- tag: {
63
- type: string;
64
- };
65
- pieces: {
66
- type: string;
67
- items: {
68
- anyOf: {
69
- type: string;
70
- required: string[];
71
- properties: {
72
- type: {
73
- type: string;
74
- };
75
- value: {
76
- type: string;
77
- };
78
- };
79
- }[];
80
- };
81
- };
82
- note: {
83
- type: string;
84
- };
85
- };
86
- };
87
- };
88
- };
@@ -1,27 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { FormControl, FormBuilder, FormGroup, UntypedFormGroup } from '@angular/forms';
3
- import { AuthJwtService } from '@myrmidon/auth-jwt-login';
4
- import { DocReference } from '@myrmidon/cadmus-refs-doc-references';
5
- import { ThesaurusEntry } from '@myrmidon/cadmus-core';
6
- import { EditedObject, ModelEditorComponentBase } from '@myrmidon/cadmus-ui';
7
- import { DocReferencesPart } from '../doc-references-part';
8
- import * as i0 from "@angular/core";
9
- /**
10
- * Document references part editor.
11
- * Thesauri: doc-reference-tags, doc-reference-types (all optional).
12
- */
13
- export declare class DocReferencesPartComponent extends ModelEditorComponentBase<DocReferencesPart> implements OnInit {
14
- references: FormControl<DocReference[]>;
15
- typeEntries: ThesaurusEntry[] | undefined;
16
- tagEntries: ThesaurusEntry[] | undefined;
17
- constructor(authService: AuthJwtService, formBuilder: FormBuilder);
18
- ngOnInit(): void;
19
- protected buildForm(formBuilder: FormBuilder): FormGroup | UntypedFormGroup;
20
- private updateThesauri;
21
- private updateForm;
22
- protected onDataSet(data?: EditedObject<DocReferencesPart>): void;
23
- protected getValue(): DocReferencesPart;
24
- onReferencesChange(references: DocReference[]): void;
25
- static ɵfac: i0.ɵɵFactoryDeclaration<DocReferencesPartComponent, never>;
26
- static ɵcmp: i0.ɵɵComponentDeclaration<DocReferencesPartComponent, "cadmus-doc-references-part", never, {}, {}, never, never, true, never>;
27
- }
@@ -1,78 +0,0 @@
1
- import { Part } from '@myrmidon/cadmus-core';
2
- import { DocReference } from '@myrmidon/cadmus-refs-doc-references';
3
- /**
4
- * The document references part model.
5
- */
6
- export interface DocReferencesPart extends Part {
7
- references: DocReference[];
8
- }
9
- /**
10
- * The type ID used to identify the DocReferencesPart type.
11
- */
12
- export declare const DOC_REFERENCES_PART_TYPEID = "it.vedph.doc-references";
13
- /**
14
- * JSON schema for the DocReferences part. This is used in the editor demo.
15
- * You can use the JSON schema tool at https://jsonschema.net/.
16
- */
17
- export declare const DOC_REFERENCES_PART_SCHEMA: {
18
- $schema: string;
19
- $id: string;
20
- type: string;
21
- title: string;
22
- required: string[];
23
- properties: {
24
- timeCreated: {
25
- type: string;
26
- pattern: string;
27
- };
28
- creatorId: {
29
- type: string;
30
- };
31
- timeModified: {
32
- type: string;
33
- pattern: string;
34
- };
35
- userId: {
36
- type: string;
37
- };
38
- id: {
39
- type: string;
40
- pattern: string;
41
- };
42
- itemId: {
43
- type: string;
44
- pattern: string;
45
- };
46
- typeId: {
47
- type: string;
48
- pattern: string;
49
- };
50
- roleId: {
51
- type: string[];
52
- pattern: string;
53
- };
54
- references: {
55
- type: string;
56
- items: {
57
- anyOf: {
58
- type: string;
59
- required: string[];
60
- properties: {
61
- type: {
62
- type: string;
63
- };
64
- tag: {
65
- type: string;
66
- };
67
- citation: {
68
- type: string;
69
- };
70
- note: {
71
- type: string;
72
- };
73
- };
74
- }[];
75
- };
76
- };
77
- };
78
- };
@@ -1,32 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { FormControl, FormBuilder, FormGroup, UntypedFormGroup } from '@angular/forms';
3
- import { AuthJwtService } from '@myrmidon/auth-jwt-login';
4
- import { AssertedId } from '@myrmidon/cadmus-refs-asserted-ids';
5
- import { ThesaurusEntry } from '@myrmidon/cadmus-core';
6
- import { EditedObject, ModelEditorComponentBase } from '@myrmidon/cadmus-ui';
7
- import { ExternalIdsPart } from '../external-ids-part';
8
- import * as i0 from "@angular/core";
9
- /**
10
- * External IDs part editor component. This is just a collection of asserted
11
- * IDs.
12
- * Thesauri: external-id-types, external-id-tags, assertion-tags,
13
- * doc-reference-types, doc-reference-tags (all optional).
14
- */
15
- export declare class ExternalIdsPartComponent extends ModelEditorComponentBase<ExternalIdsPart> implements OnInit {
16
- ids: FormControl<AssertedId[]>;
17
- idScopeEntries: ThesaurusEntry[] | undefined;
18
- idTagEntries: ThesaurusEntry[] | undefined;
19
- assTagEntries: ThesaurusEntry[] | undefined;
20
- refTypeEntries: ThesaurusEntry[] | undefined;
21
- refTagEntries: ThesaurusEntry[] | undefined;
22
- constructor(authService: AuthJwtService, formBuilder: FormBuilder);
23
- ngOnInit(): void;
24
- protected buildForm(formBuilder: FormBuilder): FormGroup | UntypedFormGroup;
25
- private updateThesauri;
26
- private updateForm;
27
- protected onDataSet(data?: EditedObject<ExternalIdsPart>): void;
28
- protected getValue(): ExternalIdsPart;
29
- onIdsChange(ids: AssertedId[]): void;
30
- static ɵfac: i0.ɵɵFactoryDeclaration<ExternalIdsPartComponent, never>;
31
- static ɵcmp: i0.ɵɵComponentDeclaration<ExternalIdsPartComponent, "cadmus-refs-external-ids-part", never, {}, {}, never, never, true, never>;
32
- }
@@ -1,78 +0,0 @@
1
- import { Part } from '@myrmidon/cadmus-core';
2
- import { AssertedId } from '@myrmidon/cadmus-refs-asserted-ids';
3
- /**
4
- * The external ids part model.
5
- */
6
- export interface ExternalIdsPart extends Part {
7
- ids: AssertedId[];
8
- }
9
- /**
10
- * The type ID used to identify the ExternalIdsPart type.
11
- */
12
- export declare const EXTERNAL_IDS_PART_TYPEID = "it.vedph.external-ids";
13
- /**
14
- * JSON schema for the external IDs part. This is used in the editor demo.
15
- * You can use the JSON schema tool at https://jsonschema.net/.
16
- */
17
- export declare const EXTERNAL_IDS_PART_SCHEMA: {
18
- $schema: string;
19
- $id: string;
20
- type: string;
21
- title: string;
22
- required: string[];
23
- properties: {
24
- timeCreated: {
25
- type: string;
26
- pattern: string;
27
- };
28
- creatorId: {
29
- type: string;
30
- };
31
- timeModified: {
32
- type: string;
33
- pattern: string;
34
- };
35
- userId: {
36
- type: string;
37
- };
38
- id: {
39
- type: string;
40
- pattern: string;
41
- };
42
- itemId: {
43
- type: string;
44
- pattern: string;
45
- };
46
- typeId: {
47
- type: string;
48
- pattern: string;
49
- };
50
- roleId: {
51
- type: string[];
52
- pattern: string;
53
- };
54
- ids: {
55
- type: string;
56
- items: {
57
- anyOf: {
58
- type: string;
59
- required: string[];
60
- properties: {
61
- value: {
62
- type: string;
63
- };
64
- type: {
65
- type: string;
66
- };
67
- tag: {
68
- type: string;
69
- };
70
- note: {
71
- type: string;
72
- };
73
- };
74
- }[];
75
- };
76
- };
77
- };
78
- };
@@ -1,26 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { FormBuilder, FormControl, FormGroup, UntypedFormGroup } from '@angular/forms';
3
- import { AuthJwtService } from '@myrmidon/auth-jwt-login';
4
- import { HistoricalDateModel } from '@myrmidon/cadmus-refs-historical-date';
5
- import { DocReference } from '@myrmidon/cadmus-refs-doc-references';
6
- import { ThesaurusEntry } from '@myrmidon/cadmus-core';
7
- import { EditedObject, ModelEditorComponentBase } from '@myrmidon/cadmus-ui';
8
- import { HistoricalDatePart } from '../historical-date-part';
9
- import * as i0 from "@angular/core";
10
- export declare class HistoricalDatePartComponent extends ModelEditorComponentBase<HistoricalDatePart> implements OnInit {
11
- references: FormControl<DocReference[]>;
12
- date: FormControl<HistoricalDateModel>;
13
- typeEntries: ThesaurusEntry[] | undefined;
14
- tagEntries: ThesaurusEntry[] | undefined;
15
- constructor(authService: AuthJwtService, formBuilder: FormBuilder);
16
- ngOnInit(): void;
17
- protected buildForm(formBuilder: FormBuilder): FormGroup | UntypedFormGroup;
18
- private updateForm;
19
- private updateThesauri;
20
- protected onDataSet(data?: EditedObject<HistoricalDatePart>): void;
21
- protected getValue(): HistoricalDatePart;
22
- onDateChange(date: HistoricalDateModel): void;
23
- onReferencesChange(references: DocReference[]): void;
24
- static ɵfac: i0.ɵɵFactoryDeclaration<HistoricalDatePartComponent, never>;
25
- static ɵcmp: i0.ɵɵComponentDeclaration<HistoricalDatePartComponent, "cadmus-historical-date-part", never, {}, {}, never, never, true, never>;
26
- }