@rr0/cms 0.1.9 → 0.1.10
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/dist/DefaultContentVisitor.d.ts +3 -3
- package/dist/book/Book.d.ts +1 -1
- package/dist/build.js +1 -1
- package/dist/people/People.d.ts +2 -2
- package/dist/place/Place.d.ts +2 -2
- package/dist/science/crypto/ufo/enquete/dossier/CaseFactory.d.ts +2 -2
- package/dist/science/crypto/ufo/enquete/dossier/CaseFactory.js +1 -1
- package/dist/source/PersistentSourceRegistry.d.ts +1 -1
- package/dist/source/Source.d.ts +1 -1
- package/dist/source/SourceFactory.d.ts +1 -1
- package/dist/tech/info/soft/API.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { AllDataService } from "data/AllDataService.js";
|
|
1
|
+
import { AllDataService } from "./data/AllDataService.js";
|
|
2
2
|
import { TimeElementFactory } from "./time/TimeElementFactory.js";
|
|
3
3
|
import { ContentVisitor } from "./RR0ContentStep.js";
|
|
4
4
|
import { HtmlRR0SsgContext } from "./RR0SsgContext.js";
|
|
5
|
-
import { RR0Data } from "data/RR0Data.js";
|
|
5
|
+
import { RR0Data } from "./data/RR0Data.js";
|
|
6
6
|
import { EventRenderer } from "./time/EventRenderer.js";
|
|
7
|
-
import { RR0Event } from "event/RR0Event.js";
|
|
7
|
+
import { RR0Event } from "./event/RR0Event.js";
|
|
8
8
|
export declare class DefaultContentVisitor implements ContentVisitor {
|
|
9
9
|
protected service: AllDataService;
|
|
10
10
|
protected eventRenderer: EventRenderer<RR0Event>;
|
package/dist/book/Book.d.ts
CHANGED
package/dist/build.js
CHANGED
|
@@ -19,7 +19,7 @@ import { OpenGraphCommand } from "./OpenGraphCommand.js";
|
|
|
19
19
|
import { DescriptionReplaceCommand } from "./DescriptionReplaceCommand.js";
|
|
20
20
|
import { BookContentVisitor, BookDirectoryStep } from "./book/index.js";
|
|
21
21
|
import path from "path";
|
|
22
|
-
import { IndexedReplacerFactory } from "index/IndexedReplacerFactory.js";
|
|
22
|
+
import { IndexedReplacerFactory } from "./index/IndexedReplacerFactory.js";
|
|
23
23
|
import { APIFactory, CodeReplacerFactory } from "./tech/index.js";
|
|
24
24
|
import { RR0ContentStep } from "./RR0ContentStep.js";
|
|
25
25
|
import { AllDataService, TypedDataFactory } from "./data/index.js";
|
package/dist/people/People.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { Occupation } from "./Occupation.js";
|
|
2
2
|
import { Gender } from "@rr0/common";
|
|
3
3
|
import { CountryCode } from "../org/country/CountryCode.js";
|
|
4
|
-
import { RR0Data } from "data/RR0Data.js";
|
|
5
|
-
import { RR0Event } from "event/RR0Event.js";
|
|
4
|
+
import { RR0Data } from "../data/RR0Data.js";
|
|
5
|
+
import { RR0Event } from "../event/RR0Event.js";
|
|
6
6
|
export declare class People implements RR0Data {
|
|
7
7
|
firstNames: string[];
|
|
8
8
|
lastName: string;
|
package/dist/place/Place.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { RR0Data } from "data/RR0Data.js";
|
|
1
|
+
import { RR0Data } from "../data/RR0Data.js";
|
|
2
2
|
import { PlaceLocation } from "./PlaceLocation.js";
|
|
3
|
-
import { RR0Event } from "event/RR0Event.js";
|
|
3
|
+
import { RR0Event } from "../event/RR0Event.js";
|
|
4
4
|
export type Elevation = {
|
|
5
5
|
elevation: number;
|
|
6
6
|
data?: any;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { TypedDataFactory } from "data/TypedDataFactory.js";
|
|
1
|
+
import { TypedDataFactory } from "../../../../../data/TypedDataFactory.js";
|
|
2
2
|
import { RR0Case } from "./RR0Case.js";
|
|
3
|
-
import { RR0EventFactory } from "event/RR0EventFactory.js";
|
|
3
|
+
import { RR0EventFactory } from "../../../../../event/RR0EventFactory.js";
|
|
4
4
|
export declare class CaseFactory extends TypedDataFactory<RR0Case> {
|
|
5
5
|
constructor(eventFactory: RR0EventFactory);
|
|
6
6
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Source } from "./Source.js";
|
|
2
|
-
import { AllDataService } from "data/AllDataService.js";
|
|
2
|
+
import { AllDataService } from "../data/AllDataService.js";
|
|
3
3
|
import { HttpSource } from "../time/datasource/HttpSource.js";
|
|
4
4
|
import { SourceRegistry } from "./SourceRegistry.js";
|
|
5
5
|
/**
|
package/dist/source/Source.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HtmlRR0SsgContext } from "../RR0SsgContext.js";
|
|
2
2
|
import { Source } from "./Source.js";
|
|
3
|
-
import { AllDataService } from "data/AllDataService.js";
|
|
3
|
+
import { AllDataService } from "../data/AllDataService.js";
|
|
4
4
|
import { HttpSource } from "../time/datasource/HttpSource.js";
|
|
5
5
|
/**
|
|
6
6
|
* Create Source objects.
|