@annotorious/svelte 3.0.0-rc.9 → 3.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.
- package/dist/MouseOverTooltip.svelte.d.ts +1 -1
- package/dist/annotorious-svelte.es.js +17 -14
- package/dist/annotorious-svelte.es.js.map +1 -1
- package/dist/annotorious-svelte.es10.js +2 -122
- package/dist/annotorious-svelte.es10.js.map +1 -1
- package/dist/annotorious-svelte.es11.js +2 -2
- package/dist/annotorious-svelte.es11.js.map +1 -1
- package/dist/annotorious-svelte.es12.js +101 -15
- package/dist/annotorious-svelte.es12.js.map +1 -1
- package/dist/annotorious-svelte.es14.js +54 -7
- package/dist/annotorious-svelte.es14.js.map +1 -1
- package/dist/annotorious-svelte.es2.js +30 -25
- package/dist/annotorious-svelte.es2.js.map +1 -1
- package/dist/annotorious-svelte.es3.js +114 -2
- package/dist/annotorious-svelte.es3.js.map +1 -1
- package/dist/annotorious-svelte.es4.js +127 -9
- package/dist/annotorious-svelte.es4.js.map +1 -1
- package/dist/annotorious-svelte.es5.js +66 -1264
- package/dist/annotorious-svelte.es5.js.map +1 -1
- package/dist/annotorious-svelte.es6.js +37 -105
- package/dist/annotorious-svelte.es6.js.map +1 -1
- package/dist/annotorious-svelte.es7.js +24 -118
- package/dist/annotorious-svelte.es7.js.map +1 -1
- package/dist/annotorious-svelte.es8.js +17 -307
- package/dist/annotorious-svelte.es8.js.map +1 -1
- package/dist/annotorious-svelte.es9.js +89 -22133
- package/dist/annotorious-svelte.es9.js.map +1 -1
- package/dist/index.d.ts +9 -11
- package/dist/osd/OpenSeadragonAnnotator.svelte.d.ts +1 -1
- package/dist/osd/OpenSeadragonPopup.svelte.d.ts +1 -1
- package/dist/osd/index.d.ts +0 -1
- package/package.json +20 -14
- package/src/index.ts +42 -22
- package/src/osd/OpenSeadragonAnnotator.svelte +2 -2
- package/tsconfig.json +2 -3
- package/vite.config.js +8 -5
- package/dist/annotorious-svelte.es13.js +0 -7
- package/dist/annotorious-svelte.es13.js.map +0 -1
- package/dist/annotorious-svelte.es15.js +0 -10
- package/dist/annotorious-svelte.es15.js.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/osd/index.d.ts.map +0 -1
- /package/dist/{style.css → annotorious-svelte.css} +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -1,14 +1,12 @@
|
|
|
1
|
+
import { createAnonymousGuest as _createAnonymousGuest, createBody as _createBody, defaultColorProvider as _defaultColorProvider, Origin as _Origin, UserSelectAction as _UserSelectAction } from '@annotorious/core';
|
|
2
|
+
import { ShapeType as _ShapeType } from '@annotorious/annotorious';
|
|
1
3
|
export * from './osd';
|
|
2
4
|
export { default as MouseOverTooltip } from './MouseOverTooltip.svelte';
|
|
3
|
-
export type { Annotation, AnnotationBody, AnnotationTarget, Annotator, AnnotatorState, Color, DrawingStyle, FormatAdapter, ParseResult, User, W3CAnnotation, W3CAnnotationBody, W3CAnnotationTarget
|
|
4
|
-
export
|
|
5
|
-
|
|
6
|
-
export declare const
|
|
7
|
-
export declare const createBody: (annotation: import("@annotorious/core/src/model").Annotation, payload: {
|
|
8
|
-
[key: string]: any;
|
|
9
|
-
}, created?: Date, creator?: import("@annotorious/core/src/model").User) => import("@annotorious/core/src/model").AnnotationBody;
|
|
10
|
-
export type { ImageAnnotator, ImageAnnotation, ImageAnnotatorState, Polygon, Rectangle, Shape } from '@annotorious/annotorious';
|
|
11
|
-
import { ShapeType as _ShapeType } from '@annotorious/annotorious';
|
|
5
|
+
export type { Annotation, AnnotationBody, AnnotationTarget, Annotator, AnnotatorState, Appearance, AppearanceProvider, Color, DrawingStyle, Filter, FormatAdapter, HoverState, LifecycleEvents, ParseResult, PresentUser, Selection, SelectionState, Store, StoreChangeEvent, StoreObserver, SvelteAnnotator, SvelteAnnotatorState, User, W3CAnnotation, W3CAnnotationBody, W3CAnnotationTarget } from '@annotorious/core';
|
|
6
|
+
export { _createAnonymousGuest as createAnonymousGuest, _createBody as createBody, _defaultColorProvider as defaultColorProvider, _Origin as Origin, _UserSelectAction as UserSelectAction };
|
|
7
|
+
export type { AnnotoriousOpts, DrawingMode, DrawingTool, ImageAnnotator as AnnotoriousImageAnnotator, ImageAnnotation, ImageAnnotator, ImageAnnotatorState, Polygon, PolygonGeometry, Rectangle, RectangleGeometry, Shape } from '@annotorious/annotorious';
|
|
8
|
+
export declare const createImageAnnotator: <E extends unknown = import('@annotorious/annotorious').ImageAnnotation>(image: string | HTMLImageElement | HTMLCanvasElement, options?: import('@annotorious/annotorious').AnnotoriousOpts<import('@annotorious/annotorious').ImageAnnotation, E>) => import('@annotorious/annotorious').ImageAnnotator<E>;
|
|
12
9
|
export declare const ShapeType: typeof _ShapeType;
|
|
13
|
-
export declare const W3CImageFormat: (source: string,
|
|
14
|
-
|
|
10
|
+
export declare const W3CImageFormat: (source: string, opts?: import('@annotorious/annotorious').W3CImageFormatAdapterOpts) => import('@annotorious/annotorious').W3CImageFormatAdapter;
|
|
11
|
+
export type { OpenSeadragonAnnotator as AnnotoriousOpenSeadragonAnnotator } from '@annotorious/openseadragon';
|
|
12
|
+
export type { Viewer } from 'openseadragon';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { SvelteComponent as default } from 'svelte';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { SvelteComponent as default } from 'svelte';
|
package/dist/osd/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@annotorious/svelte",
|
|
3
|
-
"version": "3.0.0
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Annotorious Svelte bindings",
|
|
5
5
|
"author": "Rainer Simon",
|
|
6
6
|
"license": "BSD-3-Clause",
|
|
@@ -12,27 +12,33 @@
|
|
|
12
12
|
"test": "echo 'Skipping tests in @annotorious/svelte package'"
|
|
13
13
|
},
|
|
14
14
|
"module": "./dist/annotorious-svelte.es.js",
|
|
15
|
-
"types": "./
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
16
|
"svelte": "./src/index.ts",
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@sveltejs/vite-plugin-svelte": "^
|
|
19
|
-
"@tsconfig/svelte": "^
|
|
20
|
-
"@types/openseadragon": "^3.0.
|
|
21
|
-
"svelte": "^
|
|
22
|
-
"svelte-check": "^3.
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"vite
|
|
18
|
+
"@sveltejs/vite-plugin-svelte": "^3.1.2",
|
|
19
|
+
"@tsconfig/svelte": "^5.0.4",
|
|
20
|
+
"@types/openseadragon": "^3.0.10",
|
|
21
|
+
"svelte": "^4.2.19",
|
|
22
|
+
"svelte-check": "^3.8.6",
|
|
23
|
+
"svelte-preprocess": "^6.0.2",
|
|
24
|
+
"tslib": "^2.7.0",
|
|
25
|
+
"typescript": "5.5.4",
|
|
26
|
+
"vite": "^5.4.2",
|
|
27
|
+
"vite-plugin-dts": "^4.0.3"
|
|
27
28
|
},
|
|
28
29
|
"peerDependencies": {
|
|
29
|
-
"
|
|
30
|
-
"openseadragon": "^3.0.0 || ^4.0.0"
|
|
30
|
+
"openseadragon": "^3.0.0 || ^4.0.0 || ^5.0.0"
|
|
31
31
|
},
|
|
32
32
|
"peerDependenciesMeta": {
|
|
33
33
|
"openseadragon": {
|
|
34
34
|
"optional": true
|
|
35
35
|
}
|
|
36
36
|
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@annotorious/core": "3.0.0",
|
|
39
|
+
"@annotorious/annotorious": "3.0.0",
|
|
40
|
+
"@annotorious/openseadragon": "3.0.0",
|
|
41
|
+
"@neodrag/svelte": "^2.0.6"
|
|
42
|
+
},
|
|
37
43
|
"sideEffects": false
|
|
38
|
-
}
|
|
44
|
+
}
|
package/src/index.ts
CHANGED
|
@@ -9,54 +9,74 @@ export type {
|
|
|
9
9
|
AnnotationTarget,
|
|
10
10
|
Annotator,
|
|
11
11
|
AnnotatorState,
|
|
12
|
+
Appearance,
|
|
13
|
+
AppearanceProvider,
|
|
12
14
|
Color,
|
|
13
15
|
DrawingStyle,
|
|
16
|
+
Filter,
|
|
14
17
|
FormatAdapter,
|
|
15
|
-
ParseResult,
|
|
16
|
-
User,
|
|
17
|
-
W3CAnnotation,
|
|
18
|
-
W3CAnnotationBody,
|
|
19
|
-
W3CAnnotationTarget,
|
|
20
|
-
W3CSelector
|
|
21
|
-
} from '@annotorious/core/src/model';
|
|
22
|
-
|
|
23
|
-
export type {
|
|
24
18
|
HoverState,
|
|
19
|
+
LifecycleEvents,
|
|
20
|
+
ParseResult,
|
|
21
|
+
PresentUser,
|
|
25
22
|
Selection,
|
|
26
23
|
SelectionState,
|
|
27
24
|
Store,
|
|
28
25
|
StoreChangeEvent,
|
|
29
26
|
StoreObserver,
|
|
30
27
|
SvelteAnnotator,
|
|
31
|
-
SvelteAnnotatorState
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
} from '@annotorious/core
|
|
37
|
-
|
|
38
|
-
export const PointerSelectAction = _PointerSelectAction;
|
|
28
|
+
SvelteAnnotatorState,
|
|
29
|
+
User,
|
|
30
|
+
W3CAnnotation,
|
|
31
|
+
W3CAnnotationBody,
|
|
32
|
+
W3CAnnotationTarget
|
|
33
|
+
} from '@annotorious/core';
|
|
39
34
|
|
|
40
35
|
import {
|
|
41
|
-
|
|
42
|
-
|
|
36
|
+
createAnonymousGuest as _createAnonymousGuest,
|
|
37
|
+
createBody as _createBody,
|
|
38
|
+
defaultColorProvider as _defaultColorProvider,
|
|
39
|
+
Origin as _Origin,
|
|
40
|
+
UserSelectAction as _UserSelectAction
|
|
41
|
+
} from '@annotorious/core';
|
|
43
42
|
|
|
44
|
-
export
|
|
43
|
+
export {
|
|
44
|
+
_createAnonymousGuest as createAnonymousGuest,
|
|
45
|
+
_createBody as createBody,
|
|
46
|
+
_defaultColorProvider as defaultColorProvider,
|
|
47
|
+
_Origin as Origin,
|
|
48
|
+
_UserSelectAction as UserSelectAction
|
|
49
|
+
}
|
|
45
50
|
|
|
46
51
|
// Essential re-exports from @annotorious/annotorious
|
|
47
52
|
export type {
|
|
48
|
-
|
|
53
|
+
AnnotoriousOpts,
|
|
54
|
+
DrawingMode,
|
|
55
|
+
DrawingTool,
|
|
56
|
+
ImageAnnotator as AnnotoriousImageAnnotator,
|
|
49
57
|
ImageAnnotation,
|
|
58
|
+
ImageAnnotator,
|
|
50
59
|
ImageAnnotatorState,
|
|
51
60
|
Polygon,
|
|
61
|
+
PolygonGeometry,
|
|
52
62
|
Rectangle,
|
|
63
|
+
RectangleGeometry,
|
|
53
64
|
Shape
|
|
54
65
|
} from '@annotorious/annotorious';
|
|
55
66
|
|
|
56
67
|
import {
|
|
68
|
+
createImageAnnotator as _createImageAnnotator,
|
|
57
69
|
ShapeType as _ShapeType,
|
|
58
70
|
W3CImageFormat as _W3CImageFormat
|
|
59
71
|
} from '@annotorious/annotorious';
|
|
60
72
|
|
|
73
|
+
export const createImageAnnotator = _createImageAnnotator;
|
|
61
74
|
export const ShapeType = _ShapeType;
|
|
62
|
-
export const W3CImageFormat = _W3CImageFormat;
|
|
75
|
+
export const W3CImageFormat = _W3CImageFormat;
|
|
76
|
+
|
|
77
|
+
// Essential re-exports from @annotorious/openseadragon
|
|
78
|
+
export type {
|
|
79
|
+
OpenSeadragonAnnotator as AnnotoriousOpenSeadragonAnnotator
|
|
80
|
+
} from '@annotorious/openseadragon';
|
|
81
|
+
|
|
82
|
+
export type { Viewer } from 'openseadragon';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
2
|
import { setContext } from 'svelte';
|
|
3
|
-
import { SvelteAnnotator, SvelteAnnotatorState, toSvelteStore } from '@annotorious/core';
|
|
4
|
-
import { createOSDAnnotator, ImageAnnotation } from '@annotorious/openseadragon';
|
|
3
|
+
import { type SvelteAnnotator, type SvelteAnnotatorState, toSvelteStore } from '@annotorious/core';
|
|
4
|
+
import { createOSDAnnotator, type ImageAnnotation } from '@annotorious/openseadragon';
|
|
5
5
|
import type OpenSeadragon from 'openseadragon';
|
|
6
6
|
|
|
7
7
|
/** props **/
|
package/tsconfig.json
CHANGED
|
@@ -4,11 +4,9 @@
|
|
|
4
4
|
"baseUrl": "src",
|
|
5
5
|
"checkJs": true,
|
|
6
6
|
"declaration": true,
|
|
7
|
-
"declarationMap": true,
|
|
8
7
|
"esModuleInterop": true,
|
|
9
8
|
"forceConsistentCasingInFileNames": true,
|
|
10
9
|
"ignoreDeprecations": "5.0",
|
|
11
|
-
"importsNotUsedAsValues": "error",
|
|
12
10
|
"incremental": false,
|
|
13
11
|
"isolatedModules": true,
|
|
14
12
|
"module": "ESNext",
|
|
@@ -18,7 +16,8 @@
|
|
|
18
16
|
"skipLibCheck": false,
|
|
19
17
|
"sourceMap": true,
|
|
20
18
|
"target": "ESNext",
|
|
21
|
-
"types": ["svelte"]
|
|
19
|
+
"types": ["svelte"],
|
|
20
|
+
"verbatimModuleSyntax": true
|
|
22
21
|
},
|
|
23
22
|
"include": ["./src/**/*", "./test/**/*"],
|
|
24
23
|
"exclude": ["node_modules", "dist"]
|
package/vite.config.js
CHANGED
|
@@ -24,14 +24,17 @@ export default defineConfig({
|
|
|
24
24
|
fileName: (format) => `annotorious-svelte.${format}.js`
|
|
25
25
|
},
|
|
26
26
|
rollupOptions: {
|
|
27
|
-
external: [
|
|
27
|
+
external: [
|
|
28
|
+
...Object.keys(packageJson.peerDependencies),
|
|
29
|
+
'@annotorious/core',
|
|
30
|
+
'@annotorious/annotorious',
|
|
31
|
+
'@annotorious/openseadragon'
|
|
32
|
+
],
|
|
28
33
|
output: {
|
|
29
34
|
preserveModules: true,
|
|
30
|
-
|
|
31
|
-
openseadragon: 'OpenSeadragon'
|
|
32
|
-
}
|
|
35
|
+
assetFileNames: 'annotorious-svelte.[ext]'
|
|
33
36
|
}
|
|
34
37
|
},
|
|
35
38
|
sourcemap: true
|
|
36
39
|
}
|
|
37
|
-
});
|
|
40
|
+
});
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"annotorious-svelte.es13.js","sources":["../../../node_modules/uuid/dist/esm-browser/native.js"],"sourcesContent":["const randomUUID = typeof crypto !== 'undefined' && crypto.randomUUID && crypto.randomUUID.bind(crypto);\nexport default {\n randomUUID\n};"],"names":["randomUUID","native"],"mappings":"AAAA,MAAMA,IAAa,OAAO,SAAW,OAAe,OAAO,cAAc,OAAO,WAAW,KAAK,MAAM,GACvFC,IAAA;AAAA,EACb,YAAAD;AACF;","x_google_ignoreList":[0]}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
const i = [];
|
|
2
|
-
for (let n = 0; n < 256; ++n)
|
|
3
|
-
i.push((n + 256).toString(16).slice(1));
|
|
4
|
-
function c(n, u = 0) {
|
|
5
|
-
return i[n[u + 0]] + i[n[u + 1]] + i[n[u + 2]] + i[n[u + 3]] + "-" + i[n[u + 4]] + i[n[u + 5]] + "-" + i[n[u + 6]] + i[n[u + 7]] + "-" + i[n[u + 8]] + i[n[u + 9]] + "-" + i[n[u + 10]] + i[n[u + 11]] + i[n[u + 12]] + i[n[u + 13]] + i[n[u + 14]] + i[n[u + 15]];
|
|
6
|
-
}
|
|
7
|
-
export {
|
|
8
|
-
c as unsafeStringify
|
|
9
|
-
};
|
|
10
|
-
//# sourceMappingURL=annotorious-svelte.es15.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"annotorious-svelte.es15.js","sources":["../../../node_modules/uuid/dist/esm-browser/stringify.js"],"sourcesContent":["import validate from './validate.js';\n/**\n * Convert array of 16 byte values to UUID string format of the form:\n * XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX\n */\n\nconst byteToHex = [];\n\nfor (let i = 0; i < 256; ++i) {\n byteToHex.push((i + 0x100).toString(16).slice(1));\n}\n\nexport function unsafeStringify(arr, offset = 0) {\n // Note: Be careful editing this code! It's been tuned for performance\n // and works in ways you may not expect. See https://github.com/uuidjs/uuid/pull/434\n return byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + '-' + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + '-' + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + '-' + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + '-' + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]];\n}\n\nfunction stringify(arr, offset = 0) {\n const uuid = unsafeStringify(arr, offset); // Consistency check for valid UUID. If this throws, it's likely due to one\n // of the following:\n // - One or more input array values don't map to a hex octet (leading to\n // \"undefined\" in the uuid)\n // - Invalid input values for the RFC `version` or `variant` fields\n\n if (!validate(uuid)) {\n throw TypeError('Stringified UUID is invalid');\n }\n\n return uuid;\n}\n\nexport default stringify;"],"names":["byteToHex","i","unsafeStringify","arr","offset"],"mappings":"AAMA,MAAMA,IAAY,CAAA;AAElB,SAASC,IAAI,GAAGA,IAAI,KAAK,EAAEA;AACzB,EAAAD,EAAU,MAAMC,IAAI,KAAO,SAAS,EAAE,EAAE,MAAM,CAAC,CAAC;AAG3C,SAASC,EAAgBC,GAAKC,IAAS,GAAG;AAG/C,SAAOJ,EAAUG,EAAIC,IAAS,CAAC,CAAC,IAAIJ,EAAUG,EAAIC,IAAS,CAAC,CAAC,IAAIJ,EAAUG,EAAIC,IAAS,CAAC,CAAC,IAAIJ,EAAUG,EAAIC,IAAS,CAAC,CAAC,IAAI,MAAMJ,EAAUG,EAAIC,IAAS,CAAC,CAAC,IAAIJ,EAAUG,EAAIC,IAAS,CAAC,CAAC,IAAI,MAAMJ,EAAUG,EAAIC,IAAS,CAAC,CAAC,IAAIJ,EAAUG,EAAIC,IAAS,CAAC,CAAC,IAAI,MAAMJ,EAAUG,EAAIC,IAAS,CAAC,CAAC,IAAIJ,EAAUG,EAAIC,IAAS,CAAC,CAAC,IAAI,MAAMJ,EAAUG,EAAIC,IAAS,EAAE,CAAC,IAAIJ,EAAUG,EAAIC,IAAS,EAAE,CAAC,IAAIJ,EAAUG,EAAIC,IAAS,EAAE,CAAC,IAAIJ,EAAUG,EAAIC,IAAS,EAAE,CAAC,IAAIJ,EAAUG,EAAIC,IAAS,EAAE,CAAC,IAAIJ,EAAUG,EAAIC,IAAS,EAAE,CAAC;AACnf;","x_google_ignoreList":[0]}
|
package/dist/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,OAAO,CAAC;AAEtB,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AAGxE,YAAY,EACV,UAAU,EACV,cAAc,EACd,gBAAgB,EAChB,SAAS,EACT,cAAc,EACd,KAAK,EACL,YAAY,EACZ,aAAa,EACb,WAAW,EACX,IAAI,EACJ,aAAa,EACb,iBAAiB,EACjB,mBAAmB,EACnB,WAAW,EACZ,MAAM,6BAA6B,CAAC;AAErC,YAAY,EACV,UAAU,EACV,SAAS,EACT,cAAc,EACd,KAAK,EACL,gBAAgB,EAChB,aAAa,EACb,eAAe,EACf,oBAAoB,EACrB,MAAM,6BAA6B,CAAC;AAErC,OAAO,EACL,mBAAmB,IAAI,oBAAoB,EAC5C,MAAM,6BAA6B,CAAC;AAErC,eAAO,MAAM,mBAAmB,6BAAuB,CAAC;AAMxD,eAAO,MAAM,UAAU;;gIAAc,CAAC;AAGtC,YAAY,EACV,cAAc,EACd,eAAe,EACf,mBAAmB,EACnB,OAAO,EACP,SAAS,EACT,KAAK,EACN,MAAM,0BAA0B,CAAC;AAElC,OAAO,EACL,SAAS,IAAI,UAAU,EAExB,MAAM,0BAA0B,CAAC;AAElC,eAAO,MAAM,SAAS,mBAAa,CAAC;AACpC,eAAO,MAAM,cAAc,iGAAkB,CAAC"}
|
package/dist/osd/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/osd/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,sBAAsB,EAAE,MAAM,iCAAiC,CAAC;AACpF,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,6BAA6B,CAAC"}
|
|
File without changes
|