brep-io-kernel 1.0.26 → 1.0.28
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/README.md +8 -0
- package/dist-kernel/brep-kernel.js +20819 -19752
- package/package.json +6 -5
- package/src/BREP/SolidMethods/fillet copy.js +1532 -0
- package/src/UI/fileManagerWidget.js +1 -10
- package/src/UI/startupTour.js +659 -0
- package/src/UI/toolbarButtons/newButton.js +21 -0
- package/src/UI/toolbarButtons/registerDefaultButtons.js +2 -0
- package/src/UI/toolbarButtons/saveButton.js +1 -1
- package/src/UI/viewer.js +4 -0
- package/src/fs.proxy.js +119 -25
- package/src/generated/licenseBundle.js +2 -0
- package/src/idbStorage.js +275 -105
- package/src/index.js +7 -0
- package/src/licenseInfo.js +71 -0
- package/src/services/componentLibrary.js +1 -1
package/README.md
CHANGED
|
@@ -149,6 +149,14 @@ Notes:
|
|
|
149
149
|
- `const { BREP } = await import('brep-io-kernel');`
|
|
150
150
|
- Top-level await is used internally; target modern runtimes (Node 18+ or modern bundlers).
|
|
151
151
|
|
|
152
|
+
License helpers (package-only vs full dependency summary):
|
|
153
|
+
```js
|
|
154
|
+
import { getPackageLicenseInfoString, getAllLicensesInfoString } from 'brep-io-kernel';
|
|
155
|
+
|
|
156
|
+
console.log(getPackageLicenseInfoString()); // this package only
|
|
157
|
+
console.log(getAllLicensesInfoString()); // includes prod dependency summary
|
|
158
|
+
```
|
|
159
|
+
|
|
152
160
|
|
|
153
161
|
|
|
154
162
|
|