@itwin/rpcinterface-full-stack-tests 5.11.0-dev.18 → 5.11.0-dev.19

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.
@@ -50455,6 +50455,19 @@ __webpack_require__.r(__webpack_exports__);
50455
50455
  */
50456
50456
  var CompressedId64Set;
50457
50457
  (function (CompressedId64Set) {
50458
+ /** Returns `true` if `ids` is a valid [[CompressedId64Set]] — either an empty string
50459
+ * (representing an empty set) or a non-empty string beginning with `'+'`.
50460
+ * Useful as a type guard to distinguish a compressed set from an [[Id64String]] or other
50461
+ * value when the type of a string is not known statically.
50462
+ * @note This is a syntactic prefix check only — it does not validate the encoded content
50463
+ * after `'+'`. A value may pass this guard and still throw during [[CompressedId64Set.iterator]]
50464
+ * (e.g. `'+0'` or `'+garbage'`).
50465
+ * @see [[CompressedId64Set.iterable]] to iterate the Ids represented by a compressed string.
50466
+ */
50467
+ function isValid(ids) {
50468
+ return typeof ids === "string" && (ids.length === 0 || ids[0] === "+");
50469
+ }
50470
+ CompressedId64Set.isValid = isValid;
50458
50471
  function isHexDigit(ch) {
50459
50472
  // ascii values:
50460
50473
  // '0' = 48
@@ -242419,8 +242432,7 @@ __webpack_require__.r(__webpack_exports__);
242419
242432
  * * endPoint
242420
242433
  * * The segment is parameterized with fraction 0 at the start and fraction 1 at the end, i.e. each of these
242421
242434
  * equivalent forms maps fraction `f` to a point `X(f)`:
242422
- * ```
242423
- * equation
242435
+ * ```equation
242424
242436
  * X(f) = P_0 + f*(P_1 - P_0)\newline
242425
242437
  * X(f) = (1-f)*P_0 + f*P_1
242426
242438
  * ```
@@ -262828,8 +262840,7 @@ __webpack_require__.r(__webpack_exports__);
262828
262840
  /**
262829
262841
  * A bilinear patch is a surface defined by its 4 corner points.
262830
262842
  * * The corner points do not have to be coplanar, but if they are, the quadrilateral should be convex to avoid a self-intersecting surface.
262831
- * ```
262832
- * equation
262843
+ * ```equation
262833
262844
  * \begin{matrix}
262834
262845
  * v\text{-direction}\\
262835
262846
  * \uparrow\\
@@ -268563,15 +268574,14 @@ __webpack_require__.r(__webpack_exports__);
268563
268574
 
268564
268575
 
268565
268576
  /* eslint-disable @itwin/prefer-get */
268566
- // cSpell:words XXYZ YXYZ ZXYZ SaeedTorabi arctan newcommand diagonalization
268577
+ // cSpell:words XXYZ YXYZ ZXYZ SaeedTorabi arctan diagonalization
268567
268578
  /**
268568
268579
  * PackedMatrix3dOps contains static methods for matrix operations where the matrix is a Float64Array.
268569
- * * The Float64Array contains the matrix entries in row-major order
268570
- * @internal
268571
- * ```
268572
- * equation
268573
- * \newcommand[1]\mij{#1_{00}\ #1_{01}\ a_{02}}
268580
+ * * The Float64Array contains the matrix entries in row-major order:
268581
+ * ```equation
268582
+ * \mij{a}
268574
268583
  * ```
268584
+ * @internal
268575
268585
  */
268576
268586
  class PackedMatrix3dOps {
268577
268587
  /**
@@ -268719,13 +268729,11 @@ var InverseMatrixState;
268719
268729
  * * A very common use is to hold a rigid body rotation (which has no scaling or skew), but the 3x3 contents can
268720
268730
  * also hold scaling and skewing.
268721
268731
  * * The matrix with 2-dimensional layout (note: a 2d array can be shown by a matrix)
268722
- * ```
268723
- * equation
268732
+ * ```equation
268724
268733
  * \matrixXY{A}
268725
268734
  * ```
268726
268735
  * is stored as 9 numbers in "row-major" order in a `Float64Array`, viz
268727
- * ```
268728
- * equation
268736
+ * ```equation
268729
268737
  * \rowMajorMatrixXY{A}
268730
268738
  * ```
268731
268739
  * * If the matrix inverse is known it is stored in the inverseCoffs array.
@@ -268749,8 +268757,7 @@ class Matrix3d {
268749
268757
  static numComputeCache = 0;
268750
268758
  /**
268751
268759
  * Matrix contents as a flat array of numbers in row-major order.
268752
- * ```
268753
- * equation
268760
+ * ```equation
268754
268761
  * \mxy{B}
268755
268762
  * \mij{B}
268756
268763
  * ```
@@ -268759,8 +268766,7 @@ class Matrix3d {
268759
268766
  coffs;
268760
268767
  /**
268761
268768
  * Matrix inverse contents.
268762
- * ```
268763
- * equation
268769
+ * ```equation
268764
268770
  * \mxy{A}
268765
268771
  * ```
268766
268772
  * * DO NOT directly modify this array. It will destroy integrity of the cached inverse state.
@@ -268930,8 +268936,7 @@ class Matrix3d {
268930
268936
  /**
268931
268937
  * Returns a Matrix3d populated by numeric values given in row-major order.
268932
268938
  * Sets all entries in the matrix from call parameters appearing in row-major order, i.e.
268933
- * ```
268934
- * equation
268939
+ * ```equation
268935
268940
  * \begin{bmatrix}a_{xx}\ a_{xy}\ a_{xz}\\ a_{yx}\ a_{yy}\ a_{yz}\\ a_{zx}\ a_{zy}\ a_{zz}\end{bmatrix}
268936
268941
  * ```
268937
268942
  * @param axx Row x, column x(0, 0) entry
@@ -269110,8 +269115,7 @@ class Matrix3d {
269110
269115
  * * Note that for geometry transformations "all zeros" is not a useful default state.
269111
269116
  * * Hence, almost always use `createIdentity` for graphics transformations.
269112
269117
  * * "All zeros" is appropriate for summing moment data.
269113
- * ```
269114
- * equation
269118
+ * ```equation
269115
269119
  * \begin{bmatrix}0 & 0 & 0 \\ 0 & 0 & 0 \\ 0 & 0 & 0\end{bmatrix}
269116
269120
  * ```
269117
269121
  */
@@ -269125,8 +269129,7 @@ class Matrix3d {
269125
269129
  * * All diagonal entries (xx,yy,zz) are one
269126
269130
  * * All others are zero.
269127
269131
  * * This (rather than "all zeros") is the useful state for most graphics transformations.
269128
- * ```
269129
- * equation
269132
+ * ```equation
269130
269133
  * \begin{bmatrix}1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1\end{bmatrix}
269131
269134
  * ```
269132
269135
  *
@@ -269138,8 +269141,7 @@ class Matrix3d {
269138
269141
  }
269139
269142
  /**
269140
269143
  * Create a matrix with distinct x,y,z diagonal (scale) entries.
269141
- * ```
269142
- * equation
269144
+ * ```equation
269143
269145
  * \begin{bmatrix}s_x & 0 & 0 \\ 0 & s_y & 0\\ 0 & 0 & s_z\end{bmatrix}
269144
269146
  * ```
269145
269147
  */
@@ -269164,8 +269166,7 @@ class Matrix3d {
269164
269166
  }
269165
269167
  /**
269166
269168
  * Create a matrix with uniform scale factor "s":
269167
- * ```
269168
- * equation
269169
+ * ```equation
269169
269170
  * \begin{bmatrix}s & 0 & 0 \\ 0 & s & 0\\ 0 & 0 & s\end{bmatrix}
269170
269171
  * ```
269171
269172
  */
@@ -269345,8 +269346,7 @@ class Matrix3d {
269345
269346
  }
269346
269347
  /**
269347
269348
  * Create a matrix from column vectors.
269348
- * ```
269349
- * equation
269349
+ * ```equation
269350
269350
  * \begin{bmatrix}U_x & V_x & W_x \\ U_y & V_y & W_y \\ U_z & V_z & W_z \end{bmatrix}
269351
269351
  * ```
269352
269352
  */
@@ -269355,8 +269355,7 @@ class Matrix3d {
269355
269355
  }
269356
269356
  /**
269357
269357
  * Create a matrix with each column's _x,y_ parts given `XAndY` and separate numeric z values.
269358
- * ```
269359
- * equation
269358
+ * ```equation
269360
269359
  * \begin{bmatrix}U_x & V_x & W_x \\ U_y & V_y & W_y \\ u & v & w \end{bmatrix}
269361
269360
  * ```
269362
269361
  */
@@ -270049,8 +270048,7 @@ class Matrix3d {
270049
270048
  }
270050
270049
  /**
270051
270050
  * Create a matrix from row vectors.
270052
- * ```
270053
- * equation
270051
+ * ```equation
270054
270052
  * \begin{bmatrix}U_x & U_y & U_z \\ V_x & V_y & V_z \\ W_x & W_y & W_z \end{bmatrix}
270055
270053
  * ```
270056
270054
  */
@@ -270065,8 +270063,7 @@ class Matrix3d {
270065
270063
  * mirror of the `vector` across the `plane`. In general, When scale != 0, the result is computed by first
270066
270064
  * projecting the `vector` to the `plane`, then translating that projection along the `direction` (if scale > 0)
270067
270065
  * or in opposite direction (if scale < 0).
270068
- * ```
270069
- * equation
270066
+ * ```equation
270070
270067
  * \text{The matrix is } I + (s-1) D D^T
270071
270068
  * \\ \text{with }D\text{ being the normalized direction vector and }s\text{ being the scale.}
270072
270069
  * ```
@@ -270117,8 +270114,7 @@ class Matrix3d {
270117
270114
  }
270118
270115
  /**
270119
270116
  * Multiply `matrix * point`, treating the point as a column vector on the right.
270120
- * ```
270121
- * equation
270117
+ * ```equation
270122
270118
  * \matrixXY{A}\columnSubXYZ{U}
270123
270119
  * ```
270124
270120
  * @return the point result
@@ -270131,8 +270127,7 @@ class Matrix3d {
270131
270127
  }
270132
270128
  /**
270133
270129
  * Multiply `matrix * vector`, treating the vector is a column vector on the right.
270134
- * ```
270135
- * equation
270130
+ * ```equation
270136
270131
  * \matrixXY{A}\columnSubXYZ{U}
270137
270132
  * ```
270138
270133
  * @return the vector result
@@ -270188,8 +270183,7 @@ class Matrix3d {
270188
270183
  /**
270189
270184
  * Treat the 3x3 matrix and origin as upper 3x4 part of a 4x4 matrix, with 0001 as the final row.
270190
270185
  * Multiply the 4x4 matrix by `[x,y,z,w]`
270191
- * ```
270192
- * equation
270186
+ * ```equation
270193
270187
  * \begin{bmatrix}M_0 & M_1 & M_2 & Ox \\ M_3 & M_4 & M_5 & Oy \\ M_6 & M_7 & M_8 & Oz \\ 0 & 0 & 0 & 1\end{bmatrix} * \begin{bmatrix}x \\ y \\ z \\ w\end{bmatrix}
270194
270188
  * ```
270195
270189
  * @param origin translation part (xyz in column 3)
@@ -270206,8 +270200,7 @@ class Matrix3d {
270206
270200
  /**
270207
270201
  * Treat the 3x3 matrix and origin as upper 3x4 part of a 4x4 matrix, with 0001 as the final row.
270208
270202
  * Multiply the 4x4 matrix by `[x,y,z,w]`
270209
- * ```
270210
- * equation
270203
+ * ```equation
270211
270204
  * \begin{bmatrix}M_0 & M_1 & M_2 & Ox \\ M_3 & M_4 & M_5 & Oy \\ M_6 & M_7 & M_8 & Oz \\ 0 & 0 & 0 & 1\end{bmatrix} * \begin{bmatrix}x \\ y \\ z \\ w\end{bmatrix}
270212
270205
  * ```
270213
270206
  * @param origin translation part (xyz in column 3)
@@ -270230,8 +270223,7 @@ class Matrix3d {
270230
270223
  /**
270231
270224
  * Treat the 3x3 matrix and origin as a 3x4 matrix.
270232
270225
  * * Multiply the 3x4 matrix by `[x,y,z,1]`
270233
- * ```
270234
- * equation
270226
+ * ```equation
270235
270227
  * \begin{bmatrix}M_0 & M_1 & M_2 & Ox \\ M_3 & M_4 & M_5 & Oy \\ M_6 & M_7 & M_8 & Oz\end{bmatrix} * \begin{bmatrix}x \\ y \\ z \\ 1\end{bmatrix}
270236
270228
  * ```
270237
270229
  * @param origin translation part (xyz in column 3)
@@ -270252,8 +270244,7 @@ class Matrix3d {
270252
270244
  /**
270253
270245
  * Multiply the transpose matrix times a vector.
270254
270246
  * * This produces the same x,y,z as treating the vector as a row on the left of the (un-transposed) matrix.
270255
- * ```
270256
- * equation
270247
+ * ```equation
270257
270248
  * \begin{matrix}
270258
270249
  * \text{Treating U as a column to the right of transposed matrix\: return column}&\columnSubXYZ{V}&=&\matrixTransposeSubXY{A}\columnSubXYZ{U} \\
270259
270250
  * \text{Treating U as a row to the left of untransposed matrix\: return row}&\rowSubXYZ{V}&=&\rowSubXYZ{U}\matrixXY{A}
@@ -270344,14 +270335,13 @@ class Matrix3d {
270344
270335
  /**
270345
270336
  * Multiply the transpose matrix times column using individual numeric inputs.
270346
270337
  * * This produces the same x,y,z as treating the vector as a row on the left of the (un-transposed) matrix.
270347
- * ```
270348
- * equation
270338
+ * ```equation
270349
270339
  * \begin{matrix}
270350
270340
  * \text{treating the input as a column vector } \columnXYZ{x}{y}{z}\text{ compute }&\columnSubXYZ{V} &= &A^T \columnXYZ{x}{y}{z} \\
270351
270341
  * \text{or as a row vector } \rowXYZ{x}{y}{z} \text{ compute }&\rowSubXYZ{V} &= &\rowXYZ{x}{y}{z} A \\
270352
270342
  * \phantom{8888}\text{and return V as a Vector3d} & & &
270353
270343
  * \end{matrix}
270354
- * ````
270344
+ * ```
270355
270345
  * @param result the vector result (optional)
270356
270346
  */
270357
270347
  multiplyTransposeXYZ(x, y, z, result) {
@@ -270514,8 +270504,7 @@ class Matrix3d {
270514
270504
  }
270515
270505
  /**
270516
270506
  * Multiply `this` matrix times the transpose of `other` matrix
270517
- * ```
270518
- * equation
270507
+ * ```equation
270519
270508
  * \text{for instance matrix }A\text{ and matrix }B\text{ return matrix }C{\text where }\\\matrixXY{C}=\matrixXY{A}\matrixTransposeSubXY{B}
270520
270509
  * ```
270521
270510
  * @return the matrix result: this*otherTranspose
@@ -270533,8 +270522,7 @@ class Matrix3d {
270533
270522
  }
270534
270523
  /**
270535
270524
  * Multiply the transpose of `this` matrix times `other` matrix
270536
- * ```
270537
- * equation
270525
+ * ```equation
270538
270526
  * \matrixXY{result}=\matrixXY{\text{this}}\matrixTransposeSubXY{\text{other}}
270539
270527
  * ```
270540
270528
  * @return the matrix result: thisTranspose*other
@@ -270553,8 +270541,7 @@ class Matrix3d {
270553
270541
  /**
270554
270542
  * Multiply `this` Matrix3d (considered to be a Transform with 0 `origin`) times `other` Transform.
270555
270543
  * * **Note:** If `this = [A 0]` and `other = [B b]`, then `this * other` is defined as [A*B Ab] because:
270556
- * ```
270557
- * equation
270544
+ * ```equation
270558
270545
  * \begin{matrix}
270559
270546
  * \text{this matrix }\bold{A}\text{ promoted to block Transform} & \blockTransform{A}{0} \\
270560
270547
  * \text{other Transform with `matrix` part }\bold{B}\text{ and origin part }\bold{b} & \blockTransform{B}{b}\\
@@ -270935,8 +270922,7 @@ class Matrix3d {
270935
270922
  * Add scaled values from an outer product of vectors U and V.
270936
270923
  * * The scaled outer product is a matrix with `rank 1` (all columns/rows are linearly dependent).
270937
270924
  * * This is useful in constructing mirrors and directional scales.
270938
- * ```
270939
- * equation
270925
+ * ```equation
270940
270926
  * A += s \columnSubXYZ{U}\rowSubXYZ{V}
270941
270927
  * \\ \matrixXY{A} += s \begin{bmatrix}
270942
270928
  * U_x * V_x & U_x * V_y & U_x * V_z \\
@@ -282899,8 +282885,7 @@ class Transform {
282899
282885
  /**
282900
282886
  * Multiply `this` Transform times `other` Transform.
282901
282887
  * * **Note:** If `this = [A a]` and `other = [B b]` then `this * other` is defined as `[A*B Ab+a]` because:
282902
- * ```
282903
- * equation
282888
+ * ```equation
282904
282889
  * \begin{matrix}
282905
282890
  * \text{this Transform with matrix part }\bold{A}\text{ and origin part }\bold{a} & \blockTransform{A}{a}\\
282906
282891
  * \text{other Transform with matrix part }\bold{B}\text{ and origin part }\bold{b} & \blockTransform{B}{b} \\
@@ -282919,8 +282904,7 @@ class Transform {
282919
282904
  /**
282920
282905
  * Multiply `this` Transform times `other` Matrix3d (considered to be a Transform with 0 `origin`).
282921
282906
  * * **Note:** If `this = [A a]` and `other = [B 0]`, then `this * other` is defined as [A*B a] because:
282922
- * ```
282923
- * equation
282907
+ * ```equation
282924
282908
  * \begin{matrix}
282925
282909
  * \text{this Transform with matrix part }\bold{A}\text{ and origin part }\bold{a} & \blockTransform{A}{a}\\
282926
282910
  * \text{other matrix }\bold{B}\text{ promoted to block Transform} & \blockTransform{B}{0} \\
@@ -348803,7 +348787,7 @@ class TestContext {
348803
348787
  this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
348804
348788
  const iModelClient = new imodels_client_management_1.IModelsClient({ api: { baseUrl: `https://${process.env.IMJS_URL_PREFIX ?? ""}api.bentley.com/imodels` } });
348805
348789
  await core_frontend_1.NoRenderApp.startup({
348806
- applicationVersion: "5.11.0-dev.18",
348790
+ applicationVersion: "5.11.0-dev.19",
348807
348791
  applicationId: this.settings.gprid,
348808
348792
  authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.serviceAuthToken),
348809
348793
  hubAccess: new imodels_access_frontend_1.FrontendIModelsAccess(iModelClient),
@@ -375754,7 +375738,7 @@ var loadLanguages = instance.loadLanguages;
375754
375738
  /***/ ((module) => {
375755
375739
 
375756
375740
  "use strict";
375757
- module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.11.0-dev.18","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 && npm run -s extract","extract":"betools extract --fileExt=ts --extractFrom=./src/test/example-code --recursive --out=../../generated-docs/extract","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":{"@bentley/aec-units-schema":"^1.0.3","@bentley/formats-schema":"^1.0.0","@bentley/units-schema":"^1.0.10","@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/node":"~20.17.0","@types/sinon":"^17.0.2","@vitest/browser-playwright":"^4.1.8","@vitest/coverage-v8":"^4.1.8","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":"^4.1.8","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"}}');
375741
+ module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.11.0-dev.19","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 && npm run -s extract","extract":"betools extract --fileExt=ts --extractFrom=./src/test/example-code --recursive --out=../../generated-docs/extract","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":{"@bentley/aec-units-schema":"^1.0.3","@bentley/formats-schema":"^1.0.0","@bentley/units-schema":"^1.0.10","@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/node":"~20.17.0","@types/sinon":"^17.0.2","@vitest/browser-playwright":"^4.1.8","@vitest/coverage-v8":"^4.1.8","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":"^4.1.8","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"}}');
375758
375742
 
375759
375743
  /***/ }),
375760
375744