@itwin/ecschema-rpcinterface-tests 5.7.0-dev.4 → 5.7.0-dev.6

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.
@@ -68922,6 +68922,11 @@ class ECClass extends _SchemaItem__WEBPACK_IMPORTED_MODULE_9__.SchemaItem {
68922
68922
  }
68923
68923
  /**
68924
68924
  * Gets the derived classes belonging to this class.
68925
+ * @note This method relies on the `SchemaContext` to find derived classes.
68926
+ * It will **only** return derived classes from schemas that have already been loaded into the context.
68927
+ * If a derived class exists in a referencing schema that has not yet been loaded, it will not be included in the results.
68928
+ * To ensure all derived classes are found, ensure that all relevant referencing schemas are loaded into the `SchemaContext`
68929
+ * before calling this method.
68925
68930
  * @returns An array of ECClasses or undefined if no derived classes exist.
68926
68931
  */
68927
68932
  async getDerivedClasses() {
@@ -157673,7 +157678,7 @@ const DEFAULT_FORMATKEY_BY_UNIT_SYSTEM = [
157673
157678
  { type: getQuantityTypeKey(QuantityType.Coordinate), formatKey: "[units:length]meter2" },
157674
157679
  { type: getQuantityTypeKey(QuantityType.Stationing), formatKey: "[units:length]m-sta2" },
157675
157680
  { type: getQuantityTypeKey(QuantityType.LengthSurvey), formatKey: "[units:length]meter4" },
157676
- { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]meter4" },
157681
+ { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]millimeter3" },
157677
157682
  ],
157678
157683
  },
157679
157684
  {
@@ -157687,7 +157692,7 @@ const DEFAULT_FORMATKEY_BY_UNIT_SYSTEM = [
157687
157692
  { type: getQuantityTypeKey(QuantityType.Coordinate), formatKey: "[units:length]feet2" },
157688
157693
  { type: getQuantityTypeKey(QuantityType.Stationing), formatKey: "[units:length]f-sta2" },
157689
157694
  { type: getQuantityTypeKey(QuantityType.LengthSurvey), formatKey: "[units:length]f-survey-4-labeled" },
157690
- { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]feet4" },
157695
+ { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]feet2" },
157691
157696
  ],
157692
157697
  },
157693
157698
  {
@@ -157701,7 +157706,7 @@ const DEFAULT_FORMATKEY_BY_UNIT_SYSTEM = [
157701
157706
  { type: getQuantityTypeKey(QuantityType.Coordinate), formatKey: "[units:length]feet2" },
157702
157707
  { type: getQuantityTypeKey(QuantityType.Stationing), formatKey: "[units:length]f-sta2" },
157703
157708
  { type: getQuantityTypeKey(QuantityType.LengthSurvey), formatKey: "[units:length]f-survey-4" },
157704
- { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]feet4" },
157709
+ { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]feet2" },
157705
157710
  ],
157706
157711
  },
157707
157712
  {
@@ -157715,7 +157720,7 @@ const DEFAULT_FORMATKEY_BY_UNIT_SYSTEM = [
157715
157720
  { type: getQuantityTypeKey(QuantityType.Coordinate), formatKey: "[units:length]f-survey-2" },
157716
157721
  { type: getQuantityTypeKey(QuantityType.Stationing), formatKey: "[units:length]f-survey-sta2" },
157717
157722
  { type: getQuantityTypeKey(QuantityType.LengthSurvey), formatKey: "[units:length]f-survey-4" },
157718
- { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]f-survey-4" },
157723
+ { type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]f-survey-2" },
157719
157724
  ],
157720
157725
  },
157721
157726
  ];
@@ -157735,6 +157740,20 @@ const DEFAULT_FORMATPROPS = [
157735
157740
  type: "Decimal",
157736
157741
  },
157737
157742
  },
157743
+ {
157744
+ key: "[units:length]millimeter3",
157745
+ description: "millimeters (labeled) 3 decimal places",
157746
+ format: {
157747
+ composite: {
157748
+ includeZero: true,
157749
+ spacer: "",
157750
+ units: [{ label: "mm", name: "Units.MM" }],
157751
+ },
157752
+ formatTraits: ["keepSingleZero", "showUnitLabel"],
157753
+ precision: 3,
157754
+ type: "Decimal",
157755
+ },
157756
+ },
157738
157757
  {
157739
157758
  key: "[units:length]meter2",
157740
157759
  description: "meters (labeled) 2 decimal places",
@@ -304512,12 +304531,12 @@ class BaseFormat {
304512
304531
  loadFormatProperties(formatProps) {
304513
304532
  this._type = (0,_FormatEnums__WEBPACK_IMPORTED_MODULE_2__.parseFormatType)(formatProps.type, this.name);
304514
304533
  if (formatProps.precision !== undefined) {
304515
- if (!Number.isInteger(formatProps.precision)) // mut be an integer
304534
+ if (!Number.isInteger(formatProps.precision))
304516
304535
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'precision' attribute. It should be an integer.`);
304517
304536
  this._precision = (0,_FormatEnums__WEBPACK_IMPORTED_MODULE_2__.parsePrecision)(formatProps.precision, this._type, this.name);
304518
304537
  }
304519
304538
  if (this.type === _FormatEnums__WEBPACK_IMPORTED_MODULE_2__.FormatType.Scientific) {
304520
- if (undefined === formatProps.scientificType) // if format type is scientific and scientific type is undefined, throw
304539
+ if (undefined === formatProps.scientificType)
304521
304540
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} is 'Scientific' type therefore the attribute 'scientificType' is required.`);
304522
304541
  this._scientificType = (0,_FormatEnums__WEBPACK_IMPORTED_MODULE_2__.parseScientificType)(formatProps.scientificType, this.name);
304523
304542
  }
@@ -304525,7 +304544,7 @@ class BaseFormat {
304525
304544
  if (undefined === formatProps.ratioType)
304526
304545
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} is 'Ratio' type therefore the attribute 'ratioType' is required.`);
304527
304546
  this._ratioType = (0,_FormatEnums__WEBPACK_IMPORTED_MODULE_2__.parseRatioType)(formatProps.ratioType, this.name);
304528
- if (undefined !== formatProps.ratioSeparator) {
304547
+ if (undefined !== formatProps.ratioSeparator) { // optional; default is 0.0
304529
304548
  if (typeof (formatProps.ratioSeparator) !== "string")
304530
304549
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'ratioSeparator' attribute. It should be of type 'string'.`);
304531
304550
  if (formatProps.ratioSeparator.length !== 1)
@@ -304542,25 +304561,24 @@ class BaseFormat {
304542
304561
  this._ratioFormatType = _FormatEnums__WEBPACK_IMPORTED_MODULE_2__.RatioFormatType.Decimal; // Apply default
304543
304562
  }
304544
304563
  }
304545
- if (undefined !== formatProps.roundFactor) { // optional; default is 0.0
304564
+ if (undefined !== formatProps.roundFactor) {
304546
304565
  if (typeof (formatProps.roundFactor) !== "number")
304547
304566
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'roundFactor' attribute. It should be of type 'number'.`);
304548
304567
  if (formatProps.roundFactor !== this.roundFactor) // if roundFactor isn't default value of 0.0, reassign roundFactor variable
304549
304568
  this._roundFactor = formatProps.roundFactor;
304550
304569
  }
304551
- if (undefined !== formatProps.minWidth) { // optional
304552
- if (!Number.isInteger(formatProps.minWidth) || formatProps.minWidth < 0) // must be a positive int
304570
+ if (undefined !== formatProps.minWidth) {
304571
+ if (!Number.isInteger(formatProps.minWidth) || formatProps.minWidth < 0)
304553
304572
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'minWidth' attribute. It should be a positive integer.`);
304554
304573
  this._minWidth = formatProps.minWidth;
304555
304574
  }
304556
304575
  if (_FormatEnums__WEBPACK_IMPORTED_MODULE_2__.FormatType.Station === this.type) {
304557
304576
  if (undefined === formatProps.stationOffsetSize)
304558
304577
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} is 'Station' type therefore the attribute 'stationOffsetSize' is required.`);
304559
- if (!Number.isInteger(formatProps.stationOffsetSize) || formatProps.stationOffsetSize <= 0) // must be a positive int > 0
304578
+ if (!Number.isInteger(formatProps.stationOffsetSize) || formatProps.stationOffsetSize <= 0)
304560
304579
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'stationOffsetSize' attribute. It should be a positive integer.`);
304561
304580
  this._stationOffsetSize = formatProps.stationOffsetSize;
304562
304581
  if (undefined !== formatProps.stationBaseFactor) {
304563
- // optional - must be a positive integer
304564
304582
  if (!Number.isInteger(formatProps.stationBaseFactor) || formatProps.stationBaseFactor <= 0)
304565
304583
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'stationBaseFactor' attribute. It should be a positive integer.`);
304566
304584
  this._stationBaseFactor = formatProps.stationBaseFactor;
@@ -304569,19 +304587,19 @@ class BaseFormat {
304569
304587
  if (undefined !== formatProps.showSignOption) { // optional; default is "onlyNegative"
304570
304588
  this._showSignOption = (0,_FormatEnums__WEBPACK_IMPORTED_MODULE_2__.parseShowSignOption)(formatProps.showSignOption, this.name);
304571
304589
  }
304572
- if (undefined !== formatProps.formatTraits && formatProps.formatTraits.length !== 0) { // FormatTraits is optional
304573
- if (!Array.isArray(formatProps.formatTraits) && typeof (formatProps.formatTraits) !== "string") // must be either an array of strings or a string
304590
+ if (undefined !== formatProps.formatTraits && formatProps.formatTraits.length !== 0) {
304591
+ if (!Array.isArray(formatProps.formatTraits) && typeof (formatProps.formatTraits) !== "string")
304574
304592
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'formatTraits' attribute. It should be of type 'string' or 'string[]'.`);
304575
- this.parseFormatTraits(formatProps.formatTraits); // check that all of the options for formatTraits are valid. If now, throw
304593
+ this.parseFormatTraits(formatProps.formatTraits);
304576
304594
  }
304577
- if (undefined !== formatProps.decimalSeparator) { // optional
304578
- if (typeof (formatProps.decimalSeparator) !== "string") // not a string or not a one character string
304595
+ if (undefined !== formatProps.decimalSeparator) {
304596
+ if (typeof (formatProps.decimalSeparator) !== "string")
304579
304597
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'decimalSeparator' attribute. It should be of type 'string'.`);
304580
304598
  if (formatProps.decimalSeparator.length > 1)
304581
304599
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'decimalSeparator' attribute. It should be an empty or one character string.`);
304582
304600
  this._decimalSeparator = formatProps.decimalSeparator;
304583
304601
  }
304584
- if (undefined !== formatProps.thousandSeparator) { // optional
304602
+ if (undefined !== formatProps.thousandSeparator) {
304585
304603
  if (typeof (formatProps.thousandSeparator) !== "string")
304586
304604
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'thousandSeparator' attribute. It should be of type 'string'.`);
304587
304605
  if (formatProps.thousandSeparator.length > 1)
@@ -304607,7 +304625,7 @@ class BaseFormat {
304607
304625
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'azimuthBase' attribute. It should be of type 'number'.`);
304608
304626
  this._azimuthBase = formatProps.azimuthBase;
304609
304627
  }
304610
- if (undefined !== formatProps.azimuthCounterClockwise) { // optional; default is false
304628
+ if (undefined !== formatProps.azimuthCounterClockwise) { // optional; default is false, azimuth values are clockwise from base
304611
304629
  if (typeof (formatProps.azimuthCounterClockwise) !== "boolean")
304612
304630
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has an invalid 'azimuthCounterClockwise' attribute. It should be of type 'boolean'.`);
304613
304631
  this._azimuthCounterClockwise = formatProps.azimuthCounterClockwise;
@@ -304708,25 +304726,25 @@ class Format extends BaseFormat {
304708
304726
  fromFullyResolvedJSON(jsonObj) {
304709
304727
  this.loadFormatProperties(jsonObj);
304710
304728
  this._customProps = jsonObj.custom;
304711
- if (undefined !== jsonObj.composite) { // optional
304729
+ if (undefined !== jsonObj.composite) {
304712
304730
  this._units = new Array();
304713
304731
  if (jsonObj.composite.includeZero !== undefined) {
304714
- if (typeof (jsonObj.composite.includeZero) !== "boolean") // includeZero must be a boolean IF it is defined
304732
+ if (typeof (jsonObj.composite.includeZero) !== "boolean")
304715
304733
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has a Composite with an invalid 'includeZero' attribute. It should be of type 'boolean'.`);
304716
304734
  this._includeZero = jsonObj.composite.includeZero;
304717
304735
  }
304718
- if (jsonObj.composite.spacer !== undefined) { // spacer must be a string IF it is defined
304736
+ if (jsonObj.composite.spacer !== undefined) {
304719
304737
  if (typeof (jsonObj.composite.spacer) !== "string")
304720
304738
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has a Composite with an invalid 'spacer' attribute. It must be of type 'string'.`);
304721
304739
  if (jsonObj.composite.spacer.length > 1)
304722
304740
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has a Composite with an invalid 'spacer' attribute. It should be an empty or one character string.`);
304723
304741
  this._spacer = jsonObj.composite.spacer;
304724
304742
  }
304725
- if (jsonObj.composite.units !== undefined) { // if composite is defined, it must be an array with 1-4 units
304726
- if (!Array.isArray(jsonObj.composite.units)) { // must be an array
304743
+ if (jsonObj.composite.units !== undefined) { // If composite is defined, it must be an array with 1-4 units
304744
+ if (!Array.isArray(jsonObj.composite.units)) {
304727
304745
  throw new _Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityError(_Exception__WEBPACK_IMPORTED_MODULE_1__.QuantityStatus.InvalidJson, `The Format ${this.name} has a Composite with an invalid 'units' attribute. It must be of type 'array'`);
304728
304746
  }
304729
- if (jsonObj.composite.units.length > 0 && jsonObj.composite.units.length <= 4) { // Composite requires 1-4 units
304747
+ if (jsonObj.composite.units.length > 0 && jsonObj.composite.units.length <= 4) {
304730
304748
  const isDuplicateAllowed = this.type === _FormatEnums__WEBPACK_IMPORTED_MODULE_2__.FormatType.Ratio;
304731
304749
  const seenUnits = new Set();
304732
304750
  this._units = [];
@@ -304996,7 +305014,7 @@ var FormatTraits;
304996
305014
  /** Indicates that if an exponent value is positive to not include a `+`. By default a sign, `+` or `-`, is always shown. Not yet supported */
304997
305015
  FormatTraits[FormatTraits["ExponentOnlyNegative"] = 512] = "ExponentOnlyNegative";
304998
305016
  })(FormatTraits || (FormatTraits = {}));
304999
- /** Precision for Fractional formatted value types. Range from Whole (1/1) through 1/256.
305017
+ /** Precision for Fractional formatted value types. Values must be powers of 2, ranging from Whole (1/1) through 1/256.
305000
305018
  * @beta */
305001
305019
  var FractionalPrecision;
305002
305020
  (function (FractionalPrecision) {
@@ -321261,7 +321279,7 @@ var loadLanguages = instance.loadLanguages;
321261
321279
  /***/ ((module) => {
321262
321280
 
321263
321281
  "use strict";
321264
- module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.7.0-dev.4","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 && npm run -s copy:draco","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 ES2022 --outDir lib/esm","clean":"rimraf -g 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","copy:draco":"cpx \\"./node_modules/@loaders.gl/draco/dist/libs/*\\" ./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","lint-deprecation":"eslint --fix -f visualstudio --no-inline-config -c ../../common/config/eslint/eslint.config.deprecation-policy.js \\"./src/**/*.ts\\"","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","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:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/ecschema-metadata":"workspace:*","@itwin/ecschema-rpcinterface-common":"workspace:*"},"//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/ecschema-metadata":"workspace:*","@itwin/ecschema-rpcinterface-common":"workspace:*","@itwin/object-storage-core":"^3.0.4","@itwin/eslint-plugin":"^6.0.0","@types/chai-as-promised":"^7","@types/draco3d":"^1.4.10","@types/sinon":"^17.0.2","@vitest/browser":"^3.0.6","@vitest/coverage-v8":"^3.0.6","cpx2":"^8.0.0","eslint":"^9.31.0","glob":"^10.5.0","playwright":"~1.56.1","rimraf":"^6.0.1","sinon":"^17.0.2","source-map-loader":"^5.0.0","typescript":"~5.6.2","typemoq":"^2.1.0","vitest":"^3.0.6","vite-multiple-assets":"^1.3.1","vite-plugin-static-copy":"2.2.0","webpack":"^5.97.1"},"//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/core-i18n":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@loaders.gl/core":"^4.3.4","@loaders.gl/draco":"^4.3.4","fuse.js":"^3.3.0","wms-capabilities":"0.4.0"}}');
321282
+ module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.7.0-dev.6","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 && npm run -s copy:draco","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 ES2022 --outDir lib/esm","clean":"rimraf -g 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","copy:draco":"cpx \\"./node_modules/@loaders.gl/draco/dist/libs/*\\" ./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","lint-deprecation":"eslint --fix -f visualstudio --no-inline-config -c ../../common/config/eslint/eslint.config.deprecation-policy.js \\"./src/**/*.ts\\"","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","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:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/ecschema-metadata":"workspace:*","@itwin/ecschema-rpcinterface-common":"workspace:*"},"//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/ecschema-metadata":"workspace:*","@itwin/ecschema-rpcinterface-common":"workspace:*","@itwin/object-storage-core":"^3.0.4","@itwin/eslint-plugin":"^6.0.0","@types/chai-as-promised":"^7","@types/draco3d":"^1.4.10","@types/sinon":"^17.0.2","@vitest/browser":"^3.0.6","@vitest/coverage-v8":"^3.0.6","cpx2":"^8.0.0","eslint":"^9.31.0","glob":"^10.5.0","playwright":"~1.56.1","rimraf":"^6.0.1","sinon":"^17.0.2","source-map-loader":"^5.0.0","typescript":"~5.6.2","vitest":"^3.0.6","vite-multiple-assets":"^1.3.1","vite-plugin-static-copy":"2.2.0","webpack":"^5.97.1"},"//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/core-i18n":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@loaders.gl/core":"^4.3.4","@loaders.gl/draco":"^4.3.4","fuse.js":"^3.3.0","wms-capabilities":"0.4.0"}}');
321265
321283
 
321266
321284
  /***/ })
321267
321285