@myrmidon/cadmus-part-general-ui 14.0.1 → 14.0.3
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/index.d.ts
CHANGED
|
@@ -13,6 +13,9 @@ import { DocReference } from '@myrmidon/cadmus-refs-doc-references';
|
|
|
13
13
|
import { CadmusTextEdService, CadmusTextEdBindings } from '@myrmidon/cadmus-text-ed';
|
|
14
14
|
import { DecoratedCount } from '@myrmidon/cadmus-refs-decorated-counts';
|
|
15
15
|
import { ProperName, AssertedProperName } from '@myrmidon/cadmus-refs-proper-name';
|
|
16
|
+
import { KeyValue } from '@angular/common';
|
|
17
|
+
import { Flag } from '@myrmidon/cadmus-ui-flag-set';
|
|
18
|
+
import { NoteSet } from '@myrmidon/cadmus-ui-note-set';
|
|
16
19
|
import { PhysicalMeasurement } from '@myrmidon/cadmus-mat-physical-size';
|
|
17
20
|
import { PhysicalState } from '@myrmidon/cadmus-mat-physical-state';
|
|
18
21
|
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
@@ -1452,7 +1455,7 @@ declare const COMMENT_FRAGMENT_SCHEMA: {
|
|
|
1452
1455
|
* Comment part/fragment editor component.
|
|
1453
1456
|
* Thesauri: comment-tags, doc-reference-tags, doc-reference-types, comment-categories,
|
|
1454
1457
|
* languages, keyword-indexes, keyword-tags, comment-id-scopes, comment-id-tags,
|
|
1455
|
-
* assertion-tags
|
|
1458
|
+
* assertion-tags.
|
|
1456
1459
|
*/
|
|
1457
1460
|
declare class CommentEditorComponent extends ModelEditorComponentBase<CommentPart | CommentFragment> implements OnInit, OnDestroy {
|
|
1458
1461
|
private _editService;
|
|
@@ -1476,22 +1479,12 @@ declare class CommentEditorComponent extends ModelEditorComponentBase<CommentPar
|
|
|
1476
1479
|
idScopeEntries: ThesaurusEntry[] | undefined;
|
|
1477
1480
|
idTagEntries: ThesaurusEntry[] | undefined;
|
|
1478
1481
|
assTagEntries: ThesaurusEntry[] | undefined;
|
|
1479
|
-
setTagEntries?: ThesaurusEntry[];
|
|
1480
|
-
pinByTypeMode?: boolean;
|
|
1481
|
-
canSwitchMode?: boolean;
|
|
1482
|
-
canEditTarget?: boolean;
|
|
1483
1482
|
constructor(authService: AuthJwtService, formBuilder: FormBuilder, _editService: CadmusTextEdService, _editorBindings?: CadmusTextEdBindings | undefined);
|
|
1484
1483
|
ngOnInit(): void;
|
|
1485
1484
|
ngOnDestroy(): void;
|
|
1486
1485
|
private applyEdit;
|
|
1487
1486
|
onCreateEditor(editor: monaco.editor.IEditor): void;
|
|
1488
1487
|
protected buildForm(formBuilder: FormBuilder): FormGroup | UntypedFormGroup;
|
|
1489
|
-
/**
|
|
1490
|
-
* Load settings from thesaurus entries.
|
|
1491
|
-
*
|
|
1492
|
-
* @param entries The thesaurus entries if any.
|
|
1493
|
-
*/
|
|
1494
|
-
private loadSettings;
|
|
1495
1488
|
private updateThesauri;
|
|
1496
1489
|
private updateForm;
|
|
1497
1490
|
protected onDataSet(data?: EditedObject<CommentPart | CommentFragment>): void;
|
|
@@ -1917,6 +1910,105 @@ declare class ExternalIdsPartComponent extends ModelEditorComponentBase<External
|
|
|
1917
1910
|
static ɵcmp: i0.ɵɵComponentDeclaration<ExternalIdsPartComponent, "cadmus-refs-external-ids-part", never, {}, {}, never, never, true, never>;
|
|
1918
1911
|
}
|
|
1919
1912
|
|
|
1913
|
+
/**
|
|
1914
|
+
* The flags part model.
|
|
1915
|
+
*/
|
|
1916
|
+
interface FlagsPart extends Part {
|
|
1917
|
+
flags: string[];
|
|
1918
|
+
notes?: {
|
|
1919
|
+
[key: string]: string;
|
|
1920
|
+
};
|
|
1921
|
+
}
|
|
1922
|
+
/**
|
|
1923
|
+
* The type ID used to identify the FlagsPart type.
|
|
1924
|
+
*/
|
|
1925
|
+
declare const FLAGS_PART_TYPEID = "it.vedph.flags";
|
|
1926
|
+
/**
|
|
1927
|
+
* JSON schema for the Flags part.
|
|
1928
|
+
* You can use the JSON schema tool at https://jsonschema.net/.
|
|
1929
|
+
*/
|
|
1930
|
+
declare const FLAGS_PART_SCHEMA: {
|
|
1931
|
+
$schema: string;
|
|
1932
|
+
$id: string;
|
|
1933
|
+
type: string;
|
|
1934
|
+
title: string;
|
|
1935
|
+
required: string[];
|
|
1936
|
+
properties: {
|
|
1937
|
+
timeCreated: {
|
|
1938
|
+
type: string;
|
|
1939
|
+
pattern: string;
|
|
1940
|
+
};
|
|
1941
|
+
creatorId: {
|
|
1942
|
+
type: string;
|
|
1943
|
+
};
|
|
1944
|
+
timeModified: {
|
|
1945
|
+
type: string;
|
|
1946
|
+
pattern: string;
|
|
1947
|
+
};
|
|
1948
|
+
userId: {
|
|
1949
|
+
type: string;
|
|
1950
|
+
};
|
|
1951
|
+
id: {
|
|
1952
|
+
type: string;
|
|
1953
|
+
pattern: string;
|
|
1954
|
+
};
|
|
1955
|
+
itemId: {
|
|
1956
|
+
type: string;
|
|
1957
|
+
pattern: string;
|
|
1958
|
+
};
|
|
1959
|
+
typeId: {
|
|
1960
|
+
type: string;
|
|
1961
|
+
pattern: string;
|
|
1962
|
+
};
|
|
1963
|
+
roleId: {
|
|
1964
|
+
type: string[];
|
|
1965
|
+
pattern: string;
|
|
1966
|
+
};
|
|
1967
|
+
flags: {
|
|
1968
|
+
type: string;
|
|
1969
|
+
items: {
|
|
1970
|
+
type: string;
|
|
1971
|
+
pattern: string;
|
|
1972
|
+
};
|
|
1973
|
+
minItems: number;
|
|
1974
|
+
};
|
|
1975
|
+
notes: {
|
|
1976
|
+
type: string;
|
|
1977
|
+
additionalProperties: {
|
|
1978
|
+
type: string;
|
|
1979
|
+
};
|
|
1980
|
+
};
|
|
1981
|
+
};
|
|
1982
|
+
};
|
|
1983
|
+
|
|
1984
|
+
/**
|
|
1985
|
+
* Flags part editor component.
|
|
1986
|
+
* Thesauri: flags.
|
|
1987
|
+
* Settings: note set definitions for this part type (and role). If not defined,
|
|
1988
|
+
* no notes will be available.
|
|
1989
|
+
* See https://github.com/vedph/cadmus-bricks-shell-v3/blob/master/projects/myrmidon/cadmus-ui-note-set/README.md.
|
|
1990
|
+
*/
|
|
1991
|
+
declare class FlagsPartComponent extends ModelEditorComponentBase<FlagsPart> implements OnInit {
|
|
1992
|
+
flags: FormControl<string[]>;
|
|
1993
|
+
notes: FormControl<NoteSet>;
|
|
1994
|
+
readonly settings: i0.WritableSignal<NoteSet | undefined>;
|
|
1995
|
+
readonly flagEntries: i0.WritableSignal<ThesaurusEntry[]>;
|
|
1996
|
+
featureFlags: i0.Signal<Flag[]>;
|
|
1997
|
+
constructor(authService: AuthJwtService, formBuilder: FormBuilder);
|
|
1998
|
+
ngOnInit(): Promise<void>;
|
|
1999
|
+
protected buildForm(formBuilder: FormBuilder): FormGroup | UntypedFormGroup;
|
|
2000
|
+
private updateThesauri;
|
|
2001
|
+
private getNoteSet;
|
|
2002
|
+
private updateForm;
|
|
2003
|
+
protected onDataSet(data?: EditedObject<FlagsPart>): void;
|
|
2004
|
+
onFlagsCheckedIdsChange(ids: string[]): void;
|
|
2005
|
+
onNoteChange(note: KeyValue<string, string | null>): void;
|
|
2006
|
+
onSetChange(set: NoteSet): void;
|
|
2007
|
+
protected getValue(): FlagsPart;
|
|
2008
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FlagsPartComponent, never>;
|
|
2009
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FlagsPartComponent, "cadmus-flags-part", never, {}, {}, never, never, true, never>;
|
|
2010
|
+
}
|
|
2011
|
+
|
|
1920
2012
|
/**
|
|
1921
2013
|
* The historical events part model.
|
|
1922
2014
|
*/
|
|
@@ -2365,7 +2457,6 @@ declare class HistoricalEventEditorComponent {
|
|
|
2365
2457
|
* Thesaurus doc-reference-types.
|
|
2366
2458
|
*/
|
|
2367
2459
|
readonly refTypeEntries: i0.InputSignal<ThesaurusEntry[] | undefined>;
|
|
2368
|
-
readonly setTagEntries: i0.InputSignal<ThesaurusEntry[] | undefined>;
|
|
2369
2460
|
/**
|
|
2370
2461
|
* The number of event type portions to cut from the event type ID when
|
|
2371
2462
|
* building the prefix used to filter the corresponding relations IDs.
|
|
@@ -2377,9 +2468,6 @@ declare class HistoricalEventEditorComponent {
|
|
|
2377
2468
|
* join back the portions and append a final colon, generating "person:".
|
|
2378
2469
|
*/
|
|
2379
2470
|
readonly eventTypeTailCut: i0.InputSignal<number>;
|
|
2380
|
-
readonly pinByTypeMode: i0.InputSignal<boolean | undefined>;
|
|
2381
|
-
readonly canSwitchMode: i0.InputSignal<boolean | undefined>;
|
|
2382
|
-
readonly canEditTarget: i0.InputSignal<boolean | undefined>;
|
|
2383
2471
|
/**
|
|
2384
2472
|
* True to disable ID lookup via scoped pin lookup.
|
|
2385
2473
|
*/
|
|
@@ -2401,6 +2489,7 @@ declare class HistoricalEventEditorComponent {
|
|
|
2401
2489
|
constructor(formBuilder: FormBuilder);
|
|
2402
2490
|
renderLabel(label: string): string;
|
|
2403
2491
|
private getTypeEntryPrefix;
|
|
2492
|
+
private updateTypeEntryPrefix;
|
|
2404
2493
|
onTypeEntryChange(entry: ThesaurusEntry): void;
|
|
2405
2494
|
private updateForm;
|
|
2406
2495
|
private getModel;
|
|
@@ -2414,7 +2503,7 @@ declare class HistoricalEventEditorComponent {
|
|
|
2414
2503
|
cancel(): void;
|
|
2415
2504
|
save(): void;
|
|
2416
2505
|
static ɵfac: i0.ɵɵFactoryDeclaration<HistoricalEventEditorComponent, never>;
|
|
2417
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HistoricalEventEditorComponent, "cadmus-historical-event-editor", never, { "event": { "alias": "event"; "required": false; "isSignal": true; }; "eventTypeEntries": { "alias": "eventTypeEntries"; "required": false; "isSignal": true; }; "eventTagEntries": { "alias": "eventTagEntries"; "required": false; "isSignal": true; }; "relationEntries": { "alias": "relationEntries"; "required": false; "isSignal": true; }; "ctTagEntries": { "alias": "ctTagEntries"; "required": false; "isSignal": true; }; "idScopeEntries": { "alias": "idScopeEntries"; "required": false; "isSignal": true; }; "idTagEntries": { "alias": "idTagEntries"; "required": false; "isSignal": true; }; "assTagEntries": { "alias": "assTagEntries"; "required": false; "isSignal": true; }; "refTagEntries": { "alias": "refTagEntries"; "required": false; "isSignal": true; }; "refTypeEntries": { "alias": "refTypeEntries"; "required": false; "isSignal": true; }; "
|
|
2506
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HistoricalEventEditorComponent, "cadmus-historical-event-editor", never, { "event": { "alias": "event"; "required": false; "isSignal": true; }; "eventTypeEntries": { "alias": "eventTypeEntries"; "required": false; "isSignal": true; }; "eventTagEntries": { "alias": "eventTagEntries"; "required": false; "isSignal": true; }; "relationEntries": { "alias": "relationEntries"; "required": false; "isSignal": true; }; "ctTagEntries": { "alias": "ctTagEntries"; "required": false; "isSignal": true; }; "idScopeEntries": { "alias": "idScopeEntries"; "required": false; "isSignal": true; }; "idTagEntries": { "alias": "idTagEntries"; "required": false; "isSignal": true; }; "assTagEntries": { "alias": "assTagEntries"; "required": false; "isSignal": true; }; "refTagEntries": { "alias": "refTagEntries"; "required": false; "isSignal": true; }; "refTypeEntries": { "alias": "refTypeEntries"; "required": false; "isSignal": true; }; "eventTypeTailCut": { "alias": "eventTypeTailCut"; "required": false; "isSignal": true; }; "noLookup": { "alias": "noLookup"; "required": false; "isSignal": true; }; }, { "event": "eventChange"; "editorClose": "editorClose"; }, never, never, true, never>;
|
|
2418
2507
|
}
|
|
2419
2508
|
|
|
2420
2509
|
/**
|
|
@@ -2583,15 +2672,12 @@ declare class HistoricalDatePartComponent extends ModelEditorComponentBase<Histo
|
|
|
2583
2672
|
* Historical events part.
|
|
2584
2673
|
* Thesauri: event-types, event-tags, event-relations, chronotope-tags,
|
|
2585
2674
|
* asserted-id-scopes, asserted-id-tags, assertion-tags, doc-reference-tags,
|
|
2586
|
-
* doc-reference-types, pin-link-scopes, pin-link-tags
|
|
2675
|
+
* doc-reference-types, pin-link-scopes, pin-link-tags.
|
|
2587
2676
|
*/
|
|
2588
2677
|
declare class HistoricalEventsPartComponent extends ModelEditorComponentBase<HistoricalEventsPart> implements OnInit {
|
|
2589
2678
|
private _dialogService;
|
|
2590
2679
|
editedEventIndex: number;
|
|
2591
2680
|
editedEvent: HistoricalEvent | undefined;
|
|
2592
|
-
pinByTypeMode?: boolean;
|
|
2593
|
-
canSwitchMode?: boolean;
|
|
2594
|
-
canEditTarget?: boolean;
|
|
2595
2681
|
/**
|
|
2596
2682
|
* Thesaurus event-types.
|
|
2597
2683
|
*/
|
|
@@ -2626,12 +2712,6 @@ declare class HistoricalEventsPartComponent extends ModelEditorComponentBase<His
|
|
|
2626
2712
|
constructor(authService: AuthJwtService, formBuilder: FormBuilder, _dialogService: DialogService);
|
|
2627
2713
|
ngOnInit(): void;
|
|
2628
2714
|
protected buildForm(formBuilder: FormBuilder): FormGroup | UntypedFormGroup;
|
|
2629
|
-
/**
|
|
2630
|
-
* Load settings from thesaurus entries.
|
|
2631
|
-
*
|
|
2632
|
-
* @param entries The thesaurus entries if any.
|
|
2633
|
-
*/
|
|
2634
|
-
private loadSettings;
|
|
2635
2715
|
private updateThesauri;
|
|
2636
2716
|
private updateForm;
|
|
2637
2717
|
protected onDataSet(data?: EditedObject<HistoricalEventsPart>): void;
|
|
@@ -2670,9 +2750,6 @@ declare class RelatedEntityComponent {
|
|
|
2670
2750
|
* Thesaurus doc-reference-types.
|
|
2671
2751
|
*/
|
|
2672
2752
|
readonly refTypeEntries: i0.InputSignal<ThesaurusEntry[] | undefined>;
|
|
2673
|
-
readonly pinByTypeMode: i0.InputSignal<boolean | undefined>;
|
|
2674
|
-
readonly canSwitchMode: i0.InputSignal<boolean | undefined>;
|
|
2675
|
-
readonly canEditTarget: i0.InputSignal<boolean | undefined>;
|
|
2676
2753
|
readonly editorClose: i0.OutputEmitterRef<void>;
|
|
2677
2754
|
relation: FormControl<string | null>;
|
|
2678
2755
|
id: FormControl<AssertedCompositeId | null>;
|
|
@@ -2684,7 +2761,7 @@ declare class RelatedEntityComponent {
|
|
|
2684
2761
|
cancel(): void;
|
|
2685
2762
|
save(): void;
|
|
2686
2763
|
static ɵfac: i0.ɵɵFactoryDeclaration<RelatedEntityComponent, never>;
|
|
2687
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RelatedEntityComponent, "cadmus-related-entity", never, { "entity": { "alias": "entity"; "required": false; "isSignal": true; }; "relationEntries": { "alias": "relationEntries"; "required": false; "isSignal": true; }; "idScopeEntries": { "alias": "idScopeEntries"; "required": false; "isSignal": true; }; "idTagEntries": { "alias": "idTagEntries"; "required": false; "isSignal": true; }; "assTagEntries": { "alias": "assTagEntries"; "required": false; "isSignal": true; }; "refTagEntries": { "alias": "refTagEntries"; "required": false; "isSignal": true; }; "refTypeEntries": { "alias": "refTypeEntries"; "required": false; "isSignal": true; };
|
|
2764
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RelatedEntityComponent, "cadmus-related-entity", never, { "entity": { "alias": "entity"; "required": false; "isSignal": true; }; "relationEntries": { "alias": "relationEntries"; "required": false; "isSignal": true; }; "idScopeEntries": { "alias": "idScopeEntries"; "required": false; "isSignal": true; }; "idTagEntries": { "alias": "idTagEntries"; "required": false; "isSignal": true; }; "assTagEntries": { "alias": "assTagEntries"; "required": false; "isSignal": true; }; "refTagEntries": { "alias": "refTagEntries"; "required": false; "isSignal": true; }; "refTypeEntries": { "alias": "refTypeEntries"; "required": false; "isSignal": true; }; }, { "entity": "entityChange"; "editorClose": "editorClose"; }, never, never, true, never>;
|
|
2688
2765
|
}
|
|
2689
2766
|
|
|
2690
2767
|
declare class IndexKeywordComponent {
|
|
@@ -3487,28 +3564,18 @@ declare const PIN_LINKS_PART_SCHEMA: {
|
|
|
3487
3564
|
/**
|
|
3488
3565
|
* PinLinksPart editor component.
|
|
3489
3566
|
* Thesauri: pin-link-scopes, pin-link-tags, pin-link-assertion-tags,
|
|
3490
|
-
* pin-link-docref-types, pin-link-docref-tags
|
|
3567
|
+
* pin-link-docref-types, pin-link-docref-tags.
|
|
3491
3568
|
*/
|
|
3492
3569
|
declare class PinLinksPartComponent extends ModelEditorComponentBase<PinLinksPart> implements OnInit {
|
|
3493
3570
|
links: FormControl<AssertedCompositeId[]>;
|
|
3494
|
-
pinByTypeMode?: boolean;
|
|
3495
|
-
canSwitchMode?: boolean;
|
|
3496
|
-
canEditTarget?: boolean;
|
|
3497
3571
|
idScopeEntries?: ThesaurusEntry[];
|
|
3498
3572
|
idTagEntries?: ThesaurusEntry[];
|
|
3499
3573
|
assTagEntries?: ThesaurusEntry[];
|
|
3500
3574
|
refTypeEntries?: ThesaurusEntry[];
|
|
3501
3575
|
refTagEntries?: ThesaurusEntry[];
|
|
3502
|
-
setTagEntries?: ThesaurusEntry[];
|
|
3503
3576
|
constructor(authService: AuthJwtService, formBuilder: FormBuilder);
|
|
3504
3577
|
ngOnInit(): void;
|
|
3505
3578
|
protected buildForm(formBuilder: FormBuilder): FormGroup | UntypedFormGroup;
|
|
3506
|
-
/**
|
|
3507
|
-
* Load settings from thesaurus entries.
|
|
3508
|
-
*
|
|
3509
|
-
* @param entries The thesaurus entries if any.
|
|
3510
|
-
*/
|
|
3511
|
-
private loadSettings;
|
|
3512
3579
|
private updateThesauri;
|
|
3513
3580
|
private updateForm;
|
|
3514
3581
|
protected onDataSet(data?: EditedObject<PinLinksPart>): void;
|
|
@@ -3631,7 +3698,7 @@ declare const PIN_LINKS_FRAGMENT_SCHEMA: {
|
|
|
3631
3698
|
/**
|
|
3632
3699
|
* Pin-based links fragment editor component.
|
|
3633
3700
|
* Thesauri: pin-link-scopes, pin-link-tags, pin-link-assertion-tags,
|
|
3634
|
-
* pin-link-docref-types, pin-link-docref-tags
|
|
3701
|
+
* pin-link-docref-types, pin-link-docref-tags.
|
|
3635
3702
|
*/
|
|
3636
3703
|
declare class PinLinksFragmentComponent extends ModelEditorComponentBase<PinLinksFragment> implements OnInit {
|
|
3637
3704
|
links: FormControl<AssertedCompositeId[]>;
|
|
@@ -3643,16 +3710,9 @@ declare class PinLinksFragmentComponent extends ModelEditorComponentBase<PinLink
|
|
|
3643
3710
|
assTagEntries?: ThesaurusEntry[];
|
|
3644
3711
|
refTypeEntries?: ThesaurusEntry[];
|
|
3645
3712
|
refTagEntries?: ThesaurusEntry[];
|
|
3646
|
-
setTagEntries?: ThesaurusEntry[];
|
|
3647
3713
|
constructor(authService: AuthJwtService, formBuilder: FormBuilder);
|
|
3648
3714
|
ngOnInit(): void;
|
|
3649
3715
|
protected buildForm(formBuilder: FormBuilder): FormGroup | UntypedFormGroup;
|
|
3650
|
-
/**
|
|
3651
|
-
* Load settings from thesaurus entries.
|
|
3652
|
-
*
|
|
3653
|
-
* @param entries The thesaurus entries if any.
|
|
3654
|
-
*/
|
|
3655
|
-
private loadSettings;
|
|
3656
3716
|
private updateThesauri;
|
|
3657
3717
|
private updateForm;
|
|
3658
3718
|
protected onDataSet(data?: EditedObject<PinLinksFragment>): void;
|
|
@@ -4036,5 +4096,5 @@ declare class TokenTextPartComponent extends ModelEditorComponentBase<TokenTextP
|
|
|
4036
4096
|
static ɵcmp: i0.ɵɵComponentDeclaration<TokenTextPartComponent, "cadmus-token-text-part", never, {}, {}, never, never, true, never>;
|
|
4037
4097
|
}
|
|
4038
4098
|
|
|
4039
|
-
export { ASSERTED_HISTORICAL_DATES_PART_SCHEMA, ASSERTED_HISTORICAL_DATES_PART_TYPEID, AssertedHistoricalDateComponent, AssertedHistoricalDatesPartComponent, BIBLIOGRAPHY_PART_SCHEMA, BIBLIOGRAPHY_PART_TYPEID, BibAuthorsEditorComponent, BibliographyEntryComponent, BibliographyPartComponent, CATEGORIES_PART_SCHEMA, CATEGORIES_PART_TYPEID, CHRONOLOGY_FRAGMENT_SCHEMA, CHRONOLOGY_FRAGMENT_TYPEID, CHRONOTOPES_PART_TYPEID, COMMENT_FRAGMENT_SCHEMA, COMMENT_FRAGMENT_TYPEID, COMMENT_PART_SCHEMA, COMMENT_PART_TYPEID, CategoriesPartComponent, ChronologyFragmentComponent, ChronotopesPartComponent, Chronotopes_PART_SCHEMA, CommentEditorComponent, DECORATED_COUNTS_PART_SCHEMA, DECORATED_COUNTS_PART_TYPEID, DISTRICT_LOCATION_PART_SCHEMA, DISTRICT_LOCATION_PART_TYPEID, DOC_REFERENCES_PART_SCHEMA, DOC_REFERENCES_PART_TYPEID, DecoratedCountsPartComponent, DistrictLocationPartComponent, DocReferencesPartComponent, EXTERNAL_IDS_PART_SCHEMA, EXTERNAL_IDS_PART_TYPEID, ExternalIdsPartComponent, HISTORICAL_DATE_PART_SCHEMA, HISTORICAL_DATE_PART_TYPEID, HISTORICAL_EVENTS_PART_SCHEMA, HISTORICAL_EVENTS_PART_TYPEID, HistoricalDatePartComponent, HistoricalEventEditorComponent, HistoricalEventsPartComponent, INDEX_KEYWORDS_PART_SCHEMA, INDEX_KEYWORDS_PART_TYPEID, IndexKeywordComponent, IndexKeywordsPartComponent, KEYWORDS_PART_SCHEMA, KEYWORDS_PART_TYPEID, KeywordsPartComponent, METADATA_PART_SCHEMA, METADATA_PART_TYPEID, MetadataPartComponent, NAMES_PART_SCHEMA, NAMES_PART_TYPEID, NOTE_PART_SCHEMA, NOTE_PART_TYPEID, NamesPartComponent, NotePartComponent, PHYSICAL_MEASUREMENTS_PART_SCHEMA, PHYSICAL_MEASUREMENTS_PART_TYPEID, PHYSICAL_STATES_PART_SCHEMA, PHYSICAL_STATES_PART_TYPEID, PIN_LINKS_FRAGMENT_SCHEMA, PIN_LINKS_FRAGMENT_TYPEID, PIN_LINKS_PART_SCHEMA, PIN_LINKS_PART_TYPEID, PhysicalMeasurementsPartComponent, PhysicalStatesPartComponent, PinLinksFragmentComponent, PinLinksPartComponent, RelatedEntityComponent, TEXT_TILE_TEXT_DATA_NAME, TILEDTEXTPART_SCHEMA, TILED_TEXT_PART_TYPEID, TOKEN_TEXT_PART_SCHEMA, TOKEN_TEXT_PART_TYPEID, TextTileComponent, TiledDataComponent, TiledTextPartComponent, TokenTextPartComponent };
|
|
4040
|
-
export type { AssertedHistoricalDatesPart, BibAuthor, BibEntry, BibliographyPart, CategoriesPart, ChronologyFragment, ChronotopesPart, Comment, CommentFragment, CommentPart, DecoratedCountsPart, DistrictLocationPart, DocReferencesPart, ExternalIdsPart, HistoricalDatePart, HistoricalEvent, HistoricalEventsPart, IndexKeyword, IndexKeywordsPart, Keyword, KeywordsPart, MetadataPart, Metadatum, NamesPart, NotePart, PhysicalMeasurementsPart, PhysicalStatesPart, PinLinksFragment, PinLinksPart, RelatedEntity, TextTile, TextTileRow, TiledTextPart, TokenTextLine, TokenTextPart };
|
|
4099
|
+
export { ASSERTED_HISTORICAL_DATES_PART_SCHEMA, ASSERTED_HISTORICAL_DATES_PART_TYPEID, AssertedHistoricalDateComponent, AssertedHistoricalDatesPartComponent, BIBLIOGRAPHY_PART_SCHEMA, BIBLIOGRAPHY_PART_TYPEID, BibAuthorsEditorComponent, BibliographyEntryComponent, BibliographyPartComponent, CATEGORIES_PART_SCHEMA, CATEGORIES_PART_TYPEID, CHRONOLOGY_FRAGMENT_SCHEMA, CHRONOLOGY_FRAGMENT_TYPEID, CHRONOTOPES_PART_TYPEID, COMMENT_FRAGMENT_SCHEMA, COMMENT_FRAGMENT_TYPEID, COMMENT_PART_SCHEMA, COMMENT_PART_TYPEID, CategoriesPartComponent, ChronologyFragmentComponent, ChronotopesPartComponent, Chronotopes_PART_SCHEMA, CommentEditorComponent, DECORATED_COUNTS_PART_SCHEMA, DECORATED_COUNTS_PART_TYPEID, DISTRICT_LOCATION_PART_SCHEMA, DISTRICT_LOCATION_PART_TYPEID, DOC_REFERENCES_PART_SCHEMA, DOC_REFERENCES_PART_TYPEID, DecoratedCountsPartComponent, DistrictLocationPartComponent, DocReferencesPartComponent, EXTERNAL_IDS_PART_SCHEMA, EXTERNAL_IDS_PART_TYPEID, ExternalIdsPartComponent, FLAGS_PART_SCHEMA, FLAGS_PART_TYPEID, FlagsPartComponent, HISTORICAL_DATE_PART_SCHEMA, HISTORICAL_DATE_PART_TYPEID, HISTORICAL_EVENTS_PART_SCHEMA, HISTORICAL_EVENTS_PART_TYPEID, HistoricalDatePartComponent, HistoricalEventEditorComponent, HistoricalEventsPartComponent, INDEX_KEYWORDS_PART_SCHEMA, INDEX_KEYWORDS_PART_TYPEID, IndexKeywordComponent, IndexKeywordsPartComponent, KEYWORDS_PART_SCHEMA, KEYWORDS_PART_TYPEID, KeywordsPartComponent, METADATA_PART_SCHEMA, METADATA_PART_TYPEID, MetadataPartComponent, NAMES_PART_SCHEMA, NAMES_PART_TYPEID, NOTE_PART_SCHEMA, NOTE_PART_TYPEID, NamesPartComponent, NotePartComponent, PHYSICAL_MEASUREMENTS_PART_SCHEMA, PHYSICAL_MEASUREMENTS_PART_TYPEID, PHYSICAL_STATES_PART_SCHEMA, PHYSICAL_STATES_PART_TYPEID, PIN_LINKS_FRAGMENT_SCHEMA, PIN_LINKS_FRAGMENT_TYPEID, PIN_LINKS_PART_SCHEMA, PIN_LINKS_PART_TYPEID, PhysicalMeasurementsPartComponent, PhysicalStatesPartComponent, PinLinksFragmentComponent, PinLinksPartComponent, RelatedEntityComponent, TEXT_TILE_TEXT_DATA_NAME, TILEDTEXTPART_SCHEMA, TILED_TEXT_PART_TYPEID, TOKEN_TEXT_PART_SCHEMA, TOKEN_TEXT_PART_TYPEID, TextTileComponent, TiledDataComponent, TiledTextPartComponent, TokenTextPartComponent };
|
|
4100
|
+
export type { AssertedHistoricalDatesPart, BibAuthor, BibEntry, BibliographyPart, CategoriesPart, ChronologyFragment, ChronotopesPart, Comment, CommentFragment, CommentPart, DecoratedCountsPart, DistrictLocationPart, DocReferencesPart, ExternalIdsPart, FlagsPart, HistoricalDatePart, HistoricalEvent, HistoricalEventsPart, IndexKeyword, IndexKeywordsPart, Keyword, KeywordsPart, MetadataPart, Metadatum, NamesPart, NotePart, PhysicalMeasurementsPart, PhysicalStatesPart, PinLinksFragment, PinLinksPart, RelatedEntity, TextTile, TextTileRow, TiledTextPart, TokenTextLine, TokenTextPart };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@myrmidon/cadmus-part-general-ui",
|
|
3
|
-
"version": "14.0.
|
|
3
|
+
"version": "14.0.3",
|
|
4
4
|
"description": "Cadmus - generic parts.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Cadmus"
|
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
"@cisstech/nge": "^18.2.1",
|
|
20
20
|
"@myrmidon/ngx-tools": "^2.0.0",
|
|
21
21
|
"@myrmidon/ngx-mat-tools": "^1.0.0",
|
|
22
|
-
"@myrmidon/cadmus-refs-asserted-ids": "^10.0.
|
|
23
|
-
"@myrmidon/cadmus-refs-doc-references": "^10.0.
|
|
22
|
+
"@myrmidon/cadmus-refs-asserted-ids": "^10.0.8",
|
|
23
|
+
"@myrmidon/cadmus-refs-doc-references": "^10.0.1",
|
|
24
24
|
"@myrmidon/cadmus-refs-historical-date": "9.0.1",
|
|
25
|
-
"@myrmidon/cadmus-refs-asserted-chronotope": "10.0.
|
|
26
|
-
"@myrmidon/cadmus-refs-assertion": "10.0.
|
|
25
|
+
"@myrmidon/cadmus-refs-asserted-chronotope": "10.0.2",
|
|
26
|
+
"@myrmidon/cadmus-refs-assertion": "10.0.3",
|
|
27
27
|
"@myrmidon/cadmus-refs-proper-name": "10.0.1",
|
|
28
28
|
"@myrmidon/cadmus-core": "^12.0.1",
|
|
29
29
|
"@myrmidon/cadmus-ui": "^14.0.0"
|