Skip to content

Commit c9991fe

Browse files
committed
fix: retain vendored Presentation 3 imports
1 parent 5a74e12 commit c9991fe

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

src/presentation-3/meta/behavior.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { InternationalString } from "@iiif/presentation-3";
1+
import type { InternationalString } from "../types";
22

33
export interface BehaviorChoice {
44
id: string;

src/presentation-3/meta/descriptive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { DescriptiveProperties } from "@iiif/presentation-3";
1+
import type { DescriptiveProperties } from "../types";
22

33
const required = {
44
Collection: ["label"],

src/presentation-3/meta/documentation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import {
2020
LinkingProperties,
2121
StructuralProperties,
2222
TechnicalProperties,
23-
} from "@iiif/presentation-3";
23+
} from "../types";
2424

2525
type DocDefinition = {
2626
link: string;

src/presentation-3/meta/extensions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { NavPlaceExtension, TextGranularityExtension } from "@iiif/presentation-3";
1+
import type { NavPlaceExtension, TextGranularityExtension } from "../types";
22

33
export type ExtensionProperties = TextGranularityExtension & NavPlaceExtension;
44

src/presentation-3/meta/linking.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { LinkingProperties } from "@iiif/presentation-3";
1+
import type { LinkingProperties } from "../types";
22

33
const required = {
44
Collection: [],

src/presentation-3/meta/structural.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { StructuralProperties } from "@iiif/presentation-3";
1+
import type { StructuralProperties } from "../types";
22

33
const required = {
44
Collection: ["items"],

src/presentation-3/meta/technical.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { TechnicalProperties } from "@iiif/presentation-3";
1+
import type { TechnicalProperties } from "../types";
22

33
const required = {
44
Collection: ["id", "type"],

0 commit comments

Comments
 (0)