@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,85 +0,0 @@
1
- import { Part } from '@myrmidon/cadmus-core';
2
- /**
3
- * A single line in a TokenTextPart.
4
- */
5
- export interface TokenTextLine {
6
- y: number;
7
- text: string;
8
- }
9
- /**
10
- * Token-based text part.
11
- */
12
- export interface TokenTextPart extends Part {
13
- citation?: string;
14
- lines: TokenTextLine[];
15
- }
16
- /**
17
- * The type ID used to identify the TokenTextPart type.
18
- */
19
- export declare const TOKEN_TEXT_PART_TYPEID = "it.vedph.token-text";
20
- /**
21
- * JSON schema for the TookenTextPart. This is used in the editor demo.
22
- * You can use the JSON schema tool at https://jsonschema.net/.
23
- */
24
- export declare const TOKEN_TEXT_PART_SCHEMA: {
25
- $schema: string;
26
- $id: string;
27
- type: string;
28
- title: string;
29
- required: string[];
30
- properties: {
31
- timeCreated: {
32
- type: string;
33
- pattern: string;
34
- };
35
- creatorId: {
36
- type: string;
37
- };
38
- timeModified: {
39
- type: string;
40
- pattern: string;
41
- };
42
- userId: {
43
- type: string;
44
- };
45
- id: {
46
- type: string;
47
- pattern: string;
48
- };
49
- itemId: {
50
- type: string;
51
- pattern: string;
52
- };
53
- typeId: {
54
- type: string;
55
- pattern: string;
56
- };
57
- roleId: {
58
- type: string[];
59
- pattern: string;
60
- };
61
- citation: {
62
- type: string[];
63
- };
64
- lines: {
65
- $id: string;
66
- type: string;
67
- title: string;
68
- items: {
69
- $id: string;
70
- type: string;
71
- required: string[];
72
- properties: {
73
- y: {
74
- $id: string;
75
- type: string;
76
- };
77
- text: {
78
- $id: string;
79
- type: string;
80
- };
81
- };
82
- };
83
- };
84
- };
85
- };
package/public-api.d.ts DELETED
@@ -1,55 +0,0 @@
1
- export * from './lib/asserted-historical-dates-part';
2
- export * from './lib/asserted-historical-date/asserted-historical-date.component';
3
- export * from './lib/asserted-historical-dates-part/asserted-historical-dates-part.component';
4
- export * from './lib/bib-authors-editor/bib-authors-editor.component';
5
- export * from './lib/bibliography-entry/bibliography-entry.component';
6
- export * from './lib/bibliography-part';
7
- export * from './lib/bibliography-part/bibliography-part.component';
8
- export * from './lib/categories-part';
9
- export * from './lib/categories-part/categories-part.component';
10
- export * from './lib/chronology-fragment';
11
- export * from './lib/chronology-fragment/chronology-fragment.component';
12
- export * from './lib/chronotopes-part';
13
- export * from './lib/chronotopes-part/chronotopes-part.component';
14
- export * from './lib/comment-part';
15
- export * from './lib/comment-fragment';
16
- export * from './lib/comment-editor/comment-editor.component';
17
- export * from './lib/decorated-counts-part';
18
- export * from './lib/decorated-counts-part/decorated-counts-part.component';
19
- export * from './lib/district-location-part';
20
- export * from './lib/district-location-part/district-location-part.component';
21
- export * from './lib/doc-references-part';
22
- export * from './lib/doc-references-part/doc-references-part.component';
23
- export * from './lib/external-ids-part';
24
- export * from './lib/external-ids-part/external-ids-part.component';
25
- export * from './lib/historical-events-part';
26
- export * from './lib/historical-event-editor/historical-event-editor.component';
27
- export * from './lib/historical-date-part';
28
- export * from './lib/historical-date-part/historical-date-part.component';
29
- export * from './lib/historical-events-part/historical-events-part.component';
30
- export * from './lib/related-entity/related-entity.component';
31
- export * from './lib/index-keyword/index-keyword.component';
32
- export * from './lib/index-keywords-part';
33
- export * from './lib/index-keywords-part/index-keywords-part.component';
34
- export * from './lib/keywords-part';
35
- export * from './lib/keywords-part/keywords-part.component';
36
- export * from './lib/metadata-part';
37
- export * from './lib/metadata-part/metadata-part.component';
38
- export * from './lib/names-part';
39
- export * from './lib/names-part/names-part.component';
40
- export * from './lib/note-part';
41
- export * from './lib/note-part/note-part.component';
42
- export * from './lib/physical-measurements-part';
43
- export * from './lib/physical-measurements-part/physical-measurements-part.component';
44
- export * from './lib/physical-states-part';
45
- export * from './lib/physical-states-part/physical-states-part.component';
46
- export * from './lib/pin-links-part';
47
- export * from './lib/pin-links-part/pin-links-part.component';
48
- export * from './lib/pin-links-fragment';
49
- export * from './lib/pin-links-fragment/pin-links-fragment.component';
50
- export * from './lib/text-tile/text-tile.component';
51
- export * from './lib/tiled-data/tiled-data.component';
52
- export * from './lib/tiled-text-part';
53
- export * from './lib/tiled-text-part/tiled-text-part.component';
54
- export * from './lib/token-text-part';
55
- export * from './lib/token-text-part/token-text-part.component';