@ot-builder/io-bin-font
Advanced tools
+7
-6
@@ -5,8 +5,9 @@ "use strict"; | ||
| exports.createConfig = createConfig; | ||
| const IoBinEncoding = require("@ot-builder/io-bin-encoding"); | ||
| const IoBinExtPrivate = require("@ot-builder/io-bin-ext-private"); | ||
| const IoBinGlyphStore = require("@ot-builder/io-bin-glyph-store"); | ||
| const IoBinLayout = require("@ot-builder/io-bin-layout"); | ||
| const IoBinMetadata = require("@ot-builder/io-bin-metadata"); | ||
| const IoBinVttPrivate = require("@ot-builder/io-bin-vtt-private"); | ||
| const tslib_1 = require("tslib"); | ||
| const IoBinEncoding = tslib_1.__importStar(require("@ot-builder/io-bin-encoding")); | ||
| const IoBinExtPrivate = tslib_1.__importStar(require("@ot-builder/io-bin-ext-private")); | ||
| const IoBinGlyphStore = tslib_1.__importStar(require("@ot-builder/io-bin-glyph-store")); | ||
| const IoBinLayout = tslib_1.__importStar(require("@ot-builder/io-bin-layout")); | ||
| const IoBinMetadata = tslib_1.__importStar(require("@ot-builder/io-bin-metadata")); | ||
| const IoBinVttPrivate = tslib_1.__importStar(require("@ot-builder/io-bin-vtt-private")); | ||
| function createConfig(partial) { | ||
@@ -13,0 +14,0 @@ return { |
+1
-1
@@ -0,5 +1,5 @@ | ||
| export { readSfntOtf, readSfntTtc, TableSlice, TableSliceCollection, writeSfntOtf, writeSfntOtfFromTableSlices, writeSfntTtc, writeSfntTtcFromTableSlices } from "@ot-builder/io-bin-sfnt"; | ||
| export { FontIoConfig } from "./config"; | ||
| export { readFont } from "./read"; | ||
| export { writeFont } from "./write"; | ||
| export { readSfntOtf, readSfntTtc, TableSlice, TableSliceCollection, writeSfntOtf, writeSfntOtfFromTableSlices, writeSfntTtc, writeSfntTtcFromTableSlices } from "@ot-builder/io-bin-sfnt"; | ||
| //# sourceMappingURL=index.d.ts.map |
+5
-5
| "use strict"; | ||
| Object.defineProperty(exports, "__esModule", { value: true }); | ||
| exports.writeSfntTtcFromTableSlices = exports.writeSfntTtc = exports.writeSfntOtfFromTableSlices = exports.writeSfntOtf = exports.readSfntTtc = exports.readSfntOtf = exports.writeFont = exports.readFont = void 0; | ||
| var read_1 = require("./read"); | ||
| Object.defineProperty(exports, "readFont", { enumerable: true, get: function () { return read_1.readFont; } }); | ||
| var write_1 = require("./write"); | ||
| Object.defineProperty(exports, "writeFont", { enumerable: true, get: function () { return write_1.writeFont; } }); | ||
| exports.writeFont = exports.readFont = exports.writeSfntTtcFromTableSlices = exports.writeSfntTtc = exports.writeSfntOtfFromTableSlices = exports.writeSfntOtf = exports.readSfntTtc = exports.readSfntOtf = void 0; | ||
| var io_bin_sfnt_1 = require("@ot-builder/io-bin-sfnt"); | ||
@@ -15,2 +11,6 @@ Object.defineProperty(exports, "readSfntOtf", { enumerable: true, get: function () { return io_bin_sfnt_1.readSfntOtf; } }); | ||
| Object.defineProperty(exports, "writeSfntTtcFromTableSlices", { enumerable: true, get: function () { return io_bin_sfnt_1.writeSfntTtcFromTableSlices; } }); | ||
| var read_1 = require("./read"); | ||
| Object.defineProperty(exports, "readFont", { enumerable: true, get: function () { return read_1.readFont; } }); | ||
| var write_1 = require("./write"); | ||
| Object.defineProperty(exports, "writeFont", { enumerable: true, get: function () { return write_1.writeFont; } }); | ||
| //# sourceMappingURL=index.js.map |
+3
-3
| import * as Ot from "@ot-builder/ot"; | ||
| import { Sfnt } from "@ot-builder/ot-sfnt"; | ||
| import { Data } from "@ot-builder/prelude"; | ||
| import { FontIoConfig } from "./config"; | ||
| import type { Sfnt } from "@ot-builder/ot-sfnt"; | ||
| import type { Data } from "@ot-builder/prelude"; | ||
| import { type FontIoConfig } from "./config"; | ||
| export declare function readFont<GS extends Ot.GlyphStore>(sfnt: Sfnt, gsf: Data.OrderStoreFactoryWithDefault<Ot.Glyph, GS>, partialConfig?: FontIoConfig): Ot.Font<GS>; | ||
| //# sourceMappingURL=read.d.ts.map |
+2
-1
| "use strict"; | ||
| Object.defineProperty(exports, "__esModule", { value: true }); | ||
| exports.readFont = readFont; | ||
| const tslib_1 = require("tslib"); | ||
| const io_bin_encoding_1 = require("@ot-builder/io-bin-encoding"); | ||
@@ -11,3 +12,3 @@ const io_bin_ext_private_1 = require("@ot-builder/io-bin-ext-private"); | ||
| const io_bin_vtt_private_1 = require("@ot-builder/io-bin-vtt-private"); | ||
| const Ot = require("@ot-builder/ot"); | ||
| const Ot = tslib_1.__importStar(require("@ot-builder/ot")); | ||
| const config_1 = require("./config"); | ||
@@ -14,0 +15,0 @@ function readFont(sfnt, gsf, partialConfig = {}) { |
+1
-1
| import * as Ot from "@ot-builder/ot"; | ||
| import { Sfnt } from "@ot-builder/ot-sfnt"; | ||
| import { FontIoConfig } from "./config"; | ||
| import { type FontIoConfig } from "./config"; | ||
| export declare function writeFont<GS extends Ot.GlyphStore>(font: Ot.Font<GS>, partialConfig?: FontIoConfig): Sfnt; | ||
| //# sourceMappingURL=write.d.ts.map |
+2
-1
| "use strict"; | ||
| Object.defineProperty(exports, "__esModule", { value: true }); | ||
| exports.writeFont = writeFont; | ||
| const tslib_1 = require("tslib"); | ||
| const io_bin_encoding_1 = require("@ot-builder/io-bin-encoding"); | ||
@@ -12,3 +13,3 @@ const io_bin_ext_private_1 = require("@ot-builder/io-bin-ext-private"); | ||
| const io_bin_vtt_private_1 = require("@ot-builder/io-bin-vtt-private"); | ||
| const Ot = require("@ot-builder/ot"); | ||
| const Ot = tslib_1.__importStar(require("@ot-builder/ot")); | ||
| const ot_sfnt_1 = require("@ot-builder/ot-sfnt"); | ||
@@ -15,0 +16,0 @@ const config_1 = require("./config"); |
+20
-20
| { | ||
| "name": "@ot-builder/io-bin-font", | ||
| "version": "1.7.9", | ||
| "version": "1.8.0", | ||
| "license": "MIT", | ||
@@ -27,21 +27,21 @@ "repository": { | ||
| "tslib": "^2.8.1", | ||
| "@ot-builder/io-bin-encoding": "1.7.9", | ||
| "@ot-builder/io-bin-ext-private": "1.7.9", | ||
| "@ot-builder/io-bin-glyph-store": "1.8.0", | ||
| "@ot-builder/io-bin-layout": "1.7.9", | ||
| "@ot-builder/io-bin-metadata": "1.7.8", | ||
| "@ot-builder/io-bin-name": "1.7.9", | ||
| "@ot-builder/io-bin-sfnt": "1.7.8", | ||
| "@ot-builder/io-bin-vtt-private": "1.7.9", | ||
| "@ot-builder/ot": "1.7.8", | ||
| "@ot-builder/ot-glyphs": "1.7.8", | ||
| "@ot-builder/ot-metadata": "1.7.8", | ||
| "@ot-builder/ot-sfnt": "1.7.8", | ||
| "@ot-builder/prelude": "1.7.7", | ||
| "@ot-builder/ot-encoding": "1.7.8", | ||
| "@ot-builder/ot-ext-private": "1.7.8", | ||
| "@ot-builder/ot-layout": "1.7.8", | ||
| "@ot-builder/ot-name": "1.7.8", | ||
| "@ot-builder/ot-vtt-private": "1.7.8", | ||
| "@ot-builder/bin-util": "1.7.8" | ||
| "@ot-builder/io-bin-encoding": "1.8.0", | ||
| "@ot-builder/io-bin-ext-private": "1.8.0", | ||
| "@ot-builder/io-bin-glyph-store": "1.9.0", | ||
| "@ot-builder/io-bin-layout": "1.8.0", | ||
| "@ot-builder/io-bin-metadata": "1.8.0", | ||
| "@ot-builder/io-bin-name": "1.8.0", | ||
| "@ot-builder/io-bin-sfnt": "1.8.0", | ||
| "@ot-builder/io-bin-vtt-private": "1.8.0", | ||
| "@ot-builder/ot": "1.8.0", | ||
| "@ot-builder/ot-glyphs": "1.8.0", | ||
| "@ot-builder/ot-metadata": "1.8.0", | ||
| "@ot-builder/ot-sfnt": "1.8.0", | ||
| "@ot-builder/prelude": "1.8.0", | ||
| "@ot-builder/ot-encoding": "1.8.0", | ||
| "@ot-builder/ot-ext-private": "1.8.0", | ||
| "@ot-builder/ot-layout": "1.8.0", | ||
| "@ot-builder/ot-name": "1.8.0", | ||
| "@ot-builder/ot-vtt-private": "1.8.0", | ||
| "@ot-builder/bin-util": "1.8.0" | ||
| }, | ||
@@ -48,0 +48,0 @@ "devDependencies": { |
13918
2.19%242
1.26%+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
Updated
Updated
Updated
Updated
Updated
Updated
Updated