@itwin/ecschema-rpcinterface-tests 4.11.6 → 4.11.7
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/lib/dist/bundled-tests.js +12 -2
- package/lib/dist/bundled-tests.js.map +1 -1
- package/package.json +17 -17
|
@@ -63270,6 +63270,7 @@ class ECClass extends _SchemaItem__WEBPACK_IMPORTED_MODULE_8__.SchemaItem {
|
|
|
63270
63270
|
else
|
|
63271
63271
|
correctType = structType;
|
|
63272
63272
|
if (!correctType)
|
|
63273
|
+
// eslint-disable-next-line @typescript-eslint/no-base-to-string
|
|
63273
63274
|
throw new _Exception__WEBPACK_IMPORTED_MODULE_4__.ECObjectsError(_Exception__WEBPACK_IMPORTED_MODULE_4__.ECObjectsStatus.InvalidType, `The provided Struct type, ${structType}, is not a valid StructClass.`);
|
|
63274
63275
|
return correctType;
|
|
63275
63276
|
}
|
|
@@ -63281,6 +63282,7 @@ class ECClass extends _SchemaItem__WEBPACK_IMPORTED_MODULE_8__.SchemaItem {
|
|
|
63281
63282
|
else
|
|
63282
63283
|
correctType = structType;
|
|
63283
63284
|
if (!correctType)
|
|
63285
|
+
// eslint-disable-next-line @typescript-eslint/no-base-to-string
|
|
63284
63286
|
throw new _Exception__WEBPACK_IMPORTED_MODULE_4__.ECObjectsError(_Exception__WEBPACK_IMPORTED_MODULE_4__.ECObjectsStatus.InvalidType, `The provided Struct type, ${structType}, is not a valid StructClass.`);
|
|
63285
63287
|
return correctType;
|
|
63286
63288
|
}
|
|
@@ -124008,12 +124010,19 @@ class VertexShaderBuilder extends ShaderBuilder {
|
|
|
124008
124010
|
}
|
|
124009
124011
|
main.addline(" v_color = baseColor;");
|
|
124010
124012
|
}
|
|
124013
|
+
/*
|
|
124014
|
+
There is currently a driver glitch which is known to affect much of the Intel Ultra 7 family of chipsets when using Intel driver from some point after driver version 32.0.101.6078 (9/13/2024).
|
|
124015
|
+
|
|
124016
|
+
The graphics driver will glitch when discarding triangles using the vertex shader (setting all vertices to the same value) if gl_Position was not initialized to a valid position beforehand.
|
|
124017
|
+
|
|
124018
|
+
The workaround for this bug involves ensuring that gl_Position is initialized to a valid position before attempting a discard using a degenerate triangle.
|
|
124019
|
+
*/
|
|
124020
|
+
main.addline(" gl_Position = computePosition(rawPosition);");
|
|
124011
124021
|
const checkForDiscard = this.get(9 /* VertexShaderComponent.CheckForDiscard */);
|
|
124012
124022
|
if (undefined !== checkForDiscard) {
|
|
124013
124023
|
prelude.addFunction("bool checkForDiscard()", checkForDiscard);
|
|
124014
124024
|
main.add(_glsl_Vertex__WEBPACK_IMPORTED_MODULE_3__.vertexDiscard);
|
|
124015
124025
|
}
|
|
124016
|
-
main.addline(" gl_Position = computePosition(rawPosition);");
|
|
124017
124026
|
const finalizePos = this.get(13 /* VertexShaderComponent.FinalizePosition */);
|
|
124018
124027
|
if (undefined !== finalizePos) {
|
|
124019
124028
|
prelude.addFunction("vec4 finalizePosition(vec4 pos)", finalizePos);
|
|
@@ -293233,6 +293242,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
293233
293242
|
* @public
|
|
293234
293243
|
* @deprecated in 4.2.x Use [[UiSyncEvent]] from @itwin/appui-react.
|
|
293235
293244
|
*/
|
|
293245
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
|
293236
293246
|
class UiSyncEvent extends _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeUiEvent {
|
|
293237
293247
|
}
|
|
293238
293248
|
/** This class is used to send eventIds to interested UI components so the component can determine if it needs
|
|
@@ -303777,7 +303787,7 @@ var loadLanguages = instance.loadLanguages;
|
|
|
303777
303787
|
/***/ ((module) => {
|
|
303778
303788
|
|
|
303779
303789
|
"use strict";
|
|
303780
|
-
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.11.
|
|
303790
|
+
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.11.7","description":"iTwin.js frontend components","main":"lib/cjs/core-frontend.js","module":"lib/esm/core-frontend.js","typings":"lib/cjs/core-frontend","license":"MIT","scripts":{"build":"npm run -s copy:public && npm run -s build:cjs && npm run -s build:esm && npm run -s webpackWorkers && npm run -s copy:workers","build:cjs":"npm run -s copy:js:cjs && tsc 1>&2 --outDir lib/cjs","build:esm":"npm run -s copy:js:esm && tsc 1>&2 --module ES2020 --outDir lib/esm","clean":"rimraf lib .rush/temp/package-deps*.json","copy:public":"cpx \\"./src/public/**/*\\" ./lib/public","copy:js:cjs":"cpx \\"./src/**/*.js\\" ./lib/cjs","copy:js:esm":"cpx \\"./src/**/*.js\\" ./lib/esm","copy:workers":"cpx \\"./lib/workers/webpack/parse-imdl-worker.js\\" ./lib/public/scripts","docs":"betools docs --json=../../generated-docs/core/core-frontend/file.json --tsIndexFile=./core-frontend.ts --onlyJson --excludes=webgl/**/*,**/map/*.d.ts,**/tile/*.d.ts,**/*-css.ts","extract-api":"betools extract-api --entry=core-frontend && npm run extract-extension-api","extract-extension-api":"eslint --no-inline-config -c extraction.eslint.config.js \\"./src/**/*.ts\\" 1>&2","lint":"eslint \\"./src/**/*.ts\\" 1>&2","lint-fix":"eslint --fix -f visualstudio \\"./src/**/*.ts\\" 1>&2","pseudolocalize":"betools pseudolocalize --englishDir ./src/public/locales/en --out ./public/locales/en-PSEUDO","test":"npm run webpackTestWorker && vitest --run","cover":"npm run webpackTestWorker && vitest --run","test:debug":"vitest --run","webpackTests":"webpack --config ./src/test/utils/webpack.config.js 1>&2 && npm run -s webpackTestWorker","webpackTestWorker":"webpack --config ./src/test/worker/webpack.config.js 1>&2 && cpx \\"./lib/test/test-worker.js\\" ./lib/test","webpackWorkers":"webpack --config ./src/workers/ImdlParser/webpack.config.js 1>&2"},"repository":{"type":"git","url":"https://github.com/iTwin/itwinjs-core.git","directory":"core/frontend"},"keywords":["Bentley","BIM","iModel","digital-twin","iTwin"],"author":{"name":"Bentley Systems, Inc.","url":"http://www.bentley.com"},"peerDependencies":{"@itwin/appui-abstract":"workspace:^4.11.7","@itwin/core-bentley":"workspace:^4.11.7","@itwin/core-common":"workspace:^4.11.7","@itwin/core-geometry":"workspace:^4.11.7","@itwin/core-orbitgt":"workspace:^4.11.7","@itwin/core-quantity":"workspace:^4.11.7"},"//devDependencies":["NOTE: All peerDependencies should also be listed as devDependencies since peerDependencies are not considered by npm install","NOTE: All tools used by scripts in this package must be listed as devDependencies"],"devDependencies":{"@itwin/appui-abstract":"workspace:*","@itwin/build-tools":"workspace:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/eslint-plugin":"5.2.1","@types/chai-as-promised":"^7","@vitest/browser":"^3.0.5","@vitest/coverage-v8":"^3.0.5","cpx2":"^3.0.0","eslint":"^9.31.0","glob":"^10.3.12","playwright":"~1.56.1","rimraf":"^3.0.2","source-map-loader":"^4.0.0","typescript":"~5.6.2","typemoq":"^2.1.0","vitest":"^3.0.5","vite-multiple-assets":"^1.3.1","vite-plugin-static-copy":"1.0.6","webpack":"^5.76.0"},"//dependencies":["NOTE: these dependencies should be only for things that DO NOT APPEAR IN THE API","NOTE: core-frontend should remain UI technology agnostic, so no react/angular dependencies are allowed"],"dependencies":{"@itwin/cloud-agnostic-core":"^2.2.4","@itwin/object-storage-core":"^3.0.4","@itwin/core-i18n":"workspace:*","@itwin/core-telemetry":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@loaders.gl/core":"^3.1.6","@loaders.gl/draco":"^3.1.6","fuse.js":"^3.3.0","meshoptimizer":"~0.20.0","wms-capabilities":"0.4.0"}}');
|
|
303781
303791
|
|
|
303782
303792
|
/***/ })
|
|
303783
303793
|
|