@mlightcad/libredwg-web 0.6.6 → 0.6.9
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/libredwg-web.js +24 -3
- package/dist/libredwg-web.umd.cjs +24 -3
- package/lib/converter/converter.js +17 -1
- package/lib/converter/entityConverter.js +1 -3
- package/lib/enums.d.ts +340 -0
- package/lib/enums.js +351 -0
- package/lib/libredwg-web.js +33 -32
- package/lib/svg/ToSVG.d.ts +16 -0
- package/lib/svg/ToSVG.js +235 -0
- package/lib/svg/svgConverter.js +1 -1
- package/lib/svg/util/boundingBox.d.ts +9 -0
- package/lib/svg/util/boundingBox.js +19 -0
- package/lib/svg/util/box2d.d.ts +9 -0
- package/lib/svg/util/box2d.js +19 -0
- package/lib/svg/util/denormalise.d.ts +19 -0
- package/lib/svg/util/denormalise.js +24 -0
- package/lib/svg/util/entityToPolyline.d.ts +2 -0
- package/lib/svg/util/entityToPolyline.js +5 -0
- package/lib/svg/util/getRGBForEntity.d.ts +3 -0
- package/lib/svg/util/getRGBForEntity.js +9 -0
- package/lib/svg/util/rgbToColorAttribute.d.ts +6 -0
- package/lib/svg/util/rgbToColorAttribute.js +4 -0
- package/lib/svg/util/rotate.d.ts +6 -0
- package/lib/svg/util/rotate.js +9 -0
- package/lib/svg/util/toPiecewiseBezier.d.ts +9 -0
- package/lib/svg/util/toPiecewiseBezier.js +24 -0
- package/lib/svg/util/transformBoundingBoxAndElement.d.ts +19 -0
- package/lib/svg/util/transformBoundingBoxAndElement.js +20 -0
- package/lib/types/common.d.ts +2 -1
- package/lib/types/database.d.ts +17 -0
- package/lib/types/database.js +2 -0
- package/lib/types/entities/arc.d.ts +12 -0
- package/lib/types/entities/arc.js +2 -0
- package/lib/types/entities/circle.d.ts +10 -0
- package/lib/types/entities/circle.js +2 -0
- package/lib/types/entities/dimension.d.ts +108 -0
- package/lib/types/entities/dimension.js +2 -0
- package/lib/types/entities/ellipse.d.ts +12 -0
- package/lib/types/entities/ellipse.js +2 -0
- package/lib/types/entities/entity.d.ts +25 -0
- package/lib/types/entities/entity.js +2 -0
- package/lib/types/entities/hatch.d.ts +142 -0
- package/lib/types/entities/hatch.js +2 -0
- package/lib/types/entities/image.d.ts +36 -0
- package/lib/types/entities/image.js +2 -0
- package/lib/types/entities/index.d.ts +24 -0
- package/lib/types/entities/index.js +24 -0
- package/lib/types/entities/insert.d.ts +18 -0
- package/lib/types/entities/insert.js +2 -0
- package/lib/types/entities/leader.d.ts +28 -0
- package/lib/types/entities/leader.js +2 -0
- package/lib/types/entities/line.d.ts +10 -0
- package/lib/types/entities/line.js +2 -0
- package/lib/types/entities/lwpolyline.d.ts +19 -0
- package/lib/types/entities/lwpolyline.js +2 -0
- package/lib/types/entities/mtext.d.ts +37 -0
- package/lib/types/entities/mtext.js +2 -0
- package/lib/types/entities/point.d.ts +10 -0
- package/lib/types/entities/point.js +2 -0
- package/lib/types/entities/polyline.d.ts +34 -0
- package/lib/types/entities/polyline.js +2 -0
- package/lib/types/entities/ray.d.ts +8 -0
- package/lib/types/entities/ray.js +2 -0
- package/lib/types/entities/section.d.ts +19 -0
- package/lib/types/entities/section.js +2 -0
- package/lib/types/entities/solid.d.ts +9 -0
- package/lib/types/entities/solid.js +2 -0
- package/lib/types/entities/spline.d.ts +21 -0
- package/lib/types/entities/spline.js +2 -0
- package/lib/types/entities/table.d.ts +52 -0
- package/lib/types/entities/table.js +2 -0
- package/lib/types/entities/text.d.ts +38 -0
- package/lib/types/entities/text.js +2 -0
- package/lib/types/entities/vertex.d.ts +25 -0
- package/lib/types/entities/vertex.js +2 -0
- package/lib/types/entities/viewport.d.ts +105 -0
- package/lib/types/entities/viewport.js +2 -0
- package/lib/types/entities/xline.d.ts +8 -0
- package/lib/types/entities/xline.js +2 -0
- package/lib/types/enums.d.ts +8 -0
- package/lib/types/enums.js +9 -0
- package/lib/types/objects/common.d.ts +5 -0
- package/lib/types/objects/common.js +2 -0
- package/lib/types/objects/imageDef.d.ts +10 -0
- package/lib/types/objects/imageDef.js +2 -0
- package/lib/types/objects/index.d.ts +5 -0
- package/lib/types/objects/index.js +5 -0
- package/lib/types/objects/layout.d.ts +23 -0
- package/lib/types/objects/layout.js +2 -0
- package/lib/types/objects/plotSetting.d.ts +35 -0
- package/lib/types/objects/plotSetting.js +2 -0
- package/lib/types/shared/xdata.d.ts +10 -0
- package/lib/types/shared/xdata.js +2 -0
- package/lib/types/tables/blockRecord.d.ts +12 -0
- package/lib/types/tables/blockRecord.js +2 -0
- package/lib/types/tables/dimStyle.d.ts +84 -0
- package/lib/types/tables/dimStyle.js +2 -0
- package/lib/types/tables/index.d.ts +8 -0
- package/lib/types/tables/index.js +8 -0
- package/lib/types/tables/layer.d.ts +16 -0
- package/lib/types/tables/layer.js +2 -0
- package/lib/types/tables/ltype.d.ts +21 -0
- package/lib/types/tables/ltype.js +2 -0
- package/lib/types/tables/style.d.ts +13 -0
- package/lib/types/tables/style.js +2 -0
- package/lib/types/tables/table.d.ts +9 -0
- package/lib/types/tables/table.js +2 -0
- package/lib/types/tables/vport.d.ts +42 -0
- package/lib/types/tables/vport.js +2 -0
- package/package.json +1 -1
- package/wasm/libredwg-web.d.ts +529 -529
- package/wasm/libredwg-web.js +15 -15
- package/wasm/libredwg-web.wasm +0 -0
- package/lib/converter/stringConverter.d.ts +0 -3
- package/lib/converter/stringConverter.js +0 -7
- package/lib/database/entities/unknown.d.ts +0 -7
- package/lib/database/entities/unknown.js +0 -2
- package/lib/database/objects/unknown.d.ts +0 -7
- package/lib/database/objects/unknown.js +0 -2
- package/lib/utils/common.d.ts +0 -4
- package/lib/utils/common.js +0 -12
- package/lib/utils/index.d.ts +0 -2
- package/lib/utils/index.js +0 -2
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.